diff options
| author | ilotterytea <iltsu@alright.party> | 2025-05-16 02:35:37 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-05-16 02:35:37 +0500 |
| commit | b7f98ae1ab924edebb5a06506cc8545956fd8443 (patch) | |
| tree | 225b2024d2b13ba894f98171f092333183c305db /public/users.php | |
| parent | 664f82212c191af8e8bcbafeb60c8b78a10b4fbe (diff) | |
feat: emote wall
Diffstat (limited to 'public/users.php')
| -rw-r--r-- | public/users.php | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/public/users.php b/public/users.php index 3f27745..6a6273e 100644 --- a/public/users.php +++ b/public/users.php @@ -410,8 +410,11 @@ if ($is_json) { <section class="content" style="display: inline-block;"> <!-- Current emoteset --> <section class="box grow user-tab" id="user-emotes"> - <div class="box navtab"> - <?php echo !empty($active_emote_set) ? $active_emote_set->name : "Emotes" ?> + <div class="box navtab row"> + <div class="grow"> + <?php echo !empty($active_emote_set) ? $active_emote_set->name : "Emotes" ?> + </div> + <?php html_emotelist_mode() ?> </div> <div class="box content items flex"> <?php if (!empty($active_emote_set)) { @@ -549,9 +552,11 @@ if ($is_json) { <!-- Uploaded emotes --> <section class="box grow user-tab" id="user-uploadedemotes"> - <div class="box navtab"> - Uploaded emotes - <?php echo $user_preferences["private_profile"] ? " <img src='/static/img/icons/eye.png' alt='(Private)' title='You are the only one who sees this' />" : "" ?> + <div class="box navtab row"> + <div class="grow"> + Uploaded emotes + <?php echo $user_preferences["private_profile"] ? " <img src='/static/img/icons/eye.png' alt='(Private)' title='You are the only one who sees this' />" : "" ?> + </div> </div> <div class="box content items"> <?php html_display_emotes($uploaded_emotes); ?> |
