@visns-studio/visns-components 4.0.6 → 4.0.8

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.
@@ -0,0 +1,961 @@
1
+ .grid__row {
2
+ width: 100%;
3
+ display: flex;
4
+ align-items: flex-start;
5
+ flex-wrap: nowrap;
6
+ height: auto;
7
+ }
8
+
9
+ .grid__full {
10
+ width: 100%;
11
+ background: white;
12
+ border-radius: var(--br);
13
+ border: 1px solid var(--border-color);
14
+ box-sizing: border-box;
15
+ overflow: visible;
16
+ position: relative;
17
+ padding: 0;
18
+ margin: 5px;
19
+ }
20
+
21
+ .crmtitle {
22
+ border: none;
23
+ min-height: auto;
24
+ padding: 10px 20px;
25
+ margin: 5px;
26
+ background: var(--item-color);
27
+ border-radius: var(--br);
28
+ border: 1px solid var(--border-color);
29
+ position: relative;
30
+ }
31
+
32
+ .crmtitle h1 {
33
+ font-weight: 700;
34
+ font-size: 1.25em;
35
+ margin: 0;
36
+ padding: 0.25rem 0;
37
+ color: var(--paragraph-color);
38
+ text-transform: capitalize;
39
+ }
40
+
41
+ .crmtitle h1 a {
42
+ text-decoration: none;
43
+ color: var(--secondary-color-dark);
44
+ font-weight: 300;
45
+ }
46
+
47
+ .crmtitle h1 svg {
48
+ color: rgba(
49
+ var(--primary-color-r),
50
+ var(--primary-color-g),
51
+ var(--primary-color-b),
52
+ 0.85
53
+ );
54
+ position: relative;
55
+ top: 2px;
56
+ margin: 0 0.25rem;
57
+ }
58
+
59
+ .grid__subrow {
60
+ width: 100%;
61
+ display: flex;
62
+ flex-wrap: wrap;
63
+ height: auto;
64
+ }
65
+
66
+ .grid__subnav {
67
+ flex: 1;
68
+ background: white;
69
+ border-radius: var(--br);
70
+ border: 1px solid var(--border-color);
71
+ box-sizing: border-box;
72
+ padding: 5px;
73
+ margin: 5px;
74
+ height: auto;
75
+ }
76
+
77
+ .grid__subnav ul {
78
+ width: 100%;
79
+ list-style: none;
80
+ padding: 0;
81
+ margin: 0;
82
+ display: flex;
83
+ flex-wrap: wrap;
84
+ }
85
+
86
+ .grid__subnav ul li {
87
+ width: 100%;
88
+ margin-bottom: 3px;
89
+ }
90
+
91
+ .grid__subnav ul li a {
92
+ width: 100%;
93
+ padding: 8px 20px;
94
+ box-sizing: border-box;
95
+ display: block;
96
+ text-decoration: none;
97
+ background: var(--border-color);
98
+ color: var(--secondary-color);
99
+ border-radius: var(--br);
100
+ transition: background 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
101
+ outline: none;
102
+ cursor: pointer;
103
+ }
104
+
105
+ .grid__subnav ul li:hover > a {
106
+ background: var(--primary-color);
107
+ color: var(--secondary-color);
108
+ }
109
+
110
+ .grid__subnav ul li .subactive {
111
+ font-weight: 700;
112
+ background: var(--primary-color);
113
+ color: var(--secondary-color);
114
+ }
115
+
116
+ .grid__subnav ul li .subactivechildren {
117
+ font-weight: 700;
118
+ }
119
+
120
+ .grid__subnav ul li ul {
121
+ list-style: none;
122
+ margin: 0;
123
+ padding-left: 1rem;
124
+ background: var(--item-color);
125
+ }
126
+
127
+ .grid__subnav ul li ul li {
128
+ width: 100%;
129
+ margin-bottom: 1px;
130
+ }
131
+
132
+ .grid__subnav ul li ul li a {
133
+ width: 100%;
134
+ padding: 8px 20px;
135
+ box-sizing: border-box;
136
+ display: block;
137
+ text-decoration: none;
138
+ background: transparent;
139
+ color: var(--secondary-color);
140
+ border-radius: var(--br);
141
+ transition: background 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
142
+ outline: none;
143
+ cursor: pointer;
144
+ }
145
+
146
+ .grid__subnav ul li ul li a:hover {
147
+ background: var(--border-color);
148
+ color: var (--secondary-color);
149
+ }
150
+
151
+ .grid__subcontent {
152
+ flex: 0 1 85%;
153
+ background: white;
154
+ border-radius: var(--br);
155
+ border: 1px solid var(--border-color);
156
+ box-sizing: border-box;
157
+ padding: 0;
158
+ margin: 5px;
159
+ height: auto;
160
+ position: relative;
161
+ }
162
+
163
+ .grid__subcontent h2 {
164
+ color: var(--primary-color);
165
+ font-size: 1.35em;
166
+ padding: 0;
167
+ margin: 0 0 30px 0;
168
+ }
169
+
170
+ .gridtxt__header {
171
+ width: 100%;
172
+ display: block;
173
+ background: var(--border-color);
174
+ box-sizing: border-box;
175
+ padding: 10px 20px;
176
+ border-top-left-radius: var(--br);
177
+ border-top-right-radius: var(--br);
178
+ margin-bottom: 0;
179
+ font-weight: 700;
180
+ text-align: center;
181
+ color: var(--paragraph-color);
182
+ position: relative;
183
+ }
184
+
185
+ .gridtxt__header span {
186
+ font-weight: 700;
187
+ }
188
+
189
+ .gridtxt__header .btn {
190
+ font-size: 0.85em;
191
+ padding: 0.25em;
192
+ display: flex;
193
+ flex-wrap: nowrap;
194
+ align-items: center;
195
+ float: left;
196
+ position: relative;
197
+ top: -4px;
198
+ }
199
+
200
+ .gridtxt__header .btn svg {
201
+ max-width: 15px;
202
+ margin-right: 5px;
203
+ }
204
+
205
+ .formcontainer {
206
+ width: 100%;
207
+ }
208
+
209
+ .modalForm {
210
+ width: 100%;
211
+ display: flex;
212
+ align-items: flex-start;
213
+ flex-wrap: wrap;
214
+ }
215
+
216
+ .formItem {
217
+ width: 50%;
218
+ padding: 0.35em;
219
+ position: relative;
220
+ box-sizing: border-box;
221
+ }
222
+
223
+ .formItem .fi__label {
224
+ position: relative;
225
+ display: block;
226
+ }
227
+
228
+ .formItem textarea,
229
+ .formItem select,
230
+ .formItem
231
+ input[type]:not([type='search']):not([type='url']):not([type='hidden']):not(
232
+ [type='checkbox']
233
+ ):not(.inovua-react-toolkit-combo-box__input):not(
234
+ .inovua-react-toolkit-date-input__input
235
+ ):not(.inovua-react-toolkit-text-input__input):not(
236
+ .inovua-react-toolkit-numeric-input__input
237
+ ) {
238
+ background: var(--item-color);
239
+ border-radius: var(--br);
240
+ border: 1px solid transparent;
241
+ padding: 1rem;
242
+ outline: none;
243
+ width: 100%;
244
+ box-sizing: border-box;
245
+ color: var(--paragraph-color);
246
+ transition: box-shadow 0.15s linear;
247
+ }
248
+
249
+ .formItem textarea:hover,
250
+ .formItem select:hover,
251
+ .formItem
252
+ input[type]:not([type='search']):not([type='url']):not([type='hidden']):not(
253
+ [type='checkbox']
254
+ ):not(.inovua-react-toolkit-combo-box__input):not(
255
+ .inovua-react-toolkit-date-input__input
256
+ ):not(.inovua-react-toolkit-numeric-input__input):hover {
257
+ border: 1px solid rgba(var(--highlight-color), 0.85);
258
+ transition: border 0.15s linear;
259
+ }
260
+
261
+ .formItem textarea:focus,
262
+ .formItem select:focus,
263
+ .formItem
264
+ input[type]:not([type='search']):not([type='url']):not([type='hidden']):not(
265
+ [type='checkbox']
266
+ ):not(.inovua-react-toolkit-combo-box__input):not(
267
+ .inovua-react-toolkit-date-input__input
268
+ ):not(.inovua-react-toolkit-numeric-input__input):focus {
269
+ border: 1px solid rgba(var(--highlight-color), 0.85);
270
+ }
271
+
272
+ input[type='file'] {
273
+ background: var(--item-color) !important;
274
+ border-radius: var (--br) !important;
275
+ border: 1px solid transparent !important;
276
+ padding: 0.8rem !important;
277
+ outline: none !important;
278
+ width: 100% !important;
279
+ box-sizing: border-box !important;
280
+ color: var(--paragraph-color) !important;
281
+ transition: box-shadow 0.15s linear !important;
282
+ }
283
+
284
+ input[type='file']:focus {
285
+ border: 1px solid var(--highlight-color);
286
+ }
287
+
288
+ input[type='file']:hover {
289
+ border: 1px solid var(--highlight-color);
290
+ }
291
+
292
+ .formBuilderItem {
293
+ width: 25%;
294
+ padding: 0.35em;
295
+ position: relative;
296
+ box-sizing: border-box;
297
+ }
298
+
299
+ .formBuilderItem .fi__label {
300
+ position: relative;
301
+ display: block;
302
+ }
303
+
304
+ .fi__span {
305
+ position: absolute;
306
+ transition: all 200ms;
307
+ opacity: 0.8;
308
+ left: 0;
309
+ padding: 19px 20px;
310
+ transform-origin: top left;
311
+ cursor: text;
312
+ }
313
+
314
+ .fi__spancheckbox {
315
+ display: inline-block;
316
+ margin-bottom: 8px;
317
+ }
318
+
319
+ .fi__toggle {
320
+ width: max-content;
321
+ padding: 0px 10px 0px 0;
322
+ box-sizing: border-box;
323
+ display: inline;
324
+ }
325
+
326
+ .fi__toggletxt {
327
+ position: relative;
328
+ left: 5px;
329
+ font-size: 0.95em;
330
+ top: -5px;
331
+ }
332
+
333
+ .fi__optionscontainer {
334
+ display: flex;
335
+ flex-wrap: wrap;
336
+ gap: 10px;
337
+ margin-top: 8px;
338
+ }
339
+
340
+ .fi__checkboxcontainer {
341
+ display: flex;
342
+ align-items: center;
343
+ }
344
+
345
+ .fi__customcheckbox {
346
+ margin-right: 5px;
347
+ }
348
+
349
+ .fi__checkboxlabel {
350
+ user-select: none;
351
+ }
352
+
353
+ .qtrBuilderItem {
354
+ flex-basis: 25%;
355
+ }
356
+
357
+ .halfBuilderItem {
358
+ flex-basis: 50%;
359
+ }
360
+
361
+ .fwBuilderItem {
362
+ flex-basis: 100%;
363
+ }
364
+
365
+ input:not(:placeholder-shown) + .fi__span,
366
+ textarea:not(:placeholder-shown) + .fi__span,
367
+ select:not(:placeholder-shown) + .fi__span {
368
+ transform: translateY(-40%) translateX(10px) scale(0.75);
369
+ opacity: 1;
370
+ padding: 0 4px;
371
+ background: var(--tertiary-color);
372
+ font-weight: 300;
373
+ border-radius: var(--br);
374
+ }
375
+
376
+ .prefocus {
377
+ transform: translateY(-40%) translateX(10px) scale(0.75) !important;
378
+ opacity: 1 !important;
379
+ padding: 0 4px !important;
380
+ background: var(--tertiary-color) !important;
381
+ z-index: 500;
382
+ font-weight: 300;
383
+ border-radius: var(--br);
384
+ top: 0;
385
+ }
386
+ /* Modal class */
387
+ .modalwrap {
388
+ background: var(--tertiary-color);
389
+ border-radius: 3px;
390
+ overflow: visible;
391
+ border-top-left-radius: var(--br);
392
+ border-top-right-radius: var(--br);
393
+ }
394
+
395
+ .modal {
396
+ width: 100%;
397
+ position: relative;
398
+ }
399
+
400
+ .modal__header {
401
+ width: 100%;
402
+ background: var(--primary-color);
403
+ border: 2px solid darken(var(--primary-color), 5%);
404
+ border-top-left-radius: var(--br);
405
+ border-top-right-radius: var(--br);
406
+ box-sizing: border-box;
407
+ }
408
+
409
+ .modal__header h1 {
410
+ color: var(--secondary-color);
411
+ margin: 0;
412
+ padding: 0.75em 0.75em;
413
+ font-size: 1.15em;
414
+ }
415
+
416
+ .modal__close {
417
+ width: max-content;
418
+ position: absolute;
419
+ right: 5px;
420
+ top: 5px;
421
+ box-sizing: border-box;
422
+ background: darken(var(--primary-color), 8%);
423
+ cursor: pointer;
424
+ padding: 8px 8px;
425
+ margin: 0;
426
+ outline: none;
427
+ border: none;
428
+ border-radius: var(--br);
429
+ display: block;
430
+ line-height: 1;
431
+ }
432
+
433
+ .modal__close svg {
434
+ color: var(--secondary-color);
435
+ display: block;
436
+ }
437
+
438
+ .modal__content {
439
+ width: 100%;
440
+ position: relative;
441
+ padding: 0.25rem;
442
+ box-sizing: border-box;
443
+ border-top-left-radius: var(--br);
444
+ border-top-right-radius: var(--br);
445
+ }
446
+
447
+ .modal__content .btn {
448
+ background: var(--primary-color);
449
+ border: 1px solid darken(var(--primary-color), 5%);
450
+ }
451
+
452
+ .modal__content .btn:hover {
453
+ background: var(--secondary-color);
454
+ color: var(--tertiary-color);
455
+ }
456
+
457
+ /* Adding btn class */
458
+ .btn {
459
+ width: max-content;
460
+ display: inline-block;
461
+ position: relative;
462
+ padding: 0.65rem 1rem;
463
+ cursor: pointer;
464
+ font-size: 1rem;
465
+ color: var(--secondary-color);
466
+ text-decoration: none;
467
+ overflow: hidden;
468
+ background: var(--primary-color);
469
+ border: 1px solid darken(var(--primary-color), 10%);
470
+ border-radius: var(--br);
471
+ outline: none;
472
+ transition: all 0.2s cubic-bezier(0.85, 0, 0.15, 1) 0s;
473
+ }
474
+
475
+ .btn:hover {
476
+ color: var(--tertiary-color);
477
+ background: var(--secondary-color);
478
+ border: 1px solid darken(var(--secondary-color), 10%);
479
+ }
480
+
481
+ /* Adding polActions style to the module.css */
482
+ .polActions {
483
+ position: fixed;
484
+ bottom: 20px;
485
+ right: 20px;
486
+ width: auto;
487
+
488
+ button {
489
+ display: block;
490
+ float: left;
491
+ padding: 0.65em 1em;
492
+ margin: 0 0.25em;
493
+ }
494
+ }
495
+
496
+ .fwItem {
497
+ flex-basis: 100%;
498
+ }
499
+
500
+ .lastItem .btn {
501
+ width: 100%;
502
+ }
503
+
504
+ .inputError {
505
+ border-color: red !important;
506
+ }
507
+
508
+ .AutocompletePlace {
509
+ position: relative;
510
+ }
511
+
512
+ .AutocompletePlace svg {
513
+ position: absolute;
514
+ right: 0.5em;
515
+ top: 0.5em;
516
+ color: var(--paragraph-color);
517
+ cursor: pointer;
518
+ }
519
+
520
+ .AutocompletePlace .toggleActive {
521
+ color: var(--highlight-color);
522
+ }
523
+
524
+ .AutocompletePlace-input {
525
+ padding: 0.65rem 3rem 0.65rem 0.95rem !important;
526
+ height: 51.5px;
527
+ }
528
+
529
+ .AutocompletePlace-results {
530
+ position: absolute;
531
+ background-color: white;
532
+ padding: 0;
533
+ margin: 0;
534
+ border: 1px solid rgba(var(--primary-color), 0.25);
535
+ border-radius: var(--br);
536
+ overflow: hidden;
537
+ z-index: 999;
538
+ }
539
+
540
+ .AutocompletePlace-items {
541
+ list-style: none;
542
+ border-bottom: 1px solid rgba(var(--primary-color), 0.1);
543
+ cursor: pointer;
544
+ padding: 10px 10px;
545
+ }
546
+
547
+ .AutocompletePlace-items:hover {
548
+ background-color: rgba(var(--paragraph-color), 0.065);
549
+ }
550
+
551
+ .react-datepicker-wrapper {
552
+ width: 100% !important;
553
+ }
554
+
555
+ .react-datepicker-popper {
556
+ z-index: 999 !important;
557
+ }
558
+
559
+ .react-datepicker__close-icon:after {
560
+ background-color: rgba(var(--primary-color), 0.45) !important;
561
+ font-size: 13px !important;
562
+ }
563
+
564
+ .react-datepicker__close-icon:hover:after {
565
+ background-color: rgba(var(--primary-color), 1) !important;
566
+ }
567
+
568
+ .formbreak {
569
+ display: block;
570
+ width: 100%;
571
+ padding: 1em;
572
+ background: rgba(var(--primary-color), 0.95);
573
+ border-radius: 3px;
574
+ box-sizing: border-box;
575
+ border: 2px solid darken(var(--primary-color), 10%);
576
+ }
577
+
578
+ .formbreak span {
579
+ font-size: 0.95em;
580
+ color: var(--secondary-color);
581
+ }
582
+
583
+ .dropzone__container > div {
584
+ flex: 1 1 0%;
585
+ display: flex;
586
+ flex-direction: column;
587
+ align-items: center;
588
+ padding: 30px;
589
+ border-width: 2px;
590
+ border-radius: 2px;
591
+ border-color: rgb(238, 238, 238);
592
+ border-style: dashed;
593
+ background-color: rgb(250, 250, 250);
594
+ color: rgb(189, 189, 189);
595
+ outline: currentcolor none medium;
596
+ transition: border 0.24s ease-in-out 0s;
597
+ margin: 1em;
598
+ }
599
+
600
+ .dropzone__container p {
601
+ padding: 0;
602
+ margin: 0;
603
+ }
604
+
605
+ .dropzone__files {
606
+ list-style: none;
607
+ padding: 0;
608
+ margin: 1em;
609
+ box-sizing: border-box;
610
+ }
611
+
612
+ .dropzone__files li {
613
+ width: 100%;
614
+ display: block;
615
+ background: darken(var(--tertiary-color), 5%);
616
+ color: var(--primary-color);
617
+ border-radius: 3px;
618
+ transition: background 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
619
+ outline: none;
620
+ cursor: pointer;
621
+ border-radius: 3px;
622
+ padding: 1em 2em;
623
+ box-sizing: border-box;
624
+ position: relative;
625
+ margin-bottom: 5px;
626
+ }
627
+
628
+ .dropzone__files li:hover {
629
+ background: lighten(var(--secondary-color), 35%);
630
+ }
631
+
632
+ .dropzone__files li i {
633
+ position: relative;
634
+ top: 0;
635
+ right: 5px;
636
+ color: darken(var(--secondary-color), 15%);
637
+ }
638
+
639
+ .dropzone__files li button {
640
+ position: relative;
641
+ float: right;
642
+ background: none;
643
+ outline: none;
644
+ border: none;
645
+ z-index: 200;
646
+ cursor: pointer;
647
+ }
648
+
649
+ .dropzone__files li button i {
650
+ font-size: 1.15em;
651
+ color: var(--primary-color);
652
+ line-height: 1;
653
+ }
654
+
655
+ .ql-container {
656
+ height: 300px !important;
657
+ }
658
+
659
+ .visns__ms input:hover {
660
+ box-shadow: none !important;
661
+ transition: box-shadow 0.15s linear !important;
662
+ }
663
+
664
+ .visns__ms input:focus {
665
+ box-shadow: none !important;
666
+ }
667
+
668
+ /* Table Styles */
669
+
670
+ .contentTable {
671
+ width: 100%;
672
+ border-collapse: collapse;
673
+ margin: 0 auto;
674
+ font-size: 1em;
675
+ border-radius: var(--br) var(--br) 0 0;
676
+ overflow: hidden;
677
+ border: none;
678
+ border-spacing: 0;
679
+ box-sizing: border-box;
680
+ }
681
+
682
+ .contentTable thead {
683
+ display: table-row-group;
684
+ }
685
+
686
+ .contentTable thead tr {
687
+ background: var(--table-color);
688
+ color: var(--primary-color);
689
+ text-align: left;
690
+ font-weight: 700;
691
+ text-transform: capitalize;
692
+ font-size: 1em;
693
+ }
694
+
695
+ .contentTable .filterRow th {
696
+ padding: 0;
697
+ }
698
+
699
+ .contentTable th,
700
+ .contentTable td {
701
+ font-size: 0.95em;
702
+ padding: 8px 15px;
703
+ color: var(--paragraph-color);
704
+ border-right: 1px solid var(--table-border);
705
+ line-height: 1;
706
+ border-spacing: 0;
707
+ border-collapse: collapse;
708
+ }
709
+
710
+ .contentTable th:last-of-type,
711
+ .contentTable td:last-of-type,
712
+ .contentTable th:last-child,
713
+ .contentTable td:last-child {
714
+ border-right: none;
715
+ }
716
+
717
+ .contentTable td .tdActions {
718
+ width: 100%;
719
+ display: flex;
720
+ flex-wrap: nowrap;
721
+ justify-content: flex-start;
722
+ align-items: center;
723
+ }
724
+
725
+ .contentTable td .tdAction {
726
+ background: #f0f0f0;
727
+ display: block;
728
+ line-height: 1;
729
+ padding: 0.05rem;
730
+ border-radius: var(--br);
731
+ margin: 0 0.25rem;
732
+ }
733
+
734
+ .contentTable tbody tr {
735
+ border-bottom: 1px solid var(--table-border);
736
+ cursor: pointer;
737
+ background: var(--tertiary-color);
738
+ }
739
+
740
+ .contentTable tbody tr:nth-of-type(even) {
741
+ background: darken(var(--secondary-color), 2%);
742
+ }
743
+
744
+ .gridHeaders th {
745
+ background: var(--primary-color);
746
+ color: var(--secondary-color);
747
+ font-weight: 700;
748
+ font-size: 0.95em;
749
+ border-right: 2px solid lighten(var(--primary-color), 10%);
750
+ position: relative;
751
+ background-clip: padding-box;
752
+ }
753
+
754
+ .gridHeaders th:last-of-type,
755
+ .gridHeaders th:last-child {
756
+ border-right: none;
757
+ }
758
+
759
+ .gridHeaders th button {
760
+ width: max-content;
761
+ display: block;
762
+ background: none;
763
+ border: none;
764
+ padding: 0;
765
+ margin: 0;
766
+ outline: none;
767
+ float: right;
768
+ height: 16px;
769
+ }
770
+
771
+ .gridHeaders th button > svg {
772
+ color: lighten(var(--highlight-color), 20%);
773
+ }
774
+
775
+ .pagination {
776
+ width: 100%;
777
+ list-style: none;
778
+ text-align: center;
779
+ padding: 0;
780
+ margin: 10px 0;
781
+ font-size: 98%;
782
+ }
783
+
784
+ .pagination li {
785
+ display: inline-block;
786
+ background: var(--tertiary-color);
787
+ border: 1px solid var(--border-color);
788
+ margin: 0 0 0 5px;
789
+ border-radius: 3px;
790
+ padding: 7px;
791
+ }
792
+
793
+ .pagination li:first-of-type {
794
+ margin-left: 0px;
795
+ }
796
+
797
+ .pagination li a {
798
+ display: block;
799
+ padding: 0;
800
+ color: var(--paragraph-color);
801
+ cursor: pointer;
802
+ }
803
+
804
+ .pagination li a:hover {
805
+ background: #f9fdff;
806
+ }
807
+
808
+ .pagination li input {
809
+ width: 60px;
810
+ padding: 2px;
811
+ }
812
+
813
+ .pagination .active {
814
+ background: #f0f4f7 !important;
815
+ }
816
+
817
+ /* Drag Item Styling */
818
+ .sortlist {
819
+ width: 100%;
820
+ display: grid;
821
+ grid-gap: 0.5rem;
822
+ grid-template-columns: repeat(4, 1fr);
823
+ box-sizing: border-box;
824
+ padding: 0;
825
+ margin: 0;
826
+ list-style: none;
827
+ }
828
+
829
+ .sortlist li {
830
+ display: flex;
831
+ justify-content: center;
832
+ align-items: center;
833
+ flex-wrap: wrap;
834
+ border-radius: 5px;
835
+ border: 1px solid
836
+ rgba(
837
+ var(--primary-color-r),
838
+ var(--primary-color-g),
839
+ var(--primary-color-b),
840
+ 0.2
841
+ );
842
+ box-shadow: 0px 0px 20px
843
+ rgba(
844
+ var(--primary-color-r),
845
+ var(--primary-color-g),
846
+ var(--primary-color-b),
847
+ 0.1
848
+ );
849
+ padding: 1.25rem 1.25rem 1.25rem 2rem;
850
+ box-sizing: border-box;
851
+ cursor: pointer;
852
+ list-style: none;
853
+ position: relative;
854
+ color: var(--paragraph-color);
855
+ user-select: none;
856
+ }
857
+
858
+ .sortlist li svg {
859
+ width: 100%;
860
+ max-width: 18px;
861
+ position: absolute;
862
+ left: 5px;
863
+ }
864
+
865
+ .sortlist li .delete {
866
+ width: 50px;
867
+ position: relative;
868
+ height: 50px;
869
+ margin-left: auto;
870
+ border-radius: 5px;
871
+ overflow: hidden;
872
+ }
873
+
874
+ .sortlist li .delete img {
875
+ display: block;
876
+ object-fit: cover;
877
+ height: 100%;
878
+ width: 100%;
879
+ overflow: hidden;
880
+ }
881
+
882
+ .dragitem {
883
+ list-style: none;
884
+ display: flex;
885
+ justify-content: center;
886
+ align-items: center;
887
+ flex-wrap: wrap;
888
+ border-radius: 5px;
889
+ border: 1px solid
890
+ rgba(
891
+ var(--primary-color-r),
892
+ var(--primary-color-g),
893
+ var(--primary-color-b),
894
+ 0.2
895
+ );
896
+ box-shadow: 0px 0px 30px
897
+ rgba(
898
+ var(--primary-color-r),
899
+ var(--primary-color-g),
900
+ var(--primary-color-b),
901
+ 0.25
902
+ );
903
+ padding: 1.25rem 1.25rem 1.25rem 2rem;
904
+ box-sizing: border-box;
905
+ cursor: grab;
906
+ color: var(--paragraph-color);
907
+ }
908
+
909
+ .dragitem svg {
910
+ width: 100%;
911
+ max-width: 18px;
912
+ position: absolute;
913
+ left: 5px;
914
+ top: 5px;
915
+ }
916
+
917
+ .dragitem .delete {
918
+ display: none;
919
+ }
920
+
921
+ .dragitem .sortimg {
922
+ width: 50px;
923
+ position: relative;
924
+ height: 50px;
925
+ margin-left: auto;
926
+ border-radius: 5px;
927
+ overflow: hidden;
928
+ }
929
+
930
+ .dragitem .sortimg img {
931
+ display: block;
932
+ object-fit: cover;
933
+ height: 100%;
934
+ width: 100%;
935
+ overflow: hidden;
936
+ }
937
+
938
+ /* Signature Styling */
939
+
940
+ .signButton {
941
+ background: var(--primary-color);
942
+ color: var(--secondary-color);
943
+ padding: 0.5rem 1rem;
944
+ border: none;
945
+ border-radius: var(--br);
946
+ cursor: pointer;
947
+ transition: background 0.3s;
948
+ }
949
+
950
+ .signButton:hover {
951
+ background: var(--secondary-color);
952
+ color: var(--primary-color);
953
+ }
954
+
955
+ .signaturePlaceholder {
956
+ margin-top: 1rem; /* Add margin to prevent overlap */
957
+ border: 1px solid var(--border-color);
958
+ border-radius: var(--br);
959
+ padding: 10px;
960
+ background: var(--item-color);
961
+ }