diff options
author | Julius Haertl <jus@bitgrid.net> | 2017-02-19 19:50:50 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2017-03-20 12:49:06 +0100 |
commit | e2d7ac1c3af9151eea1bb79b5a5c0218185f1a53 (patch) | |
tree | 2129569bdcbaf8cd251480b4e4958206ca21bc21 | |
parent | 6c59377b95790f8d2efa7ddd901b95cb566f5744 (diff) | |
download | nextcloud-server-e2d7ac1c3af9151eea1bb79b5a5c0218185f1a53.tar.gz nextcloud-server-e2d7ac1c3af9151eea1bb79b5a5c0218185f1a53.zip |
SCSS colors in tooltip.scss
Signed-off-by: Julius Haertl <jus@bitgrid.net>
-rw-r--r-- | core/css/tooltip.scss | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/css/tooltip.scss b/core/css/tooltip.scss index 263dad0b0c9..66234cad9f2 100644 --- a/core/css/tooltip.scss +++ b/core/css/tooltip.scss @@ -54,7 +54,7 @@ left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; - border-right-color: #000000; + border-right-color: $color-main-text; } } &.left { @@ -65,7 +65,7 @@ right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; - border-left-color: #000000; + border-left-color: $color-main-text; } } @@ -75,7 +75,7 @@ &.top-right .tooltip-arrow { bottom: 0; border-width: 5px 5px 0; - border-top-color: #000000; + border-top-color: $color-main-text; } &.top .tooltip-arrow { left: 50%; @@ -96,7 +96,7 @@ &.bottom-right .tooltip-arrow { top: 0; border-width: 0 5px 5px; - border-bottom-color: #000000; + border-bottom-color: $color-main-text; } &.bottom .tooltip-arrow { left: 50%; @@ -115,9 +115,9 @@ .tooltip-inner { max-width: 350px; padding: 3px 8px; - color: #ffffff; + color: $color-main-background; text-align: center; - background-color: #000000; + background-color: $color-main-text; border-radius: 4px; } |