grafana/src/css/less/tables_lists.less

35 lines
610 B
Plaintext
Raw Normal View History

2014-08-27 03:41:27 -05:00
.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;
}
tr:first-child {
td {
border-top: 1px solid @grafanaListBorderBottom;
}
2014-08-27 03:41:27 -05:00
}
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;
}
}