grafana/public/css/less/tables_lists.less

56 lines
988 B
Plaintext
Raw Normal View History

2014-08-27 03:41:27 -05:00
.grafana-options-table {
width: 100%;
2015-02-08 03:23:35 -06:00
th {
text-align: left;
2015-02-08 03:23:35 -06:00
padding: 5px 10px;
border-bottom: 4px solid @grafanaPanelBackground;
}
2015-02-08 02:38:05 -06:00
tr td {
background-color: @grafanaListBackground;
2014-08-27 03:41:27 -05:00
padding: 5px 10px;
white-space: nowrap;
2015-02-08 02:38:05 -06:00
border-bottom: 4px solid @grafanaPanelBackground;
2015-02-07 15:00:33 -06:00
&.nobg {
background-color: transparent;
}
}
2015-02-07 15:00:33 -06:00
.max-width-btns {
2015-02-08 02:38:05 -06:00
padding-right: 0px;
2015-02-07 15:00:33 -06:00
.btn {
2015-02-08 02:38:05 -06:00
box-sizing: border-box;
2015-02-07 15:00:33 -06:00
width: 100%;
}
}
}
2014-08-27 03:41:27 -05:00
.max-width {
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
}
.grafana-options-list {
list-style: none;
margin: 0;
max-width: 450px;
li:nth-child(odd) {
background-color: @grafanaListAccent;
}
li {
float: left;
margin: 2px;
padding: 5px 10px;
border: 1px solid @grafanaListBorderBottom;
border: 1px solid @grafanaListBorderBottom;
}
li:first-child {
border: 1px solid @grafanaListBorderBottom;
2014-08-27 03:41:27 -05:00
}
}