schoolbox web extension :)
1/* hides schoolbox's current period indicator */
2.timetable-subject-active {
3 border: none !important;
4}
5.timetable-subject-active:before {
6 display: none;
7}
8.timetable .timetable-period-active {
9 color: inherit !important;
10 background: unset;
11}
12.timetable-subject {
13 height: 130px !important;
14}
15
16/* progress bar styling */
17.timetable > thead > tr:nth-child(1) > th {
18 padding-bottom: 0px;
19}
20.progress-container > td {
21 line-height: 0px;
22}
23progress.progress-bar {
24 -webkit-appearance: none;
25 appearance: none;
26 height: 7px;
27 border: none;
28}
29
30/* can't put other selectors with this */
31/* see https://issues.chromium.org/issues/40564916 */
32progress::-webkit-progress-value {
33 background: var(--content-ui-foreground) !important;
34}
35progress::-webkit-progress-bar {
36 background: inherit;
37}
38progress {
39 background-color: inherit;
40}
41progress::-moz-progress-bar {
42 background: var(--content-ui-foreground) !important;
43}