mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +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.
19 lines
510 B
Handlebars
19 lines
510 B
Handlebars
{{! Alert word in the settings page that can be removed }}
|
|
{{#with alert_word}}
|
|
<tr class="alert-word-item" data-word='{{word}}'>
|
|
<td>
|
|
<div class="alert_word_listing">
|
|
<span class="value">{{word}}</span>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
{{> ../components/icon_button
|
|
icon="trash"
|
|
intent="danger"
|
|
custom_classes="delete remove-alert-word tippy-zulip-delayed-tooltip"
|
|
data-tippy-content=(t "Delete")
|
|
}}
|
|
</td>
|
|
</tr>
|
|
{{/with}}
|