blob: 1e7d474522181bbde6a4bd0a3ac533f5ef2ae8a5 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
table.fixed {
table-layout: fixed;
display: block;
overflow-x: auto;
white-space: nowrap;
border: 1px solid var(--ns-primary-50);
font-size: 12px;
border-radius: 4px;
}
table.fixed td {
overflow: hidden;
max-width: 200px;
vertical-align: middle;
background-color: var(--ns-bg-dark-100);
margin: 4px;
}
table.fixed th {
overflow: hidden;
max-width: 350px;
vertical-align: middle;
background-color: var(--ns-bg-dark-100);
font-size: 14px;
}
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;
border-color: var(--offwhite);
}
.border-bottom {
border-bottom-color: var(--offwhite) !important;
}
mat-slider {
width: 300px;
}
.belowColumn {
background-color: var(--ns-bg-dark-50);
}
.slider {
background-color: var(--ns-bg-dark-100);
}
#missingValuesHeader {
font-size: 12px;
line-height: 110% !important;
}
.verticalAlign {
vertical-align: center;
}
.cell-align {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: 100%;
}
table ::ng-deep .mat-form-field-wrapper {
margin-top: -2rem;
}
.graphics-row {
height: 100px;
padding: 1px;
margin: 0;
}
.no-pad {
padding: 1px;
margin: 0;
}
.text-overflow {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.row-height {
height: 30px;
border: none;
outline: none;
}
.graphic-class {
background-color: white !important;
}
|