Began work on experimental new stats panel

This commit is contained in:
Torkel Ödegaard
2014-10-08 11:43:51 -04:00
parent e86207bb28
commit 7fb048f423
9 changed files with 216 additions and 4 deletions
+1
View File
@@ -6,6 +6,7 @@
@import "search.less";
@import "panel.less";
@import "forms.less";
@import "stats-panel.less";
.row-control-inner {
padding:0px;
+44
View File
@@ -0,0 +1,44 @@
.stats-panel-value-container {
padding: 20px;
text-align: center;
}
.stats-panel-value {
font-size: 3em;
font-weight: bold;
}
.stats-panel-func {
font-size: 1.5em;
}
.stats-panel-table {
width: 100%;
td {
padding: 5px 10px;
white-space: nowrap;
text-align: right;
border-bottom: 1px solid @grafanaListBorderBottom;
}
th {
text-align: right;
padding: 5px 10px;
font-weight: bold;
color: @blue
}
td:first-child {
text-align: left;
}
tr:nth-child(odd) td {
background-color: @grafanaListAccent;
}
tr:last-child td {
border: none;
}
}