-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.css
167 lines (144 loc) · 3.76 KB
/
theme.css
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
body,
body *,
td[class*="level"] {
color: var(--page-fg-color) !important;
}
body.transition.dark-ocean,
body.transition.dark-graphite,
body.transition.light,
body.transition.dark-ocean *,
body.transition.dark-graphite *,
body.transition.light * {
transition: 0.3s linear;
transition-property: background-color, color;
}
body,
input[type='text'],
/* the login fields orginally have rule with higher precendence than [type=text], */
/* so we specify this here to overwrite the white background in the login form */
#cn_loginForm fieldset input,
select,
#inhalt,
div[style*='background-color:#f8f9ed;'] /* dunno if need this line */
div[style*='background-color:#ffffff;'] {
background-color: var(--page-bg-color) !important;
}
.sideOverlay {
background-color: var(--sidebar-bg-color) !important;
}
#pageHeadBottom_1,
#pageHeadBottom_2,
#pageHeadBottom_3 {
background-color: var(--header-bar-bg-color) !important;
}
div[style*="padding:10px;"] {
background-color: var(--alert-box-bg-color) !important;
}
body .img.img_arrowSubmit:hover,
body .img.img_LangEnglish:hover,
body .img.img_LangGerman:hover,
body .img.img_arrowLogout:hover {
background-color: var(--header-buttons-hover-bg-color) !important;
color: var(--header-buttons-hover-fg-color) !important;
}
body .img.img_arrowSubmit,
body .img.img_LangEnglish,
body .img.img_LangGerman,
body .img.img_arrowLogout {
background-color: var(--header-buttons-bg-color) !important;
color: var(--header-buttons-fg-color) !important;
}
body #pageFootControls a:hover {
background-color: var(--footer-buttons-hover-bg-color) !important;
color: var(--footer-buttons-hover-fg-color) !important;
}
body #pageFootControls a {
background-color: var(--footer-buttons-bg-color) !important;
color: var(--footer-buttons-fg-color) !important;
}
body td.tbtime11,
body th.tbtime11,
body td.tbtime01,
body th.tbtime01 {
background-color: var(--time-table-row-color-1) !important;
}
body td.tbtime12,
body th.tbtime12,
body td.tbtime02,
body th.tbtime02 {
background-color: var(--time-table-row-color-2) !important;
}
body #pageTopNavi ul.nav li a:hover,
body #pageTopNavi ul.nav.depth_2 li.depth_2 a:hover,
body #pageTopNavi li.depth_2 a.navLink a:hover,
body #pageTopNavi li.depth_2 a.navLink a:hover {
background-color: var(--navigation-buttons-hover-bg-color) !important;
color: var(--navigation-buttons-hover-fg-color) !important;
}
body #pageTopNavi ul.nav.depth_2 li.depth_2 a,
body #pageTopNavi ul.nav.depth_2 li a,
body #pageTopNavi ul.nav li a {
background-color: var(--navigation-buttons-bg-color) !important;
color: var(--navigation-buttons-fg-color) !important;
}
table, tbody, .level03_color {
background-color: var(--table-bg-color) !important;
}
caption,
tr,
th,
th.rw-hide,
.tbhead,
.tbhead td,
.tbcontrol,
.tbsubhead,
.tbsubhead th,
.tbsubhead td,
.tbdata {
background-color: var(--table-header-color) !important;
}
table,
th,
td,
thead,
tr,
tbody {
border-color: var(--table-border-color) !important;
}
td.appointment {
background-color: var(--time-table-appointment-bg-color) !important;
}
td.appointment span,
td.appointment a {
color: var(--time-table-appointment-fg-color) !important;
}
.level00,
.level00 td,
.level00 tr,
.level00 th {
background-color: var(--performance-record-level0-bg-color) !important;
}
.level01,
.level01 td,
.level01 tr,
.level01 th {
background-color: var(--performance-record-level1-bg-color) !important;
}
.level02,
.level02 td,
.level02 tr,
.level02 th {
background-color: var(--performance-record-level2-bg-color) !important;
}
.level03,
.level03 td,
.level03 tr,
.level03 th {
background-color: var(--performance-record-level3-bg-color) !important;
}
.level04,
.level04 td,
.level04 tr,
.level04 th {
background-color: var(--performance-record-level4-bg-color) !important;
}