summaryrefslogtreecommitdiffstats
path: root/web/dashboard.css
diff options
context:
space:
mode:
authorSimon Nagl <simonnagl@aim.com>2016-04-23 18:50:33 +0200
committerSimon Nagl <simonnagl@aim.com>2016-04-28 16:54:23 +0200
commitce0df41e49956d7bea2abcd7c987405cebb86bc7 (patch)
tree7ae93c1183e513cbf5fddf9253334c89345f4931 /web/dashboard.css
parent33a2a8bf214bb57c3ed145dcec5cbf1aea18bd0e (diff)
Add Flexbox-Support for older browsers
Diffstat (limited to 'web/dashboard.css')
-rw-r--r--web/dashboard.css19
1 files changed, 12 insertions, 7 deletions
diff --git a/web/dashboard.css b/web/dashboard.css
index 009def6320..63e2b905fd 100644
--- a/web/dashboard.css
+++ b/web/dashboard.css
@@ -10,15 +10,20 @@ body {
margin-left: 55px;
}
-netdata-chart-row {
- width: 100%;
- text-align: center;
- display: flex;
- align-items: baseline;
- justify-content: center;
+.netdata-chart-row {
+ width: 100%;
+ text-align: center;
+ display: flex;
+ display: -webkit-flex;
+ display: -moz-flex;
+ align-items: baseline;
+ -moz-align-items: baseline;
+ -webkit-align-items: baseline;
+ justify-content: center;
+ -webkit-justify-content: center;
+ -moz-justify-content: center;
}
-
.netdata-container {
display: inline-block;
overflow: hidden;