]> arthur.barton.de Git - netdata.git/blobdiff - web/dashboard.css
updated all javascript libraries
[netdata.git] / web / dashboard.css
index 1135b39a7db4664ee4d009a006a1e31953818879..e969158091d5a8ecbe40b809640cdbb6074570e3 100644 (file)
@@ -6,15 +6,39 @@ body {
        font-variant: normal;
 }
 
+.morelink {
+       color: #765d9c;
+       text-decoration: none;
+}
+.morelink:hover {
+       color: #563d7c;
+       text-decoration: none;
+}
+.morelink:focus {
+       color: #765d9c;
+       text-decoration: none;
+}
+
 .netdata-chart-alignment {
        margin-left: 55px;
 }
 
+.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: -webkit-flex; /* Safari */
-       -webkit-flex-wrap: wrap; /* Safari 6.1+ */
        display: inline-block;
-       flex-wrap: wrap;
        overflow: hidden;
 
        /* required for child elements to have absolute position */
@@ -31,10 +55,7 @@ body {
 }
 
 .netdata-container-with-legend {
-       display: -webkit-flex; /* Safari */
-       -webkit-flex-wrap: wrap; /* Safari 6.1+ */
        display: inline-block;
-       flex-wrap: wrap;
        overflow: hidden;
 
        /* fix minimum scrollbar issue in firefox */
@@ -66,6 +87,43 @@ body {
        margin: 0px;
 }
 
+.netdata-legend-toolbox {
+       display: block;
+       position: absolute;
+       bottom: 0px;
+       right: 30px;
+       height: 15px;
+       width: 110px;
+       background-color: White;
+       font-size: 12px;
+       vertical-align: middle;
+       line-height: 15px;
+       color: #DDDDDD;
+       text-align: center;
+       overflow: hidden;
+       z-index: 20;
+       padding: 0px;
+       margin: 0px;
+}
+
+.netdata-legend-toolbox-button {
+       display: inline-block;
+       position: relative;
+       height: 15px;
+       width: 18px;
+       background-color: White;
+       font-size: 12px;
+       vertical-align: middle;
+       line-height: 15px;
+       color: #CDCDCD;
+       text-align: center;
+       overflow: hidden;
+       z-index: 21;
+       padding: 0px;
+       margin: 0px;
+       cursor: pointer;
+}
+
 .netdata-message {
        display: inline-block;
        text-align: left;
@@ -309,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;
@@ -453,3 +532,11 @@ body {
        color: #999999;
        font-weight: normal;
 }
+
+.popover-title {
+       font-weight: bold;
+       font-size: 12px;
+}
+.popover-content {
+       font-size: 11px;
+}