fix(button): fix colorized buttons on hover and outline buttons on hover

references #5403
This commit is contained in:
Brandy Carney
2016-02-11 11:36:37 -06:00
parent fab6d9bd91
commit 2df72ccda3

View File

@ -85,6 +85,10 @@ $button-md-small-icon-font-size: 1.4em !default;
color: $fg-color;
background-color: $bg-color;
&:hover:not(.disable-hover) {
background-color: $bg-color;
}
&.activated {
opacity: 1;
background-color: $bg-color-activated;
@ -147,6 +151,10 @@ $button-md-small-icon-font-size: 1.4em !default;
color: $button-md-color;
box-shadow: none;
&:hover:not(.disable-hover) {
background-color: $button-md-clear-hover-background-color;
}
&.activated {
opacity: 1;
box-shadow: none;
@ -170,6 +178,10 @@ $button-md-small-icon-font-size: 1.4em !default;
background-color: transparent;
color: $fg-color;
&:hover:not(.disable-hover) {
background-color: $button-md-clear-hover-background-color;
}
&.activated {
background-color: transparent;
}