]> arthur.barton.de Git - netdata.git/commitdiff
Add Flexbox-Support for older browsers
authorSimon Nagl <simonnagl@aim.com>
Sat, 23 Apr 2016 16:50:33 +0000 (18:50 +0200)
committerSimon Nagl <simonnagl@aim.com>
Thu, 28 Apr 2016 14:54:23 +0000 (16:54 +0200)
web/dashboard.css
web/dashboard.slate.css

index 009def63202913500b09c0a8553d29fe160c7f67..63e2b905fdb9a5a10743ab3a1cfa7297773a61b1 100644 (file)
@@ -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;
index 0edcc87cf3d3edcd1bcdb3784099b1b708283c2f..78cd84987f5e0750e2d678771b6ee024e2eb77aa 100644 (file)
@@ -22,8 +22,14 @@ body {
        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;
+       -moz--webkit-justify-content: center;
+       -moz-justify-content: center;
 }
 
 .netdata-container {