2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-30 15:24:08 +03:00

fix disabled button for ie 8 and below

This commit is contained in:
Jacob Thornton
2011-08-21 18:07:47 -07:00
parent 22dbf9d8e4
commit e1e4ceee3f
4 changed files with 22 additions and 6 deletions
+7 -1
View File
@@ -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);