mirror of https://github.com/zulip/zulip.git
bootstrap: Remove unused stylings for `btn-info`.
Currently, we are in the process of removing bootstrap out of the current Zulip codebase. A quick git grep on btn-info shows that the class is only used in `templates/corporate/billing.html`. But it doesn't take advantage or use most of the styling rules that are set. We should get rid of those rules as it's not being used and help simplify the process in removing bootstrap.
This commit is contained in:
parent
012f91eaba
commit
2b93b2eb98
|
@ -208,40 +208,11 @@ fieldset[disabled] .btn-success.active {
|
||||||
}
|
}
|
||||||
.btn-info:hover,
|
.btn-info:hover,
|
||||||
.btn-info:focus,
|
.btn-info:focus,
|
||||||
.btn-info:active,
|
.btn-info:active {
|
||||||
.btn-info.active,
|
|
||||||
.open .dropdown-toggle.btn-info {
|
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #39b3d7;
|
background-color: #39b3d7;
|
||||||
border-color: #269abc;
|
border-color: #269abc;
|
||||||
}
|
}
|
||||||
.btn-info:active,
|
|
||||||
.btn-info.active,
|
|
||||||
.open .dropdown-toggle.btn-info {
|
|
||||||
background-image: none;
|
|
||||||
}
|
|
||||||
.btn-info.disabled,
|
|
||||||
.btn-info[disabled],
|
|
||||||
fieldset[disabled] .btn-info,
|
|
||||||
.btn-info.disabled:hover,
|
|
||||||
.btn-info[disabled]:hover,
|
|
||||||
fieldset[disabled] .btn-info:hover,
|
|
||||||
.btn-info.disabled:focus,
|
|
||||||
.btn-info[disabled]:focus,
|
|
||||||
fieldset[disabled] .btn-info:focus,
|
|
||||||
.btn-info.disabled:active,
|
|
||||||
.btn-info[disabled]:active,
|
|
||||||
fieldset[disabled] .btn-info:active,
|
|
||||||
.btn-info.disabled.active,
|
|
||||||
.btn-info[disabled].active,
|
|
||||||
fieldset[disabled] .btn-info.active {
|
|
||||||
background-color: #5bc0de;
|
|
||||||
border-color: #46b8da;
|
|
||||||
}
|
|
||||||
.btn-info .badge {
|
|
||||||
color: #5bc0de;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
.btn-warning {
|
.btn-warning {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #f0ad4e;
|
background-color: #f0ad4e;
|
||||||
|
|
Loading…
Reference in New Issue