blob: 59764ec917fcee0cb133ed15073ee937f9e402f9 (
plain)
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
|
.tr {
display: grid;
/* grid-template-columns: repeat(11, minmax(max-content, 1fr)); */
grid-template-columns: repeat(13, minmax(max-content, auto));
}
.th {
padding: 8px 10px;
height: 50px;
background: var(--color-background);
position: sticky;
top: 0;
font-size: 0.9em;
text-align: center;
user-select: none;
display: flex;
align-items: center;
justify-content: space-between;
&:hover {
color: var(--color-text-highlight);
}
}
.td {
padding: 8px 13px;
font-size: 0.9em;
cursor: default;
&:hover {
color: var(--color-text-highlight);
}
font-family: var(--font-normal);
}
.td.odd {
background: var(--color-row-odd);
}
/* download upload td cells */
.du {
text-align: right;
}
.sortIconContainer {
display: inline-flex;
margin-left: 10px;
width: 16px;
height: 16px;
}
.rotate180 {
transform: rotate(180deg);
}
|