mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
This commit adds 'highlighted-element' class to <b> tags in the following confirm dialogs: * delete topic * mute user * join user group 'highlighted-element' class sets the 'font-weight: 600', replacing the default of 700.
10 lines
584 B
Handlebars
10 lines
584 B
Handlebars
<p>
|
|
{{t "Deleting a topic will immediately remove it and its messages for everyone. Other users may find this confusing, especially if they had received an email or push notification related to the deleted messages." }}
|
|
</p>
|
|
<p class="white-space-preserve-wrap">
|
|
{{#tr}}
|
|
Are you sure you want to permanently delete <z-topic-display-name></z-topic-display-name>?
|
|
{{#*inline "z-topic-display-name"}}<span {{#if is_empty_string_topic}}class="empty-topic-display"{{/if}}><b class="highlighted-element">{{topic_display_name}}</b></span>{{/inline}}
|
|
{{/tr}}
|
|
</p>
|