2014-10-08 10:43:51 -05:00
|
|
|
.stats-panel-value-container {
|
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stats-panel-value {
|
|
|
|
font-size: 3em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2014-10-15 17:16:04 -05:00
|
|
|
.stats-panel-value:not(:first-child) {
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
2014-10-16 12:44:52 -05:00
|
|
|
.stats-panel-value-small {
|
|
|
|
font-size: 50%;
|
2014-10-08 10:43:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|