Files
zulip/static/templates/admin_default_streams_list.handlebars
Brock Whittaker 5606435a90 components: Make button component styles sensible.
This removes the old base button style which was a blue button and
kills the unnecessary .white class which was essentially just acting as
the new button base.

This then removes all references throughout the settings/subscriptions
pages to those button styles.

This also fixes the strange button styles that changed the :hover and
:active opacity to 0.05 which led to unpredictable results on various
backgrounds.
2017-06-08 17:09:31 -07:00

16 lines
413 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 rounded remove-default-stream btn-danger">
{{t "Remove from default" }}
</button>
</td>
{{/if}}
</tr>
{{/with}}