diff options
Diffstat (limited to 'client/src/sass/_mixins.scss')
-rw-r--r-- | client/src/sass/_mixins.scss | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/client/src/sass/_mixins.scss b/client/src/sass/_mixins.scss index 121e16e10..d9c9e45ec 100644 --- a/client/src/sass/_mixins.scss +++ b/client/src/sass/_mixins.scss | |||
@@ -1,5 +1,5 @@ | |||
1 | @mixin disable-default-a-behaviour { | 1 | @mixin disable-default-a-behaviour { |
2 | &:hover, &:focus { | 2 | &:hover, &:focus, &:active { |
3 | text-decoration: none !important; | 3 | text-decoration: none !important; |
4 | outline: none !important; | 4 | outline: none !important; |
5 | } | 5 | } |
@@ -23,13 +23,15 @@ | |||
23 | color: #fff; | 23 | color: #fff; |
24 | background-color: $orange-color; | 24 | background-color: $orange-color; |
25 | 25 | ||
26 | &:hover, &:active, &:focus, &[disabled], &.disabled { | 26 | &:hover, &:active, &:focus { |
27 | color: #fff; | 27 | color: #fff; |
28 | background-color: $orange-hoover-color; | 28 | background-color: $orange-hoover-color; |
29 | } | 29 | } |
30 | 30 | ||
31 | &[disabled], &.disabled { | 31 | &[disabled], &.disabled { |
32 | cursor: default; | 32 | cursor: default; |
33 | color: #fff; | ||
34 | background-color: #C6C6C6; | ||
33 | } | 35 | } |
34 | } | 36 | } |
35 | 37 | ||