diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-02-08 09:34:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-08 09:34:04 +0100 |
commit | 6ae8e99c1b2fc9f41b29ca1e5eee0815051739a9 (patch) | |
tree | 82bbf61db22179b27cb93a3c9fd7699b0b530da1 /core | |
parent | 7fc115d0a52a3e8c920ed34980a002bd4aced21e (diff) | |
parent | 150d15ba3963fa35d0923a49b908168ea1dda64c (diff) | |
download | nextcloud-server-6ae8e99c1b2fc9f41b29ca1e5eee0815051739a9.tar.gz nextcloud-server-6ae8e99c1b2fc9f41b29ca1e5eee0815051739a9.zip |
Merge pull request #13982 from nextcloud/stable15-12917-clean-code-and-fix-drop-zone-shadow
[stable15] Clean code and fix drop zone shadow
Diffstat (limited to 'core')
-rw-r--r-- | core/css/icons.scss | 4 | ||||
-rw-r--r-- | core/css/variables.scss | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/core/css/icons.scss b/core/css/icons.scss index 99b1dc9c215..d0915f357d4 100644 --- a/core/css/icons.scss +++ b/core/css/icons.scss @@ -282,13 +282,13 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] &:focus { @include icon-color('star', 'actions', $color-black, 1, true); } - @include icon-color('star-dark', 'actions', 'FC0', 1, true); + @include icon-color('star-dark', 'actions', $color-yellow, 1, true); } .icon-star { &:hover, &:focus { - @include icon-color('star-dark', 'actions', 'FC0', 1, true); + @include icon-color('star-dark', 'actions', $color-yellow, 1, true); } } diff --git a/core/css/variables.scss b/core/css/variables.scss index 404fa8743f2..d3592032e57 100644 --- a/core/css/variables.scss +++ b/core/css/variables.scss @@ -53,6 +53,7 @@ $color-success: #46ba61; // used for svg $color-white: #fff; $color-black: #000; +$color-yellow: #FC0; // rgb(118, 118, 118) / #767676 // min. color contrast for normal text on white background according to WCAG AA |