Cleanup legend value by using css content

This commit is contained in:
Chia-liang Kao
2014-08-09 19:52:20 +08:00
committed by Torkel Ödegaard
parent b98a8ee83a
commit d51d5af992
2 changed files with 20 additions and 10 deletions
+15
View File
@@ -25,6 +25,21 @@
.graph-legend-value {
float: left;
white-space: nowrap;
&.current:before {
content: "Current: "
}
&.max:before {
content: "Max: "
}
&.min:before {
content: "Min: "
}
&.total:before {
content: "Total: "
}
&.avg:before {
content: "Avg: "
}
}
.graph-legend-series {