From d4dd00f58a502c9ca4b63e36ce6bc7a9945dc63c Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Tue, 27 Mar 2018 22:28:21 +0100 Subject: New upstream version 1.10.0+dfsg --- web/dashboard.slate.css | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) (limited to 'web/dashboard.slate.css') diff --git a/web/dashboard.slate.css b/web/dashboard.slate.css index 00e0d0dce..9b1d50cd5 100644 --- a/web/dashboard.slate.css +++ b/web/dashboard.slate.css @@ -161,6 +161,12 @@ code { z-index: 20; padding: 0px; margin: 0px; + + /* prevent text selection after double click */ + -webkit-user-select: none; /* webkit (safari, chrome) browsers */ + -moz-user-select: none; /* mozilla browsers */ + -khtml-user-select: none; /* webkit (konqueror) browsers */ + -ms-user-select: none; /* IE10+ */ } .netdata-legend-toolbox-button { @@ -179,6 +185,12 @@ code { padding: 0px; margin: 0px; cursor: pointer; + + /* prevent text selection after double click */ + -webkit-user-select: none; /* webkit (safari, chrome) browsers */ + -moz-user-select: none; /* mozilla browsers */ + -khtml-user-select: none; /* webkit (konqueror) browsers */ + -ms-user-select: none; /* IE10+ */ } .netdata-message { @@ -227,12 +239,18 @@ code { font-size: 10px; font-weight: normal; margin-top: 0px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } .netdata-legend-title-time { font-size: 11px; font-weight: bold; margin-top: 0px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } .netdata-legend-title-units { @@ -243,6 +261,9 @@ code { vertical-align: top; font-weight: normal; margin-top: 0px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } .netdata-legend-series { @@ -385,6 +406,10 @@ code { .dygraph-ylabel { } +.dygraph-axis-label-x { + overflow-x: hidden; +} + .dygraph-axis-label { color: #6c7075; } @@ -459,7 +484,7 @@ code { float: left; left: 0; width: 64%; - margin-left: 18%; + margin-left: 18% !important; text-align: center; color: #676b70; font-weight: bold; @@ -471,7 +496,7 @@ code { float: left; left: 0; width: 60%; - margin-left: 20%; + margin-left: 20% !important; text-align: center; color: #676b70; font-weight: normal; -- cgit v1.2.3