summaryrefslogtreecommitdiffstats
path: root/web/dashboard.css
diff options
context:
space:
mode:
Diffstat (limited to 'web/dashboard.css')
-rw-r--r--web/dashboard.css23
1 files changed, 22 insertions, 1 deletions
diff --git a/web/dashboard.css b/web/dashboard.css
index eb2ed1b0d..ee806ba47 100644
--- a/web/dashboard.css
+++ b/web/dashboard.css
@@ -209,7 +209,7 @@ body {
outline: thin dotted;
}
.netdata-legend-series > .netdata-legend-series-content::-webkit-scrollbar {
- display: block; /* was 'none', but chrome was hidding content with it */
+ display: block; /* was 'none', but chrome was hiding content with it */
}
.has-scrollbar > .netdata-legend-series-content::-webkit-scrollbar {
display: block;
@@ -367,6 +367,27 @@ body {
.dygraph-ylabel {
}
+.dygraph-label-rotate-left {
+ text-align: center;
+ /* See http://caniuse.com/#feat=transforms2d */
+ transform: rotate(90deg);
+ -webkit-transform: rotate(90deg);
+ -moz-transform: rotate(90deg);
+ -o-transform: rotate(90deg);
+ -ms-transform: rotate(90deg);
+}
+
+/* For y2-axis label */
+.dygraph-label-rotate-right {
+ text-align: center;
+ /* See http://caniuse.com/#feat=transforms2d */
+ transform: rotate(-90deg);
+ -webkit-transform: rotate(-90deg);
+ -moz-transform: rotate(-90deg);
+ -o-transform: rotate(-90deg);
+ -ms-transform: rotate(-90deg);
+}
+
.dygraph-title {
text-indent: 56px;
text-align: left;