diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-06 13:28:00 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-23 18:17:44 +0200 |
commit | 65353af3745d5ab078fd68562efc6bee4291803f (patch) | |
tree | 613384776f4d79910cc2625ed2977c0afe44ba18 /core/css/styles.scss | |
parent | a07299476b5e93d5010b3ce4ea7b25c6eb5046d0 (diff) | |
download | nextcloud-server-65353af3745d5ab078fd68562efc6bee4291803f.tar.gz nextcloud-server-65353af3745d5ab078fd68562efc6bee4291803f.zip |
Replaced colours by variables
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/css/styles.scss')
-rw-r--r-- | core/css/styles.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index facadad693e..ad75c0c2fc6 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -165,7 +165,7 @@ body { } ::-webkit-scrollbar-thumb { - background: nc-lighten($color-main-text, 86%); + background: nc-darken($color-main-background, 14%); border-radius: 3px; } @@ -1213,7 +1213,7 @@ span.ui-icon { position: relative; align-items: center; padding: 3px 3px 3px 10px; - border-bottom: 1px solid #eeeeee; + border-bottom: 1px solid $color-border; :last-of-type { border-bottom: none; |