White theme: Fixes for hidden series legend text and disabled annotations color, Closes #852

This commit is contained in:
Torkel Ödegaard
2014-09-24 12:14:20 +02:00
parent bce6e75cfa
commit d5ffe6acef
7 changed files with 8 additions and 10 deletions
+1 -1
View File
@@ -124,7 +124,7 @@
.graph-legend-series-hidden {
a {
color: darken(@linkColor, 45%);
color: @linkColorDisabled;
}
}
+1 -1
View File
@@ -5,6 +5,6 @@
}
.annotation-disabled, .annotation-disabled a {
color: darken(@textColor, 25%);
color: @linkColorDisabled;
}
+1
View File
@@ -52,6 +52,7 @@
// Links
// -------------------------
@linkColor: darken(@white,11%);
@linkColorDisabled: darken(@linkColor,45%);
@linkColorHover: @white;
+2 -1
View File
@@ -54,12 +54,13 @@
// Scaffolding
// -------------------------
@bodyBackground: @grayLighter;
@textColor: #555;
@textColor: #666;
// Links
// -------------------------
@linkColor: @textColor;
@linkColorDisabled: lighten(@linkColor,35%);
@linkColorHover: @blue;