@visns-studio/visns-components 5.0.1-8.1 → 5.0.1
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/package.json +1 -3
- package/src/components/crm/AsyncSelect.jsx +15 -121
- package/src/components/crm/DataGrid.jsx +5 -25
- package/src/components/crm/Field.jsx +148 -174
- package/src/components/crm/Form.jsx +28 -41
- package/src/components/crm/MultiSelect.jsx +29 -96
- package/src/components/crm/Navigation.jsx +81 -2
- package/src/components/crm/QrCode.jsx +8 -12
- package/src/components/crm/auth/Login.jsx +1 -9
- package/src/components/crm/auth/Profile.jsx +2 -4
- package/src/components/crm/auth/styles/Login.module.scss +3 -4
- package/src/components/crm/auth/styles/Profile.module.scss +14 -56
- package/src/components/crm/generic/GenericAuth.jsx +2 -5
- package/src/components/crm/generic/GenericDetail.jsx +18 -509
- package/src/components/crm/generic/styles/AuditLog.module.scss +0 -4
- package/src/components/crm/generic/styles/GenericDetail.module.scss +121 -261
- package/src/components/crm/generic/styles/GenericDynamic.module.scss +67 -35
- package/src/components/crm/generic/styles/GenericFormBuilder.module.scss +43 -4
- package/src/components/crm/generic/styles/GenericIndex.module.scss +1 -1
- package/src/components/crm/styles/Autocomplete.module.scss +20 -12
- package/src/components/crm/styles/DataGrid.module.scss +3 -2
- package/src/components/crm/styles/Field.module.scss +13 -19
- package/src/components/crm/styles/Form.module.scss +5 -5
- package/src/components/crm/styles/Navigation.module.scss +61 -11
- package/src/components/crm/styles/QrCode.module.scss +0 -4
- package/src/components/styles/global.css +5 -95
- package/src/components/crm/generic/GenericEditableTable.jsx +0 -407
- package/src/components/crm/generic/styles/GenericEditableTable.module.scss +0 -178
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
position: relative;
|
|
27
27
|
padding: 20px;
|
|
28
28
|
margin: 8px 0;
|
|
29
|
-
box-shadow: 0 4px 0 rgba(var(--primary-rgb), 0.05);
|
|
29
|
+
box-shadow: 0 4px 0 rgba(var(--primary-color-rgb), 0.05);
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
.grid__half {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
position: relative;
|
|
40
40
|
padding: 20px;
|
|
41
41
|
margin: 8px 0;
|
|
42
|
-
box-shadow: 0 4px 0 rgba(var(--primary-rgb), 0.05);
|
|
42
|
+
box-shadow: 0 4px 0 rgba(var(--primary-color-rgb), 0.05);
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
.grid__full {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
position: relative;
|
|
53
53
|
padding: 2px;
|
|
54
54
|
margin: 8px 0;
|
|
55
|
-
box-shadow: 0 4px 0 rgba(var(--primary-rgb), 0.05);
|
|
55
|
+
box-shadow: 0 4px 0 rgba(var(--primary-color-rgb), 0.05);
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
.grid__dashfull {
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
position: relative;
|
|
66
66
|
padding: 20px;
|
|
67
67
|
margin: 8px 0;
|
|
68
|
-
box-shadow: 0 4px 0 rgba(var(--primary-rgb), 0.05);
|
|
68
|
+
box-shadow: 0 4px 0 rgba(var(--primary-color-rgb), 0.05);
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.grid__subrow {
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
padding: 5px;
|
|
85
85
|
margin: 8px 0;
|
|
86
86
|
height: auto;
|
|
87
|
-
box-shadow: 0 4px 0 rgba(var(--primary-rgb), 0.05);
|
|
87
|
+
box-shadow: 0 4px 0 rgba(var(--primary-color-rgb), 0.05);
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
.grid__subnav > ul {
|
|
@@ -136,14 +136,15 @@
|
|
|
136
136
|
|
|
137
137
|
.grid__subcontent {
|
|
138
138
|
flex: 0 1 80%;
|
|
139
|
-
background: var(--
|
|
139
|
+
background: var(--item-color);
|
|
140
140
|
border-radius: var(--br);
|
|
141
|
-
border: 1px solid rgba(var(--
|
|
141
|
+
border: 1px solid rgba(var(--item-color-rgb), 1.15);
|
|
142
142
|
box-sizing: border-box;
|
|
143
143
|
padding: 2px;
|
|
144
144
|
margin: 8px 0;
|
|
145
145
|
height: auto;
|
|
146
146
|
position: relative;
|
|
147
|
+
box-shadow: 0 4px 0 rgba(var(--primary-color-rgb), 0.05);
|
|
147
148
|
}
|
|
148
149
|
|
|
149
150
|
.grid__subcontent h2 {
|
|
@@ -156,10 +157,10 @@
|
|
|
156
157
|
.gridtxt__header {
|
|
157
158
|
width: 100%;
|
|
158
159
|
display: block;
|
|
159
|
-
background: rgba(var(--
|
|
160
|
+
background: rgba(var(--item-color-rgb), 1.05);
|
|
160
161
|
box-sizing: border-box;
|
|
161
162
|
padding: 10px 20px;
|
|
162
|
-
border-radius:
|
|
163
|
+
border-radius: 0;
|
|
163
164
|
margin-bottom: 0;
|
|
164
165
|
font-weight: 700;
|
|
165
166
|
text-align: center;
|
|
@@ -184,15 +185,14 @@
|
|
|
184
185
|
|
|
185
186
|
.gridtxt > ul li {
|
|
186
187
|
flex: 0 0 calc(50% - 10px);
|
|
187
|
-
padding: 0.
|
|
188
|
+
padding: 0.85rem;
|
|
188
189
|
box-sizing: border-box;
|
|
189
|
-
border: 1px solid rgba(var(--primary-rgb), 0.
|
|
190
|
+
border: 1px solid rgba(var(--primary-color-rgb), 0.15);
|
|
190
191
|
color: var(--paragraph-color);
|
|
191
|
-
background: rgba(var(--
|
|
192
|
-
margin:
|
|
192
|
+
background: rgba(var(--tertiary-color-rgb), 0.95);
|
|
193
|
+
margin: 5px;
|
|
193
194
|
border-radius: var(--br);
|
|
194
195
|
line-height: 1.45;
|
|
195
|
-
font-size: 0.85rem;
|
|
196
196
|
}
|
|
197
197
|
|
|
198
198
|
.gridtxt > ul .fw-grid-item {
|
|
@@ -228,15 +228,11 @@
|
|
|
228
228
|
width: 49%;
|
|
229
229
|
padding: 1em;
|
|
230
230
|
box-sizing: border-box;
|
|
231
|
-
border: 1px solid rgba(var(--primary-rgb), 0.15);
|
|
231
|
+
border: 1px solid rgba(var(--primary-color-rgb), 0.15);
|
|
232
232
|
color: var(--paragraph-color);
|
|
233
233
|
background: rgba(#f4f4f4, 0.65);
|
|
234
234
|
margin: 5px;
|
|
235
235
|
border-radius: 5px;
|
|
236
|
-
|
|
237
|
-
p {
|
|
238
|
-
font-size: 0.85rem;
|
|
239
|
-
}
|
|
240
236
|
}
|
|
241
237
|
}
|
|
242
238
|
|
|
@@ -253,12 +249,6 @@
|
|
|
253
249
|
}
|
|
254
250
|
|
|
255
251
|
.dropzone__container {
|
|
256
|
-
padding: 1rem;
|
|
257
|
-
display: flex;
|
|
258
|
-
flex-wrap: wrap;
|
|
259
|
-
flex-direction: column;
|
|
260
|
-
gap: 1rem;
|
|
261
|
-
|
|
262
252
|
> div {
|
|
263
253
|
flex: 1 1 0%;
|
|
264
254
|
display: flex;
|
|
@@ -273,12 +263,11 @@
|
|
|
273
263
|
color: rgb(189, 189, 189);
|
|
274
264
|
outline: currentcolor none medium;
|
|
275
265
|
transition: border 0.24s ease-in-out 0s;
|
|
276
|
-
margin:
|
|
266
|
+
margin: 1em;
|
|
277
267
|
|
|
278
268
|
p {
|
|
279
269
|
padding: 0;
|
|
280
270
|
margin: 0;
|
|
281
|
-
font-size: 1rem;
|
|
282
271
|
}
|
|
283
272
|
}
|
|
284
273
|
}
|
|
@@ -286,35 +275,29 @@
|
|
|
286
275
|
.dropzone__files {
|
|
287
276
|
list-style: none;
|
|
288
277
|
padding: 0;
|
|
289
|
-
margin:
|
|
278
|
+
margin: 1em;
|
|
290
279
|
box-sizing: border-box;
|
|
291
280
|
|
|
292
281
|
li {
|
|
293
282
|
width: 100%;
|
|
294
283
|
display: block;
|
|
295
|
-
background: rgba(var(--
|
|
284
|
+
background: rgba(var(--tertiary-color-rgb), 1.05);
|
|
296
285
|
color: var(--primary-color);
|
|
297
286
|
border-radius: 3px;
|
|
298
287
|
transition: background 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
299
288
|
outline: none;
|
|
300
289
|
cursor: pointer;
|
|
301
290
|
border-radius: 3px;
|
|
302
|
-
padding:
|
|
291
|
+
padding: 1em 2em;
|
|
303
292
|
box-sizing: border-box;
|
|
304
293
|
position: relative;
|
|
305
|
-
border: 1px solid rgba(var(--primary-rgb), 0.15);
|
|
306
|
-
line-height: 1;
|
|
307
|
-
font-size: 0.85rem;
|
|
308
294
|
margin-bottom: 5px;
|
|
309
295
|
|
|
310
|
-
|
|
296
|
+
i {
|
|
311
297
|
position: relative;
|
|
312
|
-
top:
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
stroke-width: 1;
|
|
316
|
-
line-height: 1;
|
|
317
|
-
margin-right: 5px;
|
|
298
|
+
top: 0;
|
|
299
|
+
right: 5px;
|
|
300
|
+
color: rgba(var(--secondary-color-rgb), 1.15);
|
|
318
301
|
}
|
|
319
302
|
|
|
320
303
|
button {
|
|
@@ -326,8 +309,8 @@
|
|
|
326
309
|
z-index: 200;
|
|
327
310
|
cursor: pointer;
|
|
328
311
|
|
|
329
|
-
|
|
330
|
-
font-size:
|
|
312
|
+
i {
|
|
313
|
+
font-size: 1.15em;
|
|
331
314
|
color: var(--primary-color);
|
|
332
315
|
line-height: 1;
|
|
333
316
|
}
|
|
@@ -355,8 +338,8 @@
|
|
|
355
338
|
align-items: center;
|
|
356
339
|
flex-wrap: wrap;
|
|
357
340
|
border-radius: 5px;
|
|
358
|
-
border: 1px solid rgba(var(--primary-rgb), 0.2);
|
|
359
|
-
box-shadow: 0px 0px 20px rgba(var(--primary-rgb), 0.1);
|
|
341
|
+
border: 1px solid rgba(var(--primary-color-rgb), 0.2);
|
|
342
|
+
box-shadow: 0px 0px 20px rgba(var(--primary-color-rgb), 0.1);
|
|
360
343
|
padding: 1.25rem 1.25rem 1.25rem 2rem;
|
|
361
344
|
box-sizing: border-box;
|
|
362
345
|
cursor: pointer;
|
|
@@ -428,26 +411,26 @@
|
|
|
428
411
|
flex-wrap: nowrap;
|
|
429
412
|
align-items: flex-start;
|
|
430
413
|
padding: 0 1.5em;
|
|
414
|
+
}
|
|
431
415
|
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
416
|
+
.oppoverview__box {
|
|
417
|
+
width: auto;
|
|
418
|
+
margin: 0;
|
|
419
|
+
padding: 0 2em;
|
|
420
|
+
border-right: 1px solid rgba(var(--primary-color-rgb), 0.35);
|
|
421
|
+
}
|
|
437
422
|
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
423
|
+
.oppoverview__box:first-child {
|
|
424
|
+
padding-left: 0;
|
|
425
|
+
}
|
|
441
426
|
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
427
|
+
.oppoverview__box p {
|
|
428
|
+
margin: 0;
|
|
429
|
+
}
|
|
445
430
|
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
}
|
|
450
|
-
}
|
|
431
|
+
.oppoverview__box span {
|
|
432
|
+
display: block;
|
|
433
|
+
color: rgba(var(--paragraph-color-rgb), 0.7);
|
|
451
434
|
}
|
|
452
435
|
|
|
453
436
|
.oppstatus {
|
|
@@ -461,96 +444,95 @@
|
|
|
461
444
|
list-style: none;
|
|
462
445
|
padding: 0;
|
|
463
446
|
margin: 0;
|
|
447
|
+
}
|
|
464
448
|
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
&:first-child {
|
|
475
|
-
margin-left: 0;
|
|
476
|
-
border-top-left-radius: 1rem;
|
|
477
|
-
border-bottom-left-radius: 1rem;
|
|
478
|
-
padding-left: 0.625rem;
|
|
479
|
-
|
|
480
|
-
&:before,
|
|
481
|
-
&:after {
|
|
482
|
-
left: 1.125rem;
|
|
483
|
-
}
|
|
484
|
-
}
|
|
449
|
+
.opppath > li {
|
|
450
|
+
position: relative;
|
|
451
|
+
flex: 1;
|
|
452
|
+
margin-left: 0.375rem;
|
|
453
|
+
margin-right: 0.4375rem;
|
|
454
|
+
min-width: 5rem;
|
|
455
|
+
text-align: center;
|
|
456
|
+
background: var(--primary-color);
|
|
457
|
+
}
|
|
485
458
|
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
459
|
+
.opppath > li:first-child {
|
|
460
|
+
margin-left: 0;
|
|
461
|
+
border-top-left-radius: 1rem;
|
|
462
|
+
border-bottom-left-radius: 1rem;
|
|
463
|
+
padding-left: 0.625rem;
|
|
464
|
+
}
|
|
491
465
|
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
}
|
|
466
|
+
.opppath > li:first-child:before,
|
|
467
|
+
.opppath > li:first-child:after {
|
|
468
|
+
left: 1.125rem;
|
|
469
|
+
}
|
|
497
470
|
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
cursor: pointer;
|
|
505
|
-
background: var(--primary-color);
|
|
506
|
-
}
|
|
471
|
+
.opppath > li:last-child {
|
|
472
|
+
margin-right: 0;
|
|
473
|
+
border-top-right-radius: 1rem;
|
|
474
|
+
border-bottom-right-radius: 1rem;
|
|
475
|
+
padding-left: 0.625rem;
|
|
476
|
+
}
|
|
507
477
|
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
}
|
|
478
|
+
.opppath > li:last-child:before,
|
|
479
|
+
.opppath > li:last-child:after {
|
|
480
|
+
right: 1.125rem;
|
|
481
|
+
}
|
|
513
482
|
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
483
|
+
.opppath > li:before,
|
|
484
|
+
.opppath > li:after {
|
|
485
|
+
content: '';
|
|
486
|
+
position: absolute;
|
|
487
|
+
left: -0.35rem;
|
|
488
|
+
right: -0.35rem;
|
|
489
|
+
cursor: pointer;
|
|
490
|
+
background: var(--primary-color);
|
|
491
|
+
}
|
|
519
492
|
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
align-items: center;
|
|
526
|
-
height: 2rem;
|
|
527
|
-
padding: 1.45rem;
|
|
528
|
-
text-decoration: none;
|
|
529
|
-
z-index: 5;
|
|
530
|
-
cursor: pointer;
|
|
531
|
-
color: var(--bg-color);
|
|
532
|
-
line-height: 1;
|
|
493
|
+
.opppath > li:before {
|
|
494
|
+
top: 0;
|
|
495
|
+
height: 1.5rem;
|
|
496
|
+
transform: skew(28deg) translate3d(0, 0, 0);
|
|
497
|
+
}
|
|
533
498
|
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
499
|
+
.opppath > li:after {
|
|
500
|
+
bottom: 0;
|
|
501
|
+
height: 1.5rem;
|
|
502
|
+
transform: skew(-30deg) translate3d(0, 0, 0);
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.opppath > li a {
|
|
506
|
+
position: relative;
|
|
507
|
+
display: flex;
|
|
508
|
+
justify-content: center;
|
|
509
|
+
align-items: center;
|
|
510
|
+
height: 2rem;
|
|
511
|
+
padding: 1.45rem;
|
|
512
|
+
text-decoration: none;
|
|
513
|
+
z-index: 5;
|
|
514
|
+
cursor: pointer;
|
|
515
|
+
color: var(--tertiary-color);
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.opppath > li a svg {
|
|
519
|
+
position: relative;
|
|
520
|
+
top: 2px;
|
|
521
|
+
left: 8px;
|
|
522
|
+
color: rgba(var(--highlight-color-rgb), 0.5);
|
|
541
523
|
}
|
|
542
524
|
|
|
543
525
|
.opp-complete {
|
|
544
|
-
background: var(--
|
|
526
|
+
background: rgba(var(--primary-color-rgb), 0.9);
|
|
527
|
+
}
|
|
545
528
|
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
529
|
+
.opp-complete a {
|
|
530
|
+
color: var(--highlight-color);
|
|
531
|
+
}
|
|
549
532
|
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
}
|
|
533
|
+
.opp-complete:before,
|
|
534
|
+
.opp-complete:after {
|
|
535
|
+
background: rgba(var(--primary-color-rgb), 0.9);
|
|
554
536
|
}
|
|
555
537
|
|
|
556
538
|
.oppdets {
|
|
@@ -578,127 +560,5 @@
|
|
|
578
560
|
.btn:hover {
|
|
579
561
|
color: var(--primary-color);
|
|
580
562
|
background: var(--highlight-color);
|
|
581
|
-
border: 1px solid rgba(var(--highlight-rgb), 1.05);
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
.crmtitle {
|
|
585
|
-
min-height: auto;
|
|
586
|
-
padding: 1rem;
|
|
587
|
-
margin: 0;
|
|
588
|
-
background: white;
|
|
589
|
-
border-radius: var(--br);
|
|
590
|
-
border: 1px solid rgba(var(--primary-rgb), 0.15);
|
|
591
|
-
position: relative;
|
|
592
|
-
display: flex;
|
|
593
|
-
align-items: center;
|
|
594
|
-
justify-content: space-between;
|
|
595
|
-
|
|
596
|
-
h1 {
|
|
597
|
-
font-weight: 700;
|
|
598
|
-
font-size: 1.25rem;
|
|
599
|
-
margin: 0;
|
|
600
|
-
padding: 0;
|
|
601
|
-
line-height: 1;
|
|
602
|
-
|
|
603
|
-
a {
|
|
604
|
-
text-decoration: none;
|
|
605
|
-
color: var(--secondary-color);
|
|
606
|
-
font-weight: 400;
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
svg {
|
|
610
|
-
color: rgba(var(--primary-rgb), 0.5);
|
|
611
|
-
position: relative;
|
|
612
|
-
top: 2px;
|
|
613
|
-
margin: 0 0.5rem;
|
|
614
|
-
max-width: 15px;
|
|
615
|
-
}
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
.titleInfo {
|
|
619
|
-
width: max-content;
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
.titleInfo span {
|
|
623
|
-
font-size: 0.875em;
|
|
624
|
-
color: rgba(var(--primary-rgb), 0.65);
|
|
625
|
-
}
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
.schedulingTable {
|
|
629
|
-
width: 100%;
|
|
630
|
-
border-collapse: collapse;
|
|
631
|
-
margin: 1em 0;
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
.schedulingTable th,
|
|
635
|
-
.schedulingTable td {
|
|
636
|
-
padding: 0.75rem;
|
|
637
|
-
text-align: left;
|
|
638
|
-
border: 1px solid rgba(var(--primary-rgb), 0.1);
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
.schedulingTable th {
|
|
642
|
-
background-color: var(--secondary-color);
|
|
643
|
-
color: var(--item-color);
|
|
644
|
-
font-weight: bold;
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
.schedulingTable td {
|
|
648
|
-
background-color: rgba(var(--primary-rgb), 0.05);
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
.categoryRow {
|
|
652
|
-
background-color: rgba(var(--primary-rgb), 0.1);
|
|
653
|
-
text-align: left;
|
|
654
|
-
font-weight: bold;
|
|
655
|
-
font-size: 1.2rem;
|
|
656
|
-
color: var(--primary-color);
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
.totalRow {
|
|
660
|
-
background-color: rgba(var(--primary-rgb), 0.05);
|
|
661
|
-
font-weight: bold;
|
|
662
|
-
text-align: right;
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
.schedulingTable td input[type='checkbox'] {
|
|
666
|
-
width: 20px !important;
|
|
667
|
-
height: 20px;
|
|
668
|
-
border-radius: 4px;
|
|
669
|
-
background-color: var(--item-color);
|
|
670
|
-
border: 2px solid rgba(var(--primary-rgb), 0.15);
|
|
671
|
-
position: relative;
|
|
672
|
-
cursor: pointer;
|
|
673
|
-
transition: background-color 0.3s, border-color 0.3s;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
.schedulingTable td input[type='checkbox']:checked {
|
|
677
|
-
background-color: var(--primary-color);
|
|
678
|
-
border-color: var(--highlight-color);
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
.schedulingTable td input[type='checkbox']:focus {
|
|
682
|
-
outline: none;
|
|
683
|
-
box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
/* Custom hover effect for better user experience */
|
|
687
|
-
.schedulingTable td input[type='checkbox']:hover {
|
|
688
|
-
background-color: rgba(var(--primary-rgb), 0.1);
|
|
689
|
-
border-color: rgba(var(--primary-rgb), 0.25);
|
|
690
|
-
}
|
|
691
|
-
|
|
692
|
-
.noDataMessage {
|
|
693
|
-
text-align: center;
|
|
694
|
-
color: var(--secondary-color); /* Maintain a clear and neutral color */
|
|
695
|
-
font-size: 1.125em; /* Slightly reduce the font size for a cleaner look */
|
|
696
|
-
padding: 1.5em; /* Adjust padding for better spacing */
|
|
697
|
-
margin: 2em auto; /* Add auto margin for centering */
|
|
698
|
-
background: #f9f9f9; /* Subtle background to match the theme */
|
|
699
|
-
border: 1px solid #ddd; /* Light border for structure */
|
|
700
|
-
border-radius: 6px; /* Slight rounding for a modern feel */
|
|
701
|
-
max-width: 600px; /* Constrain width for a balanced layout */
|
|
702
|
-
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Gentle shadow for depth */
|
|
703
|
-
font-style: italic; /* Optional: Add a subtle font style */
|
|
704
|
-
}
|
|
563
|
+
border: 1px solid rgba(var(--highlight-color-rgb), 1.05);
|
|
564
|
+
}
|