mirror of
https://github.com/zulip/zulip.git
synced 2025-10-22 20:42:14 +00:00
- Changed Alert Words "Delete" button to a danger icon button. - Updated Uploaded Files "Download" button to an info icon. - Updated Uploaded Files "Delete" button to a danger icon. - Changed Muted Users button to use `action-button-quiet-danger`. Fixes: #34200.
17 lines
457 B
Handlebars
17 lines
457 B
Handlebars
{{#with muted_user}}
|
|
<tr data-user-id="{{user_id}}" data-user-name="{{user_name}}" data-date-muted="{{date_muted_str}}">
|
|
<td>{{user_name}}</td>
|
|
<td>{{date_muted_str}}</td>
|
|
<td class="actions">
|
|
{{#if can_unmute}}
|
|
{{> ./components/action_button
|
|
label=(t "Unmute")
|
|
attention="quiet"
|
|
intent="danger"
|
|
custom_classes="settings-unmute-user"
|
|
}}
|
|
{{/if}}
|
|
</td>
|
|
</tr>
|
|
{{/with}}
|