mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
30 lines
566 B
Plaintext
30 lines
566 B
Plaintext
|
.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;
|
||
|
}
|
||
|
}
|