Merge pull request woocommerce/woocommerce-admin#1518 from woocommerce/fix/1339-disabled-button
Remove on hover color from disabled button
This commit is contained in:
commit
1c990aec04
|
@ -56,11 +56,13 @@
|
|||
|
||||
.components-button.is-button.is-primary {
|
||||
color: $white;
|
||||
}
|
||||
|
||||
.components-button.is-button.is-primary:hover,
|
||||
.components-button.is-button.is-primary:active,
|
||||
.components-button.is-button.is-primary:focus {
|
||||
color: $white;
|
||||
&:not(:disabled) {
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue