-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathResultsTable.less
More file actions
76 lines (66 loc) · 1.19 KB
/
ResultsTable.less
File metadata and controls
76 lines (66 loc) · 1.19 KB
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
.verticalText {
display: inline-block;
overflow: hidden;
width: 1.2em;
}
.verticalText > div {
display: inline-block;
white-space: nowrap;
line-height: 1.2;
max-width: 150px;
overflow: hidden;
text-overflow: ellipsis;
transform: translate(0, 100%) rotate(-90deg);
transform-origin: 0 0;
}
.verticalText > div:after {
content: "";
display: block;
margin: -1.2em 0 100%;
}
.bonusPoints {
color: var(--bs-success);
}
.malusPoints {
color: var(--bs-danger);
}
[data-bs-theme="dark"] {
.bonusPoints {
color: var(--bs-success-text-emphasis);
}
.malusPoints {
color: var(--bs-danger-text-emphasis);
}
}
.maxPointsRow {
font-size: 80%;
font-weight: normal;
color: #666;
background-color: #f4f4f4;
text-align: center;
padding-top: 2px !important;
padding-bottom: 2px !important;
white-space: nowrap;
}
.maxPointsRow:first-of-type {
text-align: left;
}
td.pointsCell {
position: relative;
}
td.pointsCell .accepted {
position: absolute;
bottom: 15%;
right: 15%;
width: 20%;
max-height: 33%;
opacity: 0.3;
}
td.pointsCell .reviewRequest {
position: absolute;
top: 15%;
right: 15%;
width: 20%;
max-height: 33%;
opacity: 0.4;
}