Files
zulip/web/templates/status_emoji_selector.hbs
Sayam Samal cdea8e9d51 user_status: Improve custom user status picker input styling.
As a follow-up to the previous commit, this commit improves the styling
of the custom user status picker input.

The changes in this commit adjust the styling of the input field towards
the new redesigned inputs while shying away from using the input
component to avoid the complexity involved in including the status
emoji selector in the input component.
2025-08-11 11:54:18 -07:00

12 lines
452 B
Handlebars

{{#if selected_emoji}}
{{#if selected_emoji.emoji_alt_code}}
<div class="emoji_alt_code">&nbsp;:{{selected_emoji.emoji_name}}:</div>
{{else if selected_emoji.url}}
<img src="{{selected_emoji.url}}" class="emoji selected-emoji" />
{{else}}
<div class="emoji selected-emoji emoji-{{selected_emoji.emoji_code}}"></div>
{{/if}}
{{else}}
<span class="smiley-icon show zulip-icon zulip-icon-smile"></span>
{{/if}}