diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-12-08 08:39:15 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-12-08 09:57:29 +0100 |
commit | cadb46d832724ea1a17b085b992142aa32e212be (patch) | |
tree | df1972470ab022e95ff5dc7866c78174c36bfa37 /client/src/sass/_mixins.scss | |
parent | c182778e26b8478fae9d7dd0bf0687baf7b72fd1 (diff) | |
download | PeerTube-cadb46d832724ea1a17b085b992142aa32e212be.tar.gz PeerTube-cadb46d832724ea1a17b085b992142aa32e212be.tar.zst PeerTube-cadb46d832724ea1a17b085b992142aa32e212be.zip |
Design second video upload step
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 | ||