Files
zulip/web/templates/settings/alert_word_settings_item.hbs
Maneesh Shukla a062d25aea personal-settings: Redesign buttons in personal settings.
- 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.
2025-04-10 11:32:43 -07:00

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}}