.gradientBar(@startColor, @endColor);
// in these cases the gradient won't cover the background, so we override
- &:hover, &:active, &.active {
+ &:hover, &:active, &.active, &.disabled {
+ background-color: @endColor;
+ }
+
+ &[disabled] {
background-color: @endColor;
}
&.disabled {
cursor: default;
background-image: none;
+ background-color: darken(@white, 10%);
.opacity(65);
.box-shadow(none);
}
// def because IE8 and below will drop it ;_;
cursor: default;
background-image: none;
+ background-color: darken(@white, 10%);
.opacity(65);
.box-shadow(none);
}