Commit eea414e04ba1fe482f22b81c06058fef77c7caec
Committed by
GitHub
1 parent
0bd98b3c
feat: 恢复暗黑主题 (#2947)
* feat: 恢复暗黑主题 * fix: 修复danger btn暗黑样式优先级
Showing
5 changed files
with
9685 additions
and
6 deletions
src/components/Application/index.ts
... | ... | @@ -4,7 +4,7 @@ import appLogo from './src/AppLogo.vue'; |
4 | 4 | import appProvider from './src/AppProvider.vue'; |
5 | 5 | import appSearch from './src/search/AppSearch.vue'; |
6 | 6 | import appLocalePicker from './src/AppLocalePicker.vue'; |
7 | -// import appDarkModeToggle from './src/AppDarkModeToggle.vue'; | |
7 | +import appDarkModeToggle from './src/AppDarkModeToggle.vue'; | |
8 | 8 | |
9 | 9 | export { useAppProviderContext } from './src/useAppContext'; |
10 | 10 | |
... | ... | @@ -12,4 +12,4 @@ export const AppLogo = withInstall(appLogo); |
12 | 12 | export const AppProvider = withInstall(appProvider); |
13 | 13 | export const AppSearch = withInstall(appSearch); |
14 | 14 | export const AppLocalePicker = withInstall(appLocalePicker); |
15 | -// export const AppDarkModeToggle = withInstall(appDarkModeToggle); | |
15 | +export const AppDarkModeToggle = withInstall(appDarkModeToggle); | ... | ... |
src/design/dark.less
0 → 100644
1 | +[data-theme='dark'] ::-webkit-scrollbar-track { | |
2 | + background-color: rgb(0 0 0 / 5%); | |
3 | +} | |
4 | + | |
5 | +[data-theme='dark'] ::-webkit-scrollbar-thumb { | |
6 | + background-color: rgb(144 147 153 / 30%); | |
7 | + box-shadow: inset 0 0 6px rgb(0 0 0 / 20%); | |
8 | +} | |
9 | + | |
10 | +[data-theme='dark'] ::-webkit-scrollbar-thumb:hover { | |
11 | + background-color: #b6b7b9; | |
12 | +} | |
13 | + | |
14 | +[data-theme='dark'] #nprogress .bar { | |
15 | + background-color: #0960bd; | |
16 | +} | |
17 | + | |
18 | +html[data-theme='dark'] .ant-pagination.mini .ant-pagination-item, | |
19 | +html[data-theme='dark'] .ant-pagination.mini .ant-pagination-next, | |
20 | +html[data-theme='dark'] .ant-pagination.mini .ant-pagination-prev { | |
21 | + background-color: rgb(255 255 255 / 4%) !important; | |
22 | +} | |
23 | + | |
24 | +[data-theme='dark'] html[data-theme='dark'] .ant-pagination.mini .ant-pagination-item a, | |
25 | +[data-theme='dark'] html[data-theme='dark'] .ant-pagination.mini .ant-pagination-next a, | |
26 | +[data-theme='dark'] html[data-theme='dark'] .ant-pagination.mini .ant-pagination-prev a { | |
27 | + color: #8b949e !important; | |
28 | +} | |
29 | + | |
30 | +[data-theme='dark'] html[data-theme='dark'] .ant-pagination.mini .ant-select-arrow { | |
31 | + color: #8b949e !important; | |
32 | +} | |
33 | + | |
34 | +[data-theme='dark'] html[data-theme='dark'] .ant-pagination.mini .ant-pagination-item-active { | |
35 | + background-color: #0960bd !important; | |
36 | +} | |
37 | + | |
38 | +[data-theme='dark'] html[data-theme='dark'] .ant-pagination.mini .ant-pagination-item-active a { | |
39 | + color: #fff !important; | |
40 | +} | |
41 | + | |
42 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-next, | |
43 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-prev { | |
44 | + color: #c9d1d9; | |
45 | +} | |
46 | + | |
47 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-item:focus a, | |
48 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-item:hover a, | |
49 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-next:hover a, | |
50 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-prev:hover a { | |
51 | + color: #0960bd; | |
52 | +} | |
53 | + | |
54 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-item, | |
55 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-next, | |
56 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-prev { | |
57 | + background-color: #f4f4f5 !important; | |
58 | +} | |
59 | + | |
60 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-item a, | |
61 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-next a, | |
62 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-prev a { | |
63 | + color: #606266; | |
64 | +} | |
65 | + | |
66 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-item-active { | |
67 | + background-color: #0960bd !important; | |
68 | +} | |
69 | + | |
70 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-item-active a { | |
71 | + color: #fff !important; | |
72 | +} | |
73 | + | |
74 | +[data-theme='dark'] .ant-pagination.mini .ant-select-arrow { | |
75 | + color: #cececd; | |
76 | +} | |
77 | + | |
78 | +[data-theme='dark'] .ant-btn-primary:not(.ant-btn-background-ghost):not([disabled]) { | |
79 | + color: #fff; | |
80 | +} | |
81 | + | |
82 | +[data-theme='dark'] .ant-btn-default { | |
83 | + border-color: #cececd; | |
84 | + background-color: #fff; | |
85 | + color: #606266; | |
86 | +} | |
87 | + | |
88 | +[data-theme='dark'] .ant-btn-default:focus, | |
89 | +[data-theme='dark'] .ant-btn-default:hover { | |
90 | + border-color: #0960bd; | |
91 | + background-color: #fff; | |
92 | + color: #0960bd; | |
93 | +} | |
94 | + | |
95 | +[data-theme='dark'] [data-theme='light'] .ant-btn.ant-btn-link.is-disabled { | |
96 | + border-color: transparent !important; | |
97 | + background-color: transparent !important; | |
98 | + color: rgb(0 0 0 / 25%); | |
99 | +} | |
100 | + | |
101 | +[data-theme='dark'] [data-theme='dark'] .ant-btn.ant-btn-link.is-disabled { | |
102 | + border-color: transparent !important; | |
103 | + background-color: transparent !important; | |
104 | + color: rgb(255 255 255 / 25%) !important; | |
105 | +} | |
106 | + | |
107 | +[data-theme='dark'] .ant-btn-success.ant-btn-link:not([disabled='disabled']) { | |
108 | + color: #55d187; | |
109 | +} | |
110 | + | |
111 | +[data-theme='dark'] .ant-btn-success.ant-btn-link:not([disabled='disabled']):focus, | |
112 | +[data-theme='dark'] .ant-btn-success.ant-btn-link:not([disabled='disabled']):hover { | |
113 | + border-color: transparent; | |
114 | + color: #7ddca3; | |
115 | +} | |
116 | + | |
117 | +[data-theme='dark'] .ant-btn-success.ant-btn-link:not([disabled='disabled']):active { | |
118 | + color: #34bf6c; | |
119 | +} | |
120 | + | |
121 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-link.ant-btn-loading::before, | |
122 | +[data-theme='dark'] .ant-btn-error.ant-btn-link.ant-btn-loading::before, | |
123 | +[data-theme='dark'] .ant-btn-success.ant-btn-link.ant-btn-loading::before, | |
124 | +[data-theme='dark'] .ant-btn-warning.ant-btn-link.ant-btn-loading::before, | |
125 | +[data-theme='dark'] .ant-btn.ant-btn-link.ant-btn-loading::before { | |
126 | + background: 0 0; | |
127 | +} | |
128 | + | |
129 | +[data-theme='dark'] .ant-btn-success:not(.ant-btn-link, .is-disabled) { | |
130 | + border-color: #55d187; | |
131 | + background-color: #55d187; | |
132 | + color: #fff; | |
133 | +} | |
134 | + | |
135 | +[data-theme='dark'] .ant-btn-success:not(.ant-btn-link, .is-disabled):focus, | |
136 | +[data-theme='dark'] .ant-btn-success:not(.ant-btn-link, .is-disabled):hover { | |
137 | + border-color: #7ddca3; | |
138 | + background-color: #7ddca3; | |
139 | + color: #fff; | |
140 | +} | |
141 | + | |
142 | +[data-theme='dark'] .ant-btn-success:not(.ant-btn-link, .is-disabled):active { | |
143 | + border-color: #34bf6c; | |
144 | + background-color: #34bf6c; | |
145 | +} | |
146 | + | |
147 | +[data-theme='dark'] .ant-btn-warning.ant-btn-link:not([disabled='disabled']) { | |
148 | + color: #efbd47; | |
149 | +} | |
150 | + | |
151 | +[data-theme='dark'] .ant-btn-warning.ant-btn-link:not([disabled='disabled']):focus, | |
152 | +[data-theme='dark'] .ant-btn-warning.ant-btn-link:not([disabled='disabled']):hover { | |
153 | + border-color: transparent; | |
154 | + color: #f3ce76; | |
155 | +} | |
156 | + | |
157 | +[data-theme='dark'] .ant-btn-warning.ant-btn-link:not([disabled='disabled']):active { | |
158 | + color: #ebac18; | |
159 | +} | |
160 | + | |
161 | +[data-theme='dark'] .ant-btn-warning:not(.ant-btn-link, .is-disabled) { | |
162 | + border-color: #efbd47; | |
163 | + background-color: #efbd47; | |
164 | + color: #fff; | |
165 | +} | |
166 | + | |
167 | +[data-theme='dark'] .ant-btn-warning:not(.ant-btn-link, .is-disabled):focus, | |
168 | +[data-theme='dark'] .ant-btn-warning:not(.ant-btn-link, .is-disabled):hover { | |
169 | + border-color: #f3ce76; | |
170 | + background-color: #f3ce76; | |
171 | + color: #fff; | |
172 | +} | |
173 | + | |
174 | +[data-theme='dark'] .ant-btn-warning:not(.ant-btn-link, .is-disabled):active { | |
175 | + border-color: #ebac18; | |
176 | + background-color: #ebac18; | |
177 | +} | |
178 | + | |
179 | +[data-theme='dark'] .ant-btn-error.ant-btn-link:not([disabled='disabled']) { | |
180 | + color: #ed6f6f; | |
181 | +} | |
182 | + | |
183 | +[data-theme='dark'] .ant-btn-error.ant-btn-link:not([disabled='disabled']):focus, | |
184 | +[data-theme='dark'] .ant-btn-error.ant-btn-link:not([disabled='disabled']):hover { | |
185 | + border-color: transparent; | |
186 | + color: #f39c9c; | |
187 | +} | |
188 | + | |
189 | +[data-theme='dark'] .ant-btn-error.ant-btn-link:not([disabled='disabled']):active { | |
190 | + color: #e74242; | |
191 | +} | |
192 | + | |
193 | +[data-theme='dark'] .ant-btn-error:not(.ant-btn-link, .is-disabled) { | |
194 | + border-color: #ed6f6f; | |
195 | + background-color: #ed6f6f; | |
196 | + color: #fff; | |
197 | +} | |
198 | + | |
199 | +[data-theme='dark'] .ant-btn-error:not(.ant-btn-link, .is-disabled):focus, | |
200 | +[data-theme='dark'] .ant-btn-error:not(.ant-btn-link, .is-disabled):hover { | |
201 | + border-color: #f39c9c; | |
202 | + background-color: #f39c9c; | |
203 | + color: #fff; | |
204 | +} | |
205 | + | |
206 | +[data-theme='dark'] .ant-btn-error:not(.ant-btn-link, .is-disabled):active { | |
207 | + border-color: #e74242; | |
208 | + background-color: #e74242; | |
209 | +} | |
210 | + | |
211 | +[data-theme='dark'] .ant-btn-background-ghost { | |
212 | + background-color: transparent !important; | |
213 | +} | |
214 | + | |
215 | +[data-theme='dark'] .ant-btn-background-ghost[disabled], | |
216 | +[data-theme='dark'] .ant-btn-background-ghost[disabled]:hover { | |
217 | + border-color: rgb(255 255 255 / 40%) !important; | |
218 | + background-color: transparent !important; | |
219 | + color: rgb(255 255 255 / 40%) !important; | |
220 | +} | |
221 | + | |
222 | +[data-theme='dark'] .ant-btn-dashed.ant-btn-background-ghost, | |
223 | +[data-theme='dark'] .ant-btn-default.ant-btn-background-ghost { | |
224 | + border-color: #fff; | |
225 | + color: #fff; | |
226 | +} | |
227 | + | |
228 | +[data-theme='dark'] .ant-btn-dashed.ant-btn-background-ghost:focus, | |
229 | +[data-theme='dark'] .ant-btn-dashed.ant-btn-background-ghost:hover, | |
230 | +[data-theme='dark'] .ant-btn-default.ant-btn-background-ghost:focus, | |
231 | +[data-theme='dark'] .ant-btn-default.ant-btn-background-ghost:hover { | |
232 | + border-color: #fff; | |
233 | + color: #fff; | |
234 | +} | |
235 | + | |
236 | +[data-theme='dark'] .ant-btn-dashed.ant-btn-background-ghost:active, | |
237 | +[data-theme='dark'] .ant-btn-default.ant-btn-background-ghost:active { | |
238 | + border-color: #e6e6e6; | |
239 | + color: #e6e6e6; | |
240 | +} | |
241 | + | |
242 | +[data-theme='dark'] .ant-btn-dashed.ant-btn-background-ghost[disabled], | |
243 | +[data-theme='dark'] .ant-btn-dashed.ant-btn-background-ghost[disabled]:hover, | |
244 | +[data-theme='dark'] .ant-btn-default.ant-btn-background-ghost[disabled], | |
245 | +[data-theme='dark'] .ant-btn-default.ant-btn-background-ghost[disabled]:hover { | |
246 | + border-color: rgb(255 255 255 / 40%) !important; | |
247 | + color: rgb(255 255 255 / 40%) !important; | |
248 | +} | |
249 | + | |
250 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-success:not(.ant-btn-link) { | |
251 | + border-color: #55d187; | |
252 | + background-color: transparent; | |
253 | + color: #55d187; | |
254 | +} | |
255 | + | |
256 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-success:not(.ant-btn-link):focus, | |
257 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-success:not(.ant-btn-link):hover { | |
258 | + border-color: #7ddca3; | |
259 | + color: #7ddca3 !important; | |
260 | +} | |
261 | + | |
262 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-success:not(.ant-btn-link):active { | |
263 | + border-color: #34bf6c; | |
264 | + color: #34bf6c; | |
265 | +} | |
266 | + | |
267 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-warning:not(.ant-btn-link) { | |
268 | + border-color: #efbd47; | |
269 | + background-color: transparent; | |
270 | + color: #efbd47; | |
271 | +} | |
272 | + | |
273 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-warning:not(.ant-btn-link):focus, | |
274 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-warning:not(.ant-btn-link):hover { | |
275 | + border-color: #f3ce76; | |
276 | + color: #f3ce76 !important; | |
277 | +} | |
278 | + | |
279 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-warning:not(.ant-btn-link):active { | |
280 | + border-color: #ebac18; | |
281 | + color: #ebac18; | |
282 | +} | |
283 | + | |
284 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-error:not(.ant-btn-link) { | |
285 | + border-color: #ed6f6f; | |
286 | + background-color: transparent; | |
287 | + color: #ed6f6f; | |
288 | +} | |
289 | + | |
290 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-error:not(.ant-btn-link):focus, | |
291 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-error:not(.ant-btn-link):hover { | |
292 | + border-color: #f39c9c; | |
293 | + color: #f39c9c !important; | |
294 | +} | |
295 | + | |
296 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-error:not(.ant-btn-link):active { | |
297 | + border-color: #e74242; | |
298 | + color: #e74242; | |
299 | +} | |
300 | + | |
301 | +[data-theme='dark'] .ant-btn-ghost.ant-btn-link:not([disabled='disabled']) { | |
302 | + color: #fff; | |
303 | +} | |
304 | + | |
305 | +[data-theme='dark'] .ant-btn-ghost.ant-btn-link:not([disabled='disabled']):focus, | |
306 | +[data-theme='dark'] .ant-btn-ghost.ant-btn-link:not([disabled='disabled']):hover { | |
307 | + border-color: transparent; | |
308 | + color: #fff; | |
309 | +} | |
310 | + | |
311 | +[data-theme='dark'] .ant-popover-content { | |
312 | + box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%); | |
313 | +} | |
314 | + | |
315 | +[data-theme='dark'] .modal-icon-warning { | |
316 | + color: #efbd47 !important; | |
317 | +} | |
318 | + | |
319 | +[data-theme='dark'] .modal-icon-success { | |
320 | + color: #55d187 !important; | |
321 | +} | |
322 | + | |
323 | +[data-theme='dark'] .modal-icon-error { | |
324 | + color: #ed6f6f !important; | |
325 | +} | |
326 | + | |
327 | +[data-theme='dark'] .modal-icon-info { | |
328 | + color: #0960bd !important; | |
329 | +} | |
330 | + | |
331 | +[data-theme='dark'] .bg-white { | |
332 | + background-color: #151515 !important; | |
333 | +} | |
334 | + | |
335 | +[data-theme='dark'] html[data-theme='light'] .text-secondary { | |
336 | + color: rgb(0 0 0 / 45%); | |
337 | +} | |
338 | + | |
339 | +[data-theme='dark'] html[data-theme='light'] .ant-alert-success { | |
340 | + border: 1px solid #b7eb8f; | |
341 | + background-color: #f6ffed; | |
342 | +} | |
343 | + | |
344 | +[data-theme='dark'] html[data-theme='light'] .ant-alert-error { | |
345 | + border: 1px solid #ffccc7; | |
346 | + background-color: #fff; | |
347 | +} | |
348 | + | |
349 | +[data-theme='dark'] html[data-theme='light'] .ant-alert-warning { | |
350 | + border: 1px solid #ffe58f; | |
351 | + background-color: #fff; | |
352 | +} | |
353 | + | |
354 | +[data-theme='dark'] html[data-theme='light'] :not(:root):fullscreen::backdrop { | |
355 | + background-color: #000 !important; | |
356 | +} | |
357 | + | |
358 | +[data-theme='dark'] [data-theme='dark'] .text-secondary { | |
359 | + color: #8b949e; | |
360 | +} | |
361 | + | |
362 | +[data-theme='dark'] [data-theme='dark'] .ant-card-grid { | |
363 | + box-shadow: 1px 0 0 0 #434343; | |
364 | +} | |
365 | + | |
366 | +[data-theme='dark'] [data-theme='dark'] .ant-calendar-selected-day .ant-calendar-date { | |
367 | + color: rgb(0 0 0 / 80%); | |
368 | +} | |
369 | + | |
370 | +[data-theme='dark'] | |
371 | + [data-theme='dark'] | |
372 | + .ant-select-tree | |
373 | + li | |
374 | + .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected { | |
375 | + color: rgb(0 0 0 / 90%); | |
376 | +} | |
377 | + | |
378 | +[data-theme='dark'] html { | |
379 | + -webkit-tap-highlight-color: rgb(0 0 0 / 0%); | |
380 | +} | |
381 | + | |
382 | +[data-theme='dark'] body { | |
383 | + background-color: #000; | |
384 | + color: #c9d1d9; | |
385 | +} | |
386 | + | |
387 | +[data-theme='dark'] h1, | |
388 | +[data-theme='dark'] h2, | |
389 | +[data-theme='dark'] h3, | |
390 | +[data-theme='dark'] h4, | |
391 | +[data-theme='dark'] h5, | |
392 | +[data-theme='dark'] h6 { | |
393 | + color: rgb(255 255 255 / 65%); | |
394 | +} | |
395 | + | |
396 | +[data-theme='dark'] a { | |
397 | + background-color: transparent; | |
398 | + color: #0960bd; | |
399 | +} | |
400 | + | |
401 | +[data-theme='dark'] a:hover { | |
402 | + color: #2a7dc9; | |
403 | +} | |
404 | + | |
405 | +[data-theme='dark'] a:active { | |
406 | + color: #004496; | |
407 | +} | |
408 | + | |
409 | +[data-theme='dark'] a[disabled] { | |
410 | + color: rgb(255 255 255 / 30%); | |
411 | +} | |
412 | + | |
413 | +[data-theme='dark'] caption { | |
414 | + color: #8b949e; | |
415 | +} | |
416 | + | |
417 | +[data-theme='dark'] mark { | |
418 | + background-color: #2c2712; | |
419 | +} | |
420 | + | |
421 | +[data-theme='dark'] ::selection { | |
422 | + background: #0960bd; | |
423 | + color: #fff; | |
424 | +} | |
425 | + | |
426 | +[data-theme='dark'] .ant-click-animating-node, | |
427 | +[data-theme='dark'] [ant-click-animating-without-extra-node='true']::after { | |
428 | + box-shadow: 0 0 0 0 #0960bd; | |
429 | +} | |
430 | + | |
431 | +[data-theme='dark'] .ant-btn { | |
432 | + border: 1px solid transparent; | |
433 | + border-color: #303030; | |
434 | + background: 0 0; | |
435 | + box-shadow: 0 2px 0 rgb(0 0 0 / 1.5%); | |
436 | + color: #c9d1d9; | |
437 | +} | |
438 | + | |
439 | +[data-theme='dark'] .ant-btn > a:only-child::after { | |
440 | + background: 0 0; | |
441 | +} | |
442 | + | |
443 | +[data-theme='dark'] .ant-btn:focus, | |
444 | +[data-theme='dark'] .ant-btn:hover { | |
445 | + border-color: #2a7dc9; | |
446 | + background: 0 0; | |
447 | + color: #2a7dc9; | |
448 | +} | |
449 | + | |
450 | +[data-theme='dark'] .ant-btn:focus > a:only-child::after, | |
451 | +[data-theme='dark'] .ant-btn:hover > a:only-child::after { | |
452 | + background: 0 0; | |
453 | +} | |
454 | + | |
455 | +[data-theme='dark'] .ant-btn:active { | |
456 | + border-color: #004496; | |
457 | + background: 0 0; | |
458 | + color: #004496; | |
459 | +} | |
460 | + | |
461 | +[data-theme='dark'] .ant-btn:active > a:only-child::after { | |
462 | + background: 0 0; | |
463 | +} | |
464 | + | |
465 | +[data-theme='dark'] .ant-btn[disabled], | |
466 | +[data-theme='dark'] .ant-btn[disabled]:active, | |
467 | +[data-theme='dark'] .ant-btn[disabled]:focus, | |
468 | +[data-theme='dark'] .ant-btn[disabled]:hover { | |
469 | + border-color: #303030; | |
470 | + background: rgb(255 255 255 / 8%); | |
471 | + color: rgb(255 255 255 / 30%); | |
472 | +} | |
473 | + | |
474 | +[data-theme='dark'] .ant-btn[disabled]:active > a:only-child::after, | |
475 | +[data-theme='dark'] .ant-btn[disabled]:focus > a:only-child::after, | |
476 | +[data-theme='dark'] .ant-btn[disabled]:hover > a:only-child::after, | |
477 | +[data-theme='dark'] .ant-btn[disabled] > a:only-child::after { | |
478 | + background: 0 0; | |
479 | +} | |
480 | + | |
481 | +[data-theme='dark'] .ant-btn:active, | |
482 | +[data-theme='dark'] .ant-btn:focus, | |
483 | +[data-theme='dark'] .ant-btn:hover { | |
484 | + background: 0 0; | |
485 | +} | |
486 | + | |
487 | +[data-theme='dark'] .ant-btn-primary { | |
488 | + border-color: #0960bd; | |
489 | + background: #0960bd !important; | |
490 | + box-shadow: 0 2px 0 rgb(0 0 0 / 4.5%); | |
491 | + color: #fff; | |
492 | +} | |
493 | + | |
494 | +[data-theme='dark'] .ant-btn-primary > a:only-child::after { | |
495 | + background: 0 0; | |
496 | +} | |
497 | + | |
498 | +[data-theme='dark'] .ant-btn-primary:focus, | |
499 | +[data-theme='dark'] .ant-btn-primary:hover { | |
500 | + border-color: #004496; | |
501 | + background: #004496; | |
502 | + color: #fff; | |
503 | +} | |
504 | + | |
505 | +[data-theme='dark'] .ant-btn-primary:focus > a:only-child::after, | |
506 | +[data-theme='dark'] .ant-btn-primary:hover > a:only-child::after { | |
507 | + background: 0 0; | |
508 | +} | |
509 | + | |
510 | +[data-theme='dark'] .ant-btn-primary:active { | |
511 | + border-color: #2a7dc9; | |
512 | + background: #2a7dc9; | |
513 | + color: #fff; | |
514 | +} | |
515 | + | |
516 | +[data-theme='dark'] .ant-btn-primary:active > a:only-child::after { | |
517 | + background: 0 0; | |
518 | +} | |
519 | + | |
520 | +[data-theme='dark'] .ant-btn-primary[disabled], | |
521 | +[data-theme='dark'] .ant-btn-primary[disabled]:active, | |
522 | +[data-theme='dark'] .ant-btn-primary[disabled]:focus, | |
523 | +[data-theme='dark'] .ant-btn-primary[disabled]:hover { | |
524 | + border-color: #303030; | |
525 | + background: rgb(255 255 255 / 8%); | |
526 | + color: rgb(255 255 255 / 30%); | |
527 | +} | |
528 | + | |
529 | +[data-theme='dark'] .ant-btn-primary[disabled]:active > a:only-child::after, | |
530 | +[data-theme='dark'] .ant-btn-primary[disabled]:focus > a:only-child::after, | |
531 | +[data-theme='dark'] .ant-btn-primary[disabled]:hover > a:only-child::after, | |
532 | +[data-theme='dark'] .ant-btn-primary[disabled] > a:only-child::after { | |
533 | + background: 0 0; | |
534 | +} | |
535 | + | |
536 | +[data-theme='dark'] .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) { | |
537 | + border-right-color: #2a7dc9; | |
538 | + border-left-color: #2a7dc9; | |
539 | +} | |
540 | + | |
541 | +[data-theme='dark'] .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled { | |
542 | + border-color: #303030; | |
543 | +} | |
544 | + | |
545 | +[data-theme='dark'] .ant-btn-group .ant-btn-primary:first-child:not(:last-child) { | |
546 | + border-right-color: #2a7dc9; | |
547 | +} | |
548 | + | |
549 | +[data-theme='dark'] .ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] { | |
550 | + border-right-color: #303030; | |
551 | +} | |
552 | + | |
553 | +[data-theme='dark'] .ant-btn-group .ant-btn-primary + .ant-btn-primary, | |
554 | +[data-theme='dark'] .ant-btn-group .ant-btn-primary:last-child:not(:first-child) { | |
555 | + border-left-color: #2a7dc9; | |
556 | +} | |
557 | + | |
558 | +[data-theme='dark'] .ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled], | |
559 | +[data-theme='dark'] .ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled] { | |
560 | + border-left-color: #303030; | |
561 | +} | |
562 | + | |
563 | +[data-theme='dark'] .ant-btn-ghost { | |
564 | + border-color: #303030; | |
565 | + background: 0 0; | |
566 | + color: #c9d1d9; | |
567 | +} | |
568 | + | |
569 | +[data-theme='dark'] .ant-btn-ghost > a:only-child::after { | |
570 | + background: 0 0; | |
571 | +} | |
572 | + | |
573 | +[data-theme='dark'] .ant-btn-ghost:focus, | |
574 | +[data-theme='dark'] .ant-btn-ghost:hover { | |
575 | + border-color: #2a7dc9; | |
576 | + background: 0 0; | |
577 | + color: #2a7dc9; | |
578 | +} | |
579 | + | |
580 | +[data-theme='dark'] .ant-btn-ghost:focus > a:only-child::after, | |
581 | +[data-theme='dark'] .ant-btn-ghost:hover > a:only-child::after { | |
582 | + background: 0 0; | |
583 | +} | |
584 | + | |
585 | +[data-theme='dark'] .ant-btn-ghost:active { | |
586 | + border-color: #004496; | |
587 | + background: 0 0; | |
588 | + color: #004496; | |
589 | +} | |
590 | + | |
591 | +[data-theme='dark'] .ant-btn-ghost:active > a:only-child::after { | |
592 | + background: 0 0; | |
593 | +} | |
594 | + | |
595 | +[data-theme='dark'] .ant-btn-ghost[disabled], | |
596 | +[data-theme='dark'] .ant-btn-ghost[disabled]:active, | |
597 | +[data-theme='dark'] .ant-btn-ghost[disabled]:focus, | |
598 | +[data-theme='dark'] .ant-btn-ghost[disabled]:hover { | |
599 | + border-color: #303030; | |
600 | + background: rgb(255 255 255 / 8%); | |
601 | + color: rgb(255 255 255 / 30%); | |
602 | +} | |
603 | + | |
604 | +[data-theme='dark'] .ant-btn-ghost[disabled]:active > a:only-child::after, | |
605 | +[data-theme='dark'] .ant-btn-ghost[disabled]:focus > a:only-child::after, | |
606 | +[data-theme='dark'] .ant-btn-ghost[disabled]:hover > a:only-child::after, | |
607 | +[data-theme='dark'] .ant-btn-ghost[disabled] > a:only-child::after { | |
608 | + background: 0 0; | |
609 | +} | |
610 | + | |
611 | +[data-theme='dark'] .ant-btn-dashed { | |
612 | + border-color: #303030; | |
613 | + background: 0 0; | |
614 | + color: #c9d1d9; | |
615 | +} | |
616 | + | |
617 | +[data-theme='dark'] .ant-btn-dashed > a:only-child::after { | |
618 | + background: 0 0; | |
619 | +} | |
620 | + | |
621 | +[data-theme='dark'] .ant-btn-dashed:focus, | |
622 | +[data-theme='dark'] .ant-btn-dashed:hover { | |
623 | + border-color: #2a7dc9; | |
624 | + background: 0 0; | |
625 | + color: #2a7dc9; | |
626 | +} | |
627 | + | |
628 | +[data-theme='dark'] .ant-btn-dashed:focus > a:only-child::after, | |
629 | +[data-theme='dark'] .ant-btn-dashed:hover > a:only-child::after { | |
630 | + background: 0 0; | |
631 | +} | |
632 | + | |
633 | +[data-theme='dark'] .ant-btn-dashed:active { | |
634 | + border-color: #004496; | |
635 | + background: 0 0; | |
636 | + color: #004496; | |
637 | +} | |
638 | + | |
639 | +[data-theme='dark'] .ant-btn-dashed:active > a:only-child::after { | |
640 | + background: 0 0; | |
641 | +} | |
642 | + | |
643 | +[data-theme='dark'] .ant-btn-dashed[disabled], | |
644 | +[data-theme='dark'] .ant-btn-dashed[disabled]:active, | |
645 | +[data-theme='dark'] .ant-btn-dashed[disabled]:focus, | |
646 | +[data-theme='dark'] .ant-btn-dashed[disabled]:hover { | |
647 | + border-color: #303030; | |
648 | + background: rgb(255 255 255 / 8%); | |
649 | + color: rgb(255 255 255 / 30%); | |
650 | +} | |
651 | + | |
652 | +[data-theme='dark'] .ant-btn-dashed[disabled]:active > a:only-child::after, | |
653 | +[data-theme='dark'] .ant-btn-dashed[disabled]:focus > a:only-child::after, | |
654 | +[data-theme='dark'] .ant-btn-dashed[disabled]:hover > a:only-child::after, | |
655 | +[data-theme='dark'] .ant-btn-dashed[disabled] > a:only-child::after { | |
656 | + background: 0 0; | |
657 | +} | |
658 | + | |
659 | +[data-theme='dark'] .ant-btn-danger { | |
660 | + border-color: #ed6f6f; | |
661 | + background: #ed6f6f; | |
662 | + box-shadow: 0 2px 0 rgb(0 0 0 / 4.5%); | |
663 | + color: #fff; | |
664 | +} | |
665 | + | |
666 | +[data-theme='dark'] .ant-btn-danger > a:only-child::after { | |
667 | + background: 0 0; | |
668 | +} | |
669 | + | |
670 | +[data-theme='dark'] .ant-btn-danger:focus, | |
671 | +[data-theme='dark'] .ant-btn-danger:hover { | |
672 | + border-color: #c75457; | |
673 | + background: #c75457; | |
674 | + color: #fff; | |
675 | +} | |
676 | + | |
677 | +[data-theme='dark'] .ant-btn-danger:focus > a:only-child::after, | |
678 | +[data-theme='dark'] .ant-btn-danger:hover > a:only-child::after { | |
679 | + background: 0 0; | |
680 | +} | |
681 | + | |
682 | +[data-theme='dark'] .ant-btn-danger:active { | |
683 | + border-color: #faa19d; | |
684 | + background: #faa19d; | |
685 | + color: #fff; | |
686 | +} | |
687 | + | |
688 | +[data-theme='dark'] .ant-btn-danger:active > a:only-child::after { | |
689 | + background: 0 0; | |
690 | +} | |
691 | + | |
692 | +[data-theme='dark'] .ant-btn-danger[disabled], | |
693 | +[data-theme='dark'] .ant-btn-danger[disabled]:active, | |
694 | +[data-theme='dark'] .ant-btn-danger[disabled]:focus, | |
695 | +[data-theme='dark'] .ant-btn-danger[disabled]:hover { | |
696 | + border-color: #303030; | |
697 | + background: rgb(255 255 255 / 8%); | |
698 | + color: rgb(255 255 255 / 30%); | |
699 | +} | |
700 | + | |
701 | +[data-theme='dark'] .ant-btn-danger[disabled]:active > a:only-child::after, | |
702 | +[data-theme='dark'] .ant-btn-danger[disabled]:focus > a:only-child::after, | |
703 | +[data-theme='dark'] .ant-btn-danger[disabled]:hover > a:only-child::after, | |
704 | +[data-theme='dark'] .ant-btn-danger[disabled] > a:only-child::after { | |
705 | + background: 0 0; | |
706 | +} | |
707 | + | |
708 | +[data-theme='dark'] .ant-btn-link { | |
709 | + border-color: transparent; | |
710 | + background: 0 0; | |
711 | + color: #0960bd; | |
712 | +} | |
713 | + | |
714 | +[data-theme='dark'] .ant-btn-link > a:only-child::after { | |
715 | + background: 0 0; | |
716 | +} | |
717 | + | |
718 | +[data-theme='dark'] .ant-btn-link:focus, | |
719 | +[data-theme='dark'] .ant-btn-link:hover { | |
720 | + border-color: transparent; | |
721 | + background: 0 0; | |
722 | + color: #2a7dc9; | |
723 | +} | |
724 | + | |
725 | +[data-theme='dark'] .ant-btn-link:focus > a:only-child::after, | |
726 | +[data-theme='dark'] .ant-btn-link:hover > a:only-child::after { | |
727 | + background: 0 0; | |
728 | +} | |
729 | + | |
730 | +[data-theme='dark'] .ant-btn-link:active { | |
731 | + border-color: #004496; | |
732 | + border-color: transparent; | |
733 | + background: 0 0; | |
734 | + color: #004496; | |
735 | +} | |
736 | + | |
737 | +[data-theme='dark'] .ant-btn-link:active > a:only-child::after { | |
738 | + background: 0 0; | |
739 | +} | |
740 | + | |
741 | +[data-theme='dark'] .ant-btn-link:hover { | |
742 | + background: 0 0; | |
743 | +} | |
744 | + | |
745 | +[data-theme='dark'] .ant-btn-link[disabled], | |
746 | +[data-theme='dark'] .ant-btn-link[disabled]:active, | |
747 | +[data-theme='dark'] .ant-btn-link[disabled]:focus, | |
748 | +[data-theme='dark'] .ant-btn-link[disabled]:hover { | |
749 | + border-color: transparent; | |
750 | + background: 0 0; | |
751 | + color: rgb(255 255 255 / 30%); | |
752 | +} | |
753 | + | |
754 | +[data-theme='dark'] .ant-btn-link[disabled]:active > a:only-child::after, | |
755 | +[data-theme='dark'] .ant-btn-link[disabled]:focus > a:only-child::after, | |
756 | +[data-theme='dark'] .ant-btn-link[disabled]:hover > a:only-child::after, | |
757 | +[data-theme='dark'] .ant-btn-link[disabled] > a:only-child::after { | |
758 | + background: 0 0; | |
759 | +} | |
760 | + | |
761 | +[data-theme='dark'] .ant-btn-text { | |
762 | + border-color: transparent; | |
763 | + background: 0 0; | |
764 | + color: #c9d1d9; | |
765 | +} | |
766 | + | |
767 | +[data-theme='dark'] .ant-btn-text > a:only-child::after { | |
768 | + background: 0 0; | |
769 | +} | |
770 | + | |
771 | +[data-theme='dark'] .ant-btn-text:focus > a:only-child::after, | |
772 | +[data-theme='dark'] .ant-btn-text:hover > a:only-child::after { | |
773 | + background: 0 0; | |
774 | +} | |
775 | + | |
776 | +[data-theme='dark'] .ant-btn-text:active { | |
777 | + border-color: transparent; | |
778 | + background: rgb(255 255 255 / 4%); | |
779 | + color: #c9d1d9; | |
780 | +} | |
781 | + | |
782 | +[data-theme='dark'] .ant-btn-text:active > a:only-child::after { | |
783 | + background: 0 0; | |
784 | +} | |
785 | + | |
786 | +[data-theme='dark'] .ant-btn-text:focus, | |
787 | +[data-theme='dark'] .ant-btn-text:hover { | |
788 | + border-color: transparent; | |
789 | + background: rgb(255 255 255 / 3%); | |
790 | + color: #c9d1d9; | |
791 | +} | |
792 | + | |
793 | +[data-theme='dark'] .ant-btn-text[disabled], | |
794 | +[data-theme='dark'] .ant-btn-text[disabled]:active, | |
795 | +[data-theme='dark'] .ant-btn-text[disabled]:focus, | |
796 | +[data-theme='dark'] .ant-btn-text[disabled]:hover { | |
797 | + border-color: transparent; | |
798 | + background: 0 0; | |
799 | + color: rgb(255 255 255 / 30%); | |
800 | +} | |
801 | + | |
802 | +[data-theme='dark'] .ant-btn-text[disabled]:active > a:only-child::after, | |
803 | +[data-theme='dark'] .ant-btn-text[disabled]:focus > a:only-child::after, | |
804 | +[data-theme='dark'] .ant-btn-text[disabled]:hover > a:only-child::after, | |
805 | +[data-theme='dark'] .ant-btn-text[disabled] > a:only-child::after { | |
806 | + background: 0 0; | |
807 | +} | |
808 | + | |
809 | +[data-theme='dark'] .ant-btn-dangerous { | |
810 | + border-color: #ed6f6f; | |
811 | + background: 0 0; | |
812 | + color: #ed6f6f; | |
813 | +} | |
814 | + | |
815 | +[data-theme='dark'] .ant-btn-dangerous > a:only-child::after { | |
816 | + background: 0 0; | |
817 | +} | |
818 | + | |
819 | +[data-theme='dark'] .ant-btn-dangerous:focus, | |
820 | +[data-theme='dark'] .ant-btn-dangerous:hover { | |
821 | + border-color: #c75457; | |
822 | + background: 0 0; | |
823 | + color: #c75457; | |
824 | +} | |
825 | + | |
826 | +[data-theme='dark'] .ant-btn-dangerous:focus > a:only-child::after, | |
827 | +[data-theme='dark'] .ant-btn-dangerous:hover > a:only-child::after { | |
828 | + background: 0 0; | |
829 | +} | |
830 | + | |
831 | +[data-theme='dark'] .ant-btn-dangerous:active { | |
832 | + border-color: #faa19d; | |
833 | + background: 0 0; | |
834 | + color: #faa19d; | |
835 | +} | |
836 | + | |
837 | +[data-theme='dark'] .ant-btn-dangerous:active > a:only-child::after { | |
838 | + background: 0 0; | |
839 | +} | |
840 | + | |
841 | +[data-theme='dark'] .ant-btn-dangerous[disabled], | |
842 | +[data-theme='dark'] .ant-btn-dangerous[disabled]:active, | |
843 | +[data-theme='dark'] .ant-btn-dangerous[disabled]:focus, | |
844 | +[data-theme='dark'] .ant-btn-dangerous[disabled]:hover { | |
845 | + border-color: #303030; | |
846 | + background: rgb(255 255 255 / 8%); | |
847 | + color: rgb(255 255 255 / 30%); | |
848 | +} | |
849 | + | |
850 | +[data-theme='dark'] .ant-btn-dangerous[disabled]:active > a:only-child::after, | |
851 | +[data-theme='dark'] .ant-btn-dangerous[disabled]:focus > a:only-child::after, | |
852 | +[data-theme='dark'] .ant-btn-dangerous[disabled]:hover > a:only-child::after, | |
853 | +[data-theme='dark'] .ant-btn-dangerous[disabled] > a:only-child::after { | |
854 | + background: 0 0; | |
855 | +} | |
856 | + | |
857 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary { | |
858 | + border-color: #ed6f6f; | |
859 | + background: #ed6f6f !important; | |
860 | + box-shadow: 0 2px 0 rgb(0 0 0 / 4.5%); | |
861 | + color: #fff; | |
862 | +} | |
863 | + | |
864 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary > a:only-child::after { | |
865 | + background: 0 0; | |
866 | +} | |
867 | + | |
868 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary:focus, | |
869 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary:hover { | |
870 | + border-color: #c75457; | |
871 | + background: #c75457; | |
872 | + color: #fff; | |
873 | +} | |
874 | + | |
875 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary:focus > a:only-child::after, | |
876 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary:hover > a:only-child::after { | |
877 | + background: 0 0; | |
878 | +} | |
879 | + | |
880 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary:active { | |
881 | + border-color: #faa19d; | |
882 | + background: #faa19d; | |
883 | + color: #fff; | |
884 | +} | |
885 | + | |
886 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary:active > a:only-child::after { | |
887 | + background: 0 0; | |
888 | +} | |
889 | + | |
890 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary[disabled], | |
891 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary[disabled]:active, | |
892 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary[disabled]:focus, | |
893 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary[disabled]:hover { | |
894 | + border-color: #303030; | |
895 | + background: rgb(255 255 255 / 8%); | |
896 | + color: rgb(255 255 255 / 30%); | |
897 | +} | |
898 | + | |
899 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child::after, | |
900 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child::after, | |
901 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child::after, | |
902 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child::after { | |
903 | + background: 0 0; | |
904 | +} | |
905 | + | |
906 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link { | |
907 | + border-color: transparent; | |
908 | + background: 0 0; | |
909 | + color: #ed6f6f; | |
910 | +} | |
911 | + | |
912 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link > a:only-child::after { | |
913 | + background: 0 0; | |
914 | +} | |
915 | + | |
916 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link:active > a:only-child::after { | |
917 | + background: 0 0; | |
918 | +} | |
919 | + | |
920 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link:focus, | |
921 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link:hover { | |
922 | + border-color: transparent; | |
923 | + background: 0 0; | |
924 | + color: #c75457; | |
925 | +} | |
926 | + | |
927 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after, | |
928 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after { | |
929 | + background: 0 0; | |
930 | +} | |
931 | + | |
932 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link:active { | |
933 | + border-color: transparent; | |
934 | + background: 0 0; | |
935 | + color: #faa19d; | |
936 | +} | |
937 | + | |
938 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link[disabled], | |
939 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link[disabled]:active, | |
940 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link[disabled]:focus, | |
941 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link[disabled]:hover { | |
942 | + border-color: transparent; | |
943 | + background: 0 0; | |
944 | + color: rgb(255 255 255 / 30%); | |
945 | +} | |
946 | + | |
947 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after, | |
948 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after, | |
949 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after, | |
950 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after { | |
951 | + background: 0 0; | |
952 | +} | |
953 | + | |
954 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text { | |
955 | + border-color: transparent; | |
956 | + background: 0 0; | |
957 | + color: #ed6f6f; | |
958 | +} | |
959 | + | |
960 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text > a:only-child::after { | |
961 | + background: 0 0; | |
962 | +} | |
963 | + | |
964 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text:active > a:only-child::after { | |
965 | + background: 0 0; | |
966 | +} | |
967 | + | |
968 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text:focus, | |
969 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text:hover { | |
970 | + border-color: transparent; | |
971 | + background: rgb(255 255 255 / 3%); | |
972 | + color: #c75457; | |
973 | +} | |
974 | + | |
975 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after, | |
976 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after { | |
977 | + background: 0 0; | |
978 | +} | |
979 | + | |
980 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text:active { | |
981 | + border-color: transparent; | |
982 | + background: rgb(255 255 255 / 4%); | |
983 | + color: #faa19d; | |
984 | +} | |
985 | + | |
986 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text[disabled], | |
987 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text[disabled]:active, | |
988 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text[disabled]:focus, | |
989 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text[disabled]:hover { | |
990 | + border-color: transparent; | |
991 | + background: 0 0; | |
992 | + color: rgb(255 255 255 / 30%); | |
993 | +} | |
994 | + | |
995 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after, | |
996 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after, | |
997 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after, | |
998 | +[data-theme='dark'] .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after { | |
999 | + background: 0 0; | |
1000 | +} | |
1001 | + | |
1002 | +[data-theme='dark'] .ant-btn::before { | |
1003 | + background: #151515; | |
1004 | +} | |
1005 | + | |
1006 | +[data-theme='dark'] | |
1007 | + .ant-btn-group | |
1008 | + .ant-btn-primary | |
1009 | + + .ant-btn:not(.ant-btn-primary):not([disabled]) { | |
1010 | + border-left-color: transparent; | |
1011 | +} | |
1012 | + | |
1013 | +[data-theme='dark'] .ant-btn.ant-btn-background-ghost { | |
1014 | + border-color: rgb(255 255 255 / 25%); | |
1015 | + color: #c9d1d9; | |
1016 | +} | |
1017 | + | |
1018 | +[data-theme='dark'] .ant-btn.ant-btn-background-ghost, | |
1019 | +[data-theme='dark'] .ant-btn.ant-btn-background-ghost:active, | |
1020 | +[data-theme='dark'] .ant-btn.ant-btn-background-ghost:focus, | |
1021 | +[data-theme='dark'] .ant-btn.ant-btn-background-ghost:hover { | |
1022 | + background: 0 0; | |
1023 | +} | |
1024 | + | |
1025 | +[data-theme='dark'] .ant-btn.ant-btn-background-ghost:focus, | |
1026 | +[data-theme='dark'] .ant-btn.ant-btn-background-ghost:hover { | |
1027 | + border-color: #2a7dc9; | |
1028 | + color: #2a7dc9; | |
1029 | +} | |
1030 | + | |
1031 | +[data-theme='dark'] .ant-btn.ant-btn-background-ghost:active { | |
1032 | + border-color: #004496; | |
1033 | + color: #004496; | |
1034 | +} | |
1035 | + | |
1036 | +[data-theme='dark'] .ant-btn.ant-btn-background-ghost[disabled] { | |
1037 | + border-color: #303030; | |
1038 | + background: 0 0; | |
1039 | + color: rgb(255 255 255 / 30%); | |
1040 | +} | |
1041 | + | |
1042 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary { | |
1043 | + border-color: #0960bd; | |
1044 | +} | |
1045 | + | |
1046 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary > a:only-child::after { | |
1047 | + background: 0 0; | |
1048 | +} | |
1049 | + | |
1050 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary:focus, | |
1051 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary:hover { | |
1052 | + border-color: #004496; | |
1053 | + color: #004496; | |
1054 | +} | |
1055 | + | |
1056 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child::after, | |
1057 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child::after { | |
1058 | + background: 0 0; | |
1059 | +} | |
1060 | + | |
1061 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary:active { | |
1062 | + border-color: #2a7dc9; | |
1063 | + color: #2a7dc9; | |
1064 | +} | |
1065 | + | |
1066 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary:active > a:only-child::after { | |
1067 | + background: 0 0; | |
1068 | +} | |
1069 | + | |
1070 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary[disabled], | |
1071 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary[disabled]:active, | |
1072 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary[disabled]:focus, | |
1073 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary[disabled]:hover { | |
1074 | + border-color: #303030; | |
1075 | + background: rgb(255 255 255 / 8%); | |
1076 | + color: rgb(255 255 255 / 30%); | |
1077 | +} | |
1078 | + | |
1079 | +[data-theme='dark'] | |
1080 | + .ant-btn-background-ghost.ant-btn-primary[disabled]:active | |
1081 | + > a:only-child::after, | |
1082 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child::after, | |
1083 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child::after, | |
1084 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child::after { | |
1085 | + background: 0 0; | |
1086 | +} | |
1087 | + | |
1088 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger { | |
1089 | + border-color: #ed6f6f; | |
1090 | + color: #ed6f6f; | |
1091 | +} | |
1092 | + | |
1093 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger > a:only-child::after { | |
1094 | + background: 0 0; | |
1095 | +} | |
1096 | + | |
1097 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger:focus, | |
1098 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger:hover { | |
1099 | + border-color: #c75457; | |
1100 | + color: #c75457; | |
1101 | +} | |
1102 | + | |
1103 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child::after, | |
1104 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child::after { | |
1105 | + background: 0 0; | |
1106 | +} | |
1107 | + | |
1108 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger:active { | |
1109 | + border-color: #faa19d; | |
1110 | + color: #faa19d; | |
1111 | +} | |
1112 | + | |
1113 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger:active > a:only-child::after { | |
1114 | + background: 0 0; | |
1115 | +} | |
1116 | + | |
1117 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger[disabled], | |
1118 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger[disabled]:active, | |
1119 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger[disabled]:focus, | |
1120 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger[disabled]:hover { | |
1121 | + border-color: #303030; | |
1122 | + background: rgb(255 255 255 / 8%); | |
1123 | + color: rgb(255 255 255 / 30%); | |
1124 | +} | |
1125 | + | |
1126 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child::after, | |
1127 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child::after, | |
1128 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child::after, | |
1129 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child::after { | |
1130 | + background: 0 0; | |
1131 | +} | |
1132 | + | |
1133 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous { | |
1134 | + border-color: #ed6f6f; | |
1135 | + color: #ed6f6f; | |
1136 | +} | |
1137 | + | |
1138 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous > a:only-child::after { | |
1139 | + background: 0 0; | |
1140 | +} | |
1141 | + | |
1142 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous:focus, | |
1143 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous:hover { | |
1144 | + border-color: #c75457; | |
1145 | + color: #c75457; | |
1146 | +} | |
1147 | + | |
1148 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child::after, | |
1149 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child::after { | |
1150 | + background: 0 0; | |
1151 | +} | |
1152 | + | |
1153 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous:active { | |
1154 | + border-color: #faa19d; | |
1155 | + color: #faa19d; | |
1156 | +} | |
1157 | + | |
1158 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child::after { | |
1159 | + background: 0 0; | |
1160 | +} | |
1161 | + | |
1162 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous[disabled], | |
1163 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active, | |
1164 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus, | |
1165 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover { | |
1166 | + border-color: #303030; | |
1167 | + background: rgb(255 255 255 / 8%); | |
1168 | + color: rgb(255 255 255 / 30%); | |
1169 | +} | |
1170 | + | |
1171 | +[data-theme='dark'] | |
1172 | + .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active | |
1173 | + > a:only-child::after, | |
1174 | +[data-theme='dark'] | |
1175 | + .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus | |
1176 | + > a:only-child::after, | |
1177 | +[data-theme='dark'] | |
1178 | + .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover | |
1179 | + > a:only-child::after, | |
1180 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child::after { | |
1181 | + background: 0 0; | |
1182 | +} | |
1183 | + | |
1184 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link { | |
1185 | + border-color: transparent; | |
1186 | + color: #ed6f6f; | |
1187 | +} | |
1188 | + | |
1189 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child::after { | |
1190 | + background: 0 0; | |
1191 | +} | |
1192 | + | |
1193 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus, | |
1194 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover { | |
1195 | + border-color: transparent; | |
1196 | + color: #c75457; | |
1197 | +} | |
1198 | + | |
1199 | +[data-theme='dark'] | |
1200 | + .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus | |
1201 | + > a:only-child::after, | |
1202 | +[data-theme='dark'] | |
1203 | + .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover | |
1204 | + > a:only-child::after { | |
1205 | + background: 0 0; | |
1206 | +} | |
1207 | + | |
1208 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active { | |
1209 | + border-color: transparent; | |
1210 | + color: #faa19d; | |
1211 | +} | |
1212 | + | |
1213 | +[data-theme='dark'] | |
1214 | + .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active | |
1215 | + > a:only-child::after { | |
1216 | + background: 0 0; | |
1217 | +} | |
1218 | + | |
1219 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled], | |
1220 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active, | |
1221 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus, | |
1222 | +[data-theme='dark'] .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover { | |
1223 | + border-color: #303030; | |
1224 | + background: rgb(255 255 255 / 8%); | |
1225 | + color: rgb(255 255 255 / 30%); | |
1226 | +} | |
1227 | + | |
1228 | +[data-theme='dark'] | |
1229 | + .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active | |
1230 | + > a:only-child::after, | |
1231 | +[data-theme='dark'] | |
1232 | + .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus | |
1233 | + > a:only-child::after, | |
1234 | +[data-theme='dark'] | |
1235 | + .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover | |
1236 | + > a:only-child::after, | |
1237 | +[data-theme='dark'] | |
1238 | + .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] | |
1239 | + > a:only-child::after { | |
1240 | + background: 0 0; | |
1241 | +} | |
1242 | + | |
1243 | +[data-theme='dark'] .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary, | |
1244 | +[data-theme='dark'] .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child) { | |
1245 | + border-right-color: #2a7dc9; | |
1246 | + border-left-color: #303030; | |
1247 | +} | |
1248 | + | |
1249 | +[data-theme='dark'] .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled], | |
1250 | +[data-theme='dark'] | |
1251 | + .ant-btn-group-rtl.ant-btn-group | |
1252 | + .ant-btn-primary:last-child:not(:first-child)[disabled] { | |
1253 | + border-right-color: #303030; | |
1254 | + border-left-color: #2a7dc9; | |
1255 | +} | |
1256 | + | |
1257 | +[data-theme='dark'] .ant-radio-group { | |
1258 | + color: #c9d1d9; | |
1259 | +} | |
1260 | + | |
1261 | +[data-theme='dark'] .ant-radio-wrapper { | |
1262 | + color: #c9d1d9; | |
1263 | +} | |
1264 | + | |
1265 | +[data-theme='dark'] .ant-radio { | |
1266 | + color: #c9d1d9; | |
1267 | +} | |
1268 | + | |
1269 | +[data-theme='dark'] .ant-radio-input:focus + .ant-radio-inner, | |
1270 | +[data-theme='dark'] .ant-radio-wrapper:hover .ant-radio, | |
1271 | +[data-theme='dark'] .ant-radio:hover .ant-radio-inner { | |
1272 | + border-color: #0960bd; | |
1273 | +} | |
1274 | + | |
1275 | +[data-theme='dark'] .ant-radio-input:focus + .ant-radio-inner { | |
1276 | + box-shadow: 0 0 0 3px rgb(255 255 255 / 8%); | |
1277 | +} | |
1278 | + | |
1279 | +[data-theme='dark'] .ant-radio-checked::after { | |
1280 | + border: 1px solid #0960bd; | |
1281 | +} | |
1282 | + | |
1283 | +[data-theme='dark'] .ant-radio-inner { | |
1284 | + border-color: #303030; | |
1285 | + background-color: transparent; | |
1286 | +} | |
1287 | + | |
1288 | +[data-theme='dark'] .ant-radio-inner::after { | |
1289 | + background-color: #0960bd; | |
1290 | +} | |
1291 | + | |
1292 | +[data-theme='dark'] .ant-radio-checked .ant-radio-inner { | |
1293 | + border-color: #0960bd; | |
1294 | +} | |
1295 | + | |
1296 | +[data-theme='dark'] .ant-radio-disabled .ant-radio-inner { | |
1297 | + border-color: #303030 !important; | |
1298 | + background-color: rgb(255 255 255 / 8%); | |
1299 | +} | |
1300 | + | |
1301 | +[data-theme='dark'] .ant-radio-disabled .ant-radio-inner::after { | |
1302 | + background-color: rgb(255 255 255 / 20%); | |
1303 | +} | |
1304 | + | |
1305 | +[data-theme='dark'] .ant-radio-disabled + span { | |
1306 | + color: rgb(255 255 255 / 30%); | |
1307 | +} | |
1308 | + | |
1309 | +[data-theme='dark'] .ant-radio-button-wrapper { | |
1310 | + border: 1px solid #303030; | |
1311 | + background: 0 0; | |
1312 | + color: #c9d1d9; | |
1313 | +} | |
1314 | + | |
1315 | +[data-theme='dark'] .ant-radio-button-wrapper a { | |
1316 | + color: #c9d1d9; | |
1317 | +} | |
1318 | + | |
1319 | +[data-theme='dark'] .ant-radio-button-wrapper:not(:first-child)::before { | |
1320 | + background-color: #303030; | |
1321 | +} | |
1322 | + | |
1323 | +[data-theme='dark'] .ant-radio-button-wrapper:first-child { | |
1324 | + border-left: 1px solid #303030; | |
1325 | +} | |
1326 | + | |
1327 | +[data-theme='dark'] .ant-radio-button-wrapper:hover { | |
1328 | + color: #0960bd; | |
1329 | +} | |
1330 | + | |
1331 | +[data-theme='dark'] .ant-radio-button-wrapper:focus-within { | |
1332 | + box-shadow: 0 0 0 3px rgb(255 255 255 / 8%); | |
1333 | +} | |
1334 | + | |
1335 | +[data-theme='dark'] .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) { | |
1336 | + border-color: #0960bd; | |
1337 | + background: 0 0; | |
1338 | + color: #0960bd; | |
1339 | +} | |
1340 | + | |
1341 | +[data-theme='dark'] | |
1342 | + .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before { | |
1343 | + background-color: #0960bd; | |
1344 | +} | |
1345 | + | |
1346 | +[data-theme='dark'] | |
1347 | + .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child { | |
1348 | + border-color: #0960bd; | |
1349 | +} | |
1350 | + | |
1351 | +[data-theme='dark'] | |
1352 | + .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover { | |
1353 | + border-color: #2a7dc9; | |
1354 | + color: #2a7dc9; | |
1355 | +} | |
1356 | + | |
1357 | +[data-theme='dark'] | |
1358 | + .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before { | |
1359 | + background-color: #2a7dc9; | |
1360 | +} | |
1361 | + | |
1362 | +[data-theme='dark'] | |
1363 | + .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active { | |
1364 | + border-color: #004496; | |
1365 | + color: #004496; | |
1366 | +} | |
1367 | + | |
1368 | +[data-theme='dark'] | |
1369 | + .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active::before { | |
1370 | + background-color: #004496; | |
1371 | +} | |
1372 | + | |
1373 | +[data-theme='dark'] | |
1374 | + .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within { | |
1375 | + box-shadow: 0 0 0 3px rgb(255 255 255 / 8%); | |
1376 | +} | |
1377 | + | |
1378 | +[data-theme='dark'] | |
1379 | + .ant-radio-group-solid | |
1380 | + .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) { | |
1381 | + border-color: #0960bd; | |
1382 | + background: #0960bd; | |
1383 | + color: #fff; | |
1384 | +} | |
1385 | + | |
1386 | +[data-theme='dark'] | |
1387 | + .ant-radio-group-solid | |
1388 | + .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover { | |
1389 | + border-color: #2a7dc9; | |
1390 | + background: #2a7dc9; | |
1391 | + color: #fff; | |
1392 | +} | |
1393 | + | |
1394 | +[data-theme='dark'] | |
1395 | + .ant-radio-group-solid | |
1396 | + .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active { | |
1397 | + border-color: #004496; | |
1398 | + background: #004496; | |
1399 | + color: #fff; | |
1400 | +} | |
1401 | + | |
1402 | +[data-theme='dark'] | |
1403 | + .ant-radio-group-solid | |
1404 | + .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within { | |
1405 | + box-shadow: 0 0 0 3px rgb(255 255 255 / 8%); | |
1406 | +} | |
1407 | + | |
1408 | +[data-theme='dark'] .ant-radio-button-wrapper-disabled { | |
1409 | + border-color: #303030; | |
1410 | + background-color: rgb(255 255 255 / 8%); | |
1411 | + color: rgb(255 255 255 / 30%); | |
1412 | +} | |
1413 | + | |
1414 | +[data-theme='dark'] .ant-radio-button-wrapper-disabled:first-child, | |
1415 | +[data-theme='dark'] .ant-radio-button-wrapper-disabled:hover { | |
1416 | + border-color: #303030; | |
1417 | + background-color: rgb(255 255 255 / 8%); | |
1418 | + color: rgb(255 255 255 / 30%); | |
1419 | +} | |
1420 | + | |
1421 | +[data-theme='dark'] .ant-radio-button-wrapper-disabled:first-child { | |
1422 | + border-left-color: #303030; | |
1423 | +} | |
1424 | + | |
1425 | +[data-theme='dark'] .ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked { | |
1426 | + border-color: #303030; | |
1427 | + background-color: rgb(255 255 255 / 20%); | |
1428 | + color: rgb(255 255 255 / 30%); | |
1429 | +} | |
1430 | + | |
1431 | +[data-theme='dark'] | |
1432 | + .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:first-child { | |
1433 | + border-right: 1px solid #303030; | |
1434 | +} | |
1435 | + | |
1436 | +[data-theme='dark'] | |
1437 | + .ant-radio-button-wrapper-checked:not( | |
1438 | + [class*=' ant-radio-button-wrapper-disabled'] | |
1439 | + ).ant-radio-button-wrapper:first-child { | |
1440 | + border-right-color: #2a7dc9; | |
1441 | +} | |
1442 | + | |
1443 | +[data-theme='dark'] | |
1444 | + .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper-disabled:first-child { | |
1445 | + border-right-color: #303030; | |
1446 | +} | |
1447 | + | |
1448 | +[data-theme='dark'] .ant-checkbox { | |
1449 | + color: #c9d1d9; | |
1450 | +} | |
1451 | + | |
1452 | +[data-theme='dark'] .ant-checkbox-input:focus + .ant-checkbox-inner, | |
1453 | +[data-theme='dark'] .ant-checkbox-wrapper:hover .ant-checkbox-inner, | |
1454 | +[data-theme='dark'] .ant-checkbox:hover .ant-checkbox-inner { | |
1455 | + border-color: #0960bd; | |
1456 | +} | |
1457 | + | |
1458 | +[data-theme='dark'] .ant-checkbox-checked::after { | |
1459 | + border: 1px solid #0960bd; | |
1460 | +} | |
1461 | + | |
1462 | +[data-theme='dark'] .ant-checkbox-inner { | |
1463 | + border: 1px solid #303030; | |
1464 | + background-color: transparent; | |
1465 | +} | |
1466 | + | |
1467 | +[data-theme='dark'] .ant-checkbox-inner::after { | |
1468 | + border: 2px solid #fff; | |
1469 | +} | |
1470 | + | |
1471 | +[data-theme='dark'] .ant-checkbox-checked .ant-checkbox-inner::after { | |
1472 | + border: 2px solid #fff; | |
1473 | +} | |
1474 | + | |
1475 | +[data-theme='dark'] .ant-checkbox-checked .ant-checkbox-inner { | |
1476 | + border-color: #0960bd; | |
1477 | + background-color: #0960bd; | |
1478 | +} | |
1479 | + | |
1480 | +[data-theme='dark'] .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner::after { | |
1481 | + border-color: rgb(255 255 255 / 30%); | |
1482 | +} | |
1483 | + | |
1484 | +[data-theme='dark'] .ant-checkbox-disabled .ant-checkbox-inner { | |
1485 | + border-color: #303030 !important; | |
1486 | + background-color: rgb(255 255 255 / 8%); | |
1487 | +} | |
1488 | + | |
1489 | +[data-theme='dark'] .ant-checkbox-disabled .ant-checkbox-inner::after { | |
1490 | + border-color: rgb(255 255 255 / 8%); | |
1491 | +} | |
1492 | + | |
1493 | +[data-theme='dark'] .ant-checkbox-disabled + span { | |
1494 | + color: rgb(255 255 255 / 30%); | |
1495 | +} | |
1496 | + | |
1497 | +[data-theme='dark'] .ant-checkbox-wrapper { | |
1498 | + color: #c9d1d9; | |
1499 | +} | |
1500 | + | |
1501 | +[data-theme='dark'] .ant-checkbox-group { | |
1502 | + color: #c9d1d9; | |
1503 | +} | |
1504 | + | |
1505 | +[data-theme='dark'] .ant-checkbox-indeterminate .ant-checkbox-inner { | |
1506 | + border-color: #303030; | |
1507 | + background-color: transparent; | |
1508 | +} | |
1509 | + | |
1510 | +[data-theme='dark'] .ant-checkbox-indeterminate .ant-checkbox-inner::after { | |
1511 | + background-color: #0960bd; | |
1512 | +} | |
1513 | + | |
1514 | +[data-theme='dark'] .ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner::after { | |
1515 | + border-color: rgb(255 255 255 / 30%); | |
1516 | + background-color: rgb(255 255 255 / 30%); | |
1517 | +} | |
1518 | + | |
1519 | +[data-theme='dark'] .ant-tag { | |
1520 | + border: 1px solid #303030; | |
1521 | + background: rgb(255 255 255 / 4%); | |
1522 | + color: #c9d1d9; | |
1523 | +} | |
1524 | + | |
1525 | +[data-theme='dark'] .ant-tag, | |
1526 | +[data-theme='dark'] .ant-tag a, | |
1527 | +[data-theme='dark'] .ant-tag a:hover { | |
1528 | + color: #c9d1d9; | |
1529 | +} | |
1530 | + | |
1531 | +[data-theme='dark'] .ant-tag-close-icon { | |
1532 | + color: #8b949e; | |
1533 | +} | |
1534 | + | |
1535 | +[data-theme='dark'] .ant-tag-close-icon:hover { | |
1536 | + color: rgb(255 255 255 / 65%); | |
1537 | +} | |
1538 | + | |
1539 | +[data-theme='dark'] .ant-tag-has-color { | |
1540 | + border-color: transparent; | |
1541 | +} | |
1542 | + | |
1543 | +[data-theme='dark'] .ant-tag-has-color, | |
1544 | +[data-theme='dark'] .ant-tag-has-color .anticon-close, | |
1545 | +[data-theme='dark'] .ant-tag-has-color .anticon-close:hover, | |
1546 | +[data-theme='dark'] .ant-tag-has-color a, | |
1547 | +[data-theme='dark'] .ant-tag-has-color a:hover { | |
1548 | + color: #fff; | |
1549 | +} | |
1550 | + | |
1551 | +[data-theme='dark'] .ant-tag-checkable { | |
1552 | + border-color: transparent; | |
1553 | + background-color: transparent; | |
1554 | +} | |
1555 | + | |
1556 | +[data-theme='dark'] .ant-tag-checkable:not(.ant-tag-checkable-checked):hover { | |
1557 | + color: #0960bd; | |
1558 | +} | |
1559 | + | |
1560 | +[data-theme='dark'] .ant-tag-checkable-checked, | |
1561 | +[data-theme='dark'] .ant-tag-checkable:active { | |
1562 | + color: #fff; | |
1563 | +} | |
1564 | + | |
1565 | +[data-theme='dark'] .ant-tag-checkable-checked { | |
1566 | + background-color: #0960bd; | |
1567 | +} | |
1568 | + | |
1569 | +[data-theme='dark'] .ant-tag-checkable:active { | |
1570 | + background-color: #004496; | |
1571 | +} | |
1572 | + | |
1573 | +[data-theme='dark'] .ant-tag-pink { | |
1574 | + border-color: #551d3c; | |
1575 | + background: #2a1421; | |
1576 | + color: #e0529c; | |
1577 | +} | |
1578 | + | |
1579 | +[data-theme='dark'] .ant-tag-pink-inverse { | |
1580 | + border-color: #cb2b83; | |
1581 | + background: #cb2b83; | |
1582 | + color: #fff; | |
1583 | +} | |
1584 | + | |
1585 | +[data-theme='dark'] .ant-tag-magenta { | |
1586 | + border-color: #551d3c; | |
1587 | + background: #2a1421; | |
1588 | + color: #e0529c; | |
1589 | +} | |
1590 | + | |
1591 | +[data-theme='dark'] .ant-tag-magenta-inverse { | |
1592 | + border-color: #cb2b83; | |
1593 | + background: #cb2b83; | |
1594 | + color: #fff; | |
1595 | +} | |
1596 | + | |
1597 | +[data-theme='dark'] .ant-tag-red { | |
1598 | + border-color: #58191c; | |
1599 | + background: #2b1316; | |
1600 | + color: #e84749; | |
1601 | +} | |
1602 | + | |
1603 | +[data-theme='dark'] .ant-tag-red-inverse { | |
1604 | + border-color: #d32029; | |
1605 | + background: #d32029; | |
1606 | + color: #fff; | |
1607 | +} | |
1608 | + | |
1609 | +[data-theme='dark'] .ant-tag-volcano { | |
1610 | + border-color: #5a2817; | |
1611 | + background: #2c1712; | |
1612 | + color: #e87040; | |
1613 | +} | |
1614 | + | |
1615 | +[data-theme='dark'] .ant-tag-volcano-inverse { | |
1616 | + border-color: #d84b1b; | |
1617 | + background: #d84b1b; | |
1618 | + color: #fff; | |
1619 | +} | |
1620 | + | |
1621 | +[data-theme='dark'] .ant-tag-orange { | |
1622 | + border-color: #5a3915; | |
1623 | + background: #2c1e12; | |
1624 | + color: #e89a3c; | |
1625 | +} | |
1626 | + | |
1627 | +[data-theme='dark'] .ant-tag-orange-inverse { | |
1628 | + border-color: #d87a16; | |
1629 | + background: #d87a16; | |
1630 | + color: #fff; | |
1631 | +} | |
1632 | + | |
1633 | +[data-theme='dark'] .ant-tag-yellow { | |
1634 | + border-color: #5a5015; | |
1635 | + background: #2c2712; | |
1636 | + color: #e8d739; | |
1637 | +} | |
1638 | + | |
1639 | +[data-theme='dark'] .ant-tag-yellow-inverse { | |
1640 | + border-color: #d8bd14; | |
1641 | + background: #d8bd14; | |
1642 | + color: #fff; | |
1643 | +} | |
1644 | + | |
1645 | +[data-theme='dark'] .ant-tag-gold { | |
1646 | + border-color: #5a4315; | |
1647 | + background: #2c2112; | |
1648 | + color: #e8b339; | |
1649 | +} | |
1650 | + | |
1651 | +[data-theme='dark'] .ant-tag-gold-inverse { | |
1652 | + border-color: #d89614; | |
1653 | + background: #d89614; | |
1654 | + color: #fff; | |
1655 | +} | |
1656 | + | |
1657 | +[data-theme='dark'] .ant-tag-cyan { | |
1658 | + border-color: #144949; | |
1659 | + background: #122223; | |
1660 | + color: #33bcb7; | |
1661 | +} | |
1662 | + | |
1663 | +[data-theme='dark'] .ant-tag-cyan-inverse { | |
1664 | + border-color: #13a8a8; | |
1665 | + background: #13a8a8; | |
1666 | + color: #fff; | |
1667 | +} | |
1668 | + | |
1669 | +[data-theme='dark'] .ant-tag-lime { | |
1670 | + border-color: #3f5014; | |
1671 | + background: #202712; | |
1672 | + color: #aad134; | |
1673 | +} | |
1674 | + | |
1675 | +[data-theme='dark'] .ant-tag-lime-inverse { | |
1676 | + border-color: #8bbc12; | |
1677 | + background: #8bbc12; | |
1678 | + color: #fff; | |
1679 | +} | |
1680 | + | |
1681 | +[data-theme='dark'] .ant-tag-green { | |
1682 | + border-color: #274a17; | |
1683 | + background: #172412; | |
1684 | + color: #6abe39; | |
1685 | +} | |
1686 | + | |
1687 | +[data-theme='dark'] .ant-tag-green-inverse { | |
1688 | + border-color: #49aa19; | |
1689 | + background: #49aa19; | |
1690 | + color: #fff; | |
1691 | +} | |
1692 | + | |
1693 | +[data-theme='dark'] .ant-tag-blue { | |
1694 | + border-color: #163a5b; | |
1695 | + background: #121e2d; | |
1696 | + color: #3c9ae8; | |
1697 | +} | |
1698 | + | |
1699 | +[data-theme='dark'] .ant-tag-blue-inverse { | |
1700 | + border-color: #187edc; | |
1701 | + background: #187edc; | |
1702 | + color: #fff; | |
1703 | +} | |
1704 | + | |
1705 | +[data-theme='dark'] .ant-tag-geekblue { | |
1706 | + border-color: #1d2855; | |
1707 | + background: #14172a; | |
1708 | + color: #5274e0; | |
1709 | +} | |
1710 | + | |
1711 | +[data-theme='dark'] .ant-tag-geekblue-inverse { | |
1712 | + border-color: #2b4bcb; | |
1713 | + background: #2b4bcb; | |
1714 | + color: #fff; | |
1715 | +} | |
1716 | + | |
1717 | +[data-theme='dark'] .ant-tag-purple { | |
1718 | + border-color: #311d4d; | |
1719 | + background: #1a1426; | |
1720 | + color: #864eca; | |
1721 | +} | |
1722 | + | |
1723 | +[data-theme='dark'] .ant-tag-purple-inverse { | |
1724 | + border-color: #642ab5; | |
1725 | + background: #642ab5; | |
1726 | + color: #fff; | |
1727 | +} | |
1728 | + | |
1729 | +[data-theme='dark'] .ant-tag-success { | |
1730 | + border-color: #274a17; | |
1731 | + background: #172412; | |
1732 | + color: #55d187; | |
1733 | +} | |
1734 | + | |
1735 | +[data-theme='dark'] .ant-tag-processing { | |
1736 | + border-color: #78b7e3; | |
1737 | + background: rgb(255 255 255 / 8%); | |
1738 | + color: #0960bd; | |
1739 | +} | |
1740 | + | |
1741 | +[data-theme='dark'] .ant-tag-error { | |
1742 | + border-color: #58191c; | |
1743 | + background: #2b1316; | |
1744 | + color: #ed6f6f; | |
1745 | +} | |
1746 | + | |
1747 | +[data-theme='dark'] .ant-tag-warning { | |
1748 | + border-color: #5a3915; | |
1749 | + background: #2c1e12; | |
1750 | + color: #efbd47; | |
1751 | +} | |
1752 | + | |
1753 | +[data-theme='dark'] .ant-rate { | |
1754 | + color: #d8bd14; | |
1755 | +} | |
1756 | + | |
1757 | +[data-theme='dark'] .ant-rate-star > div:focus-visible { | |
1758 | + outline: 1px dashed #d8bd14; | |
1759 | +} | |
1760 | + | |
1761 | +[data-theme='dark'] .ant-rate-star-first, | |
1762 | +[data-theme='dark'] .ant-rate-star-second { | |
1763 | + color: rgb(255 255 255 / 12%); | |
1764 | +} | |
1765 | + | |
1766 | +[data-theme='dark'] .ant-pagination { | |
1767 | + color: #c9d1d9; | |
1768 | +} | |
1769 | + | |
1770 | +[data-theme='dark'] .ant-pagination-item { | |
1771 | + border: 1px solid #303030; | |
1772 | + background-color: transparent; | |
1773 | +} | |
1774 | + | |
1775 | +[data-theme='dark'] .ant-pagination-item a { | |
1776 | + color: #c9d1d9; | |
1777 | +} | |
1778 | + | |
1779 | +[data-theme='dark'] .ant-pagination-item:hover { | |
1780 | + border-color: #0960bd; | |
1781 | +} | |
1782 | + | |
1783 | +[data-theme='dark'] .ant-pagination-item:hover a { | |
1784 | + color: #0960bd; | |
1785 | +} | |
1786 | + | |
1787 | +[data-theme='dark'] .ant-pagination-item:focus-visible { | |
1788 | + border-color: #0960bd; | |
1789 | +} | |
1790 | + | |
1791 | +[data-theme='dark'] .ant-pagination-item:focus-visible a { | |
1792 | + color: #0960bd; | |
1793 | +} | |
1794 | + | |
1795 | +[data-theme='dark'] .ant-pagination-item-active { | |
1796 | + border-color: #0960bd; | |
1797 | + background: 0 0; | |
1798 | +} | |
1799 | + | |
1800 | +[data-theme='dark'] .ant-pagination-item-active a { | |
1801 | + color: #0960bd; | |
1802 | +} | |
1803 | + | |
1804 | +[data-theme='dark'] .ant-pagination-item-active:hover { | |
1805 | + border-color: #2a7dc9; | |
1806 | +} | |
1807 | + | |
1808 | +[data-theme='dark'] .ant-pagination-item-active:focus-visible { | |
1809 | + border-color: #2a7dc9; | |
1810 | +} | |
1811 | + | |
1812 | +[data-theme='dark'] .ant-pagination-item-active:hover a { | |
1813 | + color: #2a7dc9; | |
1814 | +} | |
1815 | + | |
1816 | +[data-theme='dark'] .ant-pagination-item-active:focus-visible a { | |
1817 | + color: #2a7dc9; | |
1818 | +} | |
1819 | + | |
1820 | +[data-theme='dark'] | |
1821 | + .ant-pagination-jump-next | |
1822 | + .ant-pagination-item-container | |
1823 | + .ant-pagination-item-link-icon, | |
1824 | +[data-theme='dark'] | |
1825 | + .ant-pagination-jump-prev | |
1826 | + .ant-pagination-item-container | |
1827 | + .ant-pagination-item-link-icon { | |
1828 | + color: #0960bd; | |
1829 | +} | |
1830 | + | |
1831 | +[data-theme='dark'] | |
1832 | + .ant-pagination-jump-next | |
1833 | + .ant-pagination-item-container | |
1834 | + .ant-pagination-item-ellipsis, | |
1835 | +[data-theme='dark'] | |
1836 | + .ant-pagination-jump-prev | |
1837 | + .ant-pagination-item-container | |
1838 | + .ant-pagination-item-ellipsis { | |
1839 | + color: rgb(255 255 255 / 30%); | |
1840 | +} | |
1841 | + | |
1842 | +[data-theme='dark'] .ant-pagination-jump-next, | |
1843 | +[data-theme='dark'] .ant-pagination-jump-prev, | |
1844 | +[data-theme='dark'] .ant-pagination-next, | |
1845 | +[data-theme='dark'] .ant-pagination-prev { | |
1846 | + color: #c9d1d9; | |
1847 | +} | |
1848 | + | |
1849 | +[data-theme='dark'] .ant-pagination-next button, | |
1850 | +[data-theme='dark'] .ant-pagination-prev button { | |
1851 | + color: #c9d1d9; | |
1852 | +} | |
1853 | + | |
1854 | +[data-theme='dark'] .ant-pagination-next:hover button, | |
1855 | +[data-theme='dark'] .ant-pagination-prev:hover button { | |
1856 | + border-color: #2a7dc9; | |
1857 | +} | |
1858 | + | |
1859 | +[data-theme='dark'] .ant-pagination-next .ant-pagination-item-link, | |
1860 | +[data-theme='dark'] .ant-pagination-prev .ant-pagination-item-link { | |
1861 | + border: 1px solid #303030; | |
1862 | + background-color: transparent; | |
1863 | +} | |
1864 | + | |
1865 | +[data-theme='dark'] .ant-pagination-next:focus-visible .ant-pagination-item-link, | |
1866 | +[data-theme='dark'] .ant-pagination-prev:focus-visible .ant-pagination-item-link { | |
1867 | + border-color: #0960bd; | |
1868 | + color: #0960bd; | |
1869 | +} | |
1870 | + | |
1871 | +[data-theme='dark'] .ant-pagination-next:hover .ant-pagination-item-link, | |
1872 | +[data-theme='dark'] .ant-pagination-prev:hover .ant-pagination-item-link { | |
1873 | + border-color: #0960bd; | |
1874 | + color: #0960bd; | |
1875 | +} | |
1876 | + | |
1877 | +[data-theme='dark'] .ant-pagination-disabled .ant-pagination-item-link, | |
1878 | +[data-theme='dark'] .ant-pagination-disabled:hover .ant-pagination-item-link { | |
1879 | + border-color: #303030; | |
1880 | + color: rgb(255 255 255 / 30%); | |
1881 | +} | |
1882 | + | |
1883 | +[data-theme='dark'] .ant-pagination-disabled:focus-visible .ant-pagination-item-link { | |
1884 | + border-color: #303030; | |
1885 | + color: rgb(255 255 255 / 30%); | |
1886 | +} | |
1887 | + | |
1888 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input { | |
1889 | + border: 1px solid #303030; | |
1890 | + background-color: transparent; | |
1891 | + color: #c9d1d9; | |
1892 | +} | |
1893 | + | |
1894 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input::placeholder { | |
1895 | + color: rgb(255 255 255 / 30%); | |
1896 | +} | |
1897 | + | |
1898 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input:hover { | |
1899 | + border-color: #2a7dc9; | |
1900 | +} | |
1901 | + | |
1902 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input-focused, | |
1903 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input:focus { | |
1904 | + border-color: #0960bd; | |
1905 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
1906 | +} | |
1907 | + | |
1908 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input-disabled { | |
1909 | + border-color: #303030; | |
1910 | + background-color: rgb(255 255 255 / 8%); | |
1911 | + color: rgb(255 255 255 / 30%); | |
1912 | +} | |
1913 | + | |
1914 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input-disabled:hover { | |
1915 | + border-color: #303030; | |
1916 | +} | |
1917 | + | |
1918 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input[disabled] { | |
1919 | + border-color: #303030; | |
1920 | + background-color: rgb(255 255 255 / 8%); | |
1921 | + color: rgb(255 255 255 / 30%); | |
1922 | +} | |
1923 | + | |
1924 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input[disabled]:hover { | |
1925 | + border-color: #303030; | |
1926 | +} | |
1927 | + | |
1928 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input-borderless, | |
1929 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input-borderless-disabled, | |
1930 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input-borderless-focused, | |
1931 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input-borderless:focus, | |
1932 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input-borderless:hover, | |
1933 | +[data-theme='dark'] .ant-pagination-options-quick-jumper input-borderless[disabled] { | |
1934 | + background-color: transparent; | |
1935 | +} | |
1936 | + | |
1937 | +[data-theme='dark'] .ant-pagination-simple .ant-pagination-next .ant-pagination-item-link, | |
1938 | +[data-theme='dark'] .ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link { | |
1939 | + background-color: transparent; | |
1940 | +} | |
1941 | + | |
1942 | +[data-theme='dark'] .ant-pagination-simple .ant-pagination-simple-pager input { | |
1943 | + border: 1px solid #303030; | |
1944 | + background-color: transparent; | |
1945 | +} | |
1946 | + | |
1947 | +[data-theme='dark'] .ant-pagination-simple .ant-pagination-simple-pager input:hover { | |
1948 | + border-color: #0960bd; | |
1949 | +} | |
1950 | + | |
1951 | +[data-theme='dark'] .ant-pagination-simple .ant-pagination-simple-pager input:focus { | |
1952 | + border-color: #2a7dc9; | |
1953 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
1954 | +} | |
1955 | + | |
1956 | +[data-theme='dark'] .ant-pagination-simple .ant-pagination-simple-pager input[disabled] { | |
1957 | + border-color: #303030; | |
1958 | + background: rgb(255 255 255 / 8%); | |
1959 | + color: rgb(255 255 255 / 30%); | |
1960 | +} | |
1961 | + | |
1962 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-item:not(.ant-pagination-item-active) { | |
1963 | + border-color: transparent; | |
1964 | + background: 0 0; | |
1965 | +} | |
1966 | + | |
1967 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-next .ant-pagination-item-link, | |
1968 | +[data-theme='dark'] .ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link { | |
1969 | + border-color: transparent; | |
1970 | + background: 0 0; | |
1971 | +} | |
1972 | + | |
1973 | +[data-theme='dark'] .ant-pagination.ant-pagination-disabled .ant-pagination-item { | |
1974 | + border-color: #303030; | |
1975 | + background: rgb(255 255 255 / 8%); | |
1976 | +} | |
1977 | + | |
1978 | +[data-theme='dark'] .ant-pagination.ant-pagination-disabled .ant-pagination-item a { | |
1979 | + background: 0 0; | |
1980 | + color: rgb(255 255 255 / 30%); | |
1981 | +} | |
1982 | + | |
1983 | +[data-theme='dark'] .ant-pagination.ant-pagination-disabled .ant-pagination-item-active { | |
1984 | + background: rgb(255 255 255 / 25%); | |
1985 | +} | |
1986 | + | |
1987 | +[data-theme='dark'] .ant-pagination.ant-pagination-disabled .ant-pagination-item-active a { | |
1988 | + color: #000; | |
1989 | +} | |
1990 | + | |
1991 | +[data-theme='dark'] .ant-pagination.ant-pagination-disabled .ant-pagination-item-link { | |
1992 | + border-color: #303030; | |
1993 | + background: rgb(255 255 255 / 8%); | |
1994 | + color: rgb(255 255 255 / 30%); | |
1995 | +} | |
1996 | + | |
1997 | +[data-theme='dark'] | |
1998 | + .ant-pagination-simple.ant-pagination.ant-pagination-disabled | |
1999 | + .ant-pagination-item-link { | |
2000 | + background: 0 0; | |
2001 | +} | |
2002 | + | |
2003 | +[data-theme='dark'] .ant-pagination.ant-pagination-disabled .ant-pagination-simple-pager { | |
2004 | + color: rgb(255 255 255 / 30%); | |
2005 | +} | |
2006 | + | |
2007 | +[data-theme='dark'] .ant-avatar { | |
2008 | + background: rgb(255 255 255 / 30%); | |
2009 | + color: #fff; | |
2010 | +} | |
2011 | + | |
2012 | +[data-theme='dark'] .ant-avatar-image { | |
2013 | + background: 0 0; | |
2014 | +} | |
2015 | + | |
2016 | +[data-theme='dark'] .ant-avatar-group .ant-avatar { | |
2017 | + border: 1px solid #fff; | |
2018 | +} | |
2019 | + | |
2020 | +[data-theme='dark'] .ant-badge { | |
2021 | + color: #c9d1d9; | |
2022 | +} | |
2023 | + | |
2024 | +[data-theme='dark'] .ant-badge-count { | |
2025 | + background: #a71d25; | |
2026 | + box-shadow: 0 0 0 1px #151515; | |
2027 | + color: #fff; | |
2028 | +} | |
2029 | + | |
2030 | +[data-theme='dark'] .ant-badge-count a, | |
2031 | +[data-theme='dark'] .ant-badge-count a:hover { | |
2032 | + color: #fff; | |
2033 | +} | |
2034 | + | |
2035 | +[data-theme='dark'] .ant-badge-dot { | |
2036 | + background: #a71d25; | |
2037 | + box-shadow: 0 0 0 1px #151515; | |
2038 | +} | |
2039 | + | |
2040 | +[data-theme='dark'] .ant-badge-status-success { | |
2041 | + background-color: #55d187; | |
2042 | +} | |
2043 | + | |
2044 | +[data-theme='dark'] .ant-badge-status-processing { | |
2045 | + background-color: #0960bd; | |
2046 | +} | |
2047 | + | |
2048 | +[data-theme='dark'] .ant-badge-status-processing::after { | |
2049 | + border: 1px solid #0960bd; | |
2050 | +} | |
2051 | + | |
2052 | +[data-theme='dark'] .ant-badge-status-default { | |
2053 | + background-color: #d9d9d9; | |
2054 | +} | |
2055 | + | |
2056 | +[data-theme='dark'] .ant-badge-status-error { | |
2057 | + background-color: #ed6f6f; | |
2058 | +} | |
2059 | + | |
2060 | +[data-theme='dark'] .ant-badge-status-warning { | |
2061 | + background-color: #efbd47; | |
2062 | +} | |
2063 | + | |
2064 | +[data-theme='dark'] .ant-badge-status-pink { | |
2065 | + background: #cb2b83; | |
2066 | +} | |
2067 | + | |
2068 | +[data-theme='dark'] .ant-badge-status-magenta { | |
2069 | + background: #cb2b83; | |
2070 | +} | |
2071 | + | |
2072 | +[data-theme='dark'] .ant-badge-status-red { | |
2073 | + background: #d32029; | |
2074 | +} | |
2075 | + | |
2076 | +[data-theme='dark'] .ant-badge-status-volcano { | |
2077 | + background: #d84b1b; | |
2078 | +} | |
2079 | + | |
2080 | +[data-theme='dark'] .ant-badge-status-orange { | |
2081 | + background: #d87a16; | |
2082 | +} | |
2083 | + | |
2084 | +[data-theme='dark'] .ant-badge-status-yellow { | |
2085 | + background: #d8bd14; | |
2086 | +} | |
2087 | + | |
2088 | +[data-theme='dark'] .ant-badge-status-gold { | |
2089 | + background: #d89614; | |
2090 | +} | |
2091 | + | |
2092 | +[data-theme='dark'] .ant-badge-status-cyan { | |
2093 | + background: #13a8a8; | |
2094 | +} | |
2095 | + | |
2096 | +[data-theme='dark'] .ant-badge-status-lime { | |
2097 | + background: #8bbc12; | |
2098 | +} | |
2099 | + | |
2100 | +[data-theme='dark'] .ant-badge-status-green { | |
2101 | + background: #49aa19; | |
2102 | +} | |
2103 | + | |
2104 | +[data-theme='dark'] .ant-badge-status-blue { | |
2105 | + background: #187edc; | |
2106 | +} | |
2107 | + | |
2108 | +[data-theme='dark'] .ant-badge-status-geekblue { | |
2109 | + background: #2b4bcb; | |
2110 | +} | |
2111 | + | |
2112 | +[data-theme='dark'] .ant-badge-status-purple { | |
2113 | + background: #642ab5; | |
2114 | +} | |
2115 | + | |
2116 | +[data-theme='dark'] .ant-badge-status-text { | |
2117 | + color: #c9d1d9; | |
2118 | +} | |
2119 | + | |
2120 | +[data-theme='dark'] .ant-ribbon { | |
2121 | + background-color: #0960bd; | |
2122 | + color: #fff; | |
2123 | +} | |
2124 | + | |
2125 | +[data-theme='dark'] .ant-ribbon-text { | |
2126 | + color: #fff; | |
2127 | +} | |
2128 | + | |
2129 | +[data-theme='dark'] .ant-ribbon-corner::after { | |
2130 | + color: rgb(0 0 0 / 25%); | |
2131 | +} | |
2132 | + | |
2133 | +[data-theme='dark'] .ant-ribbon-color-pink { | |
2134 | + background: #cb2b83; | |
2135 | + color: #cb2b83; | |
2136 | +} | |
2137 | + | |
2138 | +[data-theme='dark'] .ant-ribbon-color-magenta { | |
2139 | + background: #cb2b83; | |
2140 | + color: #cb2b83; | |
2141 | +} | |
2142 | + | |
2143 | +[data-theme='dark'] .ant-ribbon-color-red { | |
2144 | + background: #d32029; | |
2145 | + color: #d32029; | |
2146 | +} | |
2147 | + | |
2148 | +[data-theme='dark'] .ant-ribbon-color-volcano { | |
2149 | + background: #d84b1b; | |
2150 | + color: #d84b1b; | |
2151 | +} | |
2152 | + | |
2153 | +[data-theme='dark'] .ant-ribbon-color-orange { | |
2154 | + background: #d87a16; | |
2155 | + color: #d87a16; | |
2156 | +} | |
2157 | + | |
2158 | +[data-theme='dark'] .ant-ribbon-color-yellow { | |
2159 | + background: #d8bd14; | |
2160 | + color: #d8bd14; | |
2161 | +} | |
2162 | + | |
2163 | +[data-theme='dark'] .ant-ribbon-color-gold { | |
2164 | + background: #d89614; | |
2165 | + color: #d89614; | |
2166 | +} | |
2167 | + | |
2168 | +[data-theme='dark'] .ant-ribbon-color-cyan { | |
2169 | + background: #13a8a8; | |
2170 | + color: #13a8a8; | |
2171 | +} | |
2172 | + | |
2173 | +[data-theme='dark'] .ant-ribbon-color-lime { | |
2174 | + background: #8bbc12; | |
2175 | + color: #8bbc12; | |
2176 | +} | |
2177 | + | |
2178 | +[data-theme='dark'] .ant-ribbon-color-green { | |
2179 | + background: #49aa19; | |
2180 | + color: #49aa19; | |
2181 | +} | |
2182 | + | |
2183 | +[data-theme='dark'] .ant-ribbon-color-blue { | |
2184 | + background: #187edc; | |
2185 | + color: #187edc; | |
2186 | +} | |
2187 | + | |
2188 | +[data-theme='dark'] .ant-ribbon-color-geekblue { | |
2189 | + background: #2b4bcb; | |
2190 | + color: #2b4bcb; | |
2191 | +} | |
2192 | + | |
2193 | +[data-theme='dark'] .ant-ribbon-color-purple { | |
2194 | + background: #642ab5; | |
2195 | + color: #642ab5; | |
2196 | +} | |
2197 | + | |
2198 | +[data-theme='dark'] .ant-ribbon.ant-ribbon-placement-end .ant-ribbon-corner { | |
2199 | + border-color: currentcolor transparent transparent; | |
2200 | +} | |
2201 | + | |
2202 | +[data-theme='dark'] .ant-ribbon.ant-ribbon-placement-start .ant-ribbon-corner { | |
2203 | + border-color: currentcolor currentcolor transparent transparent; | |
2204 | +} | |
2205 | + | |
2206 | +[data-theme='dark'] .ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner { | |
2207 | + border-color: currentcolor currentcolor transparent transparent; | |
2208 | +} | |
2209 | + | |
2210 | +[data-theme='dark'] .ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner::after { | |
2211 | + border-color: currentcolor currentcolor transparent transparent; | |
2212 | +} | |
2213 | + | |
2214 | +[data-theme='dark'] .ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner { | |
2215 | + border-color: currentcolor transparent transparent; | |
2216 | +} | |
2217 | + | |
2218 | +[data-theme='dark'] .ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner::after { | |
2219 | + border-color: currentcolor transparent transparent; | |
2220 | +} | |
2221 | + | |
2222 | +[data-theme='dark'] .ant-tabs-bottom > .ant-tabs-nav::before, | |
2223 | +[data-theme='dark'] .ant-tabs-bottom > div > .ant-tabs-nav::before, | |
2224 | +[data-theme='dark'] .ant-tabs-top > .ant-tabs-nav::before, | |
2225 | +[data-theme='dark'] .ant-tabs-top > div > .ant-tabs-nav::before { | |
2226 | + border-bottom: 1px solid #303030; | |
2227 | +} | |
2228 | + | |
2229 | +[data-theme='dark'] .ant-tabs-left > .ant-tabs-content-holder, | |
2230 | +[data-theme='dark'] .ant-tabs-left > div > .ant-tabs-content-holder { | |
2231 | + border-left: 1px solid #303030; | |
2232 | +} | |
2233 | + | |
2234 | +[data-theme='dark'] .ant-tabs-right > .ant-tabs-content-holder, | |
2235 | +[data-theme='dark'] .ant-tabs-right > div > .ant-tabs-content-holder { | |
2236 | + border-right: 1px solid #303030; | |
2237 | +} | |
2238 | + | |
2239 | +[data-theme='dark'] .ant-tabs-dropdown { | |
2240 | + color: #c9d1d9; | |
2241 | +} | |
2242 | + | |
2243 | +[data-theme='dark'] .ant-tabs-dropdown-menu { | |
2244 | + background-color: #1f1f1f; | |
2245 | +} | |
2246 | + | |
2247 | +[data-theme='dark'] .ant-tabs-dropdown-menu-item { | |
2248 | + color: #c9d1d9; | |
2249 | +} | |
2250 | + | |
2251 | +[data-theme='dark'] .ant-tabs-dropdown-menu-item-remove { | |
2252 | + background: 0 0; | |
2253 | + color: #8b949e; | |
2254 | +} | |
2255 | + | |
2256 | +[data-theme='dark'] .ant-tabs-dropdown-menu-item-remove:hover { | |
2257 | + color: #2a7dc9; | |
2258 | +} | |
2259 | + | |
2260 | +[data-theme='dark'] .ant-tabs-dropdown-menu-item:hover { | |
2261 | + background: rgb(255 255 255 / 8%); | |
2262 | +} | |
2263 | + | |
2264 | +[data-theme='dark'] .ant-tabs-dropdown-menu-item-disabled, | |
2265 | +[data-theme='dark'] .ant-tabs-dropdown-menu-item-disabled:hover { | |
2266 | + background: 0 0; | |
2267 | + color: rgb(255 255 255 / 30%); | |
2268 | +} | |
2269 | + | |
2270 | +[data-theme='dark'] .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab, | |
2271 | +[data-theme='dark'] .ant-tabs-card > div > .ant-tabs-nav .ant-tabs-tab { | |
2272 | + border: 1px solid #303030; | |
2273 | + background: rgb(255 255 255 / 4%); | |
2274 | +} | |
2275 | + | |
2276 | +[data-theme='dark'] .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab-active, | |
2277 | +[data-theme='dark'] .ant-tabs-card > div > .ant-tabs-nav .ant-tabs-tab-active { | |
2278 | + background: #151515; | |
2279 | + color: #0960bd; | |
2280 | +} | |
2281 | + | |
2282 | +[data-theme='dark'] .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab-active, | |
2283 | +[data-theme='dark'] .ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-tab-active { | |
2284 | + border-bottom-color: #151515; | |
2285 | +} | |
2286 | + | |
2287 | +[data-theme='dark'] .ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-tab-active, | |
2288 | +[data-theme='dark'] .ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-tab-active { | |
2289 | + border-top-color: #151515; | |
2290 | +} | |
2291 | + | |
2292 | +[data-theme='dark'] .ant-tabs-card.ant-tabs-left > .ant-tabs-nav .ant-tabs-tab-active, | |
2293 | +[data-theme='dark'] .ant-tabs-card.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-tab-active { | |
2294 | + border-right-color: #151515; | |
2295 | +} | |
2296 | + | |
2297 | +[data-theme='dark'] .ant-tabs-card.ant-tabs-right > .ant-tabs-nav .ant-tabs-tab-active, | |
2298 | +[data-theme='dark'] .ant-tabs-card.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-tab-active { | |
2299 | + border-left-color: #151515; | |
2300 | +} | |
2301 | + | |
2302 | +[data-theme='dark'] .ant-tabs { | |
2303 | + color: #c9d1d9; | |
2304 | +} | |
2305 | + | |
2306 | +[data-theme='dark'] .ant-tabs > .ant-tabs-nav .ant-tabs-nav-more, | |
2307 | +[data-theme='dark'] .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-more { | |
2308 | + background: 0 0; | |
2309 | +} | |
2310 | + | |
2311 | +[data-theme='dark'] .ant-tabs > .ant-tabs-nav .ant-tabs-nav-add, | |
2312 | +[data-theme='dark'] .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add { | |
2313 | + border: 1px solid #303030; | |
2314 | + background: rgb(255 255 255 / 4%); | |
2315 | +} | |
2316 | + | |
2317 | +[data-theme='dark'] .ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:hover, | |
2318 | +[data-theme='dark'] .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:hover { | |
2319 | + color: #2a7dc9; | |
2320 | +} | |
2321 | + | |
2322 | +[data-theme='dark'] .ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:active, | |
2323 | +[data-theme='dark'] .ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:focus, | |
2324 | +[data-theme='dark'] .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:active, | |
2325 | +[data-theme='dark'] .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:focus { | |
2326 | + color: #004496; | |
2327 | +} | |
2328 | + | |
2329 | +[data-theme='dark'] .ant-tabs-ink-bar { | |
2330 | + background: #0960bd; | |
2331 | +} | |
2332 | + | |
2333 | +[data-theme='dark'] .ant-tabs-tab { | |
2334 | + background: 0 0; | |
2335 | +} | |
2336 | + | |
2337 | +[data-theme='dark'] .ant-tabs-tab-btn:active, | |
2338 | +[data-theme='dark'] .ant-tabs-tab-btn:focus, | |
2339 | +[data-theme='dark'] .ant-tabs-tab-remove:active, | |
2340 | +[data-theme='dark'] .ant-tabs-tab-remove:focus { | |
2341 | + color: #004496; | |
2342 | +} | |
2343 | + | |
2344 | +[data-theme='dark'] .ant-tabs-tab-remove { | |
2345 | + background: 0 0; | |
2346 | + color: #8b949e; | |
2347 | +} | |
2348 | + | |
2349 | +[data-theme='dark'] .ant-tabs-tab-remove:hover { | |
2350 | + color: rgb(255 255 255 / 65%); | |
2351 | +} | |
2352 | + | |
2353 | +[data-theme='dark'] .ant-tabs-tab:hover { | |
2354 | + color: #2a7dc9; | |
2355 | +} | |
2356 | + | |
2357 | +[data-theme='dark'] .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn { | |
2358 | + color: #0960bd; | |
2359 | +} | |
2360 | + | |
2361 | +[data-theme='dark'] .ant-tabs-tab.ant-tabs-tab-disabled { | |
2362 | + color: rgb(255 255 255 / 30%); | |
2363 | +} | |
2364 | + | |
2365 | +[data-theme='dark'] .ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-btn:active, | |
2366 | +[data-theme='dark'] .ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-btn:focus, | |
2367 | +[data-theme='dark'] .ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-remove:active, | |
2368 | +[data-theme='dark'] .ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-remove:focus { | |
2369 | + color: rgb(255 255 255 / 30%); | |
2370 | +} | |
2371 | + | |
2372 | +[data-theme='dark'] .ant-input-affix-wrapper { | |
2373 | + border: 1px solid #303030; | |
2374 | + background-color: transparent; | |
2375 | + color: #c9d1d9; | |
2376 | +} | |
2377 | + | |
2378 | +[data-theme='dark'] .ant-input-affix-wrapper::placeholder { | |
2379 | + color: rgb(255 255 255 / 30%); | |
2380 | +} | |
2381 | + | |
2382 | +[data-theme='dark'] .ant-input-affix-wrapper:hover { | |
2383 | + border-color: #2a7dc9; | |
2384 | +} | |
2385 | + | |
2386 | +[data-theme='dark'] .ant-input-affix-wrapper-focused, | |
2387 | +[data-theme='dark'] .ant-input-affix-wrapper:focus { | |
2388 | + border-color: #0960bd; | |
2389 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
2390 | +} | |
2391 | + | |
2392 | +[data-theme='dark'] .ant-input-affix-wrapper-disabled { | |
2393 | + border-color: #303030; | |
2394 | + background-color: rgb(255 255 255 / 8%); | |
2395 | + color: rgb(255 255 255 / 30%); | |
2396 | +} | |
2397 | + | |
2398 | +[data-theme='dark'] .ant-input-affix-wrapper-disabled:hover { | |
2399 | + border-color: #303030; | |
2400 | +} | |
2401 | + | |
2402 | +[data-theme='dark'] .ant-input-affix-wrapper[disabled] { | |
2403 | + border-color: #303030; | |
2404 | + background-color: rgb(255 255 255 / 8%); | |
2405 | + color: rgb(255 255 255 / 30%); | |
2406 | +} | |
2407 | + | |
2408 | +[data-theme='dark'] .ant-input-affix-wrapper[disabled]:hover { | |
2409 | + border-color: #303030; | |
2410 | +} | |
2411 | + | |
2412 | +[data-theme='dark'] .ant-input-affix-wrapper-borderless, | |
2413 | +[data-theme='dark'] .ant-input-affix-wrapper-borderless-disabled, | |
2414 | +[data-theme='dark'] .ant-input-affix-wrapper-borderless-focused, | |
2415 | +[data-theme='dark'] .ant-input-affix-wrapper-borderless:focus, | |
2416 | +[data-theme='dark'] .ant-input-affix-wrapper-borderless:hover, | |
2417 | +[data-theme='dark'] .ant-input-affix-wrapper-borderless[disabled] { | |
2418 | + background-color: transparent; | |
2419 | +} | |
2420 | + | |
2421 | +[data-theme='dark'] .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover { | |
2422 | + border-color: #2a7dc9; | |
2423 | +} | |
2424 | + | |
2425 | +[data-theme='dark'] .ant-input-affix-wrapper-disabled .ant-input[disabled] { | |
2426 | + background: 0 0; | |
2427 | +} | |
2428 | + | |
2429 | +[data-theme='dark'] .ant-input-show-count-suffix { | |
2430 | + color: #8b949e; | |
2431 | +} | |
2432 | + | |
2433 | +[data-theme='dark'] .anticon.ant-input-clear-icon { | |
2434 | + color: rgb(255 255 255 / 30%); | |
2435 | +} | |
2436 | + | |
2437 | +[data-theme='dark'] .anticon.ant-input-clear-icon:hover { | |
2438 | + color: #8b949e; | |
2439 | +} | |
2440 | + | |
2441 | +[data-theme='dark'] .anticon.ant-input-clear-icon:active { | |
2442 | + color: #c9d1d9; | |
2443 | +} | |
2444 | + | |
2445 | +[data-theme='dark'] .ant-input { | |
2446 | + border: 1px solid #303030; | |
2447 | + background-color: transparent; | |
2448 | + color: #c9d1d9; | |
2449 | +} | |
2450 | + | |
2451 | +[data-theme='dark'] .ant-input::placeholder { | |
2452 | + color: rgb(255 255 255 / 30%); | |
2453 | +} | |
2454 | + | |
2455 | +[data-theme='dark'] .ant-input:hover { | |
2456 | + border-color: #2a7dc9; | |
2457 | +} | |
2458 | + | |
2459 | +[data-theme='dark'] .ant-input-focused, | |
2460 | +[data-theme='dark'] .ant-input:focus { | |
2461 | + border-color: #0960bd; | |
2462 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
2463 | +} | |
2464 | + | |
2465 | +[data-theme='dark'] .ant-input-disabled { | |
2466 | + border-color: #303030; | |
2467 | + background-color: rgb(255 255 255 / 8%); | |
2468 | + color: rgb(255 255 255 / 30%); | |
2469 | +} | |
2470 | + | |
2471 | +[data-theme='dark'] .ant-input-disabled:hover { | |
2472 | + border-color: #303030; | |
2473 | +} | |
2474 | + | |
2475 | +[data-theme='dark'] .ant-input[disabled] { | |
2476 | + border-color: #303030; | |
2477 | + background-color: rgb(255 255 255 / 8%); | |
2478 | + color: rgb(255 255 255 / 30%); | |
2479 | +} | |
2480 | + | |
2481 | +[data-theme='dark'] .ant-input[disabled]:hover { | |
2482 | + border-color: #303030; | |
2483 | +} | |
2484 | + | |
2485 | +[data-theme='dark'] .ant-input-borderless, | |
2486 | +[data-theme='dark'] .ant-input-borderless-disabled, | |
2487 | +[data-theme='dark'] .ant-input-borderless-focused, | |
2488 | +[data-theme='dark'] .ant-input-borderless:focus, | |
2489 | +[data-theme='dark'] .ant-input-borderless:hover, | |
2490 | +[data-theme='dark'] .ant-input-borderless[disabled] { | |
2491 | + background-color: transparent; | |
2492 | +} | |
2493 | + | |
2494 | +[data-theme='dark'] .ant-input-group { | |
2495 | + color: #c9d1d9; | |
2496 | +} | |
2497 | + | |
2498 | +[data-theme='dark'] .ant-input-group-addon { | |
2499 | + border: 1px solid #303030; | |
2500 | + background-color: rgb(255 255 255 / 4%); | |
2501 | + color: #c9d1d9; | |
2502 | +} | |
2503 | + | |
2504 | +[data-theme='dark'] | |
2505 | + .ant-input-group-addon | |
2506 | + .ant-select.ant-select-single:not(.ant-select-customize-input) | |
2507 | + .ant-select-selector { | |
2508 | + border: 1px solid transparent; | |
2509 | +} | |
2510 | + | |
2511 | +[data-theme='dark'] .ant-input-group-addon .ant-select-focused .ant-select-selector, | |
2512 | +[data-theme='dark'] .ant-input-group-addon .ant-select-open .ant-select-selector { | |
2513 | + color: #0960bd; | |
2514 | +} | |
2515 | + | |
2516 | +[data-theme='dark'] .ant-input-group-addon .ant-cascader-picker { | |
2517 | + background-color: transparent; | |
2518 | +} | |
2519 | + | |
2520 | +[data-theme='dark'] .ant-input-group-rtl .ant-input-group-addon:first-child { | |
2521 | + border-right: 1px solid #303030; | |
2522 | +} | |
2523 | + | |
2524 | +[data-theme='dark'] .ant-input-group-rtl .ant-input-group-addon:last-child { | |
2525 | + border-left: 1px solid #303030; | |
2526 | +} | |
2527 | + | |
2528 | +[data-theme='dark'] .ant-input-password-icon { | |
2529 | + color: #8b949e; | |
2530 | +} | |
2531 | + | |
2532 | +[data-theme='dark'] .ant-input-password-icon:hover { | |
2533 | + color: rgb(255 255 255 / 85%); | |
2534 | +} | |
2535 | + | |
2536 | +[data-theme='dark'] .ant-input-textarea-show-count::after { | |
2537 | + color: #8b949e; | |
2538 | +} | |
2539 | + | |
2540 | +[data-theme='dark'] .ant-input-search .ant-input:focus, | |
2541 | +[data-theme='dark'] .ant-input-search .ant-input:hover { | |
2542 | + border-color: #2a7dc9; | |
2543 | +} | |
2544 | + | |
2545 | +[data-theme='dark'] | |
2546 | + .ant-input-search | |
2547 | + .ant-input:focus | |
2548 | + + .ant-input-group-addon | |
2549 | + .ant-input-search-button:not(.ant-btn-primary), | |
2550 | +[data-theme='dark'] | |
2551 | + .ant-input-search | |
2552 | + .ant-input:hover | |
2553 | + + .ant-input-group-addon | |
2554 | + .ant-input-search-button:not(.ant-btn-primary) { | |
2555 | + border-left-color: #2a7dc9; | |
2556 | +} | |
2557 | + | |
2558 | +[data-theme='dark'] | |
2559 | + .ant-input-search | |
2560 | + > .ant-input-group | |
2561 | + > .ant-input-group-addon:last-child | |
2562 | + .ant-input-search-button:not(.ant-btn-primary) { | |
2563 | + color: #8b949e; | |
2564 | +} | |
2565 | + | |
2566 | +[data-theme='dark'] | |
2567 | + .ant-input-search-rtl | |
2568 | + .ant-input:focus | |
2569 | + + .ant-input-group-addon | |
2570 | + .ant-input-search-button:not(.ant-btn-primary), | |
2571 | +[data-theme='dark'] | |
2572 | + .ant-input-search-rtl | |
2573 | + .ant-input:hover | |
2574 | + + .ant-input-group-addon | |
2575 | + .ant-input-search-button:not(.ant-btn-primary) { | |
2576 | + border-right-color: #2a7dc9; | |
2577 | + border-left-color: #303030; | |
2578 | +} | |
2579 | + | |
2580 | +[data-theme='dark'] .ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper-focused, | |
2581 | +[data-theme='dark'] .ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper:hover { | |
2582 | + border-right-color: #2a7dc9; | |
2583 | +} | |
2584 | + | |
2585 | +[data-theme='dark'] .ant-tooltip { | |
2586 | + color: #c9d1d9; | |
2587 | +} | |
2588 | + | |
2589 | +[data-theme='dark'] .ant-tooltip-inner { | |
2590 | + background-color: #434343; | |
2591 | + color: #fff; | |
2592 | +} | |
2593 | + | |
2594 | +[data-theme='dark'] .ant-tooltip-arrow { | |
2595 | + background: 0 0; | |
2596 | +} | |
2597 | + | |
2598 | +[data-theme='dark'] .ant-tooltip-arrow-content { | |
2599 | + background-color: #434343; | |
2600 | +} | |
2601 | + | |
2602 | +[data-theme='dark'] .ant-tooltip-placement-top .ant-tooltip-arrow-content, | |
2603 | +[data-theme='dark'] .ant-tooltip-placement-topLeft .ant-tooltip-arrow-content, | |
2604 | +[data-theme='dark'] .ant-tooltip-placement-topRight .ant-tooltip-arrow-content { | |
2605 | + box-shadow: 3px 3px 7px rgb(0 0 0 / 7%); | |
2606 | +} | |
2607 | + | |
2608 | +[data-theme='dark'] .ant-tooltip-pink .ant-tooltip-inner { | |
2609 | + background-color: #cb2b83; | |
2610 | +} | |
2611 | + | |
2612 | +[data-theme='dark'] .ant-tooltip-pink .ant-tooltip-arrow-content { | |
2613 | + background-color: #cb2b83; | |
2614 | +} | |
2615 | + | |
2616 | +[data-theme='dark'] .ant-tooltip-magenta .ant-tooltip-inner { | |
2617 | + background-color: #cb2b83; | |
2618 | +} | |
2619 | + | |
2620 | +[data-theme='dark'] .ant-tooltip-magenta .ant-tooltip-arrow-content { | |
2621 | + background-color: #cb2b83; | |
2622 | +} | |
2623 | + | |
2624 | +[data-theme='dark'] .ant-tooltip-red .ant-tooltip-inner { | |
2625 | + background-color: #d32029; | |
2626 | +} | |
2627 | + | |
2628 | +[data-theme='dark'] .ant-tooltip-red .ant-tooltip-arrow-content { | |
2629 | + background-color: #d32029; | |
2630 | +} | |
2631 | + | |
2632 | +[data-theme='dark'] .ant-tooltip-volcano .ant-tooltip-inner { | |
2633 | + background-color: #d84b1b; | |
2634 | +} | |
2635 | + | |
2636 | +[data-theme='dark'] .ant-tooltip-volcano .ant-tooltip-arrow-content { | |
2637 | + background-color: #d84b1b; | |
2638 | +} | |
2639 | + | |
2640 | +[data-theme='dark'] .ant-tooltip-orange .ant-tooltip-inner { | |
2641 | + background-color: #d87a16; | |
2642 | +} | |
2643 | + | |
2644 | +[data-theme='dark'] .ant-tooltip-orange .ant-tooltip-arrow-content { | |
2645 | + background-color: #d87a16; | |
2646 | +} | |
2647 | + | |
2648 | +[data-theme='dark'] .ant-tooltip-yellow .ant-tooltip-inner { | |
2649 | + background-color: #d8bd14; | |
2650 | +} | |
2651 | + | |
2652 | +[data-theme='dark'] .ant-tooltip-yellow .ant-tooltip-arrow-content { | |
2653 | + background-color: #d8bd14; | |
2654 | +} | |
2655 | + | |
2656 | +[data-theme='dark'] .ant-tooltip-gold .ant-tooltip-inner { | |
2657 | + background-color: #d89614; | |
2658 | +} | |
2659 | + | |
2660 | +[data-theme='dark'] .ant-tooltip-gold .ant-tooltip-arrow-content { | |
2661 | + background-color: #d89614; | |
2662 | +} | |
2663 | + | |
2664 | +[data-theme='dark'] .ant-tooltip-cyan .ant-tooltip-inner { | |
2665 | + background-color: #13a8a8; | |
2666 | +} | |
2667 | + | |
2668 | +[data-theme='dark'] .ant-tooltip-cyan .ant-tooltip-arrow-content { | |
2669 | + background-color: #13a8a8; | |
2670 | +} | |
2671 | + | |
2672 | +[data-theme='dark'] .ant-tooltip-lime .ant-tooltip-inner { | |
2673 | + background-color: #8bbc12; | |
2674 | +} | |
2675 | + | |
2676 | +[data-theme='dark'] .ant-tooltip-lime .ant-tooltip-arrow-content { | |
2677 | + background-color: #8bbc12; | |
2678 | +} | |
2679 | + | |
2680 | +[data-theme='dark'] .ant-tooltip-green .ant-tooltip-inner { | |
2681 | + background-color: #49aa19; | |
2682 | +} | |
2683 | + | |
2684 | +[data-theme='dark'] .ant-tooltip-green .ant-tooltip-arrow-content { | |
2685 | + background-color: #49aa19; | |
2686 | +} | |
2687 | + | |
2688 | +[data-theme='dark'] .ant-tooltip-blue .ant-tooltip-inner { | |
2689 | + background-color: #187edc; | |
2690 | +} | |
2691 | + | |
2692 | +[data-theme='dark'] .ant-tooltip-blue .ant-tooltip-arrow-content { | |
2693 | + background-color: #187edc; | |
2694 | +} | |
2695 | + | |
2696 | +[data-theme='dark'] .ant-tooltip-geekblue .ant-tooltip-inner { | |
2697 | + background-color: #2b4bcb; | |
2698 | +} | |
2699 | + | |
2700 | +[data-theme='dark'] .ant-tooltip-geekblue .ant-tooltip-arrow-content { | |
2701 | + background-color: #2b4bcb; | |
2702 | +} | |
2703 | + | |
2704 | +[data-theme='dark'] .ant-tooltip-purple .ant-tooltip-inner { | |
2705 | + background-color: #642ab5; | |
2706 | +} | |
2707 | + | |
2708 | +[data-theme='dark'] .ant-tooltip-purple .ant-tooltip-arrow-content { | |
2709 | + background-color: #642ab5; | |
2710 | +} | |
2711 | + | |
2712 | +[data-theme='dark'] .ant-popover { | |
2713 | + color: #c9d1d9; | |
2714 | +} | |
2715 | + | |
2716 | +[data-theme='dark'] .ant-popover::after { | |
2717 | + background: rgb(255 255 255 / 1%); | |
2718 | +} | |
2719 | + | |
2720 | +[data-theme='dark'] .ant-popover-inner { | |
2721 | + background-color: #1f1f1f; | |
2722 | + box-shadow: 0 0 8px rgb(0 0 0 / 45%); | |
2723 | +} | |
2724 | + | |
2725 | +[data-theme='dark'] .ant-popover-title { | |
2726 | + border-bottom: 1px solid #303030; | |
2727 | + color: rgb(255 255 255 / 65%); | |
2728 | +} | |
2729 | + | |
2730 | +[data-theme='dark'] .ant-popover-inner-content { | |
2731 | + color: #c9d1d9; | |
2732 | +} | |
2733 | + | |
2734 | +[data-theme='dark'] .ant-popover-message { | |
2735 | + color: #c9d1d9; | |
2736 | +} | |
2737 | + | |
2738 | +[data-theme='dark'] .ant-popover-message > .anticon { | |
2739 | + color: #efbd47; | |
2740 | +} | |
2741 | + | |
2742 | +[data-theme='dark'] .ant-popover-arrow { | |
2743 | + background: 0 0; | |
2744 | +} | |
2745 | + | |
2746 | +[data-theme='dark'] .ant-popover-arrow-content { | |
2747 | + background-color: #1f1f1f; | |
2748 | +} | |
2749 | + | |
2750 | +[data-theme='dark'] .ant-popover-placement-top .ant-popover-arrow-content, | |
2751 | +[data-theme='dark'] .ant-popover-placement-topLeft .ant-popover-arrow-content, | |
2752 | +[data-theme='dark'] .ant-popover-placement-topRight .ant-popover-arrow-content { | |
2753 | + box-shadow: 3px 3px 7px rgb(0 0 0 / 7%); | |
2754 | +} | |
2755 | + | |
2756 | +[data-theme='dark'] .ant-popover-pink .ant-popover-inner { | |
2757 | + background-color: #cb2b83; | |
2758 | +} | |
2759 | + | |
2760 | +[data-theme='dark'] .ant-popover-pink .ant-popover-arrow-content { | |
2761 | + background-color: #cb2b83; | |
2762 | +} | |
2763 | + | |
2764 | +[data-theme='dark'] .ant-popover-magenta .ant-popover-inner { | |
2765 | + background-color: #cb2b83; | |
2766 | +} | |
2767 | + | |
2768 | +[data-theme='dark'] .ant-popover-magenta .ant-popover-arrow-content { | |
2769 | + background-color: #cb2b83; | |
2770 | +} | |
2771 | + | |
2772 | +[data-theme='dark'] .ant-popover-red .ant-popover-inner { | |
2773 | + background-color: #d32029; | |
2774 | +} | |
2775 | + | |
2776 | +[data-theme='dark'] .ant-popover-red .ant-popover-arrow-content { | |
2777 | + background-color: #d32029; | |
2778 | +} | |
2779 | + | |
2780 | +[data-theme='dark'] .ant-popover-volcano .ant-popover-inner { | |
2781 | + background-color: #d84b1b; | |
2782 | +} | |
2783 | + | |
2784 | +[data-theme='dark'] .ant-popover-volcano .ant-popover-arrow-content { | |
2785 | + background-color: #d84b1b; | |
2786 | +} | |
2787 | + | |
2788 | +[data-theme='dark'] .ant-popover-orange .ant-popover-inner { | |
2789 | + background-color: #d87a16; | |
2790 | +} | |
2791 | + | |
2792 | +[data-theme='dark'] .ant-popover-orange .ant-popover-arrow-content { | |
2793 | + background-color: #d87a16; | |
2794 | +} | |
2795 | + | |
2796 | +[data-theme='dark'] .ant-popover-yellow .ant-popover-inner { | |
2797 | + background-color: #d8bd14; | |
2798 | +} | |
2799 | + | |
2800 | +[data-theme='dark'] .ant-popover-yellow .ant-popover-arrow-content { | |
2801 | + background-color: #d8bd14; | |
2802 | +} | |
2803 | + | |
2804 | +[data-theme='dark'] .ant-popover-gold .ant-popover-inner { | |
2805 | + background-color: #d89614; | |
2806 | +} | |
2807 | + | |
2808 | +[data-theme='dark'] .ant-popover-gold .ant-popover-arrow-content { | |
2809 | + background-color: #d89614; | |
2810 | +} | |
2811 | + | |
2812 | +[data-theme='dark'] .ant-popover-cyan .ant-popover-inner { | |
2813 | + background-color: #13a8a8; | |
2814 | +} | |
2815 | + | |
2816 | +[data-theme='dark'] .ant-popover-cyan .ant-popover-arrow-content { | |
2817 | + background-color: #13a8a8; | |
2818 | +} | |
2819 | + | |
2820 | +[data-theme='dark'] .ant-popover-lime .ant-popover-inner { | |
2821 | + background-color: #8bbc12; | |
2822 | +} | |
2823 | + | |
2824 | +[data-theme='dark'] .ant-popover-lime .ant-popover-arrow-content { | |
2825 | + background-color: #8bbc12; | |
2826 | +} | |
2827 | + | |
2828 | +[data-theme='dark'] .ant-popover-green .ant-popover-inner { | |
2829 | + background-color: #49aa19; | |
2830 | +} | |
2831 | + | |
2832 | +[data-theme='dark'] .ant-popover-green .ant-popover-arrow-content { | |
2833 | + background-color: #49aa19; | |
2834 | +} | |
2835 | + | |
2836 | +[data-theme='dark'] .ant-popover-blue .ant-popover-inner { | |
2837 | + background-color: #187edc; | |
2838 | +} | |
2839 | + | |
2840 | +[data-theme='dark'] .ant-popover-blue .ant-popover-arrow-content { | |
2841 | + background-color: #187edc; | |
2842 | +} | |
2843 | + | |
2844 | +[data-theme='dark'] .ant-popover-geekblue .ant-popover-inner { | |
2845 | + background-color: #2b4bcb; | |
2846 | +} | |
2847 | + | |
2848 | +[data-theme='dark'] .ant-popover-geekblue .ant-popover-arrow-content { | |
2849 | + background-color: #2b4bcb; | |
2850 | +} | |
2851 | + | |
2852 | +[data-theme='dark'] .ant-popover-purple .ant-popover-inner { | |
2853 | + background-color: #642ab5; | |
2854 | +} | |
2855 | + | |
2856 | +[data-theme='dark'] .ant-popover-purple .ant-popover-arrow-content { | |
2857 | + background-color: #642ab5; | |
2858 | +} | |
2859 | + | |
2860 | +[data-theme='dark'] .ant-menu-item-danger.ant-menu-item { | |
2861 | + color: #ed6f6f; | |
2862 | +} | |
2863 | + | |
2864 | +[data-theme='dark'] .ant-menu-item-danger.ant-menu-item-active, | |
2865 | +[data-theme='dark'] .ant-menu-item-danger.ant-menu-item:hover { | |
2866 | + color: #ed6f6f; | |
2867 | +} | |
2868 | + | |
2869 | +[data-theme='dark'] .ant-menu-item-danger.ant-menu-item:active { | |
2870 | + background: #2b1316; | |
2871 | +} | |
2872 | + | |
2873 | +[data-theme='dark'] .ant-menu-item-danger.ant-menu-item-selected { | |
2874 | + color: #ed6f6f; | |
2875 | +} | |
2876 | + | |
2877 | +[data-theme='dark'] .ant-menu-item-danger.ant-menu-item-selected > a, | |
2878 | +[data-theme='dark'] .ant-menu-item-danger.ant-menu-item-selected > a:hover { | |
2879 | + color: #ed6f6f; | |
2880 | +} | |
2881 | + | |
2882 | +[data-theme='dark'] | |
2883 | + .ant-menu:not(.ant-menu-horizontal) | |
2884 | + .ant-menu-item-danger.ant-menu-item-selected { | |
2885 | + background-color: #2b1316; | |
2886 | +} | |
2887 | + | |
2888 | +[data-theme='dark'] .ant-menu-inline .ant-menu-item-danger.ant-menu-item::after { | |
2889 | + border-right-color: #ed6f6f; | |
2890 | +} | |
2891 | + | |
2892 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-danger.ant-menu-item, | |
2893 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-danger.ant-menu-item:hover, | |
2894 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-danger.ant-menu-item > a { | |
2895 | + color: #ed6f6f; | |
2896 | +} | |
2897 | + | |
2898 | +[data-theme='dark'] | |
2899 | + .ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) | |
2900 | + .ant-menu-item-danger.ant-menu-item-selected { | |
2901 | + background-color: #ed6f6f; | |
2902 | + color: #fff; | |
2903 | +} | |
2904 | + | |
2905 | +[data-theme='dark'] .ant-menu { | |
2906 | + background: #151515; | |
2907 | + color: #c9d1d9; | |
2908 | +} | |
2909 | + | |
2910 | +[data-theme='dark'] .ant-menu-item-group-title { | |
2911 | + color: #8b949e; | |
2912 | +} | |
2913 | + | |
2914 | +[data-theme='dark'] .ant-menu-submenu-selected { | |
2915 | + color: #0960bd; | |
2916 | +} | |
2917 | + | |
2918 | +[data-theme='dark'] .ant-menu-item:active, | |
2919 | +[data-theme='dark'] .ant-menu-submenu-title:active { | |
2920 | + background: rgb(255 255 255 / 8%); | |
2921 | +} | |
2922 | + | |
2923 | +[data-theme='dark'] .ant-menu-item a { | |
2924 | + color: #c9d1d9; | |
2925 | +} | |
2926 | + | |
2927 | +[data-theme='dark'] .ant-menu-item a:hover { | |
2928 | + color: #0960bd; | |
2929 | +} | |
2930 | + | |
2931 | +[data-theme='dark'] .ant-menu-item a::before { | |
2932 | + background-color: transparent; | |
2933 | +} | |
2934 | + | |
2935 | +[data-theme='dark'] .ant-menu-item > .ant-badge a { | |
2936 | + color: #c9d1d9; | |
2937 | +} | |
2938 | + | |
2939 | +[data-theme='dark'] .ant-menu-item > .ant-badge a:hover { | |
2940 | + color: #0960bd; | |
2941 | +} | |
2942 | + | |
2943 | +[data-theme='dark'] .ant-menu-item-divider { | |
2944 | + border-color: #303030; | |
2945 | +} | |
2946 | + | |
2947 | +[data-theme='dark'] .ant-menu-horizontal > .ant-menu-item-active, | |
2948 | +[data-theme='dark'] .ant-menu-horizontal > .ant-menu-item:hover, | |
2949 | +[data-theme='dark'] .ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover { | |
2950 | + background-color: transparent; | |
2951 | +} | |
2952 | + | |
2953 | +[data-theme='dark'] .ant-menu-item-selected { | |
2954 | + color: #0960bd; | |
2955 | +} | |
2956 | + | |
2957 | +[data-theme='dark'] .ant-menu-item-selected a, | |
2958 | +[data-theme='dark'] .ant-menu-item-selected a:hover { | |
2959 | + color: #0960bd; | |
2960 | +} | |
2961 | + | |
2962 | +[data-theme='dark'] .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected { | |
2963 | + background-color: rgb(255 255 255 / 8%); | |
2964 | +} | |
2965 | + | |
2966 | +[data-theme='dark'] .ant-menu-inline, | |
2967 | +[data-theme='dark'] .ant-menu-vertical, | |
2968 | +[data-theme='dark'] .ant-menu-vertical-left { | |
2969 | + border-right: 1px solid #303030; | |
2970 | +} | |
2971 | + | |
2972 | +[data-theme='dark'] .ant-menu-vertical-right { | |
2973 | + border-left: 1px solid #303030; | |
2974 | +} | |
2975 | + | |
2976 | +[data-theme='dark'] .ant-menu-item:focus-visible, | |
2977 | +[data-theme='dark'] .ant-menu-submenu-title:focus-visible { | |
2978 | + box-shadow: 0 0 0 2px #a5d3f0; | |
2979 | +} | |
2980 | + | |
2981 | +[data-theme='dark'] .ant-menu-submenu-popup { | |
2982 | + background: 0 0; | |
2983 | +} | |
2984 | + | |
2985 | +[data-theme='dark'] .ant-menu-submenu > .ant-menu { | |
2986 | + background-color: #151515; | |
2987 | +} | |
2988 | + | |
2989 | +[data-theme='dark'] .ant-menu-submenu-popup > .ant-menu { | |
2990 | + background-color: #1f1f1f; | |
2991 | +} | |
2992 | + | |
2993 | +[data-theme='dark'] .ant-menu-submenu-arrow, | |
2994 | +[data-theme='dark'] .ant-menu-submenu-expand-icon { | |
2995 | + color: #c9d1d9; | |
2996 | +} | |
2997 | + | |
2998 | +[data-theme='dark'] .ant-menu-submenu:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow, | |
2999 | +[data-theme='dark'] | |
3000 | + .ant-menu-submenu:hover | |
3001 | + > .ant-menu-submenu-title | |
3002 | + > .ant-menu-submenu-expand-icon { | |
3003 | + color: #0960bd; | |
3004 | +} | |
3005 | + | |
3006 | +[data-theme='dark'] .ant-menu-vertical .ant-menu-submenu-selected, | |
3007 | +[data-theme='dark'] .ant-menu-vertical-left .ant-menu-submenu-selected, | |
3008 | +[data-theme='dark'] .ant-menu-vertical-right .ant-menu-submenu-selected { | |
3009 | + color: #0960bd; | |
3010 | +} | |
3011 | + | |
3012 | +[data-theme='dark'] .ant-menu-horizontal { | |
3013 | + border-bottom: 1px solid #303030; | |
3014 | +} | |
3015 | + | |
3016 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-active, | |
3017 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-open, | |
3018 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-selected, | |
3019 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item:hover, | |
3020 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-active, | |
3021 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-open, | |
3022 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-selected, | |
3023 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu:hover { | |
3024 | + color: #0960bd; | |
3025 | +} | |
3026 | + | |
3027 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-active::after, | |
3028 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-open::after, | |
3029 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-selected::after, | |
3030 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item:hover::after, | |
3031 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-active::after, | |
3032 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-open::after, | |
3033 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-selected::after, | |
3034 | +[data-theme='dark'] .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu:hover::after { | |
3035 | + border-bottom: 2px solid #0960bd; | |
3036 | +} | |
3037 | + | |
3038 | +[data-theme='dark'] .ant-menu-horizontal > .ant-menu-item::after, | |
3039 | +[data-theme='dark'] .ant-menu-horizontal > .ant-menu-submenu::after { | |
3040 | + border-bottom: 2px solid transparent; | |
3041 | +} | |
3042 | + | |
3043 | +[data-theme='dark'] .ant-menu-horizontal > .ant-menu-item a { | |
3044 | + color: #c9d1d9; | |
3045 | +} | |
3046 | + | |
3047 | +[data-theme='dark'] .ant-menu-horizontal > .ant-menu-item a:hover { | |
3048 | + color: #0960bd; | |
3049 | +} | |
3050 | + | |
3051 | +[data-theme='dark'] .ant-menu-horizontal > .ant-menu-item-selected a { | |
3052 | + color: #0960bd; | |
3053 | +} | |
3054 | + | |
3055 | +[data-theme='dark'] .ant-menu-inline .ant-menu-item::after, | |
3056 | +[data-theme='dark'] .ant-menu-vertical .ant-menu-item::after, | |
3057 | +[data-theme='dark'] .ant-menu-vertical-left .ant-menu-item::after, | |
3058 | +[data-theme='dark'] .ant-menu-vertical-right .ant-menu-item::after { | |
3059 | + border-right: 3px solid #0960bd; | |
3060 | +} | |
3061 | + | |
3062 | +[data-theme='dark'] .ant-menu.ant-menu-inline-collapsed-tooltip a { | |
3063 | + color: rgb(255 255 255 / 85%); | |
3064 | +} | |
3065 | + | |
3066 | +[data-theme='dark'] .ant-menu-sub.ant-menu-inline { | |
3067 | + background: rgb(255 255 255 / 4%); | |
3068 | +} | |
3069 | + | |
3070 | +[data-theme='dark'] .ant-menu-item-disabled, | |
3071 | +[data-theme='dark'] .ant-menu-submenu-disabled { | |
3072 | + color: rgb(255 255 255 / 30%) !important; | |
3073 | +} | |
3074 | + | |
3075 | +[data-theme='dark'] .ant-menu-item-disabled::after, | |
3076 | +[data-theme='dark'] .ant-menu-submenu-disabled::after { | |
3077 | + border-color: transparent !important; | |
3078 | +} | |
3079 | + | |
3080 | +[data-theme='dark'] .ant-menu-item-disabled a, | |
3081 | +[data-theme='dark'] .ant-menu-submenu-disabled a { | |
3082 | + color: rgb(255 255 255 / 30%) !important; | |
3083 | +} | |
3084 | + | |
3085 | +[data-theme='dark'] .ant-menu-item-disabled > .ant-menu-submenu-title, | |
3086 | +[data-theme='dark'] .ant-menu-submenu-disabled > .ant-menu-submenu-title { | |
3087 | + color: rgb(255 255 255 / 30%) !important; | |
3088 | +} | |
3089 | + | |
3090 | +[data-theme='dark'] | |
3091 | + .ant-menu-item-disabled | |
3092 | + > .ant-menu-submenu-title | |
3093 | + > .ant-menu-submenu-arrow::after, | |
3094 | +[data-theme='dark'] | |
3095 | + .ant-menu-item-disabled | |
3096 | + > .ant-menu-submenu-title | |
3097 | + > .ant-menu-submenu-arrow::before, | |
3098 | +[data-theme='dark'] | |
3099 | + .ant-menu-submenu-disabled | |
3100 | + > .ant-menu-submenu-title | |
3101 | + > .ant-menu-submenu-arrow::after, | |
3102 | +[data-theme='dark'] | |
3103 | + .ant-menu-submenu-disabled | |
3104 | + > .ant-menu-submenu-title | |
3105 | + > .ant-menu-submenu-arrow::before { | |
3106 | + background: rgb(255 255 255 / 30%) !important; | |
3107 | +} | |
3108 | + | |
3109 | +[data-theme='dark'] .ant-menu-inline-collapsed-tooltip a, | |
3110 | +[data-theme='dark'] .ant-menu-inline-collapsed-tooltip a:hover { | |
3111 | + color: #fff; | |
3112 | +} | |
3113 | + | |
3114 | +[data-theme='dark'] .ant-menu-light .ant-menu-item-active, | |
3115 | +[data-theme='dark'] .ant-menu-light .ant-menu-item:hover, | |
3116 | +[data-theme='dark'] .ant-menu-light .ant-menu-submenu-active, | |
3117 | +[data-theme='dark'] .ant-menu-light .ant-menu-submenu-title:hover, | |
3118 | +[data-theme='dark'] .ant-menu-light .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open { | |
3119 | + color: #0960bd; | |
3120 | +} | |
3121 | + | |
3122 | +[data-theme='dark'] .ant-menu.ant-menu-root:focus-visible { | |
3123 | + box-shadow: 0 0 0 2px #004496; | |
3124 | +} | |
3125 | + | |
3126 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item:focus-visible, | |
3127 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-title:focus-visible { | |
3128 | + box-shadow: 0 0 0 2px #004496; | |
3129 | +} | |
3130 | + | |
3131 | +[data-theme='dark'] .ant-menu-dark .ant-menu-sub, | |
3132 | +[data-theme='dark'] .ant-menu.ant-menu-dark, | |
3133 | +[data-theme='dark'] .ant-menu.ant-menu-dark .ant-menu-sub { | |
3134 | + background: #1f1f1f; | |
3135 | + color: rgb(255 255 255 / 65%); | |
3136 | +} | |
3137 | + | |
3138 | +[data-theme='dark'] | |
3139 | + .ant-menu-dark | |
3140 | + .ant-menu-sub | |
3141 | + .ant-menu-submenu-title | |
3142 | + .ant-menu-submenu-arrow::after, | |
3143 | +[data-theme='dark'] | |
3144 | + .ant-menu-dark | |
3145 | + .ant-menu-sub | |
3146 | + .ant-menu-submenu-title | |
3147 | + .ant-menu-submenu-arrow::before, | |
3148 | +[data-theme='dark'] | |
3149 | + .ant-menu.ant-menu-dark | |
3150 | + .ant-menu-sub | |
3151 | + .ant-menu-submenu-title | |
3152 | + .ant-menu-submenu-arrow::after, | |
3153 | +[data-theme='dark'] | |
3154 | + .ant-menu.ant-menu-dark | |
3155 | + .ant-menu-sub | |
3156 | + .ant-menu-submenu-title | |
3157 | + .ant-menu-submenu-arrow::before, | |
3158 | +[data-theme='dark'] .ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::after, | |
3159 | +[data-theme='dark'] | |
3160 | + .ant-menu.ant-menu-dark | |
3161 | + .ant-menu-submenu-title | |
3162 | + .ant-menu-submenu-arrow::before { | |
3163 | + background: #fff; | |
3164 | +} | |
3165 | + | |
3166 | +[data-theme='dark'] .ant-menu-dark.ant-menu-submenu-popup { | |
3167 | + background: 0 0; | |
3168 | +} | |
3169 | + | |
3170 | +[data-theme='dark'] .ant-menu-dark .ant-menu-inline.ant-menu-sub { | |
3171 | + background: #151515; | |
3172 | +} | |
3173 | + | |
3174 | +[data-theme='dark'] .ant-menu-dark.ant-menu-horizontal > .ant-menu-item, | |
3175 | +[data-theme='dark'] .ant-menu-dark.ant-menu-horizontal > .ant-menu-submenu { | |
3176 | + border-color: #1f1f1f; | |
3177 | +} | |
3178 | + | |
3179 | +[data-theme='dark'] .ant-menu-dark.ant-menu-horizontal > .ant-menu-item:hover { | |
3180 | + background-color: #0960bd; | |
3181 | +} | |
3182 | + | |
3183 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item, | |
3184 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-group-title, | |
3185 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item > a, | |
3186 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item > span > a { | |
3187 | + color: rgb(255 255 255 / 65%); | |
3188 | +} | |
3189 | + | |
3190 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-active, | |
3191 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item:hover, | |
3192 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-active, | |
3193 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-open, | |
3194 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-selected, | |
3195 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-title:hover { | |
3196 | + background-color: transparent; | |
3197 | + color: #fff; | |
3198 | +} | |
3199 | + | |
3200 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-active > a, | |
3201 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-active > span > a, | |
3202 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item:hover > a, | |
3203 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item:hover > span > a, | |
3204 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-active > a, | |
3205 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-active > span > a, | |
3206 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-open > a, | |
3207 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-open > span > a, | |
3208 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-selected > a, | |
3209 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-selected > span > a, | |
3210 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-title:hover > a, | |
3211 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-title:hover > span > a { | |
3212 | + color: #fff; | |
3213 | +} | |
3214 | + | |
3215 | +[data-theme='dark'] | |
3216 | + .ant-menu-dark | |
3217 | + .ant-menu-item-active | |
3218 | + > .ant-menu-submenu-title | |
3219 | + > .ant-menu-submenu-arrow::after, | |
3220 | +[data-theme='dark'] | |
3221 | + .ant-menu-dark | |
3222 | + .ant-menu-item-active | |
3223 | + > .ant-menu-submenu-title | |
3224 | + > .ant-menu-submenu-arrow::before, | |
3225 | +[data-theme='dark'] | |
3226 | + .ant-menu-dark | |
3227 | + .ant-menu-item:hover | |
3228 | + > .ant-menu-submenu-title | |
3229 | + > .ant-menu-submenu-arrow::after, | |
3230 | +[data-theme='dark'] | |
3231 | + .ant-menu-dark | |
3232 | + .ant-menu-item:hover | |
3233 | + > .ant-menu-submenu-title | |
3234 | + > .ant-menu-submenu-arrow::before, | |
3235 | +[data-theme='dark'] | |
3236 | + .ant-menu-dark | |
3237 | + .ant-menu-submenu-active | |
3238 | + > .ant-menu-submenu-title | |
3239 | + > .ant-menu-submenu-arrow::after, | |
3240 | +[data-theme='dark'] | |
3241 | + .ant-menu-dark | |
3242 | + .ant-menu-submenu-active | |
3243 | + > .ant-menu-submenu-title | |
3244 | + > .ant-menu-submenu-arrow::before, | |
3245 | +[data-theme='dark'] | |
3246 | + .ant-menu-dark | |
3247 | + .ant-menu-submenu-open | |
3248 | + > .ant-menu-submenu-title | |
3249 | + > .ant-menu-submenu-arrow::after, | |
3250 | +[data-theme='dark'] | |
3251 | + .ant-menu-dark | |
3252 | + .ant-menu-submenu-open | |
3253 | + > .ant-menu-submenu-title | |
3254 | + > .ant-menu-submenu-arrow::before, | |
3255 | +[data-theme='dark'] | |
3256 | + .ant-menu-dark | |
3257 | + .ant-menu-submenu-selected | |
3258 | + > .ant-menu-submenu-title | |
3259 | + > .ant-menu-submenu-arrow::after, | |
3260 | +[data-theme='dark'] | |
3261 | + .ant-menu-dark | |
3262 | + .ant-menu-submenu-selected | |
3263 | + > .ant-menu-submenu-title | |
3264 | + > .ant-menu-submenu-arrow::before, | |
3265 | +[data-theme='dark'] | |
3266 | + .ant-menu-dark | |
3267 | + .ant-menu-submenu-title:hover | |
3268 | + > .ant-menu-submenu-title | |
3269 | + > .ant-menu-submenu-arrow::after, | |
3270 | +[data-theme='dark'] | |
3271 | + .ant-menu-dark | |
3272 | + .ant-menu-submenu-title:hover | |
3273 | + > .ant-menu-submenu-title | |
3274 | + > .ant-menu-submenu-arrow::before { | |
3275 | + background: #fff; | |
3276 | +} | |
3277 | + | |
3278 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item:hover { | |
3279 | + background-color: transparent; | |
3280 | +} | |
3281 | + | |
3282 | +[data-theme='dark'] .ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-selected { | |
3283 | + background-color: #0960bd; | |
3284 | +} | |
3285 | + | |
3286 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-selected { | |
3287 | + color: #fff; | |
3288 | +} | |
3289 | + | |
3290 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-selected > a, | |
3291 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-selected > a:hover, | |
3292 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-selected > span > a, | |
3293 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-selected > span > a:hover { | |
3294 | + color: #fff; | |
3295 | +} | |
3296 | + | |
3297 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-selected .ant-menu-item-icon, | |
3298 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-selected .anticon { | |
3299 | + color: #fff; | |
3300 | +} | |
3301 | + | |
3302 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-selected .ant-menu-item-icon + span, | |
3303 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-selected .anticon + span { | |
3304 | + color: #fff; | |
3305 | +} | |
3306 | + | |
3307 | +[data-theme='dark'] .ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected, | |
3308 | +[data-theme='dark'] .ant-menu.ant-menu-dark .ant-menu-item-selected { | |
3309 | + background-color: #0960bd; | |
3310 | +} | |
3311 | + | |
3312 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-disabled, | |
3313 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-disabled > a, | |
3314 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-disabled > span > a, | |
3315 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-disabled, | |
3316 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-disabled > a, | |
3317 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-disabled > span > a { | |
3318 | + color: rgb(255 255 255 / 30%) !important; | |
3319 | +} | |
3320 | + | |
3321 | +[data-theme='dark'] .ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title, | |
3322 | +[data-theme='dark'] .ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title { | |
3323 | + color: rgb(255 255 255 / 30%) !important; | |
3324 | +} | |
3325 | + | |
3326 | +[data-theme='dark'] | |
3327 | + .ant-menu-dark | |
3328 | + .ant-menu-item-disabled | |
3329 | + > .ant-menu-submenu-title | |
3330 | + > .ant-menu-submenu-arrow::after, | |
3331 | +[data-theme='dark'] | |
3332 | + .ant-menu-dark | |
3333 | + .ant-menu-item-disabled | |
3334 | + > .ant-menu-submenu-title | |
3335 | + > .ant-menu-submenu-arrow::before, | |
3336 | +[data-theme='dark'] | |
3337 | + .ant-menu-dark | |
3338 | + .ant-menu-submenu-disabled | |
3339 | + > .ant-menu-submenu-title | |
3340 | + > .ant-menu-submenu-arrow::after, | |
3341 | +[data-theme='dark'] | |
3342 | + .ant-menu-dark | |
3343 | + .ant-menu-submenu-disabled | |
3344 | + > .ant-menu-submenu-title | |
3345 | + > .ant-menu-submenu-arrow::before { | |
3346 | + background: rgb(255 255 255 / 30%) !important; | |
3347 | +} | |
3348 | + | |
3349 | +[data-theme='dark'] .ant-menu-rtl.ant-menu-inline, | |
3350 | +[data-theme='dark'] .ant-menu-rtl.ant-menu-vertical { | |
3351 | + border-left: 1px solid #303030; | |
3352 | +} | |
3353 | + | |
3354 | +[data-theme='dark'] .ant-mentions { | |
3355 | + border: 1px solid #303030; | |
3356 | + background-color: transparent; | |
3357 | + color: #c9d1d9; | |
3358 | +} | |
3359 | + | |
3360 | +[data-theme='dark'] .ant-mentions::placeholder { | |
3361 | + color: rgb(255 255 255 / 30%); | |
3362 | +} | |
3363 | + | |
3364 | +[data-theme='dark'] .ant-mentions:hover { | |
3365 | + border-color: #2a7dc9; | |
3366 | +} | |
3367 | + | |
3368 | +[data-theme='dark'] .ant-mentions-focused, | |
3369 | +[data-theme='dark'] .ant-mentions:focus { | |
3370 | + border-color: #0960bd; | |
3371 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
3372 | +} | |
3373 | + | |
3374 | +[data-theme='dark'] .ant-mentions-disabled { | |
3375 | + border-color: #303030; | |
3376 | + background-color: rgb(255 255 255 / 8%); | |
3377 | + color: rgb(255 255 255 / 30%); | |
3378 | +} | |
3379 | + | |
3380 | +[data-theme='dark'] .ant-mentions-disabled:hover { | |
3381 | + border-color: #303030; | |
3382 | +} | |
3383 | + | |
3384 | +[data-theme='dark'] .ant-mentions[disabled] { | |
3385 | + border-color: #303030; | |
3386 | + background-color: rgb(255 255 255 / 8%); | |
3387 | + color: rgb(255 255 255 / 30%); | |
3388 | +} | |
3389 | + | |
3390 | +[data-theme='dark'] .ant-mentions[disabled]:hover { | |
3391 | + border-color: #303030; | |
3392 | +} | |
3393 | + | |
3394 | +[data-theme='dark'] .ant-mentions-borderless, | |
3395 | +[data-theme='dark'] .ant-mentions-borderless-disabled, | |
3396 | +[data-theme='dark'] .ant-mentions-borderless-focused, | |
3397 | +[data-theme='dark'] .ant-mentions-borderless:focus, | |
3398 | +[data-theme='dark'] .ant-mentions-borderless:hover, | |
3399 | +[data-theme='dark'] .ant-mentions-borderless[disabled] { | |
3400 | + background-color: transparent; | |
3401 | +} | |
3402 | + | |
3403 | +[data-theme='dark'] .ant-mentions-disabled > textarea { | |
3404 | + border-color: #303030; | |
3405 | + background-color: rgb(255 255 255 / 8%); | |
3406 | + color: rgb(255 255 255 / 30%); | |
3407 | +} | |
3408 | + | |
3409 | +[data-theme='dark'] .ant-mentions-disabled > textarea:hover { | |
3410 | + border-color: #303030; | |
3411 | +} | |
3412 | + | |
3413 | +[data-theme='dark'] .ant-mentions-focused { | |
3414 | + border-color: #0960bd; | |
3415 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
3416 | +} | |
3417 | + | |
3418 | +[data-theme='dark'] .ant-mentions > textarea { | |
3419 | + background-color: transparent; | |
3420 | +} | |
3421 | + | |
3422 | +[data-theme='dark'] .ant-mentions > textarea::placeholder { | |
3423 | + color: rgb(255 255 255 / 30%); | |
3424 | +} | |
3425 | + | |
3426 | +[data-theme='dark'] .ant-mentions-measure { | |
3427 | + color: transparent; | |
3428 | +} | |
3429 | + | |
3430 | +[data-theme='dark'] .ant-mentions-dropdown { | |
3431 | + background-color: #1f1f1f; | |
3432 | + color: #c9d1d9; | |
3433 | +} | |
3434 | + | |
3435 | +[data-theme='dark'] .ant-mentions-dropdown-menu-item { | |
3436 | + color: #c9d1d9; | |
3437 | +} | |
3438 | + | |
3439 | +[data-theme='dark'] .ant-mentions-dropdown-menu-item:hover { | |
3440 | + background-color: rgb(255 255 255 / 8%); | |
3441 | +} | |
3442 | + | |
3443 | +[data-theme='dark'] .ant-mentions-dropdown-menu-item-disabled { | |
3444 | + color: rgb(255 255 255 / 30%); | |
3445 | +} | |
3446 | + | |
3447 | +[data-theme='dark'] .ant-mentions-dropdown-menu-item-disabled:hover { | |
3448 | + background-color: #1f1f1f; | |
3449 | + color: rgb(255 255 255 / 30%); | |
3450 | +} | |
3451 | + | |
3452 | +[data-theme='dark'] .ant-mentions-dropdown-menu-item-selected { | |
3453 | + background-color: rgb(255 255 255 / 4%); | |
3454 | + color: #c9d1d9; | |
3455 | +} | |
3456 | + | |
3457 | +[data-theme='dark'] .ant-mentions-dropdown-menu-item-active { | |
3458 | + background-color: rgb(255 255 255 / 8%); | |
3459 | +} | |
3460 | + | |
3461 | +[data-theme='dark'] .ant-dropdown-menu-item.ant-dropdown-menu-item-danger { | |
3462 | + color: #ed6f6f; | |
3463 | +} | |
3464 | + | |
3465 | +[data-theme='dark'] .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover { | |
3466 | + background-color: #ed6f6f; | |
3467 | + color: #fff; | |
3468 | +} | |
3469 | + | |
3470 | +[data-theme='dark'] .ant-dropdown { | |
3471 | + color: #c9d1d9; | |
3472 | +} | |
3473 | + | |
3474 | +[data-theme='dark'] .ant-dropdown-arrow { | |
3475 | + background: 0 0; | |
3476 | +} | |
3477 | + | |
3478 | +[data-theme='dark'] .ant-dropdown-placement-topCenter > .ant-dropdown-arrow, | |
3479 | +[data-theme='dark'] .ant-dropdown-placement-topLeft > .ant-dropdown-arrow, | |
3480 | +[data-theme='dark'] .ant-dropdown-placement-topRight > .ant-dropdown-arrow { | |
3481 | + border-color: transparent #1f1f1f; | |
3482 | + box-shadow: 3px 3px 7px rgb(0 0 0 / 7%); | |
3483 | +} | |
3484 | + | |
3485 | +[data-theme='dark'] .ant-dropdown-placement-bottomCenter > .ant-dropdown-arrow, | |
3486 | +[data-theme='dark'] .ant-dropdown-placement-bottomLeft > .ant-dropdown-arrow, | |
3487 | +[data-theme='dark'] .ant-dropdown-placement-bottomRight > .ant-dropdown-arrow { | |
3488 | + border-color: #1f1f1f; | |
3489 | +} | |
3490 | + | |
3491 | +[data-theme='dark'] .ant-dropdown-menu { | |
3492 | + background-color: #1f1f1f; | |
3493 | +} | |
3494 | + | |
3495 | +[data-theme='dark'] .ant-dropdown-menu-item-group-title { | |
3496 | + color: #8b949e; | |
3497 | +} | |
3498 | + | |
3499 | +[data-theme='dark'] .ant-dropdown-menu-submenu-popup { | |
3500 | + background: 0 0; | |
3501 | +} | |
3502 | + | |
3503 | +[data-theme='dark'] .ant-dropdown-menu-item, | |
3504 | +[data-theme='dark'] .ant-dropdown-menu-submenu-title { | |
3505 | + color: #c9d1d9; | |
3506 | +} | |
3507 | + | |
3508 | +[data-theme='dark'] .ant-dropdown-menu-item-selected, | |
3509 | +[data-theme='dark'] .ant-dropdown-menu-submenu-title-selected { | |
3510 | + background-color: #111b26; | |
3511 | + color: #0960bd; | |
3512 | +} | |
3513 | + | |
3514 | +[data-theme='dark'] .ant-dropdown-menu-item:hover, | |
3515 | +[data-theme='dark'] .ant-dropdown-menu-submenu-title:hover { | |
3516 | + background-color: rgb(255 255 255 / 8%); | |
3517 | +} | |
3518 | + | |
3519 | +[data-theme='dark'] .ant-dropdown-menu-item-disabled, | |
3520 | +[data-theme='dark'] .ant-dropdown-menu-submenu-title-disabled { | |
3521 | + color: rgb(255 255 255 / 30%); | |
3522 | +} | |
3523 | + | |
3524 | +[data-theme='dark'] .ant-dropdown-menu-item-disabled:hover, | |
3525 | +[data-theme='dark'] .ant-dropdown-menu-submenu-title-disabled:hover { | |
3526 | + background-color: transparent; | |
3527 | + color: rgb(255 255 255 / 30%); | |
3528 | +} | |
3529 | + | |
3530 | +[data-theme='dark'] .ant-dropdown-menu-item-divider, | |
3531 | +[data-theme='dark'] .ant-dropdown-menu-submenu-title-divider { | |
3532 | + background-color: #303030; | |
3533 | +} | |
3534 | + | |
3535 | +[data-theme='dark'] | |
3536 | + .ant-dropdown-menu-item | |
3537 | + .ant-dropdown-menu-submenu-expand-icon | |
3538 | + .ant-dropdown-menu-submenu-arrow-icon, | |
3539 | +[data-theme='dark'] | |
3540 | + .ant-dropdown-menu-submenu-title | |
3541 | + .ant-dropdown-menu-submenu-expand-icon | |
3542 | + .ant-dropdown-menu-submenu-arrow-icon { | |
3543 | + color: #8b949e; | |
3544 | +} | |
3545 | + | |
3546 | +[data-theme='dark'] | |
3547 | + .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled | |
3548 | + .ant-dropdown-menu-submenu-title, | |
3549 | +[data-theme='dark'] | |
3550 | + .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled | |
3551 | + .ant-dropdown-menu-submenu-title | |
3552 | + .ant-dropdown-menu-submenu-arrow-icon { | |
3553 | + background-color: transparent; | |
3554 | + color: rgb(255 255 255 / 30%); | |
3555 | +} | |
3556 | + | |
3557 | +[data-theme='dark'] .ant-dropdown-menu-submenu-selected .ant-dropdown-menu-submenu-title { | |
3558 | + color: #0960bd; | |
3559 | +} | |
3560 | + | |
3561 | +[data-theme='dark'] .ant-dropdown-menu-dark, | |
3562 | +[data-theme='dark'] .ant-dropdown-menu-dark .ant-dropdown-menu { | |
3563 | + background: #1f1f1f; | |
3564 | +} | |
3565 | + | |
3566 | +[data-theme='dark'] .ant-dropdown-menu-dark .ant-dropdown-menu-item, | |
3567 | +[data-theme='dark'] .ant-dropdown-menu-dark .ant-dropdown-menu-item > .anticon + span > a, | |
3568 | +[data-theme='dark'] .ant-dropdown-menu-dark .ant-dropdown-menu-item > a, | |
3569 | +[data-theme='dark'] .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title { | |
3570 | + color: rgb(255 255 255 / 65%); | |
3571 | +} | |
3572 | + | |
3573 | +[data-theme='dark'] | |
3574 | + .ant-dropdown-menu-dark | |
3575 | + .ant-dropdown-menu-item | |
3576 | + .ant-dropdown-menu-submenu-arrow::after, | |
3577 | +[data-theme='dark'] | |
3578 | + .ant-dropdown-menu-dark | |
3579 | + .ant-dropdown-menu-item | |
3580 | + > .anticon | |
3581 | + + span | |
3582 | + > a | |
3583 | + .ant-dropdown-menu-submenu-arrow::after, | |
3584 | +[data-theme='dark'] | |
3585 | + .ant-dropdown-menu-dark | |
3586 | + .ant-dropdown-menu-item | |
3587 | + > a | |
3588 | + .ant-dropdown-menu-submenu-arrow::after, | |
3589 | +[data-theme='dark'] | |
3590 | + .ant-dropdown-menu-dark | |
3591 | + .ant-dropdown-menu-submenu-title | |
3592 | + .ant-dropdown-menu-submenu-arrow::after { | |
3593 | + color: rgb(255 255 255 / 65%); | |
3594 | +} | |
3595 | + | |
3596 | +[data-theme='dark'] .ant-dropdown-menu-dark .ant-dropdown-menu-item:hover, | |
3597 | +[data-theme='dark'] .ant-dropdown-menu-dark .ant-dropdown-menu-item > .anticon + span > a:hover, | |
3598 | +[data-theme='dark'] .ant-dropdown-menu-dark .ant-dropdown-menu-item > a:hover, | |
3599 | +[data-theme='dark'] .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover { | |
3600 | + background: 0 0; | |
3601 | + color: #fff; | |
3602 | +} | |
3603 | + | |
3604 | +[data-theme='dark'] .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected, | |
3605 | +[data-theme='dark'] .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover, | |
3606 | +[data-theme='dark'] .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected > a { | |
3607 | + background: #0960bd; | |
3608 | + color: #fff; | |
3609 | +} | |
3610 | + | |
3611 | +[data-theme='dark'] .ant-divider { | |
3612 | + border-top: 1px solid rgb(255 255 255 / 12%); | |
3613 | + color: #c9d1d9; | |
3614 | +} | |
3615 | + | |
3616 | +[data-theme='dark'] .ant-divider-vertical { | |
3617 | + border-left: 1px solid rgb(255 255 255 / 12%); | |
3618 | +} | |
3619 | + | |
3620 | +[data-theme='dark'] .ant-divider-horizontal.ant-divider-with-text { | |
3621 | + border-top-color: rgb(255 255 255 / 12%); | |
3622 | + color: rgb(255 255 255 / 65%); | |
3623 | +} | |
3624 | + | |
3625 | +[data-theme='dark'] .ant-divider-horizontal.ant-divider-with-text::after, | |
3626 | +[data-theme='dark'] .ant-divider-horizontal.ant-divider-with-text::before { | |
3627 | + border-top: 1px solid transparent; | |
3628 | +} | |
3629 | + | |
3630 | +[data-theme='dark'] .ant-divider-dashed { | |
3631 | + border-color: rgb(255 255 255 / 12%); | |
3632 | +} | |
3633 | + | |
3634 | +[data-theme='dark'] .ant-divider-plain.ant-divider-with-text { | |
3635 | + color: #c9d1d9; | |
3636 | +} | |
3637 | + | |
3638 | +[data-theme='dark'] .ant-card { | |
3639 | + background: #151515; | |
3640 | + color: #c9d1d9; | |
3641 | +} | |
3642 | + | |
3643 | +[data-theme='dark'] .ant-card-hoverable:hover { | |
3644 | + border-color: transparent; | |
3645 | +} | |
3646 | + | |
3647 | +[data-theme='dark'] .ant-card-bordered { | |
3648 | + border: 1px solid #303030; | |
3649 | +} | |
3650 | + | |
3651 | +[data-theme='dark'] .ant-card-head { | |
3652 | + border-bottom: 1px solid #303030; | |
3653 | + background: 0 0; | |
3654 | + color: rgb(255 255 255 / 65%); | |
3655 | +} | |
3656 | + | |
3657 | +[data-theme='dark'] .ant-card-head .ant-tabs-top { | |
3658 | + color: #c9d1d9; | |
3659 | +} | |
3660 | + | |
3661 | +[data-theme='dark'] .ant-card-head .ant-tabs-top-bar { | |
3662 | + border-bottom: 1px solid #303030; | |
3663 | +} | |
3664 | + | |
3665 | +[data-theme='dark'] .ant-card-extra { | |
3666 | + color: #c9d1d9; | |
3667 | +} | |
3668 | + | |
3669 | +[data-theme='dark'] .ant-card-grid { | |
3670 | + box-shadow: 1px 0 0 0 #303030; | |
3671 | +} | |
3672 | + | |
3673 | +[data-theme='dark'] .ant-card-actions { | |
3674 | + border-top: 1px solid #303030; | |
3675 | + background: #151515; | |
3676 | +} | |
3677 | + | |
3678 | +[data-theme='dark'] .ant-card-actions > li { | |
3679 | + color: #8b949e; | |
3680 | +} | |
3681 | + | |
3682 | +[data-theme='dark'] .ant-card-actions > li > span:hover { | |
3683 | + color: #0960bd; | |
3684 | +} | |
3685 | + | |
3686 | +[data-theme='dark'] .ant-card-actions > li > span a:not(.ant-btn), | |
3687 | +[data-theme='dark'] .ant-card-actions > li > span > .anticon { | |
3688 | + color: #8b949e; | |
3689 | +} | |
3690 | + | |
3691 | +[data-theme='dark'] .ant-card-actions > li > span a:not(.ant-btn):hover, | |
3692 | +[data-theme='dark'] .ant-card-actions > li > span > .anticon:hover { | |
3693 | + color: #0960bd; | |
3694 | +} | |
3695 | + | |
3696 | +[data-theme='dark'] .ant-card-actions > li:not(:last-child) { | |
3697 | + border-right: 1px solid #303030; | |
3698 | +} | |
3699 | + | |
3700 | +[data-theme='dark'] .ant-card-rtl .ant-card-actions > li:not(:last-child) { | |
3701 | + border-left: 1px solid #303030; | |
3702 | +} | |
3703 | + | |
3704 | +[data-theme='dark'] .ant-card-type-inner .ant-card-head { | |
3705 | + background: rgb(255 255 255 / 4%); | |
3706 | +} | |
3707 | + | |
3708 | +[data-theme='dark'] .ant-card-meta-title { | |
3709 | + color: rgb(255 255 255 / 65%); | |
3710 | +} | |
3711 | + | |
3712 | +[data-theme='dark'] .ant-card-meta-description { | |
3713 | + color: #8b949e; | |
3714 | +} | |
3715 | + | |
3716 | +[data-theme='dark'] .ant-collapse { | |
3717 | + border: 1px solid #303030; | |
3718 | + background-color: rgb(255 255 255 / 4%); | |
3719 | + color: #c9d1d9; | |
3720 | +} | |
3721 | + | |
3722 | +[data-theme='dark'] .ant-collapse > .ant-collapse-item { | |
3723 | + border-bottom: 1px solid #303030; | |
3724 | +} | |
3725 | + | |
3726 | +[data-theme='dark'] .ant-collapse > .ant-collapse-item > .ant-collapse-header { | |
3727 | + color: rgb(255 255 255 / 65%); | |
3728 | +} | |
3729 | + | |
3730 | +[data-theme='dark'] .ant-collapse-content { | |
3731 | + border-top: 1px solid #303030; | |
3732 | + background-color: #151515; | |
3733 | + color: #c9d1d9; | |
3734 | +} | |
3735 | + | |
3736 | +[data-theme='dark'] .ant-collapse-borderless { | |
3737 | + background-color: rgb(255 255 255 / 4%); | |
3738 | +} | |
3739 | + | |
3740 | +[data-theme='dark'] .ant-collapse-borderless > .ant-collapse-item { | |
3741 | + border-bottom: 1px solid #303030; | |
3742 | +} | |
3743 | + | |
3744 | +[data-theme='dark'] .ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content { | |
3745 | + background-color: transparent; | |
3746 | +} | |
3747 | + | |
3748 | +[data-theme='dark'] .ant-collapse-ghost { | |
3749 | + background-color: transparent; | |
3750 | +} | |
3751 | + | |
3752 | +[data-theme='dark'] .ant-collapse-ghost > .ant-collapse-item > .ant-collapse-content { | |
3753 | + background-color: transparent; | |
3754 | +} | |
3755 | + | |
3756 | +[data-theme='dark'] .ant-collapse .ant-collapse-item-disabled > .ant-collapse-header, | |
3757 | +[data-theme='dark'] .ant-collapse .ant-collapse-item-disabled > .ant-collapse-header > .arrow { | |
3758 | + color: rgb(255 255 255 / 30%); | |
3759 | +} | |
3760 | + | |
3761 | +[data-theme='dark'] .ant-carousel { | |
3762 | + color: #c9d1d9; | |
3763 | +} | |
3764 | + | |
3765 | +[data-theme='dark'] .ant-carousel .slick-slider { | |
3766 | + -webkit-tap-highlight-color: transparent; | |
3767 | +} | |
3768 | + | |
3769 | +[data-theme='dark'] .ant-carousel .slick-next, | |
3770 | +[data-theme='dark'] .ant-carousel .slick-prev { | |
3771 | + background: 0 0; | |
3772 | + color: transparent; | |
3773 | +} | |
3774 | + | |
3775 | +[data-theme='dark'] .ant-carousel .slick-next:focus, | |
3776 | +[data-theme='dark'] .ant-carousel .slick-next:hover, | |
3777 | +[data-theme='dark'] .ant-carousel .slick-prev:focus, | |
3778 | +[data-theme='dark'] .ant-carousel .slick-prev:hover { | |
3779 | + background: 0 0; | |
3780 | + color: transparent; | |
3781 | +} | |
3782 | + | |
3783 | +[data-theme='dark'] .ant-carousel .slick-dots li button { | |
3784 | + background: #151515; | |
3785 | + color: transparent; | |
3786 | +} | |
3787 | + | |
3788 | +[data-theme='dark'] .ant-carousel .slick-dots li.slick-active button { | |
3789 | + background: #151515; | |
3790 | +} | |
3791 | + | |
3792 | +[data-theme='dark'] .ant-notification .ant-anchor-wrapper, | |
3793 | +[data-theme='dark'] .ant-notification .ant-card, | |
3794 | +[data-theme='dark'] .ant-notification .ant-collapse-content, | |
3795 | +[data-theme='dark'] .ant-notification .ant-picker-clear, | |
3796 | +[data-theme='dark'] .ant-notification .ant-slider-handle, | |
3797 | +[data-theme='dark'] .ant-notification .ant-timeline-item-head { | |
3798 | + background-color: #1f1f1f; | |
3799 | +} | |
3800 | + | |
3801 | +[data-theme='dark'] .ant-notification .ant-transfer-list-header { | |
3802 | + border-bottom: 1px solid #3a3a3a; | |
3803 | + background: #1f1f1f; | |
3804 | +} | |
3805 | + | |
3806 | +[data-theme='dark'] | |
3807 | + .ant-notification | |
3808 | + .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover { | |
3809 | + background-color: rgb(255 255 255 / 8%); | |
3810 | +} | |
3811 | + | |
3812 | +[data-theme='dark'] .ant-notification tr.ant-table-expanded-row:hover > td, | |
3813 | +[data-theme='dark'] .ant-notification tr.ant-table-expanded-row > td { | |
3814 | + background: #272727; | |
3815 | +} | |
3816 | + | |
3817 | +[data-theme='dark'] .ant-notification .ant-table.ant-table-small thead > tr > th { | |
3818 | + border-bottom: 1px solid #3a3a3a; | |
3819 | + background-color: #1f1f1f; | |
3820 | +} | |
3821 | + | |
3822 | +[data-theme='dark'] .ant-notification .ant-table { | |
3823 | + background-color: #1f1f1f; | |
3824 | +} | |
3825 | + | |
3826 | +[data-theme='dark'] .ant-notification .ant-table .ant-table-row-expand-icon { | |
3827 | + border: 1px solid #3a3a3a; | |
3828 | +} | |
3829 | + | |
3830 | +[data-theme='dark'] .ant-notification .ant-table tfoot > tr > td, | |
3831 | +[data-theme='dark'] .ant-notification .ant-table tfoot > tr > th { | |
3832 | + border-bottom: 1px solid #3a3a3a; | |
3833 | +} | |
3834 | + | |
3835 | +[data-theme='dark'] .ant-notification .ant-table thead > tr > th { | |
3836 | + border-bottom: 1px solid #3a3a3a; | |
3837 | + background-color: #272727; | |
3838 | +} | |
3839 | + | |
3840 | +[data-theme='dark'] .ant-notification .ant-table tbody > tr > td { | |
3841 | + border-bottom: 1px solid #3a3a3a; | |
3842 | +} | |
3843 | + | |
3844 | +[data-theme='dark'] .ant-notification .ant-table tbody > tr > td.ant-table-cell-fix-left, | |
3845 | +[data-theme='dark'] .ant-notification .ant-table tbody > tr > td.ant-table-cell-fix-right { | |
3846 | + background-color: #1f1f1f; | |
3847 | +} | |
3848 | + | |
3849 | +[data-theme='dark'] .ant-notification .ant-table tbody > tr.ant-table-row:hover > td { | |
3850 | + background: #303030; | |
3851 | +} | |
3852 | + | |
3853 | +[data-theme='dark'] .ant-notification .ant-table.ant-table-bordered .ant-table-title { | |
3854 | + border: 1px solid #3a3a3a; | |
3855 | +} | |
3856 | + | |
3857 | +[data-theme='dark'] .ant-notification .ant-table.ant-table-bordered tbody > tr > td, | |
3858 | +[data-theme='dark'] .ant-notification .ant-table.ant-table-bordered tfoot > tr > td, | |
3859 | +[data-theme='dark'] .ant-notification .ant-table.ant-table-bordered tfoot > tr > th, | |
3860 | +[data-theme='dark'] .ant-notification .ant-table.ant-table-bordered thead > tr > th { | |
3861 | + border-right: 1px solid #3a3a3a; | |
3862 | +} | |
3863 | + | |
3864 | +[data-theme='dark'] | |
3865 | + .ant-notification | |
3866 | + .ant-table.ant-table-bordered | |
3867 | + .ant-table-cell-fix-right-first::after { | |
3868 | + border-right: 1px solid #3a3a3a; | |
3869 | +} | |
3870 | + | |
3871 | +[data-theme='dark'] | |
3872 | + .ant-notification | |
3873 | + .ant-table.ant-table-bordered | |
3874 | + table | |
3875 | + thead | |
3876 | + > tr:not(:last-child) | |
3877 | + > th { | |
3878 | + border-bottom: 1px solid #303030; | |
3879 | +} | |
3880 | + | |
3881 | +[data-theme='dark'] .ant-notification .ant-table.ant-table-bordered .ant-table-container { | |
3882 | + border: 1px solid #3a3a3a; | |
3883 | +} | |
3884 | + | |
3885 | +[data-theme='dark'] | |
3886 | + .ant-notification | |
3887 | + .ant-table.ant-table-bordered | |
3888 | + .ant-table-expanded-row-fixed::after { | |
3889 | + border-right: 1px solid #3a3a3a; | |
3890 | +} | |
3891 | + | |
3892 | +[data-theme='dark'] .ant-notification .ant-table.ant-table-bordered .ant-table-footer { | |
3893 | + border: 1px solid #3a3a3a; | |
3894 | +} | |
3895 | + | |
3896 | +[data-theme='dark'] .ant-notification .ant-table .ant-table-filter-trigger-container-open { | |
3897 | + background-color: #525252; | |
3898 | +} | |
3899 | + | |
3900 | +[data-theme='dark'] .ant-notification .ant-picker-calendar-full { | |
3901 | + background-color: #1f1f1f; | |
3902 | +} | |
3903 | + | |
3904 | +[data-theme='dark'] .ant-notification .ant-picker-calendar-full .ant-picker-panel { | |
3905 | + background-color: #1f1f1f; | |
3906 | +} | |
3907 | + | |
3908 | +[data-theme='dark'] | |
3909 | + .ant-notification | |
3910 | + .ant-picker-calendar-full | |
3911 | + .ant-picker-panel | |
3912 | + .ant-picker-calendar-date { | |
3913 | + border-top: 2px solid #3a3a3a; | |
3914 | +} | |
3915 | + | |
3916 | +[data-theme='dark'] | |
3917 | + .ant-notification | |
3918 | + .ant-tabs.ant-tabs-card | |
3919 | + .ant-tabs-card-bar | |
3920 | + .ant-tabs-tab-active { | |
3921 | + border-bottom: 1px solid #1f1f1f; | |
3922 | + background-color: #1f1f1f; | |
3923 | +} | |
3924 | + | |
3925 | +[data-theme='dark'] .ant-notification .ant-badge-count { | |
3926 | + box-shadow: 0 0 0 1px #1f1f1f; | |
3927 | +} | |
3928 | + | |
3929 | +[data-theme='dark'] .ant-notification .ant-tree-show-line .ant-tree-switcher { | |
3930 | + background: #1f1f1f; | |
3931 | +} | |
3932 | + | |
3933 | +[data-theme='dark'] .ant-notification { | |
3934 | + color: #c9d1d9; | |
3935 | +} | |
3936 | + | |
3937 | +[data-theme='dark'] .ant-notification-notice { | |
3938 | + background: #1f1f1f; | |
3939 | +} | |
3940 | + | |
3941 | +[data-theme='dark'] .ant-notification-notice-message { | |
3942 | + color: rgb(255 255 255 / 65%); | |
3943 | +} | |
3944 | + | |
3945 | +[data-theme='dark'] .ant-notification-notice-message-single-line-auto-margin { | |
3946 | + background-color: transparent; | |
3947 | +} | |
3948 | + | |
3949 | +[data-theme='dark'] .anticon.ant-notification-notice-icon-success { | |
3950 | + color: #55d187; | |
3951 | +} | |
3952 | + | |
3953 | +[data-theme='dark'] .anticon.ant-notification-notice-icon-info { | |
3954 | + color: #0960bd; | |
3955 | +} | |
3956 | + | |
3957 | +[data-theme='dark'] .anticon.ant-notification-notice-icon-warning { | |
3958 | + color: #efbd47; | |
3959 | +} | |
3960 | + | |
3961 | +[data-theme='dark'] .anticon.ant-notification-notice-icon-error { | |
3962 | + color: #ed6f6f; | |
3963 | +} | |
3964 | + | |
3965 | +[data-theme='dark'] .ant-notification-notice-close { | |
3966 | + color: #8b949e; | |
3967 | +} | |
3968 | + | |
3969 | +[data-theme='dark'] .ant-notification-notice-close:hover { | |
3970 | + color: rgb(255 255 255 / 85%); | |
3971 | +} | |
3972 | + | |
3973 | +[data-theme='dark'] .ant-message { | |
3974 | + color: #c9d1d9; | |
3975 | +} | |
3976 | + | |
3977 | +[data-theme='dark'] .ant-message-notice-content { | |
3978 | + background: #1f1f1f; | |
3979 | +} | |
3980 | + | |
3981 | +[data-theme='dark'] .ant-message-success .anticon { | |
3982 | + color: #55d187; | |
3983 | +} | |
3984 | + | |
3985 | +[data-theme='dark'] .ant-message-error .anticon { | |
3986 | + color: #ed6f6f; | |
3987 | +} | |
3988 | + | |
3989 | +[data-theme='dark'] .ant-message-warning .anticon { | |
3990 | + color: #efbd47; | |
3991 | +} | |
3992 | + | |
3993 | +[data-theme='dark'] .ant-message-info .anticon, | |
3994 | +[data-theme='dark'] .ant-message-loading .anticon { | |
3995 | + color: #0960bd; | |
3996 | +} | |
3997 | + | |
3998 | +[data-theme='dark'] .ant-spin { | |
3999 | + color: #0960bd; | |
4000 | +} | |
4001 | + | |
4002 | +[data-theme='dark'] .ant-spin-nested-loading > div > .ant-spin .ant-spin-text { | |
4003 | + text-shadow: 0 1px 2px #151515; | |
4004 | +} | |
4005 | + | |
4006 | +[data-theme='dark'] .ant-spin-container::after { | |
4007 | + background: #151515; | |
4008 | +} | |
4009 | + | |
4010 | +[data-theme='dark'] .ant-spin-tip { | |
4011 | + color: #8b949e; | |
4012 | +} | |
4013 | + | |
4014 | +[data-theme='dark'] .ant-spin-dot-item { | |
4015 | + background-color: #0960bd; | |
4016 | +} | |
4017 | + | |
4018 | +@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |
4019 | + [data-theme='dark'] { | |
4020 | + background: #151515; | |
4021 | + } | |
4022 | +} | |
4023 | + | |
4024 | +[data-theme='dark'] .ant-select-single.ant-select-open .ant-select-selection-item { | |
4025 | + color: rgb(255 255 255 / 30%); | |
4026 | +} | |
4027 | + | |
4028 | +[data-theme='dark'] .ant-select-disabled.ant-select-multiple .ant-select-selector { | |
4029 | + background: #151515; | |
4030 | +} | |
4031 | + | |
4032 | +[data-theme='dark'] .ant-select-multiple .ant-select-selection-item { | |
4033 | + border: 1px solid #303030; | |
4034 | + background: rgb(255 255 255 / 8%); | |
4035 | +} | |
4036 | + | |
4037 | +[data-theme='dark'] .ant-select-disabled.ant-select-multiple .ant-select-selection-item { | |
4038 | + border-color: #1f1f1f; | |
4039 | + color: #595959; | |
4040 | +} | |
4041 | + | |
4042 | +[data-theme='dark'] .ant-select-multiple .ant-select-selection-item-remove { | |
4043 | + color: #8b949e; | |
4044 | +} | |
4045 | + | |
4046 | +[data-theme='dark'] .ant-select-multiple .ant-select-selection-item-remove:hover { | |
4047 | + color: rgb(255 255 255 / 75%); | |
4048 | +} | |
4049 | + | |
4050 | +[data-theme='dark'] .ant-select { | |
4051 | + color: #c9d1d9; | |
4052 | +} | |
4053 | + | |
4054 | +[data-theme='dark'] .ant-select:not(.ant-select-customize-input) .ant-select-selector { | |
4055 | + border: 1px solid #303030; | |
4056 | + background-color: transparent; | |
4057 | +} | |
4058 | + | |
4059 | +[data-theme='dark'] | |
4060 | + .ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) | |
4061 | + .ant-select-selector { | |
4062 | + border-color: #0960bd; | |
4063 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
4064 | +} | |
4065 | + | |
4066 | +[data-theme='dark'] | |
4067 | + .ant-select-disabled.ant-select:not(.ant-select-customize-input) | |
4068 | + .ant-select-selector { | |
4069 | + background: rgb(255 255 255 / 8%); | |
4070 | + color: rgb(255 255 255 / 30%); | |
4071 | +} | |
4072 | + | |
4073 | +[data-theme='dark'] | |
4074 | + .ant-select-multiple.ant-select-disabled.ant-select:not(.ant-select-customize-input) | |
4075 | + .ant-select-selector { | |
4076 | + background: #151515; | |
4077 | +} | |
4078 | + | |
4079 | +[data-theme='dark'] | |
4080 | + .ant-select:not(.ant-select-customize-input) | |
4081 | + .ant-select-selector | |
4082 | + .ant-select-selection-search-input { | |
4083 | + background: 0 0; | |
4084 | +} | |
4085 | + | |
4086 | +[data-theme='dark'] .ant-select:not(.ant-select-disabled):hover .ant-select-selector { | |
4087 | + border-color: #2a7dc9; | |
4088 | +} | |
4089 | + | |
4090 | +[data-theme='dark'] .ant-select-selection-placeholder { | |
4091 | + color: rgb(255 255 255 / 30%); | |
4092 | +} | |
4093 | + | |
4094 | +[data-theme='dark'] .ant-select-arrow { | |
4095 | + color: rgb(255 255 255 / 30%); | |
4096 | +} | |
4097 | + | |
4098 | +[data-theme='dark'] .ant-select-clear { | |
4099 | + background: #151515; | |
4100 | + color: rgb(255 255 255 / 30%); | |
4101 | +} | |
4102 | + | |
4103 | +[data-theme='dark'] .ant-select-clear:hover { | |
4104 | + color: #8b949e; | |
4105 | +} | |
4106 | + | |
4107 | +[data-theme='dark'] .ant-select-dropdown { | |
4108 | + background-color: #1f1f1f; | |
4109 | + color: #c9d1d9; | |
4110 | +} | |
4111 | + | |
4112 | +[data-theme='dark'] .ant-select-dropdown-empty { | |
4113 | + color: rgb(255 255 255 / 30%); | |
4114 | +} | |
4115 | + | |
4116 | +[data-theme='dark'] .ant-select-item-empty { | |
4117 | + color: #c9d1d9; | |
4118 | + color: rgb(255 255 255 / 30%); | |
4119 | +} | |
4120 | + | |
4121 | +[data-theme='dark'] .ant-select-item { | |
4122 | + color: #c9d1d9; | |
4123 | +} | |
4124 | + | |
4125 | +[data-theme='dark'] .ant-select-item-group { | |
4126 | + color: #8b949e; | |
4127 | +} | |
4128 | + | |
4129 | +[data-theme='dark'] .ant-select-item-option-active:not(.ant-select-item-option-disabled) { | |
4130 | + background-color: rgb(255 255 255 / 8%); | |
4131 | +} | |
4132 | + | |
4133 | +[data-theme='dark'] .ant-select-item-option-selected:not(.ant-select-item-option-disabled) { | |
4134 | + background-color: rgb(255 255 255 / 8%); | |
4135 | + color: #c9d1d9; | |
4136 | +} | |
4137 | + | |
4138 | +[data-theme='dark'] | |
4139 | + .ant-select-item-option-selected:not(.ant-select-item-option-disabled) | |
4140 | + .ant-select-item-option-state { | |
4141 | + color: #0960bd; | |
4142 | +} | |
4143 | + | |
4144 | +[data-theme='dark'] .ant-select-item-option-disabled { | |
4145 | + color: rgb(255 255 255 / 30%); | |
4146 | +} | |
4147 | + | |
4148 | +[data-theme='dark'] .ant-select-item-option-disabled.ant-select-item-option-selected { | |
4149 | + background-color: #151515; | |
4150 | +} | |
4151 | + | |
4152 | +[data-theme='dark'] .ant-select-borderless .ant-select-selector { | |
4153 | + border-color: transparent !important; | |
4154 | + background-color: transparent !important; | |
4155 | +} | |
4156 | + | |
4157 | +[data-theme='dark'] .ant-switch { | |
4158 | + background-color: rgb(255 255 255 / 30%); | |
4159 | + color: #c9d1d9; | |
4160 | +} | |
4161 | + | |
4162 | +[data-theme='dark'] .ant-switch:focus { | |
4163 | + box-shadow: 0 0 0 2px rgb(255 255 255 / 10%); | |
4164 | +} | |
4165 | + | |
4166 | +[data-theme='dark'] .ant-switch-checked:focus { | |
4167 | + box-shadow: 0 0 0 2px rgb(255 255 255 / 8%); | |
4168 | +} | |
4169 | + | |
4170 | +[data-theme='dark'] .ant-switch-checked { | |
4171 | + background-color: #0960bd; | |
4172 | +} | |
4173 | + | |
4174 | +[data-theme='dark'] .ant-switch-inner { | |
4175 | + color: #fff; | |
4176 | +} | |
4177 | + | |
4178 | +[data-theme='dark'] .ant-switch-handle::before { | |
4179 | + background-color: #fff; | |
4180 | + box-shadow: 0 2px 4px 0 rgb(0 35 11 / 20%); | |
4181 | +} | |
4182 | + | |
4183 | +[data-theme='dark'] .ant-switch-loading-icon.anticon { | |
4184 | + color: rgb(0 0 0 / 65%); | |
4185 | +} | |
4186 | + | |
4187 | +[data-theme='dark'] .ant-switch-checked .ant-switch-loading-icon { | |
4188 | + color: #0960bd; | |
4189 | +} | |
4190 | + | |
4191 | +[data-theme='dark'] .ant-select-auto-complete { | |
4192 | + color: #c9d1d9; | |
4193 | +} | |
4194 | + | |
4195 | +[data-theme='dark'] .ant-cascader-checkbox { | |
4196 | + color: #c9d1d9; | |
4197 | +} | |
4198 | + | |
4199 | +[data-theme='dark'] .ant-cascader-checkbox-input:focus + .ant-cascader-checkbox-inner, | |
4200 | +[data-theme='dark'] .ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-inner, | |
4201 | +[data-theme='dark'] .ant-cascader-checkbox:hover .ant-cascader-checkbox-inner { | |
4202 | + border-color: #0960bd; | |
4203 | +} | |
4204 | + | |
4205 | +[data-theme='dark'] .ant-cascader-checkbox-checked::after { | |
4206 | + border: 1px solid #0960bd; | |
4207 | +} | |
4208 | + | |
4209 | +[data-theme='dark'] .ant-cascader-checkbox-inner { | |
4210 | + border: 1px solid #303030; | |
4211 | + background-color: transparent; | |
4212 | +} | |
4213 | + | |
4214 | +[data-theme='dark'] .ant-cascader-checkbox-inner::after { | |
4215 | + border: 2px solid #fff; | |
4216 | +} | |
4217 | + | |
4218 | +[data-theme='dark'] .ant-cascader-checkbox-checked .ant-cascader-checkbox-inner::after { | |
4219 | + border: 2px solid #fff; | |
4220 | +} | |
4221 | + | |
4222 | +[data-theme='dark'] .ant-cascader-checkbox-checked .ant-cascader-checkbox-inner { | |
4223 | + border-color: #0960bd; | |
4224 | + background-color: #0960bd; | |
4225 | +} | |
4226 | + | |
4227 | +[data-theme='dark'] | |
4228 | + .ant-cascader-checkbox-disabled.ant-cascader-checkbox-checked | |
4229 | + .ant-cascader-checkbox-inner::after { | |
4230 | + border-color: rgb(255 255 255 / 30%); | |
4231 | +} | |
4232 | + | |
4233 | +[data-theme='dark'] .ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner { | |
4234 | + border-color: #303030 !important; | |
4235 | + background-color: rgb(255 255 255 / 8%); | |
4236 | +} | |
4237 | + | |
4238 | +[data-theme='dark'] .ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after { | |
4239 | + border-color: rgb(255 255 255 / 8%); | |
4240 | +} | |
4241 | + | |
4242 | +[data-theme='dark'] .ant-cascader-checkbox-disabled + span { | |
4243 | + color: rgb(255 255 255 / 30%); | |
4244 | +} | |
4245 | + | |
4246 | +[data-theme='dark'] .ant-cascader-checkbox-wrapper { | |
4247 | + color: #c9d1d9; | |
4248 | +} | |
4249 | + | |
4250 | +[data-theme='dark'] .ant-cascader-checkbox-group { | |
4251 | + color: #c9d1d9; | |
4252 | +} | |
4253 | + | |
4254 | +[data-theme='dark'] .ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner { | |
4255 | + border-color: #303030; | |
4256 | + background-color: transparent; | |
4257 | +} | |
4258 | + | |
4259 | +[data-theme='dark'] .ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner::after { | |
4260 | + background-color: #0960bd; | |
4261 | +} | |
4262 | + | |
4263 | +[data-theme='dark'] | |
4264 | + .ant-cascader-checkbox-indeterminate.ant-cascader-checkbox-disabled | |
4265 | + .ant-cascader-checkbox-inner::after { | |
4266 | + border-color: rgb(255 255 255 / 30%); | |
4267 | + background-color: rgb(255 255 255 / 30%); | |
4268 | +} | |
4269 | + | |
4270 | +[data-theme='dark'] .ant-cascader-menu { | |
4271 | + border-right: 1px solid #303030; | |
4272 | +} | |
4273 | + | |
4274 | +[data-theme='dark'] .ant-cascader-menu-item:hover { | |
4275 | + background: rgb(255 255 255 / 8%); | |
4276 | +} | |
4277 | + | |
4278 | +[data-theme='dark'] .ant-cascader-menu-item-disabled { | |
4279 | + color: rgb(255 255 255 / 30%); | |
4280 | +} | |
4281 | + | |
4282 | +[data-theme='dark'] .ant-cascader-menu-item-disabled:hover { | |
4283 | + background: 0 0; | |
4284 | +} | |
4285 | + | |
4286 | +[data-theme='dark'] .ant-cascader-menu-empty .ant-cascader-menu-item { | |
4287 | + color: rgb(255 255 255 / 30%); | |
4288 | +} | |
4289 | + | |
4290 | +[data-theme='dark'] .ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled), | |
4291 | +[data-theme='dark'] .ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover { | |
4292 | + background-color: rgb(255 255 255 / 8%); | |
4293 | +} | |
4294 | + | |
4295 | +[data-theme='dark'] .ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon, | |
4296 | +[data-theme='dark'] .ant-cascader-menu-item-loading-icon { | |
4297 | + color: #8b949e; | |
4298 | +} | |
4299 | + | |
4300 | +[data-theme='dark'] | |
4301 | + .ant-cascader-menu-item-disabled.ant-cascader-menu-item-expand | |
4302 | + .ant-cascader-menu-item-expand-icon, | |
4303 | +[data-theme='dark'] .ant-cascader-menu-item-disabled.ant-cascader-menu-item-loading-icon { | |
4304 | + color: rgb(255 255 255 / 30%); | |
4305 | +} | |
4306 | + | |
4307 | +[data-theme='dark'] .ant-cascader-menu-item-keyword { | |
4308 | + color: #a71d25; | |
4309 | +} | |
4310 | + | |
4311 | +[data-theme='dark'] .ant-back-top { | |
4312 | + color: #c9d1d9; | |
4313 | +} | |
4314 | + | |
4315 | +[data-theme='dark'] .ant-back-top-content { | |
4316 | + background-color: #8b949e; | |
4317 | + color: #fff; | |
4318 | +} | |
4319 | + | |
4320 | +[data-theme='dark'] .ant-back-top-content:hover { | |
4321 | + background-color: #c9d1d9; | |
4322 | +} | |
4323 | + | |
4324 | +[data-theme='dark'] .ant-modal { | |
4325 | + color: #c9d1d9; | |
4326 | +} | |
4327 | + | |
4328 | +[data-theme='dark'] .ant-modal-mask { | |
4329 | + background-color: rgb(0 0 0 / 45%); | |
4330 | +} | |
4331 | + | |
4332 | +[data-theme='dark'] .ant-modal-title { | |
4333 | + color: rgb(255 255 255 / 65%); | |
4334 | +} | |
4335 | + | |
4336 | +[data-theme='dark'] .ant-modal-content { | |
4337 | + background-color: #1f1f1f; | |
4338 | + box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%); | |
4339 | +} | |
4340 | + | |
4341 | +[data-theme='dark'] .ant-modal-close { | |
4342 | + background: 0 0; | |
4343 | + color: #8b949e; | |
4344 | +} | |
4345 | + | |
4346 | +[data-theme='dark'] .ant-modal-close:focus, | |
4347 | +[data-theme='dark'] .ant-modal-close:hover { | |
4348 | + color: rgb(255 255 255 / 75%); | |
4349 | +} | |
4350 | + | |
4351 | +[data-theme='dark'] .ant-modal-header { | |
4352 | + border-bottom: 1px solid #303030; | |
4353 | + background: #1f1f1f; | |
4354 | + color: #c9d1d9; | |
4355 | +} | |
4356 | + | |
4357 | +[data-theme='dark'] .ant-modal-footer { | |
4358 | + border-top: 1px solid #303030; | |
4359 | + background: 0 0; | |
4360 | +} | |
4361 | + | |
4362 | +[data-theme='dark'] .ant-modal-confirm-body .ant-modal-confirm-title { | |
4363 | + color: rgb(255 255 255 / 65%); | |
4364 | +} | |
4365 | + | |
4366 | +[data-theme='dark'] .ant-modal-confirm-body .ant-modal-confirm-content { | |
4367 | + color: #c9d1d9; | |
4368 | +} | |
4369 | + | |
4370 | +[data-theme='dark'] .ant-modal-confirm-error .ant-modal-confirm-body > .anticon { | |
4371 | + color: #ed6f6f; | |
4372 | +} | |
4373 | + | |
4374 | +[data-theme='dark'] .ant-modal-confirm-confirm .ant-modal-confirm-body > .anticon, | |
4375 | +[data-theme='dark'] .ant-modal-confirm-warning .ant-modal-confirm-body > .anticon { | |
4376 | + color: #efbd47; | |
4377 | +} | |
4378 | + | |
4379 | +[data-theme='dark'] .ant-modal-confirm-success .ant-modal-confirm-body > .anticon { | |
4380 | + color: #55d187; | |
4381 | +} | |
4382 | + | |
4383 | +[data-theme='dark'] .ant-modal .ant-anchor-wrapper, | |
4384 | +[data-theme='dark'] .ant-modal .ant-card, | |
4385 | +[data-theme='dark'] .ant-modal .ant-collapse-content, | |
4386 | +[data-theme='dark'] .ant-modal .ant-picker-clear, | |
4387 | +[data-theme='dark'] .ant-modal .ant-slider-handle, | |
4388 | +[data-theme='dark'] .ant-modal .ant-timeline-item-head { | |
4389 | + background-color: #1f1f1f; | |
4390 | +} | |
4391 | + | |
4392 | +[data-theme='dark'] .ant-modal .ant-transfer-list-header { | |
4393 | + border-bottom: 1px solid #3a3a3a; | |
4394 | + background: #1f1f1f; | |
4395 | +} | |
4396 | + | |
4397 | +[data-theme='dark'] | |
4398 | + .ant-modal | |
4399 | + .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover { | |
4400 | + background-color: rgb(255 255 255 / 8%); | |
4401 | +} | |
4402 | + | |
4403 | +[data-theme='dark'] .ant-modal tr.ant-table-expanded-row:hover > td, | |
4404 | +[data-theme='dark'] .ant-modal tr.ant-table-expanded-row > td { | |
4405 | + background: #272727; | |
4406 | +} | |
4407 | + | |
4408 | +[data-theme='dark'] .ant-modal .ant-table.ant-table-small thead > tr > th { | |
4409 | + border-bottom: 1px solid #3a3a3a; | |
4410 | + background-color: #1f1f1f; | |
4411 | +} | |
4412 | + | |
4413 | +[data-theme='dark'] .ant-modal .ant-table { | |
4414 | + background-color: #1f1f1f; | |
4415 | +} | |
4416 | + | |
4417 | +[data-theme='dark'] .ant-modal .ant-table .ant-table-row-expand-icon { | |
4418 | + border: 1px solid #3a3a3a; | |
4419 | +} | |
4420 | + | |
4421 | +[data-theme='dark'] .ant-modal .ant-table tfoot > tr > td, | |
4422 | +[data-theme='dark'] .ant-modal .ant-table tfoot > tr > th { | |
4423 | + border-bottom: 1px solid #3a3a3a; | |
4424 | +} | |
4425 | + | |
4426 | +[data-theme='dark'] .ant-modal .ant-table thead > tr > th { | |
4427 | + border-bottom: 1px solid #3a3a3a; | |
4428 | + background-color: #272727; | |
4429 | +} | |
4430 | + | |
4431 | +[data-theme='dark'] .ant-modal .ant-table tbody > tr > td { | |
4432 | + border-bottom: 1px solid #3a3a3a; | |
4433 | +} | |
4434 | + | |
4435 | +[data-theme='dark'] .ant-modal .ant-table tbody > tr > td.ant-table-cell-fix-left, | |
4436 | +[data-theme='dark'] .ant-modal .ant-table tbody > tr > td.ant-table-cell-fix-right { | |
4437 | + background-color: #1f1f1f; | |
4438 | +} | |
4439 | + | |
4440 | +[data-theme='dark'] .ant-modal .ant-table tbody > tr.ant-table-row:hover > td { | |
4441 | + background: #303030; | |
4442 | +} | |
4443 | + | |
4444 | +[data-theme='dark'] .ant-modal .ant-table.ant-table-bordered .ant-table-title { | |
4445 | + border: 1px solid #3a3a3a; | |
4446 | +} | |
4447 | + | |
4448 | +[data-theme='dark'] .ant-modal .ant-table.ant-table-bordered tbody > tr > td, | |
4449 | +[data-theme='dark'] .ant-modal .ant-table.ant-table-bordered tfoot > tr > td, | |
4450 | +[data-theme='dark'] .ant-modal .ant-table.ant-table-bordered tfoot > tr > th, | |
4451 | +[data-theme='dark'] .ant-modal .ant-table.ant-table-bordered thead > tr > th { | |
4452 | + border-right: 1px solid #3a3a3a; | |
4453 | +} | |
4454 | + | |
4455 | +[data-theme='dark'] | |
4456 | + .ant-modal | |
4457 | + .ant-table.ant-table-bordered | |
4458 | + .ant-table-cell-fix-right-first::after { | |
4459 | + border-right: 1px solid #3a3a3a; | |
4460 | +} | |
4461 | + | |
4462 | +[data-theme='dark'] | |
4463 | + .ant-modal | |
4464 | + .ant-table.ant-table-bordered | |
4465 | + table | |
4466 | + thead | |
4467 | + > tr:not(:last-child) | |
4468 | + > th { | |
4469 | + border-bottom: 1px solid #303030; | |
4470 | +} | |
4471 | + | |
4472 | +[data-theme='dark'] .ant-modal .ant-table.ant-table-bordered .ant-table-container { | |
4473 | + border: 1px solid #3a3a3a; | |
4474 | +} | |
4475 | + | |
4476 | +[data-theme='dark'] .ant-modal .ant-table.ant-table-bordered .ant-table-expanded-row-fixed::after { | |
4477 | + border-right: 1px solid #3a3a3a; | |
4478 | +} | |
4479 | + | |
4480 | +[data-theme='dark'] .ant-modal .ant-table.ant-table-bordered .ant-table-footer { | |
4481 | + border: 1px solid #3a3a3a; | |
4482 | +} | |
4483 | + | |
4484 | +[data-theme='dark'] .ant-modal .ant-table .ant-table-filter-trigger-container-open { | |
4485 | + background-color: #525252; | |
4486 | +} | |
4487 | + | |
4488 | +[data-theme='dark'] .ant-modal .ant-picker-calendar-full { | |
4489 | + background-color: #1f1f1f; | |
4490 | +} | |
4491 | + | |
4492 | +[data-theme='dark'] .ant-modal .ant-picker-calendar-full .ant-picker-panel { | |
4493 | + background-color: #1f1f1f; | |
4494 | +} | |
4495 | + | |
4496 | +[data-theme='dark'] | |
4497 | + .ant-modal | |
4498 | + .ant-picker-calendar-full | |
4499 | + .ant-picker-panel | |
4500 | + .ant-picker-calendar-date { | |
4501 | + border-top: 2px solid #3a3a3a; | |
4502 | +} | |
4503 | + | |
4504 | +[data-theme='dark'] .ant-modal .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active { | |
4505 | + border-bottom: 1px solid #1f1f1f; | |
4506 | + background-color: #1f1f1f; | |
4507 | +} | |
4508 | + | |
4509 | +[data-theme='dark'] .ant-modal .ant-badge-count { | |
4510 | + box-shadow: 0 0 0 1px #1f1f1f; | |
4511 | +} | |
4512 | + | |
4513 | +[data-theme='dark'] .ant-modal .ant-tree-show-line .ant-tree-switcher { | |
4514 | + background: #1f1f1f; | |
4515 | +} | |
4516 | + | |
4517 | +[data-theme='dark'] .ant-alert { | |
4518 | + color: #c9d1d9; | |
4519 | +} | |
4520 | + | |
4521 | +[data-theme='dark'] .ant-alert-success { | |
4522 | + border: 1px solid #274916; | |
4523 | + background-color: #162312; | |
4524 | +} | |
4525 | + | |
4526 | +[data-theme='dark'] .ant-alert-success .ant-alert-icon { | |
4527 | + color: #49aa19; | |
4528 | +} | |
4529 | + | |
4530 | +[data-theme='dark'] .ant-alert-info { | |
4531 | + border: 1px solid #153450; | |
4532 | + background-color: #111b26; | |
4533 | +} | |
4534 | + | |
4535 | +[data-theme='dark'] .ant-alert-info .ant-alert-icon { | |
4536 | + color: #177ddc; | |
4537 | +} | |
4538 | + | |
4539 | +[data-theme='dark'] .ant-alert-warning { | |
4540 | + border: 1px solid #594214; | |
4541 | + background-color: #2b2111; | |
4542 | +} | |
4543 | + | |
4544 | +[data-theme='dark'] .ant-alert-warning .ant-alert-icon { | |
4545 | + color: #d89614; | |
4546 | +} | |
4547 | + | |
4548 | +[data-theme='dark'] .ant-alert-error { | |
4549 | + border: 1px solid #58181c; | |
4550 | + background-color: #2a1215; | |
4551 | +} | |
4552 | + | |
4553 | +[data-theme='dark'] .ant-alert-error .ant-alert-icon { | |
4554 | + color: #a61d24; | |
4555 | +} | |
4556 | + | |
4557 | +[data-theme='dark'] .ant-alert-close-icon { | |
4558 | + background-color: transparent; | |
4559 | +} | |
4560 | + | |
4561 | +[data-theme='dark'] .ant-alert-close-icon .anticon-close { | |
4562 | + color: #8b949e; | |
4563 | +} | |
4564 | + | |
4565 | +[data-theme='dark'] .ant-alert-close-icon .anticon-close:hover { | |
4566 | + color: rgb(255 255 255 / 75%); | |
4567 | +} | |
4568 | + | |
4569 | +[data-theme='dark'] .ant-alert-close-text { | |
4570 | + color: #8b949e; | |
4571 | +} | |
4572 | + | |
4573 | +[data-theme='dark'] .ant-alert-close-text:hover { | |
4574 | + color: rgb(255 255 255 / 75%); | |
4575 | +} | |
4576 | + | |
4577 | +[data-theme='dark'] .ant-alert-with-description .ant-alert-message { | |
4578 | + color: rgb(255 255 255 / 65%); | |
4579 | +} | |
4580 | + | |
4581 | +[data-theme='dark'] .ant-alert-message { | |
4582 | + color: rgb(255 255 255 / 65%); | |
4583 | +} | |
4584 | + | |
4585 | +[data-theme='dark'] .ant-steps { | |
4586 | + color: #c9d1d9; | |
4587 | +} | |
4588 | + | |
4589 | +[data-theme='dark'] .ant-steps-item-icon { | |
4590 | + border: 1px solid rgb(255 255 255 / 30%); | |
4591 | +} | |
4592 | + | |
4593 | +[data-theme='dark'] .ant-steps-item-icon .ant-steps-icon { | |
4594 | + color: #0960bd; | |
4595 | +} | |
4596 | + | |
4597 | +[data-theme='dark'] .ant-steps-item-tail::after { | |
4598 | + background: #303030; | |
4599 | +} | |
4600 | + | |
4601 | +[data-theme='dark'] .ant-steps-item-title { | |
4602 | + color: #c9d1d9; | |
4603 | +} | |
4604 | + | |
4605 | +[data-theme='dark'] .ant-steps-item-title::after { | |
4606 | + background: #303030; | |
4607 | +} | |
4608 | + | |
4609 | +[data-theme='dark'] .ant-steps-item-subtitle { | |
4610 | + color: #8b949e; | |
4611 | +} | |
4612 | + | |
4613 | +[data-theme='dark'] .ant-steps-item-description { | |
4614 | + color: #8b949e; | |
4615 | +} | |
4616 | + | |
4617 | +[data-theme='dark'] .ant-steps-item-wait .ant-steps-item-icon { | |
4618 | + border-color: rgb(255 255 255 / 30%); | |
4619 | + background-color: transparent; | |
4620 | +} | |
4621 | + | |
4622 | +[data-theme='dark'] .ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon { | |
4623 | + color: rgb(255 255 255 / 30%); | |
4624 | +} | |
4625 | + | |
4626 | +[data-theme='dark'] | |
4627 | + .ant-steps-item-wait | |
4628 | + .ant-steps-item-icon | |
4629 | + > .ant-steps-icon | |
4630 | + .ant-steps-icon-dot { | |
4631 | + background: rgb(255 255 255 / 30%); | |
4632 | +} | |
4633 | + | |
4634 | +[data-theme='dark'] | |
4635 | + .ant-steps-item-wait | |
4636 | + > .ant-steps-item-container | |
4637 | + > .ant-steps-item-content | |
4638 | + > .ant-steps-item-title { | |
4639 | + color: #8b949e; | |
4640 | +} | |
4641 | + | |
4642 | +[data-theme='dark'] | |
4643 | + .ant-steps-item-wait | |
4644 | + > .ant-steps-item-container | |
4645 | + > .ant-steps-item-content | |
4646 | + > .ant-steps-item-title::after { | |
4647 | + background-color: #303030; | |
4648 | +} | |
4649 | + | |
4650 | +[data-theme='dark'] | |
4651 | + .ant-steps-item-wait | |
4652 | + > .ant-steps-item-container | |
4653 | + > .ant-steps-item-content | |
4654 | + > .ant-steps-item-description { | |
4655 | + color: #8b949e; | |
4656 | +} | |
4657 | + | |
4658 | +[data-theme='dark'] .ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-tail::after { | |
4659 | + background-color: #303030; | |
4660 | +} | |
4661 | + | |
4662 | +[data-theme='dark'] .ant-steps-item-process .ant-steps-item-icon { | |
4663 | + border-color: #0960bd; | |
4664 | + background-color: transparent; | |
4665 | +} | |
4666 | + | |
4667 | +[data-theme='dark'] .ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon { | |
4668 | + color: #0960bd; | |
4669 | +} | |
4670 | + | |
4671 | +[data-theme='dark'] | |
4672 | + .ant-steps-item-process | |
4673 | + .ant-steps-item-icon | |
4674 | + > .ant-steps-icon | |
4675 | + .ant-steps-icon-dot { | |
4676 | + background: #0960bd; | |
4677 | +} | |
4678 | + | |
4679 | +[data-theme='dark'] | |
4680 | + .ant-steps-item-process | |
4681 | + > .ant-steps-item-container | |
4682 | + > .ant-steps-item-content | |
4683 | + > .ant-steps-item-title { | |
4684 | + color: rgb(255 255 255 / 65%); | |
4685 | +} | |
4686 | + | |
4687 | +[data-theme='dark'] | |
4688 | + .ant-steps-item-process | |
4689 | + > .ant-steps-item-container | |
4690 | + > .ant-steps-item-content | |
4691 | + > .ant-steps-item-title::after { | |
4692 | + background-color: #303030; | |
4693 | +} | |
4694 | + | |
4695 | +[data-theme='dark'] | |
4696 | + .ant-steps-item-process | |
4697 | + > .ant-steps-item-container | |
4698 | + > .ant-steps-item-content | |
4699 | + > .ant-steps-item-description { | |
4700 | + color: #c9d1d9; | |
4701 | +} | |
4702 | + | |
4703 | +[data-theme='dark'] | |
4704 | + .ant-steps-item-process | |
4705 | + > .ant-steps-item-container | |
4706 | + > .ant-steps-item-tail::after { | |
4707 | + background-color: #303030; | |
4708 | +} | |
4709 | + | |
4710 | +[data-theme='dark'] .ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-icon { | |
4711 | + background: #0960bd; | |
4712 | +} | |
4713 | + | |
4714 | +[data-theme='dark'] | |
4715 | + .ant-steps-item-process | |
4716 | + > .ant-steps-item-container | |
4717 | + > .ant-steps-item-icon | |
4718 | + .ant-steps-icon { | |
4719 | + color: #fff; | |
4720 | +} | |
4721 | + | |
4722 | +[data-theme='dark'] .ant-steps-item-finish .ant-steps-item-icon { | |
4723 | + border-color: #0960bd; | |
4724 | + background-color: transparent; | |
4725 | +} | |
4726 | + | |
4727 | +[data-theme='dark'] .ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon { | |
4728 | + color: #0960bd; | |
4729 | +} | |
4730 | + | |
4731 | +[data-theme='dark'] | |
4732 | + .ant-steps-item-finish | |
4733 | + .ant-steps-item-icon | |
4734 | + > .ant-steps-icon | |
4735 | + .ant-steps-icon-dot { | |
4736 | + background: #0960bd; | |
4737 | +} | |
4738 | + | |
4739 | +[data-theme='dark'] | |
4740 | + .ant-steps-item-finish | |
4741 | + > .ant-steps-item-container | |
4742 | + > .ant-steps-item-content | |
4743 | + > .ant-steps-item-title { | |
4744 | + color: #c9d1d9; | |
4745 | +} | |
4746 | + | |
4747 | +[data-theme='dark'] | |
4748 | + .ant-steps-item-finish | |
4749 | + > .ant-steps-item-container | |
4750 | + > .ant-steps-item-content | |
4751 | + > .ant-steps-item-title::after { | |
4752 | + background-color: #0960bd; | |
4753 | +} | |
4754 | + | |
4755 | +[data-theme='dark'] | |
4756 | + .ant-steps-item-finish | |
4757 | + > .ant-steps-item-container | |
4758 | + > .ant-steps-item-content | |
4759 | + > .ant-steps-item-description { | |
4760 | + color: #8b949e; | |
4761 | +} | |
4762 | + | |
4763 | +[data-theme='dark'] | |
4764 | + .ant-steps-item-finish | |
4765 | + > .ant-steps-item-container | |
4766 | + > .ant-steps-item-tail::after { | |
4767 | + background-color: #0960bd; | |
4768 | +} | |
4769 | + | |
4770 | +[data-theme='dark'] .ant-steps-item-error .ant-steps-item-icon { | |
4771 | + border-color: #ed6f6f; | |
4772 | + background-color: transparent; | |
4773 | +} | |
4774 | + | |
4775 | +[data-theme='dark'] .ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon { | |
4776 | + color: #ed6f6f; | |
4777 | +} | |
4778 | + | |
4779 | +[data-theme='dark'] | |
4780 | + .ant-steps-item-error | |
4781 | + .ant-steps-item-icon | |
4782 | + > .ant-steps-icon | |
4783 | + .ant-steps-icon-dot { | |
4784 | + background: #ed6f6f; | |
4785 | +} | |
4786 | + | |
4787 | +[data-theme='dark'] | |
4788 | + .ant-steps-item-error | |
4789 | + > .ant-steps-item-container | |
4790 | + > .ant-steps-item-content | |
4791 | + > .ant-steps-item-title { | |
4792 | + color: #ed6f6f; | |
4793 | +} | |
4794 | + | |
4795 | +[data-theme='dark'] | |
4796 | + .ant-steps-item-error | |
4797 | + > .ant-steps-item-container | |
4798 | + > .ant-steps-item-content | |
4799 | + > .ant-steps-item-title::after { | |
4800 | + background-color: #303030; | |
4801 | +} | |
4802 | + | |
4803 | +[data-theme='dark'] | |
4804 | + .ant-steps-item-error | |
4805 | + > .ant-steps-item-container | |
4806 | + > .ant-steps-item-content | |
4807 | + > .ant-steps-item-description { | |
4808 | + color: #ed6f6f; | |
4809 | +} | |
4810 | + | |
4811 | +[data-theme='dark'] | |
4812 | + .ant-steps-item-error | |
4813 | + > .ant-steps-item-container | |
4814 | + > .ant-steps-item-tail::after { | |
4815 | + background-color: #303030; | |
4816 | +} | |
4817 | + | |
4818 | +[data-theme='dark'] .ant-steps-item.ant-steps-next-error .ant-steps-item-title::after { | |
4819 | + background: #ed6f6f; | |
4820 | +} | |
4821 | + | |
4822 | +[data-theme='dark'] | |
4823 | + .ant-steps | |
4824 | + .ant-steps-item:not(.ant-steps-item-active) | |
4825 | + > .ant-steps-item-container[role='button']:hover | |
4826 | + .ant-steps-item-description, | |
4827 | +[data-theme='dark'] | |
4828 | + .ant-steps | |
4829 | + .ant-steps-item:not(.ant-steps-item-active) | |
4830 | + > .ant-steps-item-container[role='button']:hover | |
4831 | + .ant-steps-item-subtitle, | |
4832 | +[data-theme='dark'] | |
4833 | + .ant-steps | |
4834 | + .ant-steps-item:not(.ant-steps-item-active) | |
4835 | + > .ant-steps-item-container[role='button']:hover | |
4836 | + .ant-steps-item-title { | |
4837 | + color: #0960bd; | |
4838 | +} | |
4839 | + | |
4840 | +[data-theme='dark'] | |
4841 | + .ant-steps | |
4842 | + .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) | |
4843 | + > .ant-steps-item-container[role='button']:hover | |
4844 | + .ant-steps-item-icon { | |
4845 | + border-color: #0960bd; | |
4846 | +} | |
4847 | + | |
4848 | +[data-theme='dark'] | |
4849 | + .ant-steps | |
4850 | + .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) | |
4851 | + > .ant-steps-item-container[role='button']:hover | |
4852 | + .ant-steps-item-icon | |
4853 | + .ant-steps-icon { | |
4854 | + color: #0960bd; | |
4855 | +} | |
4856 | + | |
4857 | +[data-theme='dark'] | |
4858 | + .ant-steps-item-custom.ant-steps-item-process | |
4859 | + .ant-steps-item-icon | |
4860 | + > .ant-steps-icon { | |
4861 | + color: #0960bd; | |
4862 | +} | |
4863 | + | |
4864 | +[data-theme='dark'] .ant-steps-small .ant-steps-item-description { | |
4865 | + color: #8b949e; | |
4866 | +} | |
4867 | + | |
4868 | +[data-theme='dark'] .ant-steps-dot .ant-steps-item-icon, | |
4869 | +[data-theme='dark'] .ant-steps-dot.ant-steps-small .ant-steps-item-icon { | |
4870 | + background: 0 0; | |
4871 | +} | |
4872 | + | |
4873 | +[data-theme='dark'] .ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot::after, | |
4874 | +[data-theme='dark'] .ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot::after { | |
4875 | + background: rgb(0 0 0 / 0.1%); | |
4876 | +} | |
4877 | + | |
4878 | +[data-theme='dark'] .ant-steps-navigation .ant-steps-item::after { | |
4879 | + border: 1px solid rgb(255 255 255 / 20%); | |
4880 | +} | |
4881 | + | |
4882 | +[data-theme='dark'] .ant-steps-navigation .ant-steps-item::before { | |
4883 | + background-color: #0960bd; | |
4884 | +} | |
4885 | + | |
4886 | +[data-theme='dark'] .ant-breadcrumb { | |
4887 | + color: #8b949e; | |
4888 | +} | |
4889 | + | |
4890 | +[data-theme='dark'] .ant-breadcrumb a { | |
4891 | + color: #8b949e; | |
4892 | +} | |
4893 | + | |
4894 | +[data-theme='dark'] .ant-breadcrumb a:hover { | |
4895 | + color: #2a7dc9; | |
4896 | +} | |
4897 | + | |
4898 | +[data-theme='dark'] .ant-breadcrumb > span:last-child { | |
4899 | + color: #c9d1d9; | |
4900 | +} | |
4901 | + | |
4902 | +[data-theme='dark'] .ant-breadcrumb > span:last-child a { | |
4903 | + color: #c9d1d9; | |
4904 | +} | |
4905 | + | |
4906 | +[data-theme='dark'] .ant-breadcrumb-separator { | |
4907 | + color: #8b949e; | |
4908 | +} | |
4909 | + | |
4910 | +[data-theme='dark'] .ant-picker-calendar { | |
4911 | + background: #151515; | |
4912 | + color: #c9d1d9; | |
4913 | +} | |
4914 | + | |
4915 | +[data-theme='dark'] .ant-picker-calendar .ant-picker-panel { | |
4916 | + border-top: 1px solid #303030; | |
4917 | + background: #151515; | |
4918 | +} | |
4919 | + | |
4920 | +[data-theme='dark'] .ant-picker-calendar-full .ant-picker-panel { | |
4921 | + background: #151515; | |
4922 | +} | |
4923 | + | |
4924 | +[data-theme='dark'] | |
4925 | + .ant-picker-calendar-full | |
4926 | + .ant-picker-panel | |
4927 | + .ant-picker-cell:hover | |
4928 | + .ant-picker-calendar-date { | |
4929 | + background: rgb(255 255 255 / 8%); | |
4930 | +} | |
4931 | + | |
4932 | +[data-theme='dark'] | |
4933 | + .ant-picker-calendar-full | |
4934 | + .ant-picker-panel | |
4935 | + .ant-picker-cell-selected | |
4936 | + .ant-picker-calendar-date, | |
4937 | +[data-theme='dark'] | |
4938 | + .ant-picker-calendar-full | |
4939 | + .ant-picker-panel | |
4940 | + .ant-picker-cell-selected | |
4941 | + .ant-picker-calendar-date-today, | |
4942 | +[data-theme='dark'] | |
4943 | + .ant-picker-calendar-full | |
4944 | + .ant-picker-panel | |
4945 | + .ant-picker-cell-selected:hover | |
4946 | + .ant-picker-calendar-date, | |
4947 | +[data-theme='dark'] | |
4948 | + .ant-picker-calendar-full | |
4949 | + .ant-picker-panel | |
4950 | + .ant-picker-cell-selected:hover | |
4951 | + .ant-picker-calendar-date-today { | |
4952 | + background: #111b26; | |
4953 | +} | |
4954 | + | |
4955 | +[data-theme='dark'] | |
4956 | + .ant-picker-calendar-full | |
4957 | + .ant-picker-panel | |
4958 | + .ant-picker-cell-selected | |
4959 | + .ant-picker-calendar-date | |
4960 | + .ant-picker-calendar-date-value, | |
4961 | +[data-theme='dark'] | |
4962 | + .ant-picker-calendar-full | |
4963 | + .ant-picker-panel | |
4964 | + .ant-picker-cell-selected | |
4965 | + .ant-picker-calendar-date-today | |
4966 | + .ant-picker-calendar-date-value, | |
4967 | +[data-theme='dark'] | |
4968 | + .ant-picker-calendar-full | |
4969 | + .ant-picker-panel | |
4970 | + .ant-picker-cell-selected:hover | |
4971 | + .ant-picker-calendar-date | |
4972 | + .ant-picker-calendar-date-value, | |
4973 | +[data-theme='dark'] | |
4974 | + .ant-picker-calendar-full | |
4975 | + .ant-picker-panel | |
4976 | + .ant-picker-cell-selected:hover | |
4977 | + .ant-picker-calendar-date-today | |
4978 | + .ant-picker-calendar-date-value { | |
4979 | + color: #0960bd; | |
4980 | +} | |
4981 | + | |
4982 | +[data-theme='dark'] .ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date { | |
4983 | + border-top: 2px solid #303030; | |
4984 | +} | |
4985 | + | |
4986 | +[data-theme='dark'] .ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-content { | |
4987 | + color: #c9d1d9; | |
4988 | +} | |
4989 | + | |
4990 | +[data-theme='dark'] .ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-today { | |
4991 | + border-color: #0960bd; | |
4992 | +} | |
4993 | + | |
4994 | +[data-theme='dark'] | |
4995 | + .ant-picker-calendar-full | |
4996 | + .ant-picker-panel | |
4997 | + .ant-picker-calendar-date-today | |
4998 | + .ant-picker-calendar-date-value { | |
4999 | + color: #c9d1d9; | |
5000 | +} | |
5001 | + | |
5002 | +[data-theme='dark'] .ant-picker { | |
5003 | + border: 1px solid #303030; | |
5004 | + background: 0 0; | |
5005 | + color: #c9d1d9; | |
5006 | +} | |
5007 | + | |
5008 | +[data-theme='dark'] .ant-picker-focused, | |
5009 | +[data-theme='dark'] .ant-picker:hover { | |
5010 | + border-color: #2a7dc9; | |
5011 | +} | |
5012 | + | |
5013 | +[data-theme='dark'] .ant-picker-focused { | |
5014 | + border-color: #0960bd; | |
5015 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
5016 | +} | |
5017 | + | |
5018 | +[data-theme='dark'] .ant-picker.ant-picker-disabled { | |
5019 | + border-color: #303030; | |
5020 | + background: rgb(255 255 255 / 8%); | |
5021 | +} | |
5022 | + | |
5023 | +[data-theme='dark'] .ant-picker.ant-picker-disabled .ant-picker-suffix { | |
5024 | + color: rgb(255 255 255 / 30%); | |
5025 | +} | |
5026 | + | |
5027 | +[data-theme='dark'] .ant-picker.ant-picker-borderless { | |
5028 | + border-color: transparent !important; | |
5029 | + background-color: transparent !important; | |
5030 | +} | |
5031 | + | |
5032 | +[data-theme='dark'] .ant-picker-input > input { | |
5033 | + border: 1px solid #303030; | |
5034 | + background: 0 0; | |
5035 | + background-color: transparent; | |
5036 | + color: #c9d1d9; | |
5037 | +} | |
5038 | + | |
5039 | +[data-theme='dark'] .ant-picker-input > input::placeholder { | |
5040 | + color: rgb(255 255 255 / 30%); | |
5041 | +} | |
5042 | + | |
5043 | +[data-theme='dark'] .ant-picker-input > input:hover { | |
5044 | + border-color: #2a7dc9; | |
5045 | +} | |
5046 | + | |
5047 | +[data-theme='dark'] .ant-picker-input > input-focused, | |
5048 | +[data-theme='dark'] .ant-picker-input > input:focus { | |
5049 | + border-color: #0960bd; | |
5050 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
5051 | +} | |
5052 | + | |
5053 | +[data-theme='dark'] .ant-picker-input > input-disabled { | |
5054 | + border-color: #303030; | |
5055 | + background-color: rgb(255 255 255 / 8%); | |
5056 | + color: rgb(255 255 255 / 30%); | |
5057 | +} | |
5058 | + | |
5059 | +[data-theme='dark'] .ant-picker-input > input-disabled:hover { | |
5060 | + border-color: #303030; | |
5061 | +} | |
5062 | + | |
5063 | +[data-theme='dark'] .ant-picker-input > input[disabled] { | |
5064 | + border-color: #303030; | |
5065 | + background: 0 0; | |
5066 | + background-color: rgb(255 255 255 / 8%); | |
5067 | + color: rgb(255 255 255 / 30%); | |
5068 | +} | |
5069 | + | |
5070 | +[data-theme='dark'] .ant-picker-input > input[disabled]:hover { | |
5071 | + border-color: #303030; | |
5072 | +} | |
5073 | + | |
5074 | +[data-theme='dark'] .ant-picker-input > input-borderless, | |
5075 | +[data-theme='dark'] .ant-picker-input > input-borderless-disabled, | |
5076 | +[data-theme='dark'] .ant-picker-input > input-borderless-focused, | |
5077 | +[data-theme='dark'] .ant-picker-input > input-borderless:focus, | |
5078 | +[data-theme='dark'] .ant-picker-input > input-borderless:hover, | |
5079 | +[data-theme='dark'] .ant-picker-input > input-borderless[disabled] { | |
5080 | + background-color: transparent; | |
5081 | +} | |
5082 | + | |
5083 | +[data-theme='dark'] .ant-picker-input-placeholder > input { | |
5084 | + color: rgb(255 255 255 / 30%); | |
5085 | +} | |
5086 | + | |
5087 | +[data-theme='dark'] .ant-picker-suffix { | |
5088 | + color: rgb(255 255 255 / 30%); | |
5089 | +} | |
5090 | + | |
5091 | +[data-theme='dark'] .ant-picker-clear { | |
5092 | + background: #151515; | |
5093 | + color: rgb(255 255 255 / 30%); | |
5094 | +} | |
5095 | + | |
5096 | +[data-theme='dark'] .ant-picker-clear:hover { | |
5097 | + color: #8b949e; | |
5098 | +} | |
5099 | + | |
5100 | +[data-theme='dark'] .ant-picker-separator { | |
5101 | + color: rgb(255 255 255 / 30%); | |
5102 | +} | |
5103 | + | |
5104 | +[data-theme='dark'] .ant-picker-focused .ant-picker-separator { | |
5105 | + color: #8b949e; | |
5106 | +} | |
5107 | + | |
5108 | +[data-theme='dark'] .ant-picker-range .ant-picker-active-bar { | |
5109 | + background: #0960bd; | |
5110 | +} | |
5111 | + | |
5112 | +[data-theme='dark'] .ant-picker-dropdown { | |
5113 | + color: #c9d1d9; | |
5114 | +} | |
5115 | + | |
5116 | +[data-theme='dark'] .ant-picker-ranges .ant-picker-preset > .ant-tag-blue { | |
5117 | + border-color: #78b7e3; | |
5118 | + background: rgb(255 255 255 / 8%); | |
5119 | + color: #0960bd; | |
5120 | +} | |
5121 | + | |
5122 | +[data-theme='dark'] .ant-picker-range-arrow::after { | |
5123 | + border: 5px solid #303030; | |
5124 | + border-color: #1f1f1f; | |
5125 | +} | |
5126 | + | |
5127 | +[data-theme='dark'] .ant-picker-panel-container { | |
5128 | + background: #1f1f1f; | |
5129 | +} | |
5130 | + | |
5131 | +[data-theme='dark'] .ant-picker-panel-container .ant-picker-panel { | |
5132 | + background: 0 0; | |
5133 | +} | |
5134 | + | |
5135 | +[data-theme='dark'] .ant-picker-panel-container .ant-picker-panel-focused { | |
5136 | + border-color: #303030; | |
5137 | +} | |
5138 | + | |
5139 | +[data-theme='dark'] .ant-picker-panel { | |
5140 | + border: 1px solid #303030; | |
5141 | + background: #1f1f1f; | |
5142 | +} | |
5143 | + | |
5144 | +[data-theme='dark'] .ant-picker-panel-focused { | |
5145 | + border-color: #0960bd; | |
5146 | +} | |
5147 | + | |
5148 | +[data-theme='dark'] .ant-picker-header { | |
5149 | + border-bottom: 1px solid #303030; | |
5150 | + color: rgb(255 255 255 / 65%); | |
5151 | +} | |
5152 | + | |
5153 | +[data-theme='dark'] .ant-picker-header button { | |
5154 | + background: 0 0; | |
5155 | + color: rgb(255 255 255 / 30%); | |
5156 | +} | |
5157 | + | |
5158 | +[data-theme='dark'] .ant-picker-header > button:hover { | |
5159 | + color: #c9d1d9; | |
5160 | +} | |
5161 | + | |
5162 | +[data-theme='dark'] .ant-picker-header-view button:hover { | |
5163 | + color: #0960bd; | |
5164 | +} | |
5165 | + | |
5166 | +[data-theme='dark'] .ant-picker-content th { | |
5167 | + color: #c9d1d9; | |
5168 | +} | |
5169 | + | |
5170 | +[data-theme='dark'] .ant-picker-cell { | |
5171 | + color: rgb(255 255 255 / 30%); | |
5172 | +} | |
5173 | + | |
5174 | +[data-theme='dark'] .ant-picker-cell-in-view { | |
5175 | + color: #c9d1d9; | |
5176 | +} | |
5177 | + | |
5178 | +[data-theme='dark'] .ant-picker-cell:hover:not(.ant-picker-cell-in-view) .ant-picker-cell-inner, | |
5179 | +[data-theme='dark'] | |
5180 | + .ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not( | |
5181 | + .ant-picker-cell-range-end | |
5182 | + ):not(.ant-picker-cell-range-hover-start):not(.ant-picker-cell-range-hover-end) | |
5183 | + .ant-picker-cell-inner { | |
5184 | + background: rgb(255 255 255 / 8%); | |
5185 | +} | |
5186 | + | |
5187 | +[data-theme='dark'] .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner::before { | |
5188 | + border: 1px solid #0960bd; | |
5189 | +} | |
5190 | + | |
5191 | +[data-theme='dark'] .ant-picker-cell-in-view.ant-picker-cell-in-range::before { | |
5192 | + background: rgb(255 255 255 / 8%); | |
5193 | +} | |
5194 | + | |
5195 | +[data-theme='dark'] .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner, | |
5196 | +[data-theme='dark'] .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner, | |
5197 | +[data-theme='dark'] .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner { | |
5198 | + background: #0960bd; | |
5199 | + color: #fff; | |
5200 | +} | |
5201 | + | |
5202 | +[data-theme='dark'] | |
5203 | + .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single)::before, | |
5204 | +[data-theme='dark'] | |
5205 | + .ant-picker-cell-in-view.ant-picker-cell-range-start:not( | |
5206 | + .ant-picker-cell-range-start-single | |
5207 | + )::before { | |
5208 | + background: rgb(255 255 255 / 8%); | |
5209 | +} | |
5210 | + | |
5211 | +[data-theme='dark'] | |
5212 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover-end.ant-picker-cell-range-end-single::after, | |
5213 | +[data-theme='dark'] | |
5214 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover-end.ant-picker-cell-range-start.ant-picker-cell-range-end.ant-picker-cell-range-start-near-hover::after, | |
5215 | +[data-theme='dark'] | |
5216 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:not(.ant-picker-cell-in-range):not( | |
5217 | + .ant-picker-cell-range-start | |
5218 | + ):not(.ant-picker-cell-range-end)::after, | |
5219 | +[data-theme='dark'] | |
5220 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover-start.ant-picker-cell-range-start-single::after, | |
5221 | +[data-theme='dark'] | |
5222 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover-start.ant-picker-cell-range-start.ant-picker-cell-range-end.ant-picker-cell-range-end-near-hover::after, | |
5223 | +[data-theme='dark'] | |
5224 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:not(.ant-picker-cell-in-range):not( | |
5225 | + .ant-picker-cell-range-start | |
5226 | + ):not(.ant-picker-cell-range-end)::after, | |
5227 | +[data-theme='dark'] | |
5228 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-in-range)::after { | |
5229 | + border-top: 1px dashed #042f5c; | |
5230 | + border-bottom: 1px dashed #042f5c; | |
5231 | +} | |
5232 | + | |
5233 | +[data-theme='dark'] | |
5234 | + .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover::before, | |
5235 | +[data-theme='dark'] | |
5236 | + .ant-picker-cell-in-view.ant-picker-cell-range-end.ant-picker-cell-range-hover::before, | |
5237 | +[data-theme='dark'] | |
5238 | + .ant-picker-cell-in-view.ant-picker-cell-range-end:not( | |
5239 | + .ant-picker-cell-range-end-single | |
5240 | + ).ant-picker-cell-range-hover-end::before, | |
5241 | +[data-theme='dark'] | |
5242 | + .ant-picker-cell-in-view.ant-picker-cell-range-start.ant-picker-cell-range-hover::before, | |
5243 | +[data-theme='dark'] | |
5244 | + .ant-picker-cell-in-view.ant-picker-cell-range-start:not( | |
5245 | + .ant-picker-cell-range-start-single | |
5246 | + ).ant-picker-cell-range-hover-start::before, | |
5247 | +[data-theme='dark'] | |
5248 | + .ant-picker-panel | |
5249 | + > :not(.ant-picker-date-panel) | |
5250 | + .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end::before, | |
5251 | +[data-theme='dark'] | |
5252 | + .ant-picker-panel | |
5253 | + > :not(.ant-picker-date-panel) | |
5254 | + .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start::before { | |
5255 | + background: #010913; | |
5256 | +} | |
5257 | + | |
5258 | +[data-theme='dark'] | |
5259 | + .ant-picker-date-panel | |
5260 | + .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end | |
5261 | + .ant-picker-cell-inner::after, | |
5262 | +[data-theme='dark'] | |
5263 | + .ant-picker-date-panel | |
5264 | + .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start | |
5265 | + .ant-picker-cell-inner::after { | |
5266 | + background: #010913; | |
5267 | +} | |
5268 | + | |
5269 | +[data-theme='dark'] | |
5270 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-start:not( | |
5271 | + .ant-picker-cell-range-hover-edge-start-near-range | |
5272 | + )::after, | |
5273 | +[data-theme='dark'] .ant-picker-cell-in-view.ant-picker-cell-range-hover-start::after, | |
5274 | +[data-theme='dark'] | |
5275 | + .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start.ant-picker-cell-range-hover-edge-start-near-range::after, | |
5276 | +[data-theme='dark'] | |
5277 | + tr | |
5278 | + > .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:first-child::after, | |
5279 | +[data-theme='dark'] tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:first-child::after { | |
5280 | + border-left: 1px dashed #042f5c; | |
5281 | +} | |
5282 | + | |
5283 | +[data-theme='dark'] | |
5284 | + .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-edge-end.ant-picker-cell-range-hover-edge-end-near-range::after, | |
5285 | +[data-theme='dark'] | |
5286 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-end:not( | |
5287 | + .ant-picker-cell-range-hover-edge-end-near-range | |
5288 | + )::after, | |
5289 | +[data-theme='dark'] .ant-picker-cell-in-view.ant-picker-cell-range-hover-end::after, | |
5290 | +[data-theme='dark'] | |
5291 | + tr | |
5292 | + > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::after, | |
5293 | +[data-theme='dark'] tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:last-child::after { | |
5294 | + border-right: 1px dashed #042f5c; | |
5295 | +} | |
5296 | + | |
5297 | +[data-theme='dark'] .ant-picker-cell-disabled { | |
5298 | + color: rgb(255 255 255 / 30%); | |
5299 | +} | |
5300 | + | |
5301 | +[data-theme='dark'] .ant-picker-cell-disabled .ant-picker-cell-inner { | |
5302 | + background: 0 0; | |
5303 | +} | |
5304 | + | |
5305 | +[data-theme='dark'] .ant-picker-cell-disabled::before { | |
5306 | + background: #303030; | |
5307 | +} | |
5308 | + | |
5309 | +[data-theme='dark'] .ant-picker-cell-disabled.ant-picker-cell-today .ant-picker-cell-inner::before { | |
5310 | + border-color: rgb(255 255 255 / 30%); | |
5311 | +} | |
5312 | + | |
5313 | +[data-theme='dark'] .ant-picker-footer { | |
5314 | + border-bottom: 1px solid transparent; | |
5315 | +} | |
5316 | + | |
5317 | +[data-theme='dark'] .ant-picker-panel .ant-picker-footer { | |
5318 | + border-top: 1px solid #303030; | |
5319 | +} | |
5320 | + | |
5321 | +[data-theme='dark'] .ant-picker-footer-extra:not(:last-child) { | |
5322 | + border-bottom: 1px solid #303030; | |
5323 | +} | |
5324 | + | |
5325 | +[data-theme='dark'] .ant-picker-today-btn { | |
5326 | + color: #0960bd; | |
5327 | +} | |
5328 | + | |
5329 | +[data-theme='dark'] .ant-picker-today-btn:hover { | |
5330 | + color: #2a7dc9; | |
5331 | +} | |
5332 | + | |
5333 | +[data-theme='dark'] .ant-picker-today-btn:active { | |
5334 | + color: #004496; | |
5335 | +} | |
5336 | + | |
5337 | +[data-theme='dark'] .ant-picker-today-btn.ant-picker-today-btn-disabled { | |
5338 | + color: rgb(255 255 255 / 30%); | |
5339 | +} | |
5340 | + | |
5341 | +[data-theme='dark'] .ant-picker-month-panel .ant-picker-cell-range-hover-start::after, | |
5342 | +[data-theme='dark'] .ant-picker-quarter-panel .ant-picker-cell-range-hover-start::after, | |
5343 | +[data-theme='dark'] .ant-picker-year-panel .ant-picker-cell-range-hover-start::after { | |
5344 | + border-left: 1px dashed #042f5c; | |
5345 | +} | |
5346 | + | |
5347 | +[data-theme='dark'] | |
5348 | + .ant-picker-panel-rtl | |
5349 | + .ant-picker-month-panel | |
5350 | + .ant-picker-cell-range-hover-start::after, | |
5351 | +[data-theme='dark'] | |
5352 | + .ant-picker-panel-rtl | |
5353 | + .ant-picker-quarter-panel | |
5354 | + .ant-picker-cell-range-hover-start::after, | |
5355 | +[data-theme='dark'] | |
5356 | + .ant-picker-panel-rtl | |
5357 | + .ant-picker-year-panel | |
5358 | + .ant-picker-cell-range-hover-start::after { | |
5359 | + border-right: 1px dashed #042f5c; | |
5360 | +} | |
5361 | + | |
5362 | +[data-theme='dark'] .ant-picker-month-panel .ant-picker-cell-range-hover-end::after, | |
5363 | +[data-theme='dark'] .ant-picker-quarter-panel .ant-picker-cell-range-hover-end::after, | |
5364 | +[data-theme='dark'] .ant-picker-year-panel .ant-picker-cell-range-hover-end::after { | |
5365 | + border-right: 1px dashed #042f5c; | |
5366 | +} | |
5367 | + | |
5368 | +[data-theme='dark'] | |
5369 | + .ant-picker-panel-rtl | |
5370 | + .ant-picker-month-panel | |
5371 | + .ant-picker-cell-range-hover-end::after, | |
5372 | +[data-theme='dark'] | |
5373 | + .ant-picker-panel-rtl | |
5374 | + .ant-picker-quarter-panel | |
5375 | + .ant-picker-cell-range-hover-end::after, | |
5376 | +[data-theme='dark'] | |
5377 | + .ant-picker-panel-rtl | |
5378 | + .ant-picker-year-panel | |
5379 | + .ant-picker-cell-range-hover-end::after { | |
5380 | + border-left: 1px dashed #042f5c; | |
5381 | +} | |
5382 | + | |
5383 | +[data-theme='dark'] .ant-picker-week-panel .ant-picker-cell .ant-picker-cell-inner, | |
5384 | +[data-theme='dark'] .ant-picker-week-panel .ant-picker-cell-selected .ant-picker-cell-inner, | |
5385 | +[data-theme='dark'] .ant-picker-week-panel .ant-picker-cell:hover .ant-picker-cell-inner { | |
5386 | + background: 0 0 !important; | |
5387 | +} | |
5388 | + | |
5389 | +[data-theme='dark'] .ant-picker-week-panel-row:hover td { | |
5390 | + background: rgb(255 255 255 / 8%); | |
5391 | +} | |
5392 | + | |
5393 | +[data-theme='dark'] .ant-picker-week-panel-row-selected td, | |
5394 | +[data-theme='dark'] .ant-picker-week-panel-row-selected:hover td { | |
5395 | + background: #0960bd; | |
5396 | +} | |
5397 | + | |
5398 | +[data-theme='dark'] .ant-picker-week-panel-row-selected td.ant-picker-cell-week, | |
5399 | +[data-theme='dark'] .ant-picker-week-panel-row-selected:hover td.ant-picker-cell-week { | |
5400 | + color: rgb(255 255 255 / 50%); | |
5401 | +} | |
5402 | + | |
5403 | +[data-theme='dark'] | |
5404 | + .ant-picker-week-panel-row-selected | |
5405 | + td.ant-picker-cell-today | |
5406 | + .ant-picker-cell-inner::before, | |
5407 | +[data-theme='dark'] | |
5408 | + .ant-picker-week-panel-row-selected:hover | |
5409 | + td.ant-picker-cell-today | |
5410 | + .ant-picker-cell-inner::before { | |
5411 | + border-color: #fff; | |
5412 | +} | |
5413 | + | |
5414 | +[data-theme='dark'] .ant-picker-week-panel-row-selected td .ant-picker-cell-inner, | |
5415 | +[data-theme='dark'] .ant-picker-week-panel-row-selected:hover td .ant-picker-cell-inner { | |
5416 | + color: #fff; | |
5417 | +} | |
5418 | + | |
5419 | +[data-theme='dark'] .ant-picker-datetime-panel .ant-picker-time-panel { | |
5420 | + border-left: 1px solid #303030; | |
5421 | +} | |
5422 | + | |
5423 | +[data-theme='dark'] .ant-picker-time-panel-column:not(:first-child) { | |
5424 | + border-left: 1px solid #303030; | |
5425 | +} | |
5426 | + | |
5427 | +[data-theme='dark'] .ant-picker-time-panel-column-active { | |
5428 | + background: rgb(17 27 38 / 20%); | |
5429 | +} | |
5430 | + | |
5431 | +[data-theme='dark'] | |
5432 | + .ant-picker-time-panel-column | |
5433 | + > li.ant-picker-time-panel-cell | |
5434 | + .ant-picker-time-panel-cell-inner { | |
5435 | + color: #c9d1d9; | |
5436 | +} | |
5437 | + | |
5438 | +[data-theme='dark'] | |
5439 | + .ant-picker-time-panel-column | |
5440 | + > li.ant-picker-time-panel-cell | |
5441 | + .ant-picker-time-panel-cell-inner:hover { | |
5442 | + background: rgb(255 255 255 / 8%); | |
5443 | +} | |
5444 | + | |
5445 | +[data-theme='dark'] | |
5446 | + .ant-picker-time-panel-column | |
5447 | + > li.ant-picker-time-panel-cell-selected | |
5448 | + .ant-picker-time-panel-cell-inner { | |
5449 | + background: #111b26; | |
5450 | +} | |
5451 | + | |
5452 | +[data-theme='dark'] | |
5453 | + .ant-picker-time-panel-column | |
5454 | + > li.ant-picker-time-panel-cell-disabled | |
5455 | + .ant-picker-time-panel-cell-inner { | |
5456 | + background: 0 0; | |
5457 | + color: rgb(255 255 255 / 30%); | |
5458 | +} | |
5459 | + | |
5460 | +[data-theme='dark'] | |
5461 | + .ant-picker-panel-rtl | |
5462 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-start:not( | |
5463 | + .ant-picker-cell-range-hover-edge-start-near-range | |
5464 | + )::after, | |
5465 | +[data-theme='dark'] | |
5466 | + .ant-picker-panel-rtl | |
5467 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover-start::after, | |
5468 | +[data-theme='dark'] | |
5469 | + .ant-picker-panel-rtl | |
5470 | + .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start.ant-picker-cell-range-hover-edge-start-near-range::after, | |
5471 | +[data-theme='dark'] | |
5472 | + .ant-picker-panel-rtl | |
5473 | + tr | |
5474 | + > .ant-picker-cell-in-view.ant-picker-cell-range-hover:not( | |
5475 | + .ant-picker-cell-selected | |
5476 | + ):first-child::after { | |
5477 | + border-right: 1px dashed #042f5c; | |
5478 | +} | |
5479 | + | |
5480 | +[data-theme='dark'] | |
5481 | + .ant-picker-panel-rtl | |
5482 | + .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-edge-end.ant-picker-cell-range-hover-edge-end-near-range::after, | |
5483 | +[data-theme='dark'] | |
5484 | + .ant-picker-panel-rtl | |
5485 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-end:not( | |
5486 | + .ant-picker-cell-range-hover-edge-end-near-range | |
5487 | + )::after, | |
5488 | +[data-theme='dark'] | |
5489 | + .ant-picker-panel-rtl | |
5490 | + .ant-picker-cell-in-view.ant-picker-cell-range-hover-end::after, | |
5491 | +[data-theme='dark'] | |
5492 | + .ant-picker-panel-rtl | |
5493 | + tr | |
5494 | + > .ant-picker-cell-in-view.ant-picker-cell-range-hover:not( | |
5495 | + .ant-picker-cell-selected | |
5496 | + ):last-child::after { | |
5497 | + border-left: 1px dashed #042f5c; | |
5498 | +} | |
5499 | + | |
5500 | +[data-theme='dark'] | |
5501 | + .ant-picker-panel-rtl | |
5502 | + .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-start.ant-picker-cell-range-hover-edge-end:not( | |
5503 | + .ant-picker-cell-range-hover | |
5504 | + )::after, | |
5505 | +[data-theme='dark'] | |
5506 | + .ant-picker-panel-rtl | |
5507 | + .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start:not( | |
5508 | + .ant-picker-cell-range-hover | |
5509 | + )::after, | |
5510 | +[data-theme='dark'] | |
5511 | + .ant-picker-panel-rtl | |
5512 | + .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-end.ant-picker-cell-range-hover-edge-start:not( | |
5513 | + .ant-picker-cell-range-hover | |
5514 | + )::after, | |
5515 | +[data-theme='dark'] | |
5516 | + .ant-picker-panel-rtl | |
5517 | + tr | |
5518 | + > .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover.ant-picker-cell-range-hover-edge-end:first-child::after, | |
5519 | +[data-theme='dark'] | |
5520 | + .ant-picker-panel-rtl | |
5521 | + tr | |
5522 | + > .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:first-child::after, | |
5523 | +[data-theme='dark'] | |
5524 | + .ant-picker-panel-rtl | |
5525 | + tr | |
5526 | + > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::after, | |
5527 | +[data-theme='dark'] | |
5528 | + .ant-picker-panel-rtl | |
5529 | + tr | |
5530 | + > .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover.ant-picker-cell-range-hover-edge-start:last-child::after { | |
5531 | + border-right: 1px dashed #042f5c; | |
5532 | + border-left: 1px dashed #042f5c; | |
5533 | +} | |
5534 | + | |
5535 | +[data-theme='dark'] .ant-slider { | |
5536 | + color: #c9d1d9; | |
5537 | +} | |
5538 | + | |
5539 | +[data-theme='dark'] .ant-slider-rail { | |
5540 | + background-color: #262626; | |
5541 | +} | |
5542 | + | |
5543 | +[data-theme='dark'] .ant-slider-track { | |
5544 | + background-color: #78b7e3; | |
5545 | +} | |
5546 | + | |
5547 | +[data-theme='dark'] .ant-slider-handle { | |
5548 | + border: solid 2px #78b7e3; | |
5549 | + background-color: #151515; | |
5550 | +} | |
5551 | + | |
5552 | +[data-theme='dark'] | |
5553 | + .ant-slider-handle-dragging.ant-slider-handle-dragging.ant-slider-handle-dragging { | |
5554 | + border-color: #3a80ca; | |
5555 | + box-shadow: 0 0 0 5px rgb(9 96 189 / 12%); | |
5556 | +} | |
5557 | + | |
5558 | +[data-theme='dark'] .ant-slider-handle:focus { | |
5559 | + border-color: #3a80ca; | |
5560 | + box-shadow: 0 0 0 5px rgb(9 96 189 / 12%); | |
5561 | +} | |
5562 | + | |
5563 | +[data-theme='dark'] .ant-slider-handle.ant-tooltip-open { | |
5564 | + border-color: #0960bd; | |
5565 | +} | |
5566 | + | |
5567 | +[data-theme='dark'] .ant-slider:hover .ant-slider-rail { | |
5568 | + background-color: #303030; | |
5569 | +} | |
5570 | + | |
5571 | +[data-theme='dark'] .ant-slider:hover .ant-slider-track { | |
5572 | + background-color: #4f99d6; | |
5573 | +} | |
5574 | + | |
5575 | +[data-theme='dark'] .ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open) { | |
5576 | + border-color: #4f99d6; | |
5577 | +} | |
5578 | + | |
5579 | +[data-theme='dark'] .ant-slider-mark-text { | |
5580 | + color: #8b949e; | |
5581 | +} | |
5582 | + | |
5583 | +[data-theme='dark'] .ant-slider-mark-text-active { | |
5584 | + color: #c9d1d9; | |
5585 | +} | |
5586 | + | |
5587 | +[data-theme='dark'] .ant-slider-step { | |
5588 | + background: 0 0; | |
5589 | +} | |
5590 | + | |
5591 | +[data-theme='dark'] .ant-slider-dot { | |
5592 | + border: 2px solid #303030; | |
5593 | + background-color: #151515; | |
5594 | +} | |
5595 | + | |
5596 | +[data-theme='dark'] .ant-slider-dot-active { | |
5597 | + border-color: #4f99d6; | |
5598 | +} | |
5599 | + | |
5600 | +[data-theme='dark'] .ant-slider-disabled .ant-slider-rail { | |
5601 | + background-color: #262626 !important; | |
5602 | +} | |
5603 | + | |
5604 | +[data-theme='dark'] .ant-slider-disabled .ant-slider-track { | |
5605 | + background-color: rgb(255 255 255 / 30%) !important; | |
5606 | +} | |
5607 | + | |
5608 | +[data-theme='dark'] .ant-slider-disabled .ant-slider-dot, | |
5609 | +[data-theme='dark'] .ant-slider-disabled .ant-slider-handle { | |
5610 | + border-color: rgb(255 255 255 / 30%) !important; | |
5611 | + background-color: #151515; | |
5612 | +} | |
5613 | + | |
5614 | +[data-theme='dark'] .ant-table-small .ant-table-thead > tr > th { | |
5615 | + background-color: #1d1d1d; | |
5616 | +} | |
5617 | + | |
5618 | +[data-theme='dark'] .ant-table.ant-table-bordered > .ant-table-title { | |
5619 | + border: 1px solid #303030; | |
5620 | +} | |
5621 | + | |
5622 | +[data-theme='dark'] .ant-table.ant-table-bordered > .ant-table-container { | |
5623 | + border-left: 1px solid #303030; | |
5624 | +} | |
5625 | + | |
5626 | +[data-theme='dark'] | |
5627 | + .ant-table.ant-table-bordered | |
5628 | + > .ant-table-container | |
5629 | + > .ant-table-body | |
5630 | + > table | |
5631 | + > tbody | |
5632 | + > tr | |
5633 | + > td, | |
5634 | +[data-theme='dark'] | |
5635 | + .ant-table.ant-table-bordered | |
5636 | + > .ant-table-container | |
5637 | + > .ant-table-body | |
5638 | + > table | |
5639 | + > tfoot | |
5640 | + > tr | |
5641 | + > td, | |
5642 | +[data-theme='dark'] | |
5643 | + .ant-table.ant-table-bordered | |
5644 | + > .ant-table-container | |
5645 | + > .ant-table-body | |
5646 | + > table | |
5647 | + > tfoot | |
5648 | + > tr | |
5649 | + > th, | |
5650 | +[data-theme='dark'] | |
5651 | + .ant-table.ant-table-bordered | |
5652 | + > .ant-table-container | |
5653 | + > .ant-table-body | |
5654 | + > table | |
5655 | + > thead | |
5656 | + > tr | |
5657 | + > th, | |
5658 | +[data-theme='dark'] | |
5659 | + .ant-table.ant-table-bordered | |
5660 | + > .ant-table-container | |
5661 | + > .ant-table-content | |
5662 | + > table | |
5663 | + > tbody | |
5664 | + > tr | |
5665 | + > td, | |
5666 | +[data-theme='dark'] | |
5667 | + .ant-table.ant-table-bordered | |
5668 | + > .ant-table-container | |
5669 | + > .ant-table-content | |
5670 | + > table | |
5671 | + > tfoot | |
5672 | + > tr | |
5673 | + > td, | |
5674 | +[data-theme='dark'] | |
5675 | + .ant-table.ant-table-bordered | |
5676 | + > .ant-table-container | |
5677 | + > .ant-table-content | |
5678 | + > table | |
5679 | + > tfoot | |
5680 | + > tr | |
5681 | + > th, | |
5682 | +[data-theme='dark'] | |
5683 | + .ant-table.ant-table-bordered | |
5684 | + > .ant-table-container | |
5685 | + > .ant-table-content | |
5686 | + > table | |
5687 | + > thead | |
5688 | + > tr | |
5689 | + > th, | |
5690 | +[data-theme='dark'] | |
5691 | + .ant-table.ant-table-bordered | |
5692 | + > .ant-table-container | |
5693 | + > .ant-table-header | |
5694 | + > table | |
5695 | + > tbody | |
5696 | + > tr | |
5697 | + > td, | |
5698 | +[data-theme='dark'] | |
5699 | + .ant-table.ant-table-bordered | |
5700 | + > .ant-table-container | |
5701 | + > .ant-table-header | |
5702 | + > table | |
5703 | + > tfoot | |
5704 | + > tr | |
5705 | + > td, | |
5706 | +[data-theme='dark'] | |
5707 | + .ant-table.ant-table-bordered | |
5708 | + > .ant-table-container | |
5709 | + > .ant-table-header | |
5710 | + > table | |
5711 | + > tfoot | |
5712 | + > tr | |
5713 | + > th, | |
5714 | +[data-theme='dark'] | |
5715 | + .ant-table.ant-table-bordered | |
5716 | + > .ant-table-container | |
5717 | + > .ant-table-header | |
5718 | + > table | |
5719 | + > thead | |
5720 | + > tr | |
5721 | + > th, | |
5722 | +[data-theme='dark'] | |
5723 | + .ant-table.ant-table-bordered | |
5724 | + > .ant-table-container | |
5725 | + > .ant-table-summary | |
5726 | + > table | |
5727 | + > tbody | |
5728 | + > tr | |
5729 | + > td, | |
5730 | +[data-theme='dark'] | |
5731 | + .ant-table.ant-table-bordered | |
5732 | + > .ant-table-container | |
5733 | + > .ant-table-summary | |
5734 | + > table | |
5735 | + > tfoot | |
5736 | + > tr | |
5737 | + > td, | |
5738 | +[data-theme='dark'] | |
5739 | + .ant-table.ant-table-bordered | |
5740 | + > .ant-table-container | |
5741 | + > .ant-table-summary | |
5742 | + > table | |
5743 | + > tfoot | |
5744 | + > tr | |
5745 | + > th, | |
5746 | +[data-theme='dark'] | |
5747 | + .ant-table.ant-table-bordered | |
5748 | + > .ant-table-container | |
5749 | + > .ant-table-summary | |
5750 | + > table | |
5751 | + > thead | |
5752 | + > tr | |
5753 | + > th { | |
5754 | + border-right: 1px solid #303030; | |
5755 | +} | |
5756 | + | |
5757 | +[data-theme='dark'] | |
5758 | + .ant-table.ant-table-bordered | |
5759 | + > .ant-table-container | |
5760 | + > .ant-table-body | |
5761 | + > table | |
5762 | + > thead | |
5763 | + > tr:not(:last-child) | |
5764 | + > th, | |
5765 | +[data-theme='dark'] | |
5766 | + .ant-table.ant-table-bordered | |
5767 | + > .ant-table-container | |
5768 | + > .ant-table-content | |
5769 | + > table | |
5770 | + > thead | |
5771 | + > tr:not(:last-child) | |
5772 | + > th, | |
5773 | +[data-theme='dark'] | |
5774 | + .ant-table.ant-table-bordered | |
5775 | + > .ant-table-container | |
5776 | + > .ant-table-header | |
5777 | + > table | |
5778 | + > thead | |
5779 | + > tr:not(:last-child) | |
5780 | + > th, | |
5781 | +[data-theme='dark'] | |
5782 | + .ant-table.ant-table-bordered | |
5783 | + > .ant-table-container | |
5784 | + > .ant-table-summary | |
5785 | + > table | |
5786 | + > thead | |
5787 | + > tr:not(:last-child) | |
5788 | + > th { | |
5789 | + border-bottom: 1px solid #303030; | |
5790 | +} | |
5791 | + | |
5792 | +[data-theme='dark'] | |
5793 | + .ant-table.ant-table-bordered | |
5794 | + > .ant-table-container | |
5795 | + > .ant-table-body | |
5796 | + > table | |
5797 | + > thead | |
5798 | + > tr | |
5799 | + > th::before, | |
5800 | +[data-theme='dark'] | |
5801 | + .ant-table.ant-table-bordered | |
5802 | + > .ant-table-container | |
5803 | + > .ant-table-content | |
5804 | + > table | |
5805 | + > thead | |
5806 | + > tr | |
5807 | + > th::before, | |
5808 | +[data-theme='dark'] | |
5809 | + .ant-table.ant-table-bordered | |
5810 | + > .ant-table-container | |
5811 | + > .ant-table-header | |
5812 | + > table | |
5813 | + > thead | |
5814 | + > tr | |
5815 | + > th::before, | |
5816 | +[data-theme='dark'] | |
5817 | + .ant-table.ant-table-bordered | |
5818 | + > .ant-table-container | |
5819 | + > .ant-table-summary | |
5820 | + > table | |
5821 | + > thead | |
5822 | + > tr | |
5823 | + > th::before { | |
5824 | + background-color: transparent !important; | |
5825 | +} | |
5826 | + | |
5827 | +[data-theme='dark'] | |
5828 | + .ant-table.ant-table-bordered | |
5829 | + > .ant-table-container | |
5830 | + > .ant-table-body | |
5831 | + > table | |
5832 | + > tbody | |
5833 | + > tr | |
5834 | + > .ant-table-cell-fix-right-first::after, | |
5835 | +[data-theme='dark'] | |
5836 | + .ant-table.ant-table-bordered | |
5837 | + > .ant-table-container | |
5838 | + > .ant-table-body | |
5839 | + > table | |
5840 | + > tfoot | |
5841 | + > tr | |
5842 | + > .ant-table-cell-fix-right-first::after, | |
5843 | +[data-theme='dark'] | |
5844 | + .ant-table.ant-table-bordered | |
5845 | + > .ant-table-container | |
5846 | + > .ant-table-body | |
5847 | + > table | |
5848 | + > thead | |
5849 | + > tr | |
5850 | + > .ant-table-cell-fix-right-first::after, | |
5851 | +[data-theme='dark'] | |
5852 | + .ant-table.ant-table-bordered | |
5853 | + > .ant-table-container | |
5854 | + > .ant-table-content | |
5855 | + > table | |
5856 | + > tbody | |
5857 | + > tr | |
5858 | + > .ant-table-cell-fix-right-first::after, | |
5859 | +[data-theme='dark'] | |
5860 | + .ant-table.ant-table-bordered | |
5861 | + > .ant-table-container | |
5862 | + > .ant-table-content | |
5863 | + > table | |
5864 | + > tfoot | |
5865 | + > tr | |
5866 | + > .ant-table-cell-fix-right-first::after, | |
5867 | +[data-theme='dark'] | |
5868 | + .ant-table.ant-table-bordered | |
5869 | + > .ant-table-container | |
5870 | + > .ant-table-content | |
5871 | + > table | |
5872 | + > thead | |
5873 | + > tr | |
5874 | + > .ant-table-cell-fix-right-first::after, | |
5875 | +[data-theme='dark'] | |
5876 | + .ant-table.ant-table-bordered | |
5877 | + > .ant-table-container | |
5878 | + > .ant-table-header | |
5879 | + > table | |
5880 | + > tbody | |
5881 | + > tr | |
5882 | + > .ant-table-cell-fix-right-first::after, | |
5883 | +[data-theme='dark'] | |
5884 | + .ant-table.ant-table-bordered | |
5885 | + > .ant-table-container | |
5886 | + > .ant-table-header | |
5887 | + > table | |
5888 | + > tfoot | |
5889 | + > tr | |
5890 | + > .ant-table-cell-fix-right-first::after, | |
5891 | +[data-theme='dark'] | |
5892 | + .ant-table.ant-table-bordered | |
5893 | + > .ant-table-container | |
5894 | + > .ant-table-header | |
5895 | + > table | |
5896 | + > thead | |
5897 | + > tr | |
5898 | + > .ant-table-cell-fix-right-first::after, | |
5899 | +[data-theme='dark'] | |
5900 | + .ant-table.ant-table-bordered | |
5901 | + > .ant-table-container | |
5902 | + > .ant-table-summary | |
5903 | + > table | |
5904 | + > tbody | |
5905 | + > tr | |
5906 | + > .ant-table-cell-fix-right-first::after, | |
5907 | +[data-theme='dark'] | |
5908 | + .ant-table.ant-table-bordered | |
5909 | + > .ant-table-container | |
5910 | + > .ant-table-summary | |
5911 | + > table | |
5912 | + > tfoot | |
5913 | + > tr | |
5914 | + > .ant-table-cell-fix-right-first::after, | |
5915 | +[data-theme='dark'] | |
5916 | + .ant-table.ant-table-bordered | |
5917 | + > .ant-table-container | |
5918 | + > .ant-table-summary | |
5919 | + > table | |
5920 | + > thead | |
5921 | + > tr | |
5922 | + > .ant-table-cell-fix-right-first::after { | |
5923 | + border-right: 1px solid #303030; | |
5924 | +} | |
5925 | + | |
5926 | +[data-theme='dark'] | |
5927 | + .ant-table.ant-table-bordered | |
5928 | + > .ant-table-container | |
5929 | + > .ant-table-body | |
5930 | + > table | |
5931 | + > tbody | |
5932 | + > tr | |
5933 | + > td | |
5934 | + > .ant-table-expanded-row-fixed::after, | |
5935 | +[data-theme='dark'] | |
5936 | + .ant-table.ant-table-bordered | |
5937 | + > .ant-table-container | |
5938 | + > .ant-table-content | |
5939 | + > table | |
5940 | + > tbody | |
5941 | + > tr | |
5942 | + > td | |
5943 | + > .ant-table-expanded-row-fixed::after, | |
5944 | +[data-theme='dark'] | |
5945 | + .ant-table.ant-table-bordered | |
5946 | + > .ant-table-container | |
5947 | + > .ant-table-header | |
5948 | + > table | |
5949 | + > tbody | |
5950 | + > tr | |
5951 | + > td | |
5952 | + > .ant-table-expanded-row-fixed::after, | |
5953 | +[data-theme='dark'] | |
5954 | + .ant-table.ant-table-bordered | |
5955 | + > .ant-table-container | |
5956 | + > .ant-table-summary | |
5957 | + > table | |
5958 | + > tbody | |
5959 | + > tr | |
5960 | + > td | |
5961 | + > .ant-table-expanded-row-fixed::after { | |
5962 | + border-right: 1px solid #303030; | |
5963 | +} | |
5964 | + | |
5965 | +[data-theme='dark'] | |
5966 | + .ant-table.ant-table-bordered | |
5967 | + > .ant-table-container | |
5968 | + > .ant-table-content | |
5969 | + > table, | |
5970 | +[data-theme='dark'] | |
5971 | + .ant-table.ant-table-bordered | |
5972 | + > .ant-table-container | |
5973 | + > .ant-table-header | |
5974 | + > table { | |
5975 | + border-top: 1px solid #303030; | |
5976 | +} | |
5977 | + | |
5978 | +[data-theme='dark'] .ant-table.ant-table-bordered > .ant-table-footer { | |
5979 | + border: 1px solid #303030; | |
5980 | +} | |
5981 | + | |
5982 | +[data-theme='dark'] .ant-table-cell-scrollbar { | |
5983 | + box-shadow: 0 1px 0 1px #1d1d1d; | |
5984 | +} | |
5985 | + | |
5986 | +[data-theme='dark'] .ant-table-resize-handle-line { | |
5987 | + background-color: #0960bd; | |
5988 | +} | |
5989 | + | |
5990 | +[data-theme='dark'] .ant-table { | |
5991 | + background: #151515; | |
5992 | + color: #c9d1d9; | |
5993 | +} | |
5994 | + | |
5995 | +[data-theme='dark'] .ant-table-footer { | |
5996 | + background: rgb(255 255 255 / 4%); | |
5997 | + color: rgb(255 255 255 / 65%); | |
5998 | +} | |
5999 | + | |
6000 | +[data-theme='dark'] .ant-table-thead > tr > th { | |
6001 | + border-bottom: 1px solid #303030; | |
6002 | + background: #1d1d1d; | |
6003 | + color: rgb(255 255 255 / 65%); | |
6004 | +} | |
6005 | + | |
6006 | +[data-theme='dark'] | |
6007 | + .ant-table-thead | |
6008 | + > tr | |
6009 | + > th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not( | |
6010 | + [colspan] | |
6011 | + )::before { | |
6012 | + background-color: rgb(255 255 255 / 8%); | |
6013 | +} | |
6014 | + | |
6015 | +[data-theme='dark'] .ant-table-tbody > tr > td { | |
6016 | + border-bottom: 1px solid #303030; | |
6017 | +} | |
6018 | + | |
6019 | +[data-theme='dark'] .ant-table-tbody > tr.ant-table-row:hover > td, | |
6020 | +[data-theme='dark'] .ant-table-tbody > tr > td.ant-table-cell-row-hover { | |
6021 | + background: #262626; | |
6022 | +} | |
6023 | + | |
6024 | +[data-theme='dark'] .ant-table-tbody > tr.ant-table-row-selected > td { | |
6025 | + border-color: rgb(0 0 0 / 3%); | |
6026 | + background: rgb(255 255 255 / 8%); | |
6027 | +} | |
6028 | + | |
6029 | +[data-theme='dark'] .ant-table-tbody > tr.ant-table-row-selected:hover > td { | |
6030 | + background: rgb(250 250 250 / 8%); | |
6031 | +} | |
6032 | + | |
6033 | +[data-theme='dark'] .ant-table-summary { | |
6034 | + background: #151515; | |
6035 | +} | |
6036 | + | |
6037 | +[data-theme='dark'] .ant-table-summary > tr > td, | |
6038 | +[data-theme='dark'] .ant-table-summary > tr > th { | |
6039 | + border-bottom: 1px solid #303030; | |
6040 | +} | |
6041 | + | |
6042 | +[data-theme='dark'] .ant-table-thead th.ant-table-column-has-sorters:hover { | |
6043 | + background: #303030; | |
6044 | +} | |
6045 | + | |
6046 | +[data-theme='dark'] .ant-table-thead th.ant-table-column-has-sorters:hover::before { | |
6047 | + background-color: transparent !important; | |
6048 | +} | |
6049 | + | |
6050 | +[data-theme='dark'] .ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-left:hover, | |
6051 | +[data-theme='dark'] | |
6052 | + .ant-table-thead | |
6053 | + th.ant-table-column-has-sorters.ant-table-cell-fix-right:hover { | |
6054 | + background: #222; | |
6055 | +} | |
6056 | + | |
6057 | +[data-theme='dark'] .ant-table-thead th.ant-table-column-sort { | |
6058 | + background: #262626; | |
6059 | +} | |
6060 | + | |
6061 | +[data-theme='dark'] .ant-table-thead th.ant-table-column-sort::before { | |
6062 | + background-color: transparent !important; | |
6063 | +} | |
6064 | + | |
6065 | +[data-theme='dark'] td.ant-table-column-sort { | |
6066 | + background: rgb(255 255 255 / 1%); | |
6067 | +} | |
6068 | + | |
6069 | +[data-theme='dark'] .ant-table-column-sorter { | |
6070 | + color: #bfbfbf; | |
6071 | +} | |
6072 | + | |
6073 | +[data-theme='dark'] .ant-table-column-sorter-down.active, | |
6074 | +[data-theme='dark'] .ant-table-column-sorter-up.active { | |
6075 | + color: #0960bd; | |
6076 | +} | |
6077 | + | |
6078 | +[data-theme='dark'] .ant-table-column-sorters:hover .ant-table-column-sorter { | |
6079 | + color: #a6a6a6; | |
6080 | +} | |
6081 | + | |
6082 | +[data-theme='dark'] .ant-table-filter-trigger { | |
6083 | + color: #bfbfbf; | |
6084 | +} | |
6085 | + | |
6086 | +[data-theme='dark'] .ant-table-filter-trigger:hover { | |
6087 | + background: #434343; | |
6088 | + color: #8b949e; | |
6089 | +} | |
6090 | + | |
6091 | +[data-theme='dark'] .ant-table-filter-trigger.active { | |
6092 | + color: #0960bd; | |
6093 | +} | |
6094 | + | |
6095 | +[data-theme='dark'] .ant-table-filter-dropdown { | |
6096 | + background-color: #1f1f1f; | |
6097 | + color: #c9d1d9; | |
6098 | +} | |
6099 | + | |
6100 | +[data-theme='dark'] .ant-table-filter-dropdown .ant-dropdown-menu:empty::after { | |
6101 | + color: rgb(255 255 255 / 30%); | |
6102 | +} | |
6103 | + | |
6104 | +[data-theme='dark'] | |
6105 | + .ant-table-filter-dropdown-tree | |
6106 | + .ant-tree-treenode | |
6107 | + .ant-tree-node-content-wrapper:hover { | |
6108 | + background-color: rgb(255 255 255 / 8%); | |
6109 | +} | |
6110 | + | |
6111 | +[data-theme='dark'] | |
6112 | + .ant-table-filter-dropdown-tree | |
6113 | + .ant-tree-treenode-checkbox-checked | |
6114 | + .ant-tree-node-content-wrapper, | |
6115 | +[data-theme='dark'] | |
6116 | + .ant-table-filter-dropdown-tree | |
6117 | + .ant-tree-treenode-checkbox-checked | |
6118 | + .ant-tree-node-content-wrapper:hover { | |
6119 | + background-color: #11263c; | |
6120 | +} | |
6121 | + | |
6122 | +[data-theme='dark'] .ant-table-filter-dropdown-search { | |
6123 | + border-bottom: 1px #303030; | |
6124 | +} | |
6125 | + | |
6126 | +[data-theme='dark'] .ant-table-filter-dropdown-search-input .anticon { | |
6127 | + color: rgb(255 255 255 / 30%); | |
6128 | +} | |
6129 | + | |
6130 | +[data-theme='dark'] .ant-table-filter-dropdown-btns { | |
6131 | + border-top: 1px solid #303030; | |
6132 | + background-color: #1f1f1f; | |
6133 | +} | |
6134 | + | |
6135 | +[data-theme='dark'] table tr th.ant-table-selection-column::after { | |
6136 | + background-color: transparent !important; | |
6137 | +} | |
6138 | + | |
6139 | +[data-theme='dark'] .ant-table-selection-extra .anticon { | |
6140 | + color: #bfbfbf; | |
6141 | +} | |
6142 | + | |
6143 | +[data-theme='dark'] .ant-table-selection-extra .anticon:hover { | |
6144 | + color: #a6a6a6; | |
6145 | +} | |
6146 | + | |
6147 | +[data-theme='dark'] .ant-table-row-expand-icon { | |
6148 | + border: 1px solid #303030; | |
6149 | + background: 0 0; | |
6150 | + color: #0960bd; | |
6151 | +} | |
6152 | + | |
6153 | +[data-theme='dark'] .ant-table-row-expand-icon:focus, | |
6154 | +[data-theme='dark'] .ant-table-row-expand-icon:hover { | |
6155 | + color: #2a7dc9; | |
6156 | +} | |
6157 | + | |
6158 | +[data-theme='dark'] .ant-table-row-expand-icon:active { | |
6159 | + color: #004496; | |
6160 | +} | |
6161 | + | |
6162 | +[data-theme='dark'] .ant-table-row-expand-icon-spaced { | |
6163 | + background: 0 0; | |
6164 | +} | |
6165 | + | |
6166 | +[data-theme='dark'] tr.ant-table-expanded-row:hover > td, | |
6167 | +[data-theme='dark'] tr.ant-table-expanded-row > td { | |
6168 | + background: #1d1d1d; | |
6169 | +} | |
6170 | + | |
6171 | +[data-theme='dark'] .ant-table-empty .ant-table-tbody > tr.ant-table-placeholder { | |
6172 | + color: rgb(255 255 255 / 30%); | |
6173 | +} | |
6174 | + | |
6175 | +[data-theme='dark'] .ant-table-tbody > tr.ant-table-placeholder:hover > td { | |
6176 | + background: #151515; | |
6177 | +} | |
6178 | + | |
6179 | +[data-theme='dark'] .ant-table-cell-fix-left, | |
6180 | +[data-theme='dark'] .ant-table-cell-fix-right { | |
6181 | + background: #151515; | |
6182 | +} | |
6183 | + | |
6184 | +[data-theme='dark'] .ant-table-ping-left .ant-table-cell-fix-left-last::before { | |
6185 | + background-color: transparent !important; | |
6186 | +} | |
6187 | + | |
6188 | +[data-theme='dark'] .ant-table-sticky-holder { | |
6189 | + background: #151515; | |
6190 | +} | |
6191 | + | |
6192 | +[data-theme='dark'] .ant-table-sticky-scroll { | |
6193 | + border-top: 1px solid #303030; | |
6194 | + background: #fcfcfc; | |
6195 | +} | |
6196 | + | |
6197 | +[data-theme='dark'] .ant-table-sticky-scroll-bar { | |
6198 | + background-color: rgb(0 0 0 / 35%); | |
6199 | +} | |
6200 | + | |
6201 | +[data-theme='dark'] .ant-table-sticky-scroll-bar:hover { | |
6202 | + background-color: rgb(0 0 0 / 80%); | |
6203 | +} | |
6204 | + | |
6205 | +[data-theme='dark'] .ant-table-sticky-scroll-bar-active { | |
6206 | + background-color: rgb(0 0 0 / 80%); | |
6207 | +} | |
6208 | + | |
6209 | +[data-theme='dark'] .ant-progress { | |
6210 | + color: #c9d1d9; | |
6211 | +} | |
6212 | + | |
6213 | +[data-theme='dark'] .ant-progress-steps-item { | |
6214 | + background: rgb(255 255 255 / 8%); | |
6215 | +} | |
6216 | + | |
6217 | +[data-theme='dark'] .ant-progress-steps-item-active { | |
6218 | + background: #0960bd; | |
6219 | +} | |
6220 | + | |
6221 | +[data-theme='dark'] .ant-progress-inner { | |
6222 | + background-color: rgb(255 255 255 / 8%); | |
6223 | +} | |
6224 | + | |
6225 | +[data-theme='dark'] .ant-progress-circle-trail { | |
6226 | + stroke: rgb(255 255 255 / 8%); | |
6227 | +} | |
6228 | + | |
6229 | +[data-theme='dark'] | |
6230 | + .ant-progress-inner:not(.ant-progress-circle-gradient) | |
6231 | + .ant-progress-circle-path { | |
6232 | + stroke: #0960bd; | |
6233 | +} | |
6234 | + | |
6235 | +[data-theme='dark'] .ant-progress-bg, | |
6236 | +[data-theme='dark'] .ant-progress-success-bg { | |
6237 | + background-color: #0960bd; | |
6238 | +} | |
6239 | + | |
6240 | +[data-theme='dark'] .ant-progress-success-bg { | |
6241 | + background-color: #55d187; | |
6242 | +} | |
6243 | + | |
6244 | +[data-theme='dark'] .ant-progress-text { | |
6245 | + color: #c9d1d9; | |
6246 | +} | |
6247 | + | |
6248 | +[data-theme='dark'] .ant-progress-status-active .ant-progress-bg::before { | |
6249 | + background: #151515; | |
6250 | +} | |
6251 | + | |
6252 | +[data-theme='dark'] .ant-progress-status-exception .ant-progress-bg { | |
6253 | + background-color: #ed6f6f; | |
6254 | +} | |
6255 | + | |
6256 | +[data-theme='dark'] .ant-progress-status-exception .ant-progress-text { | |
6257 | + color: #ed6f6f; | |
6258 | +} | |
6259 | + | |
6260 | +[data-theme='dark'] | |
6261 | + .ant-progress-status-exception | |
6262 | + .ant-progress-inner:not(.ant-progress-circle-gradient) | |
6263 | + .ant-progress-circle-path { | |
6264 | + stroke: #ed6f6f; | |
6265 | +} | |
6266 | + | |
6267 | +[data-theme='dark'] .ant-progress-status-success .ant-progress-bg { | |
6268 | + background-color: #55d187; | |
6269 | +} | |
6270 | + | |
6271 | +[data-theme='dark'] .ant-progress-status-success .ant-progress-text { | |
6272 | + color: #55d187; | |
6273 | +} | |
6274 | + | |
6275 | +[data-theme='dark'] | |
6276 | + .ant-progress-status-success | |
6277 | + .ant-progress-inner:not(.ant-progress-circle-gradient) | |
6278 | + .ant-progress-circle-path { | |
6279 | + stroke: #55d187; | |
6280 | +} | |
6281 | + | |
6282 | +[data-theme='dark'] .ant-progress-circle .ant-progress-inner { | |
6283 | + background-color: transparent; | |
6284 | +} | |
6285 | + | |
6286 | +[data-theme='dark'] .ant-progress-circle .ant-progress-text { | |
6287 | + color: #c9d1d9; | |
6288 | +} | |
6289 | + | |
6290 | +[data-theme='dark'] .ant-progress-circle.ant-progress-status-exception .ant-progress-text { | |
6291 | + color: #ed6f6f; | |
6292 | +} | |
6293 | + | |
6294 | +[data-theme='dark'] .ant-progress-circle.ant-progress-status-success .ant-progress-text { | |
6295 | + color: #55d187; | |
6296 | +} | |
6297 | + | |
6298 | +[data-theme='dark'] .ant-timeline { | |
6299 | + color: #c9d1d9; | |
6300 | +} | |
6301 | + | |
6302 | +[data-theme='dark'] .ant-timeline-item-tail { | |
6303 | + border-left: 2px solid #303030; | |
6304 | +} | |
6305 | + | |
6306 | +[data-theme='dark'] .ant-timeline-item-pending .ant-timeline-item-head { | |
6307 | + background-color: transparent; | |
6308 | +} | |
6309 | + | |
6310 | +[data-theme='dark'] .ant-timeline-item-head { | |
6311 | + border: 2px solid transparent; | |
6312 | + background-color: #151515; | |
6313 | +} | |
6314 | + | |
6315 | +[data-theme='dark'] .ant-timeline-item-head-blue { | |
6316 | + border-color: #0960bd; | |
6317 | + color: #0960bd; | |
6318 | +} | |
6319 | + | |
6320 | +[data-theme='dark'] .ant-timeline-item-head-red { | |
6321 | + border-color: #ed6f6f; | |
6322 | + color: #ed6f6f; | |
6323 | +} | |
6324 | + | |
6325 | +[data-theme='dark'] .ant-timeline-item-head-green { | |
6326 | + border-color: #55d187; | |
6327 | + color: #55d187; | |
6328 | +} | |
6329 | + | |
6330 | +[data-theme='dark'] .ant-timeline-item-head-gray { | |
6331 | + border-color: rgb(255 255 255 / 30%); | |
6332 | + color: rgb(255 255 255 / 30%); | |
6333 | +} | |
6334 | + | |
6335 | +[data-theme='dark'] | |
6336 | + .ant-timeline.ant-timeline-pending | |
6337 | + .ant-timeline-item-last | |
6338 | + .ant-timeline-item-tail { | |
6339 | + border-left: 2px dotted #303030; | |
6340 | +} | |
6341 | + | |
6342 | +[data-theme='dark'] | |
6343 | + .ant-timeline.ant-timeline-reverse | |
6344 | + .ant-timeline-item-pending | |
6345 | + .ant-timeline-item-tail { | |
6346 | + border-left: 2px dotted #303030; | |
6347 | +} | |
6348 | + | |
6349 | +[data-theme='dark'] .ant-timeline-rtl .ant-timeline-item-tail { | |
6350 | + border-right: 2px solid #303030; | |
6351 | +} | |
6352 | + | |
6353 | +[data-theme='dark'] | |
6354 | + .ant-timeline-rtl.ant-timeline.ant-timeline-pending | |
6355 | + .ant-timeline-item-last | |
6356 | + .ant-timeline-item-tail { | |
6357 | + border-right: 2px dotted #303030; | |
6358 | +} | |
6359 | + | |
6360 | +[data-theme='dark'] | |
6361 | + .ant-timeline-rtl.ant-timeline.ant-timeline-reverse | |
6362 | + .ant-timeline-item-pending | |
6363 | + .ant-timeline-item-tail { | |
6364 | + border-right: 2px dotted #303030; | |
6365 | +} | |
6366 | + | |
6367 | +[data-theme='dark'] .ant-input-number-affix-wrapper { | |
6368 | + border: 1px solid #303030; | |
6369 | + background-color: transparent; | |
6370 | + color: #c9d1d9; | |
6371 | +} | |
6372 | + | |
6373 | +[data-theme='dark'] .ant-input-number-affix-wrapper::placeholder { | |
6374 | + color: rgb(255 255 255 / 30%); | |
6375 | +} | |
6376 | + | |
6377 | +[data-theme='dark'] .ant-input-number-affix-wrapper:hover { | |
6378 | + border-color: #2a7dc9; | |
6379 | +} | |
6380 | + | |
6381 | +[data-theme='dark'] .ant-input-number-affix-wrapper-focused, | |
6382 | +[data-theme='dark'] .ant-input-number-affix-wrapper:focus { | |
6383 | + border-color: #0960bd; | |
6384 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
6385 | +} | |
6386 | + | |
6387 | +[data-theme='dark'] .ant-input-number-affix-wrapper-disabled { | |
6388 | + border-color: #303030; | |
6389 | + background-color: rgb(255 255 255 / 8%); | |
6390 | + color: rgb(255 255 255 / 30%); | |
6391 | +} | |
6392 | + | |
6393 | +[data-theme='dark'] .ant-input-number-affix-wrapper-disabled:hover { | |
6394 | + border-color: #303030; | |
6395 | +} | |
6396 | + | |
6397 | +[data-theme='dark'] .ant-input-number-affix-wrapper[disabled] { | |
6398 | + border-color: #303030; | |
6399 | + background-color: rgb(255 255 255 / 8%); | |
6400 | + color: rgb(255 255 255 / 30%); | |
6401 | +} | |
6402 | + | |
6403 | +[data-theme='dark'] .ant-input-number-affix-wrapper[disabled]:hover { | |
6404 | + border-color: #303030; | |
6405 | +} | |
6406 | + | |
6407 | +[data-theme='dark'] .ant-input-number-affix-wrapper-borderless, | |
6408 | +[data-theme='dark'] .ant-input-number-affix-wrapper-borderless-disabled, | |
6409 | +[data-theme='dark'] .ant-input-number-affix-wrapper-borderless-focused, | |
6410 | +[data-theme='dark'] .ant-input-number-affix-wrapper-borderless:focus, | |
6411 | +[data-theme='dark'] .ant-input-number-affix-wrapper-borderless:hover, | |
6412 | +[data-theme='dark'] .ant-input-number-affix-wrapper-borderless[disabled] { | |
6413 | + background-color: transparent; | |
6414 | +} | |
6415 | + | |
6416 | +[data-theme='dark'] | |
6417 | + .ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover { | |
6418 | + border-color: #2a7dc9; | |
6419 | +} | |
6420 | + | |
6421 | +[data-theme='dark'] .ant-input-number-affix-wrapper-disabled .ant-input-number[disabled] { | |
6422 | + background: 0 0; | |
6423 | +} | |
6424 | + | |
6425 | +[data-theme='dark'] .ant-input-number { | |
6426 | + border: 1px solid #303030; | |
6427 | + background-color: transparent; | |
6428 | + color: #c9d1d9; | |
6429 | +} | |
6430 | + | |
6431 | +[data-theme='dark'] .ant-input-number::placeholder { | |
6432 | + color: rgb(255 255 255 / 30%); | |
6433 | +} | |
6434 | + | |
6435 | +[data-theme='dark'] .ant-input-number-focused, | |
6436 | +[data-theme='dark'] .ant-input-number:focus { | |
6437 | + border-color: #0960bd; | |
6438 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
6439 | +} | |
6440 | + | |
6441 | +[data-theme='dark'] .ant-input-number[disabled] { | |
6442 | + border-color: #303030; | |
6443 | + background-color: rgb(255 255 255 / 8%); | |
6444 | + color: rgb(255 255 255 / 30%); | |
6445 | +} | |
6446 | + | |
6447 | +[data-theme='dark'] .ant-input-number[disabled]:hover { | |
6448 | + border-color: #303030; | |
6449 | +} | |
6450 | + | |
6451 | +[data-theme='dark'] .ant-input-number-borderless, | |
6452 | +[data-theme='dark'] .ant-input-number-borderless-disabled, | |
6453 | +[data-theme='dark'] .ant-input-number-borderless-focused, | |
6454 | +[data-theme='dark'] .ant-input-number-borderless:focus, | |
6455 | +[data-theme='dark'] .ant-input-number-borderless:hover, | |
6456 | +[data-theme='dark'] .ant-input-number-borderless[disabled] { | |
6457 | + background-color: transparent; | |
6458 | +} | |
6459 | + | |
6460 | +[data-theme='dark'] .ant-input-number-group { | |
6461 | + color: #c9d1d9; | |
6462 | +} | |
6463 | + | |
6464 | +[data-theme='dark'] .ant-input-number-group-addon { | |
6465 | + border: 1px solid #303030; | |
6466 | + background-color: rgb(255 255 255 / 4%); | |
6467 | + color: #c9d1d9; | |
6468 | +} | |
6469 | + | |
6470 | +[data-theme='dark'] | |
6471 | + .ant-input-number-group-addon | |
6472 | + .ant-select.ant-select-single:not(.ant-select-customize-input) | |
6473 | + .ant-select-selector { | |
6474 | + border: 1px solid transparent; | |
6475 | +} | |
6476 | + | |
6477 | +[data-theme='dark'] .ant-input-number-group-addon .ant-select-focused .ant-select-selector, | |
6478 | +[data-theme='dark'] .ant-input-number-group-addon .ant-select-open .ant-select-selector { | |
6479 | + color: #0960bd; | |
6480 | +} | |
6481 | + | |
6482 | +[data-theme='dark'] .ant-input-number-group-addon .ant-cascader-picker { | |
6483 | + background-color: transparent; | |
6484 | +} | |
6485 | + | |
6486 | +[data-theme='dark'] .ant-input-number-handler { | |
6487 | + border-left: 1px solid #303030; | |
6488 | + color: #8b949e; | |
6489 | +} | |
6490 | + | |
6491 | +[data-theme='dark'] .ant-input-number-handler:active { | |
6492 | + background: rgb(255 255 255 / 8%); | |
6493 | +} | |
6494 | + | |
6495 | +[data-theme='dark'] .ant-input-number-handler:hover .ant-input-number-handler-down-inner, | |
6496 | +[data-theme='dark'] .ant-input-number-handler:hover .ant-input-number-handler-up-inner { | |
6497 | + color: #2a7dc9; | |
6498 | +} | |
6499 | + | |
6500 | +[data-theme='dark'] .ant-input-number-handler-down-inner, | |
6501 | +[data-theme='dark'] .ant-input-number-handler-up-inner { | |
6502 | + color: #8b949e; | |
6503 | +} | |
6504 | + | |
6505 | +[data-theme='dark'] .ant-input-number:hover { | |
6506 | + border-color: #2a7dc9; | |
6507 | +} | |
6508 | + | |
6509 | +[data-theme='dark'] .ant-input-number-focused { | |
6510 | + border-color: #0960bd; | |
6511 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
6512 | +} | |
6513 | + | |
6514 | +[data-theme='dark'] .ant-input-number-disabled { | |
6515 | + border-color: #303030; | |
6516 | + background-color: rgb(255 255 255 / 8%); | |
6517 | + color: rgb(255 255 255 / 30%); | |
6518 | +} | |
6519 | + | |
6520 | +[data-theme='dark'] .ant-input-number-disabled:hover { | |
6521 | + border-color: #303030; | |
6522 | +} | |
6523 | + | |
6524 | +[data-theme='dark'] .ant-input-number-input { | |
6525 | + background-color: transparent; | |
6526 | +} | |
6527 | + | |
6528 | +[data-theme='dark'] .ant-input-number-input::placeholder { | |
6529 | + color: rgb(255 255 255 / 30%); | |
6530 | +} | |
6531 | + | |
6532 | +[data-theme='dark'] .ant-input-number-handler-wrap { | |
6533 | + background: #151515; | |
6534 | +} | |
6535 | + | |
6536 | +[data-theme='dark'] .ant-input-number-handler-down { | |
6537 | + border-top: 1px solid #303030; | |
6538 | +} | |
6539 | + | |
6540 | +[data-theme='dark'] | |
6541 | + .ant-input-number-handler-down-disabled:hover | |
6542 | + .ant-input-number-handler-down-inner, | |
6543 | +[data-theme='dark'] .ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner { | |
6544 | + color: rgb(255 255 255 / 30%); | |
6545 | +} | |
6546 | + | |
6547 | +[data-theme='dark'] .ant-input-number-out-of-range input { | |
6548 | + color: #ed6f6f; | |
6549 | +} | |
6550 | + | |
6551 | +[data-theme='dark'] .ant-input-number-rtl .ant-input-number-handler { | |
6552 | + border-right: 1px solid #303030; | |
6553 | +} | |
6554 | + | |
6555 | +[data-theme='dark'] | |
6556 | + .ant-transfer-customize-list | |
6557 | + .ant-table-wrapper | |
6558 | + .ant-table-small | |
6559 | + > .ant-table-content | |
6560 | + > .ant-table-body | |
6561 | + > table | |
6562 | + > .ant-table-thead | |
6563 | + > tr | |
6564 | + > th { | |
6565 | + background: #1d1d1d; | |
6566 | +} | |
6567 | + | |
6568 | +[data-theme='dark'] | |
6569 | + .ant-transfer-customize-list | |
6570 | + .ant-table-wrapper | |
6571 | + .ant-table-small | |
6572 | + > .ant-table-content | |
6573 | + .ant-table-row:last-child | |
6574 | + td { | |
6575 | + border-bottom: 1px solid #303030; | |
6576 | +} | |
6577 | + | |
6578 | +[data-theme='dark'] .ant-transfer-customize-list .ant-input[disabled] { | |
6579 | + background-color: transparent; | |
6580 | +} | |
6581 | + | |
6582 | +[data-theme='dark'] .ant-transfer { | |
6583 | + color: #c9d1d9; | |
6584 | +} | |
6585 | + | |
6586 | +[data-theme='dark'] .ant-transfer-disabled .ant-transfer-list { | |
6587 | + background: rgb(255 255 255 / 8%); | |
6588 | +} | |
6589 | + | |
6590 | +[data-theme='dark'] .ant-transfer-list { | |
6591 | + border: 1px solid #303030; | |
6592 | +} | |
6593 | + | |
6594 | +[data-theme='dark'] .ant-transfer-list-search .anticon-search { | |
6595 | + color: rgb(255 255 255 / 30%); | |
6596 | +} | |
6597 | + | |
6598 | +[data-theme='dark'] .ant-transfer-list-header { | |
6599 | + border-bottom: 1px solid #303030; | |
6600 | + background: #151515; | |
6601 | + color: #c9d1d9; | |
6602 | +} | |
6603 | + | |
6604 | +[data-theme='dark'] .ant-transfer-list-content-item-remove { | |
6605 | + color: #303030; | |
6606 | +} | |
6607 | + | |
6608 | +[data-theme='dark'] .ant-transfer-list-content-item-remove:focus, | |
6609 | +[data-theme='dark'] .ant-transfer-list-content-item-remove:hover { | |
6610 | + color: #2a7dc9; | |
6611 | +} | |
6612 | + | |
6613 | +[data-theme='dark'] .ant-transfer-list-content-item-remove:active { | |
6614 | + color: #004496; | |
6615 | +} | |
6616 | + | |
6617 | +[data-theme='dark'] .ant-transfer-list-content-item-remove:hover { | |
6618 | + color: #2a7dc9; | |
6619 | +} | |
6620 | + | |
6621 | +[data-theme='dark'] | |
6622 | + .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover { | |
6623 | + background-color: #262626; | |
6624 | +} | |
6625 | + | |
6626 | +[data-theme='dark'] | |
6627 | + .ant-transfer-list-content-item:not( | |
6628 | + .ant-transfer-list-content-item-disabled | |
6629 | + ).ant-transfer-list-content-item-checked:hover { | |
6630 | + background-color: #0e161f; | |
6631 | +} | |
6632 | + | |
6633 | +[data-theme='dark'] | |
6634 | + .ant-transfer-list-content-show-remove | |
6635 | + .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover { | |
6636 | + background: 0 0; | |
6637 | +} | |
6638 | + | |
6639 | +[data-theme='dark'] .ant-transfer-list-content-item-checked { | |
6640 | + background-color: #111b26; | |
6641 | +} | |
6642 | + | |
6643 | +[data-theme='dark'] .ant-transfer-list-content-item-disabled { | |
6644 | + color: rgb(255 255 255 / 30%); | |
6645 | +} | |
6646 | + | |
6647 | +[data-theme='dark'] .ant-transfer-list-pagination { | |
6648 | + border-top: 1px solid #303030; | |
6649 | +} | |
6650 | + | |
6651 | +[data-theme='dark'] .ant-transfer-list-body-not-found { | |
6652 | + color: rgb(255 255 255 / 30%); | |
6653 | +} | |
6654 | + | |
6655 | +[data-theme='dark'] .ant-transfer-list-footer { | |
6656 | + border-top: 1px solid #303030; | |
6657 | +} | |
6658 | + | |
6659 | +[data-theme='dark'] .ant-tree.ant-tree-directory .ant-tree-treenode:hover::before { | |
6660 | + background: rgb(255 255 255 / 8%); | |
6661 | +} | |
6662 | + | |
6663 | +[data-theme='dark'] | |
6664 | + .ant-tree.ant-tree-directory | |
6665 | + .ant-tree-treenode | |
6666 | + .ant-tree-node-content-wrapper:hover { | |
6667 | + background: 0 0; | |
6668 | +} | |
6669 | + | |
6670 | +[data-theme='dark'] | |
6671 | + .ant-tree.ant-tree-directory | |
6672 | + .ant-tree-treenode | |
6673 | + .ant-tree-node-content-wrapper.ant-tree-node-selected { | |
6674 | + background: 0 0; | |
6675 | + color: #fff; | |
6676 | +} | |
6677 | + | |
6678 | +[data-theme='dark'] .ant-tree.ant-tree-directory .ant-tree-treenode-selected::before, | |
6679 | +[data-theme='dark'] .ant-tree.ant-tree-directory .ant-tree-treenode-selected:hover::before { | |
6680 | + background: #0960bd; | |
6681 | +} | |
6682 | + | |
6683 | +[data-theme='dark'] .ant-tree.ant-tree-directory .ant-tree-treenode-selected .ant-tree-switcher { | |
6684 | + color: #fff; | |
6685 | +} | |
6686 | + | |
6687 | +[data-theme='dark'] | |
6688 | + .ant-tree.ant-tree-directory | |
6689 | + .ant-tree-treenode-selected | |
6690 | + .ant-tree-node-content-wrapper { | |
6691 | + background: 0 0; | |
6692 | + color: #fff; | |
6693 | +} | |
6694 | + | |
6695 | +[data-theme='dark'] .ant-tree-checkbox { | |
6696 | + color: #c9d1d9; | |
6697 | +} | |
6698 | + | |
6699 | +[data-theme='dark'] .ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner, | |
6700 | +[data-theme='dark'] .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner, | |
6701 | +[data-theme='dark'] .ant-tree-checkbox:hover .ant-tree-checkbox-inner { | |
6702 | + border-color: #0960bd; | |
6703 | +} | |
6704 | + | |
6705 | +[data-theme='dark'] .ant-tree-checkbox-checked::after { | |
6706 | + border: 1px solid #0960bd; | |
6707 | +} | |
6708 | + | |
6709 | +[data-theme='dark'] .ant-tree-checkbox-inner { | |
6710 | + border: 1px solid #303030; | |
6711 | + background-color: transparent; | |
6712 | +} | |
6713 | + | |
6714 | +[data-theme='dark'] .ant-tree-checkbox-inner::after { | |
6715 | + border: 2px solid #fff; | |
6716 | +} | |
6717 | + | |
6718 | +[data-theme='dark'] .ant-tree-checkbox-checked .ant-tree-checkbox-inner::after { | |
6719 | + border: 2px solid #fff; | |
6720 | +} | |
6721 | + | |
6722 | +[data-theme='dark'] .ant-tree-checkbox-checked .ant-tree-checkbox-inner { | |
6723 | + border-color: #0960bd; | |
6724 | + background-color: #0960bd; | |
6725 | +} | |
6726 | + | |
6727 | +[data-theme='dark'] | |
6728 | + .ant-tree-checkbox-disabled.ant-tree-checkbox-checked | |
6729 | + .ant-tree-checkbox-inner::after { | |
6730 | + border-color: rgb(255 255 255 / 30%); | |
6731 | +} | |
6732 | + | |
6733 | +[data-theme='dark'] .ant-tree-checkbox-disabled .ant-tree-checkbox-inner { | |
6734 | + border-color: #303030 !important; | |
6735 | + background-color: rgb(255 255 255 / 8%); | |
6736 | +} | |
6737 | + | |
6738 | +[data-theme='dark'] .ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after { | |
6739 | + border-color: rgb(255 255 255 / 8%); | |
6740 | +} | |
6741 | + | |
6742 | +[data-theme='dark'] .ant-tree-checkbox-disabled + span { | |
6743 | + color: rgb(255 255 255 / 30%); | |
6744 | +} | |
6745 | + | |
6746 | +[data-theme='dark'] .ant-tree-checkbox-wrapper { | |
6747 | + color: #c9d1d9; | |
6748 | +} | |
6749 | + | |
6750 | +[data-theme='dark'] .ant-tree-checkbox-group { | |
6751 | + color: #c9d1d9; | |
6752 | +} | |
6753 | + | |
6754 | +[data-theme='dark'] .ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner { | |
6755 | + border-color: #303030; | |
6756 | + background-color: transparent; | |
6757 | +} | |
6758 | + | |
6759 | +[data-theme='dark'] .ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner::after { | |
6760 | + background-color: #0960bd; | |
6761 | +} | |
6762 | + | |
6763 | +[data-theme='dark'] | |
6764 | + .ant-tree-checkbox-indeterminate.ant-tree-checkbox-disabled | |
6765 | + .ant-tree-checkbox-inner::after { | |
6766 | + border-color: rgb(255 255 255 / 30%); | |
6767 | + background-color: rgb(255 255 255 / 30%); | |
6768 | +} | |
6769 | + | |
6770 | +[data-theme='dark'] .ant-tree { | |
6771 | + background: 0 0; | |
6772 | + color: #c9d1d9; | |
6773 | +} | |
6774 | + | |
6775 | +[data-theme='dark'] .ant-tree-focused:not(:hover):not(.ant-tree-active-focused) { | |
6776 | + background: rgb(255 255 255 / 8%); | |
6777 | +} | |
6778 | + | |
6779 | +[data-theme='dark'] | |
6780 | + .ant-tree.ant-tree-block-node | |
6781 | + .ant-tree-list-holder-inner | |
6782 | + .ant-tree-treenode.dragging::after { | |
6783 | + border: 1px solid #0960bd; | |
6784 | +} | |
6785 | + | |
6786 | +[data-theme='dark'] .ant-tree .ant-tree-treenode-disabled .ant-tree-node-content-wrapper { | |
6787 | + color: rgb(255 255 255 / 30%); | |
6788 | +} | |
6789 | + | |
6790 | +[data-theme='dark'] .ant-tree .ant-tree-treenode-disabled .ant-tree-node-content-wrapper:hover { | |
6791 | + background: 0 0; | |
6792 | +} | |
6793 | + | |
6794 | +[data-theme='dark'] .ant-tree .ant-tree-treenode-active .ant-tree-node-content-wrapper { | |
6795 | + background: rgb(255 255 255 / 8%); | |
6796 | +} | |
6797 | + | |
6798 | +[data-theme='dark'] .ant-tree-switcher-loading-icon { | |
6799 | + color: #0960bd; | |
6800 | +} | |
6801 | + | |
6802 | +[data-theme='dark'] .ant-tree-switcher-leaf-line::before { | |
6803 | + border-right: 1px solid #d9d9d9; | |
6804 | +} | |
6805 | + | |
6806 | +[data-theme='dark'] .ant-tree-switcher-leaf-line::after { | |
6807 | + border-bottom: 1px solid #d9d9d9; | |
6808 | +} | |
6809 | + | |
6810 | +[data-theme='dark'] .ant-tree .ant-tree-node-content-wrapper { | |
6811 | + background: 0 0; | |
6812 | +} | |
6813 | + | |
6814 | +[data-theme='dark'] .ant-tree .ant-tree-node-content-wrapper:hover { | |
6815 | + background-color: rgb(255 255 255 / 8%); | |
6816 | +} | |
6817 | + | |
6818 | +[data-theme='dark'] .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected { | |
6819 | + background-color: #11263c; | |
6820 | +} | |
6821 | + | |
6822 | +[data-theme='dark'] .ant-tree-unselectable .ant-tree-node-content-wrapper:hover { | |
6823 | + background-color: transparent; | |
6824 | +} | |
6825 | + | |
6826 | +[data-theme='dark'] .ant-tree-node-content-wrapper .ant-tree-drop-indicator { | |
6827 | + background-color: #0960bd; | |
6828 | +} | |
6829 | + | |
6830 | +[data-theme='dark'] .ant-tree-node-content-wrapper .ant-tree-drop-indicator::after { | |
6831 | + border: 2px solid #0960bd; | |
6832 | + background-color: transparent; | |
6833 | +} | |
6834 | + | |
6835 | +[data-theme='dark'] .ant-tree .ant-tree-treenode.drop-container > [draggable] { | |
6836 | + box-shadow: 0 0 0 2px #0960bd; | |
6837 | +} | |
6838 | + | |
6839 | +[data-theme='dark'] .ant-tree-show-line .ant-tree-indent-unit::before { | |
6840 | + border-right: 1px solid #303030; | |
6841 | +} | |
6842 | + | |
6843 | +[data-theme='dark'] .ant-tree-show-line .ant-tree-switcher { | |
6844 | + background: #151515; | |
6845 | +} | |
6846 | + | |
6847 | +[data-theme='dark'] .ant-tree-rtl.ant-tree-show-line .ant-tree-indent-unit::before { | |
6848 | + border-left: 1px solid #303030; | |
6849 | +} | |
6850 | + | |
6851 | +[data-theme='dark'] .ant-upload { | |
6852 | + color: #c9d1d9; | |
6853 | +} | |
6854 | + | |
6855 | +[data-theme='dark'] .ant-upload.ant-upload-select-picture-card { | |
6856 | + border: 1px dashed #303030; | |
6857 | + background-color: rgb(255 255 255 / 4%); | |
6858 | +} | |
6859 | + | |
6860 | +[data-theme='dark'] .ant-upload.ant-upload-select-picture-card:hover { | |
6861 | + border-color: #0960bd; | |
6862 | +} | |
6863 | + | |
6864 | +[data-theme='dark'] .ant-upload-disabled.ant-upload.ant-upload-select-picture-card:hover { | |
6865 | + border-color: #303030; | |
6866 | +} | |
6867 | + | |
6868 | +[data-theme='dark'] .ant-upload.ant-upload-drag { | |
6869 | + border: 1px dashed #303030; | |
6870 | + background: rgb(255 255 255 / 4%); | |
6871 | +} | |
6872 | + | |
6873 | +[data-theme='dark'] .ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) { | |
6874 | + border-color: #004496; | |
6875 | +} | |
6876 | + | |
6877 | +[data-theme='dark'] .ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover { | |
6878 | + border-color: #2a7dc9; | |
6879 | +} | |
6880 | + | |
6881 | +[data-theme='dark'] .ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon { | |
6882 | + color: #2a7dc9; | |
6883 | +} | |
6884 | + | |
6885 | +[data-theme='dark'] .ant-upload.ant-upload-drag p.ant-upload-text { | |
6886 | + color: rgb(255 255 255 / 65%); | |
6887 | +} | |
6888 | + | |
6889 | +[data-theme='dark'] .ant-upload.ant-upload-drag p.ant-upload-hint { | |
6890 | + color: #8b949e; | |
6891 | +} | |
6892 | + | |
6893 | +[data-theme='dark'] .ant-upload.ant-upload-drag .anticon-plus { | |
6894 | + color: rgb(255 255 255 / 30%); | |
6895 | +} | |
6896 | + | |
6897 | +[data-theme='dark'] .ant-upload.ant-upload-drag .anticon-plus:hover { | |
6898 | + color: #8b949e; | |
6899 | +} | |
6900 | + | |
6901 | +[data-theme='dark'] .ant-upload.ant-upload-drag:hover .anticon-plus { | |
6902 | + color: #8b949e; | |
6903 | +} | |
6904 | + | |
6905 | +[data-theme='dark'] .ant-upload-list { | |
6906 | + color: #c9d1d9; | |
6907 | +} | |
6908 | + | |
6909 | +[data-theme='dark'] .ant-upload-list-item-card-actions .anticon { | |
6910 | + color: #8b949e; | |
6911 | +} | |
6912 | + | |
6913 | +[data-theme='dark'] .ant-upload-list-item-info .ant-upload-text-icon .anticon, | |
6914 | +[data-theme='dark'] .ant-upload-list-item-info .anticon-loading .anticon { | |
6915 | + color: #8b949e; | |
6916 | +} | |
6917 | + | |
6918 | +[data-theme='dark'] .ant-upload-list-item .anticon-close { | |
6919 | + color: #8b949e; | |
6920 | +} | |
6921 | + | |
6922 | +[data-theme='dark'] .ant-upload-list-item .anticon-close:hover { | |
6923 | + color: #c9d1d9; | |
6924 | +} | |
6925 | + | |
6926 | +[data-theme='dark'] .ant-upload-list-item:hover .ant-upload-list-item-info { | |
6927 | + background-color: rgb(255 255 255 / 8%); | |
6928 | +} | |
6929 | + | |
6930 | +[data-theme='dark'] .ant-upload-list-item-error, | |
6931 | +[data-theme='dark'] .ant-upload-list-item-error .ant-upload-list-item-name, | |
6932 | +[data-theme='dark'] .ant-upload-list-item-error .ant-upload-text-icon > .anticon { | |
6933 | + color: #ed6f6f; | |
6934 | +} | |
6935 | + | |
6936 | +[data-theme='dark'] .ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon { | |
6937 | + color: #ed6f6f; | |
6938 | +} | |
6939 | + | |
6940 | +[data-theme='dark'] .ant-upload-list-picture .ant-upload-list-item, | |
6941 | +[data-theme='dark'] .ant-upload-list-picture-card .ant-upload-list-item { | |
6942 | + border: 1px solid #303030; | |
6943 | +} | |
6944 | + | |
6945 | +[data-theme='dark'] .ant-upload-list-picture .ant-upload-list-item:hover, | |
6946 | +[data-theme='dark'] .ant-upload-list-picture-card .ant-upload-list-item:hover { | |
6947 | + background: 0 0; | |
6948 | +} | |
6949 | + | |
6950 | +[data-theme='dark'] .ant-upload-list-picture .ant-upload-list-item-error, | |
6951 | +[data-theme='dark'] .ant-upload-list-picture-card .ant-upload-list-item-error { | |
6952 | + border-color: #ed6f6f; | |
6953 | +} | |
6954 | + | |
6955 | +[data-theme='dark'] .ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info, | |
6956 | +[data-theme='dark'] | |
6957 | + .ant-upload-list-picture-card | |
6958 | + .ant-upload-list-item:hover | |
6959 | + .ant-upload-list-item-info { | |
6960 | + background: 0 0; | |
6961 | +} | |
6962 | + | |
6963 | +[data-theme='dark'] | |
6964 | + .ant-upload-list-picture | |
6965 | + .ant-upload-list-item-error | |
6966 | + .ant-upload-list-item-thumbnail | |
6967 | + .anticon | |
6968 | + svg | |
6969 | + path[fill='#e6f7ff'], | |
6970 | +[data-theme='dark'] | |
6971 | + .ant-upload-list-picture-card | |
6972 | + .ant-upload-list-item-error | |
6973 | + .ant-upload-list-item-thumbnail | |
6974 | + .anticon | |
6975 | + svg | |
6976 | + path[fill='#e6f7ff'] { | |
6977 | + fill: #2b1316; | |
6978 | +} | |
6979 | + | |
6980 | +[data-theme='dark'] | |
6981 | + .ant-upload-list-picture | |
6982 | + .ant-upload-list-item-error | |
6983 | + .ant-upload-list-item-thumbnail | |
6984 | + .anticon | |
6985 | + svg | |
6986 | + path[fill='#1890ff'], | |
6987 | +[data-theme='dark'] | |
6988 | + .ant-upload-list-picture-card | |
6989 | + .ant-upload-list-item-error | |
6990 | + .ant-upload-list-item-thumbnail | |
6991 | + .anticon | |
6992 | + svg | |
6993 | + path[fill='#1890ff'] { | |
6994 | + fill: #ed6f6f; | |
6995 | +} | |
6996 | + | |
6997 | +[data-theme='dark'] .ant-upload-list-picture-card .ant-upload-list-item-info::before { | |
6998 | + background-color: rgb(0 0 0 / 50%); | |
6999 | +} | |
7000 | + | |
7001 | +[data-theme='dark'] .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete, | |
7002 | +[data-theme='dark'] .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download, | |
7003 | +[data-theme='dark'] .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye { | |
7004 | + color: rgb(255 255 255 / 85%); | |
7005 | +} | |
7006 | + | |
7007 | +[data-theme='dark'] | |
7008 | + .ant-upload-list-picture-card | |
7009 | + .ant-upload-list-item-actions | |
7010 | + .anticon-delete:hover, | |
7011 | +[data-theme='dark'] | |
7012 | + .ant-upload-list-picture-card | |
7013 | + .ant-upload-list-item-actions | |
7014 | + .anticon-download:hover, | |
7015 | +[data-theme='dark'] .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye:hover { | |
7016 | + color: #fff; | |
7017 | +} | |
7018 | + | |
7019 | +[data-theme='dark'] | |
7020 | + .ant-upload-list-picture-card | |
7021 | + .ant-upload-list-item-uploading.ant-upload-list-item { | |
7022 | + background-color: rgb(255 255 255 / 4%); | |
7023 | +} | |
7024 | + | |
7025 | +[data-theme='dark'] .ant-layout { | |
7026 | + background: #000; | |
7027 | +} | |
7028 | + | |
7029 | +[data-theme='dark'] .ant-layout-header { | |
7030 | + background: #1f1f1f; | |
7031 | + color: #c9d1d9; | |
7032 | +} | |
7033 | + | |
7034 | +[data-theme='dark'] .ant-layout-footer { | |
7035 | + background: #000; | |
7036 | + color: #c9d1d9; | |
7037 | +} | |
7038 | + | |
7039 | +[data-theme='dark'] .ant-layout-sider { | |
7040 | + background: #1f1f1f; | |
7041 | +} | |
7042 | + | |
7043 | +[data-theme='dark'] .ant-layout-sider-trigger { | |
7044 | + background: #262626; | |
7045 | + color: #fff; | |
7046 | +} | |
7047 | + | |
7048 | +[data-theme='dark'] .ant-layout-sider-zero-width-trigger { | |
7049 | + background: #1f1f1f; | |
7050 | + color: #fff; | |
7051 | +} | |
7052 | + | |
7053 | +[data-theme='dark'] .ant-layout-sider-zero-width-trigger::after { | |
7054 | + background: 0 0; | |
7055 | +} | |
7056 | + | |
7057 | +[data-theme='dark'] .ant-layout-sider-zero-width-trigger:hover::after { | |
7058 | + background: rgb(255 255 255 / 10%); | |
7059 | +} | |
7060 | + | |
7061 | +[data-theme='dark'] .ant-layout-sider-light { | |
7062 | + background: #fff; | |
7063 | +} | |
7064 | + | |
7065 | +[data-theme='dark'] .ant-layout-sider-light .ant-layout-sider-trigger { | |
7066 | + background: #fff; | |
7067 | + color: #c9d1d9; | |
7068 | +} | |
7069 | + | |
7070 | +[data-theme='dark'] .ant-layout-sider-light .ant-layout-sider-zero-width-trigger { | |
7071 | + background: #fff; | |
7072 | + color: #c9d1d9; | |
7073 | +} | |
7074 | + | |
7075 | +[data-theme='dark'] .ant-anchor { | |
7076 | + color: #c9d1d9; | |
7077 | +} | |
7078 | + | |
7079 | +[data-theme='dark'] .ant-anchor-wrapper { | |
7080 | + background-color: transparent; | |
7081 | +} | |
7082 | + | |
7083 | +[data-theme='dark'] .ant-anchor-ink::before { | |
7084 | + background-color: #303030; | |
7085 | +} | |
7086 | + | |
7087 | +[data-theme='dark'] .ant-anchor-ink-ball { | |
7088 | + border: 2px solid #0960bd; | |
7089 | + background-color: #151515; | |
7090 | +} | |
7091 | + | |
7092 | +[data-theme='dark'] .ant-anchor-link-title { | |
7093 | + color: #c9d1d9; | |
7094 | +} | |
7095 | + | |
7096 | +[data-theme='dark'] .ant-anchor-link-active > .ant-anchor-link-title { | |
7097 | + color: #0960bd; | |
7098 | +} | |
7099 | + | |
7100 | +[data-theme='dark'] .ant-comment { | |
7101 | + background-color: transparent; | |
7102 | +} | |
7103 | + | |
7104 | +[data-theme='dark'] .ant-comment-content-author-name { | |
7105 | + color: #8b949e; | |
7106 | +} | |
7107 | + | |
7108 | +[data-theme='dark'] .ant-comment-content-author-name > * { | |
7109 | + color: #8b949e; | |
7110 | +} | |
7111 | + | |
7112 | +[data-theme='dark'] .ant-comment-content-author-name > :hover { | |
7113 | + color: #8b949e; | |
7114 | +} | |
7115 | + | |
7116 | +[data-theme='dark'] .ant-comment-content-author-time { | |
7117 | + color: rgb(255 255 255 / 30%); | |
7118 | +} | |
7119 | + | |
7120 | +[data-theme='dark'] .ant-comment-actions > li { | |
7121 | + color: #8b949e; | |
7122 | +} | |
7123 | + | |
7124 | +[data-theme='dark'] .ant-comment-actions > li > span { | |
7125 | + color: #8b949e; | |
7126 | +} | |
7127 | + | |
7128 | +[data-theme='dark'] .ant-comment-actions > li > span:hover { | |
7129 | + color: rgb(255 255 255 / 65%); | |
7130 | +} | |
7131 | + | |
7132 | +[data-theme='dark'] .ant-drawer-title { | |
7133 | + color: rgb(255 255 255 / 65%); | |
7134 | +} | |
7135 | + | |
7136 | +[data-theme='dark'] .ant-drawer-content { | |
7137 | + background-color: #1f1f1f; | |
7138 | +} | |
7139 | + | |
7140 | +[data-theme='dark'] .ant-drawer-close { | |
7141 | + background: 0 0; | |
7142 | + color: #8b949e; | |
7143 | +} | |
7144 | + | |
7145 | +[data-theme='dark'] .ant-drawer-close:focus, | |
7146 | +[data-theme='dark'] .ant-drawer-close:hover { | |
7147 | + color: rgb(255 255 255 / 75%); | |
7148 | +} | |
7149 | + | |
7150 | +[data-theme='dark'] .ant-drawer-header { | |
7151 | + border-bottom: 1px solid #303030; | |
7152 | + background: #1f1f1f; | |
7153 | + color: #c9d1d9; | |
7154 | +} | |
7155 | + | |
7156 | +[data-theme='dark'] .ant-drawer-footer { | |
7157 | + border-top: 1px solid #303030; | |
7158 | +} | |
7159 | + | |
7160 | +[data-theme='dark'] .ant-drawer-mask { | |
7161 | + background-color: rgb(0 0 0 / 45%); | |
7162 | +} | |
7163 | + | |
7164 | +[data-theme='dark'] .ant-drawer .ant-picker-clear { | |
7165 | + background: #1f1f1f; | |
7166 | +} | |
7167 | + | |
7168 | +[data-theme='dark'] .ant-drawer .ant-anchor-wrapper, | |
7169 | +[data-theme='dark'] .ant-drawer .ant-card, | |
7170 | +[data-theme='dark'] .ant-drawer .ant-collapse-content, | |
7171 | +[data-theme='dark'] .ant-drawer .ant-picker-clear, | |
7172 | +[data-theme='dark'] .ant-drawer .ant-slider-handle, | |
7173 | +[data-theme='dark'] .ant-drawer .ant-timeline-item-head { | |
7174 | + background-color: #1f1f1f; | |
7175 | +} | |
7176 | + | |
7177 | +[data-theme='dark'] .ant-drawer .ant-transfer-list-header { | |
7178 | + border-bottom: 1px solid #3a3a3a; | |
7179 | + background: #1f1f1f; | |
7180 | +} | |
7181 | + | |
7182 | +[data-theme='dark'] | |
7183 | + .ant-drawer | |
7184 | + .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover { | |
7185 | + background-color: rgb(255 255 255 / 8%); | |
7186 | +} | |
7187 | + | |
7188 | +[data-theme='dark'] .ant-drawer tr.ant-table-expanded-row:hover > td, | |
7189 | +[data-theme='dark'] .ant-drawer tr.ant-table-expanded-row > td { | |
7190 | + background: #272727; | |
7191 | +} | |
7192 | + | |
7193 | +[data-theme='dark'] .ant-drawer .ant-table.ant-table-small thead > tr > th { | |
7194 | + border-bottom: 1px solid #3a3a3a; | |
7195 | + background-color: #1f1f1f; | |
7196 | +} | |
7197 | + | |
7198 | +[data-theme='dark'] .ant-drawer .ant-table { | |
7199 | + background-color: #1f1f1f; | |
7200 | +} | |
7201 | + | |
7202 | +[data-theme='dark'] .ant-drawer .ant-table .ant-table-row-expand-icon { | |
7203 | + border: 1px solid #3a3a3a; | |
7204 | +} | |
7205 | + | |
7206 | +[data-theme='dark'] .ant-drawer .ant-table tfoot > tr > td, | |
7207 | +[data-theme='dark'] .ant-drawer .ant-table tfoot > tr > th { | |
7208 | + border-bottom: 1px solid #3a3a3a; | |
7209 | +} | |
7210 | + | |
7211 | +[data-theme='dark'] .ant-drawer .ant-table thead > tr > th { | |
7212 | + border-bottom: 1px solid #3a3a3a; | |
7213 | + background-color: #272727; | |
7214 | +} | |
7215 | + | |
7216 | +[data-theme='dark'] .ant-drawer .ant-table tbody > tr > td { | |
7217 | + border-bottom: 1px solid #3a3a3a; | |
7218 | +} | |
7219 | + | |
7220 | +[data-theme='dark'] .ant-drawer .ant-table tbody > tr > td.ant-table-cell-fix-left, | |
7221 | +[data-theme='dark'] .ant-drawer .ant-table tbody > tr > td.ant-table-cell-fix-right { | |
7222 | + background-color: #1f1f1f; | |
7223 | +} | |
7224 | + | |
7225 | +[data-theme='dark'] .ant-drawer .ant-table tbody > tr.ant-table-row:hover > td { | |
7226 | + background: #303030; | |
7227 | +} | |
7228 | + | |
7229 | +[data-theme='dark'] .ant-drawer .ant-table.ant-table-bordered .ant-table-title { | |
7230 | + border: 1px solid #3a3a3a; | |
7231 | +} | |
7232 | + | |
7233 | +[data-theme='dark'] .ant-drawer .ant-table.ant-table-bordered tbody > tr > td, | |
7234 | +[data-theme='dark'] .ant-drawer .ant-table.ant-table-bordered tfoot > tr > td, | |
7235 | +[data-theme='dark'] .ant-drawer .ant-table.ant-table-bordered tfoot > tr > th, | |
7236 | +[data-theme='dark'] .ant-drawer .ant-table.ant-table-bordered thead > tr > th { | |
7237 | + border-right: 1px solid #3a3a3a; | |
7238 | +} | |
7239 | + | |
7240 | +[data-theme='dark'] | |
7241 | + .ant-drawer | |
7242 | + .ant-table.ant-table-bordered | |
7243 | + .ant-table-cell-fix-right-first::after { | |
7244 | + border-right: 1px solid #3a3a3a; | |
7245 | +} | |
7246 | + | |
7247 | +[data-theme='dark'] | |
7248 | + .ant-drawer | |
7249 | + .ant-table.ant-table-bordered | |
7250 | + table | |
7251 | + thead | |
7252 | + > tr:not(:last-child) | |
7253 | + > th { | |
7254 | + border-bottom: 1px solid #303030; | |
7255 | +} | |
7256 | + | |
7257 | +[data-theme='dark'] .ant-drawer .ant-table.ant-table-bordered .ant-table-container { | |
7258 | + border: 1px solid #3a3a3a; | |
7259 | +} | |
7260 | + | |
7261 | +[data-theme='dark'] .ant-drawer .ant-table.ant-table-bordered .ant-table-expanded-row-fixed::after { | |
7262 | + border-right: 1px solid #3a3a3a; | |
7263 | +} | |
7264 | + | |
7265 | +[data-theme='dark'] .ant-drawer .ant-table.ant-table-bordered .ant-table-footer { | |
7266 | + border: 1px solid #3a3a3a; | |
7267 | +} | |
7268 | + | |
7269 | +[data-theme='dark'] .ant-drawer .ant-table .ant-table-filter-trigger-container-open { | |
7270 | + background-color: #525252; | |
7271 | +} | |
7272 | + | |
7273 | +[data-theme='dark'] .ant-drawer .ant-picker-calendar-full { | |
7274 | + background-color: #1f1f1f; | |
7275 | +} | |
7276 | + | |
7277 | +[data-theme='dark'] .ant-drawer .ant-picker-calendar-full .ant-picker-panel { | |
7278 | + background-color: #1f1f1f; | |
7279 | +} | |
7280 | + | |
7281 | +[data-theme='dark'] | |
7282 | + .ant-drawer | |
7283 | + .ant-picker-calendar-full | |
7284 | + .ant-picker-panel | |
7285 | + .ant-picker-calendar-date { | |
7286 | + border-top: 2px solid #3a3a3a; | |
7287 | +} | |
7288 | + | |
7289 | +[data-theme='dark'] .ant-drawer .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active { | |
7290 | + border-bottom: 1px solid #1f1f1f; | |
7291 | + background-color: #1f1f1f; | |
7292 | +} | |
7293 | + | |
7294 | +[data-theme='dark'] .ant-drawer .ant-badge-count { | |
7295 | + box-shadow: 0 0 0 1px #1f1f1f; | |
7296 | +} | |
7297 | + | |
7298 | +[data-theme='dark'] .ant-drawer .ant-tree-show-line .ant-tree-switcher { | |
7299 | + background: #1f1f1f; | |
7300 | +} | |
7301 | + | |
7302 | +[data-theme='dark'] .ant-empty-normal { | |
7303 | + color: rgb(255 255 255 / 30%); | |
7304 | +} | |
7305 | + | |
7306 | +[data-theme='dark'] .ant-empty-small { | |
7307 | + color: rgb(255 255 255 / 30%); | |
7308 | +} | |
7309 | + | |
7310 | +[data-theme='dark'] .ant-empty-img-default-ellipse { | |
7311 | + fill: #fff; | |
7312 | +} | |
7313 | + | |
7314 | +[data-theme='dark'] .ant-empty-img-default-path-1 { | |
7315 | + fill: #262626; | |
7316 | +} | |
7317 | + | |
7318 | +[data-theme='dark'] .ant-empty-img-default-path-3 { | |
7319 | + fill: #595959; | |
7320 | +} | |
7321 | + | |
7322 | +[data-theme='dark'] .ant-empty-img-default-path-4 { | |
7323 | + fill: #434343; | |
7324 | +} | |
7325 | + | |
7326 | +[data-theme='dark'] .ant-empty-img-default-path-5 { | |
7327 | + fill: #595959; | |
7328 | +} | |
7329 | + | |
7330 | +[data-theme='dark'] .ant-empty-img-default-g { | |
7331 | + fill: #434343; | |
7332 | +} | |
7333 | + | |
7334 | +[data-theme='dark'] .ant-empty-img-simple-ellipse { | |
7335 | + fill: #fff; | |
7336 | +} | |
7337 | + | |
7338 | +[data-theme='dark'] .ant-empty-img-simple-g { | |
7339 | + stroke: #434343; | |
7340 | +} | |
7341 | + | |
7342 | +[data-theme='dark'] .ant-empty-img-simple-path { | |
7343 | + stroke: #434343; | |
7344 | + fill: #262626; | |
7345 | +} | |
7346 | + | |
7347 | +[data-theme='dark'] .ant-statistic { | |
7348 | + color: #c9d1d9; | |
7349 | +} | |
7350 | + | |
7351 | +[data-theme='dark'] .ant-statistic-title { | |
7352 | + color: #8b949e; | |
7353 | +} | |
7354 | + | |
7355 | +[data-theme='dark'] .ant-statistic-content { | |
7356 | + color: rgb(255 255 255 / 65%); | |
7357 | +} | |
7358 | + | |
7359 | +[data-theme='dark'] .ant-result-success .ant-result-icon > .anticon { | |
7360 | + color: #55d187; | |
7361 | +} | |
7362 | + | |
7363 | +[data-theme='dark'] .ant-result-error .ant-result-icon > .anticon { | |
7364 | + color: #ed6f6f; | |
7365 | +} | |
7366 | + | |
7367 | +[data-theme='dark'] .ant-result-info .ant-result-icon > .anticon { | |
7368 | + color: #0960bd; | |
7369 | +} | |
7370 | + | |
7371 | +[data-theme='dark'] .ant-result-warning .ant-result-icon > .anticon { | |
7372 | + color: #efbd47; | |
7373 | +} | |
7374 | + | |
7375 | +[data-theme='dark'] .ant-result-title { | |
7376 | + color: rgb(255 255 255 / 65%); | |
7377 | +} | |
7378 | + | |
7379 | +[data-theme='dark'] .ant-result-subtitle { | |
7380 | + color: #8b949e; | |
7381 | +} | |
7382 | + | |
7383 | +[data-theme='dark'] .ant-result-content { | |
7384 | + background-color: rgb(255 255 255 / 4%); | |
7385 | +} | |
7386 | + | |
7387 | +[data-theme='dark'] .ant-list .ant-card { | |
7388 | + background: 0 0; | |
7389 | +} | |
7390 | + | |
7391 | +[data-theme='dark'] .ant-list { | |
7392 | + color: #c9d1d9; | |
7393 | +} | |
7394 | + | |
7395 | +[data-theme='dark'] .ant-list-empty-text { | |
7396 | + color: rgb(255 255 255 / 30%); | |
7397 | +} | |
7398 | + | |
7399 | +[data-theme='dark'] .ant-list-item { | |
7400 | + color: #c9d1d9; | |
7401 | +} | |
7402 | + | |
7403 | +[data-theme='dark'] .ant-list-item-meta-content { | |
7404 | + color: #c9d1d9; | |
7405 | +} | |
7406 | + | |
7407 | +[data-theme='dark'] .ant-list-item-meta-title { | |
7408 | + color: #c9d1d9; | |
7409 | +} | |
7410 | + | |
7411 | +[data-theme='dark'] .ant-list-item-meta-title > a { | |
7412 | + color: #c9d1d9; | |
7413 | +} | |
7414 | + | |
7415 | +[data-theme='dark'] .ant-list-item-meta-title > a:hover { | |
7416 | + color: #0960bd; | |
7417 | +} | |
7418 | + | |
7419 | +[data-theme='dark'] .ant-list-item-meta-description { | |
7420 | + color: #8b949e; | |
7421 | +} | |
7422 | + | |
7423 | +[data-theme='dark'] .ant-list-item-action > li { | |
7424 | + color: #8b949e; | |
7425 | +} | |
7426 | + | |
7427 | +[data-theme='dark'] .ant-list-item-action-split { | |
7428 | + background-color: #303030; | |
7429 | +} | |
7430 | + | |
7431 | +[data-theme='dark'] .ant-list-header { | |
7432 | + background: 0 0; | |
7433 | +} | |
7434 | + | |
7435 | +[data-theme='dark'] .ant-list-footer { | |
7436 | + background: 0 0; | |
7437 | +} | |
7438 | + | |
7439 | +[data-theme='dark'] .ant-list-empty { | |
7440 | + color: #8b949e; | |
7441 | +} | |
7442 | + | |
7443 | +[data-theme='dark'] .ant-list-split .ant-list-item { | |
7444 | + border-bottom: 1px solid #303030; | |
7445 | +} | |
7446 | + | |
7447 | +[data-theme='dark'] .ant-list-split .ant-list-header { | |
7448 | + border-bottom: 1px solid #303030; | |
7449 | +} | |
7450 | + | |
7451 | +[data-theme='dark'] .ant-list-split.ant-list-empty .ant-list-footer { | |
7452 | + border-top: 1px solid #303030; | |
7453 | +} | |
7454 | + | |
7455 | +[data-theme='dark'] | |
7456 | + .ant-list-split.ant-list-something-after-last-item | |
7457 | + .ant-spin-container | |
7458 | + > .ant-list-items | |
7459 | + > .ant-list-item:last-child { | |
7460 | + border-bottom: 1px solid #303030; | |
7461 | +} | |
7462 | + | |
7463 | +[data-theme='dark'] .ant-list-vertical .ant-list-item-meta-title { | |
7464 | + color: rgb(255 255 255 / 65%); | |
7465 | +} | |
7466 | + | |
7467 | +[data-theme='dark'] .ant-list-bordered { | |
7468 | + border: 1px solid #303030; | |
7469 | +} | |
7470 | + | |
7471 | +[data-theme='dark'] .ant-page-header { | |
7472 | + background-color: #151515; | |
7473 | + color: #c9d1d9; | |
7474 | +} | |
7475 | + | |
7476 | +[data-theme='dark'] .ant-page-header-ghost { | |
7477 | + background-color: transparent; | |
7478 | +} | |
7479 | + | |
7480 | +[data-theme='dark'] .ant-page-header-back-button { | |
7481 | + color: #0960bd; | |
7482 | +} | |
7483 | + | |
7484 | +[data-theme='dark'] .ant-page-header-back-button:focus, | |
7485 | +[data-theme='dark'] .ant-page-header-back-button:hover { | |
7486 | + color: #2a7dc9; | |
7487 | +} | |
7488 | + | |
7489 | +[data-theme='dark'] .ant-page-header-back-button:active { | |
7490 | + color: #004496; | |
7491 | +} | |
7492 | + | |
7493 | +[data-theme='dark'] .ant-page-header-heading-title { | |
7494 | + color: rgb(255 255 255 / 65%); | |
7495 | +} | |
7496 | + | |
7497 | +[data-theme='dark'] .ant-page-header-heading-sub-title { | |
7498 | + color: #8b949e; | |
7499 | +} | |
7500 | + | |
7501 | +[data-theme='dark'] .ant-form-item .ant-upload { | |
7502 | + background: 0 0; | |
7503 | +} | |
7504 | + | |
7505 | +[data-theme='dark'] .ant-form-item .ant-upload.ant-upload-drag { | |
7506 | + background: rgb(255 255 255 / 4%); | |
7507 | +} | |
7508 | + | |
7509 | +[data-theme='dark'] .ant-form-item-explain-error { | |
7510 | + color: #ed6f6f; | |
7511 | +} | |
7512 | + | |
7513 | +[data-theme='dark'] .ant-form-item-explain-warning { | |
7514 | + color: #efbd47; | |
7515 | +} | |
7516 | + | |
7517 | +[data-theme='dark'] | |
7518 | + .ant-form-item-has-success.ant-form-item-has-feedback | |
7519 | + .ant-form-item-children-icon { | |
7520 | + color: #55d187; | |
7521 | +} | |
7522 | + | |
7523 | +[data-theme='dark'] .ant-form-item-has-warning .ant-form-item-split { | |
7524 | + color: #efbd47; | |
7525 | +} | |
7526 | + | |
7527 | +[data-theme='dark'] | |
7528 | + .ant-form-item-has-warning | |
7529 | + :not(.ant-input-affix-wrapper-disabled):not( | |
7530 | + .ant-input-affix-wrapper-borderless | |
7531 | + ).ant-input-affix-wrapper, | |
7532 | +[data-theme='dark'] | |
7533 | + .ant-form-item-has-warning | |
7534 | + :not(.ant-input-affix-wrapper-disabled):not( | |
7535 | + .ant-input-affix-wrapper-borderless | |
7536 | + ).ant-input-affix-wrapper:hover, | |
7537 | +[data-theme='dark'] | |
7538 | + .ant-form-item-has-warning | |
7539 | + :not(.ant-input-disabled):not(.ant-input-borderless).ant-input, | |
7540 | +[data-theme='dark'] | |
7541 | + .ant-form-item-has-warning | |
7542 | + :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover, | |
7543 | +[data-theme='dark'] | |
7544 | + .ant-form-item-has-warning | |
7545 | + :not(.ant-input-number-affix-wrapper-disabled):not( | |
7546 | + .ant-input-number-affix-wrapper-borderless | |
7547 | + ).ant-input-number-affix-wrapper, | |
7548 | +[data-theme='dark'] | |
7549 | + .ant-form-item-has-warning | |
7550 | + :not(.ant-input-number-affix-wrapper-disabled):not( | |
7551 | + .ant-input-number-affix-wrapper-borderless | |
7552 | + ).ant-input-number-affix-wrapper:hover { | |
7553 | + border-color: #efbd47; | |
7554 | + background-color: transparent; | |
7555 | +} | |
7556 | + | |
7557 | +[data-theme='dark'] | |
7558 | + .ant-form-item-has-warning | |
7559 | + :not(.ant-input-affix-wrapper-disabled):not( | |
7560 | + .ant-input-affix-wrapper-borderless | |
7561 | + ).ant-input-affix-wrapper-focused, | |
7562 | +[data-theme='dark'] | |
7563 | + .ant-form-item-has-warning | |
7564 | + :not(.ant-input-affix-wrapper-disabled):not( | |
7565 | + .ant-input-affix-wrapper-borderless | |
7566 | + ).ant-input-affix-wrapper:focus, | |
7567 | +[data-theme='dark'] | |
7568 | + .ant-form-item-has-warning | |
7569 | + :not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused, | |
7570 | +[data-theme='dark'] | |
7571 | + .ant-form-item-has-warning | |
7572 | + :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus, | |
7573 | +[data-theme='dark'] | |
7574 | + .ant-form-item-has-warning | |
7575 | + :not(.ant-input-number-affix-wrapper-disabled):not( | |
7576 | + .ant-input-number-affix-wrapper-borderless | |
7577 | + ).ant-input-number-affix-wrapper-focused, | |
7578 | +[data-theme='dark'] | |
7579 | + .ant-form-item-has-warning | |
7580 | + :not(.ant-input-number-affix-wrapper-disabled):not( | |
7581 | + .ant-input-number-affix-wrapper-borderless | |
7582 | + ).ant-input-number-affix-wrapper:focus { | |
7583 | + border-color: #efbd47; | |
7584 | + box-shadow: 0 0 0 2px rgb(239 189 71 / 20%); | |
7585 | +} | |
7586 | + | |
7587 | +[data-theme='dark'] | |
7588 | + .ant-form-item-has-warning | |
7589 | + .ant-calendar-picker-open | |
7590 | + .ant-calendar-picker-input { | |
7591 | + border-color: #efbd47; | |
7592 | + box-shadow: 0 0 0 2px rgb(239 189 71 / 20%); | |
7593 | +} | |
7594 | + | |
7595 | +[data-theme='dark'] .ant-form-item-has-warning .ant-input-number-prefix, | |
7596 | +[data-theme='dark'] .ant-form-item-has-warning .ant-input-prefix { | |
7597 | + color: #efbd47; | |
7598 | +} | |
7599 | + | |
7600 | +[data-theme='dark'] .ant-form-item-has-warning .ant-input-group-addon, | |
7601 | +[data-theme='dark'] .ant-form-item-has-warning .ant-input-number-group-addon { | |
7602 | + border-color: #efbd47; | |
7603 | + color: #efbd47; | |
7604 | +} | |
7605 | + | |
7606 | +[data-theme='dark'] .ant-form-item-has-warning .has-feedback { | |
7607 | + color: #efbd47; | |
7608 | +} | |
7609 | + | |
7610 | +[data-theme='dark'] | |
7611 | + .ant-form-item-has-warning.ant-form-item-has-feedback | |
7612 | + .ant-form-item-children-icon { | |
7613 | + color: #efbd47; | |
7614 | +} | |
7615 | + | |
7616 | +[data-theme='dark'] | |
7617 | + .ant-form-item-has-warning | |
7618 | + .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input) | |
7619 | + .ant-select-selector { | |
7620 | + border-color: #efbd47 !important; | |
7621 | + background-color: transparent; | |
7622 | +} | |
7623 | + | |
7624 | +[data-theme='dark'] | |
7625 | + .ant-form-item-has-warning | |
7626 | + .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-focused | |
7627 | + .ant-select-selector, | |
7628 | +[data-theme='dark'] | |
7629 | + .ant-form-item-has-warning | |
7630 | + .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-open | |
7631 | + .ant-select-selector { | |
7632 | + border-color: #efbd47; | |
7633 | + box-shadow: 0 0 0 2px rgb(239 189 71 / 20%); | |
7634 | +} | |
7635 | + | |
7636 | +[data-theme='dark'] .ant-form-item-has-warning .ant-input-number, | |
7637 | +[data-theme='dark'] .ant-form-item-has-warning .ant-picker { | |
7638 | + border-color: #efbd47; | |
7639 | + background-color: transparent; | |
7640 | +} | |
7641 | + | |
7642 | +[data-theme='dark'] .ant-form-item-has-warning .ant-input-number-focused, | |
7643 | +[data-theme='dark'] .ant-form-item-has-warning .ant-input-number:focus, | |
7644 | +[data-theme='dark'] .ant-form-item-has-warning .ant-picker-focused, | |
7645 | +[data-theme='dark'] .ant-form-item-has-warning .ant-picker:focus { | |
7646 | + border-color: #efbd47; | |
7647 | + box-shadow: 0 0 0 2px rgb(239 189 71 / 20%); | |
7648 | +} | |
7649 | + | |
7650 | +[data-theme='dark'] .ant-form-item-has-warning .ant-input-number:not([disabled]):hover, | |
7651 | +[data-theme='dark'] .ant-form-item-has-warning .ant-picker:not([disabled]):hover { | |
7652 | + border-color: #efbd47; | |
7653 | + background-color: transparent; | |
7654 | +} | |
7655 | + | |
7656 | +[data-theme='dark'] .ant-form-item-has-warning .ant-cascader-picker:focus .ant-cascader-input { | |
7657 | + border-color: #efbd47; | |
7658 | + box-shadow: 0 0 0 2px rgb(239 189 71 / 20%); | |
7659 | +} | |
7660 | + | |
7661 | +[data-theme='dark'] .ant-form-item-has-error .ant-form-item-split { | |
7662 | + color: #ed6f6f; | |
7663 | +} | |
7664 | + | |
7665 | +[data-theme='dark'] | |
7666 | + .ant-form-item-has-error | |
7667 | + :not(.ant-input-affix-wrapper-disabled):not( | |
7668 | + .ant-input-affix-wrapper-borderless | |
7669 | + ).ant-input-affix-wrapper, | |
7670 | +[data-theme='dark'] | |
7671 | + .ant-form-item-has-error | |
7672 | + :not(.ant-input-affix-wrapper-disabled):not( | |
7673 | + .ant-input-affix-wrapper-borderless | |
7674 | + ).ant-input-affix-wrapper:hover, | |
7675 | +[data-theme='dark'] | |
7676 | + .ant-form-item-has-error | |
7677 | + :not(.ant-input-disabled):not(.ant-input-borderless).ant-input, | |
7678 | +[data-theme='dark'] | |
7679 | + .ant-form-item-has-error | |
7680 | + :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover, | |
7681 | +[data-theme='dark'] | |
7682 | + .ant-form-item-has-error | |
7683 | + :not(.ant-input-number-affix-wrapper-disabled):not( | |
7684 | + .ant-input-number-affix-wrapper-borderless | |
7685 | + ).ant-input-number-affix-wrapper, | |
7686 | +[data-theme='dark'] | |
7687 | + .ant-form-item-has-error | |
7688 | + :not(.ant-input-number-affix-wrapper-disabled):not( | |
7689 | + .ant-input-number-affix-wrapper-borderless | |
7690 | + ).ant-input-number-affix-wrapper:hover { | |
7691 | + border-color: #ed6f6f; | |
7692 | + background-color: transparent; | |
7693 | +} | |
7694 | + | |
7695 | +[data-theme='dark'] | |
7696 | + .ant-form-item-has-error | |
7697 | + :not(.ant-input-affix-wrapper-disabled):not( | |
7698 | + .ant-input-affix-wrapper-borderless | |
7699 | + ).ant-input-affix-wrapper-focused, | |
7700 | +[data-theme='dark'] | |
7701 | + .ant-form-item-has-error | |
7702 | + :not(.ant-input-affix-wrapper-disabled):not( | |
7703 | + .ant-input-affix-wrapper-borderless | |
7704 | + ).ant-input-affix-wrapper:focus, | |
7705 | +[data-theme='dark'] | |
7706 | + .ant-form-item-has-error | |
7707 | + :not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused, | |
7708 | +[data-theme='dark'] | |
7709 | + .ant-form-item-has-error | |
7710 | + :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus, | |
7711 | +[data-theme='dark'] | |
7712 | + .ant-form-item-has-error | |
7713 | + :not(.ant-input-number-affix-wrapper-disabled):not( | |
7714 | + .ant-input-number-affix-wrapper-borderless | |
7715 | + ).ant-input-number-affix-wrapper-focused, | |
7716 | +[data-theme='dark'] | |
7717 | + .ant-form-item-has-error | |
7718 | + :not(.ant-input-number-affix-wrapper-disabled):not( | |
7719 | + .ant-input-number-affix-wrapper-borderless | |
7720 | + ).ant-input-number-affix-wrapper:focus { | |
7721 | + border-color: #ed6f6f; | |
7722 | + box-shadow: 0 0 0 2px rgb(237 111 111 / 20%); | |
7723 | +} | |
7724 | + | |
7725 | +[data-theme='dark'] .ant-form-item-has-error .ant-calendar-picker-open .ant-calendar-picker-input { | |
7726 | + border-color: #ed6f6f; | |
7727 | + box-shadow: 0 0 0 2px rgb(237 111 111 / 20%); | |
7728 | +} | |
7729 | + | |
7730 | +[data-theme='dark'] .ant-form-item-has-error .ant-input-number-prefix, | |
7731 | +[data-theme='dark'] .ant-form-item-has-error .ant-input-prefix { | |
7732 | + color: #ed6f6f; | |
7733 | +} | |
7734 | + | |
7735 | +[data-theme='dark'] .ant-form-item-has-error .ant-input-group-addon, | |
7736 | +[data-theme='dark'] .ant-form-item-has-error .ant-input-number-group-addon { | |
7737 | + border-color: #ed6f6f; | |
7738 | + color: #ed6f6f; | |
7739 | +} | |
7740 | + | |
7741 | +[data-theme='dark'] .ant-form-item-has-error .has-feedback { | |
7742 | + color: #ed6f6f; | |
7743 | +} | |
7744 | + | |
7745 | +[data-theme='dark'] | |
7746 | + .ant-form-item-has-error.ant-form-item-has-feedback | |
7747 | + .ant-form-item-children-icon { | |
7748 | + color: #ed6f6f; | |
7749 | +} | |
7750 | + | |
7751 | +[data-theme='dark'] | |
7752 | + .ant-form-item-has-error | |
7753 | + .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input) | |
7754 | + .ant-select-selector { | |
7755 | + border-color: #ed6f6f !important; | |
7756 | + background-color: transparent; | |
7757 | +} | |
7758 | + | |
7759 | +[data-theme='dark'] | |
7760 | + .ant-form-item-has-error | |
7761 | + .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-focused | |
7762 | + .ant-select-selector, | |
7763 | +[data-theme='dark'] | |
7764 | + .ant-form-item-has-error | |
7765 | + .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-open | |
7766 | + .ant-select-selector { | |
7767 | + border-color: #ed6f6f; | |
7768 | + box-shadow: 0 0 0 2px rgb(237 111 111 / 20%); | |
7769 | +} | |
7770 | + | |
7771 | +[data-theme='dark'] .ant-form-item-has-error .ant-select.ant-select-auto-complete .ant-input:focus { | |
7772 | + border-color: #ed6f6f; | |
7773 | +} | |
7774 | + | |
7775 | +[data-theme='dark'] .ant-form-item-has-error .ant-input-number, | |
7776 | +[data-theme='dark'] .ant-form-item-has-error .ant-picker { | |
7777 | + border-color: #ed6f6f; | |
7778 | + background-color: transparent; | |
7779 | +} | |
7780 | + | |
7781 | +[data-theme='dark'] .ant-form-item-has-error .ant-input-number-focused, | |
7782 | +[data-theme='dark'] .ant-form-item-has-error .ant-input-number:focus, | |
7783 | +[data-theme='dark'] .ant-form-item-has-error .ant-picker-focused, | |
7784 | +[data-theme='dark'] .ant-form-item-has-error .ant-picker:focus { | |
7785 | + border-color: #ed6f6f; | |
7786 | + box-shadow: 0 0 0 2px rgb(237 111 111 / 20%); | |
7787 | +} | |
7788 | + | |
7789 | +[data-theme='dark'] .ant-form-item-has-error .ant-input-number:not([disabled]):hover, | |
7790 | +[data-theme='dark'] .ant-form-item-has-error .ant-picker:not([disabled]):hover { | |
7791 | + border-color: #ed6f6f; | |
7792 | + background-color: transparent; | |
7793 | +} | |
7794 | + | |
7795 | +[data-theme='dark'] .ant-form-item-has-error .ant-mention-wrapper .ant-mention-editor, | |
7796 | +[data-theme='dark'] | |
7797 | + .ant-form-item-has-error | |
7798 | + .ant-mention-wrapper | |
7799 | + .ant-mention-editor:not([disabled]):hover { | |
7800 | + border-color: #ed6f6f; | |
7801 | + background-color: transparent; | |
7802 | +} | |
7803 | + | |
7804 | +[data-theme='dark'] | |
7805 | + .ant-form-item-has-error | |
7806 | + .ant-mention-wrapper | |
7807 | + .ant-mention-editor:not([disabled]):focus, | |
7808 | +[data-theme='dark'] | |
7809 | + .ant-form-item-has-error | |
7810 | + .ant-mention-wrapper.ant-mention-active:not([disabled]) | |
7811 | + .ant-mention-editor { | |
7812 | + border-color: #ed6f6f; | |
7813 | + box-shadow: 0 0 0 2px rgb(237 111 111 / 20%); | |
7814 | +} | |
7815 | + | |
7816 | +[data-theme='dark'] | |
7817 | + .ant-form-item-has-error | |
7818 | + .ant-cascader-picker:hover | |
7819 | + .ant-cascader-picker-label:hover | |
7820 | + + .ant-cascader-input.ant-input { | |
7821 | + border-color: #ed6f6f; | |
7822 | +} | |
7823 | + | |
7824 | +[data-theme='dark'] .ant-form-item-has-error .ant-cascader-picker:focus .ant-cascader-input { | |
7825 | + border-color: #ed6f6f; | |
7826 | + background-color: transparent; | |
7827 | + box-shadow: 0 0 0 2px rgb(237 111 111 / 20%); | |
7828 | +} | |
7829 | + | |
7830 | +[data-theme='dark'] .ant-form-item-has-error .ant-transfer-list { | |
7831 | + border-color: #ed6f6f; | |
7832 | +} | |
7833 | + | |
7834 | +[data-theme='dark'] .ant-form-item-has-error .ant-transfer-list-search:not([disabled]) { | |
7835 | + border-color: #303030; | |
7836 | +} | |
7837 | + | |
7838 | +[data-theme='dark'] .ant-form-item-has-error .ant-transfer-list-search:not([disabled]):hover { | |
7839 | + border-color: #2a7dc9; | |
7840 | +} | |
7841 | + | |
7842 | +[data-theme='dark'] .ant-form-item-has-error .ant-transfer-list-search:not([disabled]):focus { | |
7843 | + border-color: #0960bd; | |
7844 | + box-shadow: 0 0 0 2px rgb(9 96 189 / 20%); | |
7845 | +} | |
7846 | + | |
7847 | +[data-theme='dark'] .ant-form-item-has-error .ant-radio-button-wrapper { | |
7848 | + border-color: #ed6f6f !important; | |
7849 | +} | |
7850 | + | |
7851 | +[data-theme='dark'] .ant-form-item-has-error .ant-radio-button-wrapper:not(:first-child)::before { | |
7852 | + background-color: #ed6f6f; | |
7853 | +} | |
7854 | + | |
7855 | +[data-theme='dark'] .ant-form-item-has-error .ant-mentions { | |
7856 | + border-color: #ed6f6f !important; | |
7857 | +} | |
7858 | + | |
7859 | +[data-theme='dark'] .ant-form-item-has-error .ant-mentions-focused, | |
7860 | +[data-theme='dark'] .ant-form-item-has-error .ant-mentions:focus { | |
7861 | + border-color: #ed6f6f; | |
7862 | + box-shadow: 0 0 0 2px rgb(237 111 111 / 20%); | |
7863 | +} | |
7864 | + | |
7865 | +[data-theme='dark'] | |
7866 | + .ant-form-item-is-validating.ant-form-item-has-feedback | |
7867 | + .ant-form-item-children-icon { | |
7868 | + color: #0960bd; | |
7869 | +} | |
7870 | + | |
7871 | +[data-theme='dark'] .ant-form { | |
7872 | + color: #c9d1d9; | |
7873 | +} | |
7874 | + | |
7875 | +[data-theme='dark'] .ant-form legend { | |
7876 | + border-bottom: 1px solid #303030; | |
7877 | + color: #8b949e; | |
7878 | +} | |
7879 | + | |
7880 | +[data-theme='dark'] .ant-form output { | |
7881 | + color: #c9d1d9; | |
7882 | +} | |
7883 | + | |
7884 | +[data-theme='dark'] .ant-form-item { | |
7885 | + color: #c9d1d9; | |
7886 | +} | |
7887 | + | |
7888 | +[data-theme='dark'] .ant-form-item-label > label { | |
7889 | + color: rgb(255 255 255 / 65%); | |
7890 | +} | |
7891 | + | |
7892 | +[data-theme='dark'] | |
7893 | + .ant-form-item-label | |
7894 | + > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before { | |
7895 | + color: #a71d25; | |
7896 | +} | |
7897 | + | |
7898 | +[data-theme='dark'] .ant-form-item-label > label .ant-form-item-optional { | |
7899 | + color: #8b949e; | |
7900 | +} | |
7901 | + | |
7902 | +[data-theme='dark'] .ant-form-item-label > label .ant-form-item-tooltip { | |
7903 | + color: #8b949e; | |
7904 | +} | |
7905 | + | |
7906 | +[data-theme='dark'] .ant-form-item-explain, | |
7907 | +[data-theme='dark'] .ant-form-item-extra { | |
7908 | + color: #8b949e; | |
7909 | +} | |
7910 | + | |
7911 | +[data-theme='dark'] .ant-skeleton-header .ant-skeleton-avatar { | |
7912 | + background: rgb(190 190 190 / 20%); | |
7913 | +} | |
7914 | + | |
7915 | +[data-theme='dark'] .ant-skeleton-content .ant-skeleton-title { | |
7916 | + background: rgb(190 190 190 / 20%); | |
7917 | +} | |
7918 | + | |
7919 | +[data-theme='dark'] .ant-skeleton-content .ant-skeleton-paragraph > li { | |
7920 | + background: rgb(190 190 190 / 20%); | |
7921 | +} | |
7922 | + | |
7923 | +[data-theme='dark'] .ant-skeleton-element .ant-skeleton-button { | |
7924 | + background: rgb(190 190 190 / 20%); | |
7925 | +} | |
7926 | + | |
7927 | +[data-theme='dark'] .ant-skeleton-element .ant-skeleton-avatar { | |
7928 | + background: rgb(190 190 190 / 20%); | |
7929 | +} | |
7930 | + | |
7931 | +[data-theme='dark'] .ant-skeleton-element .ant-skeleton-input { | |
7932 | + background: rgb(190 190 190 / 20%); | |
7933 | +} | |
7934 | + | |
7935 | +[data-theme='dark'] .ant-skeleton-element .ant-skeleton-image { | |
7936 | + background: rgb(190 190 190 / 20%); | |
7937 | +} | |
7938 | + | |
7939 | +[data-theme='dark'] .ant-skeleton-element .ant-skeleton-image-path { | |
7940 | + fill: #bfbfbf; | |
7941 | +} | |
7942 | + | |
7943 | +[data-theme='dark'] .ant-image-img-placeholder { | |
7944 | + background-color: #f5f5f5; | |
7945 | +} | |
7946 | + | |
7947 | +[data-theme='dark'] .ant-image-mask { | |
7948 | + background: rgb(0 0 0 / 50%); | |
7949 | + color: #fff; | |
7950 | +} | |
7951 | + | |
7952 | +[data-theme='dark'] .ant-image-preview-mask { | |
7953 | + background-color: rgb(0 0 0 / 45%); | |
7954 | +} | |
7955 | + | |
7956 | +[data-theme='dark'] .ant-image-preview-operations { | |
7957 | + background: rgb(0 0 0 / 10%); | |
7958 | + color: #c9d1d9; | |
7959 | + color: rgb(255 255 255 / 85%); | |
7960 | +} | |
7961 | + | |
7962 | +[data-theme='dark'] .ant-image-preview-operations-operation-disabled { | |
7963 | + color: rgb(255 255 255 / 25%); | |
7964 | +} | |
7965 | + | |
7966 | +[data-theme='dark'] .ant-image-preview-switch-left, | |
7967 | +[data-theme='dark'] .ant-image-preview-switch-right { | |
7968 | + background: rgb(0 0 0 / 10%); | |
7969 | + color: rgb(255 255 255 / 85%); | |
7970 | +} | |
7971 | + | |
7972 | +[data-theme='dark'] .ant-image-preview-switch-left-disabled, | |
7973 | +[data-theme='dark'] .ant-image-preview-switch-right-disabled { | |
7974 | + color: rgb(255 255 255 / 25%); | |
7975 | +} | |
7976 | + | |
7977 | +[data-theme='dark'] .ant-typography { | |
7978 | + color: #c9d1d9; | |
7979 | +} | |
7980 | + | |
7981 | +[data-theme='dark'] .ant-typography.ant-typography-secondary { | |
7982 | + color: #8b949e; | |
7983 | +} | |
7984 | + | |
7985 | +[data-theme='dark'] .ant-typography.ant-typography-success { | |
7986 | + color: #55d187; | |
7987 | +} | |
7988 | + | |
7989 | +[data-theme='dark'] .ant-typography.ant-typography-warning { | |
7990 | + color: #efbd47; | |
7991 | +} | |
7992 | + | |
7993 | +[data-theme='dark'] .ant-typography.ant-typography-danger { | |
7994 | + color: #ed6f6f; | |
7995 | +} | |
7996 | + | |
7997 | +[data-theme='dark'] a.ant-typography.ant-typography-danger:active, | |
7998 | +[data-theme='dark'] a.ant-typography.ant-typography-danger:focus, | |
7999 | +[data-theme='dark'] a.ant-typography.ant-typography-danger:hover { | |
8000 | + color: #faa19d; | |
8001 | +} | |
8002 | + | |
8003 | +[data-theme='dark'] .ant-typography.ant-typography-disabled { | |
8004 | + color: rgb(255 255 255 / 30%); | |
8005 | +} | |
8006 | + | |
8007 | +[data-theme='dark'] .ant-typography h1, | |
8008 | +[data-theme='dark'] h1.ant-typography { | |
8009 | + color: rgb(255 255 255 / 65%); | |
8010 | +} | |
8011 | + | |
8012 | +[data-theme='dark'] .ant-typography h2, | |
8013 | +[data-theme='dark'] h2.ant-typography { | |
8014 | + color: rgb(255 255 255 / 65%); | |
8015 | +} | |
8016 | + | |
8017 | +[data-theme='dark'] .ant-typography h3, | |
8018 | +[data-theme='dark'] h3.ant-typography { | |
8019 | + color: rgb(255 255 255 / 65%); | |
8020 | +} | |
8021 | + | |
8022 | +[data-theme='dark'] .ant-typography h4, | |
8023 | +[data-theme='dark'] h4.ant-typography { | |
8024 | + color: rgb(255 255 255 / 65%); | |
8025 | +} | |
8026 | + | |
8027 | +[data-theme='dark'] .ant-typography h5, | |
8028 | +[data-theme='dark'] h5.ant-typography { | |
8029 | + color: rgb(255 255 255 / 65%); | |
8030 | +} | |
8031 | + | |
8032 | +[data-theme='dark'] .ant-typography a, | |
8033 | +[data-theme='dark'] a.ant-typography { | |
8034 | + color: #0960bd; | |
8035 | +} | |
8036 | + | |
8037 | +[data-theme='dark'] .ant-typography a:focus, | |
8038 | +[data-theme='dark'] .ant-typography a:hover, | |
8039 | +[data-theme='dark'] a.ant-typography:focus, | |
8040 | +[data-theme='dark'] a.ant-typography:hover { | |
8041 | + color: #2a7dc9; | |
8042 | +} | |
8043 | + | |
8044 | +[data-theme='dark'] .ant-typography a:active, | |
8045 | +[data-theme='dark'] a.ant-typography:active { | |
8046 | + color: #004496; | |
8047 | +} | |
8048 | + | |
8049 | +[data-theme='dark'] .ant-typography a.ant-typography-disabled, | |
8050 | +[data-theme='dark'] .ant-typography a[disabled], | |
8051 | +[data-theme='dark'] a.ant-typography.ant-typography-disabled, | |
8052 | +[data-theme='dark'] a.ant-typography[disabled] { | |
8053 | + color: rgb(255 255 255 / 30%); | |
8054 | +} | |
8055 | + | |
8056 | +[data-theme='dark'] .ant-typography a.ant-typography-disabled:active, | |
8057 | +[data-theme='dark'] .ant-typography a.ant-typography-disabled:hover, | |
8058 | +[data-theme='dark'] .ant-typography a[disabled]:active, | |
8059 | +[data-theme='dark'] .ant-typography a[disabled]:hover, | |
8060 | +[data-theme='dark'] a.ant-typography.ant-typography-disabled:active, | |
8061 | +[data-theme='dark'] a.ant-typography.ant-typography-disabled:hover, | |
8062 | +[data-theme='dark'] a.ant-typography[disabled]:active, | |
8063 | +[data-theme='dark'] a.ant-typography[disabled]:hover { | |
8064 | + color: rgb(255 255 255 / 30%); | |
8065 | +} | |
8066 | + | |
8067 | +[data-theme='dark'] .ant-typography code { | |
8068 | + border: 1px solid rgb(100 100 100 / 20%); | |
8069 | + background: rgb(150 150 150 / 10%); | |
8070 | +} | |
8071 | + | |
8072 | +[data-theme='dark'] .ant-typography kbd { | |
8073 | + border: 1px solid rgb(100 100 100 / 20%); | |
8074 | + background: rgb(150 150 150 / 6%); | |
8075 | +} | |
8076 | + | |
8077 | +[data-theme='dark'] .ant-typography mark { | |
8078 | + background-color: #5a4315; | |
8079 | +} | |
8080 | + | |
8081 | +[data-theme='dark'] .ant-typography-copy, | |
8082 | +[data-theme='dark'] .ant-typography-edit, | |
8083 | +[data-theme='dark'] .ant-typography-expand { | |
8084 | + color: #0960bd; | |
8085 | +} | |
8086 | + | |
8087 | +[data-theme='dark'] .ant-typography-copy:focus, | |
8088 | +[data-theme='dark'] .ant-typography-copy:hover, | |
8089 | +[data-theme='dark'] .ant-typography-edit:focus, | |
8090 | +[data-theme='dark'] .ant-typography-edit:hover, | |
8091 | +[data-theme='dark'] .ant-typography-expand:focus, | |
8092 | +[data-theme='dark'] .ant-typography-expand:hover { | |
8093 | + color: #2a7dc9; | |
8094 | +} | |
8095 | + | |
8096 | +[data-theme='dark'] .ant-typography-copy:active, | |
8097 | +[data-theme='dark'] .ant-typography-edit:active, | |
8098 | +[data-theme='dark'] .ant-typography-expand:active { | |
8099 | + color: #004496; | |
8100 | +} | |
8101 | + | |
8102 | +[data-theme='dark'] .ant-typography-copy-success, | |
8103 | +[data-theme='dark'] .ant-typography-copy-success:focus, | |
8104 | +[data-theme='dark'] .ant-typography-copy-success:hover { | |
8105 | + color: #55d187; | |
8106 | +} | |
8107 | + | |
8108 | +[data-theme='dark'] .ant-typography-edit-content-confirm { | |
8109 | + color: #8b949e; | |
8110 | +} | |
8111 | + | |
8112 | +[data-theme='dark'] .ant-typography pre { | |
8113 | + border: 1px solid rgb(100 100 100 / 20%); | |
8114 | + background: rgb(150 150 150 / 10%); | |
8115 | +} | |
8116 | + | |
8117 | +[data-theme='dark'] .ant-typography pre code { | |
8118 | + background: 0 0; | |
8119 | +} | |
8120 | + | |
8121 | +[data-theme='dark'] .ant-typography blockquote { | |
8122 | + border-left: 4px solid rgb(100 100 100 / 20%); | |
8123 | +} | |
8124 | + | |
8125 | +[data-theme='dark'] .ant-descriptions-title { | |
8126 | + color: rgb(255 255 255 / 65%); | |
8127 | +} | |
8128 | + | |
8129 | +[data-theme='dark'] .ant-descriptions-extra { | |
8130 | + color: #c9d1d9; | |
8131 | +} | |
8132 | + | |
8133 | +[data-theme='dark'] .ant-descriptions-item-label { | |
8134 | + color: rgb(255 255 255 / 65%); | |
8135 | +} | |
8136 | + | |
8137 | +[data-theme='dark'] .ant-descriptions-item-content { | |
8138 | + color: #c9d1d9; | |
8139 | +} | |
8140 | + | |
8141 | +[data-theme='dark'] .ant-descriptions-bordered .ant-descriptions-view { | |
8142 | + border: 1px solid #303030; | |
8143 | +} | |
8144 | + | |
8145 | +[data-theme='dark'] .ant-descriptions-bordered .ant-descriptions-item-content, | |
8146 | +[data-theme='dark'] .ant-descriptions-bordered .ant-descriptions-item-label { | |
8147 | + border-right: 1px solid #303030; | |
8148 | +} | |
8149 | + | |
8150 | +[data-theme='dark'] .ant-descriptions-bordered .ant-descriptions-item-label { | |
8151 | + background-color: rgb(255 255 255 / 4%); | |
8152 | +} | |
8153 | + | |
8154 | +[data-theme='dark'] .ant-descriptions-bordered .ant-descriptions-row { | |
8155 | + border-bottom: 1px solid #303030; | |
8156 | +} | |
8157 | + | |
8158 | +[data-theme='dark'] .ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-content, | |
8159 | +[data-theme='dark'] .ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-label { | |
8160 | + border-left: 1px solid #303030; | |
8161 | +} | |
8162 | + | |
8163 | +[data-theme='dark'] .ant-select-tree-checkbox { | |
8164 | + color: #c9d1d9; | |
8165 | +} | |
8166 | + | |
8167 | +[data-theme='dark'] .ant-select-tree-checkbox-input:focus + .ant-select-tree-checkbox-inner, | |
8168 | +[data-theme='dark'] .ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-inner, | |
8169 | +[data-theme='dark'] .ant-select-tree-checkbox:hover .ant-select-tree-checkbox-inner { | |
8170 | + border-color: #0960bd; | |
8171 | +} | |
8172 | + | |
8173 | +[data-theme='dark'] .ant-select-tree-checkbox-checked::after { | |
8174 | + border: 1px solid #0960bd; | |
8175 | +} | |
8176 | + | |
8177 | +[data-theme='dark'] .ant-select-tree-checkbox-inner { | |
8178 | + border: 1px solid #303030; | |
8179 | + background-color: transparent; | |
8180 | +} | |
8181 | + | |
8182 | +[data-theme='dark'] .ant-select-tree-checkbox-inner::after { | |
8183 | + border: 2px solid #fff; | |
8184 | +} | |
8185 | + | |
8186 | +[data-theme='dark'] .ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner::after { | |
8187 | + border: 2px solid #fff; | |
8188 | +} | |
8189 | + | |
8190 | +[data-theme='dark'] .ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner { | |
8191 | + border-color: #0960bd; | |
8192 | + background-color: #0960bd; | |
8193 | +} | |
8194 | + | |
8195 | +[data-theme='dark'] | |
8196 | + .ant-select-tree-checkbox-disabled.ant-select-tree-checkbox-checked | |
8197 | + .ant-select-tree-checkbox-inner::after { | |
8198 | + border-color: rgb(255 255 255 / 30%); | |
8199 | +} | |
8200 | + | |
8201 | +[data-theme='dark'] .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner { | |
8202 | + border-color: #303030 !important; | |
8203 | + background-color: rgb(255 255 255 / 8%); | |
8204 | +} | |
8205 | + | |
8206 | +[data-theme='dark'] .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after { | |
8207 | + border-color: rgb(255 255 255 / 8%); | |
8208 | +} | |
8209 | + | |
8210 | +[data-theme='dark'] .ant-select-tree-checkbox-disabled + span { | |
8211 | + color: rgb(255 255 255 / 30%); | |
8212 | +} | |
8213 | + | |
8214 | +[data-theme='dark'] .ant-select-tree-checkbox-wrapper { | |
8215 | + color: #c9d1d9; | |
8216 | +} | |
8217 | + | |
8218 | +[data-theme='dark'] .ant-select-tree-checkbox-group { | |
8219 | + color: #c9d1d9; | |
8220 | +} | |
8221 | + | |
8222 | +[data-theme='dark'] .ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner { | |
8223 | + border-color: #303030; | |
8224 | + background-color: transparent; | |
8225 | +} | |
8226 | + | |
8227 | +[data-theme='dark'] .ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner::after { | |
8228 | + background-color: #0960bd; | |
8229 | +} | |
8230 | + | |
8231 | +[data-theme='dark'] | |
8232 | + .ant-select-tree-checkbox-indeterminate.ant-select-tree-checkbox-disabled | |
8233 | + .ant-select-tree-checkbox-inner::after { | |
8234 | + border-color: rgb(255 255 255 / 30%); | |
8235 | + background-color: rgb(255 255 255 / 30%); | |
8236 | +} | |
8237 | + | |
8238 | +[data-theme='dark'] .ant-select-tree { | |
8239 | + background: 0 0; | |
8240 | + color: #c9d1d9; | |
8241 | +} | |
8242 | + | |
8243 | +[data-theme='dark'] .ant-select-tree-focused:not(:hover):not(.ant-select-tree-active-focused) { | |
8244 | + background: rgb(255 255 255 / 8%); | |
8245 | +} | |
8246 | + | |
8247 | +[data-theme='dark'] | |
8248 | + .ant-select-tree.ant-select-tree-block-node | |
8249 | + .ant-select-tree-list-holder-inner | |
8250 | + .ant-select-tree-treenode.dragging::after { | |
8251 | + border: 1px solid #0960bd; | |
8252 | +} | |
8253 | + | |
8254 | +[data-theme='dark'] | |
8255 | + .ant-select-tree | |
8256 | + .ant-select-tree-treenode-disabled | |
8257 | + .ant-select-tree-node-content-wrapper { | |
8258 | + color: rgb(255 255 255 / 30%); | |
8259 | +} | |
8260 | + | |
8261 | +[data-theme='dark'] | |
8262 | + .ant-select-tree | |
8263 | + .ant-select-tree-treenode-disabled | |
8264 | + .ant-select-tree-node-content-wrapper:hover { | |
8265 | + background: 0 0; | |
8266 | +} | |
8267 | + | |
8268 | +[data-theme='dark'] | |
8269 | + .ant-select-tree | |
8270 | + .ant-select-tree-treenode-active | |
8271 | + .ant-select-tree-node-content-wrapper { | |
8272 | + background: rgb(255 255 255 / 8%); | |
8273 | +} | |
8274 | + | |
8275 | +[data-theme='dark'] .ant-select-tree-switcher-loading-icon { | |
8276 | + color: #0960bd; | |
8277 | +} | |
8278 | + | |
8279 | +[data-theme='dark'] .ant-select-tree-switcher-leaf-line::before { | |
8280 | + border-right: 1px solid #d9d9d9; | |
8281 | +} | |
8282 | + | |
8283 | +[data-theme='dark'] .ant-select-tree-switcher-leaf-line::after { | |
8284 | + border-bottom: 1px solid #d9d9d9; | |
8285 | +} | |
8286 | + | |
8287 | +[data-theme='dark'] .ant-select-tree .ant-select-tree-node-content-wrapper { | |
8288 | + background: 0 0; | |
8289 | +} | |
8290 | + | |
8291 | +[data-theme='dark'] .ant-select-tree .ant-select-tree-node-content-wrapper:hover { | |
8292 | + background-color: rgb(255 255 255 / 8%); | |
8293 | +} | |
8294 | + | |
8295 | +[data-theme='dark'] | |
8296 | + .ant-select-tree | |
8297 | + .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected { | |
8298 | + background-color: #11263c; | |
8299 | +} | |
8300 | + | |
8301 | +[data-theme='dark'] .ant-select-tree-unselectable .ant-select-tree-node-content-wrapper:hover { | |
8302 | + background-color: transparent; | |
8303 | +} | |
8304 | + | |
8305 | +[data-theme='dark'] .ant-select-tree-node-content-wrapper .ant-tree-drop-indicator { | |
8306 | + background-color: #0960bd; | |
8307 | +} | |
8308 | + | |
8309 | +[data-theme='dark'] .ant-select-tree-node-content-wrapper .ant-tree-drop-indicator::after { | |
8310 | + border: 2px solid #0960bd; | |
8311 | + background-color: transparent; | |
8312 | +} | |
8313 | + | |
8314 | +[data-theme='dark'] .ant-select-tree .ant-select-tree-treenode.drop-container > [draggable] { | |
8315 | + box-shadow: 0 0 0 2px #0960bd; | |
8316 | +} | |
8317 | + | |
8318 | +[data-theme='dark'] .ant-select-tree-show-line .ant-select-tree-indent-unit::before { | |
8319 | + border-right: 1px solid #303030; | |
8320 | +} | |
8321 | + | |
8322 | +[data-theme='dark'] .ant-select-tree-show-line .ant-select-tree-switcher { | |
8323 | + background: #151515; | |
8324 | +} | |
8325 | + | |
8326 | +[data-theme='dark'] html[data-theme='dark'] .vben-login { | |
8327 | + background-color: #293146; | |
8328 | +} | |
8329 | + | |
8330 | +[data-theme='dark'] html[data-theme='dark'] .vben-login .ant-input, | |
8331 | +[data-theme='dark'] html[data-theme='dark'] .vben-login .ant-input-password { | |
8332 | + background-color: #232a3b; | |
8333 | +} | |
8334 | + | |
8335 | +[data-theme='dark'] | |
8336 | + html[data-theme='dark'] | |
8337 | + .vben-login | |
8338 | + .ant-btn:not(.ant-btn-link):not(.ant-btn-primary) { | |
8339 | + border: 1px solid #4a5569; | |
8340 | +} | |
8341 | + | |
8342 | +[data-theme='dark'] html[data-theme='dark'] .vben-login-form { | |
8343 | + background: 0 0 !important; | |
8344 | +} | |
8345 | + | |
8346 | +[data-theme='dark'] html[data-theme='dark'] .vben-login .app-iconify { | |
8347 | + color: #fff; | |
8348 | +} | |
8349 | + | |
8350 | +[data-theme='dark'] html[data-theme='dark'] .fix-auto-fill input, | |
8351 | +[data-theme='dark'] html[data-theme='dark'] input.fix-auto-fill { | |
8352 | + -webkit-text-fill-color: #c9d1d9 !important; | |
8353 | +} | |
8354 | + | |
8355 | +@media (max-width: 1200px) { | |
8356 | + [data-theme='dark'] { | |
8357 | + background-color: #293146; | |
8358 | + } | |
8359 | +} | |
8360 | + | |
8361 | +[data-theme='dark'] .vben-login .vben-login-form { | |
8362 | + background-color: #fff; | |
8363 | +} | |
8364 | + | |
8365 | +[data-theme='dark'] .vben-login .vben-app-logo__title { | |
8366 | + color: #fff; | |
8367 | +} | |
8368 | + | |
8369 | +[data-theme='dark'] .vben-login .container .vben-app-logo__title { | |
8370 | + color: #fff; | |
8371 | +} | |
8372 | + | |
8373 | +[data-theme='dark'] .vben-login-sign-in-way .anticon { | |
8374 | + color: #888; | |
8375 | +} | |
8376 | + | |
8377 | +[data-theme='dark'] .vben-login-sign-in-way .anticon:hover { | |
8378 | + color: #0960bd; | |
8379 | +} | |
8380 | + | |
8381 | +[data-theme='dark'] .vben-login .ant-divider-inner-text { | |
8382 | + color: #8b949e; | |
8383 | +} | |
8384 | + | |
8385 | +[data-theme='dark'] .vben-app-logo.light { | |
8386 | + border-bottom: 1px solid #303030; | |
8387 | +} | |
8388 | + | |
8389 | +[data-theme='dark'] .vben-app-logo.light .vben-app-logo__title { | |
8390 | + color: #0960bd; | |
8391 | +} | |
8392 | + | |
8393 | +[data-theme='dark'] .vben-app-logo.dark .vben-app-logo__title { | |
8394 | + color: #fff; | |
8395 | +} | |
8396 | + | |
8397 | +[data-theme='dark'] html[data-theme='dark'] .vben-dark-switch { | |
8398 | + border: 1px solid #c4bcbc; | |
8399 | +} | |
8400 | + | |
8401 | +[data-theme='dark'] .vben-dark-switch { | |
8402 | + background-color: #151515; | |
8403 | +} | |
8404 | + | |
8405 | +[data-theme='dark'] .vben-dark-switch-inner { | |
8406 | + background-color: #fff; | |
8407 | +} | |
8408 | + | |
8409 | +[data-theme='dark'] .scroll-wrap { | |
8410 | + background-color: #151515; | |
8411 | +} | |
8412 | + | |
8413 | +[data-theme='dark'] .virtual-scroll-demo-wrap { | |
8414 | + background-color: #151515; | |
8415 | +} | |
8416 | + | |
8417 | +[data-theme='dark'] .virtual-scroll-demo__item { | |
8418 | + border-bottom: 1px solid #303030; | |
8419 | +} | |
8420 | + | |
8421 | +[data-theme='dark'] .lazy-base-demo-wrap { | |
8422 | + background-color: #151515; | |
8423 | +} | |
8424 | + | |
8425 | +[data-theme='dark'] .demo-wrap { | |
8426 | + background-color: #151515; | |
8427 | +} | |
8428 | + | |
8429 | +[data-theme='dark'] .form-wrap { | |
8430 | + background-color: #151515; | |
8431 | +} | |
8432 | + | |
8433 | +[data-theme='dark'] .full-loading { | |
8434 | + background-color: rgb(240 242 245 / 40%); | |
8435 | +} | |
8436 | + | |
8437 | +[data-theme='dark'] html[data-theme='dark'] .full-loading:not(.light) { | |
8438 | + background-color: rgb(0 0 0 / 45%); | |
8439 | +} | |
8440 | + | |
8441 | +[data-theme='dark'] .full-loading.dark { | |
8442 | + background-color: rgb(0 0 0 / 45%); | |
8443 | +} | |
8444 | + | |
8445 | +[data-theme='dark'] .step-form-content { | |
8446 | + background-color: #151515; | |
8447 | +} | |
8448 | + | |
8449 | +[data-theme='dark'] .desc-wrap { | |
8450 | + background-color: #151515 !important; | |
8451 | +} | |
8452 | + | |
8453 | +[data-theme='dark'] .result-success { | |
8454 | + background-color: #151515; | |
8455 | +} | |
8456 | + | |
8457 | +[data-theme='dark'] .result-success__content { | |
8458 | + background-color: rgb(255 255 255 / 4%); | |
8459 | +} | |
8460 | + | |
8461 | +[data-theme='dark'] .result-error { | |
8462 | + background-color: #151515; | |
8463 | +} | |
8464 | + | |
8465 | +[data-theme='dark'] .result-error__content { | |
8466 | + background-color: rgb(255 255 255 / 4%); | |
8467 | +} | |
8468 | + | |
8469 | +[data-theme='dark'] .result-error__content-icon { | |
8470 | + color: #ff4d4f; | |
8471 | +} | |
8472 | + | |
8473 | +[data-theme='dark'] .account-center-col:not(:last-child):not(:last-child) { | |
8474 | + border-right: 1px dashed rgb(206 206 206 / 50%); | |
8475 | +} | |
8476 | + | |
8477 | +[data-theme='dark'] .account-center-top { | |
8478 | + background-color: #151515; | |
8479 | +} | |
8480 | + | |
8481 | +[data-theme='dark'] .account-center-bottom { | |
8482 | + background-color: #151515; | |
8483 | +} | |
8484 | + | |
8485 | +[data-theme='dark'] .account-setting { | |
8486 | + background-color: #151515; | |
8487 | +} | |
8488 | + | |
8489 | +[data-theme='dark'] .account-setting .ant-tabs-tab-active { | |
8490 | + background-color: #111b26; | |
8491 | +} | |
8492 | + | |
8493 | +[data-theme='dark'] .list-card__card-title { | |
8494 | + color: #c9d1d9; | |
8495 | +} | |
8496 | + | |
8497 | +[data-theme='dark'] .list-card__card-detail { | |
8498 | + color: #8b949e; | |
8499 | +} | |
8500 | + | |
8501 | +[data-theme='dark'] .demo { | |
8502 | + background-color: #151515; | |
8503 | +} | |
8504 | + | |
8505 | +[data-theme='dark'] .list-basic__top { | |
8506 | + background-color: #151515; | |
8507 | +} | |
8508 | + | |
8509 | +[data-theme='dark'] .list-basic__top-col:not(:last-child) { | |
8510 | + border-right: 1px dashed #303030; | |
8511 | +} | |
8512 | + | |
8513 | +[data-theme='dark'] .list-basic__top-col div { | |
8514 | + color: #c9d1d9; | |
8515 | +} | |
8516 | + | |
8517 | +[data-theme='dark'] .list-basic__top-col p { | |
8518 | + color: #c9d1d9; | |
8519 | +} | |
8520 | + | |
8521 | +[data-theme='dark'] .list-basic__content { | |
8522 | + background-color: #151515; | |
8523 | +} | |
8524 | + | |
8525 | +[data-theme='dark'] .list-basic__content .extra { | |
8526 | + color: #0960bd; | |
8527 | +} | |
8528 | + | |
8529 | +[data-theme='dark'] .list-search__container { | |
8530 | + background-color: #151515; | |
8531 | +} | |
8532 | + | |
8533 | +[data-theme='dark'] .list-search__content { | |
8534 | + color: #8b949e; | |
8535 | +} | |
8536 | + | |
8537 | +[data-theme='dark'] .list-search__action-item { | |
8538 | + color: #8b949e; | |
8539 | +} | |
8540 | + | |
8541 | +[data-theme='dark'] .list-search__action-item:first-child, | |
8542 | +[data-theme='dark'] .list-search__action-item:nth-child(2) { | |
8543 | + border-right: 1px solid #303030; | |
8544 | +} | |
8545 | + | |
8546 | +[data-theme='dark'] .list-search__time { | |
8547 | + color: rgb(0 0 0 / 45%); | |
8548 | +} | |
8549 | + | |
8550 | +[data-theme='dark'] span.iconify { | |
8551 | + background-color: #555; | |
8552 | +} | |
8553 | + | |
8554 | +[data-theme='dark'] .vben-default-layout { | |
8555 | + background-color: #f4f7f9; | |
8556 | +} | |
8557 | + | |
8558 | +[data-theme='dark'] .vben-basic-table-header-cell__help { | |
8559 | + color: rgb(0 0 0 / 65%) !important; | |
8560 | +} | |
8561 | + | |
8562 | +[data-theme='dark'] .ant-modal-confirm-body .ant-modal-confirm-content > * { | |
8563 | + color: #909399; | |
8564 | +} | |
8565 | + | |
8566 | +[data-theme='dark'] .ant-modal-confirm-confirm.error .ant-modal-confirm-body > .anticon { | |
8567 | + color: #ed6f6f; | |
8568 | +} | |
8569 | + | |
8570 | +[data-theme='dark'] .ant-modal-confirm-info .ant-modal-confirm-body > .anticon { | |
8571 | + color: #efbd47; | |
8572 | +} | |
8573 | + | |
8574 | +[data-theme='dark'] .ant-modal-confirm-confirm.success .ant-modal-confirm-body > .anticon { | |
8575 | + color: #55d187; | |
8576 | +} | |
8577 | + | |
8578 | +[data-theme='dark'] .step1 h3 { | |
8579 | + color: #c9d1d9; | |
8580 | +} | |
8581 | + | |
8582 | +[data-theme='dark'] .step1 h4 { | |
8583 | + color: #c9d1d9; | |
8584 | +} | |
8585 | + | |
8586 | +[data-theme='dark'] .step1 p { | |
8587 | + color: #c9d1d9; | |
8588 | +} | |
8589 | + | |
8590 | +[data-theme='dark'] .vben-app-search-modal { | |
8591 | + background-color: rgb(0 0 0 / 25%); | |
8592 | +} | |
8593 | + | |
8594 | +[data-theme='dark'] .vben-app-search-modal-content { | |
8595 | + background-color: #151515; | |
8596 | +} | |
8597 | + | |
8598 | +[data-theme='dark'] .vben-app-search-modal-input { | |
8599 | + color: #1c1e21; | |
8600 | +} | |
8601 | + | |
8602 | +[data-theme='dark'] .vben-app-search-modal-input span[role='img'] { | |
8603 | + color: #999; | |
8604 | +} | |
8605 | + | |
8606 | +[data-theme='dark'] .vben-app-search-modal-cancel { | |
8607 | + color: #666; | |
8608 | +} | |
8609 | + | |
8610 | +[data-theme='dark'] .vben-app-search-modal-not-data { | |
8611 | + color: #969faf; | |
8612 | +} | |
8613 | + | |
8614 | +[data-theme='dark'] .vben-app-search-modal-list__item { | |
8615 | + background-color: #151515; | |
8616 | + box-shadow: 0 1px 3px 0 #d4d9e1; | |
8617 | + color: #c9d1d9; | |
8618 | +} | |
8619 | + | |
8620 | +[data-theme='dark'] .vben-app-search-modal-list__item--active { | |
8621 | + background-color: #0960bd; | |
8622 | + color: #fff; | |
8623 | +} | |
8624 | + | |
8625 | +[data-theme='dark'] .account-center-application__card-num { | |
8626 | + color: #8b949e; | |
8627 | +} | |
8628 | + | |
8629 | +[data-theme='dark'] .account-center-application__card-download { | |
8630 | + color: #0960bd; | |
8631 | +} | |
8632 | + | |
8633 | +[data-theme='dark'] [data-theme='dark'] .vben-form-design-sider { | |
8634 | + background-color: #1f1f1f; | |
8635 | +} | |
8636 | + | |
8637 | +[data-theme='dark'] [data-theme='light'] .vben-form-design-sider { | |
8638 | + background-color: #fff; | |
8639 | +} | |
8640 | + | |
8641 | +[data-theme='dark'] .vben-st-login { | |
8642 | + background: #151515; | |
8643 | +} | |
8644 | + | |
8645 | +[data-theme='dark'] .vben-iframe-page__main { | |
8646 | + background-color: #151515; | |
8647 | +} | |
8648 | + | |
8649 | +[data-theme='dark'] .vben-lock-page__hour, | |
8650 | +[data-theme='dark'] .vben-lock-page__minute { | |
8651 | + background-color: #141313; | |
8652 | + color: #bababa; | |
8653 | +} | |
8654 | + | |
8655 | +[data-theme='dark'] .vben-lock-page-entry { | |
8656 | + background-color: rgb(0 0 0 / 50%); | |
8657 | +} | |
8658 | + | |
8659 | +[data-theme='dark'] .vben-lock-page-entry__header-name { | |
8660 | + color: #bababa; | |
8661 | +} | |
8662 | + | |
8663 | +[data-theme='dark'] .vben-lock-page-entry__err-msg { | |
8664 | + color: #ed6f6f; | |
8665 | +} | |
8666 | + | |
8667 | +[data-theme='dark'] ul li { | |
8668 | + border: 1px solid #ccc; | |
8669 | +} | |
8670 | + | |
8671 | +[data-theme='dark'] ul li:hover { | |
8672 | + border: 1px solid #0960bd; | |
8673 | + box-shadow: 0 2px 6px #0960bd; | |
8674 | + color: #0960bd; | |
8675 | +} | |
8676 | + | |
8677 | +[data-theme='dark'] .hidden-item { | |
8678 | + background-color: #f0bfc3; | |
8679 | +} | |
8680 | + | |
8681 | +[data-theme='dark'] .draggable-box :deep(.list-main) .moving::before { | |
8682 | + background-color: #0960bd; | |
8683 | +} | |
8684 | + | |
8685 | +[data-theme='dark'] .draggable-box :deep(.list-main) .drag-move-box:hover { | |
8686 | + background-color: rgb(9 96 189 / 20%); | |
8687 | +} | |
8688 | + | |
8689 | +[data-theme='dark'] .draggable-box :deep(.list-main) .drag-move-box::before { | |
8690 | + background-color: #0960bd; | |
8691 | +} | |
8692 | + | |
8693 | +[data-theme='dark'] .draggable-box :deep(.list-main) .drag-move-box.active { | |
8694 | + background-color: rgb(9 96 189 / 20%); | |
8695 | +} | |
8696 | + | |
8697 | +[data-theme='dark'] .draggable-box :deep(.list-main) .drag-move-box .show-key-box { | |
8698 | + color: #0960bd; | |
8699 | +} | |
8700 | + | |
8701 | +[data-theme='dark'] .draggable-box :deep(.list-main) .drag-move-box .copy, | |
8702 | +[data-theme='dark'] .draggable-box :deep(.list-main) .drag-move-box .delete { | |
8703 | + color: #fff; | |
8704 | +} | |
8705 | + | |
8706 | +[data-theme='dark'] .draggable-box :deep(.list-main) .drag-move-box .copy { | |
8707 | + background-color: #0960bd; | |
8708 | +} | |
8709 | + | |
8710 | +[data-theme='dark'] .draggable-box :deep(.list-main) .drag-move-box .delete { | |
8711 | + background-color: #0960bd; | |
8712 | +} | |
8713 | + | |
8714 | +[data-theme='dark'] .draggable-box :deep(.list-main) .grid-box { | |
8715 | + background-color: rgb(152 103 247 / 12%); | |
8716 | +} | |
8717 | + | |
8718 | +[data-theme='dark'] .draggable-box :deep(.list-main) .grid-box .grid-row { | |
8719 | + background-color: rgb(152 103 247 / 12%); | |
8720 | +} | |
8721 | + | |
8722 | +[data-theme='dark'] .draggable-box :deep(.list-main) .grid-box .grid-row .grid-col .draggable-box { | |
8723 | + border: 1px #ccc; | |
8724 | +} | |
8725 | + | |
8726 | +[data-theme='dark'] | |
8727 | + .draggable-box | |
8728 | + :deep(.list-main) | |
8729 | + .grid-box | |
8730 | + .grid-row | |
8731 | + .grid-col | |
8732 | + .draggable-box | |
8733 | + .list-main { | |
8734 | + border: 1px #ccc; | |
8735 | +} | |
8736 | + | |
8737 | +[data-theme='dark'] .draggable-box :deep(.list-main) .grid-box::before { | |
8738 | + background: 0 0; | |
8739 | +} | |
8740 | + | |
8741 | +[data-theme='dark'] .draggable-box :deep(.list-main) .grid-box.active { | |
8742 | + background-color: rgb(152 103 247 / 24%); | |
8743 | +} | |
8744 | + | |
8745 | +[data-theme='dark'] .draggable-box :deep(.list-main) .grid-box.active::before { | |
8746 | + background-color: #9867f7; | |
8747 | +} | |
8748 | + | |
8749 | +[data-theme='dark'] .draggable-box :deep(.list-main) .grid-box > .copy-delete-box > .copy, | |
8750 | +[data-theme='dark'] .draggable-box :deep(.list-main) .grid-box > .copy-delete-box > .delete { | |
8751 | + color: #fff; | |
8752 | +} | |
8753 | + | |
8754 | +[data-theme='dark'] .draggable-box :deep(.list-main) .grid-box > .copy-delete-box > .copy { | |
8755 | + background-color: #9867f7; | |
8756 | +} | |
8757 | + | |
8758 | +[data-theme='dark'] .draggable-box :deep(.list-main) .grid-box > .copy-delete-box > .delete { | |
8759 | + background-color: #9867f7; | |
8760 | +} | |
8761 | + | |
8762 | +[data-theme='dark'] .form-panel .empty-text { | |
8763 | + color: #aaa; | |
8764 | +} | |
8765 | + | |
8766 | +[data-theme='dark'] .operating-area { | |
8767 | + border-bottom: 2px solid #ccc; | |
8768 | +} | |
8769 | + | |
8770 | +[data-theme='dark'] .operating-area a { | |
8771 | + color: #666; | |
8772 | +} | |
8773 | + | |
8774 | +[data-theme='dark'] .operating-area a.disabled, | |
8775 | +[data-theme='dark'] .operating-area a.disabled:hover { | |
8776 | + color: #ccc; | |
8777 | +} | |
8778 | + | |
8779 | +[data-theme='dark'] .operating-area a:hover { | |
8780 | + color: #0960bd; | |
8781 | +} | |
8782 | + | |
8783 | +[data-theme='dark'] .vben-layout-header { | |
8784 | + background-color: #fff; | |
8785 | + color: #fff; | |
8786 | +} | |
8787 | + | |
8788 | +[data-theme='dark'] .vben-layout-header-left .vben-layout-header-trigger.light:hover { | |
8789 | + background-color: #f6f6f6; | |
8790 | +} | |
8791 | + | |
8792 | +[data-theme='dark'] .vben-layout-header-left .vben-layout-header-trigger.light svg { | |
8793 | + fill: #000; | |
8794 | +} | |
8795 | + | |
8796 | +[data-theme='dark'] .vben-layout-header--light { | |
8797 | + border-bottom: 1px solid #eee; | |
8798 | + border-left: 1px solid #eee; | |
8799 | + background-color: #fff !important; | |
8800 | +} | |
8801 | + | |
8802 | +[data-theme='dark'] .vben-layout-header--light .vben-layout-header-logo { | |
8803 | + color: #c9d1d9; | |
8804 | +} | |
8805 | + | |
8806 | +[data-theme='dark'] .vben-layout-header--light .vben-layout-header-logo:hover { | |
8807 | + background-color: #f6f6f6; | |
8808 | +} | |
8809 | + | |
8810 | +[data-theme='dark'] .vben-layout-header--light .vben-layout-header-action__item { | |
8811 | + color: #c9d1d9; | |
8812 | +} | |
8813 | + | |
8814 | +[data-theme='dark'] .vben-layout-header--light .vben-layout-header-action__item:hover { | |
8815 | + background-color: #f6f6f6; | |
8816 | +} | |
8817 | + | |
8818 | +[data-theme='dark'] .vben-layout-header--light .vben-layout-header-action span[role='img'], | |
8819 | +[data-theme='dark'] .vben-layout-header--light .vben-layout-header-action-icon { | |
8820 | + color: #c9d1d9; | |
8821 | +} | |
8822 | + | |
8823 | +[data-theme='dark'] .vben-layout-header--dark { | |
8824 | + border-left: 1px solid #303030; | |
8825 | +} | |
8826 | + | |
8827 | +[data-theme='dark'] .vben-layout-header--dark .vben-layout-header-action__item .ant-badge span { | |
8828 | + color: #fff; | |
8829 | +} | |
8830 | + | |
8831 | +[data-theme='dark'] .vben-setting-drawer-feature { | |
8832 | + background-color: #0960bd; | |
8833 | + color: #fff; | |
8834 | +} | |
8835 | + | |
8836 | +[data-theme='dark'] .vben-layout-footer { | |
8837 | + color: #d9d9d9; | |
8838 | +} | |
8839 | + | |
8840 | +[data-theme='dark'] .vben-layout-footer__links a { | |
8841 | + color: #d9d9d9; | |
8842 | +} | |
8843 | + | |
8844 | +[data-theme='dark'] .vben-layout-footer__links a:hover { | |
8845 | + color: rgb(0 0 0 / 85%); | |
8846 | +} | |
8847 | + | |
8848 | +[data-theme='dark'] .vben-layout-footer__github:hover { | |
8849 | + color: rgb(0 0 0 / 85%); | |
8850 | +} | |
8851 | + | |
8852 | +[data-theme='dark'] .vben-page-footer { | |
8853 | + border-top: 1px solid #303030; | |
8854 | + background-color: #151515; | |
8855 | +} | |
8856 | + | |
8857 | +[data-theme='dark'] .vben-collapse-container { | |
8858 | + background-color: #151515; | |
8859 | +} | |
8860 | + | |
8861 | +[data-theme='dark'] .vben-collapse-container__header { | |
8862 | + border-bottom: 1px solid #303030; | |
8863 | +} | |
8864 | + | |
8865 | +[data-theme='dark'] .vben-collapse-container__footer { | |
8866 | + border-top: 1px solid #303030; | |
8867 | +} | |
8868 | + | |
8869 | +[data-theme='dark'] .vben-page-wrapper-content-bg { | |
8870 | + background-color: #151515; | |
8871 | +} | |
8872 | + | |
8873 | +[data-theme='dark'] .vben-basic-help { | |
8874 | + color: #909399; | |
8875 | +} | |
8876 | + | |
8877 | +[data-theme='dark'] .vben-basic-help:hover { | |
8878 | + color: #0960bd; | |
8879 | +} | |
8880 | + | |
8881 | +[data-theme='dark'] .vben-basic-title { | |
8882 | + color: #c9d1d9; | |
8883 | +} | |
8884 | + | |
8885 | +[data-theme='dark'] .vben-basic-title-show-span::before { | |
8886 | + background-color: #0960bd; | |
8887 | +} | |
8888 | + | |
8889 | +[data-theme='dark'] .vben-cropper-avatar-image-wrapper { | |
8890 | + border: 1px solid #303030; | |
8891 | + background: #151515; | |
8892 | +} | |
8893 | + | |
8894 | +[data-theme='dark'] .vben-cropper-avatar-image-mask { | |
8895 | + background: rgb(0 0 0 / 40%); | |
8896 | +} | |
8897 | + | |
8898 | +[data-theme='dark'] [data-theme='dark'] .ant-table-tbody > tr.ant-table-row-selected td, | |
8899 | +[data-theme='dark'] [data-theme='dark'] .ant-table-tbody > tr:hover.ant-table-row-selected > td { | |
8900 | + background-color: #262626; | |
8901 | +} | |
8902 | + | |
8903 | +[data-theme='dark'] .vben-basic-table-row__striped td { | |
8904 | + background-color: #1e1e1e; | |
8905 | +} | |
8906 | + | |
8907 | +[data-theme='dark'] .vben-basic-table-form-container .ant-form { | |
8908 | + background-color: #151515; | |
8909 | +} | |
8910 | + | |
8911 | +[data-theme='dark'] .vben-basic-table .ant-table-wrapper { | |
8912 | + background-color: #151515; | |
8913 | +} | |
8914 | + | |
8915 | +[data-theme='dark'] .vben-tree { | |
8916 | + background-color: #151515; | |
8917 | +} | |
8918 | + | |
8919 | +[data-theme='dark'] .vben-tree-header { | |
8920 | + border-bottom: 1px solid #303030; | |
8921 | +} | |
8922 | + | |
8923 | +[data-theme='dark'] .darg-verify { | |
8924 | + border: 1px solid #ddd; | |
8925 | + background-color: #eee; | |
8926 | +} | |
8927 | + | |
8928 | +[data-theme='dark'] .darg-verify-bar { | |
8929 | + background-color: #55d187; | |
8930 | +} | |
8931 | + | |
8932 | +[data-theme='dark'] .darg-verify-content.success { | |
8933 | + -webkit-text-fill-color: #fff; | |
8934 | +} | |
8935 | + | |
8936 | +[data-theme='dark'] .darg-verify-content > * { | |
8937 | + -webkit-text-fill-color: #333; | |
8938 | +} | |
8939 | + | |
8940 | +[data-theme='dark'] .darg-verify-action { | |
8941 | + background-color: #fff; | |
8942 | +} | |
8943 | + | |
8944 | +[data-theme='dark'] .ir-dv-img__tip { | |
8945 | + color: #fff; | |
8946 | +} | |
8947 | + | |
8948 | +[data-theme='dark'] .ir-dv-img__tip.success { | |
8949 | + background-color: rgb(85 209 135 / 60%); | |
8950 | +} | |
8951 | + | |
8952 | +[data-theme='dark'] .ir-dv-img__tip.error { | |
8953 | + background-color: rgb(237 111 111 / 60%); | |
8954 | +} | |
8955 | + | |
8956 | +[data-theme='dark'] .ir-dv-img__tip.normal { | |
8957 | + background-color: rgb(0 0 0 / 30%); | |
8958 | +} | |
8959 | + | |
8960 | +[data-theme='dark'] .vben-basic-drawer .ant-drawer-close:hover { | |
8961 | + color: #ed6f6f; | |
8962 | +} | |
8963 | + | |
8964 | +[data-theme='dark'] .vben-basic-drawer .ant-drawer-body { | |
8965 | + background-color: #151515; | |
8966 | +} | |
8967 | + | |
8968 | +[data-theme='dark'] .vben-basic-drawer__detail .ant-drawer-header { | |
8969 | + border-top: 1px solid #303030; | |
8970 | +} | |
8971 | + | |
8972 | +[data-theme='dark'] .vben-strength-meter-bar { | |
8973 | + background-color: rgb(255 255 255 / 30%); | |
8974 | +} | |
8975 | + | |
8976 | +[data-theme='dark'] .vben-strength-meter-bar::after, | |
8977 | +[data-theme='dark'] .vben-strength-meter-bar::before { | |
8978 | + border-color: #fff; | |
8979 | + background-color: transparent; | |
8980 | +} | |
8981 | + | |
8982 | +[data-theme='dark'] .vben-strength-meter-bar--fill { | |
8983 | + background-color: transparent; | |
8984 | +} | |
8985 | + | |
8986 | +[data-theme='dark'] .vben-strength-meter-bar--fill[data-score='0'] { | |
8987 | + background-color: #e74242; | |
8988 | +} | |
8989 | + | |
8990 | +[data-theme='dark'] .vben-strength-meter-bar--fill[data-score='1'] { | |
8991 | + background-color: #ed6f6f; | |
8992 | +} | |
8993 | + | |
8994 | +[data-theme='dark'] .vben-strength-meter-bar--fill[data-score='2'] { | |
8995 | + background-color: #efbd47; | |
8996 | +} | |
8997 | + | |
8998 | +[data-theme='dark'] .vben-strength-meter-bar--fill[data-score='3'] { | |
8999 | + background-color: rgb(85 209 135 / 50%); | |
9000 | +} | |
9001 | + | |
9002 | +[data-theme='dark'] .vben-strength-meter-bar--fill[data-score='4'] { | |
9003 | + background-color: #55d187; | |
9004 | +} | |
9005 | + | |
9006 | +[data-theme='dark'] .vben-image-preview .ant-image-preview-operations { | |
9007 | + background-color: rgb(0 0 0 / 40%); | |
9008 | +} | |
9009 | + | |
9010 | +[data-theme='dark'] .vben-app-search-footer { | |
9011 | + border-top: 1px solid #303030; | |
9012 | + background-color: #151515; | |
9013 | + color: #666; | |
9014 | +} | |
9015 | + | |
9016 | +[data-theme='dark'] html[data-theme='dark'] .vben-multiple-tabs .ant-tabs-tab { | |
9017 | + border-bottom: 1px solid #303030; | |
9018 | +} | |
9019 | + | |
9020 | +[data-theme='dark'] | |
9021 | + html[data-theme='light'] | |
9022 | + .vben-multiple-tabs | |
9023 | + .ant-tabs-tab:not(.ant-tabs-tab-active) { | |
9024 | + border: 1px solid #d9d9d9 !important; | |
9025 | +} | |
9026 | + | |
9027 | +[data-theme='dark'] .vben-multiple-tabs { | |
9028 | + border-bottom: 1px solid #303030; | |
9029 | + background-color: #151515; | |
9030 | +} | |
9031 | + | |
9032 | +[data-theme='dark'] .vben-multiple-tabs .ant-tabs.ant-tabs-card .ant-tabs-nav { | |
9033 | + background-color: #151515; | |
9034 | +} | |
9035 | + | |
9036 | +[data-theme='dark'] .vben-multiple-tabs .ant-tabs.ant-tabs-card .ant-tabs-nav .ant-tabs-tab { | |
9037 | + background-color: #151515; | |
9038 | + color: #c9d1d9; | |
9039 | +} | |
9040 | + | |
9041 | +[data-theme='dark'] .vben-multiple-tabs .ant-tabs.ant-tabs-card .ant-tabs-nav .ant-tabs-tab svg { | |
9042 | + fill: #c9d1d9; | |
9043 | +} | |
9044 | + | |
9045 | +[data-theme='dark'] | |
9046 | + .vben-multiple-tabs | |
9047 | + .ant-tabs.ant-tabs-card | |
9048 | + .ant-tabs-nav | |
9049 | + .ant-tabs-tab:not(.ant-tabs-tab-active):hover { | |
9050 | + color: #0960bd; | |
9051 | +} | |
9052 | + | |
9053 | +[data-theme='dark'] .vben-multiple-tabs .ant-tabs.ant-tabs-card .ant-tabs-nav .ant-tabs-tab-active { | |
9054 | + background: #0960bd; | |
9055 | +} | |
9056 | + | |
9057 | +[data-theme='dark'] | |
9058 | + .vben-multiple-tabs | |
9059 | + .ant-tabs.ant-tabs-card | |
9060 | + .ant-tabs-nav | |
9061 | + .ant-tabs-tab-active | |
9062 | + span { | |
9063 | + color: #fff !important; | |
9064 | +} | |
9065 | + | |
9066 | +[data-theme='dark'] | |
9067 | + .vben-multiple-tabs | |
9068 | + .ant-tabs.ant-tabs-card | |
9069 | + .ant-tabs-nav | |
9070 | + .ant-tabs-tab-active | |
9071 | + svg { | |
9072 | + fill: #fff; | |
9073 | +} | |
9074 | + | |
9075 | +[data-theme='dark'] .vben-multiple-tabs-content__extra-fold, | |
9076 | +[data-theme='dark'] .vben-multiple-tabs-content__extra-quick, | |
9077 | +[data-theme='dark'] .vben-multiple-tabs-content__extra-redo { | |
9078 | + border-left: 1px solid #303030; | |
9079 | + color: #8b949e; | |
9080 | +} | |
9081 | + | |
9082 | +[data-theme='dark'] .vben-multiple-tabs-content__extra-fold:hover, | |
9083 | +[data-theme='dark'] .vben-multiple-tabs-content__extra-quick:hover, | |
9084 | +[data-theme='dark'] .vben-multiple-tabs-content__extra-redo:hover { | |
9085 | + color: #c9d1d9; | |
9086 | +} | |
9087 | + | |
9088 | +[data-theme='dark'] .vben-layout-mix-sider.light .vben-layout-mix-sider-logo { | |
9089 | + border-bottom: 1px solid #eee; | |
9090 | +} | |
9091 | + | |
9092 | +[data-theme='dark'] .vben-layout-mix-sider.light.open > .scrollbar { | |
9093 | + border-right: 1px solid #eee; | |
9094 | +} | |
9095 | + | |
9096 | +[data-theme='dark'] .vben-layout-mix-sider.light .vben-layout-mix-sider-module__item { | |
9097 | + color: rgb(0 0 0 / 65%); | |
9098 | +} | |
9099 | + | |
9100 | +[data-theme='dark'] .vben-layout-mix-sider.light .vben-layout-mix-sider-module__item--active { | |
9101 | + color: #0960bd; | |
9102 | +} | |
9103 | + | |
9104 | +[data-theme='dark'] .vben-layout-mix-sider.light .vben-layout-mix-sider-menu-list__content { | |
9105 | + box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%); | |
9106 | +} | |
9107 | + | |
9108 | +[data-theme='dark'] .vben-layout-mix-sider.light .vben-layout-mix-sider-menu-list__title .pushpin { | |
9109 | + color: rgb(0 0 0 / 35%); | |
9110 | +} | |
9111 | + | |
9112 | +[data-theme='dark'] | |
9113 | + .vben-layout-mix-sider.light | |
9114 | + .vben-layout-mix-sider-menu-list__title | |
9115 | + .pushpin:hover { | |
9116 | + color: rgb(0 0 0 / 85%); | |
9117 | +} | |
9118 | + | |
9119 | +[data-theme='dark'] .vben-layout-mix-sider.dark .vben-layout-mix-sider-menu-list__title { | |
9120 | + color: #fff; | |
9121 | +} | |
9122 | + | |
9123 | +[data-theme='dark'] .vben-layout-mix-sider-module__item { | |
9124 | + color: rgb(255 255 255 / 65%); | |
9125 | +} | |
9126 | + | |
9127 | +[data-theme='dark'] .vben-layout-mix-sider-module__item:hover { | |
9128 | + color: #fff; | |
9129 | +} | |
9130 | + | |
9131 | +[data-theme='dark'] .vben-layout-mix-sider-module__item--active { | |
9132 | + color: #fff; | |
9133 | +} | |
9134 | + | |
9135 | +[data-theme='dark'] .vben-layout-mix-sider-module__item--active::before { | |
9136 | + background-color: #0960bd; | |
9137 | +} | |
9138 | + | |
9139 | +[data-theme='dark'] .vben-layout-mix-sider-trigger { | |
9140 | + background-color: rgb(255 255 255 / 10%); | |
9141 | + color: rgb(255 255 255 / 65%); | |
9142 | +} | |
9143 | + | |
9144 | +[data-theme='dark'] .vben-layout-mix-sider.light .vben-layout-mix-sider-trigger { | |
9145 | + border-top: 1px solid #eee; | |
9146 | + background-color: #fff; | |
9147 | + color: rgb(0 0 0 / 65%); | |
9148 | +} | |
9149 | + | |
9150 | +[data-theme='dark'] .vben-layout-mix-sider-menu-list { | |
9151 | + background-color: #fff; | |
9152 | +} | |
9153 | + | |
9154 | +[data-theme='dark'] .vben-layout-mix-sider-menu-list__title { | |
9155 | + border-bottom: 1px solid #eee; | |
9156 | + color: #0960bd; | |
9157 | +} | |
9158 | + | |
9159 | +[data-theme='dark'] .vben-layout-mix-sider-menu-list__title .pushpin { | |
9160 | + color: rgb(255 255 255 / 65%); | |
9161 | +} | |
9162 | + | |
9163 | +[data-theme='dark'] .vben-layout-mix-sider-menu-list__title .pushpin:hover { | |
9164 | + color: #fff; | |
9165 | +} | |
9166 | + | |
9167 | +[data-theme='dark'] .vben-layout-mix-sider-menu-list__content .ant-menu-inline, | |
9168 | +[data-theme='dark'] .vben-layout-mix-sider-menu-list__content .ant-menu-vertical, | |
9169 | +[data-theme='dark'] .vben-layout-mix-sider-menu-list__content .ant-menu-vertical-left { | |
9170 | + border-right: 1px solid transparent; | |
9171 | +} | |
9172 | + | |
9173 | +[data-theme='dark'] .vben-layout-mix-sider-drag-bar { | |
9174 | + background-color: #f8f8f9; | |
9175 | + box-shadow: 0 0 4px 0 rgb(28 36 56 / 15%); | |
9176 | +} | |
9177 | + | |
9178 | +[data-theme='dark'] .vben-layout-sideBar.ant-layout-sider-dark .ant-layout-sider-trigger { | |
9179 | + background-color: rgb(255 255 255 / 10%); | |
9180 | + color: #bfbfbf; | |
9181 | +} | |
9182 | + | |
9183 | +[data-theme='dark'] .vben-layout-sideBar.ant-layout-sider-dark .ant-layout-sider-trigger:hover { | |
9184 | + background-color: rgb(255 255 255 / 20%); | |
9185 | + color: #fff; | |
9186 | +} | |
9187 | + | |
9188 | +[data-theme='dark'] .vben-layout-sideBar:not(.ant-layout-sider-dark) .ant-layout-sider-trigger { | |
9189 | + border-top: 1px solid #303030; | |
9190 | + color: #c9d1d9; | |
9191 | +} | |
9192 | + | |
9193 | +[data-theme='dark'] .vben-cropper-am-cropper { | |
9194 | + background: #eee; | |
9195 | +} | |
9196 | + | |
9197 | +[data-theme='dark'] .vben-cropper-am-preview { | |
9198 | + border: 1px solid #303030; | |
9199 | +} | |
9200 | + | |
9201 | +[data-theme='dark'] .vben-cropper-am-group { | |
9202 | + border-top: 1px solid #303030; | |
9203 | +} | |
9204 | + | |
9205 | +[data-theme='dark'] .vben-basic-drawer-footer { | |
9206 | + border-top: 1px solid #303030; | |
9207 | + background-color: #151515; | |
9208 | +} | |
9209 | + | |
9210 | +[data-theme='dark'] .vben-basic-drawer-header__back:hover { | |
9211 | + color: #0960bd; | |
9212 | +} | |
9213 | + | |
9214 | +[data-theme='dark'] .vben-basic-modal-close span:first-child:hover { | |
9215 | + color: #0960bd; | |
9216 | +} | |
9217 | + | |
9218 | +[data-theme='dark'] .vben-basic-modal-close span:last-child:hover { | |
9219 | + color: #ed6f6f; | |
9220 | +} | |
9221 | + | |
9222 | +[data-theme='dark'] html[data-theme='dark'] .lf-dnd { | |
9223 | + background: #080808; | |
9224 | +} | |
9225 | + | |
9226 | +[data-theme='dark'] .vben-flow-chart-toolbar { | |
9227 | + border-bottom: 1px solid #303030; | |
9228 | + background-color: #1e1e1e; | |
9229 | +} | |
9230 | + | |
9231 | +[data-theme='dark'] .vben-flow-chart-toolbar .disabeld { | |
9232 | + color: rgb(255 255 255 / 30%); | |
9233 | +} | |
9234 | + | |
9235 | +[data-theme='dark'] .vben-flow-chart-toolbar__icon:hover { | |
9236 | + color: #0960bd; | |
9237 | +} | |
9238 | + | |
9239 | +[data-theme='dark'] .img-preview { | |
9240 | + background: rgb(0 0 0 / 50%); | |
9241 | +} | |
9242 | + | |
9243 | +[data-theme='dark'] .img-preview-content { | |
9244 | + color: #fff; | |
9245 | +} | |
9246 | + | |
9247 | +[data-theme='dark'] .img-preview__close { | |
9248 | + background-color: rgb(0 0 0 / 50%); | |
9249 | + color: #fff; | |
9250 | +} | |
9251 | + | |
9252 | +[data-theme='dark'] .img-preview__close:hover { | |
9253 | + background-color: rgb(0 0 0 / 80%); | |
9254 | +} | |
9255 | + | |
9256 | +[data-theme='dark'] .img-preview__index { | |
9257 | + background: rgb(109 109 109 / 60%); | |
9258 | +} | |
9259 | + | |
9260 | +[data-theme='dark'] .img-preview__controller { | |
9261 | + background: rgb(109 109 109 / 60%); | |
9262 | +} | |
9263 | + | |
9264 | +[data-theme='dark'] .img-preview__arrow { | |
9265 | + background-color: rgb(0 0 0 / 50%); | |
9266 | +} | |
9267 | + | |
9268 | +[data-theme='dark'] .img-preview__arrow:hover { | |
9269 | + background-color: rgb(0 0 0 / 80%); | |
9270 | +} | |
9271 | + | |
9272 | +[data-theme='dark'] .vben-darg-bar:hover { | |
9273 | + background-color: #0960bd; | |
9274 | + box-shadow: 0 0 4px 0 rgb(28 36 56 / 15%); | |
9275 | +} | |
9276 | + | |
9277 | +[data-theme='dark'] .vben-header-user-dropdown--light:hover { | |
9278 | + background-color: #f6f6f6; | |
9279 | +} | |
9280 | + | |
9281 | +[data-theme='dark'] .vben-header-user-dropdown--light .vben-header-user-dropdown__name { | |
9282 | + color: #c9d1d9; | |
9283 | +} | |
9284 | + | |
9285 | +[data-theme='dark'] .vben-header-user-dropdown--light .vben-header-user-dropdown__desc { | |
9286 | + color: #7c8087; | |
9287 | +} | |
9288 | + | |
9289 | +[data-theme='dark'] .vben-layout-breadcrumb--light .ant-breadcrumb-link { | |
9290 | + color: #999; | |
9291 | +} | |
9292 | + | |
9293 | +[data-theme='dark'] .vben-layout-breadcrumb--light .ant-breadcrumb-link a { | |
9294 | + color: rgb(0 0 0 / 65%); | |
9295 | +} | |
9296 | + | |
9297 | +[data-theme='dark'] .vben-layout-breadcrumb--light .ant-breadcrumb-link a:hover { | |
9298 | + color: #0960bd; | |
9299 | +} | |
9300 | + | |
9301 | +[data-theme='dark'] .vben-layout-breadcrumb--light .ant-breadcrumb-separator { | |
9302 | + color: #999; | |
9303 | +} | |
9304 | + | |
9305 | +[data-theme='dark'] .vben-layout-breadcrumb--dark .ant-breadcrumb-link { | |
9306 | + color: rgb(255 255 255 / 60%); | |
9307 | +} | |
9308 | + | |
9309 | +[data-theme='dark'] .vben-layout-breadcrumb--dark .ant-breadcrumb-link a { | |
9310 | + color: rgb(255 255 255 / 80%); | |
9311 | +} | |
9312 | + | |
9313 | +[data-theme='dark'] .vben-layout-breadcrumb--dark .ant-breadcrumb-link a:hover { | |
9314 | + color: #fff; | |
9315 | +} | |
9316 | + | |
9317 | +[data-theme='dark'] .vben-layout-breadcrumb--dark .ant-breadcrumb-separator, | |
9318 | +[data-theme='dark'] .vben-layout-breadcrumb--dark .anticon { | |
9319 | + color: rgb(255 255 255 / 80%); | |
9320 | +} | |
9321 | + | |
9322 | +[data-theme='dark'] .file-table thead { | |
9323 | + background-color: rgb(255 255 255 / 4%); | |
9324 | +} | |
9325 | + | |
9326 | +[data-theme='dark'] .file-table table, | |
9327 | +[data-theme='dark'] .file-table td, | |
9328 | +[data-theme='dark'] .file-table th { | |
9329 | + border: 1px solid #303030; | |
9330 | +} | |
9331 | + | |
9332 | +[data-theme='dark'] .context-menu { | |
9333 | + border: 1px solid rgb(0 0 0 / 8%); | |
9334 | + background-color: #151515; | |
9335 | + box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 10%), | |
9336 | + 0 1px 5px 0 rgb(0 0 0 / 6%); | |
9337 | +} | |
9338 | + | |
9339 | +[data-theme='dark'] .context-menu li:not(.ant-menu-item-disabled):hover { | |
9340 | + background-color: rgb(255 255 255 / 8%); | |
9341 | + color: #c9d1d9; | |
9342 | +} | |
9343 | + | |
9344 | +[data-theme='dark'] .context-menu__popup li:not(.ant-menu-item-disabled):hover { | |
9345 | + background-color: rgb(255 255 255 / 8%); | |
9346 | + color: #c9d1d9; | |
9347 | +} | |
9348 | + | |
9349 | +[data-theme='dark'] .vben-simple-menu-tag { | |
9350 | + color: #fff; | |
9351 | +} | |
9352 | + | |
9353 | +[data-theme='dark'] .vben-simple-menu-tag--primary { | |
9354 | + background-color: #0960bd; | |
9355 | +} | |
9356 | + | |
9357 | +[data-theme='dark'] .vben-simple-menu-tag--error { | |
9358 | + background-color: #ed6f6f; | |
9359 | +} | |
9360 | + | |
9361 | +[data-theme='dark'] .vben-simple-menu-tag--success { | |
9362 | + background-color: #55d187; | |
9363 | +} | |
9364 | + | |
9365 | +[data-theme='dark'] .vben-simple-menu-tag--warn { | |
9366 | + background-color: #efbd47; | |
9367 | +} | |
9368 | + | |
9369 | +[data-theme='dark'] .edit-cell-rule-popover .ant-popover-inner-content { | |
9370 | + color: #ed6f6f; | |
9371 | +} | |
9372 | + | |
9373 | +[data-theme='dark'] .vben-editable-cell__icon:hover svg { | |
9374 | + color: #0960bd; | |
9375 | +} | |
9376 | + | |
9377 | +[data-theme='dark'] .vben-setting-theme-picker__item { | |
9378 | + border: 1px solid #ddd; | |
9379 | +} | |
9380 | + | |
9381 | +[data-theme='dark'] .vben-setting-theme-picker__item--active { | |
9382 | + border: 1px solid #0b79ee; | |
9383 | +} | |
9384 | + | |
9385 | +[data-theme='dark'] .vben-setting-theme-picker__item--active svg { | |
9386 | + fill: #fff !important; | |
9387 | +} | |
9388 | + | |
9389 | +[data-theme='dark'] .light-border::after { | |
9390 | + background-color: #0960bd; | |
9391 | +} | |
9392 | + | |
9393 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-item, | |
9394 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-submenu-title { | |
9395 | + color: rgb(255 255 255 / 70%); | |
9396 | +} | |
9397 | + | |
9398 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-dark .vben-menu-item, | |
9399 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-dark .vben-menu-submenu-title { | |
9400 | + color: rgb(255 255 255 / 70%); | |
9401 | +} | |
9402 | + | |
9403 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-dark .vben-menu-item:hover, | |
9404 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-dark .vben-menu-submenu-title:hover { | |
9405 | + color: #fff; | |
9406 | +} | |
9407 | + | |
9408 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-dark .vben-menu-item-selected, | |
9409 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-dark .vben-menu-submenu-title-selected { | |
9410 | + background-color: #0960bd !important; | |
9411 | + color: #fff; | |
9412 | +} | |
9413 | + | |
9414 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-light .vben-menu-item, | |
9415 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-light .vben-menu-submenu-title { | |
9416 | + color: #c9d1d9; | |
9417 | +} | |
9418 | + | |
9419 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-light .vben-menu-item:hover, | |
9420 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-light .vben-menu-submenu-title:hover { | |
9421 | + color: #0960bd; | |
9422 | +} | |
9423 | + | |
9424 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-light .vben-menu-item-selected, | |
9425 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-light .vben-menu-submenu-title-selected { | |
9426 | + background-color: rgb(9 96 189 / 10%); | |
9427 | + color: #0960bd; | |
9428 | +} | |
9429 | + | |
9430 | +[data-theme='dark'] .vben-menu-menu-popover .vben-menu-light .vben-menu-item-selected::after, | |
9431 | +[data-theme='dark'] | |
9432 | + .vben-menu-menu-popover | |
9433 | + .vben-menu-light | |
9434 | + .vben-menu-submenu-title-selected::after { | |
9435 | + background-color: #0960bd; | |
9436 | +} | |
9437 | + | |
9438 | +[data-theme='dark'] .vben-menu { | |
9439 | + color: #c9d1d9; | |
9440 | +} | |
9441 | + | |
9442 | +[data-theme='dark'] .vben-menu-light { | |
9443 | + background-color: #fff; | |
9444 | +} | |
9445 | + | |
9446 | +[data-theme='dark'] .vben-menu-light .vben-menu-submenu-active { | |
9447 | + color: #0960bd !important; | |
9448 | +} | |
9449 | + | |
9450 | +[data-theme='dark'] .vben-menu-light .vben-menu-submenu-active-border::after { | |
9451 | + background-color: #0960bd; | |
9452 | +} | |
9453 | + | |
9454 | +[data-theme='dark'] .vben-menu-dark .vben-menu-submenu-active { | |
9455 | + color: #fff !important; | |
9456 | +} | |
9457 | + | |
9458 | +[data-theme='dark'] .vben-menu-vertical .vben-menu-item:hover, | |
9459 | +[data-theme='dark'] .vben-menu-vertical .vben-menu-submenu-title:hover { | |
9460 | + color: #0960bd; | |
9461 | +} | |
9462 | + | |
9463 | +[data-theme='dark'] | |
9464 | + .vben-menu-light.vben-menu-vertical | |
9465 | + .vben-menu-item-active:not(.vben-menu-submenu) { | |
9466 | + background-color: rgb(9 96 189 / 10%); | |
9467 | + color: #0960bd; | |
9468 | +} | |
9469 | + | |
9470 | +[data-theme='dark'] | |
9471 | + .vben-menu-light.vben-menu-vertical | |
9472 | + .vben-menu-item-active:not(.vben-menu-submenu)::after { | |
9473 | + background-color: #0960bd; | |
9474 | +} | |
9475 | + | |
9476 | +[data-theme='dark'] .vben-menu-light.vben-menu-vertical .vben-menu-item-active.vben-menu-submenu { | |
9477 | + color: #0960bd; | |
9478 | +} | |
9479 | + | |
9480 | +[data-theme='dark'] | |
9481 | + .vben-menu-light.vben-menu-vertical.vben-menu-collapse | |
9482 | + .vben-menu-submenu-active, | |
9483 | +[data-theme='dark'] | |
9484 | + .vben-menu-light.vben-menu-vertical.vben-menu-collapse | |
9485 | + > li.vben-menu-item-active { | |
9486 | + background-color: rgb(9 96 189 / 5%); | |
9487 | +} | |
9488 | + | |
9489 | +[data-theme='dark'] | |
9490 | + .vben-menu-light.vben-menu-vertical.vben-menu-collapse | |
9491 | + .vben-menu-submenu-active::before, | |
9492 | +[data-theme='dark'] | |
9493 | + .vben-menu-light.vben-menu-vertical.vben-menu-collapse | |
9494 | + > li.vben-menu-item-active::before { | |
9495 | + background-color: #0960bd; | |
9496 | +} | |
9497 | + | |
9498 | +[data-theme='dark'] .vben-menu-dark.vben-menu-vertical .vben-menu-item, | |
9499 | +[data-theme='dark'] .vben-menu-dark.vben-menu-vertical .vben-menu-submenu-title { | |
9500 | + color: rgb(255 255 255 / 70%); | |
9501 | +} | |
9502 | + | |
9503 | +[data-theme='dark'] | |
9504 | + .vben-menu-dark.vben-menu-vertical | |
9505 | + .vben-menu-item-active:not(.vben-menu-submenu), | |
9506 | +[data-theme='dark'] | |
9507 | + .vben-menu-dark.vben-menu-vertical | |
9508 | + .vben-menu-submenu-title-active:not(.vben-menu-submenu) { | |
9509 | + background-color: #0960bd !important; | |
9510 | + color: #fff !important; | |
9511 | +} | |
9512 | + | |
9513 | +[data-theme='dark'] .vben-menu-dark.vben-menu-vertical .vben-menu-item:hover, | |
9514 | +[data-theme='dark'] .vben-menu-dark.vben-menu-vertical .vben-menu-submenu-title:hover { | |
9515 | + color: #fff; | |
9516 | +} | |
9517 | + | |
9518 | +[data-theme='dark'] .vben-menu-dark.vben-menu-vertical.vben-menu-collapse .vben-menu-submenu-active, | |
9519 | +[data-theme='dark'] | |
9520 | + .vben-menu-dark.vben-menu-vertical.vben-menu-collapse | |
9521 | + > li.vben-menu-item-active { | |
9522 | + color: #fff !important; | |
9523 | +} | |
9524 | + | |
9525 | +[data-theme='dark'] | |
9526 | + .vben-menu-dark.vben-menu-vertical.vben-menu-collapse | |
9527 | + .vben-menu-submenu-active::before, | |
9528 | +[data-theme='dark'] | |
9529 | + .vben-menu-dark.vben-menu-vertical.vben-menu-collapse | |
9530 | + > li.vben-menu-item-active::before { | |
9531 | + background-color: #0960bd; | |
9532 | +} | |
9533 | + | |
9534 | +[data-theme='dark'] | |
9535 | + .vben-menu-dark.vben-menu-vertical.vben-menu-collapse | |
9536 | + .vben-menu-submenu-active | |
9537 | + .vben-menu-submenu-collapse, | |
9538 | +[data-theme='dark'] | |
9539 | + .vben-menu-dark.vben-menu-vertical.vben-menu-collapse | |
9540 | + > li.vben-menu-item-active | |
9541 | + .vben-menu-submenu-collapse { | |
9542 | + background-color: transparent; | |
9543 | +} | |
9544 | + | |
9545 | +[data-theme='dark'] .vben-menu-dark.vben-menu-vertical .vben-menu-submenu .vben-menu-item-active, | |
9546 | +[data-theme='dark'] | |
9547 | + .vben-menu-dark.vben-menu-vertical | |
9548 | + .vben-menu-submenu | |
9549 | + .vben-menu-item-active:hover { | |
9550 | + color: #fff; | |
9551 | +} | |
9552 | + | |
9553 | +[data-theme='dark'] | |
9554 | + .vben-menu-dark.vben-menu-vertical | |
9555 | + .vben-menu-child-item-active | |
9556 | + > .vben-menu-submenu-title { | |
9557 | + color: #fff; | |
9558 | +} | |
9559 | + | |
9560 | +[data-theme='dark'] | |
9561 | + .vben-menu-dark.vben-menu-vertical | |
9562 | + .vben-menu-opened | |
9563 | + .vben-menu-submenu-has-parent-submenu | |
9564 | + .vben-menu-submenu-title { | |
9565 | + background-color: transparent; | |
9566 | +} | |
9567 | + | |
9568 | +[data-theme='dark'] .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark { | |
9569 | + background-color: transparent; | |
9570 | +} | |
9571 | + | |
9572 | +[data-theme='dark'] | |
9573 | + .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark | |
9574 | + .ant-menu-item-active, | |
9575 | +[data-theme='dark'] | |
9576 | + .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark | |
9577 | + .ant-menu-item-open, | |
9578 | +[data-theme='dark'] | |
9579 | + .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark | |
9580 | + .ant-menu-item-selected, | |
9581 | +[data-theme='dark'] | |
9582 | + .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark | |
9583 | + .ant-menu-item:hover, | |
9584 | +[data-theme='dark'] | |
9585 | + .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark | |
9586 | + .ant-menu-submenu-active, | |
9587 | +[data-theme='dark'] | |
9588 | + .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark | |
9589 | + .ant-menu-submenu-open, | |
9590 | +[data-theme='dark'] | |
9591 | + .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark | |
9592 | + .ant-menu-submenu-selected, | |
9593 | +[data-theme='dark'] | |
9594 | + .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark | |
9595 | + .ant-menu-submenu-title:hover, | |
9596 | +[data-theme='dark'] | |
9597 | + .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark | |
9598 | + .ant-menu-submenu:hover, | |
9599 | +[data-theme='dark'] | |
9600 | + .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark | |
9601 | + .ant-menu:not(.ant-menu-inline) | |
9602 | + .ant-menu-submenu-open { | |
9603 | + color: #fff; | |
9604 | +} | |
9605 | + | |
9606 | +[data-theme='dark'] | |
9607 | + .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark | |
9608 | + .vben-basic-menu-item__level1 { | |
9609 | + background-color: transparent; | |
9610 | +} | |
9611 | + | |
9612 | +[data-theme='dark'] .vben-setting-menu-type-picker__item { | |
9613 | + background-color: #f0f2f5; | |
9614 | +} | |
9615 | + | |
9616 | +[data-theme='dark'] .vben-setting-menu-type-picker__item--light::before, | |
9617 | +[data-theme='dark'] .vben-setting-menu-type-picker__item--sidebar::before { | |
9618 | + background-color: #273352; | |
9619 | +} | |
9620 | + | |
9621 | +[data-theme='dark'] .vben-setting-menu-type-picker__item--light::after, | |
9622 | +[data-theme='dark'] .vben-setting-menu-type-picker__item--sidebar::after { | |
9623 | + background-color: #fff; | |
9624 | +} | |
9625 | + | |
9626 | +[data-theme='dark'] .vben-setting-menu-type-picker__item--mix::before { | |
9627 | + background-color: #fff; | |
9628 | +} | |
9629 | + | |
9630 | +[data-theme='dark'] .vben-setting-menu-type-picker__item--mix::after { | |
9631 | + background-color: #273352; | |
9632 | +} | |
9633 | + | |
9634 | +[data-theme='dark'] .vben-setting-menu-type-picker__item--top-menu::after { | |
9635 | + background-color: #273352; | |
9636 | +} | |
9637 | + | |
9638 | +[data-theme='dark'] .vben-setting-menu-type-picker__item--dark { | |
9639 | + background-color: #273352; | |
9640 | +} | |
9641 | + | |
9642 | +[data-theme='dark'] .vben-setting-menu-type-picker__item--mix-sidebar::before { | |
9643 | + background-color: #273352; | |
9644 | +} | |
9645 | + | |
9646 | +[data-theme='dark'] .vben-setting-menu-type-picker__item--mix-sidebar::after { | |
9647 | + background-color: #fff; | |
9648 | +} | |
9649 | + | |
9650 | +[data-theme='dark'] .vben-setting-menu-type-picker__item--mix-sidebar .mix-sidebar { | |
9651 | + background-color: #fff; | |
9652 | +} | |
9653 | + | |
9654 | +[data-theme='dark'] .vben-setting-menu-type-picker__item--active, | |
9655 | +[data-theme='dark'] .vben-setting-menu-type-picker__item:hover { | |
9656 | + border: 2px solid #0960bd; | |
9657 | +} | |
9658 | + | |
9659 | +[data-theme='dark'] .vben-basic-column-setting__check-item .ant-checkbox-wrapper:hover { | |
9660 | + color: #0960bd; | |
9661 | +} | |
9662 | + | |
9663 | +[data-theme='dark'] .vben-basic-column-setting__fixed-left, | |
9664 | +[data-theme='dark'] .vben-basic-column-setting__fixed-right { | |
9665 | + color: rgb(0 0 0 / 45%); | |
9666 | +} | |
9667 | + | |
9668 | +[data-theme='dark'] .vben-basic-column-setting__fixed-left.active, | |
9669 | +[data-theme='dark'] .vben-basic-column-setting__fixed-left:hover, | |
9670 | +[data-theme='dark'] .vben-basic-column-setting__fixed-right.active, | |
9671 | +[data-theme='dark'] .vben-basic-column-setting__fixed-right:hover { | |
9672 | + color: #0960bd; | |
9673 | +} | |
9674 | + | |
9675 | +[data-theme='dark'] .vben-basic-column-setting__fixed-left.disabled, | |
9676 | +[data-theme='dark'] .vben-basic-column-setting__fixed-right.disabled { | |
9677 | + color: rgb(255 255 255 / 30%); | |
9678 | +} | ... | ... |
src/design/index.less
src/layouts/default/setting/SettingDrawer.tsx
... | ... | @@ -10,7 +10,7 @@ import { |
10 | 10 | InputNumberItem, |
11 | 11 | } from './components'; |
12 | 12 | |
13 | -// import { AppDarkModeToggle } from '/@/components/Application'; | |
13 | +import { AppDarkModeToggle } from '/@/components/Application'; | |
14 | 14 | |
15 | 15 | import { MenuTypeEnum, TriggerEnum } from '/@/enums/menuEnum'; |
16 | 16 | |
... | ... | @@ -404,7 +404,7 @@ export default defineComponent({ |
404 | 404 | class="setting-drawer" |
405 | 405 | > |
406 | 406 | {unref(getShowDarkModeToggle) && <Divider>{() => t('layout.setting.darkMode')}</Divider>} |
407 | - {/* {unref(getShowDarkModeToggle) && <AppDarkModeToggle class="mx-auto" />} */} | |
407 | + {unref(getShowDarkModeToggle) && <AppDarkModeToggle class="mx-auto" />} | |
408 | 408 | <Divider>{() => t('layout.setting.navMode')}</Divider> |
409 | 409 | {renderSidebar()} |
410 | 410 | {/* <Divider>{() => t('layout.setting.sysTheme')}</Divider> | ... | ... |
src/views/sys/login/Login.vue
1 | 1 | <template> |
2 | 2 | <div :class="prefixCls" class="relative w-full h-full px-4"> |
3 | 3 | <div class="flex items-center absolute right-4 top-4"> |
4 | - <!-- <AppDarkModeToggle class="enter-x mr-2" v-if="!sessionTimeout" /> --> | |
4 | + <AppDarkModeToggle class="enter-x mr-2" v-if="!sessionTimeout" /> | |
5 | 5 | <AppLocalePicker |
6 | 6 | class="text-white enter-x xl:text-gray-600" |
7 | 7 | :show-text="false" |
... | ... | @@ -49,7 +49,7 @@ |
49 | 49 | </template> |
50 | 50 | <script lang="ts" setup> |
51 | 51 | import { computed } from 'vue'; |
52 | - import { AppLogo, AppLocalePicker } from '/@/components/Application'; | |
52 | + import { AppLogo, AppLocalePicker, AppDarkModeToggle } from '/@/components/Application'; | |
53 | 53 | import LoginForm from './LoginForm.vue'; |
54 | 54 | import ForgetPasswordForm from './ForgetPasswordForm.vue'; |
55 | 55 | import RegisterForm from './RegisterForm.vue'; | ... | ... |