mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
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.
16 lines
413 B
Handlebars
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}}
|