More work on template editor

This commit is contained in:
Torkel Ödegaard
2014-08-27 10:41:27 +02:00
parent 7d6e04ac77
commit e0a58dd1fe
10 changed files with 155 additions and 102 deletions
+29
View File
@@ -0,0 +1,29 @@
.grafana-options-table {
width: 100%;
tr:nth-child(odd) td {
background-color: lighten(@grayDarker, 2%);
}
td {
padding: 5px 10px;
white-space: nowrap;
border-bottom: 1px solid @grafanaListBorderBottom;
border-top: 1px solid @grafanaListBorderTop;
}
td:first-child {
border-left: 1px solid @grafanaListBorderBottom;
}
td:last-child {
border-right: 1px solid @grafanaListBorderBottom;
}
.max-width {
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
}
}