blob: 0db50cdb69c9b0630f6d7fe692b318eae671292b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
table.fixed {
table-layout: fixed;
display: block;
overflow-x: auto;
white-space: nowrap;
}
table.fixed td {
overflow: hidden;
max-width: 200px;
vertical-align: middle;
}
table.fixed th {
overflow: hidden;
max-width: 350px;
vertical-align: middle;
}
table.fixed th:first-child {
text-align: center;
background-color: var(--ns-primary-25);
}
.columnNames {
background-color: var(--ns-primary-50) !important;
}
.brighter {
background-color: var(--ns-primary) !important;
}
mat-slider {
width: 300px;
}
.belowColumn {
background-color: var(--ns-bg-dark-50);
}
.slider {
background-color: var(--ns-bg-dark-100);
}
|