aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJacob Thornton <[email protected]>2011-08-21 18:07:47 -0700
committerJacob Thornton <[email protected]>2011-08-21 18:07:47 -0700
commite1e4ceee3f72d0892bf84aa7a1c7f1bdb719032e (patch)
treee1d6e737b7f9351dbee9b6921004c8f1bfbe3015 /lib
parent22dbf9d8e4fc5568d9d49b40d1c1020fbab064c9 (diff)
downloadbootstrap-e1e4ceee3f72d0892bf84aa7a1c7f1bdb719032e.tar.xz
bootstrap-e1e4ceee3f72d0892bf84aa7a1c7f1bdb719032e.zip
fix disabled button for ie 8 and below
Diffstat (limited to 'lib')
-rw-r--r--lib/scaffolding.less8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/scaffolding.less b/lib/scaffolding.less
index f66e08679..b1f846a38 100644
--- a/lib/scaffolding.less
+++ b/lib/scaffolding.less
@@ -117,12 +117,18 @@ a {
padding-left: 9px;
font-size: 11px;
}
- &:disabled,
&.disabled {
background-image: none;
.opacity(65);
cursor: default;
}
+
+ // this can't be included with the .disabled def because IE8 and below will drop it ;_;
+ &:disabled {
+ background-image: none;
+ .opacity(65);
+ cursor: default;
+ }
&:active {
@shadow: inset 0 3px 7px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.05);
.box-shadow(@shadow);