|
24 | 24 |
|
25 | 25 | .fc-toolbar { |
26 | 26 | background: var(--table-background); |
27 | | - height:2.6em; |
| 27 | + height: 2.6em; |
28 | 28 | border-bottom: 1px solid #ddd; |
29 | | - padding:3px; |
30 | | -} |
31 | | - |
32 | | -.fc-center { |
33 | | - line-height:2.2em; |
| 29 | + padding: 3px; |
34 | 30 | } |
35 | 31 |
|
36 | 32 | .fc-toolbar.fc-header-toolbar { |
37 | | - margin-bottom:0px; |
| 33 | + margin-bottom: 0px; |
38 | 34 | } |
39 | 35 |
|
40 | 36 | .fc-toolbar .fc-clear { |
41 | | - clear:none; |
| 37 | + clear: none; |
| 38 | +} |
| 39 | + |
| 40 | +.fc-center { |
| 41 | + line-height: 2.2em; |
42 | 42 | } |
43 | 43 |
|
44 | 44 | .fc-view-container { |
45 | | - padding:5px; |
| 45 | + padding: 5px; |
46 | 46 | } |
47 | 47 |
|
48 | 48 | .fc-event-container a, |
49 | 49 | .fc-event-container a:link, |
50 | 50 | .fc-event-container a:active, |
51 | 51 | .fc-event-container a:visited { |
52 | | - color:black; |
53 | 52 | text-decoration: none; |
54 | 53 | } |
55 | 54 |
|
56 | | -.fc-event-container a.event-state-scheduled, |
57 | | -.fc-event-container a.event-state-scheduled:link, |
58 | | -.fc-event-container a.event-state-scheduled:active, |
59 | | -.fc-event-container a.event-state-scheduled:visited { |
60 | | - color: var(--text-color); |
61 | | -} |
62 | | - |
63 | 55 | .fc-event { |
64 | 56 | background-color: #888888; |
65 | 57 | border-color: #888888; |
66 | 58 | } |
67 | 59 |
|
| 60 | +.fc-event.event-selected { |
| 61 | + background:#aaa; |
| 62 | +} |
| 63 | + |
68 | 64 | .fc-event.event-result-success { |
69 | 65 | background-color: var(--result-success-color); |
70 | 66 | border-color: var(--result-success-color); |
| 67 | + color: var(--result-success-text-color); |
| 68 | +} |
| 69 | + |
| 70 | +.fc-event.event-result-success.event-selected { |
| 71 | + background: var(--result-success-selected-color); |
| 72 | + color: var(--result-success-selected-text-color); |
71 | 73 | } |
72 | 74 |
|
73 | 75 | .fc-event.event-result-failure { |
74 | 76 | background-color: var(--result-failure-color); |
75 | | - border-color:var(--result-failure-color); |
| 77 | + border-color: var(--result-failure-color); |
| 78 | + color: var(--result-failure-text-color); |
| 79 | +} |
| 80 | + |
| 81 | +.fc-event.event-result-failure.event-selected { |
| 82 | + background: var(--result-failure-selected-color); |
| 83 | + color: var(--result-failure-selected-text-color); |
76 | 84 | } |
77 | 85 |
|
78 | 86 | .fc-event.event-result-unstable { |
79 | | - background-color: var(--warning-color); |
80 | | - border-color: var(--warning-color); |
| 87 | + background-color: var(--result-unstable-color); |
| 88 | + border-color: var(--result-unstable-color); |
| 89 | + color: var(--result-unstable-text-color); |
| 90 | +} |
| 91 | + |
| 92 | +.fc-event.event-result-unstable.event-selected { |
| 93 | + background: var(--result-unstable-selected-color); |
| 94 | + color: var(--result-unstable-selected-text-color); |
81 | 95 | } |
82 | 96 |
|
83 | 97 | .fc-event.event-state-scheduled { |
84 | | - background-color: var(--grey); |
85 | | - border-color: var(--grey); |
| 98 | + background-color: var(--result-scheduled-color); |
| 99 | + border-color: var(--result-scheduled-text-color); |
86 | 100 | border-style: dashed; |
| 101 | + color: var(--result-scheduled-text-color); |
| 102 | +} |
| 103 | + |
| 104 | +.fc-event.event-state-scheduled.event-selected { |
| 105 | + background: var(--result-scheduled-selected-color); |
| 106 | + color: var(--result-scheduled-selected-text-color); |
87 | 107 | } |
88 | 108 |
|
89 | 109 | .fc-event.event-state-running { |
90 | | - border-color: white; |
91 | 110 | border-style: dashed; |
92 | 111 | animation: blink-animation 2s both ease-in-out infinite; |
93 | 112 | } |
|
98 | 117 | } |
99 | 118 | } |
100 | 119 |
|
101 | | -.fc-event.event-selected { |
102 | | - background:#aaa; |
103 | | -} |
104 | | -.fc-event.event-result-success.event-selected { |
105 | | - background:var(--result-success-selected-color); |
106 | | -} |
107 | | -.fc-event.event-result-failure.event-selected { |
108 | | - background:var(--result-failure-selected-color); |
109 | | -} |
110 | | -.fc-event.event-result-unstable.event-selected { |
111 | | - background:var(--light-orange); |
112 | | -} |
113 | | -.fc-event.event-state-scheduled.event-selected { |
114 | | - background:var(--light-grey); |
115 | | -} |
116 | | - |
117 | 120 | .fc-unthemed td.fc-today { |
118 | | - background: var(--text-color-secondary); |
| 121 | + background: grey; |
119 | 122 | } |
120 | 123 |
|
121 | 124 | .tippy-tooltip.jenkins-theme { |
122 | | - background-color:var(--background); |
| 125 | + background-color: var(--background); |
123 | 126 | border: 1px solid var(--card-border-color); |
124 | 127 | color: var(--text-color); |
125 | | - padding:0; |
126 | | - font-size:100%; |
127 | | - text-align:left; |
| 128 | + padding: 0; |
| 129 | + font-size: 100%; |
| 130 | + text-align: left; |
128 | 131 | border-radius: 8px; |
129 | 132 | } |
130 | 133 |
|
131 | 134 | .tippy-tooltip.jenkins-theme .parameterBlock { |
132 | | - padding-top:10px; |
| 135 | + padding-top: 10px; |
133 | 136 | } |
134 | 137 |
|
135 | 138 | .tippy-tooltip.jenkins-theme .parameters { |
136 | | - padding-left:10px; |
| 139 | + padding-left: 10px; |
137 | 140 | } |
138 | 141 |
|
139 | 142 | .tippy-tooltip.jenkins-theme .tooltip-head { |
|
148 | 151 |
|
149 | 152 | .tippy-tooltip.jenkins-theme .tooltip-head .tooltip-close { |
150 | 153 | float: right; |
151 | | - margin-right:3px; |
152 | | - margin-left:5px; |
| 154 | + margin-right: 3px; |
| 155 | + margin-left: 5px; |
153 | 156 | cursor: pointer; |
154 | 157 | } |
155 | 158 |
|
|
158 | 161 | } |
159 | 162 |
|
160 | 163 | .tippy-tooltip.jenkins-theme .tooltip-body { |
161 | | - padding:10px; |
| 164 | + padding: 10px; |
162 | 165 | } |
163 | 166 |
|
164 | 167 | .tippy-tooltip.jenkins-theme .tooltip-middle { |
165 | | - display:flex; |
| 168 | + display: flex; |
166 | 169 | gap: 5px; |
167 | 170 | align-items: top; |
168 | 171 | } |
169 | 172 |
|
170 | | - |
171 | 173 | .tippy-tooltip.jenkins-theme .tooltip-left { |
172 | | - padding-right:10px; |
173 | | - min-width:200px; |
| 174 | + padding-right: 10px; |
| 175 | + min-width: 200px; |
174 | 176 | } |
175 | 177 |
|
176 | 178 | .tippy-tooltip.jenkins-theme .tooltip-right { |
177 | | - padding-left:10px; |
178 | | - border-left:1px solid var(--text-color-secondary); |
179 | | - min-width:200px; |
| 179 | + padding-left: 10px; |
| 180 | + border-left: 1px solid var(--text-color-secondary); |
| 181 | + min-width: 200px; |
180 | 182 | } |
181 | 183 |
|
182 | 184 | .tippy-tooltip.jenkins-theme .tooltip-right ul a { |
183 | | - display:inline-block; |
184 | | - min-width:3em; |
| 185 | + display: inline-block; |
| 186 | + min-width: 3em; |
185 | 187 | } |
186 | 188 |
|
187 | 189 | .tippy-tooltip.jenkins-theme .tooltip-bottom { |
188 | | - border-top:1px solid var(--text-color-secondary); |
189 | | - margin-top:20px; |
190 | | - padding-top:10px; |
| 190 | + border-top: 1px solid var(--text-color-secondary); |
| 191 | + margin-top: 20px; |
| 192 | + padding-top: 10px; |
191 | 193 | } |
192 | 194 |
|
193 | 195 | .tippy-tooltip.jenkins-theme .tooltip-bottom .previous { |
194 | | - float:left; |
| 196 | + float: left; |
195 | 197 | } |
196 | 198 |
|
197 | 199 | .tippy-tooltip.jenkins-theme .tooltip-bottom .previous i:after { |
198 | 200 | content:"\25C0"; |
199 | | - font-size:80%; |
200 | | - font-style:normal; |
201 | | - margin-right:2px; |
| 201 | + font-size: 80%; |
| 202 | + font-style: normal; |
| 203 | + margin-right: 2px; |
202 | 204 | } |
203 | 205 |
|
204 | 206 | .tippy-tooltip.jenkins-theme .tooltip-bottom .next { |
205 | | - float:right; |
| 207 | + float: right; |
206 | 208 | } |
207 | 209 |
|
208 | 210 | .tippy-tooltip.jenkins-theme .tooltip-bottom .next i:after { |
209 | 211 | content:"\25B6"; |
210 | | - font-size:80%; |
211 | | - font-style:normal; |
212 | | - margin-left:2px; |
| 212 | + font-size: 80%; |
| 213 | + font-style: normal; |
| 214 | + margin-left: 2px; |
213 | 215 | } |
214 | 216 |
|
215 | 217 | .tippy-tooltip.jenkins-theme .tooltip-body .time { |
216 | | - color:var(--text-color-secondary); |
217 | | - text-decoration:none; |
| 218 | + color: var(--text-color-secondary); |
| 219 | + text-decoration: none; |
218 | 220 | } |
219 | 221 |
|
220 | 222 | .tippy-tooltip.jenkins-theme .tooltip-body .time:hover { |
221 | | - color:var(--text-color-secondary); |
222 | | - text-decoration:underline; |
| 223 | + color: var(--text-color-secondary); |
| 224 | + text-decoration: underline; |
223 | 225 | } |
224 | 226 |
|
225 | 227 | .tippy-tooltip.jenkins-theme .tooltip-body .nextBuild { |
226 | | - color:var(--text-color-secondary); |
227 | | -} |
228 | | - |
229 | | -.tippy-tooltip.jenkins-theme .tooltip-body ul { |
230 | | - margin:0px; |
231 | | - padding:0px; |
232 | | - list-style-type:none; |
| 228 | + color: var(--text-color-secondary); |
233 | 229 | } |
234 | 230 |
|
235 | 231 | .tippy-tooltip.jenkins-theme .tooltip-body ul { |
| 232 | + margin: 0px; |
| 233 | + padding: 0px; |
| 234 | + list-style-type: none; |
236 | 235 | } |
237 | 236 |
|
238 | 237 | .tippy-popper[x-placement^=top] .tippy-tooltip.jenkins-theme .tippy-arrow { |
|
248 | 247 | } |
249 | 248 |
|
250 | 249 | .calendar-view-config-default { |
251 | | - font-size:90%; |
| 250 | + font-size: 90%; |
252 | 251 | color: var(--text-color-secondary); |
253 | 252 | } |
254 | 253 |
|
255 | 254 | .calendar-view-config-label { |
256 | | - vertical-align:middle; |
257 | | - padding:0px 10px 20px 10px; |
| 255 | + vertical-align: middle; |
| 256 | + padding: 0px 10px 20px 10px; |
258 | 257 | } |
259 | 258 |
|
260 | 259 | .calendar-view-config-label.first-label { |
261 | | - padding-left:0px; |
| 260 | + padding-left: 0px; |
262 | 261 | } |
263 | 262 |
|
264 | 263 | .calendar-view-config-input { |
265 | | - width:30%; |
| 264 | + width: 30%; |
266 | 265 | } |
267 | 266 |
|
268 | 267 | .calendar-view-config-container { |
|
0 commit comments