diff options
author | Marco Ambrosini <marcoambrosini@pm.me> | 2020-01-13 20:01:29 +0100 |
---|---|---|
committer | Marco Ambrosini <marcoambrosini@pm.me> | 2020-01-13 20:03:47 +0100 |
commit | 22e32501a51943ef63b4e05f2de2ecd35507d8b8 (patch) | |
tree | 2941b413ff1443a787f4da957dd933189d1c4ec1 /core/css | |
parent | 1bf44e1d973593014e63095f3e7d1348af45b52a (diff) | |
download | nextcloud-server-22e32501a51943ef63b4e05f2de2ecd35507d8b8.tar.gz nextcloud-server-22e32501a51943ef63b4e05f2de2ecd35507d8b8.zip |
Create hover color variable
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/variables.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/variables.scss b/core/css/variables.scss index 35036248e55..3a14acb0ad7 100644 --- a/core/css/variables.scss +++ b/core/css/variables.scss @@ -35,7 +35,8 @@ $color-main-text: #222 !default; // Not #000 for better readability $color-main-background: #fff !default; $color-main-background-translucent: rgba($color-main-background, .97) !default; -// used for different active/disabled states +// used for different active/hover/focus/disabled states +$color-background-hover: nc-darken($color-main-background, 4%) !default; $color-background-dark: nc-darken($color-main-background, 7%) !default; $color-background-darker: nc-darken($color-main-background, 14%) !default; |