mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
This fixes CSS issues such as removing padding with negative margins and then re-adding padding back later. It also ensures the width of the picker is exactly six columns wide and does not shift around when zoom is enabled in the browser.
19 lines
768 B
Handlebars
19 lines
768 B
Handlebars
{{! Contents of the "reaction emoji map" popup }}
|
|
<div class="reaction-popover">
|
|
<div class="reaction-popover-top">
|
|
<input class="reaction-popover-filter" type="text" autofocus placeholder={{t 'Search' }} />
|
|
<i class="icon-vector-search"></i>
|
|
</div>
|
|
<div class="reaction-popover-emoji-map" data-message-id="{{message_id}}">
|
|
{{#each emojis}}
|
|
<div class="reaction-popover-reaction {{#if this/has_reacted}} reacted {{/if}}" title={{@key}}>
|
|
{{#if this/is_realm_emoji}}
|
|
<img src="{{this/url}}" class="emoji" title= ":{{@key}}:" />
|
|
{{else}}
|
|
<div class="emoji emoji-{{#if this/has_reacted}}{{this/css_class}}{{else}}{{this}}{{/if}}" title= ":{{@key}}:" />
|
|
{{/if}}
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
</div>
|