@bagelink/vue 0.0.694 → 0.0.702
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/dist/components/Btn.vue.d.ts +1 -1
- package/dist/components/Btn.vue.d.ts.map +1 -1
- package/dist/components/ListItem.vue.d.ts +7 -0
- package/dist/components/ListItem.vue.d.ts.map +1 -1
- package/dist/components/ListView.vue.d.ts.map +1 -1
- package/dist/components/TableSchema.vue.d.ts.map +1 -1
- package/dist/components/form/BglForm.vue.d.ts +6 -5
- package/dist/components/form/BglForm.vue.d.ts.map +1 -1
- package/dist/components/form/BglMultiStepForm.vue.d.ts +82 -0
- package/dist/components/form/BglMultiStepForm.vue.d.ts.map +1 -0
- package/dist/components/form/index.d.ts +1 -0
- package/dist/components/form/index.d.ts.map +1 -1
- package/dist/components/form/inputs/TelInput.vue.d.ts +3 -3
- package/dist/components/form/inputs/TelInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
- package/dist/components/layout/TabsNav.vue.d.ts +4 -0
- package/dist/components/layout/TabsNav.vue.d.ts.map +1 -1
- package/dist/index.cjs +281 -137
- package/dist/index.mjs +282 -138
- package/dist/style.css +589 -426
- package/dist/types/BagelForm.d.ts +1 -0
- package/dist/types/BagelForm.d.ts.map +1 -1
- package/dist/utils/BagelFormUtils.d.ts +346 -0
- package/dist/utils/BagelFormUtils.d.ts.map +1 -1
- package/package.json +13 -13
- package/src/components/Btn.vue +4 -1
- package/src/components/ListItem.vue +54 -2
- package/src/components/ListView.vue +0 -38
- package/src/components/TableSchema.vue +1 -2
- package/src/components/form/BglForm.vue +13 -15
- package/src/components/form/BglMultiStepForm.vue +121 -0
- package/src/components/form/index.ts +1 -0
- package/src/components/form/inputs/FileUploadURL.vue +2 -0
- package/src/components/form/inputs/SelectInput.vue +2 -2
- package/src/components/form/inputs/TelInput.vue +0 -1
- package/src/components/form/inputs/TextInput.vue +0 -1
- package/src/components/layout/TabsNav.vue +64 -1
- package/src/styles/appearance.css +121 -40
- package/src/styles/inputs.css +21 -13
- package/src/styles/layout.css +97 -84
- package/src/styles/mobilLayout.css +181 -168
- package/src/types/BagelForm.ts +1 -0
- package/src/utils/BagelFormUtils.ts +29 -1
package/dist/style.css
CHANGED
|
@@ -254,19 +254,19 @@
|
|
|
254
254
|
}
|
|
255
255
|
}
|
|
256
256
|
|
|
257
|
-
a[data-v-
|
|
257
|
+
a[data-v-d2db0ee8] {
|
|
258
258
|
text-decoration: none;
|
|
259
259
|
}
|
|
260
|
-
.loading[data-v-
|
|
260
|
+
.loading[data-v-d2db0ee8] {
|
|
261
261
|
border: 1px solid var(--bgl-white);
|
|
262
262
|
border-bottom: 2px solid var(--bgl-white);
|
|
263
|
-
animation: spin-
|
|
263
|
+
animation: spin-d2db0ee8 1s linear infinite;
|
|
264
264
|
border-radius: 100px;
|
|
265
265
|
width: 1rem;
|
|
266
266
|
height: 1rem;
|
|
267
267
|
margin: auto;
|
|
268
268
|
}
|
|
269
|
-
@keyframes spin-
|
|
269
|
+
@keyframes spin-d2db0ee8 {
|
|
270
270
|
0% {
|
|
271
271
|
transform: rotate(0deg);
|
|
272
272
|
}
|
|
@@ -274,7 +274,7 @@ a[data-v-26f1062f] {
|
|
|
274
274
|
transform: rotate(360deg);
|
|
275
275
|
}
|
|
276
276
|
}
|
|
277
|
-
.bgl_btn-icon[data-v-
|
|
277
|
+
.bgl_btn-icon[data-v-d2db0ee8] {
|
|
278
278
|
height: var(--btn-height);
|
|
279
279
|
width: var(--btn-height);
|
|
280
280
|
border-radius: 100%;
|
|
@@ -284,102 +284,105 @@ a[data-v-26f1062f] {
|
|
|
284
284
|
flex-shrink: 0;
|
|
285
285
|
transition: var(--bgl-transition);
|
|
286
286
|
}
|
|
287
|
-
.bgl_btn[data-v-
|
|
287
|
+
.bgl_btn[data-v-d2db0ee8] {
|
|
288
288
|
padding-left: var(--btn-padding);
|
|
289
289
|
padding-right: var(--btn-padding);
|
|
290
290
|
transition: var(--bgl-transition);
|
|
291
291
|
text-decoration: none;
|
|
292
292
|
}
|
|
293
|
-
.bgl_btn[disabled="true"][data-v-
|
|
293
|
+
.bgl_btn[disabled="true"][data-v-d2db0ee8] {
|
|
294
294
|
opacity: 0.5;
|
|
295
295
|
cursor: not-allowed;
|
|
296
296
|
}
|
|
297
|
-
.bgl_btn-flex[data-v-
|
|
297
|
+
.bgl_btn-flex[data-v-d2db0ee8] {
|
|
298
298
|
display: flex;
|
|
299
299
|
align-items: center;
|
|
300
300
|
gap: 0.5rem;
|
|
301
301
|
justify-content: center;
|
|
302
302
|
}
|
|
303
|
-
.bgl_btn .bgl_.bgl_icon-font[data-v-
|
|
303
|
+
.bgl_btn .bgl_.bgl_icon-font[data-v-d2db0ee8] {
|
|
304
304
|
font-size: calc(var(--input-font-size) * 1.3);
|
|
305
305
|
}
|
|
306
|
-
.bgl_btn[data-v-
|
|
307
|
-
.bgl_btn-icon[data-v-
|
|
308
|
-
background-color: var(--
|
|
309
|
-
color: var(--
|
|
306
|
+
.bgl_btn[data-v-d2db0ee8],
|
|
307
|
+
.bgl_btn-icon[data-v-d2db0ee8] {
|
|
308
|
+
background-color: var(--e58d23c4);
|
|
309
|
+
color: var(--6cbd790e);
|
|
310
310
|
}
|
|
311
|
-
.bgl_btn[data-v-
|
|
312
|
-
.bgl_btn-icon[data-v-
|
|
311
|
+
.bgl_btn[data-v-d2db0ee8]:hover,
|
|
312
|
+
.bgl_btn-icon[data-v-d2db0ee8]:hover {
|
|
313
313
|
filter: var(--bgl-hover-filter);
|
|
314
314
|
}
|
|
315
|
-
.bgl_btn[data-v-
|
|
316
|
-
.bgl_btn-icon[data-v-
|
|
315
|
+
.bgl_btn[data-v-d2db0ee8]:active,
|
|
316
|
+
.bgl_btn-icon[data-v-d2db0ee8]:active {
|
|
317
317
|
filter: var(--bgl-active-filter);
|
|
318
318
|
}
|
|
319
|
-
.bgl_btn.bgl_flatBtn[data-v-
|
|
319
|
+
.bgl_btn.bgl_flatBtn[data-v-d2db0ee8] {
|
|
320
320
|
padding-left: var(--btn-padding);
|
|
321
321
|
padding-right: var(--btn-padding);
|
|
322
322
|
background: transparent;
|
|
323
323
|
}
|
|
324
|
-
.bgl_btn-icon.bgl_flatBtn[data-v-
|
|
324
|
+
.bgl_btn-icon.bgl_flatBtn[data-v-d2db0ee8] {
|
|
325
325
|
background: transparent;
|
|
326
326
|
}
|
|
327
|
-
.bgl_btn.bgl_flatBtn[data-v-
|
|
328
|
-
.bgl_btn-icon.bgl_flatBtn[data-v-
|
|
327
|
+
.bgl_btn.bgl_flatBtn[data-v-d2db0ee8]:hover,
|
|
328
|
+
.bgl_btn-icon.bgl_flatBtn[data-v-d2db0ee8]:hover {
|
|
329
329
|
filter: var(--bgl-hover-filter);
|
|
330
330
|
background: var(--bgl-gray-20);
|
|
331
331
|
}
|
|
332
|
-
.bgl_btn.bgl_flatBtn[data-v-
|
|
333
|
-
.bgl_btn-icon.bgl_flatBtn[data-v-
|
|
332
|
+
.bgl_btn.bgl_flatBtn[data-v-d2db0ee8]:active,
|
|
333
|
+
.bgl_btn-icon.bgl_flatBtn[data-v-d2db0ee8]:active {
|
|
334
334
|
background: var(--bgl-gray-40);
|
|
335
335
|
filter: var(--bgl-active-filter);
|
|
336
336
|
}
|
|
337
|
-
.bgl_btn.bgl_flatBtn.red[data-v-
|
|
338
|
-
.bgl_btn-icon.bgl_flatBtn.red[data-v-
|
|
337
|
+
.bgl_btn.bgl_flatBtn.red[data-v-d2db0ee8],
|
|
338
|
+
.bgl_btn-icon.bgl_flatBtn.red[data-v-d2db0ee8] {
|
|
339
339
|
color: var(--bgl-red);
|
|
340
340
|
}
|
|
341
|
-
.bgl_btn.bgl_flatBtn.white[data-v-
|
|
342
|
-
.bgl_btn-icon.bgl_flatBtn.white[data-v-
|
|
341
|
+
.bgl_btn.bgl_flatBtn.white[data-v-d2db0ee8],
|
|
342
|
+
.bgl_btn-icon.bgl_flatBtn.white[data-v-d2db0ee8] {
|
|
343
343
|
color: var(--bgl-white);
|
|
344
344
|
}
|
|
345
|
-
.bgl_btn.bgl_flatBtn.light[data-v-
|
|
346
|
-
.bgl_btn-icon.bgl_flatBtn.light[data-v-
|
|
345
|
+
.bgl_btn.bgl_flatBtn.light[data-v-d2db0ee8],
|
|
346
|
+
.bgl_btn-icon.bgl_flatBtn.light[data-v-d2db0ee8] {
|
|
347
347
|
color: var(--bgl-primary-tint);
|
|
348
348
|
}
|
|
349
|
-
.bgl_btn.bgl_flatBtn.black[data-v-
|
|
350
|
-
.bgl_btn-icon.bgl_flatBtn.black[data-v-
|
|
349
|
+
.bgl_btn.bgl_flatBtn.black[data-v-d2db0ee8],
|
|
350
|
+
.bgl_btn-icon.bgl_flatBtn.black[data-v-d2db0ee8] {
|
|
351
351
|
color: var(--bgl-black);
|
|
352
352
|
}
|
|
353
|
-
.bgl_btn.bgl_flatBtn.gray[data-v-
|
|
354
|
-
.bgl_btn-icon.bgl_flatBtn.gray[data-v-
|
|
353
|
+
.bgl_btn.bgl_flatBtn.gray[data-v-d2db0ee8],
|
|
354
|
+
.bgl_btn-icon.bgl_flatBtn.gray[data-v-d2db0ee8] {
|
|
355
355
|
color: var(--bgl-gray);
|
|
356
356
|
}
|
|
357
|
-
.bgl_btn.thin[data-v-
|
|
357
|
+
.bgl_btn.thin[data-v-d2db0ee8] {
|
|
358
358
|
padding-inline: calc(var(--btn-padding) / 3);
|
|
359
359
|
border-radius: calc(var(--btn-border-radius) / 1.5);
|
|
360
360
|
}
|
|
361
|
-
.bgl_btn.round[data-v-
|
|
361
|
+
.bgl_btn.round[data-v-d2db0ee8] {
|
|
362
362
|
border-radius: calc(var(--btn-border-radius) * 2);
|
|
363
363
|
}
|
|
364
|
-
.bgl_btn-icon.thin[data-v-
|
|
364
|
+
.bgl_btn-icon.thin[data-v-d2db0ee8] {
|
|
365
365
|
height: calc(var(--btn-height) / 1.5);
|
|
366
366
|
width: calc(var(--btn-height) / 1.5);
|
|
367
|
-
line-height:
|
|
367
|
+
line-height: normal;
|
|
368
|
+
}
|
|
369
|
+
.bgl_btn-icon.thin .bgl_btn-flex[data-v-d2db0ee8] {
|
|
370
|
+
height: 100%;
|
|
368
371
|
}
|
|
369
|
-
[dir="rtl"] .bgl_.bgl_icon-font[data-v-
|
|
372
|
+
[dir="rtl"] .bgl_.bgl_icon-font[data-v-d2db0ee8] {
|
|
370
373
|
transform: rotateY(180deg);
|
|
371
374
|
}
|
|
372
|
-
.bgl_btn-border[data-v-
|
|
373
|
-
outline: 1px solid var(--
|
|
374
|
-
color: var(--
|
|
375
|
+
.bgl_btn-border[data-v-d2db0ee8] {
|
|
376
|
+
outline: 1px solid var(--e58d23c4);
|
|
377
|
+
color: var(--e58d23c4);
|
|
375
378
|
background: transparent;
|
|
376
379
|
}
|
|
377
|
-
.bgl_btn-border[data-v-
|
|
380
|
+
.bgl_btn-border[data-v-d2db0ee8]:hover {
|
|
378
381
|
color: var(--bgl-white);
|
|
379
|
-
background: var(--
|
|
382
|
+
background: var(--e58d23c4);
|
|
380
383
|
filter: brightness(100%);
|
|
381
384
|
}
|
|
382
|
-
.bgl_btn-border[data-v-
|
|
385
|
+
.bgl_btn-border[data-v-d2db0ee8]:active {
|
|
383
386
|
filter: brightness(80%);
|
|
384
387
|
}
|
|
385
388
|
.bg-dark {
|
|
@@ -597,6 +600,7 @@ a[data-v-26f1062f] {
|
|
|
597
600
|
.list-wrap {
|
|
598
601
|
grid-template-rows: auto 1fr;
|
|
599
602
|
}
|
|
603
|
+
|
|
600
604
|
.list-item {
|
|
601
605
|
padding: 0.6rem 1rem;
|
|
602
606
|
min-height: -webkit-fit-content;
|
|
@@ -619,12 +623,15 @@ a[data-v-26f1062f] {
|
|
|
619
623
|
}
|
|
620
624
|
.list-item:hover,
|
|
621
625
|
.list-item.router-link-active {
|
|
622
|
-
background-color: var(--bgl-
|
|
626
|
+
background-color: var(--bgl-primary-light);
|
|
623
627
|
}
|
|
624
628
|
.list-item:active {
|
|
625
629
|
-webkit-filter: var(--bgl-hover-filter);
|
|
626
630
|
filter: var(--bgl-hover-filter);
|
|
627
631
|
}
|
|
632
|
+
.no-border-list.list-item::after{
|
|
633
|
+
border-bottom: none;
|
|
634
|
+
}
|
|
628
635
|
@media screen and (max-width: 910px) {
|
|
629
636
|
.list-item {
|
|
630
637
|
padding: 0.5rem;
|
|
@@ -647,19 +654,19 @@ a[data-v-26f1062f] {
|
|
|
647
654
|
}
|
|
648
655
|
}
|
|
649
656
|
|
|
650
|
-
.selected[data-v-
|
|
657
|
+
.selected[data-v-5441d9cd] {
|
|
651
658
|
background: var(--bgl-primary-tint);
|
|
652
659
|
}
|
|
653
|
-
tbody tr.selected[data-v-
|
|
660
|
+
tbody tr.selected[data-v-5441d9cd]:hover {
|
|
654
661
|
background: var(--bgl-primary-light);
|
|
655
662
|
}
|
|
656
|
-
.loading-table[data-v-
|
|
663
|
+
.loading-table[data-v-5441d9cd] {
|
|
657
664
|
position: relative;
|
|
658
665
|
}
|
|
659
|
-
.inset[data-v-
|
|
666
|
+
.inset[data-v-5441d9cd] {
|
|
660
667
|
inset: 0;
|
|
661
668
|
}
|
|
662
|
-
.loading-table-animation[data-v-
|
|
669
|
+
.loading-table-animation[data-v-5441d9cd] {
|
|
663
670
|
--size: 60px;
|
|
664
671
|
top: 30vh;
|
|
665
672
|
inset-inline-start: calc(50% - var(--size));
|
|
@@ -667,9 +674,9 @@ tbody tr.selected[data-v-6653fb41]:hover {
|
|
|
667
674
|
border-top: 4px solid var(--bgl-primary);
|
|
668
675
|
width: var(--size);
|
|
669
676
|
height: var(--size);
|
|
670
|
-
animation: loading-table-
|
|
677
|
+
animation: loading-table-5441d9cd 1s linear infinite;
|
|
671
678
|
}
|
|
672
|
-
@keyframes loading-table-
|
|
679
|
+
@keyframes loading-table-5441d9cd {
|
|
673
680
|
0% {
|
|
674
681
|
transform: translate(-50%, -50%) rotate(0deg);
|
|
675
682
|
}
|
|
@@ -677,52 +684,52 @@ tbody tr.selected[data-v-6653fb41]:hover {
|
|
|
677
684
|
transform: translate(-50%, -50%) rotate(360deg);
|
|
678
685
|
}
|
|
679
686
|
}
|
|
680
|
-
.list-arrows[data-v-
|
|
687
|
+
.list-arrows[data-v-5441d9cd] {
|
|
681
688
|
opacity: 0;
|
|
682
689
|
}
|
|
683
|
-
.list-arrows .bgl_icon-font[data-v-
|
|
690
|
+
.list-arrows .bgl_icon-font[data-v-5441d9cd] {
|
|
684
691
|
transition: all ease-in-out 0.2s;
|
|
685
692
|
}
|
|
686
|
-
.list-arrows.sorted[data-v-
|
|
693
|
+
.list-arrows.sorted[data-v-5441d9cd] {
|
|
687
694
|
opacity: 1;
|
|
688
695
|
}
|
|
689
|
-
.col img[data-v-
|
|
696
|
+
.col img[data-v-5441d9cd] {
|
|
690
697
|
height: 35px;
|
|
691
698
|
margin-top: -14px;
|
|
692
699
|
margin-bottom: -14px;
|
|
693
700
|
border-radius: 5px;
|
|
694
701
|
}
|
|
695
|
-
.list-arrows.sorted .desc[data-v-
|
|
702
|
+
.list-arrows.sorted .desc[data-v-5441d9cd] {
|
|
696
703
|
transform: rotate(180deg);
|
|
697
704
|
display: inline-block;
|
|
698
705
|
}
|
|
699
|
-
table[data-v-
|
|
706
|
+
table[data-v-5441d9cd] {
|
|
700
707
|
border-collapse: separate;
|
|
701
708
|
border-spacing: 0 15px;
|
|
702
709
|
border-collapse: collapse;
|
|
703
710
|
width: 100%;
|
|
704
711
|
}
|
|
705
|
-
th[data-v-
|
|
712
|
+
th[data-v-5441d9cd] {
|
|
706
713
|
font-size: 0.8rem;
|
|
707
714
|
color: var(--bgl-black-tint);
|
|
708
715
|
position: sticky;
|
|
709
716
|
top: 0;
|
|
710
717
|
z-index: 2;
|
|
711
718
|
background: var(--bgl-white);
|
|
712
|
-
height: var(--
|
|
719
|
+
height: var(--efa9c80e);
|
|
713
720
|
vertical-align: bottom;
|
|
714
721
|
font-weight: 400;
|
|
715
722
|
text-align: start;
|
|
716
723
|
}
|
|
717
|
-
.embedded-field[data-v-
|
|
724
|
+
.embedded-field[data-v-5441d9cd] {
|
|
718
725
|
margin-bottom: -0.2rem;
|
|
719
726
|
margin-top: -0.2rem;
|
|
720
727
|
}
|
|
721
|
-
.row[data-v-
|
|
728
|
+
.row[data-v-5441d9cd] {
|
|
722
729
|
border-bottom: 1px solid var(--border-color);
|
|
723
730
|
cursor: pointer;
|
|
724
731
|
}
|
|
725
|
-
.row.first-row[data-v-
|
|
732
|
+
.row.first-row[data-v-5441d9cd] {
|
|
726
733
|
font-size: 0.8rem;
|
|
727
734
|
color: var(--bgl-black-tint);
|
|
728
735
|
position: sticky;
|
|
@@ -731,7 +738,7 @@ th[data-v-6653fb41] {
|
|
|
731
738
|
background: var(--bgl-white);
|
|
732
739
|
vertical-align: bottom;
|
|
733
740
|
}
|
|
734
|
-
.row.first-row[data-v-
|
|
741
|
+
.row.first-row[data-v-5441d9cd]::after {
|
|
735
742
|
content: '';
|
|
736
743
|
border-bottom: 1px solid var(--border-color);
|
|
737
744
|
position: absolute;
|
|
@@ -739,30 +746,30 @@ th[data-v-6653fb41] {
|
|
|
739
746
|
right: 0;
|
|
740
747
|
bottom: -1px;
|
|
741
748
|
}
|
|
742
|
-
.first-row .col[data-v-
|
|
749
|
+
.first-row .col[data-v-5441d9cd] {
|
|
743
750
|
cursor: pointer;
|
|
744
751
|
background: var(--bgl-white);
|
|
745
752
|
}
|
|
746
|
-
.col[data-v-
|
|
753
|
+
.col[data-v-5441d9cd] {
|
|
747
754
|
white-space: nowrap;
|
|
748
755
|
padding: 0.75rem 1rem;
|
|
749
756
|
transition: var(--bgl-transition);
|
|
750
757
|
line-height: 1;
|
|
751
758
|
align-items: center;
|
|
752
759
|
}
|
|
753
|
-
.col[data-v-
|
|
760
|
+
.col[data-v-5441d9cd]:has(.bagel-input) {
|
|
754
761
|
padding: 0rem 0.25rem;
|
|
755
762
|
}
|
|
756
|
-
.col > div[data-v-
|
|
763
|
+
.col > div[data-v-5441d9cd] {
|
|
757
764
|
display: flex;
|
|
758
765
|
gap: 0.5rem;
|
|
759
766
|
}
|
|
760
|
-
.max-col-width[data-v-
|
|
767
|
+
.max-col-width[data-v-5441d9cd] {
|
|
761
768
|
max-width: 30vw;
|
|
762
769
|
overflow: hidden;
|
|
763
770
|
text-overflow: ellipsis;
|
|
764
771
|
}
|
|
765
|
-
.col.check .bgl_icon-font[data-v-
|
|
772
|
+
.col.check .bgl_icon-font[data-v-5441d9cd] {
|
|
766
773
|
border-radius: 100%;
|
|
767
774
|
background: var(--bgl-blue-20);
|
|
768
775
|
color: var(--bgl-primary);
|
|
@@ -773,35 +780,35 @@ th[data-v-6653fb41] {
|
|
|
773
780
|
justify-content: center;
|
|
774
781
|
margin-top: -2px;
|
|
775
782
|
}
|
|
776
|
-
.rows[data-v-
|
|
783
|
+
.rows[data-v-5441d9cd] {
|
|
777
784
|
font-size: 0.88em;
|
|
778
785
|
}
|
|
779
|
-
.table-list[data-v-
|
|
786
|
+
.table-list[data-v-5441d9cd] {
|
|
780
787
|
height: 100%;
|
|
781
788
|
position: relative;
|
|
782
789
|
padding-left: 0 !important;
|
|
783
790
|
padding-right: 0 !important;
|
|
784
791
|
overflow: auto;
|
|
785
792
|
}
|
|
786
|
-
.BagelTable .table-list[data-v-
|
|
793
|
+
.BagelTable .table-list[data-v-5441d9cd] {
|
|
787
794
|
overflow: unset;
|
|
788
795
|
}
|
|
789
|
-
.row-item[data-v-
|
|
790
|
-
height: var(--
|
|
796
|
+
.row-item[data-v-5441d9cd] {
|
|
797
|
+
height: var(--efa9c80e);
|
|
791
798
|
transition: all 200ms ease;
|
|
792
799
|
}
|
|
793
|
-
.row-item[data-v-
|
|
800
|
+
.row-item[data-v-5441d9cd]:hover {
|
|
794
801
|
background: var(--bgl-gray-light);
|
|
795
802
|
}
|
|
796
|
-
.row-item input[type='checkbox'][data-v-
|
|
803
|
+
.row-item input[type='checkbox'][data-v-5441d9cd] {
|
|
797
804
|
margin-top: 0.45rem !important;
|
|
798
805
|
accent-color: var(--bgl-accent-color);
|
|
799
806
|
}
|
|
800
|
-
.infinite-wrapper[data-v-
|
|
807
|
+
.infinite-wrapper[data-v-5441d9cd] {
|
|
801
808
|
overflow-y: auto;
|
|
802
809
|
width: 100%;
|
|
803
810
|
}
|
|
804
|
-
input[type='checkbox'][data-v-
|
|
811
|
+
input[type='checkbox'][data-v-5441d9cd] {
|
|
805
812
|
margin-top: 0.3rem !important;
|
|
806
813
|
accent-color: var(--bgl-accent-color);
|
|
807
814
|
transform: scale(1.2);
|
|
@@ -813,7 +820,7 @@ input[type='checkbox'][data-v-6653fb41] {
|
|
|
813
820
|
height: 0.85rem;
|
|
814
821
|
width: 0.85rem;
|
|
815
822
|
}
|
|
816
|
-
input[type='checkbox'][data-v-
|
|
823
|
+
input[type='checkbox'][data-v-5441d9cd]::before {
|
|
817
824
|
content: '';
|
|
818
825
|
height: 0.85rem;
|
|
819
826
|
width: 0.85rem;
|
|
@@ -826,18 +833,18 @@ input[type='checkbox'][data-v-6653fb41]::before {
|
|
|
826
833
|
transform: scale(1);
|
|
827
834
|
position: absolute;
|
|
828
835
|
}
|
|
829
|
-
input[type='checkbox'][data-v-
|
|
836
|
+
input[type='checkbox'][data-v-5441d9cd]:hover::before {
|
|
830
837
|
opacity: 0.2;
|
|
831
838
|
transform: scale(2);
|
|
832
839
|
}
|
|
833
|
-
[lang='he'] [dir='ltr'][data-v-
|
|
840
|
+
[lang='he'] [dir='ltr'][data-v-5441d9cd] {
|
|
834
841
|
text-align: right;
|
|
835
842
|
}
|
|
836
|
-
th input[type='checkbox'][data-v-
|
|
843
|
+
th input[type='checkbox'][data-v-5441d9cd] {
|
|
837
844
|
transform: translateY(0.2rem) scale(1.2);
|
|
838
845
|
accent-color: var(--bgl-accent-color);
|
|
839
846
|
}
|
|
840
|
-
th[data-v-
|
|
847
|
+
th[data-v-5441d9cd]::after {
|
|
841
848
|
content: '';
|
|
842
849
|
border-bottom: 1px solid var(--border-color);
|
|
843
850
|
position: absolute;
|
|
@@ -845,24 +852,24 @@ th[data-v-6653fb41]::after {
|
|
|
845
852
|
right: 0;
|
|
846
853
|
bottom: -1px;
|
|
847
854
|
}
|
|
848
|
-
tr[data-v-
|
|
855
|
+
tr[data-v-5441d9cd] {
|
|
849
856
|
border-bottom: 1px solid var(--border-color);
|
|
850
857
|
cursor: pointer;
|
|
851
858
|
align-items: center;
|
|
852
859
|
}
|
|
853
|
-
td[data-v-
|
|
854
|
-
th[data-v-
|
|
860
|
+
td[data-v-5441d9cd],
|
|
861
|
+
th[data-v-5441d9cd] {
|
|
855
862
|
white-space: nowrap;
|
|
856
863
|
padding: 0.75rem 0.65rem;
|
|
857
864
|
transition: var(--bgl-transition);
|
|
858
865
|
line-height: 1;
|
|
859
866
|
}
|
|
860
|
-
tbody tr[data-v-
|
|
867
|
+
tbody tr[data-v-5441d9cd] {
|
|
861
868
|
font-size: 0.88em;
|
|
862
|
-
height: var(--
|
|
869
|
+
height: var(--efa9c80e);
|
|
863
870
|
transition: all 200ms ease;
|
|
864
871
|
}
|
|
865
|
-
tbody tr[data-v-
|
|
872
|
+
tbody tr[data-v-5441d9cd]:hover {
|
|
866
873
|
background: var(--bgl-gray-light);
|
|
867
874
|
}
|
|
868
875
|
|
|
@@ -1283,10 +1290,10 @@ display: block;
|
|
|
1283
1290
|
}
|
|
1284
1291
|
.resize-observer[data-v-b329ee4c]{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer[data-v-b329ee4c] object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper__popper{z-index:10000;top:0;left:0;outline:none}.v-popper__popper.v-popper__popper--hidden{visibility:hidden;opacity:0;transition:opacity .15s,visibility .15s;pointer-events:none}.v-popper__popper.v-popper__popper--shown{visibility:visible;opacity:1;transition:opacity .15s}.v-popper__popper.v-popper__popper--skip-transition,.v-popper__popper.v-popper__popper--skip-transition>.v-popper__wrapper{transition:none!important}.v-popper__backdrop{position:absolute;top:0;left:0;width:100%;height:100%;display:none}.v-popper__inner{position:relative;box-sizing:border-box;overflow-y:auto}.v-popper__inner>div{position:relative;z-index:1;max-width:inherit;max-height:inherit}.v-popper__arrow-container{position:absolute;width:10px;height:10px}.v-popper__popper--arrow-overflow .v-popper__arrow-container,.v-popper__popper--no-positioning .v-popper__arrow-container{display:none}.v-popper__arrow-inner,.v-popper__arrow-outer{border-style:solid;position:absolute;top:0;left:0;width:0;height:0}.v-popper__arrow-inner{visibility:hidden;border-width:7px}.v-popper__arrow-outer{border-width:6px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{left:-2px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-outer,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{left:-1px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-outer{border-bottom-width:0;border-left-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner{top:-2px}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:0}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{border-top-width:0;border-left-color:transparent!important;border-right-color:transparent!important;border-top-color:transparent!important}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{top:-4px}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{top:-6px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner{top:-2px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-outer,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{top:-1px}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{border-left-width:0;border-left-color:transparent!important;border-top-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner{left:-4px}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{left:-6px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-outer{border-right-width:0;border-top-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner{left:-2px}.v-popper--theme-tooltip .v-popper__inner{background:rgba(0,0,0,.8);color:#fff;border-radius:6px;padding:7px 12px 6px}.v-popper--theme-tooltip .v-popper__arrow-outer{border-color:#000c}.v-popper--theme-dropdown .v-popper__inner{background:#fff;color:#000;border-radius:6px;border:1px solid #ddd;box-shadow:0 6px 30px #0000001a}.v-popper--theme-dropdown .v-popper__arrow-inner{visibility:visible;border-color:#fff}.v-popper--theme-dropdown .v-popper__arrow-outer{border-color:#ddd}
|
|
1285
1292
|
|
|
1286
|
-
.selectinput[data-v-
|
|
1293
|
+
.selectinput[data-v-a26862a2] {
|
|
1287
1294
|
width: 100%;
|
|
1288
1295
|
}
|
|
1289
|
-
.selectinput-option[data-v-
|
|
1296
|
+
.selectinput-option[data-v-a26862a2] {
|
|
1290
1297
|
padding: 6px 12px;
|
|
1291
1298
|
cursor: pointer;
|
|
1292
1299
|
border-radius: 5px;
|
|
@@ -1297,14 +1304,14 @@ display: block;
|
|
|
1297
1304
|
width: 100%;
|
|
1298
1305
|
font-size: var(--input-font-size);
|
|
1299
1306
|
}
|
|
1300
|
-
.selectinput-options[data-v-
|
|
1307
|
+
.selectinput-options[data-v-a26862a2] {
|
|
1301
1308
|
max-height: 300px;
|
|
1302
1309
|
overflow-y: auto;
|
|
1303
1310
|
}
|
|
1304
|
-
.selectinput-option[data-v-
|
|
1311
|
+
.selectinput-option[data-v-a26862a2]:hover {
|
|
1305
1312
|
background: var(--bgl-gray-20);
|
|
1306
1313
|
}
|
|
1307
|
-
.isEmpty p[data-v-
|
|
1314
|
+
.isEmpty p[data-v-a26862a2] {
|
|
1308
1315
|
opacity: 0.3;
|
|
1309
1316
|
}
|
|
1310
1317
|
|
|
@@ -1345,7 +1352,7 @@ display: block;
|
|
|
1345
1352
|
border: none;
|
|
1346
1353
|
/* background: transparent; if anyone is changing this please talk to me first*/
|
|
1347
1354
|
border-radius: var(--card-border-radius);
|
|
1348
|
-
color: var(--input-color);
|
|
1355
|
+
/* color: var(--input-color); */
|
|
1349
1356
|
}
|
|
1350
1357
|
|
|
1351
1358
|
.table-side-scroll[data-v-515f5dc9] {
|
|
@@ -1497,59 +1504,58 @@ display: block;
|
|
|
1497
1504
|
font-size: var(--label-font-size);
|
|
1498
1505
|
}
|
|
1499
1506
|
|
|
1500
|
-
|
|
1501
|
-
.bagel-input textarea[data-v-5193fa33] {
|
|
1507
|
+
.bagel-input textarea[data-v-edac341b] {
|
|
1502
1508
|
min-height: unset;
|
|
1503
1509
|
font-size: var(--input-font-size);
|
|
1504
1510
|
}
|
|
1505
|
-
.bagel-input.text-input textarea[data-v-
|
|
1511
|
+
.bagel-input.text-input textarea[data-v-edac341b] {
|
|
1506
1512
|
resize: none;
|
|
1507
1513
|
}
|
|
1508
|
-
.code textarea[data-v-
|
|
1514
|
+
.code textarea[data-v-edac341b] {
|
|
1509
1515
|
font-family: 'Inconsolata', monospace;
|
|
1510
1516
|
background: var(--bgl-black) !important;
|
|
1511
1517
|
color: var(--bgl-white) !important;
|
|
1512
1518
|
}
|
|
1513
|
-
.code textarea[data-v-
|
|
1519
|
+
.code textarea[data-v-edac341b]::placeholder {
|
|
1514
1520
|
color: var(--bgl-white) !important;
|
|
1515
1521
|
opacity: 0.3;
|
|
1516
1522
|
}
|
|
1517
|
-
.bagel-input.small[data-v-
|
|
1523
|
+
.bagel-input.small[data-v-edac341b] {
|
|
1518
1524
|
margin-bottom: 0;
|
|
1519
1525
|
height: 30px;
|
|
1520
1526
|
}
|
|
1521
|
-
.bagel-input.dense label[data-v-
|
|
1527
|
+
.bagel-input.dense label[data-v-edac341b] {
|
|
1522
1528
|
display: flex;
|
|
1523
1529
|
align-items: center;
|
|
1524
1530
|
gap: 0.5rem;
|
|
1525
1531
|
}
|
|
1526
|
-
.bagel-input input[data-v-
|
|
1532
|
+
.bagel-input input[data-v-edac341b]:disabled {
|
|
1527
1533
|
background: #f5f5f5;
|
|
1528
1534
|
}
|
|
1529
|
-
.bagel-input label[data-v-
|
|
1535
|
+
.bagel-input label[data-v-edac341b] {
|
|
1530
1536
|
font-size: var(--label-font-size);
|
|
1531
1537
|
}
|
|
1532
|
-
.textInputIconWrap[data-v-
|
|
1538
|
+
.textInputIconWrap[data-v-edac341b] {
|
|
1533
1539
|
position: relative;
|
|
1534
1540
|
}
|
|
1535
|
-
.textInputIconWrap .bgl_icon-font[data-v-
|
|
1541
|
+
.textInputIconWrap .bgl_icon-font[data-v-edac341b] {
|
|
1536
1542
|
position: absolute;
|
|
1537
1543
|
inset-inline-end: 0.7rem;
|
|
1538
1544
|
bottom: 50%;
|
|
1539
1545
|
line-height: 0;
|
|
1540
1546
|
color: var(--bgl-gray);
|
|
1541
1547
|
}
|
|
1542
|
-
.txtInputIconStart .iconStart[data-v-
|
|
1548
|
+
.txtInputIconStart .iconStart[data-v-edac341b] {
|
|
1543
1549
|
position: absolute;
|
|
1544
1550
|
inset-inline-start: 0.7rem;
|
|
1545
1551
|
top: 50%;
|
|
1546
1552
|
line-height: 0;
|
|
1547
1553
|
color: var(--bgl-gray);
|
|
1548
1554
|
}
|
|
1549
|
-
.txtInputIconStart textarea[data-v-
|
|
1555
|
+
.txtInputIconStart textarea[data-v-edac341b] {
|
|
1550
1556
|
padding-inline-start: 2rem;
|
|
1551
1557
|
}
|
|
1552
|
-
.bagel-input.small textarea[data-v-
|
|
1558
|
+
.bagel-input.small textarea[data-v-edac341b] {
|
|
1553
1559
|
height: 30px;
|
|
1554
1560
|
}
|
|
1555
1561
|
|
|
@@ -2054,7 +2060,7 @@ p {
|
|
|
2054
2060
|
border-radius: var(--input-border-radius);
|
|
2055
2061
|
}
|
|
2056
2062
|
|
|
2057
|
-
.tel-input[data-v-
|
|
2063
|
+
.tel-input[data-v-9d176183] {
|
|
2058
2064
|
direction: ltr;
|
|
2059
2065
|
text-align: left;
|
|
2060
2066
|
background: var(--input-bg);
|
|
@@ -2065,21 +2071,21 @@ p {
|
|
|
2065
2071
|
min-width: calc(var(--input-height) * 3);
|
|
2066
2072
|
width: 100%;
|
|
2067
2073
|
}
|
|
2068
|
-
.tel-input[data-v-
|
|
2074
|
+
.tel-input[data-v-9d176183]:focus-within {
|
|
2069
2075
|
outline: none;
|
|
2070
2076
|
box-shadow: inset 0 0 10px #00000012;
|
|
2071
2077
|
}
|
|
2072
|
-
.tel-input input[data-v-
|
|
2078
|
+
.tel-input input[data-v-9d176183] {
|
|
2073
2079
|
background: transparent;
|
|
2074
2080
|
}
|
|
2075
|
-
.tel-input input[data-v-
|
|
2081
|
+
.tel-input input[data-v-9d176183]:focus-visible {
|
|
2076
2082
|
box-shadow: none;
|
|
2077
2083
|
}
|
|
2078
|
-
.input_country-code[data-v-
|
|
2084
|
+
.input_country-code[data-v-9d176183] {
|
|
2079
2085
|
font-size: var(--input-font-size);
|
|
2080
2086
|
color: var(--input-color);
|
|
2081
2087
|
}
|
|
2082
|
-
.tel-country[data-v-
|
|
2088
|
+
.tel-country[data-v-9d176183] {
|
|
2083
2089
|
font-size: var(--input-font-size);
|
|
2084
2090
|
max-width: 200px;
|
|
2085
2091
|
white-space: nowrap;
|
|
@@ -2088,7 +2094,7 @@ p {
|
|
|
2088
2094
|
margin-top: 0;
|
|
2089
2095
|
margin-bottom: 0;
|
|
2090
2096
|
}
|
|
2091
|
-
.tel-countryp-dropdown[data-v-
|
|
2097
|
+
.tel-countryp-dropdown[data-v-9d176183] {
|
|
2092
2098
|
direction: ltr;
|
|
2093
2099
|
text-align: left;
|
|
2094
2100
|
}
|
|
@@ -2337,7 +2343,7 @@ input[type="number"][data-v-4c741194] {
|
|
|
2337
2343
|
color: var(--bgl-primary) !important;
|
|
2338
2344
|
}
|
|
2339
2345
|
|
|
2340
|
-
.bgl_tabs_wrap[data-v-
|
|
2346
|
+
.bgl_tabs_wrap[data-v-4b4c19a0] {
|
|
2341
2347
|
background: var(--input-bg);
|
|
2342
2348
|
border-radius: calc(var(--input-border-radius) * 1.4);
|
|
2343
2349
|
padding-inline: calc(var(--btn-padding) / 8);
|
|
@@ -2345,7 +2351,7 @@ input[type="number"][data-v-4c741194] {
|
|
|
2345
2351
|
box-shadow: inset 0 0 10px #00000012;
|
|
2346
2352
|
gap: 0.25rem;
|
|
2347
2353
|
}
|
|
2348
|
-
.bgl_tab[data-v-
|
|
2354
|
+
.bgl_tab[data-v-4b4c19a0] {
|
|
2349
2355
|
border: none;
|
|
2350
2356
|
background: transparent;
|
|
2351
2357
|
cursor: pointer;
|
|
@@ -2355,11 +2361,12 @@ input[type="number"][data-v-4c741194] {
|
|
|
2355
2361
|
padding-block: calc(var(--btn-padding) / 8);
|
|
2356
2362
|
border-radius: var(--input-border-radius);
|
|
2357
2363
|
transition: var(--bgl-transition);
|
|
2364
|
+
color: inherit
|
|
2358
2365
|
}
|
|
2359
|
-
.bgl_tab[data-v-
|
|
2366
|
+
.bgl_tab[data-v-4b4c19a0]:hover {
|
|
2360
2367
|
background: rgba(255, 255, 255, .4);
|
|
2361
2368
|
}
|
|
2362
|
-
.bgl_tabs_wrap[data-v-
|
|
2369
|
+
.bgl_tabs_wrap[data-v-4b4c19a0]::before {
|
|
2363
2370
|
content: '';
|
|
2364
2371
|
position: absolute;
|
|
2365
2372
|
top: calc(var(--btn-padding) / 8);
|
|
@@ -2371,6 +2378,60 @@ input[type="number"][data-v-4c741194] {
|
|
|
2371
2378
|
transition: var(--bgl-transition);
|
|
2372
2379
|
z-index: 0;
|
|
2373
2380
|
}
|
|
2381
|
+
.bgl_flat-tabs.bgl_tabs_wrap[data-v-4b4c19a0] {
|
|
2382
|
+
background: transparent;
|
|
2383
|
+
}
|
|
2384
|
+
.bgl_flat-tabs.bgl_tabs_wrap[data-v-4b4c19a0]::before{
|
|
2385
|
+
background: transparent;
|
|
2386
|
+
border-bottom: 1px solid var(--bgl-primary);
|
|
2387
|
+
border-radius: 0;
|
|
2388
|
+
top: calc(var(--btn-padding) * 1.25);
|
|
2389
|
+
bottom: unset;
|
|
2390
|
+
}
|
|
2391
|
+
.bgl_flat-tabs .active.bgl_tab[data-v-4b4c19a0]{
|
|
2392
|
+
color: var(--bgl-primary)
|
|
2393
|
+
}
|
|
2394
|
+
.bgl_flat-tabs .bgl_tab[data-v-4b4c19a0]:hover {
|
|
2395
|
+
background: rgba(255, 255, 255, .1);
|
|
2396
|
+
}
|
|
2397
|
+
.bgl_vertical-tabs[data-v-4b4c19a0]{
|
|
2398
|
+
grid-auto-flow: row;
|
|
2399
|
+
align-items: start;
|
|
2400
|
+
justify-items: start;
|
|
2401
|
+
gap: 1rem
|
|
2402
|
+
}
|
|
2403
|
+
.bgl_vertical-tabs .bgl_tab[data-v-4b4c19a0]{
|
|
2404
|
+
padding-inline: 0;
|
|
2405
|
+
border-radius: 0;
|
|
2406
|
+
border-bottom: 1px solid transparent;
|
|
2407
|
+
}
|
|
2408
|
+
.bgl_vertical-tabs .bgl_tab[data-v-4b4c19a0]:hover{
|
|
2409
|
+
background: transparent;
|
|
2410
|
+
border-bottom: 1px solid var(--bgl-primary);
|
|
2411
|
+
}
|
|
2412
|
+
.bgl_vertical-tabs .bgl_tab.active[data-v-4b4c19a0]{
|
|
2413
|
+
border-bottom: 1px solid var(--bgl-primary);
|
|
2414
|
+
}
|
|
2415
|
+
.bgl_vertical-tabs.bgl_tabs_wrap[data-v-4b4c19a0]::before{
|
|
2416
|
+
border: none;
|
|
2417
|
+
}
|
|
2418
|
+
@media screen and (max-width: 910px) {
|
|
2419
|
+
.bgl_vertical-tabs[data-v-4b4c19a0]{
|
|
2420
|
+
grid-auto-flow: column;
|
|
2421
|
+
overflow: auto;
|
|
2422
|
+
max-width: 100vw;
|
|
2423
|
+
padding-inline-end: 1rem;
|
|
2424
|
+
width: 100%;
|
|
2425
|
+
gap: 1rem;
|
|
2426
|
+
position: relative;
|
|
2427
|
+
}
|
|
2428
|
+
.bgl_vertical-tabs[data-v-4b4c19a0]::-webkit-scrollbar {
|
|
2429
|
+
display: none;
|
|
2430
|
+
}
|
|
2431
|
+
.bgl_vertical-tabs .bgl_tab[data-v-4b4c19a0]{
|
|
2432
|
+
white-space: nowrap;
|
|
2433
|
+
}
|
|
2434
|
+
}
|
|
2374
2435
|
|
|
2375
2436
|
.tab[data-v-0a54cdeb] {
|
|
2376
2437
|
text-transform: capitalize;
|
|
@@ -2404,19 +2465,19 @@ input[type="number"][data-v-4c741194] {
|
|
|
2404
2465
|
height: 100vh;
|
|
2405
2466
|
}
|
|
2406
2467
|
.round {
|
|
2407
|
-
border-radius: var(--btn-border-radius);
|
|
2468
|
+
border-radius: var(--btn-border-radius) !important;
|
|
2408
2469
|
}
|
|
2409
2470
|
.rounded {
|
|
2410
|
-
border-radius: calc(var(--btn-border-radius) / 2);
|
|
2471
|
+
border-radius: calc(var(--btn-border-radius) / 2) !important;
|
|
2411
2472
|
}
|
|
2412
2473
|
.round-extra {
|
|
2413
|
-
border-radius: calc(var(--btn-border-radius) * 2);
|
|
2474
|
+
border-radius: calc(var(--btn-border-radius) * 2) !important;
|
|
2414
2475
|
}
|
|
2415
2476
|
.round-none {
|
|
2416
|
-
border-radius: 0
|
|
2477
|
+
border-radius: 0;
|
|
2417
2478
|
}
|
|
2418
|
-
.oval{
|
|
2419
|
-
border-radius: 100
|
|
2479
|
+
.oval {
|
|
2480
|
+
border-radius: 100%;
|
|
2420
2481
|
}
|
|
2421
2482
|
.flex-center {
|
|
2422
2483
|
justify-content: center;
|
|
@@ -2524,208 +2585,212 @@ input[type="number"][data-v-4c741194] {
|
|
|
2524
2585
|
inset-inline-start: 0;
|
|
2525
2586
|
inset-inline-end: 0;
|
|
2526
2587
|
}
|
|
2527
|
-
.inset-inline-start,
|
|
2588
|
+
.inset-inline-start,
|
|
2589
|
+
.start {
|
|
2528
2590
|
inset-inline-start: 0;
|
|
2529
2591
|
}
|
|
2530
|
-
.start-1{
|
|
2592
|
+
.start-1 {
|
|
2531
2593
|
inset-inline-start: 1rem;
|
|
2532
2594
|
}
|
|
2533
|
-
.start-2{
|
|
2595
|
+
.start-2 {
|
|
2534
2596
|
inset-inline-start: 2rem;
|
|
2535
2597
|
}
|
|
2536
|
-
.start-3{
|
|
2598
|
+
.start-3 {
|
|
2537
2599
|
inset-inline-start: 3rem;
|
|
2538
2600
|
}
|
|
2539
|
-
.start-4{
|
|
2601
|
+
.start-4 {
|
|
2540
2602
|
inset-inline-start: 4rem;
|
|
2541
2603
|
}
|
|
2542
|
-
.start-5{
|
|
2604
|
+
.start-5 {
|
|
2543
2605
|
inset-inline-start: 5rem;
|
|
2544
2606
|
}
|
|
2545
|
-
.start-6{
|
|
2607
|
+
.start-6 {
|
|
2546
2608
|
inset-inline-start: 6rem;
|
|
2547
2609
|
}
|
|
2548
|
-
.start-7{
|
|
2610
|
+
.start-7 {
|
|
2549
2611
|
inset-inline-start: 7rem;
|
|
2550
2612
|
}
|
|
2551
|
-
.start-8{
|
|
2613
|
+
.start-8 {
|
|
2552
2614
|
inset-inline-start: 8rem;
|
|
2553
2615
|
}
|
|
2554
|
-
.-start-1{
|
|
2616
|
+
.-start-1 {
|
|
2555
2617
|
inset-inline-start: -1rem;
|
|
2556
2618
|
}
|
|
2557
|
-
.-start-2{
|
|
2619
|
+
.-start-2 {
|
|
2558
2620
|
inset-inline-start: -2rem;
|
|
2559
2621
|
}
|
|
2560
|
-
.-start-3{
|
|
2622
|
+
.-start-3 {
|
|
2561
2623
|
inset-inline-start: -3rem;
|
|
2562
2624
|
}
|
|
2563
|
-
.-start-4{
|
|
2625
|
+
.-start-4 {
|
|
2564
2626
|
inset-inline-start: -4rem;
|
|
2565
2627
|
}
|
|
2566
|
-
.-start-5{
|
|
2628
|
+
.-start-5 {
|
|
2567
2629
|
inset-inline-start: -5rem;
|
|
2568
2630
|
}
|
|
2569
|
-
.-start-6{
|
|
2631
|
+
.-start-6 {
|
|
2570
2632
|
inset-inline-start: -6rem;
|
|
2571
2633
|
}
|
|
2572
|
-
.-start-7{
|
|
2634
|
+
.-start-7 {
|
|
2573
2635
|
inset-inline-start: -7rem;
|
|
2574
2636
|
}
|
|
2575
|
-
.-start-8{
|
|
2637
|
+
.-start-8 {
|
|
2576
2638
|
inset-inline-start: -8rem;
|
|
2577
2639
|
}
|
|
2578
|
-
.inset-inline-end,
|
|
2640
|
+
.inset-inline-end,
|
|
2641
|
+
.end {
|
|
2579
2642
|
inset-inline-end: 0;
|
|
2580
2643
|
}
|
|
2581
|
-
.end-1{
|
|
2644
|
+
.end-1 {
|
|
2582
2645
|
inset-inline-end: 1rem;
|
|
2583
2646
|
}
|
|
2584
|
-
.end-2{
|
|
2647
|
+
.end-2 {
|
|
2585
2648
|
inset-inline-end: 2rem;
|
|
2586
2649
|
}
|
|
2587
|
-
.end-3{
|
|
2650
|
+
.end-3 {
|
|
2588
2651
|
inset-inline-end: 3rem;
|
|
2589
2652
|
}
|
|
2590
|
-
.end-4{
|
|
2653
|
+
.end-4 {
|
|
2591
2654
|
inset-inline-end: 4rem;
|
|
2592
2655
|
}
|
|
2593
|
-
.end-5{
|
|
2656
|
+
.end-5 {
|
|
2594
2657
|
inset-inline-end: 5rem;
|
|
2595
2658
|
}
|
|
2596
|
-
.end-6{
|
|
2659
|
+
.end-6 {
|
|
2597
2660
|
inset-inline-end: 6rem;
|
|
2598
2661
|
}
|
|
2599
|
-
.end-7{
|
|
2662
|
+
.end-7 {
|
|
2600
2663
|
inset-inline-end: 7rem;
|
|
2601
2664
|
}
|
|
2602
|
-
.end-8{
|
|
2665
|
+
.end-8 {
|
|
2603
2666
|
inset-inline-end: 8rem;
|
|
2604
2667
|
}
|
|
2605
|
-
.-end-1{
|
|
2668
|
+
.-end-1 {
|
|
2606
2669
|
inset-inline-end: -1rem;
|
|
2607
2670
|
}
|
|
2608
|
-
.-end-2{
|
|
2671
|
+
.-end-2 {
|
|
2609
2672
|
inset-inline-end: -2rem;
|
|
2610
2673
|
}
|
|
2611
|
-
.-end-3{
|
|
2674
|
+
.-end-3 {
|
|
2612
2675
|
inset-inline-end: -3rem;
|
|
2613
2676
|
}
|
|
2614
|
-
.-end-4{
|
|
2677
|
+
.-end-4 {
|
|
2615
2678
|
inset-inline-end: -4rem;
|
|
2616
2679
|
}
|
|
2617
|
-
.-end-5{
|
|
2680
|
+
.-end-5 {
|
|
2618
2681
|
inset-inline-end: -5rem;
|
|
2619
2682
|
}
|
|
2620
|
-
.-end-6{
|
|
2683
|
+
.-end-6 {
|
|
2621
2684
|
inset-inline-end: -6rem;
|
|
2622
2685
|
}
|
|
2623
|
-
.-end-7{
|
|
2686
|
+
.-end-7 {
|
|
2624
2687
|
inset-inline-end: -7rem;
|
|
2625
2688
|
}
|
|
2626
|
-
.-end-8{
|
|
2689
|
+
.-end-8 {
|
|
2627
2690
|
inset-inline-end: -8rem;
|
|
2628
2691
|
}
|
|
2629
|
-
.top,
|
|
2692
|
+
.top,
|
|
2693
|
+
.top-0 {
|
|
2630
2694
|
top: 0;
|
|
2631
2695
|
}
|
|
2632
|
-
.top-1{
|
|
2696
|
+
.top-1 {
|
|
2633
2697
|
top: 1rem;
|
|
2634
2698
|
}
|
|
2635
|
-
.top-2{
|
|
2699
|
+
.top-2 {
|
|
2636
2700
|
top: 2rem;
|
|
2637
2701
|
}
|
|
2638
|
-
.top-3{
|
|
2702
|
+
.top-3 {
|
|
2639
2703
|
top: 3rem;
|
|
2640
2704
|
}
|
|
2641
|
-
.top-4{
|
|
2705
|
+
.top-4 {
|
|
2642
2706
|
top: 4rem;
|
|
2643
2707
|
}
|
|
2644
|
-
.top-5{
|
|
2708
|
+
.top-5 {
|
|
2645
2709
|
top: 5rem;
|
|
2646
2710
|
}
|
|
2647
|
-
.top-6{
|
|
2711
|
+
.top-6 {
|
|
2648
2712
|
top: 6rem;
|
|
2649
2713
|
}
|
|
2650
|
-
.top-7{
|
|
2714
|
+
.top-7 {
|
|
2651
2715
|
top: 7rem;
|
|
2652
2716
|
}
|
|
2653
|
-
.top-8{
|
|
2717
|
+
.top-8 {
|
|
2654
2718
|
top: 8rem;
|
|
2655
2719
|
}
|
|
2656
|
-
.-top-1{
|
|
2720
|
+
.-top-1 {
|
|
2657
2721
|
top: -1rem;
|
|
2658
2722
|
}
|
|
2659
|
-
.-top-2{
|
|
2723
|
+
.-top-2 {
|
|
2660
2724
|
top: -2rem;
|
|
2661
2725
|
}
|
|
2662
|
-
.-top-3{
|
|
2726
|
+
.-top-3 {
|
|
2663
2727
|
top: -3rem;
|
|
2664
2728
|
}
|
|
2665
|
-
.-top-4{
|
|
2729
|
+
.-top-4 {
|
|
2666
2730
|
top: -4rem;
|
|
2667
2731
|
}
|
|
2668
|
-
.-top-5{
|
|
2732
|
+
.-top-5 {
|
|
2669
2733
|
top: -5rem;
|
|
2670
2734
|
}
|
|
2671
|
-
.-top-6{
|
|
2735
|
+
.-top-6 {
|
|
2672
2736
|
top: -6rem;
|
|
2673
2737
|
}
|
|
2674
|
-
.-top-7{
|
|
2738
|
+
.-top-7 {
|
|
2675
2739
|
top: -7rem;
|
|
2676
2740
|
}
|
|
2677
|
-
.-top-8{
|
|
2741
|
+
.-top-8 {
|
|
2678
2742
|
top: -8rem;
|
|
2679
2743
|
}
|
|
2680
|
-
.bottom,
|
|
2744
|
+
.bottom,
|
|
2745
|
+
.bottom-0 {
|
|
2681
2746
|
bottom: 0;
|
|
2682
2747
|
}
|
|
2683
|
-
.bottom-1{
|
|
2748
|
+
.bottom-1 {
|
|
2684
2749
|
bottom: 1rem;
|
|
2685
2750
|
}
|
|
2686
|
-
.bottom-2{
|
|
2751
|
+
.bottom-2 {
|
|
2687
2752
|
bottom: 2rem;
|
|
2688
2753
|
}
|
|
2689
|
-
.bottom-3{
|
|
2754
|
+
.bottom-3 {
|
|
2690
2755
|
bottom: 3rem;
|
|
2691
2756
|
}
|
|
2692
|
-
.bottom-4{
|
|
2757
|
+
.bottom-4 {
|
|
2693
2758
|
bottom: 4rem;
|
|
2694
2759
|
}
|
|
2695
|
-
.bottom-5{
|
|
2760
|
+
.bottom-5 {
|
|
2696
2761
|
bottom: 5rem;
|
|
2697
2762
|
}
|
|
2698
|
-
.bottom-6{
|
|
2763
|
+
.bottom-6 {
|
|
2699
2764
|
bottom: 6rem;
|
|
2700
2765
|
}
|
|
2701
|
-
.bottom-7{
|
|
2766
|
+
.bottom-7 {
|
|
2702
2767
|
bottom: 7rem;
|
|
2703
2768
|
}
|
|
2704
|
-
.bottom-8{
|
|
2769
|
+
.bottom-8 {
|
|
2705
2770
|
bottom: 8rem;
|
|
2706
2771
|
}
|
|
2707
|
-
.-bottom-1{
|
|
2772
|
+
.-bottom-1 {
|
|
2708
2773
|
bottom: -1rem;
|
|
2709
2774
|
}
|
|
2710
|
-
.-bottom-2{
|
|
2775
|
+
.-bottom-2 {
|
|
2711
2776
|
bottom: -2rem;
|
|
2712
2777
|
}
|
|
2713
|
-
.-bottom-3{
|
|
2778
|
+
.-bottom-3 {
|
|
2714
2779
|
bottom: -3rem;
|
|
2715
2780
|
}
|
|
2716
|
-
.-bottom-4{
|
|
2781
|
+
.-bottom-4 {
|
|
2717
2782
|
bottom: -4rem;
|
|
2718
2783
|
}
|
|
2719
|
-
.-bottom-5{
|
|
2784
|
+
.-bottom-5 {
|
|
2720
2785
|
bottom: -5rem;
|
|
2721
2786
|
}
|
|
2722
|
-
.-bottom-6{
|
|
2787
|
+
.-bottom-6 {
|
|
2723
2788
|
bottom: -6rem;
|
|
2724
2789
|
}
|
|
2725
|
-
.-bottom-7{
|
|
2790
|
+
.-bottom-7 {
|
|
2726
2791
|
bottom: -7rem;
|
|
2727
2792
|
}
|
|
2728
|
-
.-bottom-8{
|
|
2793
|
+
.-bottom-8 {
|
|
2729
2794
|
bottom: -8rem;
|
|
2730
2795
|
}
|
|
2731
2796
|
.auto-flow-rows {
|
|
@@ -3079,10 +3144,12 @@ input[type="number"][data-v-4c741194] {
|
|
|
3079
3144
|
.flex-shrink {
|
|
3080
3145
|
flex-shrink: 1;
|
|
3081
3146
|
}
|
|
3082
|
-
.flex-no-grow,
|
|
3147
|
+
.flex-no-grow,
|
|
3148
|
+
.flex-grow-0 {
|
|
3083
3149
|
flex-grow: 0;
|
|
3084
3150
|
}
|
|
3085
|
-
.flex-no-shrink,
|
|
3151
|
+
.flex-no-shrink,
|
|
3152
|
+
.flex-shrink-0 {
|
|
3086
3153
|
flex-shrink: 0;
|
|
3087
3154
|
}
|
|
3088
3155
|
.flex-grow-2 {
|
|
@@ -3695,7 +3762,7 @@ input[type="number"][data-v-4c741194] {
|
|
|
3695
3762
|
.sticky,
|
|
3696
3763
|
.position-sticky,
|
|
3697
3764
|
.sticky-0,
|
|
3698
|
-
.position-sticky-0
|
|
3765
|
+
.position-sticky-0 {
|
|
3699
3766
|
position: sticky !important;
|
|
3700
3767
|
top: 0;
|
|
3701
3768
|
align-self: start;
|
|
@@ -4105,25 +4172,26 @@ input[type="number"][data-v-4c741194] {
|
|
|
4105
4172
|
.direction-rtl {
|
|
4106
4173
|
direction: rtl;
|
|
4107
4174
|
}
|
|
4108
|
-
.inset-0,
|
|
4175
|
+
.inset-0,
|
|
4176
|
+
.inset {
|
|
4109
4177
|
inset: 0;
|
|
4110
4178
|
}
|
|
4111
|
-
.inset-1{
|
|
4179
|
+
.inset-1 {
|
|
4112
4180
|
inset: 1rem;
|
|
4113
4181
|
}
|
|
4114
|
-
.inset-2{
|
|
4182
|
+
.inset-2 {
|
|
4115
4183
|
inset: 2rem;
|
|
4116
4184
|
}
|
|
4117
|
-
.inset-3{
|
|
4185
|
+
.inset-3 {
|
|
4118
4186
|
inset: 3rem;
|
|
4119
4187
|
}
|
|
4120
|
-
.inset-4{
|
|
4188
|
+
.inset-4 {
|
|
4121
4189
|
inset: 4rem;
|
|
4122
4190
|
}
|
|
4123
|
-
.inset-5{
|
|
4191
|
+
.inset-5 {
|
|
4124
4192
|
inset: 5rem;
|
|
4125
4193
|
}
|
|
4126
|
-
.inset-6{
|
|
4194
|
+
.inset-6 {
|
|
4127
4195
|
inset: 6rem;
|
|
4128
4196
|
}
|
|
4129
4197
|
@media screen and (max-width: 910px) {
|
|
@@ -4192,23 +4260,23 @@ input[type="number"][data-v-4c741194] {
|
|
|
4192
4260
|
}
|
|
4193
4261
|
|
|
4194
4262
|
.m_round {
|
|
4195
|
-
border-radius: var(--btn-border-radius);
|
|
4263
|
+
border-radius: var(--btn-border-radius) !important;
|
|
4196
4264
|
}
|
|
4197
4265
|
|
|
4198
4266
|
.m_rounded {
|
|
4199
|
-
border-radius: calc(var(--btn-border-radius) / 2);
|
|
4267
|
+
border-radius: calc(var(--btn-border-radius) / 2) !important;
|
|
4200
4268
|
}
|
|
4201
4269
|
|
|
4202
4270
|
.m_round-extra {
|
|
4203
|
-
border-radius: calc(var(--btn-border-radius) * 2);
|
|
4271
|
+
border-radius: calc(var(--btn-border-radius) * 2) !important;
|
|
4204
4272
|
}
|
|
4205
4273
|
|
|
4206
4274
|
.m_round-none {
|
|
4207
4275
|
border-radius: 0 !important;
|
|
4208
4276
|
}
|
|
4209
|
-
|
|
4210
|
-
.m_oval{
|
|
4211
|
-
border-radius: 100
|
|
4277
|
+
|
|
4278
|
+
.m_oval {
|
|
4279
|
+
border-radius: 100%;
|
|
4212
4280
|
}
|
|
4213
4281
|
|
|
4214
4282
|
.m_flex-center {
|
|
@@ -4240,7 +4308,7 @@ input[type="number"][data-v-4c741194] {
|
|
|
4240
4308
|
.m_align-items-center {
|
|
4241
4309
|
align-items: center !important;
|
|
4242
4310
|
}
|
|
4243
|
-
|
|
4311
|
+
|
|
4244
4312
|
.m_align-items-baseline {
|
|
4245
4313
|
align-items: baseline !important;
|
|
4246
4314
|
}
|
|
@@ -4701,39 +4769,41 @@ input[type="number"][data-v-4c741194] {
|
|
|
4701
4769
|
.m_flex-shrink {
|
|
4702
4770
|
flex-shrink: 1;
|
|
4703
4771
|
}
|
|
4704
|
-
|
|
4705
|
-
.m_flex-no-grow,
|
|
4772
|
+
|
|
4773
|
+
.m_flex-no-grow,
|
|
4774
|
+
.m_flex-grow-0 {
|
|
4706
4775
|
flex-grow: 0;
|
|
4707
4776
|
}
|
|
4708
|
-
|
|
4709
|
-
.m_flex-no-shrink,
|
|
4777
|
+
|
|
4778
|
+
.m_flex-no-shrink,
|
|
4779
|
+
.m_flex-shrink-0 {
|
|
4710
4780
|
flex-shrink: 0;
|
|
4711
4781
|
}
|
|
4712
|
-
|
|
4782
|
+
|
|
4713
4783
|
.m_flex-grow-2 {
|
|
4714
4784
|
flex-grow: 2;
|
|
4715
4785
|
}
|
|
4716
|
-
|
|
4786
|
+
|
|
4717
4787
|
.m_flex-shrink-2 {
|
|
4718
4788
|
flex-shrink: 2;
|
|
4719
4789
|
}
|
|
4720
|
-
|
|
4790
|
+
|
|
4721
4791
|
.m_flex-grow-3 {
|
|
4722
4792
|
flex-grow: 3;
|
|
4723
4793
|
}
|
|
4724
|
-
|
|
4794
|
+
|
|
4725
4795
|
.m_flex-shrink-3 {
|
|
4726
4796
|
flex-shrink: 3;
|
|
4727
4797
|
}
|
|
4728
|
-
|
|
4798
|
+
|
|
4729
4799
|
.m_flex-grow-4 {
|
|
4730
4800
|
flex-grow: 4;
|
|
4731
4801
|
}
|
|
4732
|
-
|
|
4802
|
+
|
|
4733
4803
|
.m_flex-shrink-4 {
|
|
4734
4804
|
flex-shrink: 4;
|
|
4735
4805
|
}
|
|
4736
|
-
|
|
4806
|
+
|
|
4737
4807
|
.m_flex-2-col {
|
|
4738
4808
|
max-width: 50%;
|
|
4739
4809
|
flex: 1 1 calc(50% - 2rem);
|
|
@@ -5927,26 +5997,27 @@ input[type="number"][data-v-4c741194] {
|
|
|
5927
5997
|
.m_grid-span-6 {
|
|
5928
5998
|
grid-column: span 6;
|
|
5929
5999
|
}
|
|
6000
|
+
|
|
5930
6001
|
.m_grid-span-row-1 {
|
|
5931
6002
|
grid-row: span 1;
|
|
5932
6003
|
}
|
|
5933
|
-
|
|
6004
|
+
|
|
5934
6005
|
.m_grid-span-row-2 {
|
|
5935
6006
|
grid-row: span 2;
|
|
5936
6007
|
}
|
|
5937
|
-
|
|
6008
|
+
|
|
5938
6009
|
.m_grid-span-row-3 {
|
|
5939
6010
|
grid-row: span 3;
|
|
5940
6011
|
}
|
|
5941
|
-
|
|
6012
|
+
|
|
5942
6013
|
.m_grid-span-row-4 {
|
|
5943
6014
|
grid-row: span 4;
|
|
5944
6015
|
}
|
|
5945
|
-
|
|
6016
|
+
|
|
5946
6017
|
.m_grid-span-row-5 {
|
|
5947
6018
|
grid-row: span 5;
|
|
5948
6019
|
}
|
|
5949
|
-
|
|
6020
|
+
|
|
5950
6021
|
.m_grid-span-row-6 {
|
|
5951
6022
|
grid-row: span 6;
|
|
5952
6023
|
}
|
|
@@ -6008,299 +6079,309 @@ input[type="number"][data-v-4c741194] {
|
|
|
6008
6079
|
inset-inline-start: 0;
|
|
6009
6080
|
inset-inline-end: 0;
|
|
6010
6081
|
}
|
|
6011
|
-
|
|
6082
|
+
|
|
6083
|
+
.m_inset-inline-start,
|
|
6084
|
+
.m_start {
|
|
6012
6085
|
inset-inline-start: 0 !important;
|
|
6013
6086
|
}
|
|
6014
|
-
|
|
6015
|
-
.m_start-1{
|
|
6087
|
+
|
|
6088
|
+
.m_start-1 {
|
|
6016
6089
|
inset-inline-start: 1rem !important;
|
|
6017
6090
|
}
|
|
6018
|
-
|
|
6019
|
-
.m_start-2{
|
|
6091
|
+
|
|
6092
|
+
.m_start-2 {
|
|
6020
6093
|
inset-inline-start: 2rem !important;
|
|
6021
6094
|
}
|
|
6022
|
-
|
|
6023
|
-
.m_start-3{
|
|
6095
|
+
|
|
6096
|
+
.m_start-3 {
|
|
6024
6097
|
inset-inline-start: 3rem !important;
|
|
6025
6098
|
}
|
|
6026
|
-
|
|
6027
|
-
.m_start-4{
|
|
6099
|
+
|
|
6100
|
+
.m_start-4 {
|
|
6028
6101
|
inset-inline-start: 4rem !important;
|
|
6029
6102
|
}
|
|
6030
|
-
|
|
6031
|
-
.m_start-5{
|
|
6103
|
+
|
|
6104
|
+
.m_start-5 {
|
|
6032
6105
|
inset-inline-start: 5rem !important;
|
|
6033
6106
|
}
|
|
6034
|
-
|
|
6035
|
-
.m_start-6{
|
|
6107
|
+
|
|
6108
|
+
.m_start-6 {
|
|
6036
6109
|
inset-inline-start: 6rem !important;
|
|
6037
6110
|
}
|
|
6038
|
-
|
|
6039
|
-
.m_start-7{
|
|
6111
|
+
|
|
6112
|
+
.m_start-7 {
|
|
6040
6113
|
inset-inline-start: 7rem !important;
|
|
6041
6114
|
}
|
|
6042
|
-
|
|
6043
|
-
.m_start-8{
|
|
6115
|
+
|
|
6116
|
+
.m_start-8 {
|
|
6044
6117
|
inset-inline-start: 8rem !important;
|
|
6045
6118
|
}
|
|
6046
|
-
|
|
6047
|
-
.m_-start-1{
|
|
6119
|
+
|
|
6120
|
+
.m_-start-1 {
|
|
6048
6121
|
inset-inline-start: -1rem !important;
|
|
6049
6122
|
}
|
|
6050
|
-
|
|
6051
|
-
.m_-start-2{
|
|
6123
|
+
|
|
6124
|
+
.m_-start-2 {
|
|
6052
6125
|
inset-inline-start: -2rem !important;
|
|
6053
6126
|
}
|
|
6054
|
-
|
|
6055
|
-
.m_-start-3{
|
|
6127
|
+
|
|
6128
|
+
.m_-start-3 {
|
|
6056
6129
|
inset-inline-start: -3rem !important;
|
|
6057
6130
|
}
|
|
6058
|
-
|
|
6059
|
-
.m_-start-4{
|
|
6131
|
+
|
|
6132
|
+
.m_-start-4 {
|
|
6060
6133
|
inset-inline-start: -4rem !important;
|
|
6061
6134
|
}
|
|
6062
|
-
|
|
6063
|
-
.m_-start-5{
|
|
6135
|
+
|
|
6136
|
+
.m_-start-5 {
|
|
6064
6137
|
inset-inline-start: -5rem !important;
|
|
6065
6138
|
}
|
|
6066
|
-
|
|
6067
|
-
.m_-start-6{
|
|
6139
|
+
|
|
6140
|
+
.m_-start-6 {
|
|
6068
6141
|
inset-inline-start: -6rem !important;
|
|
6069
6142
|
}
|
|
6070
|
-
|
|
6071
|
-
.m_-start-7{
|
|
6143
|
+
|
|
6144
|
+
.m_-start-7 {
|
|
6072
6145
|
inset-inline-start: -7rem !important;
|
|
6073
6146
|
}
|
|
6074
|
-
|
|
6075
|
-
.m_-start-8{
|
|
6147
|
+
|
|
6148
|
+
.m_-start-8 {
|
|
6076
6149
|
inset-inline-start: -8rem !important;
|
|
6077
6150
|
}
|
|
6078
|
-
|
|
6079
|
-
.m_inset-inline-end,
|
|
6151
|
+
|
|
6152
|
+
.m_inset-inline-end,
|
|
6153
|
+
.m_end {
|
|
6080
6154
|
inset-inline-end: 0 !important;
|
|
6081
6155
|
}
|
|
6082
|
-
|
|
6083
|
-
.m_end-1{
|
|
6156
|
+
|
|
6157
|
+
.m_end-1 {
|
|
6084
6158
|
inset-inline-end: 1rem !important;
|
|
6085
6159
|
}
|
|
6086
|
-
|
|
6087
|
-
.m_end-2{
|
|
6160
|
+
|
|
6161
|
+
.m_end-2 {
|
|
6088
6162
|
inset-inline-end: 2rem !important;
|
|
6089
6163
|
}
|
|
6090
|
-
|
|
6091
|
-
.m_end-3{
|
|
6164
|
+
|
|
6165
|
+
.m_end-3 {
|
|
6092
6166
|
inset-inline-end: 3rem !important;
|
|
6093
6167
|
}
|
|
6094
|
-
|
|
6095
|
-
.m_end-4{
|
|
6168
|
+
|
|
6169
|
+
.m_end-4 {
|
|
6096
6170
|
inset-inline-end: 4rem !important;
|
|
6097
6171
|
}
|
|
6098
|
-
|
|
6099
|
-
.m_end-5{
|
|
6172
|
+
|
|
6173
|
+
.m_end-5 {
|
|
6100
6174
|
inset-inline-end: 5rem !important;
|
|
6101
6175
|
}
|
|
6102
|
-
|
|
6103
|
-
.m_end-6{
|
|
6176
|
+
|
|
6177
|
+
.m_end-6 {
|
|
6104
6178
|
inset-inline-end: 6rem !important;
|
|
6105
6179
|
}
|
|
6106
|
-
|
|
6107
|
-
.m_end-7{
|
|
6180
|
+
|
|
6181
|
+
.m_end-7 {
|
|
6108
6182
|
inset-inline-end: 7rem !important;
|
|
6109
6183
|
}
|
|
6110
|
-
|
|
6111
|
-
.m_end-8{
|
|
6184
|
+
|
|
6185
|
+
.m_end-8 {
|
|
6112
6186
|
inset-inline-end: 8rem !important;
|
|
6113
6187
|
}
|
|
6114
|
-
|
|
6115
|
-
.m_-end-1{
|
|
6188
|
+
|
|
6189
|
+
.m_-end-1 {
|
|
6116
6190
|
inset-inline-end: -1rem !important;
|
|
6117
6191
|
}
|
|
6118
|
-
|
|
6119
|
-
.m_-end-2{
|
|
6192
|
+
|
|
6193
|
+
.m_-end-2 {
|
|
6120
6194
|
inset-inline-end: -2rem !important;
|
|
6121
6195
|
}
|
|
6122
|
-
|
|
6123
|
-
.m_-end-3{
|
|
6196
|
+
|
|
6197
|
+
.m_-end-3 {
|
|
6124
6198
|
inset-inline-end: -3rem !important;
|
|
6125
6199
|
}
|
|
6126
|
-
|
|
6127
|
-
.m_-end-4{
|
|
6200
|
+
|
|
6201
|
+
.m_-end-4 {
|
|
6128
6202
|
inset-inline-end: -4rem !important;
|
|
6129
6203
|
}
|
|
6130
|
-
|
|
6131
|
-
.m_-end-5{
|
|
6204
|
+
|
|
6205
|
+
.m_-end-5 {
|
|
6132
6206
|
inset-inline-end: -5rem !important;
|
|
6133
6207
|
}
|
|
6134
|
-
|
|
6135
|
-
.m_-end-6{
|
|
6208
|
+
|
|
6209
|
+
.m_-end-6 {
|
|
6136
6210
|
inset-inline-end: -6rem !important;
|
|
6137
6211
|
}
|
|
6138
|
-
|
|
6139
|
-
.m_-end-7{
|
|
6212
|
+
|
|
6213
|
+
.m_-end-7 {
|
|
6140
6214
|
inset-inline-end: -7rem !important;
|
|
6141
6215
|
}
|
|
6142
|
-
|
|
6143
|
-
.m_-end-8{
|
|
6216
|
+
|
|
6217
|
+
.m_-end-8 {
|
|
6144
6218
|
inset-inline-end: -8rem !important;
|
|
6145
6219
|
}
|
|
6146
|
-
|
|
6147
|
-
.m_top,
|
|
6220
|
+
|
|
6221
|
+
.m_top,
|
|
6222
|
+
.m_top-0 {
|
|
6148
6223
|
top: 0 !important;
|
|
6149
6224
|
}
|
|
6150
|
-
|
|
6151
|
-
.m_top-1{
|
|
6225
|
+
|
|
6226
|
+
.m_top-1 {
|
|
6152
6227
|
top: 1rem !important;
|
|
6153
6228
|
}
|
|
6154
|
-
|
|
6155
|
-
.m_top-2{
|
|
6229
|
+
|
|
6230
|
+
.m_top-2 {
|
|
6156
6231
|
top: 2rem !important;
|
|
6157
6232
|
}
|
|
6158
|
-
|
|
6159
|
-
.m_top-3{
|
|
6233
|
+
|
|
6234
|
+
.m_top-3 {
|
|
6160
6235
|
top: 3rem !important;
|
|
6161
6236
|
}
|
|
6162
|
-
|
|
6163
|
-
.m_top-4{
|
|
6237
|
+
|
|
6238
|
+
.m_top-4 {
|
|
6164
6239
|
top: 4rem !important;
|
|
6165
6240
|
}
|
|
6166
|
-
|
|
6167
|
-
.m_top-5{
|
|
6241
|
+
|
|
6242
|
+
.m_top-5 {
|
|
6168
6243
|
top: 5rem !important;
|
|
6169
6244
|
}
|
|
6170
|
-
|
|
6171
|
-
.m_top-6{
|
|
6245
|
+
|
|
6246
|
+
.m_top-6 {
|
|
6172
6247
|
top: 6rem !important;
|
|
6173
6248
|
}
|
|
6174
|
-
|
|
6175
|
-
.m_top-7{
|
|
6249
|
+
|
|
6250
|
+
.m_top-7 {
|
|
6176
6251
|
top: 7rem !important;
|
|
6177
6252
|
}
|
|
6178
|
-
|
|
6179
|
-
.m_top-8{
|
|
6253
|
+
|
|
6254
|
+
.m_top-8 {
|
|
6180
6255
|
top: 8rem !important;
|
|
6181
6256
|
}
|
|
6182
|
-
|
|
6183
|
-
.m_-top-1{
|
|
6257
|
+
|
|
6258
|
+
.m_-top-1 {
|
|
6184
6259
|
top: -1rem !important;
|
|
6185
6260
|
}
|
|
6186
|
-
|
|
6187
|
-
.m_-top-2{
|
|
6261
|
+
|
|
6262
|
+
.m_-top-2 {
|
|
6188
6263
|
top: -2rem !important;
|
|
6189
6264
|
}
|
|
6190
|
-
|
|
6191
|
-
.m_-top-3{
|
|
6265
|
+
|
|
6266
|
+
.m_-top-3 {
|
|
6192
6267
|
top: -3rem !important;
|
|
6193
6268
|
}
|
|
6194
|
-
|
|
6195
|
-
.m_-top-4{
|
|
6269
|
+
|
|
6270
|
+
.m_-top-4 {
|
|
6196
6271
|
top: -4rem !important;
|
|
6197
6272
|
}
|
|
6198
|
-
|
|
6199
|
-
.m_-top-5{
|
|
6273
|
+
|
|
6274
|
+
.m_-top-5 {
|
|
6200
6275
|
top: -5rem !important;
|
|
6201
6276
|
}
|
|
6202
|
-
|
|
6203
|
-
.m_-top-6{
|
|
6277
|
+
|
|
6278
|
+
.m_-top-6 {
|
|
6204
6279
|
top: -6rem !important;
|
|
6205
6280
|
}
|
|
6206
|
-
|
|
6207
|
-
.m_-top-7{
|
|
6281
|
+
|
|
6282
|
+
.m_-top-7 {
|
|
6208
6283
|
top: -7rem !important;
|
|
6209
6284
|
}
|
|
6210
|
-
|
|
6211
|
-
.m_-top-8{
|
|
6285
|
+
|
|
6286
|
+
.m_-top-8 {
|
|
6212
6287
|
top: -8rem !important;
|
|
6213
6288
|
}
|
|
6214
|
-
|
|
6215
|
-
.m_bottom,
|
|
6289
|
+
|
|
6290
|
+
.m_bottom,
|
|
6291
|
+
.m_bottom-0 {
|
|
6216
6292
|
bottom: 0 !important;
|
|
6217
6293
|
}
|
|
6218
|
-
|
|
6219
|
-
.m_bottom-1{
|
|
6294
|
+
|
|
6295
|
+
.m_bottom-1 {
|
|
6220
6296
|
bottom: 1rem !important;
|
|
6221
6297
|
}
|
|
6222
|
-
|
|
6223
|
-
.m_bottom-2{
|
|
6298
|
+
|
|
6299
|
+
.m_bottom-2 {
|
|
6224
6300
|
bottom: 2rem !important;
|
|
6225
6301
|
}
|
|
6226
|
-
|
|
6227
|
-
.m_bottom-3{
|
|
6302
|
+
|
|
6303
|
+
.m_bottom-3 {
|
|
6228
6304
|
bottom: 3rem !important;
|
|
6229
6305
|
}
|
|
6230
|
-
|
|
6231
|
-
.m_bottom-4{
|
|
6306
|
+
|
|
6307
|
+
.m_bottom-4 {
|
|
6232
6308
|
bottom: 4rem !important;
|
|
6233
6309
|
}
|
|
6234
|
-
|
|
6235
|
-
.m_bottom-5{
|
|
6310
|
+
|
|
6311
|
+
.m_bottom-5 {
|
|
6236
6312
|
bottom: 5rem !important;
|
|
6237
6313
|
}
|
|
6238
|
-
|
|
6239
|
-
.m_bottom-6{
|
|
6314
|
+
|
|
6315
|
+
.m_bottom-6 {
|
|
6240
6316
|
bottom: 6rem !important;
|
|
6241
6317
|
}
|
|
6242
|
-
|
|
6243
|
-
.m_bottom-7{
|
|
6318
|
+
|
|
6319
|
+
.m_bottom-7 {
|
|
6244
6320
|
bottom: 7rem !important;
|
|
6245
6321
|
}
|
|
6246
|
-
|
|
6247
|
-
.m_bottom-8{
|
|
6322
|
+
|
|
6323
|
+
.m_bottom-8 {
|
|
6248
6324
|
bottom: 8rem !important;
|
|
6249
6325
|
}
|
|
6250
|
-
|
|
6251
|
-
.m_-bottom-1{
|
|
6326
|
+
|
|
6327
|
+
.m_-bottom-1 {
|
|
6252
6328
|
bottom: -1rem !important;
|
|
6253
6329
|
}
|
|
6254
|
-
|
|
6255
|
-
.m_-bottom-2{
|
|
6330
|
+
|
|
6331
|
+
.m_-bottom-2 {
|
|
6256
6332
|
bottom: -2rem !important;
|
|
6257
6333
|
}
|
|
6258
|
-
|
|
6259
|
-
.m_-bottom-3{
|
|
6334
|
+
|
|
6335
|
+
.m_-bottom-3 {
|
|
6260
6336
|
bottom: -3rem !important;
|
|
6261
6337
|
}
|
|
6262
|
-
|
|
6263
|
-
.m_-bottom-4{
|
|
6338
|
+
|
|
6339
|
+
.m_-bottom-4 {
|
|
6264
6340
|
bottom: -4rem !important;
|
|
6265
6341
|
}
|
|
6266
|
-
|
|
6267
|
-
.m_-bottom-5{
|
|
6342
|
+
|
|
6343
|
+
.m_-bottom-5 {
|
|
6268
6344
|
bottom: -5rem !important;
|
|
6269
6345
|
}
|
|
6270
|
-
|
|
6271
|
-
.m_-bottom-6{
|
|
6346
|
+
|
|
6347
|
+
.m_-bottom-6 {
|
|
6272
6348
|
bottom: -6rem !important;
|
|
6273
6349
|
}
|
|
6274
|
-
|
|
6275
|
-
.m_-bottom-7{
|
|
6350
|
+
|
|
6351
|
+
.m_-bottom-7 {
|
|
6276
6352
|
bottom: -7rem !important;
|
|
6277
6353
|
}
|
|
6278
|
-
|
|
6279
|
-
.m_-bottom-8{
|
|
6354
|
+
|
|
6355
|
+
.m_-bottom-8 {
|
|
6280
6356
|
bottom: -8rem !important;
|
|
6281
6357
|
}
|
|
6282
|
-
|
|
6358
|
+
|
|
6359
|
+
.m_inset-0,
|
|
6360
|
+
.m_inset {
|
|
6283
6361
|
inset: 0;
|
|
6284
6362
|
}
|
|
6285
|
-
|
|
6363
|
+
|
|
6364
|
+
.m_inset-1 {
|
|
6286
6365
|
inset: 1rem;
|
|
6287
6366
|
}
|
|
6288
|
-
|
|
6367
|
+
|
|
6368
|
+
.m_inset-2 {
|
|
6289
6369
|
inset: 2rem;
|
|
6290
6370
|
}
|
|
6291
|
-
|
|
6292
|
-
.m_inset-3{
|
|
6371
|
+
|
|
6372
|
+
.m_inset-3 {
|
|
6293
6373
|
inset: 3rem;
|
|
6294
6374
|
}
|
|
6295
|
-
|
|
6296
|
-
.m_inset-4{
|
|
6375
|
+
|
|
6376
|
+
.m_inset-4 {
|
|
6297
6377
|
inset: 4rem;
|
|
6298
6378
|
}
|
|
6299
|
-
|
|
6300
|
-
.m_inset-5{
|
|
6379
|
+
|
|
6380
|
+
.m_inset-5 {
|
|
6301
6381
|
inset: 5rem;
|
|
6302
6382
|
}
|
|
6303
|
-
|
|
6383
|
+
|
|
6384
|
+
.m_inset-6 {
|
|
6304
6385
|
inset: 6rem;
|
|
6305
6386
|
}
|
|
6306
6387
|
}
|
|
@@ -6313,7 +6394,7 @@ select {
|
|
|
6313
6394
|
.bagel-input-error input,
|
|
6314
6395
|
.bagel-input-error button,
|
|
6315
6396
|
.bagel-input-error textarea {
|
|
6316
|
-
|
|
6397
|
+
outline: 1px solid var(--bgl-red);
|
|
6317
6398
|
}
|
|
6318
6399
|
.bagel-input {
|
|
6319
6400
|
position: relative;
|
|
@@ -6390,16 +6471,28 @@ select {
|
|
|
6390
6471
|
min-width: calc(var(--input-height) * 3);
|
|
6391
6472
|
width: 100%;
|
|
6392
6473
|
}
|
|
6393
|
-
.bagel-input input::-webkit-input-placeholder,
|
|
6474
|
+
.bagel-input input::-webkit-input-placeholder,
|
|
6475
|
+
.bagel-input textarea::-webkit-input-placeholder,
|
|
6476
|
+
.bagel-input select::-webkit-input-placeholder,
|
|
6477
|
+
.custom-select .input::-webkit-input-placeholder {
|
|
6394
6478
|
color: var(--placeholder-color);
|
|
6395
6479
|
}
|
|
6396
|
-
.bagel-input input::-moz-placeholder,
|
|
6480
|
+
.bagel-input input::-moz-placeholder,
|
|
6481
|
+
.bagel-input textarea::-moz-placeholder,
|
|
6482
|
+
.bagel-input select::-moz-placeholder,
|
|
6483
|
+
.custom-select .input::-moz-placeholder {
|
|
6397
6484
|
color: var(--placeholder-color);
|
|
6398
6485
|
}
|
|
6399
|
-
.bagel-input input:-ms-input-placeholder,
|
|
6486
|
+
.bagel-input input:-ms-input-placeholder,
|
|
6487
|
+
.bagel-input textarea:-ms-input-placeholder,
|
|
6488
|
+
.bagel-input select:-ms-input-placeholder,
|
|
6489
|
+
.custom-select .input:-ms-input-placeholder {
|
|
6400
6490
|
color: var(--placeholder-color);
|
|
6401
6491
|
}
|
|
6402
|
-
.bagel-input input::-ms-input-placeholder,
|
|
6492
|
+
.bagel-input input::-ms-input-placeholder,
|
|
6493
|
+
.bagel-input textarea::-ms-input-placeholder,
|
|
6494
|
+
.bagel-input select::-ms-input-placeholder,
|
|
6495
|
+
.custom-select .input::-ms-input-placeholder {
|
|
6403
6496
|
color: var(--placeholder-color);
|
|
6404
6497
|
}
|
|
6405
6498
|
.bagel-input input::placeholder,
|
|
@@ -6415,11 +6508,11 @@ select {
|
|
|
6415
6508
|
}
|
|
6416
6509
|
.bagel-input.search-wrap input {
|
|
6417
6510
|
-webkit-padding-end: 2rem;
|
|
6418
|
-
|
|
6511
|
+
padding-inline-end: 2rem;
|
|
6419
6512
|
}
|
|
6420
6513
|
.bagel-input.search-wrap .bgl_icon-font {
|
|
6421
6514
|
-webkit-margin-start: -1.75rem;
|
|
6422
|
-
|
|
6515
|
+
margin-inline-start: -1.75rem;
|
|
6423
6516
|
}
|
|
6424
6517
|
.bagel-input select {
|
|
6425
6518
|
height: var(--input-height);
|
|
@@ -6482,8 +6575,7 @@ select {
|
|
|
6482
6575
|
min-width: calc(var(--input-height) * 3);
|
|
6483
6576
|
width: 100%;
|
|
6484
6577
|
}
|
|
6485
|
-
.input.active
|
|
6486
|
-
.bagel-input input:focus-visible,
|
|
6578
|
+
.input.active .bagel-input input:focus-visible,
|
|
6487
6579
|
.bagel-input select:focus-visible,
|
|
6488
6580
|
.bagel-input textarea:focus-visible,
|
|
6489
6581
|
.bagel-input button:focus-visible,
|
|
@@ -6558,10 +6650,6 @@ select {
|
|
|
6558
6650
|
.bagel-input.wider input {
|
|
6559
6651
|
min-width: 120px;
|
|
6560
6652
|
}
|
|
6561
|
-
|
|
6562
|
-
.bagel-input label {
|
|
6563
|
-
line-height: 1.2;
|
|
6564
|
-
}
|
|
6565
6653
|
}
|
|
6566
6654
|
.bgl_btn,
|
|
6567
6655
|
.bgl_flatBtn,
|
|
@@ -7537,6 +7625,12 @@ select {
|
|
|
7537
7625
|
.color-blue-light {
|
|
7538
7626
|
color: var(--bgl-blue-light) !important;
|
|
7539
7627
|
}
|
|
7628
|
+
.bg-bg {
|
|
7629
|
+
background: var(--bgl-bg) !important;
|
|
7630
|
+
}
|
|
7631
|
+
.color-bg {
|
|
7632
|
+
color: var(--bgl-bg) !important;
|
|
7633
|
+
}
|
|
7540
7634
|
.bg-black {
|
|
7541
7635
|
background: var(--bgl-black) !important;
|
|
7542
7636
|
}
|
|
@@ -7618,118 +7712,138 @@ select {
|
|
|
7618
7712
|
.color-green {
|
|
7619
7713
|
color: var(--bgl-green) !important;
|
|
7620
7714
|
}
|
|
7621
|
-
.bg-input-white input
|
|
7715
|
+
.bg-input-white input,
|
|
7716
|
+
.bg-input-white .selectinput-btn {
|
|
7622
7717
|
background: var(--bgl-white) !important;
|
|
7623
7718
|
}
|
|
7624
7719
|
.color-input-white input {
|
|
7625
7720
|
color: var(--bgl-white) !important;
|
|
7626
7721
|
}
|
|
7627
|
-
.bg-input-primary input
|
|
7722
|
+
.bg-input-primary input,
|
|
7723
|
+
.bg-input-primary .selectinput-btn {
|
|
7628
7724
|
background: var(--bgl-primary) !important;
|
|
7629
7725
|
}
|
|
7630
7726
|
.color-input-primary input {
|
|
7631
7727
|
color: var(--bgl-primary) !important;
|
|
7632
7728
|
}
|
|
7633
|
-
.bg-input-primary-tint input
|
|
7729
|
+
.bg-input-primary-tint input,
|
|
7730
|
+
.bg-input-primary-tint .selectinput-btn {
|
|
7634
7731
|
background: var(--bgl-primary-tint) !important;
|
|
7635
7732
|
}
|
|
7636
7733
|
.color-input-primary-tint input {
|
|
7637
7734
|
color: var(--bgl-primary-tint) !important;
|
|
7638
7735
|
}
|
|
7639
|
-
.bg-input-primary-light input
|
|
7736
|
+
.bg-input-primary-light input,
|
|
7737
|
+
.bg-input-primary-light .selectinput-btn {
|
|
7640
7738
|
background: var(--bgl-primary-light) !important;
|
|
7641
7739
|
}
|
|
7642
7740
|
.color-input-primary-light input {
|
|
7643
7741
|
color: var(--bgl-primary-light) !important;
|
|
7644
7742
|
}
|
|
7645
|
-
.bg-input-blue-20 input
|
|
7743
|
+
.bg-input-blue-20 input,
|
|
7744
|
+
.bg-input-blue-20 .selectinput-btn {
|
|
7646
7745
|
background: var(--bgl-blue-20) !important;
|
|
7647
7746
|
}
|
|
7648
7747
|
.color-input-blue-20 input {
|
|
7649
7748
|
color: var(--bgl-blue-20) !important;
|
|
7650
7749
|
}
|
|
7651
|
-
.bg-input-blue-dark input
|
|
7750
|
+
.bg-input-blue-dark input,
|
|
7751
|
+
.bg-input-blue-dark .selectinput-btn {
|
|
7652
7752
|
background: var(--bgl-blue-dark) !important;
|
|
7653
7753
|
}
|
|
7654
7754
|
.color-input-blue-dark input {
|
|
7655
7755
|
color: var(--bgl-blue-dark) !important;
|
|
7656
7756
|
}
|
|
7657
|
-
.bg-input-blue-light input
|
|
7757
|
+
.bg-input-blue-light input,
|
|
7758
|
+
.bg-input-blue-light .selectinput-btn {
|
|
7658
7759
|
background: var(--bgl-blue-light) !important;
|
|
7659
7760
|
}
|
|
7660
7761
|
.color-input-blue-light input {
|
|
7661
7762
|
color: var(--bgl-blue-light) !important;
|
|
7662
7763
|
}
|
|
7663
|
-
.bg-input-black input
|
|
7764
|
+
.bg-input-black input,
|
|
7765
|
+
.bg-input-black .selectinput-btn {
|
|
7664
7766
|
background: var(--bgl-black) !important;
|
|
7665
7767
|
}
|
|
7666
7768
|
.color-input-black input {
|
|
7667
7769
|
color: var(--bgl-black) !important;
|
|
7668
7770
|
}
|
|
7669
|
-
.bg-input-black-tint input
|
|
7771
|
+
.bg-input-black-tint input,
|
|
7772
|
+
.bg-input-black-tint .selectinput-btn {
|
|
7670
7773
|
background: var(--bgl-black-tint) !important;
|
|
7671
7774
|
}
|
|
7672
7775
|
.color-input-black-tint input {
|
|
7673
7776
|
color: var(--bgl-black-tint) !important;
|
|
7674
7777
|
}
|
|
7675
|
-
.bg-input-gray input
|
|
7778
|
+
.bg-input-gray input,
|
|
7779
|
+
.bg-input-gray .selectinput-btn {
|
|
7676
7780
|
background: var(--bgl-gray) !important;
|
|
7677
7781
|
}
|
|
7678
7782
|
.color-input-gray input {
|
|
7679
7783
|
color: var(--bgl-gray) !important;
|
|
7680
7784
|
}
|
|
7681
|
-
.bg-input-gray-light input
|
|
7785
|
+
.bg-input-gray-light input,
|
|
7786
|
+
.bg-input-gray-light .selectinput-btn {
|
|
7682
7787
|
background: var(--bgl-gray-light) !important;
|
|
7683
7788
|
}
|
|
7684
7789
|
.color-input-gray-light input {
|
|
7685
7790
|
color: var(--bgl-gray-light) !important;
|
|
7686
7791
|
}
|
|
7687
|
-
.bg-input-gray-80 input
|
|
7792
|
+
.bg-input-gray-80 input,
|
|
7793
|
+
.bg-input-gray-80 .selectinput-btn {
|
|
7688
7794
|
background: var(--bgl-gray-80) !important;
|
|
7689
7795
|
}
|
|
7690
7796
|
.color-input-gray-80 input {
|
|
7691
7797
|
color: var(--bgl-gray-80) !important;
|
|
7692
7798
|
}
|
|
7693
|
-
.bg-input-gray-20 input
|
|
7799
|
+
.bg-input-gray-20 input,
|
|
7800
|
+
.bg-input-gray-20 .selectinput-btn {
|
|
7694
7801
|
background: var(--bgl-gray-20) !important;
|
|
7695
7802
|
}
|
|
7696
7803
|
.color-input-gray-20 input {
|
|
7697
7804
|
color: var(--bgl-gray-20) !important;
|
|
7698
7805
|
}
|
|
7699
|
-
.bg-input-pink input
|
|
7806
|
+
.bg-input-pink input,
|
|
7807
|
+
.bg-input-pink .selectinput-btn {
|
|
7700
7808
|
background: var(--bgl-pink) !important;
|
|
7701
7809
|
}
|
|
7702
7810
|
.color-input-pink input {
|
|
7703
7811
|
color: var(--bgl-pink) !important;
|
|
7704
7812
|
}
|
|
7705
|
-
.bg-input-red input
|
|
7813
|
+
.bg-input-red input,
|
|
7814
|
+
.bg-input-red .selectinput-btn {
|
|
7706
7815
|
background: var(--bgl-red) !important;
|
|
7707
7816
|
}
|
|
7708
7817
|
.color-input-red input {
|
|
7709
7818
|
color: var(--bgl-red) !important;
|
|
7710
7819
|
}
|
|
7711
|
-
.bg-input-red-tint input
|
|
7820
|
+
.bg-input-red-tint input,
|
|
7821
|
+
.bg-input-red-tint .selectinput-btn {
|
|
7712
7822
|
background: var(--bgl-red-tint) !important;
|
|
7713
7823
|
}
|
|
7714
7824
|
.color-input-red-tint input {
|
|
7715
7825
|
color: var(--bgl-red-tint) !important;
|
|
7716
7826
|
}
|
|
7717
|
-
.bg-input-yellow input
|
|
7827
|
+
.bg-input-yellow input,
|
|
7828
|
+
.bg-input-yellow .selectinput-btn {
|
|
7718
7829
|
background: var(--bgl-yellow) !important;
|
|
7719
7830
|
}
|
|
7720
7831
|
.color-input-yellow input {
|
|
7721
7832
|
color: var(--bgl-yellow) !important;
|
|
7722
7833
|
}
|
|
7723
|
-
.bg-input-yellow-light input
|
|
7834
|
+
.bg-input-yellow-light input,
|
|
7835
|
+
.bg-input-yellow-light .selectinput-btn {
|
|
7724
7836
|
background: var(--bgl-yellow-light) !important;
|
|
7725
7837
|
}
|
|
7726
7838
|
.color-input-yellow-light input {
|
|
7727
7839
|
color: var(--bgl-yellow-light) !important;
|
|
7728
7840
|
}
|
|
7729
|
-
.bg-input-green input
|
|
7841
|
+
.bg-input-green input,
|
|
7842
|
+
.bg-input-green .selectinput-btn {
|
|
7730
7843
|
background: var(--bgl-green) !important;
|
|
7731
7844
|
}
|
|
7732
|
-
.bg-input-transparent input
|
|
7845
|
+
.bg-input-transparent input,
|
|
7846
|
+
.bg-input-transparent .selectinput-btn {
|
|
7733
7847
|
background: transparent !important;
|
|
7734
7848
|
}
|
|
7735
7849
|
.color-input-green input {
|
|
@@ -7786,6 +7900,9 @@ select {
|
|
|
7786
7900
|
.border-end-none {
|
|
7787
7901
|
border-inline-end: none !important
|
|
7788
7902
|
}
|
|
7903
|
+
.border-none {
|
|
7904
|
+
border: none !important
|
|
7905
|
+
}
|
|
7789
7906
|
.border-inner-bottom-none>* {
|
|
7790
7907
|
border-bottom: none !important
|
|
7791
7908
|
}
|
|
@@ -7798,6 +7915,15 @@ select {
|
|
|
7798
7915
|
.border-inner-end-none>* {
|
|
7799
7916
|
border-inline-end: none !important
|
|
7800
7917
|
}
|
|
7918
|
+
.border-inner-none>* {
|
|
7919
|
+
border: none !important
|
|
7920
|
+
}
|
|
7921
|
+
.user-select-none {
|
|
7922
|
+
user-select: none;
|
|
7923
|
+
}
|
|
7924
|
+
.user-select-all {
|
|
7925
|
+
user-select: all;
|
|
7926
|
+
}
|
|
7801
7927
|
@media screen and (max-width: 910px) {
|
|
7802
7928
|
.m_opacity-0 {
|
|
7803
7929
|
opacity: 0;
|
|
@@ -8061,7 +8187,8 @@ select {
|
|
|
8061
8187
|
background: transparent !important;
|
|
8062
8188
|
}
|
|
8063
8189
|
|
|
8064
|
-
.m_bg-input-white input
|
|
8190
|
+
.m_bg-input-white input,
|
|
8191
|
+
.m_bg-input-white .selectinput-btn {
|
|
8065
8192
|
background: var(--bgl-white) !important;
|
|
8066
8193
|
}
|
|
8067
8194
|
|
|
@@ -8069,7 +8196,8 @@ select {
|
|
|
8069
8196
|
color: var(--bgl-white) !important;
|
|
8070
8197
|
}
|
|
8071
8198
|
|
|
8072
|
-
.m_bg-input-primary input
|
|
8199
|
+
.m_bg-input-primary input,
|
|
8200
|
+
.m_bg-input-primary .selectinput-btn {
|
|
8073
8201
|
background: var(--bgl-primary) !important;
|
|
8074
8202
|
}
|
|
8075
8203
|
|
|
@@ -8077,7 +8205,8 @@ select {
|
|
|
8077
8205
|
color: var(--bgl-primary) !important;
|
|
8078
8206
|
}
|
|
8079
8207
|
|
|
8080
|
-
.m_bg-input-primary-tint input
|
|
8208
|
+
.m_bg-input-primary-tint input,
|
|
8209
|
+
.m_bg-input-primary-tint .selectinput-btn {
|
|
8081
8210
|
background: var(--bgl-primary-tint) !important;
|
|
8082
8211
|
}
|
|
8083
8212
|
|
|
@@ -8085,7 +8214,8 @@ select {
|
|
|
8085
8214
|
color: var(--bgl-primary-tint) !important;
|
|
8086
8215
|
}
|
|
8087
8216
|
|
|
8088
|
-
.m_bg-input-primary-light input
|
|
8217
|
+
.m_bg-input-primary-light input,
|
|
8218
|
+
.m_bg-input-primary-light .selectinput-btn {
|
|
8089
8219
|
background: var(--bgl-primary-light) !important;
|
|
8090
8220
|
}
|
|
8091
8221
|
|
|
@@ -8093,7 +8223,8 @@ select {
|
|
|
8093
8223
|
color: var(--bgl-primary-light) !important;
|
|
8094
8224
|
}
|
|
8095
8225
|
|
|
8096
|
-
.m_bg-input-blue-20 input
|
|
8226
|
+
.m_bg-input-blue-20 input,
|
|
8227
|
+
.m_bg-input-blue-20 .selectinput-btn {
|
|
8097
8228
|
background: var(--bgl-blue-20) !important;
|
|
8098
8229
|
}
|
|
8099
8230
|
|
|
@@ -8101,7 +8232,8 @@ select {
|
|
|
8101
8232
|
color: var(--bgl-blue-20) !important;
|
|
8102
8233
|
}
|
|
8103
8234
|
|
|
8104
|
-
.m_bg-input-blue-dark input
|
|
8235
|
+
.m_bg-input-blue-dark input,
|
|
8236
|
+
.m_bg-input-blue-dark .selectinput-btn {
|
|
8105
8237
|
background: var(--bgl-blue-dark) !important;
|
|
8106
8238
|
}
|
|
8107
8239
|
|
|
@@ -8109,7 +8241,8 @@ select {
|
|
|
8109
8241
|
color: var(--bgl-blue-dark) !important;
|
|
8110
8242
|
}
|
|
8111
8243
|
|
|
8112
|
-
.m_bg-input-blue-light input
|
|
8244
|
+
.m_bg-input-blue-light input,
|
|
8245
|
+
.m_bg-input-blue-light .selectinput-btn {
|
|
8113
8246
|
background: var(--bgl-blue-light) !important;
|
|
8114
8247
|
}
|
|
8115
8248
|
|
|
@@ -8117,7 +8250,8 @@ select {
|
|
|
8117
8250
|
color: var(--bgl-blue-light) !important;
|
|
8118
8251
|
}
|
|
8119
8252
|
|
|
8120
|
-
.m_bg-input-black input
|
|
8253
|
+
.m_bg-input-black input,
|
|
8254
|
+
.m_bg-input-black .selectinput-btn {
|
|
8121
8255
|
background: var(--bgl-black) !important;
|
|
8122
8256
|
}
|
|
8123
8257
|
|
|
@@ -8125,7 +8259,8 @@ select {
|
|
|
8125
8259
|
color: var(--bgl-black) !important;
|
|
8126
8260
|
}
|
|
8127
8261
|
|
|
8128
|
-
.m_bg-input-black-tint input
|
|
8262
|
+
.m_bg-input-black-tint input,
|
|
8263
|
+
.m_bg-input-black-tint .selectinput-btn {
|
|
8129
8264
|
background: var(--bgl-black-tint) !important;
|
|
8130
8265
|
}
|
|
8131
8266
|
|
|
@@ -8133,7 +8268,8 @@ select {
|
|
|
8133
8268
|
color: var(--bgl-black-tint) !important;
|
|
8134
8269
|
}
|
|
8135
8270
|
|
|
8136
|
-
.m_bg-input-gray input
|
|
8271
|
+
.m_bg-input-gray input,
|
|
8272
|
+
.m_bg-input-gray .selectinput-btn {
|
|
8137
8273
|
background: var(--bgl-gray) !important;
|
|
8138
8274
|
}
|
|
8139
8275
|
|
|
@@ -8141,7 +8277,8 @@ select {
|
|
|
8141
8277
|
color: var(--bgl-gray) !important;
|
|
8142
8278
|
}
|
|
8143
8279
|
|
|
8144
|
-
.m_bg-input-gray-light input
|
|
8280
|
+
.m_bg-input-gray-light input,
|
|
8281
|
+
.m_bg-input-gray-light .selectinput-btn {
|
|
8145
8282
|
background: var(--bgl-gray-light) !important;
|
|
8146
8283
|
}
|
|
8147
8284
|
|
|
@@ -8149,7 +8286,8 @@ select {
|
|
|
8149
8286
|
color: var(--bgl-gray-light) !important;
|
|
8150
8287
|
}
|
|
8151
8288
|
|
|
8152
|
-
.m_bg-input-gray-80 input
|
|
8289
|
+
.m_bg-input-gray-80 input,
|
|
8290
|
+
.m_bg-input-gray-80 .selectinput-btn {
|
|
8153
8291
|
background: var(--bgl-gray-80) !important;
|
|
8154
8292
|
}
|
|
8155
8293
|
|
|
@@ -8157,7 +8295,8 @@ select {
|
|
|
8157
8295
|
color: var(--bgl-gray-80) !important;
|
|
8158
8296
|
}
|
|
8159
8297
|
|
|
8160
|
-
.m_bg-input-gray-20 input
|
|
8298
|
+
.m_bg-input-gray-20 input,
|
|
8299
|
+
.m_bg-input-gray-20 .selectinput-btn {
|
|
8161
8300
|
background: var(--bgl-gray-20) !important;
|
|
8162
8301
|
}
|
|
8163
8302
|
|
|
@@ -8165,7 +8304,8 @@ select {
|
|
|
8165
8304
|
color: var(--bgl-gray-20) !important;
|
|
8166
8305
|
}
|
|
8167
8306
|
|
|
8168
|
-
.m_bg-input-pink input
|
|
8307
|
+
.m_bg-input-pink input,
|
|
8308
|
+
.m_bg-input-pink .selectinput-btn {
|
|
8169
8309
|
background: var(--bgl-pink) !important;
|
|
8170
8310
|
}
|
|
8171
8311
|
|
|
@@ -8173,7 +8313,8 @@ select {
|
|
|
8173
8313
|
color: var(--bgl-pink) !important;
|
|
8174
8314
|
}
|
|
8175
8315
|
|
|
8176
|
-
.m_bg-input-red input
|
|
8316
|
+
.m_bg-input-red input,
|
|
8317
|
+
.m_bg-input-red .selectinput-btn {
|
|
8177
8318
|
background: var(--bgl-red) !important;
|
|
8178
8319
|
}
|
|
8179
8320
|
|
|
@@ -8181,7 +8322,8 @@ select {
|
|
|
8181
8322
|
color: var(--bgl-red) !important;
|
|
8182
8323
|
}
|
|
8183
8324
|
|
|
8184
|
-
.m_bg-input-red-tint input
|
|
8325
|
+
.m_bg-input-red-tint input,
|
|
8326
|
+
.m_bg-input-red-tint .selectinput-btn {
|
|
8185
8327
|
background: var(--bgl-red-tint) !important;
|
|
8186
8328
|
}
|
|
8187
8329
|
|
|
@@ -8189,7 +8331,8 @@ select {
|
|
|
8189
8331
|
color: var(--bgl-red-tint) !important;
|
|
8190
8332
|
}
|
|
8191
8333
|
|
|
8192
|
-
.m_bg-input-yellow input
|
|
8334
|
+
.m_bg-input-yellow input,
|
|
8335
|
+
.m_bg-input-yellow .selectinput-btn {
|
|
8193
8336
|
background: var(--bgl-yellow) !important;
|
|
8194
8337
|
}
|
|
8195
8338
|
|
|
@@ -8197,7 +8340,8 @@ select {
|
|
|
8197
8340
|
color: var(--bgl-yellow) !important;
|
|
8198
8341
|
}
|
|
8199
8342
|
|
|
8200
|
-
.m_bg-input-yellow-light input
|
|
8343
|
+
.m_bg-input-yellow-light input,
|
|
8344
|
+
.m_bg-input-yellow-light .selectinput-btn {
|
|
8201
8345
|
background: var(--bgl-yellow-light) !important;
|
|
8202
8346
|
}
|
|
8203
8347
|
|
|
@@ -8205,7 +8349,8 @@ select {
|
|
|
8205
8349
|
color: var(--bgl-yellow-light) !important;
|
|
8206
8350
|
}
|
|
8207
8351
|
|
|
8208
|
-
.m_bg-input-green input
|
|
8352
|
+
.m_bg-input-green input,
|
|
8353
|
+
.m_bg-input-green .selectinput-btn {
|
|
8209
8354
|
background: var(--bgl-green) !important;
|
|
8210
8355
|
}
|
|
8211
8356
|
|
|
@@ -8213,7 +8358,8 @@ select {
|
|
|
8213
8358
|
color: var(--bgl-green) !important;
|
|
8214
8359
|
}
|
|
8215
8360
|
|
|
8216
|
-
.m_bg-input-transparent input
|
|
8361
|
+
.m_bg-input-transparent input,
|
|
8362
|
+
.m_bg-input-transparent .selectinput-btn {
|
|
8217
8363
|
background: transparent !important;
|
|
8218
8364
|
}
|
|
8219
8365
|
|
|
@@ -8252,6 +8398,10 @@ select {
|
|
|
8252
8398
|
border-inline-end: 1px solid var(--border-color)
|
|
8253
8399
|
}
|
|
8254
8400
|
|
|
8401
|
+
.m_border-none {
|
|
8402
|
+
border: none !important
|
|
8403
|
+
}
|
|
8404
|
+
|
|
8255
8405
|
.m_border-inner-bottom>* {
|
|
8256
8406
|
border-bottom: 1px solid var(--border-color)
|
|
8257
8407
|
}
|
|
@@ -8268,6 +8418,11 @@ select {
|
|
|
8268
8418
|
border-inline-end: 1px solid var(--border-color)
|
|
8269
8419
|
}
|
|
8270
8420
|
|
|
8421
|
+
.m_border-inner-none>* {
|
|
8422
|
+
border: none !important
|
|
8423
|
+
}
|
|
8424
|
+
|
|
8425
|
+
|
|
8271
8426
|
.m_border-bottom-none {
|
|
8272
8427
|
border-bottom: none !important
|
|
8273
8428
|
}
|
|
@@ -8299,6 +8454,14 @@ select {
|
|
|
8299
8454
|
.m_border-inner-end-none>* {
|
|
8300
8455
|
border-inline-end: none !important
|
|
8301
8456
|
}
|
|
8457
|
+
|
|
8458
|
+
.m_user-select-none {
|
|
8459
|
+
user-select: none;
|
|
8460
|
+
}
|
|
8461
|
+
|
|
8462
|
+
.m_user-select-all {
|
|
8463
|
+
user-select: all;
|
|
8464
|
+
}
|
|
8302
8465
|
}
|
|
8303
8466
|
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@300;400;500;600;700&display=swap"); */
|
|
8304
8467
|
/*noinspection CssUnknownTarget*/
|