pixl-xyapp 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/css/base.css ADDED
@@ -0,0 +1,2736 @@
1
+ /* Orchestra Base Theme */
2
+ /* Copyright (c) 2019 Joseph Huckaby - Sustainable Use License */
3
+
4
+ * {
5
+ box-sizing: border-box;
6
+ }
7
+
8
+ :root {
9
+ --blue: rgb(0, 123, 255);
10
+ --indigo: rgb(102, 16, 242);
11
+ --purple: rgb(140, 60, 220);
12
+ --pink: rgb(232, 62, 140);
13
+ --red: rgb(220, 53, 69);
14
+ --orange: rgb(253, 126, 20);
15
+ --yellow: rgb(255, 193, 7);
16
+ --green: rgb(40, 167, 69);
17
+ --teal: rgb(32, 201, 151);
18
+ --cyan: rgb(23, 162, 184);
19
+ --gray: rgb(108, 117, 125);
20
+ --primary: rgb(0, 123, 255);
21
+ --secondary: rgb(108, 117, 125);
22
+ --success: rgb(40, 167, 69);
23
+ --info: rgb(23, 162, 184);
24
+ --warning: rgb(255, 193, 7);
25
+ --danger: rgb(220, 53, 69);
26
+ --light: rgb(248, 249, 250);
27
+ --dark: rgb(52, 58, 64);
28
+
29
+ --blue-highlight: color-mix(in srgb, var(--blue) 80%, white);
30
+ --indigo-highlight: color-mix(in srgb, var(--indigo) 80%, white);
31
+ --purple-highlight: color-mix(in srgb, var(--purple) 80%, white);
32
+ --pink-highlight: color-mix(in srgb, var(--pink) 80%, white);
33
+ --red-highlight: color-mix(in srgb, var(--red) 80%, white);
34
+ --orange-highlight: color-mix(in srgb, var(--orange) 80%, white);
35
+ --yellow-highlight: color-mix(in srgb, var(--yellow) 80%, white);
36
+ --green-highlight: color-mix(in srgb, var(--green) 80%, white);
37
+ --teal-highlight: color-mix(in srgb, var(--teal) 80%, white);
38
+ --cyan-highlight: color-mix(in srgb, var(--cyan) 80%, white);
39
+ --gray-highlight: color-mix(in srgb, var(--gray) 80%, white);
40
+ --primary-highlight: color-mix(in srgb, var(--primary) 80%, white);
41
+ --secondary-highlight: color-mix(in srgb, var(--secondary) 80%, white);
42
+ --success-highlight: color-mix(in srgb, var(--success) 80%, white);
43
+ --info-highlight: color-mix(in srgb, var(--info) 80%, white);
44
+ --warning-highlight: color-mix(in srgb, var(--warning) 80%, white);
45
+ --danger-highlight: color-mix(in srgb, var(--danger) 80%, white);
46
+ --light-highlight: color-mix(in srgb, var(--light) 80%, white);
47
+ --dark-highlight: color-mix(in srgb, var(--dark) 80%, white);
48
+
49
+ --green-brighter: rgb(60, 187, 89);
50
+ --red-brighter: rgb(240, 73, 89);
51
+
52
+ --red-half: rgba(220, 53, 69, 0.5);
53
+ --red-quarter: rgba(220, 53, 69, 0.25);
54
+ --red-transparent: rgba(220, 53, 69, 0.0);
55
+
56
+ --breakpoint-sm: 576px;
57
+ --breakpoint-md: 768px;
58
+ --breakpoint-lg: 992px;
59
+ --breakpoint-xl: 1200px;
60
+
61
+ --font-family-ui: "Helvetica Neue", Helvetica, system-ui, sans-serif;
62
+ --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
63
+ }
64
+
65
+ body {
66
+ --sidebar-width: 215px;
67
+ --header-height: 50px;
68
+
69
+ /* --theme-color: rgb(85, 155, 225); */
70
+ --theme-color: rgb(55, 145, 245);
71
+ --theme-color-highlight: rgb(80, 170, 255);
72
+ --theme-color-half: rgba(55, 145, 245, 0.5);
73
+ --theme-color-naught-seven: rgba(55, 145, 245, 0.07);
74
+
75
+ --border-color: rgb(227, 229, 233);
76
+ --shadow-color: rgb(233, 236, 240);
77
+ --background-color: rgb(248, 250, 252);
78
+ --header-background-color: rgb(255, 255, 255);
79
+ --header-text-color: rgb(125, 135, 150);
80
+ --box-background-color: rgb(255, 255, 255);
81
+ --form-background-color: rgb(248, 250, 252);
82
+ --table-header-background-color: rgba(0, 50, 100, 0.03);
83
+
84
+ --sidebar-background-color: rgb(255, 255, 255);
85
+ --sidebar-text-color: rgb(115, 115, 130);
86
+
87
+ --body-text-color: rgb(60, 70, 85);
88
+ --link-color: rgb(80, 90, 105);
89
+ --label-color: rgb(115, 115, 130);
90
+ --alt-label-color: rgb(130, 140, 150);
91
+ --icon-color: rgb(185, 190, 200);
92
+ --icon-color-half: rgba(185, 190, 200, 0.5);
93
+
94
+ --trans100: rgba(255, 255, 255, 0.0);
95
+ --trans75: rgba(255, 255, 255, 0.75);
96
+ --trans50: rgba(255, 255, 255, 0.5);
97
+ --trans25: rgba(255, 255, 255, 0.25);
98
+
99
+ background: var(--background-color);
100
+ /* background: linear-gradient(135deg, rgba(252,252,252,1) 0%, rgba(248,248,248,1) 100%); */
101
+ color: var(--body-text-color);
102
+ font-family: var(--font-family-ui);
103
+
104
+ accent-color: var(--theme-color);
105
+ }
106
+
107
+ body.dark {
108
+ /* Dark theme */
109
+ --yellow: rgb(204, 154, 6);
110
+ --yellow-highlight: color-mix(in srgb, rgb(204, 154, 6) 80%, white);
111
+
112
+ --border-color: rgb(50, 54, 58);
113
+ --shadow-color: rgba(0, 0, 0, 0.0);
114
+ --background-color: rgb(24, 28, 32);
115
+ --header-background-color: rgb(32, 34, 38);
116
+ --header-text-color: rgb(125, 135, 150);
117
+ --box-background-color: rgb(32, 34, 38);
118
+ --form-background-color: rgb(40, 44, 48);
119
+ --table-header-background-color: rgba(200, 225, 255, 0.03);
120
+
121
+ --sidebar-background-color: rgb(32, 34, 38);
122
+ --sidebar-text-color: rgb(125, 135, 150);
123
+
124
+ --body-text-color: rgb(170, 180, 200);
125
+ --link-color: rgb(145, 155, 170);
126
+ --label-color: rgb(145, 155, 170);
127
+ --alt-label-color: rgb(120, 125, 130);
128
+ --icon-color: rgb(115, 115, 130);
129
+ --icon-color-half: rgba(115, 115, 130, 0.5);
130
+ }
131
+
132
+ :root:has(body.dark) {
133
+ color-scheme: dark;
134
+ }
135
+
136
+ /* Native Overrides */
137
+
138
+ form {
139
+ margin: 0;
140
+ padding: 0;
141
+ }
142
+
143
+ input, textarea, select {
144
+ outline: 0;
145
+ }
146
+
147
+ input, textarea {
148
+ background: var(--form-background-color);
149
+ }
150
+
151
+ ::placeholder {
152
+ color: var(--icon-color);
153
+ }
154
+
155
+ fieldset {
156
+ background: var(--background-color);
157
+ /* border: 1px solid var(--border-color); */
158
+ border-radius: 4px;
159
+ padding: 20px;
160
+ font-size: 12px;
161
+ }
162
+ legend {
163
+ font-size: 12px;
164
+ text-transform: uppercase;
165
+ color: var(--label-color);
166
+ }
167
+
168
+ fieldset input, fieldset select {
169
+ font-size: 12px !important;
170
+ }
171
+ fieldset select {
172
+ background-color: var(--box-background-color) !important;
173
+ }
174
+ body.dark fieldset input {
175
+ background: var(--box-background-color);
176
+ }
177
+
178
+ a, .link {
179
+ color: var(--link-color);
180
+ }
181
+ a:hover, .link:hover {
182
+ text-decoration: underline;
183
+ color: var(--theme-color);
184
+ }
185
+ a:active, .link:active {
186
+ color: var(--theme-color-half);
187
+ }
188
+
189
+ a, .link {
190
+ text-decoration: none;
191
+ cursor: pointer;
192
+ }
193
+ .link.nd {
194
+ text-decoration: none;
195
+ }
196
+
197
+ a.danger:hover, .link.danger:hover {
198
+ color: var(--red) !important;
199
+ }
200
+
201
+ .bold {
202
+ font-weight: bold;
203
+ }
204
+
205
+ /* Custom Classes */
206
+
207
+ .clear { clear: both; }
208
+ .left { float: left; }
209
+ .right { float: right; }
210
+
211
+ /* input.monospace {
212
+ font-family: monospace;
213
+ font-size: 12px !important;
214
+ } */
215
+
216
+ .regexp {
217
+ font-family: var(--font-family-monospace);
218
+ font-size: 12px;
219
+ }
220
+ .mono {
221
+ font-family: var(--font-family-monospace);
222
+ font-size: 12px;
223
+ }
224
+ .monospace {
225
+ font-family: var(--font-family-monospace);
226
+ font-size: 12px !important;
227
+ }
228
+
229
+ /* Sidebar */
230
+
231
+ div.sidebar {
232
+ position: fixed;
233
+ left: calc( 0px - var(--sidebar-width) );
234
+ top: 0px;
235
+ width: var(--sidebar-width);
236
+ height: 100vh;
237
+ overflow-x: hidden;
238
+ overflow-y: auto;
239
+ background: var(--sidebar-background-color);
240
+ color: var(--sidebar-text-color);
241
+
242
+ border-right: 1px solid var(--border-color);
243
+
244
+ /* background: linear-gradient(135deg, rgb(53, 58, 63) 0%, rgb(45, 50, 55) 100%); */
245
+ /* background: var(--sidebar-background-color); */
246
+ /* background: linear-gradient(90deg, rgb(232,232,232) 0%, rgb(248,248,248) 100%); */
247
+ /* box-shadow: 0px 0px 80px var(--border-color); */
248
+ box-shadow: 2px 2px 8px var(--shadow-color);
249
+ z-index: 103;
250
+ }
251
+ body.dark div.sidebar {
252
+ box-shadow: none;
253
+ }
254
+
255
+ body.sidebar {
256
+ padding-left: var(--sidebar-width);
257
+ }
258
+ body.sidebar div.sidebar {
259
+ left: 0;
260
+ }
261
+
262
+ body {
263
+ /* transition: 0.2s ease padding-left; */
264
+ }
265
+ div.sidebar {
266
+ transition: 0.2s ease left;
267
+ }
268
+
269
+ div.sidebar > div.title {
270
+ width: var(--sidebar-width);
271
+ height: var(--header-height);
272
+ border-bottom: 1px solid var(--border-color);
273
+
274
+ /* background-color: #112; */
275
+ background-image: url(../images/logotype.png);
276
+ background-repeat: no-repeat;
277
+ background-position: center center;
278
+ background-size: 140px auto;
279
+ }
280
+
281
+ div.section_title {
282
+ position: relative;
283
+ margin-left: 20px;
284
+ margin-right: 15px;
285
+ margin-top: 10px;
286
+ height: 30px;
287
+ line-height: 30px;
288
+ font-size: 13px;
289
+ font-weight: 700;
290
+ text-transform: uppercase;
291
+ color: var(--theme-color);
292
+ cursor: pointer;
293
+
294
+ user-select: none;
295
+ -moz-user-select: none;
296
+ -webkit-user-select: none;
297
+
298
+ /* overflow: hidden;
299
+ text-overflow: ellipsis;
300
+ white-space: nowrap; */
301
+ }
302
+ div.section_title:hover {
303
+ color: var(--theme-color);
304
+ }
305
+ div.section_title:first-child {
306
+ margin-top: 0px;
307
+ }
308
+
309
+ div.section_title > i {
310
+ color: var(--theme-color);
311
+ }
312
+ div.section_title > i.icon:before {
313
+ transform-origin: center center;
314
+ transform: scale(1.3);
315
+ padding-right: 2px;
316
+ }
317
+ div.section_title > i.ctrl {
318
+ position: absolute;
319
+ left: 100%;
320
+ margin-left: -15px;
321
+ height: 27px;
322
+ line-height: 27px;
323
+ font-size: 16px;
324
+ font-weight: 700;
325
+ color: var(--icon-color);
326
+ transition: transform 0.25s ease-out;
327
+ transform-origin: center center;
328
+ transform: rotate(90deg);
329
+ }
330
+ div.section_title:hover > i.ctrl {
331
+ color: var(--theme-color);
332
+ }
333
+
334
+ div.section {
335
+ overflow: hidden;
336
+
337
+ user-select: none;
338
+ -moz-user-select: none;
339
+ -webkit-user-select: none;
340
+ }
341
+
342
+ div.section > a > i.mdi:before {
343
+ transform: scale(1.20);
344
+ }
345
+ div.section > a > i.mdi {
346
+ padding-right: 3px;
347
+ }
348
+
349
+ div.section_title.expanded > i.ctrl {
350
+ transform: rotate(0deg);
351
+ }
352
+
353
+ .section_item {
354
+ display: block;
355
+ padding-left: 37px;
356
+ padding-right: 15px;
357
+ height: 25px;
358
+ line-height: 25px;
359
+ font-size: 14px;
360
+ /* text-transform: uppercase; */
361
+ color: var(--sidebar-text-color);
362
+ /* background: rgba(0, 0, 0, 0.2); */
363
+ cursor: pointer;
364
+ text-decoration: none;
365
+
366
+ overflow: hidden;
367
+ text-overflow: ellipsis;
368
+ white-space: nowrap;
369
+ }
370
+ .section_item:hover {
371
+ color: var(--theme-color);
372
+ text-decoration: none;
373
+ }
374
+
375
+ .section_item.active {
376
+ /* background: var(--background-color);
377
+ color: var(--theme-color); */
378
+ background: var(--theme-color);
379
+ color: var(--background-color);
380
+ /* cursor: default; */
381
+ }
382
+ .section_item.active:hover {
383
+ color: var(--background-color);
384
+ }
385
+
386
+ body.dark .section_item.active {
387
+ color: white;
388
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
389
+ }
390
+ body.dark .section_item.active:hover {
391
+ color: white;
392
+ }
393
+
394
+ .section_item.disabled {
395
+ cursor: default !important;
396
+ color: var(--icon-color) !important;
397
+ }
398
+
399
+ /* Header */
400
+
401
+ div.header {
402
+ position: relative;
403
+ height: var(--header-height);
404
+ overflow: hidden;
405
+
406
+ /* padding-left: 30px; */
407
+ padding-right: 30px;
408
+
409
+ /* background-color: var(--header-background-color); */
410
+ background: transparent;
411
+ /* border-bottom: 1px solid var(--border-color); */
412
+ /* box-shadow: 0px 0px 100px var(--border-color); */
413
+ /* box-shadow: 2px 4px 8px var(--border-color); */
414
+
415
+ /* Show logo by default, sidebar turns it off */
416
+ padding-left: var(--sidebar-width);
417
+ background-image: url(../images/logotype.png);
418
+ background-repeat: no-repeat;
419
+ background-position: 30px center;
420
+ background-size: 170px auto;
421
+ }
422
+
423
+ body.sidebar div.header {
424
+ padding-left: 30px;
425
+ background-image: none !important;
426
+ }
427
+
428
+ #d_sidebar_toggle {
429
+ display: none;
430
+ position: fixed;
431
+ z-index: 102;
432
+ left: -1px;
433
+ top: -1px;
434
+ width: 40px;
435
+ height: 40px;
436
+ line-height: 40px;
437
+ font-size: 24px;
438
+ color: var(--body-text-color);
439
+ text-align: center;
440
+ cursor: pointer;
441
+
442
+ background: var(--sidebar-background-color);
443
+ border: 1px solid var(--border-color);
444
+ border-radius: 4px;
445
+ box-shadow: 2px 2px 8px var(--shadow-color);
446
+ }
447
+ #d_sidebar_toggle:hover {
448
+ color: var(--theme-color);
449
+ }
450
+ #d_sidebar_toggle:active {
451
+ color: var(--theme-color-half);
452
+ }
453
+
454
+ div.header > div.header_title {
455
+ height: var(--header-height);
456
+ line-height: var(--header-height);
457
+ /* line-height: calc( var(--header-height) - 1px ); */
458
+ /* margin-left: 20px; */
459
+ font-size: 20px;
460
+ font-weight: 700;
461
+ /* letter-spacing: -1px; */
462
+ /* color: var(--theme-color); */
463
+ color: var(--header-text-color);
464
+
465
+ overflow: hidden;
466
+ text-overflow: ellipsis;
467
+ white-space: nowrap;
468
+ }
469
+
470
+ .header_nav_cont {
471
+ display: flex;
472
+ align-items: center;
473
+ height: var(--header-height);
474
+ }
475
+
476
+ .header_nav_item {
477
+ height: var(--header-height);
478
+ overflow: hidden;
479
+ text-overflow: ellipsis;
480
+ white-space: nowrap;
481
+ cursor: default;
482
+ }
483
+
484
+ a.header_nav_item {
485
+ text-overflow: clip;
486
+ color: var(--header-text-color);
487
+ text-decoration: none;
488
+ cursor: pointer;
489
+ }
490
+ a.header_nav_item:hover {
491
+ color: var(--theme-color);
492
+ text-decoration: underline;
493
+ }
494
+
495
+ div.header_nav_item {
496
+ text-overflow: ellipsis;
497
+ }
498
+
499
+ .header_nav_item > i {
500
+ padding-right: 5px;
501
+ }
502
+
503
+ .header_nav_sep {
504
+ height: var(--header-height);
505
+ padding-left: 5px;
506
+ padding-right: 5px;
507
+ }
508
+
509
+ .header_nav_cont .color_label {
510
+ position: relative;
511
+ top: 0px;
512
+ margin-left: 15px;
513
+ letter-spacing: 0;
514
+
515
+ height: 21px;
516
+ line-height: 16px;
517
+ }
518
+
519
+ .header_nav_cont .progress_bar_container {
520
+ margin-left: 15px;
521
+ }
522
+
523
+ div.header_widget {
524
+ position: relative;
525
+ float: right;
526
+ height: 30px;
527
+ margin-top: 9px;
528
+ margin-left: 12px;
529
+ color: var(--label-color);
530
+ border: 1px solid var(--shadow-color);
531
+ background: var(--box-background-color);
532
+ border-radius: 4px;
533
+ cursor: pointer;
534
+ opacity: 0.95;
535
+ transition: 0.2s ease all;
536
+
537
+ user-select: none;
538
+ -moz-user-select: none;
539
+ -webkit-user-select: none;
540
+ }
541
+ body.dark div.header_widget {
542
+ border: 1px solid var(--border-color);
543
+ }
544
+ div.header_widget:hover, div.header_widget.popped {
545
+ top: -1px;
546
+ color: var(--theme-color);
547
+ /* background-color: var(--box-background-color); */
548
+ border: 1px solid var(--theme-color-half) !important;
549
+ box-shadow: 0px 2px 1px var(--shadow-color);
550
+ opacity: 1.0;
551
+ }
552
+ body.dark div.header_widget:hover {
553
+ border: 1px solid var(--theme-color-half);
554
+ }
555
+
556
+ div.header_widget.danger:hover, div.header_widget.danger.popped {
557
+ color: var(--red);
558
+ border: 1px solid var(--red) !important;
559
+ }
560
+
561
+ div.header_widget.red {
562
+ color: var(--red);
563
+ border: 1px solid var(--red-half) !important;
564
+ }
565
+ div.header_widget.red:hover, div.header_widget.red.popped {
566
+ color: var(--red-brighter);
567
+ border: 1px solid var(--red) !important;
568
+ }
569
+
570
+ div.header_widget.yellow {
571
+ color: var(--orange);
572
+ border: 1px solid var(--orange) !important;
573
+ }
574
+ div.header_widget.yellow:hover, div.header_widget.yellow.popped {
575
+ color: var(--orange);
576
+ border: 1px solid var(--orange) !important;
577
+ }
578
+
579
+ div.header_widget.icon {
580
+ width: 30px;
581
+ font-size: 18px;
582
+ line-height: 29px;
583
+ text-align: center;
584
+ }
585
+
586
+ div.header_widget.user {
587
+ width: 30px;
588
+ background-repeat: no-repeat;
589
+ background-position: center center;
590
+ background-size: 30px 30px;
591
+ }
592
+ div.header_widget.user:hover {
593
+ box-shadow: 0px 0px 5px var(--theme-color);
594
+ }
595
+
596
+ div.header_search_widget {
597
+ position: relative;
598
+ float: right;
599
+ height: 30px;
600
+ margin-top: 9px;
601
+ margin-left: 12px;
602
+ color: var(--label-color);
603
+ /* border: 1px solid var(--shadow-color);
604
+ background: var(--box-background-color); */
605
+ /* border-radius: 4px;
606
+ cursor: pointer; */
607
+ opacity: 0.95;
608
+ transition: 0.2s ease all;
609
+
610
+ display: flex;
611
+ align-items: center;
612
+ font-weight: normal;
613
+ text-transform: none;
614
+ color: var(--body-text-color);
615
+ }
616
+
617
+ div.header_search_widget > i.mdi-magnify {
618
+ position: relative;
619
+ left: 25px;
620
+ font-size: 15px;
621
+ color: var(--icon-color);
622
+ }
623
+ div.header_search_widget > input[type="text"] {
624
+ -moz-appearance: none;
625
+ -webkit-appearance: none;
626
+ appearance: none;
627
+ height: 28px;
628
+ line-height: 20px;
629
+ padding-left: 22px;
630
+ border: 1px solid var(--border-color);
631
+ background: var(--box-background-color);
632
+ border-radius: 8px;
633
+ font-size: 13px;
634
+ color: var(--body-text-color);
635
+ transition: 0.2s ease all;
636
+ }
637
+ div.header_search_widget > input[type="text"]:focus {
638
+ border: 1px solid var(--theme-color-half);
639
+ }
640
+
641
+ #d_header_user_container {
642
+ height: var(--header-height);
643
+ overflow: hidden;
644
+ }
645
+
646
+ /* Toasts */
647
+
648
+ #toaster {
649
+ position: fixed;
650
+ box-sizing: border-box;
651
+ z-index: 999;
652
+ left: 20px;
653
+ width: 350px;
654
+ bottom: 20px;
655
+ }
656
+
657
+ div.toast {
658
+ position: relative;
659
+ box-sizing: border-box;
660
+ cursor: pointer;
661
+
662
+ margin-top: 20px;
663
+
664
+ padding: 15px 20px 15px 20px;
665
+ border: 1px solid rgba(128, 128, 128, 0.2);
666
+ border-radius: 6px;
667
+
668
+ font-size: 13px;
669
+ font-weight: bold;
670
+
671
+ color: #fff;
672
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
673
+ }
674
+
675
+ div.toast > i {
676
+ display: block;
677
+ position: absolute;
678
+ left: 20px;
679
+ top: 50%;
680
+ margin-top: -10px;
681
+ line-height: 20px;
682
+ font-size: 20px;
683
+ }
684
+ div.toast > i:before {
685
+ transform-origin: 50% 50%;
686
+ transform: scale(1.25);
687
+ }
688
+
689
+ div.toast > span {
690
+ display: block;
691
+ position: relative;
692
+ margin-left: 35px;
693
+ }
694
+
695
+ div.toast.success { background: #44bb44; }
696
+ div.toast.warning { background: #bbbb44; }
697
+ div.toast.error { background: var(--red); }
698
+ div.toast.critical { background: #bb44bb; }
699
+ div.toast.info { background: #5890db; }
700
+
701
+ body.dark div.toast.success { background: rgb(20, 128, 20); }
702
+ body.dark div.toast.warning { background: rgb(128, 128, 20); }
703
+ body.dark div.toast.error { background-color:var(--red); }
704
+ body.dark div.toast.critical { background: rgb(128, 20, 128); }
705
+ body.dark div.toast.info { background: rgb(28, 84, 160); }
706
+
707
+ div.toast.channel {
708
+ background: var(--box-background-color);
709
+ border-color: var(--theme-color);
710
+ color: var(--label-color);
711
+ text-shadow: none;
712
+ font-weight: normal;
713
+ }
714
+ body.dark div.toast.channel {
715
+ background: var(--background-color);
716
+ }
717
+
718
+ div.toast.channel i.mdi {
719
+ color: var(--theme-color);
720
+ }
721
+
722
+ /* div.toast.channel span > b {
723
+ color: var(--theme-color);
724
+ } */
725
+
726
+ /* Message Banner */
727
+
728
+ div.message {
729
+ position: fixed;
730
+ box-sizing: border-box;
731
+ left: 0px;
732
+ top: 0px;
733
+ width: 100%;
734
+ height: var(--header-height);
735
+ z-index: 10003;
736
+ cursor: pointer;
737
+
738
+ overflow: hidden;
739
+ border-style: solid;
740
+ border-width: 1px;
741
+ }
742
+ div.message.inline {
743
+ position: relative;
744
+ /* margin: 0; */
745
+ width: auto;
746
+ left: 0px;
747
+ top: 0px;
748
+ cursor: default;
749
+ z-index: 0;
750
+ border-color: rgba(128, 128, 128, 0.2);
751
+ }
752
+
753
+ div.message_inner {
754
+ font-size: 13px;
755
+ font-weight: bold;
756
+ line-height: calc( var(--header-height) - 2px );
757
+ cursor: pointer;
758
+ padding: 0px 30px 0px 30px;
759
+
760
+ overflow: hidden;
761
+ text-overflow: ellipsis;
762
+ white-space: nowrap;
763
+ }
764
+ div.message_inner > i {
765
+ font-size: 13px;
766
+ }
767
+ div.message_inner > i:before {
768
+ transform-origin: 50% 50%;
769
+ transform: scale(1.5);
770
+ }
771
+ div.message.inline > div.message_inner {
772
+ padding: 0px 25px 0px 25px;
773
+ cursor: default;
774
+ }
775
+
776
+ div.message {
777
+ color: #fff;
778
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
779
+ }
780
+
781
+ div.message.success { background: var(--green); }
782
+ div.message.warning { background: var(--yellow); text-shadow: 0px 1px 1px rgba(0, 0, 0, 1); }
783
+ div.message.error { background: var(--red); }
784
+ div.message.critical { background: var(--purple); }
785
+ div.message.abort { background: var(--red); }
786
+ div.message.info { background: var(--blue); }
787
+
788
+ /* body.dark div.message.success { background: rgb(20, 128, 20); }
789
+ body.dark div.message.warning { background: rgb(128, 128, 20); }
790
+ body.dark div.message.error { background-color:var(--red); }
791
+ body.dark div.message.critical { background: rgb(128, 20, 128); }
792
+ body.dark div.message.abort { background-color:var(--red); }
793
+ body.dark div.message.info { background: rgb(28, 84, 160); } */
794
+
795
+ div.message a {
796
+ color: #fff !important;
797
+ }
798
+ div.message a:hover {
799
+ color: #fff !important;
800
+ text-decoration: underline;
801
+ }
802
+
803
+ .invalid {
804
+ border-color: var(--red-half) !important;
805
+ }
806
+
807
+ /* Main */
808
+
809
+ div.main {
810
+
811
+ }
812
+
813
+ div.page_intro {
814
+ padding: 30px 20px 0px 30px;
815
+ font-size: 14px;
816
+ color: var(--body-text-color);
817
+ background-color: var(--background-color);
818
+ }
819
+
820
+ div.box {
821
+ position: relative;
822
+ margin: 30px;
823
+ background: var(--box-background-color);
824
+ border: 1px solid var(--shadow-color);
825
+ border-radius: 4px;
826
+ /* box-shadow: 0px 0px 35px var(--border-color), 2px 2px 6px var(--icon-color); */
827
+ box-shadow: 2px 2px 8px var(--shadow-color);
828
+ /* padding: 30px; */
829
+ }
830
+ body.dark div.box {
831
+ border: 1px solid var(--border-color);
832
+ box-shadow: none;
833
+ }
834
+ div.box:first-of-type {
835
+ margin-top: 15px;
836
+ }
837
+ div.box.highlight {
838
+ border: 1px solid var(--theme-color) !important;
839
+ }
840
+ div.box.highlight-half {
841
+ border: 1px solid var(--theme-color-half) !important;
842
+ }
843
+
844
+ div.box_title {
845
+ /* background: var(--box-background-color); */
846
+ font-size: 14px;
847
+ font-weight: bold;
848
+ text-transform: uppercase;
849
+ padding: 20px 20px 20px 20px;
850
+ /* border-top-left-radius: 6px;
851
+ border-top-right-radius: 6px; */
852
+ color: var(--theme-color);
853
+ /* text-shadow: 0px 1px 0px var(--background-color); */
854
+ }
855
+ div.box_title.error {
856
+ font-size: 18px;
857
+ color: var(--red);
858
+ padding-bottom: 0px;
859
+ }
860
+
861
+ div.box_title_widget {
862
+ float: right;
863
+ height: 18px;
864
+ margin-left: 15px;
865
+ display: flex;
866
+ align-items: center;
867
+
868
+ font-weight: normal;
869
+ text-transform: none;
870
+ color: var(--body-text-color);
871
+
872
+ overflow: hidden;
873
+ text-overflow: ellipsis;
874
+ white-space: nowrap;
875
+ }
876
+
877
+ div.box_title_widget > i.mdi-magnify {
878
+ position: relative;
879
+ left: 25px;
880
+ font-size: 15px;
881
+ color: var(--icon-color);
882
+ }
883
+ div.box_title_widget > input[type="text"] {
884
+ width: 120px;
885
+ -moz-appearance: none;
886
+ -webkit-appearance: none;
887
+ appearance: none;
888
+ line-height: 20px;
889
+ padding-left: 22px;
890
+ border: 1px solid var(--border-color);
891
+ border-radius: 10px;
892
+ font-size: 13px;
893
+ color: var(--body-text-color);
894
+ transition: 0.2s ease all;
895
+ }
896
+ div.box_title_widget > input[type="text"]:focus {
897
+ border: 1px solid var(--theme-color-half);
898
+ }
899
+
900
+ div.box_subtitle {
901
+ font-size: 13px;
902
+ font-weight: normal;
903
+ text-transform: none;
904
+ padding: 0;
905
+ margin-top: 4px;
906
+ color: var(--body-text-color);
907
+ }
908
+
909
+ div.box_content {
910
+ font-size: 13px;
911
+ padding: 30px;
912
+ }
913
+ div.box_content.table {
914
+ padding: 0px 25px 25px 25px
915
+ }
916
+
917
+ div.dialog.inline > div.box_content {
918
+ padding: 50px 30px 50px 30px;
919
+ }
920
+
921
+ div.box_content.loading {
922
+ transition: 0.5s ease opacity;
923
+ opacity: 0.5;
924
+ }
925
+
926
+ div.box_buttons {
927
+ /* background: var(--box-background-color); */
928
+ font-size: 14px;
929
+ padding: 15px 20px 20px 20px;
930
+ /* border-bottom-left-radius: 6px;
931
+ border-bottom-right-radius: 6px; */
932
+ text-align: right;
933
+ }
934
+
935
+ div.box_buttons > .button {
936
+ margin-left: 15px;
937
+ }
938
+
939
+ /* Button */
940
+
941
+ .button {
942
+ position: relative;
943
+ display: inline-block;
944
+ height: 30px;
945
+ line-height: 28px;
946
+ padding: 0px 10px 0px 10px;
947
+ background: var(--box-background-color);
948
+ color: var(--label-color);
949
+ border: 1px solid var(--border-color);
950
+ border-radius: 5px;
951
+ cursor: pointer;
952
+
953
+ font-size: 13px;
954
+ font-weight: bold;
955
+ text-align: center;
956
+
957
+ cursor: pointer;
958
+ user-select: none;
959
+ -moz-user-select: none;
960
+ -webkit-user-select: none;
961
+
962
+ transition: 0.2s ease all;
963
+ }
964
+ body.dark .button {
965
+ /* background: var(--background-color); */
966
+ background: var(--form-background-color);
967
+ }
968
+
969
+ .button:hover {
970
+ top: -1px;
971
+ color: var(--theme-color);
972
+ /* background: var(--box-background-color); */
973
+ border: 1px solid var(--theme-color);
974
+ box-shadow: 0px 2px 1px var(--shadow-color);
975
+ opacity: 1.0;
976
+ /* text-decoration: underline; */
977
+ }
978
+ body.dark .button:hover {
979
+ /* background: var(--background-color); */
980
+ }
981
+
982
+ .button:active {
983
+ top: 0px;
984
+ box-shadow: none;
985
+ }
986
+
987
+ .button.primary {
988
+ background: var(--theme-color);
989
+ color: white;
990
+ }
991
+ .button.primary:hover {
992
+ background: var(--theme-color-highlight) !important;
993
+ border: 1px solid var(--border-color) !important;
994
+ color: white !important;
995
+ }
996
+
997
+ body.dark .button.primary {
998
+ background: var(--theme-color);
999
+ color: rgba(255, 255, 255, 0.85);
1000
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
1001
+ }
1002
+
1003
+ .button.danger:hover {
1004
+ color: var(--red);
1005
+ border: 1px solid var(--red);
1006
+ }
1007
+
1008
+ .button.small {
1009
+ height: 25px;
1010
+ line-height: 23px;
1011
+ padding: 0px 8px 0px 8px;
1012
+ font-size: 12px;
1013
+ }
1014
+
1015
+ .button.icon {
1016
+ padding: 0px 8px 0px 8px;
1017
+ }
1018
+
1019
+ .button i.mdi:before {
1020
+ transform: scale(1.20);
1021
+ }
1022
+ .button i.mdi {
1023
+ padding-right: 1px;
1024
+ }
1025
+
1026
+ .button.icon i.mdi:before {
1027
+ transform: scale(1.4);
1028
+ }
1029
+ .button.icon i.mdi {
1030
+ padding-right: 0px;
1031
+ }
1032
+
1033
+ .button.disabled {
1034
+ opacity: 0.5;
1035
+ cursor: default;
1036
+ pointer-events: none;
1037
+ }
1038
+
1039
+ /* Form Grid */
1040
+
1041
+ .form_row {
1042
+ display: grid;
1043
+ grid-template-columns: 1fr 3fr 1fr;
1044
+
1045
+ grid-template-areas:
1046
+ "a b c"
1047
+ ". d .";
1048
+
1049
+ grid-column-gap: 20px;
1050
+ margin-bottom: 30px;
1051
+ }
1052
+ .form_row:last-child {
1053
+ margin-bottom: 0px;
1054
+ }
1055
+ .form_row.wider {
1056
+ grid-template-columns: 1fr 5fr 1fr !important;
1057
+ }
1058
+ .form_row.widest {
1059
+ grid-template-columns: 1fr 20fr 1fr !important;
1060
+ }
1061
+ .form_row > div {
1062
+ /* background: rgba(255, 0, 0, 0.1); */
1063
+ display: flex;
1064
+ align-items: center;
1065
+ /* justify-content: center; */
1066
+ }
1067
+ .form_row > div.fr_label {
1068
+ grid-area: a;
1069
+ justify-self: end;
1070
+ /* text-align: right; */
1071
+ color: var(--label-color);
1072
+ font-weight: bold;
1073
+ font-style: italic;
1074
+
1075
+ overflow: hidden;
1076
+ text-overflow: ellipsis;
1077
+ white-space: nowrap;
1078
+ }
1079
+ .form_row > div.fr_content {
1080
+ display: block;
1081
+ position: relative;
1082
+ grid-area: b;
1083
+ }
1084
+ .form_row > div.fr_suffix {
1085
+ grid-area: c;
1086
+ }
1087
+ .form_row > div.fr_caption {
1088
+ grid-area: d;
1089
+ font-size: 11px;
1090
+ margin-top: 6px;
1091
+ color: var(--label-color);
1092
+ }
1093
+ .form_row > div.fr_caption a {
1094
+ color: var(--theme-color);
1095
+ font-weight: bold;
1096
+ }
1097
+
1098
+ /* Form Elements */
1099
+
1100
+ /* .dialog_content .fr_caption {
1101
+ max-width: 320px;
1102
+ } */
1103
+
1104
+ .form_row input, .form_row textarea {
1105
+ width: 100%;
1106
+ }
1107
+
1108
+ .form_row input[type="text"], .form_row input[type="password"], .form_row input[type="email"], .form_row input[type="url"], .form_row input[type="number"], .form_row input[type="date"], .form_row input[type="datetime-local"] {
1109
+ -moz-appearance: none;
1110
+ -webkit-appearance: none;
1111
+ appearance: none;
1112
+ line-height: 20px;
1113
+ padding-left: 6px;
1114
+ padding-top: 5px;
1115
+ padding-bottom: 4px;
1116
+ border: 1px solid var(--border-color);
1117
+ font-size: 13px;
1118
+ color: var(--body-text-color);
1119
+ transition: 0.2s ease all;
1120
+ cursor: text;
1121
+ }
1122
+ .form_row input[type="text"]:focus, .form_row input[type="password"]:focus, .form_row input[type="email"]:focus, .form_row input[type="url"]:focus, .form_row input[type="number"]:focus, .form_row input[type="date"]:focus, .form_row input[type="datetime-local"]:focus {
1123
+ /* color: var(--theme-color); */
1124
+ border: 1px solid var(--theme-color-half);
1125
+ }
1126
+
1127
+ .form_row input[type="text"].warning, .form_row input[type="email"].warning, .form_row input[type="url"].warning, .form_row input[type="number"].warning, .form_row input[type="date"].warning, .form_row input[type="datetime-local"].warning {
1128
+ border: 1px solid red;
1129
+ }
1130
+
1131
+ .form_row input[type="text"].regexp {
1132
+ font-size: 12px;
1133
+ }
1134
+
1135
+ .form_row textarea {
1136
+ -moz-appearance: none;
1137
+ -webkit-appearance: none;
1138
+ appearance: none;
1139
+ line-height: 20px;
1140
+ padding-left: 4px;
1141
+ border: 1px solid var(--border-color);
1142
+ font-size: 13px;
1143
+ tab-size: 4;
1144
+ color: var(--body-text-color);
1145
+ transition: 0.2s ease border-color;
1146
+ resize: vertical;
1147
+ }
1148
+ .form_row textarea:focus {
1149
+ /* color: var(--theme-color); */
1150
+ border: 1px solid var(--theme-color-half);
1151
+ }
1152
+
1153
+ input:disabled, textarea:disabled {
1154
+ /* color: var(--body-text-color) !important; */
1155
+ opacity: 0.5;
1156
+ }
1157
+
1158
+ .form_row select, .box_title_widget select {
1159
+ position: relative;
1160
+ -moz-appearance: none;
1161
+ -webkit-appearance: none;
1162
+ appearance: none;
1163
+ width: 100%;
1164
+ line-height: 29px;
1165
+ padding-left: 4px;
1166
+ background: var(--form-background-color);
1167
+ border: 1px solid var(--border-color);
1168
+ border-radius: 4px;
1169
+ font-size: 13px;
1170
+ color: var(--body-text-color);
1171
+ cursor: pointer;
1172
+ transition: 0.2s ease all;
1173
+ }
1174
+ .select_chevron {
1175
+ position: absolute;
1176
+ z-index: 2;
1177
+ display: inline-block;
1178
+ width: 20px;
1179
+ height: 20px;
1180
+ left: 100%;
1181
+ margin-left: -20px;
1182
+ top: 0px;
1183
+ text-align: center;
1184
+ font-size: 16px;
1185
+ pointer-events: none;
1186
+ }
1187
+
1188
+ .form_row select[multiple] {
1189
+ display: none;
1190
+ }
1191
+
1192
+ .form_row select[disabled] {
1193
+ opacity: 0.5;
1194
+ cursor: default;
1195
+ }
1196
+
1197
+ .dialog_content .form_row input, .dialog_content .form_row textarea, .dialog_content .form_row select, .dialog_content .form_row .form_date {
1198
+ background: var(--box-background-color);
1199
+ }
1200
+ body.dark .dialog_content .form_row input, body.dark .dialog_content .form_row textarea, body.dark .dialog_content .form_row select, body.dark .dialog_content .form_row .form_date {
1201
+ background: var(--form-background-color);
1202
+ }
1203
+
1204
+ body.dark .dialog_content .form_row select {
1205
+ background: var(--form-background-color);
1206
+ }
1207
+
1208
+ .dialog_content .form_row select:hover {
1209
+ border-color: var(--theme-color-half);
1210
+ }
1211
+
1212
+ .multiselect {
1213
+ position: relative;
1214
+ width: 100%;
1215
+ line-height: 20px;
1216
+ padding-left: 4px;
1217
+ padding-top: 3px;
1218
+ padding-right: 15px; /* for the chevron */
1219
+ /* padding-bottom: 3px; */
1220
+ background: var(--form-background-color);
1221
+ border: 1px solid var(--border-color);
1222
+ border-radius: 4px;
1223
+ color: var(--body-text-color);
1224
+ cursor: pointer;
1225
+ transition: 0.2s ease all;
1226
+
1227
+ user-select: none;
1228
+ -moz-user-select: none;
1229
+ -webkit-user-select: none;
1230
+ }
1231
+ .multiselect:hover {
1232
+ border: 1px solid var(--theme-color-half);
1233
+ }
1234
+ .multiselect.selected {
1235
+ border: 1px solid var(--theme-color);
1236
+ }
1237
+
1238
+ body.dark .multiselect.multi {
1239
+ background: var(--box-background-color);
1240
+ }
1241
+
1242
+ .multiselect .select_chevron {
1243
+ top: 50%;
1244
+ margin-top: -10px;
1245
+ margin-left: -19px;
1246
+ }
1247
+
1248
+ .multiselect.compact {
1249
+ overflow: hidden;
1250
+ height: 26px;
1251
+ }
1252
+
1253
+ .multiselect > .item {
1254
+ display: block;
1255
+ float: left;
1256
+ max-width: 200px;
1257
+ /* height: 18px; */
1258
+ line-height: 22px;
1259
+
1260
+ margin-top: 1px;
1261
+ margin-right: 4px;
1262
+ margin-bottom: 3px;
1263
+
1264
+ /* padding-top: 1px; */
1265
+ padding-left: 4px;
1266
+ padding-right: 6px;
1267
+
1268
+ border-radius: 6px;
1269
+
1270
+ /* background: var(--theme-color);
1271
+ color: var(--background-color); */
1272
+ background: var(--border-color);
1273
+ color: var(--body-text-color);
1274
+
1275
+ font-size: 13px;
1276
+ /* font-weight: bold; */
1277
+
1278
+ overflow: hidden;
1279
+ text-overflow: ellipsis;
1280
+ white-space: nowrap;
1281
+
1282
+ user-select: none;
1283
+ -moz-user-select: none;
1284
+ -webkit-user-select: none;
1285
+ }
1286
+ body.dark .multiselect > .item {
1287
+ background: var(--border-color);
1288
+ }
1289
+
1290
+ .multiselect > .item > i.mdi-close:hover:before {
1291
+ content: "\F0159"; /* mdi-close-circle */
1292
+ color: var(--theme-color);
1293
+ }
1294
+
1295
+ .multiselect > .item.inherited {
1296
+ color: var(--green);
1297
+ text-shadow: 0px -1px 0px white;
1298
+ /* opacity: 0.75; */
1299
+ }
1300
+ body.dark .multiselect > .item.inherited {
1301
+ text-shadow: none;
1302
+ }
1303
+
1304
+ .multiselect > .placeholder {
1305
+ padding-top: 1px;
1306
+ padding-bottom: 4px;
1307
+ line-height: 21px;
1308
+ font-style: italic;
1309
+ color: var(--label-color);
1310
+
1311
+ user-select: none;
1312
+ -moz-user-select: none;
1313
+ -webkit-user-select: none;
1314
+ }
1315
+
1316
+ .multiselect.single {
1317
+ padding-top: 6px;
1318
+ padding-bottom: 3px;
1319
+ background: var(--form-background-color);
1320
+ }
1321
+ .box_title_widget .multiselect.single {
1322
+ padding-top: 2px;
1323
+ padding-bottom: 0px;
1324
+ }
1325
+ .form_grid .multiselect.single {
1326
+ padding-top: 2px;
1327
+ padding-bottom: 0px;
1328
+ }
1329
+
1330
+ .multiselect > .single {
1331
+ padding-top: 1px;
1332
+ padding-bottom: 3px;
1333
+ padding-left: 2px;
1334
+ padding-right: 10px;
1335
+ line-height: 16px;
1336
+ color: var(--body-text-color);
1337
+
1338
+ white-space: nowrap;
1339
+ overflow: hidden;
1340
+ text-overflow: ellipsis;
1341
+
1342
+ user-select: none;
1343
+ -moz-user-select: none;
1344
+ -webkit-user-select: none;
1345
+ }
1346
+ /* .multiselect > .single.novalue {
1347
+ color: var(--label-color);
1348
+ } */
1349
+
1350
+ .multiselect.disabled > div {
1351
+ color: var(--icon-color);
1352
+ cursor: not-allowed;
1353
+ }
1354
+ .multiselect.disabled:hover {
1355
+ border: 1px solid var(--border-color);
1356
+ }
1357
+
1358
+ .dialog .multiselect {
1359
+ background: var(--box-background-color);
1360
+ }
1361
+ body.dark .dialog .multiselect {
1362
+ background: var(--form-background-color);
1363
+ }
1364
+
1365
+ .multiselect i.mdi:before {
1366
+ transform: scale(1.20);
1367
+ }
1368
+ .multiselect i.mdi {
1369
+ padding-right: 1px;
1370
+ }
1371
+
1372
+ .form_date i.mdi:before {
1373
+ transform: scale(1.20);
1374
+ }
1375
+ .form_date i.mdi {
1376
+ padding-right: 1px;
1377
+ }
1378
+
1379
+ .fr_label i.mdi:before {
1380
+ transform: scale(1.20);
1381
+ }
1382
+ .fr_label i.mdi {
1383
+ padding-left: 1px;
1384
+ padding-right: 1px;
1385
+ }
1386
+
1387
+ .sel_dialog_item i.mdi:before {
1388
+ transform: scale(1.20);
1389
+ }
1390
+ .sel_dialog_item i.mdi {
1391
+ padding-right: 1px;
1392
+ }
1393
+
1394
+ .form_suffix_icon {
1395
+ position: relative;
1396
+ left: -15px;
1397
+ width: 20px;
1398
+ height: 20px;
1399
+ line-height: 20px;
1400
+ text-align: center;
1401
+ font-size: 18px;
1402
+ color: var(--label-color);
1403
+ cursor: pointer;
1404
+ }
1405
+ .form_suffix_icon:hover {
1406
+ color: var(--theme-color);
1407
+ }
1408
+ .form_suffix_icon:active {
1409
+ color: var(--theme-color-half);
1410
+ }
1411
+
1412
+ .checkbox_container {
1413
+ position: relative;
1414
+ display: inline-block;
1415
+ margin-right: 1em;
1416
+ /* white-space: nowrap; */
1417
+ margin-top: 5px;
1418
+ }
1419
+ .checkbox_container:first-child {
1420
+ margin-top: 0px;
1421
+ }
1422
+
1423
+ .checkbox_container > input {
1424
+ position: absolute;
1425
+ left: 0;
1426
+ top: 0;
1427
+ min-width: 1em;
1428
+ width: 100%;
1429
+ height: 100%;
1430
+ z-index: 2;
1431
+ opacity: 0;
1432
+ margin: 0;
1433
+ padding: 0;
1434
+ cursor: pointer;
1435
+ }
1436
+
1437
+ .checkbox_container > label {
1438
+ position: initial;
1439
+ display: inline-block;
1440
+ font-weight: 400;
1441
+ margin: 0;
1442
+ text-indent: 1.5em;
1443
+ min-width: calc(1em + 2px);
1444
+ }
1445
+
1446
+ .checkbox_container > label:before, .checkbox_container > label:after {
1447
+ content: '';
1448
+ width: calc(1em + 0px);
1449
+ height: calc(1em + 0px);
1450
+ display: block;
1451
+ box-sizing: border-box;
1452
+ border-radius: 0px;
1453
+ border: 1px solid transparent;
1454
+ z-index: 0;
1455
+ position: absolute;
1456
+ left: 0;
1457
+ top: 0px;
1458
+ /* top: calc((0% - (100% - 1em)) - 8%); */
1459
+ background-color: transparent;
1460
+ transform-origin: 50% 50%;
1461
+ transition: all .25s ease;
1462
+ }
1463
+
1464
+ .checkbox_container > label:before {
1465
+ background-color: var(--box-background-color);
1466
+ border-color: var(--icon-color);
1467
+ }
1468
+ body.dark .checkbox_container > label:before {
1469
+ background-color: var(--box-background-color);
1470
+ }
1471
+ body.dark fieldset .checkbox_container > label:before {
1472
+ background-color: var(--box-background-color);
1473
+ }
1474
+
1475
+ .checkbox_container > label:after {
1476
+ transform: scale(.2);
1477
+ }
1478
+
1479
+ /* .checkbox_container > input:hover ~ label:before {
1480
+ border-color: var(--theme-color);
1481
+ } */
1482
+ .checkbox_container > input:hover ~ label {
1483
+ color: var(--theme-color);
1484
+ }
1485
+
1486
+ .checkbox_container > input:checked ~ label:after {
1487
+ transform: scale(1.0);
1488
+ background-color: var(--theme-color);
1489
+ background-image: url(../images/check-bold.png);
1490
+ background-position: center center;
1491
+ background-repeat: no-repeat;
1492
+ background-size: 100%;
1493
+ }
1494
+
1495
+ .checkbox_container > input[disabled] {
1496
+ cursor: default;
1497
+ }
1498
+ .checkbox_container > input[disabled] ~ label {
1499
+ opacity: 0.5;
1500
+ color: var(--label-color);
1501
+ }
1502
+
1503
+ .checkbox_container:hover {
1504
+ color: var(--body-text-color);
1505
+ }
1506
+ /* .checkbox_container > input:hover ~ label:before {
1507
+ background-color: var(--theme-color-half) !important;
1508
+ border-color: var(--theme-color);
1509
+ } */
1510
+ /* .checkbox_container > input[checked]:hover ~ label:after {
1511
+ background-color: var(--theme-color-half) !important;
1512
+ } */
1513
+
1514
+ div.info_label {
1515
+ font-size: 11px;
1516
+ text-transform: uppercase;
1517
+ color: var(--label-color);
1518
+ cursor: default;
1519
+ }
1520
+
1521
+ div.info_value {
1522
+ position: relative;
1523
+ margin-top: 1px;
1524
+ margin-bottom: 10px;
1525
+ font-size: 12px;
1526
+ color: var(--body-text-color);
1527
+ }
1528
+ div.info_value:last-child {
1529
+ margin-bottom: 0px;
1530
+ }
1531
+
1532
+ .checker {
1533
+ position: relative;
1534
+ left: -12px;
1535
+ transform-origin: center center;
1536
+ transform: scale(1.4);
1537
+ }
1538
+
1539
+ .form_row_duo {
1540
+ display: grid;
1541
+ grid-template-columns: 1fr 1fr;
1542
+ grid-column-gap: 20px;
1543
+ }
1544
+ .form_row_duo > div {
1545
+ /* background: rgba(255, 0, 0, 0.1); */
1546
+ display: flex;
1547
+ align-items: center;
1548
+ align-self: center;
1549
+ /* justify-content: center; */
1550
+ display: block;
1551
+ position: relative;
1552
+ }
1553
+
1554
+ .form_row_range {
1555
+ display: grid;
1556
+ grid-template-columns: 10fr 1fr;
1557
+ grid-column-gap: 20px;
1558
+ }
1559
+ .form_row_duo > div {
1560
+ /* background: rgba(255, 0, 0, 0.1); */
1561
+ display: flex;
1562
+ align-items: center;
1563
+ align-self: center;
1564
+ /* justify-content: center; */
1565
+ display: block;
1566
+ position: relative;
1567
+ }
1568
+
1569
+ /* Slider */
1570
+
1571
+ input[type=range] {
1572
+ appearance: none;
1573
+ margin: 11px 0;
1574
+ width: 100%;
1575
+ }
1576
+ input[type=range]:focus {
1577
+ outline: none;
1578
+ }
1579
+ input[type=range]::-webkit-slider-runnable-track {
1580
+ width: 100%;
1581
+ height: 8px;
1582
+ cursor: pointer;
1583
+ background: var(--border-color);
1584
+ border-radius: 5px;
1585
+ }
1586
+ input[type=range]::-moz-range-track {
1587
+ width: 100%;
1588
+ height: 6px;
1589
+ cursor: pointer;
1590
+ background: var(--border-color);
1591
+ border-radius: 5px;
1592
+ }
1593
+ input[type=range]::-webkit-slider-thumb {
1594
+ border: 0px solid transparent;
1595
+ height: 16px;
1596
+ width: 16px;
1597
+ border-radius: 8px;
1598
+ background: var(--theme-color);
1599
+ cursor: grab;
1600
+ appearance: none;
1601
+ margin-top: -4px;
1602
+ }
1603
+ input[type=range]::-moz-range-thumb {
1604
+ border: 0px solid transparent;
1605
+ height: 16px;
1606
+ width: 16px;
1607
+ border-radius: 8px;
1608
+ background: var(--theme-color);
1609
+ cursor: grab;
1610
+ appearance: none;
1611
+ margin-top: -4px;
1612
+ }
1613
+ input[type=range]::-webkit-slider-thumb:active {
1614
+ cursor: grabbing;
1615
+ }
1616
+ input[type=range]::-moz-range-thumb:active {
1617
+ cursor: grabbing;
1618
+ }
1619
+
1620
+ /* Dialogs */
1621
+ /* z-index: 500 */
1622
+
1623
+ #dialog_overlay {
1624
+ position: fixed;
1625
+ z-index: 499;
1626
+ top: 0px;
1627
+ left: 0px;
1628
+ background-color: var(--box-background-color);
1629
+ width: 100vw;
1630
+ height: 100vh;
1631
+ }
1632
+ body.dark #dialog_overlay {
1633
+ background-color: var(--background-color);
1634
+ }
1635
+
1636
+ #dialog, .dialog {
1637
+ position: fixed;
1638
+ padding: 20px;
1639
+ background: var(--background-color);
1640
+ border: 1px solid var(--border-color);
1641
+ border-radius: 6px;
1642
+ z-index: 500;
1643
+ font-size: 13px;
1644
+ /* box-shadow: 15px 15px 40px var(--icon-color); */
1645
+
1646
+ box-shadow:
1647
+ 0 2px 1.6px rgba(0, 0, 0, 0.019),
1648
+ 0 4.5px 3.6px rgba(0, 0, 0, 0.028),
1649
+ 0 7.9px 6.3px rgba(0, 0, 0, 0.034),
1650
+ 0 12.5px 10px rgba(0, 0, 0, 0.04),
1651
+ 0 19.3px 15.5px rgba(0, 0, 0, 0.046),
1652
+ 0 30.1px 24.1px rgba(0, 0, 0, 0.052),
1653
+ 0 50px 40px rgba(0, 0, 0, 0.061),
1654
+ 0 100px 80px rgba(0, 0, 0, 0.08);
1655
+
1656
+ max-width: calc( 100vw - 30px );
1657
+ }
1658
+ body.dark #dialog, body.dark .dialog {
1659
+ background: var(--box-background-color);
1660
+ box-shadow: 15px 15px 40px var(--background-color);
1661
+ }
1662
+ .dialog.inline {
1663
+ margin-top: 75px;
1664
+ margin-bottom: 75px;
1665
+ position: relative;
1666
+ max-width: 500px;
1667
+ margin-left: auto;
1668
+ margin-right: auto;
1669
+ }
1670
+ .dialog.inline.wider {
1671
+ max-width: 650px;
1672
+ }
1673
+
1674
+ .dialog_title {
1675
+ position: relative;
1676
+ font-size: 14px;
1677
+ font-weight: bold;
1678
+ text-transform: uppercase;
1679
+ /* padding: 20px 20px 20px 20px; */
1680
+ color: var(--theme-color);
1681
+ }
1682
+ #d_progress_title {
1683
+ /* text-transform: none; */
1684
+ font-weight: normal;
1685
+ }
1686
+
1687
+ .dialog_title_widget {
1688
+ float: right;
1689
+ height: 18px;
1690
+ margin-left: 15px;
1691
+ display: flex;
1692
+ align-items: center;
1693
+
1694
+ font-size: 13px;
1695
+ font-weight: normal;
1696
+ text-transform: none;
1697
+ color: var(--body-text-color);
1698
+
1699
+ overflow: hidden;
1700
+ text-overflow: ellipsis;
1701
+ white-space: nowrap;
1702
+ }
1703
+ .dialog_title_widget > i.mdi:before {
1704
+ transform: scale(1.20);
1705
+ }
1706
+
1707
+ .dialog_title span.danger {
1708
+ color: var(--red);
1709
+ }
1710
+
1711
+ .dialog_content {
1712
+
1713
+ }
1714
+
1715
+ .dialog_help {
1716
+ font-size: 12px;
1717
+ font-style: italic;
1718
+ color: var(--label-color);
1719
+ margin-bottom: 25px;
1720
+ max-width: 450px;
1721
+ }
1722
+ .dialog.inline .dialog_help {
1723
+ margin-bottom: 0;
1724
+ }
1725
+
1726
+ .dialog_content .form_row {
1727
+ display: grid;
1728
+ margin-bottom: 20px;
1729
+ grid-template-columns: 3fr 8fr 1fr;
1730
+ }
1731
+
1732
+ .dialog_buttons {
1733
+ font-size: 14px;
1734
+ /* padding: 15px 20px 20px 20px; */
1735
+ text-align: right;
1736
+ }
1737
+
1738
+ .dialog_buttons > .button {
1739
+ margin-left: 15px;
1740
+ }
1741
+ .dialog_buttons > .button:first-child {
1742
+ margin-left: 0px;
1743
+ }
1744
+
1745
+ .confirm_container {
1746
+ max-width: 450px;
1747
+ padding: 20px 0 20px 0;
1748
+ font-size: 13px;
1749
+ line-height: 18px;
1750
+ color: var(--body-text-color);
1751
+ }
1752
+
1753
+ #d_sel_dialog_more {
1754
+ position: relative;
1755
+ line-height: 25px;
1756
+ font-size: 12px;
1757
+ font-style: italic;
1758
+ text-align: center;
1759
+ color: var(--label-color);
1760
+ overflow: hidden;
1761
+ text-overflow: ellipsis;
1762
+ white-space: nowrap;
1763
+ }
1764
+
1765
+ /* Code Editor */
1766
+ /* z-index: 600 */
1767
+
1768
+ #ceditor_overlay {
1769
+ position: fixed;
1770
+ z-index: 599;
1771
+ top: 0px;
1772
+ left: 0px;
1773
+ background-color: var(--box-background-color);
1774
+ width: 100vw;
1775
+ height: 100vh;
1776
+ }
1777
+ body.dark #ceditor_overlay {
1778
+ background-color: var(--background-color);
1779
+ }
1780
+
1781
+ #ceditor {
1782
+ z-index: 600;
1783
+ }
1784
+
1785
+ /* Progress Bar Stuff */
1786
+
1787
+ @keyframes progress { to { background-position: 30px 0; } }
1788
+
1789
+ div.progress_bar_container {
1790
+ position: relative;
1791
+ height: 18px;
1792
+ border-radius: 10px;
1793
+ background-color: var(--border-color);
1794
+ box-shadow: inset -1px -1px 0px rgba(255, 255, 255, 0.1), inset 1px 1px 0px rgba(0, 0, 0, 0.1);
1795
+ overflow: hidden;
1796
+ }
1797
+ div.progress_bar_container.indeterminate {
1798
+ background-color: var(--background-color);
1799
+ box-shadow: none;
1800
+ }
1801
+ div.progress_bar_container.pending {
1802
+ box-shadow: none;
1803
+ }
1804
+
1805
+ div.progress_bar_inner {
1806
+ position: absolute;
1807
+ left: 0;
1808
+ top: 0;
1809
+ z-index: 2;
1810
+ overflow: hidden;
1811
+
1812
+ height: 18px;
1813
+ border-radius: 10px;
1814
+
1815
+ /* background-color: rgb(155, 155, 170); */
1816
+ background-color: var(--theme-color);
1817
+ box-shadow: inset 0px 0px 6px 2px rgba(255,255,255,.3);
1818
+
1819
+ animation: progress 1s linear infinite;
1820
+
1821
+ background-repeat: repeat-x;
1822
+ background-size: 30px 30px;
1823
+ background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1824
+
1825
+ transition: width 0.5s ease-in-out;
1826
+ }
1827
+ div.progress_bar_container.indeterminate > div.progress_bar_inner {
1828
+ opacity: 0.5;
1829
+ transition: none !important;
1830
+ }
1831
+ div.progress_bar_container.pending > div.progress_bar_inner {
1832
+ transition: none !important;
1833
+ }
1834
+
1835
+ body.dark div.progress_bar_inner {
1836
+ box-shadow: inset 0px 0px 6px 2px rgba(0,0,0,.3);
1837
+
1838
+ background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.25) 75%, transparent 75%, transparent);
1839
+ }
1840
+
1841
+ div.progress_bar_container.static > div.progress_bar_inner {
1842
+ animation: none;
1843
+ background-image: none;
1844
+ }
1845
+
1846
+ div.progress_bar_label {
1847
+ position: absolute;
1848
+ width: 100%;
1849
+ height: 18px;
1850
+ left: 0;
1851
+ top: 0;
1852
+ line-height: 18px;
1853
+ font-size: 12px;
1854
+ font-weight: bold;
1855
+ text-align: center;
1856
+ cursor: default;
1857
+ }
1858
+ div.progress_bar_label.first_half {
1859
+ z-index: 1;
1860
+ color: var(--label-color);
1861
+ }
1862
+ div.progress_bar_label.second_half {
1863
+ z-index: 3;
1864
+ color: var(--light);
1865
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
1866
+ }
1867
+
1868
+ div.progress_bar_container.indeterminate div.progress_bar_label {
1869
+ display: none;
1870
+ }
1871
+
1872
+ /* Arrow Boxes */
1873
+ /* z-index: 1000 */
1874
+
1875
+ .arrow_box {
1876
+ position: fixed;
1877
+ background: var(--background-color);
1878
+ border: 1px solid var(--border-color);
1879
+ border-radius: 6px;
1880
+ z-index: 1000;
1881
+ font-size: 13px;
1882
+ /* box-shadow: 15px 15px 40px var(--icon-color); */
1883
+
1884
+ box-shadow:
1885
+ 0 2px 1.6px rgba(0, 0, 0, 0.019),
1886
+ 0 4.5px 3.6px rgba(0, 0, 0, 0.028),
1887
+ 0 7.9px 6.3px rgba(0, 0, 0, 0.034),
1888
+ 0 12.5px 10px rgba(0, 0, 0, 0.04),
1889
+ 0 19.3px 15.5px rgba(0, 0, 0, 0.046),
1890
+ 0 30.1px 24.1px rgba(0, 0, 0, 0.052),
1891
+ 0 50px 40px rgba(0, 0, 0, 0.061),
1892
+ 0 100px 80px rgba(0, 0, 0, 0.08);
1893
+ }
1894
+ body.dark .arrow_box {
1895
+ box-shadow: 15px 15px 40px var(--background-color);
1896
+ }
1897
+ .arrow_box:after, .arrow_box:before {
1898
+ left: var(--arrow-left, 50%);
1899
+ border: solid transparent;
1900
+ content: " ";
1901
+ height: 0;
1902
+ width: 0;
1903
+ position: absolute;
1904
+ pointer-events: none;
1905
+ }
1906
+
1907
+ .arrow_box.top:after, .arrow_box.top:before {
1908
+ bottom: 100%;
1909
+ }
1910
+ .arrow_box.top:after {
1911
+ border-bottom-color: var(--background-color);
1912
+ border-width: 15px;
1913
+ margin-left: -15px;
1914
+ }
1915
+ .arrow_box.top:before {
1916
+ border-bottom-color: var(--border-color);
1917
+ border-width: 16px;
1918
+ margin-left: -16px;
1919
+ }
1920
+
1921
+ .arrow_box.bottom:after, .arrow_box.bottom:before {
1922
+ top: 100%;
1923
+ }
1924
+ .arrow_box.bottom:after {
1925
+ border-top-color: var(--background-color);
1926
+ border-width: 15px;
1927
+ margin-left: -15px;
1928
+ }
1929
+ .arrow_box.bottom:before {
1930
+ border-top-color: var(--border-color);
1931
+ border-width: 16px;
1932
+ margin-left: -16px;
1933
+ }
1934
+
1935
+ #popoverlay {
1936
+ position: fixed;
1937
+ z-index: 999;
1938
+ top: 0px;
1939
+ left: 0px;
1940
+ background-color: var(--box-background-color);
1941
+ width: 100vw;
1942
+ height: 100vh;
1943
+ }
1944
+ body.dark #popoverlay {
1945
+ background-color: var(--background-color);
1946
+ }
1947
+
1948
+ #sidebar_overlay {
1949
+ position: fixed;
1950
+ z-index: 2;
1951
+ top: 0px;
1952
+ left: 0px;
1953
+ background-color: var(--box-background-color);
1954
+ width: 100vw;
1955
+ height: 100vh;
1956
+ }
1957
+ body.dark #sidebar_overlay {
1958
+ background-color: var(--background-color);
1959
+ }
1960
+
1961
+ /* Multi-select Popover */
1962
+
1963
+ div.sel_dialog_label {
1964
+ /* background-color: var(--dialog-background-color); */
1965
+ font-size: 12px;
1966
+ font-weight: bold;
1967
+ text-transform: uppercase;
1968
+ color: var(--label-color);
1969
+ /* padding-left: 10px; */
1970
+ /* padding-right: 10px; */
1971
+ margin-bottom: 10px;
1972
+ cursor: default;
1973
+ }
1974
+ div.sel_dialog_label.danger {
1975
+ color: var(--red);
1976
+ }
1977
+
1978
+ div.sel_all_none {
1979
+ float: right;
1980
+ font-weight: normal;
1981
+ text-transform: none;
1982
+ cursor: pointer;
1983
+
1984
+ user-select: none;
1985
+ -moz-user-select: none;
1986
+ -webkit-user-select: none;
1987
+ }
1988
+ div.sel_all_none:hover {
1989
+ color: var(--theme-color);
1990
+ }
1991
+
1992
+ div.sel_dialog_search_container {
1993
+ position: relative;
1994
+ width: 100%;
1995
+ height: 25px;
1996
+ margin-top: 0px;
1997
+ margin-right: 8px;
1998
+ -webkit-app-region: no-drag;
1999
+ }
2000
+
2001
+ input.sel_dialog_search {
2002
+ width: 100%;
2003
+ height: 25px;
2004
+ font-size: 13px;
2005
+ padding-left: 26px;
2006
+ padding-right: 5px;
2007
+
2008
+ -webkit-appearance: none;
2009
+ -moz-appearance: none;
2010
+ appearance: none;
2011
+
2012
+ cursor: text;
2013
+ outline: none;
2014
+ border: 1px solid var(--border-color);
2015
+ border-radius: 10px;
2016
+ color: var(--body-text-color);
2017
+ background-color: var(--box-background-color);
2018
+ }
2019
+ input.sel_dialog_search:focus + div.sel_dialog_search_icon {
2020
+ color: var(--theme-color);
2021
+ }
2022
+ input.sel_dialog_search:focus + div.sel_dialog_search_icon.danger {
2023
+ color: var(--red);
2024
+ }
2025
+
2026
+ div.sel_dialog_search_icon {
2027
+ position: absolute;
2028
+ left: 3px;
2029
+ top: 2px;
2030
+ width: 22px;
2031
+ font-size: 18px;
2032
+ line-height: 20px;
2033
+ text-align: center;
2034
+ color: var(--icon-color);
2035
+ cursor: default;
2036
+ z-index: 2;
2037
+ }
2038
+
2039
+ div.sel_dialog_scrollarea {
2040
+ position: relative;
2041
+ overflow-y: scroll;
2042
+ width: 100%;
2043
+ padding-left: 10px;
2044
+ padding-right: 10px;
2045
+
2046
+ max-height: 238px;
2047
+ margin-top: 7px;
2048
+
2049
+ user-select: none;
2050
+ -moz-user-select: none;
2051
+ -webkit-user-select: none;
2052
+ }
2053
+
2054
+ div.sel_dialog_scrollarea.nudgeheight {
2055
+ max-height: 250px;
2056
+ }
2057
+
2058
+ .sel_dialog_group {
2059
+ position: relative;
2060
+ height: 25px;
2061
+ line-height: 25px;
2062
+ font-size: 13px;
2063
+ font-weight: bold;
2064
+ color: var(--label-color);
2065
+ cursor: default;
2066
+
2067
+ margin-top: 10px;
2068
+
2069
+ overflow: hidden;
2070
+ text-overflow: ellipsis;
2071
+ white-space: nowrap;
2072
+ }
2073
+
2074
+ .sel_dialog_item {
2075
+ position: relative;
2076
+ height: 25px;
2077
+ line-height: 25px;
2078
+ font-size: 13px;
2079
+ /* font-weight: bold; */
2080
+ color: var(--body-text-color);
2081
+ cursor: pointer;
2082
+
2083
+ overflow: hidden;
2084
+ text-overflow: ellipsis;
2085
+ white-space: nowrap;
2086
+ }
2087
+ .sel_dialog_item:hover {
2088
+ color: var(--theme-color);
2089
+ }
2090
+ .sel_dialog_item.selected {
2091
+ /* opacity: 0.5; */
2092
+ font-weight: bold;
2093
+ color: var(--theme-color);
2094
+ }
2095
+ .sel_dialog_item.selected:hover {
2096
+ /* opacity: 0.5; */
2097
+ font-weight: bold;
2098
+ color: var(--theme-color-highlight);
2099
+ }
2100
+ .sel_dialog_item.shrinkwrap {
2101
+ max-width: min(calc(100vw - 90px), 500px);
2102
+ }
2103
+ /* .sel_dialog_item.selected:hover {
2104
+ color: var(--body-text-color);
2105
+ cursor: default;
2106
+ } */
2107
+
2108
+ .sel_dialog_item > span {
2109
+ overflow: hidden;
2110
+ text-overflow: ellipsis;
2111
+ white-space: nowrap;
2112
+ }
2113
+
2114
+ .sel_dialog_item.check {
2115
+ padding-left: 24px;
2116
+ }
2117
+ .sel_dialog_item.nocheck {
2118
+ padding-left: 2px;
2119
+ }
2120
+
2121
+ .sel_dialog_item_check {
2122
+ position: absolute;
2123
+ width: 16px;
2124
+ height: 25px;
2125
+ left: 0px;
2126
+ top: 0px;
2127
+ line-height: 25px;
2128
+ font-size: 16px;
2129
+ text-align: center;
2130
+ opacity: 0;
2131
+ }
2132
+
2133
+ .sel_dialog_item.selected > .sel_dialog_item_check {
2134
+ opacity: 1;
2135
+ }
2136
+ .sel_dialog_item.inherited > .sel_dialog_item_check {
2137
+ opacity: 1;
2138
+ }
2139
+
2140
+ .sel_dialog_caption {
2141
+ font-size: 11px;
2142
+ margin-top: 4px;
2143
+ color: var(--label-color);
2144
+ }
2145
+
2146
+ .sel_dialog_button_container {
2147
+ margin-top: 20px;
2148
+ font-size: 14px;
2149
+ /* padding: 15px 20px 20px 20px; */
2150
+ text-align: right;
2151
+ }
2152
+
2153
+ .sel_dialog_button_container > .button {
2154
+ margin-left: 15px;
2155
+ }
2156
+
2157
+ .sel_dialog_item.inherited {
2158
+ font-weight: normal;
2159
+ color: var(--green);
2160
+ /* opacity: 0.75; */
2161
+ cursor: default;
2162
+ }
2163
+ .sel_dialog_item.inherited:hover {
2164
+ color: var(--green);
2165
+ }
2166
+
2167
+ /* Popup Calendar */
2168
+
2169
+ div.form_date {
2170
+ line-height: 22px;
2171
+ padding-left: 4px;
2172
+ background: var(--form-background-color);
2173
+ border: 1px solid var(--border-color);
2174
+ border-radius: 4px;
2175
+ font-size: 13px;
2176
+ color: var(--body-text-color);
2177
+ cursor: pointer;
2178
+ }
2179
+ div.form_date:hover {
2180
+ border: 1px solid var(--theme-color-half);
2181
+ }
2182
+ div.form_date:active {
2183
+ border: 1px solid var(--theme-color);
2184
+ }
2185
+ div.form_date.selected {
2186
+ border: 1px solid var(--theme-color);
2187
+ }
2188
+
2189
+ div.calendar {
2190
+ width: 300px;
2191
+ padding: 15px;
2192
+ margin: 0 auto 0 auto;
2193
+ cursor: default;
2194
+ user-select: none;
2195
+ -moz-user-select: none;
2196
+ -webkit-user-select: none;
2197
+ }
2198
+
2199
+ div.cal_header {
2200
+ display: grid;
2201
+ grid-template-columns: 1fr 5fr 1fr;
2202
+ grid-gap: 0;
2203
+ line-height: 16px;
2204
+ font-size: 15px;
2205
+ margin-bottom: 10px;
2206
+ }
2207
+
2208
+ div.ch_nav {
2209
+ text-align: center;
2210
+ color: var(--label-color);
2211
+ cursor: pointer;
2212
+ font-size: 18px;
2213
+ }
2214
+ div.ch_nav:hover {
2215
+ color: var(--theme-color);
2216
+ }
2217
+ div.ch_nav:active {
2218
+ color: var(--theme-color-half);
2219
+ }
2220
+
2221
+ div.ch_title {
2222
+ text-align: center;
2223
+ font-weight: bold;
2224
+ color: var(--label-color);
2225
+ }
2226
+
2227
+ div.cal_days {
2228
+ display: grid;
2229
+ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
2230
+ grid-gap: 0;
2231
+ line-height: 10px;
2232
+ font-size: 9px;
2233
+ margin-bottom: 2px;
2234
+ }
2235
+
2236
+ div.cal_day {
2237
+ text-align: center;
2238
+ color: var(--icon-color);
2239
+ }
2240
+
2241
+ div.cg_row {
2242
+ display: grid;
2243
+ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
2244
+ grid-gap: 0;
2245
+ border-bottom: 1px solid var(--border-color);
2246
+ }
2247
+ div.cg_row.last {
2248
+ border-bottom: 1px solid transparent;
2249
+ }
2250
+
2251
+ div.cg_cell {
2252
+ line-height: 30px;
2253
+ font-size: 15px;
2254
+ text-align: center;
2255
+ color: var(--label-color);
2256
+ border-right: 1px solid var(--border-color);
2257
+ }
2258
+ div.cg_cell:last-child {
2259
+ border-right: 1px solid transparent;
2260
+ }
2261
+ div.cg_cell.enabled {
2262
+ cursor: pointer;
2263
+ }
2264
+ div.cg_cell.enabled:hover {
2265
+ box-shadow: inset 0px 0px 1px 1px var(--theme-color-half);
2266
+ }
2267
+ div.cg_cell.enabled:active {
2268
+ box-shadow: inset 0px 0px 1px 1px var(--theme-color);
2269
+ }
2270
+ div.cg_cell.today {
2271
+ color: var(--theme-color);
2272
+ font-weight: bold;
2273
+ }
2274
+ div.cg_cell.selected {
2275
+ background-color: var(--theme-color-half);
2276
+ color: white;
2277
+ }
2278
+
2279
+ /* Table */
2280
+
2281
+ .pagination {
2282
+ font-size: 12px;
2283
+ margin-top: 10px;
2284
+ margin-bottom: 10px;
2285
+ font-weight: normal;
2286
+ color: var(--label-color);
2287
+ text-transform: uppercase;
2288
+ }
2289
+ .pagination.hide { display:none; }
2290
+
2291
+ .data_table {
2292
+ border-collapse: collapse;
2293
+ }
2294
+
2295
+ .data_table tr th {
2296
+ font-size: 13px;
2297
+ height: 25px;
2298
+ line-height: 25px;
2299
+ cursor: default;
2300
+ font-weight: bold;
2301
+ text-align: left;
2302
+ padding-left: 5px;
2303
+ padding-right: 10px;
2304
+ /* color:#1840F0; */
2305
+ color: var(--label-color);
2306
+
2307
+ border-top: 1px solid var(--border-color);
2308
+
2309
+ background: var(--background-color);
2310
+ /* background: linear-gradient(to top, #ddd 0%, #fff 100%); */
2311
+ }
2312
+ body.dark .data_table tr th {
2313
+ background: var(--form-background-color);
2314
+ border-bottom: 1px solid var(--border-color);
2315
+ }
2316
+
2317
+ .data_table tr td {
2318
+ font-size: 13px;
2319
+ padding-left: 5px;
2320
+ padding-right: 10px;
2321
+ padding-top: 8px;
2322
+ padding-bottom: 8px;
2323
+
2324
+ border-bottom: 1px solid var(--border-color);
2325
+
2326
+ background: transparent;
2327
+ /* background: linear-gradient(to top, #efefef 0%, #fff 100%); */
2328
+ }
2329
+ .data_table tr.highlight td {
2330
+
2331
+ }
2332
+ .data_table.extra_padding tr td {
2333
+ padding-top: 10px;
2334
+ padding-bottom: 10px;
2335
+ }
2336
+
2337
+ div.data_table_compact {
2338
+ border: 1px solid var(--border-color);
2339
+ border-radius: 6px;
2340
+ overflow: hidden;
2341
+ }
2342
+
2343
+ table.data_table.compact th, table.data_table.compact td {
2344
+ border-bottom: none;
2345
+ border-top: none;
2346
+ }
2347
+
2348
+ table.data_table.compact td {
2349
+ padding-top: 7px;
2350
+ padding-bottom: 7px;
2351
+ }
2352
+
2353
+ table.data_table.compact th:first-child, table.data_table.compact td:first-child {
2354
+ padding-left: 10px;
2355
+ }
2356
+
2357
+ div.td_big {
2358
+ line-height: 21px;
2359
+ font-size: 13px;
2360
+ font-weight: bold;
2361
+ }
2362
+ div.td_big.dragging, div.td_big.dragging a, div.td_big.dragging i, div.td_big.dragging span {
2363
+ color: var(--theme-color) !important;
2364
+ }
2365
+ div.td_avatar {
2366
+ line-height: 24px;
2367
+ font-size: 13px;
2368
+ font-weight: bold;
2369
+
2370
+ padding-left: 30px;
2371
+ background-repeat: no-repeat;
2372
+ background-position: left center;
2373
+ background-size: 24px 24px;
2374
+ }
2375
+ div.td_drag_handle {
2376
+ display: block;
2377
+ line-height: 21px;
2378
+ font-size: 13px;
2379
+ cursor: grab;
2380
+
2381
+ padding: 5px 0px 5px 5px;
2382
+ margin: -5px 0px -5px -5px;
2383
+ }
2384
+ /* div.td_drag_handle:hover i {
2385
+ color: var(--theme-color) !important;
2386
+ } */
2387
+
2388
+ div.td_drag_handle > div.checkbox_container {
2389
+ margin-right: 0px;
2390
+ top: 6px;
2391
+ }
2392
+
2393
+ .data_table_compact div.td_big {
2394
+ /* line-height: 15px; */
2395
+ font-size: 13px;
2396
+ font-weight: bold;
2397
+ }
2398
+
2399
+ .ellip {
2400
+ white-space: nowrap;
2401
+ overflow: hidden;
2402
+ text-overflow: ellipsis;
2403
+ }
2404
+
2405
+ .data_table.ellip tr td, .data_table.ellip tr td div {
2406
+ white-space: nowrap;
2407
+ overflow: hidden;
2408
+ text-overflow: ellipsis;
2409
+ max-width: 25vw;
2410
+ }
2411
+ .data_table.ellip tr td div.mono {
2412
+ max-width: 12vw;
2413
+ }
2414
+
2415
+ .data_table tr td span.link i.mdi {
2416
+ padding-right: 2px;
2417
+ }
2418
+ .data_table tr td i.mdi:before {
2419
+ transform: scale(1.20);
2420
+ }
2421
+ .data_table tr td i.mdi {
2422
+ padding-right: 1px;
2423
+ }
2424
+
2425
+ .data_table_compact tr td i {
2426
+ color: var(--label-color) !important;
2427
+ }
2428
+ .data_table_compact tr td a i {
2429
+ color: var(--icon-color) !important;
2430
+ }
2431
+ .data_table_compact tr td a:hover i {
2432
+ color: var(--theme-color) !important;
2433
+ }
2434
+
2435
+ .data_table_compact tr td i.mdi {
2436
+ padding-right: 2px;
2437
+ }
2438
+ .data_table_compact tr td i.mdi:before {
2439
+ transform: scale(1.20);
2440
+ }
2441
+
2442
+ div.dropzone {
2443
+ position: absolute;
2444
+ z-index: 10000;
2445
+ cursor: grabbing;
2446
+ }
2447
+
2448
+ div.dropzone > div.dz_bar {
2449
+ position: absolute;
2450
+ width: 100%;
2451
+ height: 0px;
2452
+ left: 0px;
2453
+ top: 50%;
2454
+ /* background-color: var(--theme-color); */
2455
+ box-shadow: 0px 0px 0px 1px var(--theme-color);
2456
+ display: none;
2457
+ cursor: grabbing;
2458
+ }
2459
+ div.dropzone.drag > div.dz_bar {
2460
+ display: block;
2461
+ }
2462
+
2463
+ /* Data Grid */
2464
+
2465
+ .data_grid_pagination {
2466
+ font-size: 12px;
2467
+ margin-top: 10px;
2468
+ margin-bottom: 10px;
2469
+ font-weight: normal;
2470
+ color: var(--label-color);
2471
+ text-transform: uppercase;
2472
+
2473
+ display: grid;
2474
+ grid-template-columns: repeat(3, auto);
2475
+ }
2476
+ .data_grid_pagination > div {
2477
+ white-space: nowrap;
2478
+ overflow: hidden;
2479
+ text-overflow: ellipsis;
2480
+ }
2481
+ .data_grid_pagination i.mdi:before {
2482
+ transform: scale(1.75);
2483
+ }
2484
+
2485
+ .data_grid {
2486
+ display: grid;
2487
+ align-items: center;
2488
+ }
2489
+
2490
+ .data_grid > ul {
2491
+ display: contents;
2492
+ }
2493
+
2494
+ .data_grid > ul > div {
2495
+ line-height: 21px;
2496
+ font-size: 13px;
2497
+ padding-left: 5px;
2498
+ padding-right: 15px;
2499
+ padding-top: 8px;
2500
+ padding-bottom: 8px;
2501
+ border-bottom: 1px solid var(--border-color);
2502
+ background: transparent;
2503
+
2504
+ white-space: nowrap;
2505
+ overflow: hidden;
2506
+ text-overflow: ellipsis;
2507
+ }
2508
+
2509
+ .data_grid > ul.grid_row_header > div {
2510
+ /* height: 25px;
2511
+ line-height: 25px; */
2512
+ padding-top: 4px;
2513
+ padding-bottom: 4px;
2514
+ cursor: default;
2515
+ font-weight: bold;
2516
+ text-align: left;
2517
+ padding-left: 5px;
2518
+ padding-right: 10px;
2519
+ color: var(--label-color);
2520
+ border-top: 1px solid var(--border-color);
2521
+ border-bottom: 1px solid transparent;
2522
+ background: var(--table-header-background-color);
2523
+ }
2524
+ body.dark .data_grid > ul.grid_row_header > div {
2525
+ border-bottom: 1px solid var(--border-color);
2526
+ }
2527
+
2528
+ .data_grid > ul.grid_row_header > div i.mdi.mdi-menu-up:before, .data_grid > ul.grid_row_header > div i.mdi.mdi-menu-down:before {
2529
+ transform: scale(1.75);
2530
+ }
2531
+
2532
+ .data_grid > ul > div span.link i.mdi {
2533
+ padding-right: 2px;
2534
+ }
2535
+ .data_grid > ul > div i.mdi:before {
2536
+ transform: scale(1.30);
2537
+ }
2538
+ .data_grid > ul > div i.mdi {
2539
+ padding-left: 2px;
2540
+ padding-right: 1px;
2541
+ }
2542
+
2543
+ .data_grid ul.disabled div {
2544
+ opacity: 0.6;
2545
+ }
2546
+
2547
+ ul.grid_row_empty > div {
2548
+ padding-top: 20px;
2549
+ padding-bottom: 20px;
2550
+ font-weight: bold;
2551
+ text-align: center;
2552
+ color: var(--label-color);
2553
+ }
2554
+
2555
+ ul.grid_row_more > div {
2556
+ padding-top: 15px;
2557
+ padding-bottom: 15px;
2558
+ font-weight: normal;
2559
+ font-style: italic;
2560
+ text-align: center;
2561
+ color: var(--label-color);
2562
+ }
2563
+
2564
+ .data_table_compact .data_grid > ul > div {
2565
+ border-bottom: none;
2566
+ padding-top: 6px;
2567
+ padding-bottom: 6px;
2568
+ padding-left: 10px;
2569
+ }
2570
+ .data_table_compact .data_grid > ul.grid_row_empty > div {
2571
+ padding-top: 10px;
2572
+ padding-bottom: 10px;
2573
+ }
2574
+
2575
+ /* Color Labels */
2576
+
2577
+ .color_label {
2578
+ border-radius: 5px;
2579
+ padding: 3px 5px 3px 5px;
2580
+ color: #fff;
2581
+ font-size: 12px;
2582
+ /* font-weight: bold; */
2583
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
2584
+ cursor: default;
2585
+ white-space: nowrap;
2586
+ user-select: none;
2587
+ -moz-user-select: none;
2588
+ -webkit-user-select: none;
2589
+ }
2590
+ body.dark .color_label {
2591
+ color: rgba(255, 255, 255, 0.85);
2592
+ }
2593
+
2594
+ .color_label.blue { background: var(--blue); }
2595
+ .color_label.green { background: var(--green); }
2596
+ .color_label.yellow { background: var(--yellow); text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.75); }
2597
+ .color_label.red { background: var(--red); }
2598
+ .color_label.purple { background: var(--purple); }
2599
+ .color_label.gray { background: var(--gray); }
2600
+
2601
+ .color_label.linky {
2602
+ cursor: pointer;
2603
+ }
2604
+ .color_label.linky:hover {
2605
+ text-decoration: underline;
2606
+ }
2607
+
2608
+ .color_label > i.mdi:before {
2609
+ transform: scale(1.2);
2610
+ }
2611
+
2612
+ /* Simple Horizontal Grid */
2613
+
2614
+ .simple_grid_horiz {
2615
+ display: inline-grid;
2616
+ grid-auto-flow: column;
2617
+ grid-column-gap: 15px;
2618
+ align-items: center;
2619
+ }
2620
+
2621
+ .simple_grid_horiz > div {
2622
+
2623
+ }
2624
+
2625
+ /* My Account */
2626
+
2627
+ .avatar_edit {
2628
+ width: 50px;
2629
+ height: 50px;
2630
+ background-color: var(--background-color);
2631
+ border: 1px solid var(--border-color);
2632
+ border-radius: 8px;
2633
+ cursor: pointer;
2634
+ opacity: 0.95;
2635
+ transition: 0.2s ease all;
2636
+
2637
+ background-repeat: no-repeat;
2638
+ background-position: center center;
2639
+ background-size: contain;
2640
+ }
2641
+ .avatar_edit:hover {
2642
+ /* background-color: var(--box-background-color); */
2643
+ border: 1px solid var(--theme-color-half);
2644
+ box-shadow: 0px 0px 5px var(--border-color);
2645
+ opacity: 1.0;
2646
+ }
2647
+
2648
+ .avatar_edit.disabled {
2649
+ cursor: default;
2650
+ }
2651
+ .avatar_edit.disabled:hover {
2652
+ background-color: var(--background-color);
2653
+ border: 1px solid var(--border-color);
2654
+ box-shadow: none;
2655
+ opacity: 0.95;
2656
+ }
2657
+
2658
+ /* Footer */
2659
+
2660
+ #d_footer {
2661
+ position: fixed;
2662
+ width: 100%;
2663
+ top: 100%;
2664
+ margin-top: -35px;
2665
+ padding-left: 30px;
2666
+ padding-right: 30px;
2667
+ font-size: 11px;
2668
+ cursor: default;
2669
+ color: var(--icon-color);
2670
+ }
2671
+ #d_footer a { color: var(--label-color); }
2672
+ #d_footer a:hover { color: var(--body-text-color); }
2673
+
2674
+ body.sidebar #d_footer, body.relative #d_footer {
2675
+ position: relative;
2676
+ width: auto;
2677
+ top: 0;
2678
+ margin-top: 0px;
2679
+ margin-bottom: 20px;
2680
+ }
2681
+
2682
+ body {
2683
+ padding-bottom: 40px;
2684
+ }
2685
+ body.sidebar, body.relative {
2686
+ padding-bottom: 0;
2687
+ }
2688
+
2689
+ /* Scroll Shadows */
2690
+
2691
+ .scroll_shadows, .sel_dialog_scrollarea, .dialog_box_content.scroll {
2692
+ --shadow: rgba(0, 0, 0, 0.2);
2693
+ --bg: var(--background-color);
2694
+ --bgTrans: color-mix(in srgb, var(--bg) 0%, transparent);
2695
+
2696
+ background:
2697
+ /* Shadow Cover TOP */
2698
+ linear-gradient(
2699
+ var(--bg) 30%,
2700
+ var(--bgTrans)
2701
+ ) center top,
2702
+
2703
+ /* Shadow Cover BOTTOM */
2704
+ linear-gradient(
2705
+ var(--bgTrans),
2706
+ var(--bg) 70%
2707
+ ) center bottom,
2708
+
2709
+ /* Shadow TOP */
2710
+ radial-gradient(
2711
+ farthest-side at 50% 0,
2712
+ var(--shadow),
2713
+ rgba(0, 0, 0, 0)
2714
+ ) center top,
2715
+
2716
+ /* Shadow BOTTOM */
2717
+ radial-gradient(
2718
+ farthest-side at 50% 100%,
2719
+ var(--shadow),
2720
+ rgba(0, 0, 0, 0)
2721
+ ) center bottom;
2722
+
2723
+ background-repeat: no-repeat;
2724
+ background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
2725
+ background-attachment: local, local, scroll, scroll;
2726
+ }
2727
+ body.dark .scroll_shadows, body.dark .sel_dialog_scrollarea {
2728
+ --shadow: rgba(255, 255, 255, 0.15);
2729
+ --bg: var(--background-color);
2730
+ --bgTrans: color-mix(in srgb, var(--bg) 0%, transparent);
2731
+ }
2732
+ body.dark .dialog .scroll_shadows, body.dark .dialog_box_content.scroll {
2733
+ --shadow: rgba(255, 255, 255, 0.15);
2734
+ --bg: var(--box-background-color);
2735
+ --bgTrans: color-mix(in srgb, var(--bg) 0%, transparent);
2736
+ }