1
0
Fork 0
mirror of https://github.com/twbs/bootstrap-sass.git synced 2022-11-09 12:27:02 -05:00

fixes an strange focus bug - refs jlong/sass-twitter-bootstrap#55

This commit is contained in:
Carlos Alexandro Becker 2013-02-19 21:01:51 -03:00
parent 1a9cf0b342
commit 17db8dd12e

View file

@ -244,7 +244,7 @@
}
// Drop shadows
@mixin box-shadow($shadow...) {
@mixin box-shadow($shadow...) {
-webkit-box-shadow: $shadow;
-moz-box-shadow: $shadow;
box-shadow: $shadow;
@ -499,7 +499,7 @@
@include reset-filter();
// in these cases the gradient won't cover the background, so we override
&:hover, &:active, &.active, &.disabled, &[disabled] {
&:hover, &:focus, &:active, &.active, &.disabled, &[disabled] {
color: $textColor;
background-color: $endColor;
*background-color: darken($endColor, 5%);