grafana/public/sass/components/_tables_lists.scss

44 lines
736 B
SCSS
Raw Normal View History

2016-02-15 08:27:41 -06:00
.grafana-options-table {
width: 100%;
th {
text-align: left;
padding: 5px 10px;
2016-02-16 01:30:37 -06:00
border-bottom: 4px solid $panel-bg;
2016-02-15 08:27:41 -06:00
}
tr td {
background-color: $grafanaListBackground;
padding: 5px 10px;
white-space: nowrap;
2016-02-16 01:30:37 -06:00
border-bottom: 4px solid $panel-bg;
2016-02-15 08:27:41 -06:00
&.nobg {
background-color: transparent;
}
}
.max-width-btns {
padding-right: 0px;
.btn {
box-sizing: border-box;
width: 100%;
}
}
}
.max-width {
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
}
.grafana-list-item {
display: block;
padding: 1px 10px;
line-height: 34px;
2016-02-16 02:42:46 -06:00
background-color: $tight-form-bg;
2016-02-15 08:27:41 -06:00
margin-bottom: 4px;
cursor: pointer;
}