fix disabled button for ie 8 and below
This commit is contained in:
parent
22dbf9d8e4
commit
e1e4ceee3f
4 changed files with 22 additions and 6 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue