diff options
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/_mixins.scss | 6 | ||||
-rw-r--r-- | client/src/sass/application.scss | 4 |
2 files changed, 8 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 | ||
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 0c999d659..3c5a00309 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -86,6 +86,10 @@ label { | |||
86 | margin-top: 30px; | 86 | margin-top: 30px; |
87 | margin-bottom: 25px; | 87 | margin-bottom: 25px; |
88 | } | 88 | } |
89 | |||
90 | &:hover, &:active, &:focus { | ||
91 | color: #000; | ||
92 | } | ||
89 | } | 93 | } |
90 | 94 | ||
91 | // On small screen, menu is absolute and displayed over the page | 95 | // On small screen, menu is absolute and displayed over the page |