diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2016-11-23 15:49:10 +0000 |
---|---|---|
committer | Federico Ceratto <federico.ceratto@gmail.com> | 2016-11-23 15:49:10 +0000 |
commit | 87649cf32bd0e14d5a903fb85b01e9f41a253540 (patch) | |
tree | bbefda6dac074aeb87529592e8e5064f69cbe024 /web/dashboard.css | |
parent | Imported Upstream version 1.3.0+dfsg (diff) | |
download | netdata-87649cf32bd0e14d5a903fb85b01e9f41a253540.tar.xz netdata-87649cf32bd0e14d5a903fb85b01e9f41a253540.zip |
New upstream version 1.4.0+dfsgupstream/1.4.0+dfsg
Diffstat (limited to 'web/dashboard.css')
-rw-r--r-- | web/dashboard.css | 23 |
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; |