Skip to content
Snippets Groups Projects
Unverified Commit e2d7ac1c authored by Julius Haertl's avatar Julius Haertl Committed by Julius Härtl
Browse files

SCSS colors in tooltip.scss


Signed-off-by: default avatarJulius Haertl <jus@bitgrid.net>
parent 6c59377b
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
left: 0; left: 0;
margin-top: -5px; margin-top: -5px;
border-width: 5px 5px 5px 0; border-width: 5px 5px 5px 0;
border-right-color: #000000; border-right-color: $color-main-text;
} }
} }
&.left { &.left {
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
right: 0; right: 0;
margin-top: -5px; margin-top: -5px;
border-width: 5px 0 5px 5px; border-width: 5px 0 5px 5px;
border-left-color: #000000; border-left-color: $color-main-text;
} }
} }
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
&.top-right .tooltip-arrow { &.top-right .tooltip-arrow {
bottom: 0; bottom: 0;
border-width: 5px 5px 0; border-width: 5px 5px 0;
border-top-color: #000000; border-top-color: $color-main-text;
} }
&.top .tooltip-arrow { &.top .tooltip-arrow {
left: 50%; left: 50%;
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
&.bottom-right .tooltip-arrow { &.bottom-right .tooltip-arrow {
top: 0; top: 0;
border-width: 0 5px 5px; border-width: 0 5px 5px;
border-bottom-color: #000000; border-bottom-color: $color-main-text;
} }
&.bottom .tooltip-arrow { &.bottom .tooltip-arrow {
left: 50%; left: 50%;
...@@ -115,9 +115,9 @@ ...@@ -115,9 +115,9 @@
.tooltip-inner { .tooltip-inner {
max-width: 350px; max-width: 350px;
padding: 3px 8px; padding: 3px 8px;
color: #ffffff; color: $color-main-background;
text-align: center; text-align: center;
background-color: #000000; background-color: $color-main-text;
border-radius: 4px; border-radius: 4px;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment