Merge pull request #3723 from ragulka/disabled-buttons

Add disabled style to buttons
This commit is contained in:
Mike Jolley 2013-09-04 06:47:23 -07:00
commit 38f03ec4cb
2 changed files with 17 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -615,6 +615,22 @@ p.demo_store {
.darkorlighttextshadow( @primarytext + #111, 0.6 );
}
}
&:disabled,
&.disabled {
color: lighten( @secondarytext, 30 );
border: 1px solid darken( @secondary, 10 );
background: @secondary;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
cursor: not-allowed;
&:active {
top: 0;
}
}
}
.cart .button, .cart input.button {