&:active {
background-color: darken($backgroundColor, 8%);
}
+ &:focus {
+ background-color: lighten($backgroundColor, 4%);
+ box-shadow: $bs-light;
+ text-decoration: none;
+ color: $textColor;
+ }
}
// Button Specific Variables
&:focus, &:active {
outline: 0;
}
+ &:hover {
+ text-decoration: none;
+ }
&.neg {
color: $negative;
}
}
}
+.button[disabled] {
+ background-color: #BBB;
+ cursor: default;
+ &:hover {
+ background-color: #BBB;
+ cursor: default;
+ box-shadow: none;
+ }
+}
+