mirror of https://github.com/zulip/zulip.git
bootstrap: Remove unused bootstrap button classes.
This commit removes the `button-secondary`, `button-group` and `bootstrap-btn-group` classes which don't have any corresponding styles attached to them or are no longer in use in the codebase.
This commit is contained in:
parent
11153eb2c8
commit
d619ffa9c4
|
@ -1,7 +1,7 @@
|
|||
<li class="option-row">
|
||||
<i class="zulip-icon zulip-icon-grip-vertical drag-icon"></i>
|
||||
<input type="text" class="poll-option-input modal_text_input" placeholder="{{t 'New option' }}" />
|
||||
<button type="button" class="button rounded small button-secondary delete-option" title="{{t 'Delete' }}">
|
||||
<button type="button" class="button rounded small delete-option" title="{{t 'Delete' }}">
|
||||
<i class="fa fa-trash-o" aria-hidden="true"></i>
|
||||
</button>
|
||||
</li>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div id="recent_view_filter_buttons" class="button-group" role="group">
|
||||
<div id="recent_view_filter_buttons" role="group">
|
||||
<div id="recent_filters_group">
|
||||
{{> recent_view_filters .}}
|
||||
</div>
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
<div class="bot-card-api-key-value-and-button no-select">
|
||||
<!-- have the `.text-select` in `.no-select` so that the value doesn't have trailing whitespace. -->
|
||||
<span class="bot-card-value text-select">{{api_key}}</span>
|
||||
<button type="submit" class="button no-style button-secondary bot-card-regenerate-bot-api-key tippy-zulip-delayed-tooltip" data-tippy-content="{{t 'Generate new API key' }}" data-user-id="{{user_id}}">
|
||||
<button type="submit" class="button no-style bot-card-regenerate-bot-api-key tippy-zulip-delayed-tooltip" data-tippy-content="{{t 'Generate new API key' }}" data-user-id="{{user_id}}">
|
||||
<i class="fa fa-refresh" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
@ -242,8 +242,7 @@ input:focus:invalid:focus {
|
|||
.form-inline .hide {
|
||||
display: none;
|
||||
}
|
||||
.form-inline label,
|
||||
.form-inline .bootstrap-btn-group {
|
||||
.form-inline label {
|
||||
display: inline-block;
|
||||
}
|
||||
.dropdown {
|
||||
|
|
Loading…
Reference in New Issue