Commit 9469b20c by Torkel Ödegaard

fix(graph): Fixed issue with light theme text color issue in tooltip, fixes #4702

parent 7302ddab
# 3.0.0-beta4 (unreleased) # 3.0.0-beta5 ()
### Bug fixes
* **Graph**: Fixed issue with light theme text color issue in tooltip, fixes [#4702](https://github.com/grafana/grafana/issues/4702)
# 3.0.0-beta4 (2016-04-13)
### Bug fixes ### Bug fixes
* **Home dashboard**: Fixed issue with permission denied error on home dashboard, fixes [#4686](https://github.com/grafana/grafana/issues/4686) * **Home dashboard**: Fixed issue with permission denied error on home dashboard, fixes [#4686](https://github.com/grafana/grafana/issues/4686)
......
...@@ -281,7 +281,7 @@ $tooltipColor: $popover-help-color; ...@@ -281,7 +281,7 @@ $tooltipColor: $popover-help-color;
$tooltipBackground: $popover-help-bg; $tooltipBackground: $popover-help-bg;
$tooltipArrowWidth: 5px; $tooltipArrowWidth: 5px;
$tooltipArrowColor: $tooltipBackground; $tooltipArrowColor: $tooltipBackground;
$tooltipLinkColor: $link-color; $tooltipLinkColor: lighten($popover-help-color, 5%);
$graph-tooltip-bg: $gray-5; $graph-tooltip-bg: $gray-5;
// images // images
......
...@@ -236,6 +236,7 @@ ...@@ -236,6 +236,7 @@
white-space: nowrap; white-space: nowrap;
font-size: $font-size-sm; font-size: $font-size-sm;
background-color: $graph-tooltip-bg; background-color: $graph-tooltip-bg;
color: $text-color;
.graph-tooltip-time { .graph-tooltip-time {
text-align: center; text-align: center;
...@@ -248,7 +249,7 @@ ...@@ -248,7 +249,7 @@
display: table-row; display: table-row;
&--highlight { &--highlight {
color: $link-color; color: $text-color-emphasis;
font-weight: bold; font-weight: bold;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment