mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-18 19:31:35 +02:00
remove unnecessary bg declarations in buttons per #5684
This commit is contained in:
7
docs/assets/css/bootstrap.css
vendored
7
docs/assets/css/bootstrap.css
vendored
@@ -3180,10 +3180,6 @@ button.close {
|
|||||||
.btn:hover {
|
.btn:hover {
|
||||||
color: #333333;
|
color: #333333;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: #e6e6e6;
|
|
||||||
*background-color: #d9d9d9;
|
|
||||||
/* Buttons in IE7 don't get borders, so darken on hover */
|
|
||||||
|
|
||||||
background-position: 0 -15px;
|
background-position: 0 -15px;
|
||||||
-webkit-transition: background-position 0.1s linear;
|
-webkit-transition: background-position 0.1s linear;
|
||||||
-moz-transition: background-position 0.1s linear;
|
-moz-transition: background-position 0.1s linear;
|
||||||
@@ -3199,8 +3195,6 @@ button.close {
|
|||||||
|
|
||||||
.btn.active,
|
.btn.active,
|
||||||
.btn:active {
|
.btn:active {
|
||||||
background-color: #e6e6e6;
|
|
||||||
background-color: #d9d9d9 \9;
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||||
@@ -3211,7 +3205,6 @@ button.close {
|
|||||||
.btn.disabled,
|
.btn.disabled,
|
||||||
.btn[disabled] {
|
.btn[disabled] {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
background-color: #e6e6e6;
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
opacity: 0.65;
|
opacity: 0.65;
|
||||||
filter: alpha(opacity=65);
|
filter: alpha(opacity=65);
|
||||||
|
@@ -30,8 +30,6 @@
|
|||||||
&:hover {
|
&:hover {
|
||||||
color: @grayDark;
|
color: @grayDark;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: darken(@white, 10%);
|
|
||||||
*background-color: darken(@white, 15%); /* Buttons in IE7 don't get borders, so darken on hover */
|
|
||||||
background-position: 0 -15px;
|
background-position: 0 -15px;
|
||||||
|
|
||||||
// transition is only when going to hover, otherwise the background
|
// transition is only when going to hover, otherwise the background
|
||||||
@@ -47,8 +45,6 @@
|
|||||||
// Active state
|
// Active state
|
||||||
&.active,
|
&.active,
|
||||||
&:active {
|
&:active {
|
||||||
background-color: darken(@white, 10%);
|
|
||||||
background-color: darken(@white, 15%) e("\9");
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
.box-shadow(~"inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)");
|
.box-shadow(~"inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)");
|
||||||
@@ -58,7 +54,6 @@
|
|||||||
&.disabled,
|
&.disabled,
|
||||||
&[disabled] {
|
&[disabled] {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
background-color: darken(@white, 10%);
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
.opacity(65);
|
.opacity(65);
|
||||||
.box-shadow(none);
|
.box-shadow(none);
|
||||||
|
Reference in New Issue
Block a user