blob: 6b62dd561398f72a157cc4aa11bf3b77b41b48f3 (
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
|
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;
}
|