summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2018-02-10 14:41:02 +0200
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2018-02-10 14:41:02 +0200
commit9a4e5841a38223a2ceea1b39bb61ff206081e154 (patch)
tree436f574a27841e0dd85a8f6c50563a446e8d25f0 /web
parent853b600f8c58261aec900c333a7cbae7d29eac4d (diff)
set overflow: hidden on dygraph x-labels
Diffstat (limited to 'web')
-rw-r--r--web/dashboard.css4
-rw-r--r--web/dashboard.js4
-rw-r--r--web/dashboard.slate.css4
-rw-r--r--web/index.html2
4 files changed, 11 insertions, 3 deletions
diff --git a/web/dashboard.css b/web/dashboard.css
index 6a6b9303f5..80062a272a 100644
--- a/web/dashboard.css
+++ b/web/dashboard.css
@@ -392,6 +392,10 @@ body {
.dygraph-ylabel {
}
+.dygraph-axis-label-x {
+ overflow-x: hidden;
+}
+
.dygraph-label-rotate-left {
text-align: center;
/* See http://caniuse.com/#feat=transforms2d */
diff --git a/web/dashboard.js b/web/dashboard.js
index 1aea6f722d..ffb3150001 100644
--- a/web/dashboard.js
+++ b/web/dashboard.js
@@ -252,7 +252,7 @@ var NETDATA = window.NETDATA || {};
NETDATA.themes = {
white: {
bootstrap_css: NETDATA.serverStatic + 'css/bootstrap-3.3.7.css',
- dashboard_css: NETDATA.serverStatic + 'dashboard.css?v20180124-3',
+ dashboard_css: NETDATA.serverStatic + 'dashboard.css?v20180210-1',
background: '#FFFFFF',
foreground: '#000000',
grid: '#F0F0F0',
@@ -283,7 +283,7 @@ var NETDATA = window.NETDATA || {};
},
slate: {
bootstrap_css: NETDATA.serverStatic + 'css/bootstrap-slate-flat-3.3.7.css?v20161229-1',
- dashboard_css: NETDATA.serverStatic + 'dashboard.slate.css?v20180124-3',
+ dashboard_css: NETDATA.serverStatic + 'dashboard.slate.css?v20180210-1',
background: '#272b30',
foreground: '#C8C8C8',
grid: '#283236',
diff --git a/web/dashboard.slate.css b/web/dashboard.slate.css
index 919f646afa..9b1d50cd5d 100644
--- a/web/dashboard.slate.css
+++ b/web/dashboard.slate.css
@@ -406,6 +406,10 @@ code {
.dygraph-ylabel {
}
+.dygraph-axis-label-x {
+ overflow-x: hidden;
+}
+
.dygraph-axis-label {
color: #6c7075;
}
diff --git a/web/index.html b/web/index.html
index 58eed52671..a6620ab07f 100644
--- a/web/index.html
+++ b/web/index.html
@@ -5715,6 +5715,6 @@
</div>
</div>
<div id="hiddenDownloadLinks" style="display: none;" hidden></div>
- <script type="text/javascript" src="dashboard.js?v20180210-3"></script>
+ <script type="text/javascript" src="dashboard.js?v20180210-4"></script>
</body>
</html>