mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 22:43:42 +00:00
This redesigns all the ugly bold-colored buttons in the settings and administration pages.
16 lines
419 B
Handlebars
16 lines
419 B
Handlebars
{{#with stream}}
|
|
<tr class="default_stream_row" id="{{name}}">
|
|
<td>
|
|
{{#if invite_only}}<i class="icon-vector-lock "></i>{{/if}}
|
|
<span class="default_stream_name">{{name}}</span>
|
|
</td>
|
|
{{#if ../can_modify}}
|
|
<td>
|
|
<button class="button white rounded remove-default-stream btn-danger">
|
|
{{t "Remove from default" }}
|
|
</button>
|
|
</td>
|
|
{{/if}}
|
|
</tr>
|
|
{{/with}}
|