diff options
author | Matthew Somerville <matthew@mysociety.org> | 2015-12-16 16:55:55 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2015-12-16 16:58:33 +0000 |
commit | d28745730bf22b9447645fd6543b4a164976f761 (patch) | |
tree | 88ea8c2961f8b5bffa15a324febbcc5b6c966e95 | |
parent | cbbafafa503fd6035e875897221a311d9bbf8a32 (diff) |
No button hover on disabled buttons.
-rw-r--r-- | web/cobrands/sass/_mixins.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/cobrands/sass/_mixins.scss b/web/cobrands/sass/_mixins.scss index be274e9bb..541ff0a33 100644 --- a/web/cobrands/sass/_mixins.scss +++ b/web/cobrands/sass/_mixins.scss @@ -19,7 +19,7 @@ $direction: 'left' !default; @include background (linear-gradient($c1, $c2)) ; border:1px solid $c3; color:$c4; - &:hover{ + &:hover:enabled { background:$c5; @include background (linear-gradient($c6, $c5)); text-decoration: none; |