-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathEditExerciseSimpleConfigForm.css
More file actions
74 lines (60 loc) · 1.21 KB
/
EditExerciseSimpleConfigForm.css
File metadata and controls
74 lines (60 loc) · 1.21 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
.configRow {
padding-left: 15px;
padding-right: 15px;
padding-bottom: 10px;
border-bottom: 2px solid #ddd;
}
[data-bs-theme=dark] .configRow {
border-bottom: 2px solid var(--bs-secondary-border-subtle);
}
.configRow:nth-child(1) {
background-color: #f4fcf4 !important;
}
[data-bs-theme=dark] .configRow:nth-child(1) {
background-color: #2b352c !important;
}
.configRow:nth-child(odd) {
background-color: #F9F9F9;
}
[data-bs-theme=dark] .configRow:nth-child(odd) {
background-color: var(--bs-tertiary-bg);
}
.compilation {
overflow: auto;
}
.compilation>table {
width: 100%;
margin-bottom: 10px;
}
.compilation>table>tbody>tr>td {
padding-right: 10px;
padding-left: 10px;
border-right: 1px solid #ddd;
min-width: 250px;
vertical-align: top;
}
.compilation>table>tbody>tr>td:first-of-type {
padding-left: 0;
}
.compilation>table>tbody>tr>td:last-of-type {
border-right-width: 0;
padding-right: 0;
}
.compilation-open {
cursor: pointer;
font-size: 85%;
}
.compilation-close {
cursor: pointer;
margin-top: 0;
}
.smart-fill-bar {
text-align: center;
padding: 1em;
border-top: 1px solid #ddd;
margin-top: 1em;
}
.smart-fill-tinybar {
text-align: center;
padding-top: 1em;
}