@bagelink/vue 0.0.552 → 0.0.558
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/AccordionItem.vue.d.ts.map +1 -1
- package/dist/components/TableSchema.vue.d.ts +1 -50
- package/dist/components/TableSchema.vue.d.ts.map +1 -1
- package/dist/components/form/BglField.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText2/Toolbar.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText2/formatting.d.ts.map +1 -1
- package/dist/index.cjs +41 -40
- package/dist/index.mjs +41 -40
- package/dist/style.css +520 -119
- package/dist/utils/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/AccordionItem.vue +4 -0
- package/src/components/Btn.vue +2 -2
- package/src/components/TableSchema.vue +9 -9
- package/src/components/form/BglField.vue +16 -19
- package/src/components/form/inputs/DateInput.vue +4 -0
- package/src/components/form/inputs/RichText2/Toolbar.vue +1 -0
- package/src/components/form/inputs/RichText2/formatting.ts +18 -12
- package/src/styles/layout.css +230 -1
- package/src/styles/mobilLayout.css +264 -40
- package/src/utils/index.ts +1 -0
package/dist/style.css
CHANGED
|
@@ -248,19 +248,19 @@
|
|
|
248
248
|
}
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
-
a[data-v-
|
|
251
|
+
a[data-v-65a6e961] {
|
|
252
252
|
text-decoration: none;
|
|
253
253
|
}
|
|
254
|
-
.loading[data-v-
|
|
254
|
+
.loading[data-v-65a6e961] {
|
|
255
255
|
border: 1px solid var(--bgl-white);
|
|
256
256
|
border-bottom: 2px solid var(--bgl-white);
|
|
257
|
-
animation: spin-
|
|
257
|
+
animation: spin-65a6e961 1s linear infinite;
|
|
258
258
|
border-radius: 100px;
|
|
259
259
|
width: 1rem;
|
|
260
260
|
height: 1rem;
|
|
261
261
|
margin: auto;
|
|
262
262
|
}
|
|
263
|
-
@keyframes spin-
|
|
263
|
+
@keyframes spin-65a6e961 {
|
|
264
264
|
0% {
|
|
265
265
|
transform: rotate(0deg);
|
|
266
266
|
}
|
|
@@ -268,7 +268,7 @@ a[data-v-7f505d62] {
|
|
|
268
268
|
transform: rotate(360deg);
|
|
269
269
|
}
|
|
270
270
|
}
|
|
271
|
-
.bgl_btn-icon[data-v-
|
|
271
|
+
.bgl_btn-icon[data-v-65a6e961] {
|
|
272
272
|
height: var(--btn-height);
|
|
273
273
|
width: var(--btn-height);
|
|
274
274
|
border-radius: 100%;
|
|
@@ -278,101 +278,101 @@ a[data-v-7f505d62] {
|
|
|
278
278
|
flex-shrink: 0;
|
|
279
279
|
transition: var(--bgl-transition);
|
|
280
280
|
}
|
|
281
|
-
.bgl_btn[data-v-
|
|
281
|
+
.bgl_btn[data-v-65a6e961] {
|
|
282
282
|
padding-left: var(--btn-padding);
|
|
283
283
|
padding-right: var(--btn-padding);
|
|
284
284
|
transition: var(--bgl-transition);
|
|
285
285
|
text-decoration: none;
|
|
286
286
|
}
|
|
287
|
-
.bgl_btn[disabled="true"][data-v-
|
|
287
|
+
.bgl_btn[disabled="true"][data-v-65a6e961] {
|
|
288
288
|
opacity: 0.5;
|
|
289
289
|
cursor: not-allowed;
|
|
290
290
|
}
|
|
291
|
-
.bgl_btn-flex[data-v-
|
|
291
|
+
.bgl_btn-flex[data-v-65a6e961] {
|
|
292
292
|
display: flex;
|
|
293
293
|
align-items: center;
|
|
294
294
|
gap: 0.5rem;
|
|
295
295
|
justify-content: center;
|
|
296
296
|
}
|
|
297
|
-
.bgl_btn .bgl_.bgl_icon-font[data-v-
|
|
297
|
+
.bgl_btn .bgl_.bgl_icon-font[data-v-65a6e961] {
|
|
298
298
|
font-size: calc(var(--input-font-size) * 1.3);
|
|
299
299
|
}
|
|
300
|
-
.bgl_btn[data-v-
|
|
301
|
-
.bgl_btn-icon[data-v-
|
|
302
|
-
background-color: var(--
|
|
303
|
-
color: var(--
|
|
300
|
+
.bgl_btn[data-v-65a6e961],
|
|
301
|
+
.bgl_btn-icon[data-v-65a6e961] {
|
|
302
|
+
background-color: var(--5113a6cf);
|
|
303
|
+
color: var(--ae07d62c);
|
|
304
304
|
}
|
|
305
|
-
.bgl_btn[data-v-
|
|
306
|
-
.bgl_btn-icon[data-v-
|
|
305
|
+
.bgl_btn[data-v-65a6e961]:hover,
|
|
306
|
+
.bgl_btn-icon[data-v-65a6e961]:hover {
|
|
307
307
|
filter: var(--bgl-hover-filter);
|
|
308
308
|
}
|
|
309
|
-
.bgl_btn[data-v-
|
|
310
|
-
.bgl_btn-icon[data-v-
|
|
309
|
+
.bgl_btn[data-v-65a6e961]:active,
|
|
310
|
+
.bgl_btn-icon[data-v-65a6e961]:active {
|
|
311
311
|
filter: var(--bgl-active-filter);
|
|
312
312
|
}
|
|
313
|
-
.bgl_btn.bgl_flatBtn[data-v-
|
|
313
|
+
.bgl_btn.bgl_flatBtn[data-v-65a6e961] {
|
|
314
314
|
padding-left: var(--btn-padding);
|
|
315
315
|
padding-right: var(--btn-padding);
|
|
316
316
|
background: transparent;
|
|
317
317
|
}
|
|
318
|
-
.bgl_btn-icon.bgl_flatBtn[data-v-
|
|
318
|
+
.bgl_btn-icon.bgl_flatBtn[data-v-65a6e961] {
|
|
319
319
|
background: transparent;
|
|
320
320
|
}
|
|
321
|
-
.bgl_btn.bgl_flatBtn[data-v-
|
|
322
|
-
.bgl_btn-icon.bgl_flatBtn[data-v-
|
|
321
|
+
.bgl_btn.bgl_flatBtn[data-v-65a6e961]:hover,
|
|
322
|
+
.bgl_btn-icon.bgl_flatBtn[data-v-65a6e961]:hover {
|
|
323
323
|
filter: var(--bgl-active-filter);
|
|
324
324
|
}
|
|
325
|
-
.bgl_btn.bgl_flatBtn[data-v-
|
|
326
|
-
.bgl_btn-icon.bgl_flatBtn[data-v-
|
|
325
|
+
.bgl_btn.bgl_flatBtn[data-v-65a6e961]:active,
|
|
326
|
+
.bgl_btn-icon.bgl_flatBtn[data-v-65a6e961]:active {
|
|
327
327
|
background: var(--bgl-gray-40);
|
|
328
328
|
filter: var(--bgl-hover-filter);
|
|
329
329
|
}
|
|
330
|
-
.bgl_btn.bgl_flatBtn.red[data-v-
|
|
331
|
-
.bgl_btn-icon.bgl_flatBtn.red[data-v-
|
|
330
|
+
.bgl_btn.bgl_flatBtn.red[data-v-65a6e961],
|
|
331
|
+
.bgl_btn-icon.bgl_flatBtn.red[data-v-65a6e961] {
|
|
332
332
|
color: var(--bgl-red);
|
|
333
333
|
}
|
|
334
|
-
.bgl_btn.bgl_flatBtn.white[data-v-
|
|
335
|
-
.bgl_btn-icon.bgl_flatBtn.white[data-v-
|
|
334
|
+
.bgl_btn.bgl_flatBtn.white[data-v-65a6e961],
|
|
335
|
+
.bgl_btn-icon.bgl_flatBtn.white[data-v-65a6e961] {
|
|
336
336
|
color: var(--bgl-white);
|
|
337
337
|
}
|
|
338
|
-
.bgl_btn.bgl_flatBtn.light[data-v-
|
|
339
|
-
.bgl_btn-icon.bgl_flatBtn.light[data-v-
|
|
338
|
+
.bgl_btn.bgl_flatBtn.light[data-v-65a6e961],
|
|
339
|
+
.bgl_btn-icon.bgl_flatBtn.light[data-v-65a6e961] {
|
|
340
340
|
color: var(--bgl-primary-tint);
|
|
341
341
|
}
|
|
342
|
-
.bgl_btn.bgl_flatBtn.black[data-v-
|
|
343
|
-
.bgl_btn-icon.bgl_flatBtn.black[data-v-
|
|
342
|
+
.bgl_btn.bgl_flatBtn.black[data-v-65a6e961],
|
|
343
|
+
.bgl_btn-icon.bgl_flatBtn.black[data-v-65a6e961] {
|
|
344
344
|
color: var(--bgl-black);
|
|
345
345
|
}
|
|
346
|
-
.bgl_btn.bgl_flatBtn.gray[data-v-
|
|
347
|
-
.bgl_btn-icon.bgl_flatBtn.gray[data-v-
|
|
346
|
+
.bgl_btn.bgl_flatBtn.gray[data-v-65a6e961],
|
|
347
|
+
.bgl_btn-icon.bgl_flatBtn.gray[data-v-65a6e961] {
|
|
348
348
|
color: var(--bgl-gray);
|
|
349
349
|
}
|
|
350
|
-
.bgl_btn.thin[data-v-
|
|
350
|
+
.bgl_btn.thin[data-v-65a6e961] {
|
|
351
351
|
padding-inline: calc(var(--btn-padding) / 3);
|
|
352
352
|
border-radius: calc(var(--btn-border-radius) / 1.5);
|
|
353
353
|
}
|
|
354
|
-
.bgl_btn.round[data-v-
|
|
354
|
+
.bgl_btn.round[data-v-65a6e961] {
|
|
355
355
|
border-radius: calc(var(--btn-border-radius) * 2);
|
|
356
356
|
}
|
|
357
|
-
.bgl_btn-icon.thin[data-v-
|
|
357
|
+
.bgl_btn-icon.thin[data-v-65a6e961] {
|
|
358
358
|
height: calc(var(--btn-height) / 1.5);
|
|
359
359
|
width: calc(var(--btn-height) / 1.5);
|
|
360
360
|
line-height: 1;
|
|
361
361
|
}
|
|
362
|
-
[dir="rtl"] .bgl_.bgl_icon-font[data-v-
|
|
362
|
+
[dir="rtl"] .bgl_.bgl_icon-font[data-v-65a6e961] {
|
|
363
363
|
transform: rotateY(180deg);
|
|
364
364
|
}
|
|
365
|
-
.bgl_btn-border[data-v-
|
|
366
|
-
outline: 1px solid var(--
|
|
367
|
-
color: var(--
|
|
365
|
+
.bgl_btn-border[data-v-65a6e961] {
|
|
366
|
+
outline: 1px solid var(--5113a6cf);
|
|
367
|
+
color: var(--5113a6cf);
|
|
368
368
|
background: transparent;
|
|
369
369
|
}
|
|
370
|
-
.bgl_btn-border[data-v-
|
|
370
|
+
.bgl_btn-border[data-v-65a6e961]:hover {
|
|
371
371
|
color: var(--bgl-white);
|
|
372
|
-
background: var(--
|
|
372
|
+
background: var(--5113a6cf);
|
|
373
373
|
filter: brightness(100%);
|
|
374
374
|
}
|
|
375
|
-
.bgl_btn-border[data-v-
|
|
375
|
+
.bgl_btn-border[data-v-65a6e961]:active {
|
|
376
376
|
filter: brightness(80%);
|
|
377
377
|
}
|
|
378
378
|
.bg-dark {
|
|
@@ -540,13 +540,16 @@ a[data-v-7f505d62] {
|
|
|
540
540
|
}
|
|
541
541
|
}
|
|
542
542
|
|
|
543
|
-
.accordion-item[data-v-
|
|
543
|
+
.accordion-item[data-v-f87b579d] {
|
|
544
544
|
border-bottom: 1px solid var(--border-color);
|
|
545
545
|
transition: all 0.2s;
|
|
546
546
|
cursor: pointer;
|
|
547
547
|
overflow: hidden;
|
|
548
548
|
}
|
|
549
|
-
.accordion-
|
|
549
|
+
.accordion-item button[data-v-f87b579d]{
|
|
550
|
+
cursor: pointer;
|
|
551
|
+
}
|
|
552
|
+
.accordion-head[data-v-f87b579d] {
|
|
550
553
|
height: var(--input-height);
|
|
551
554
|
background: transparent;
|
|
552
555
|
display: flex;
|
|
@@ -555,19 +558,19 @@ a[data-v-7f505d62] {
|
|
|
555
558
|
justify-content: space-between;
|
|
556
559
|
border: none;
|
|
557
560
|
}
|
|
558
|
-
.accordion-icon[data-v-
|
|
561
|
+
.accordion-icon[data-v-f87b579d] {
|
|
559
562
|
transition: all 0.2s ease;
|
|
560
563
|
}
|
|
561
|
-
.accordion-icon.open[data-v-
|
|
564
|
+
.accordion-icon.open[data-v-f87b579d] {
|
|
562
565
|
transform: rotate(180deg);
|
|
563
566
|
}
|
|
564
|
-
.accordion-label[data-v-
|
|
567
|
+
.accordion-label[data-v-f87b579d] {
|
|
565
568
|
font-weight: bold;
|
|
566
569
|
}
|
|
567
|
-
.accordion-head:hover .accordion-label[data-v-
|
|
570
|
+
.accordion-head:hover .accordion-label[data-v-f87b579d] {
|
|
568
571
|
text-decoration: underline;
|
|
569
572
|
}
|
|
570
|
-
.accordion-body[data-v-
|
|
573
|
+
.accordion-body[data-v-f87b579d] {
|
|
571
574
|
}
|
|
572
575
|
|
|
573
576
|
.expand-enter-active,
|
|
@@ -637,41 +640,41 @@ a[data-v-7f505d62] {
|
|
|
637
640
|
}
|
|
638
641
|
}
|
|
639
642
|
|
|
640
|
-
.list-arrows[data-v-
|
|
643
|
+
.list-arrows[data-v-9d32d080] {
|
|
641
644
|
opacity: 0;
|
|
642
645
|
}
|
|
643
|
-
.list-arrows .bgl_icon-font[data-v-
|
|
646
|
+
.list-arrows .bgl_icon-font[data-v-9d32d080] {
|
|
644
647
|
transition: all ease-in-out 0.2s;
|
|
645
648
|
}
|
|
646
|
-
.list-arrows.sorted[data-v-
|
|
649
|
+
.list-arrows.sorted[data-v-9d32d080] {
|
|
647
650
|
opacity: 1;
|
|
648
651
|
}
|
|
649
|
-
.col img[data-v-
|
|
652
|
+
.col img[data-v-9d32d080] {
|
|
650
653
|
height: 35px;
|
|
651
654
|
margin-top: -14px;
|
|
652
655
|
margin-bottom: -14px;
|
|
653
656
|
border-radius: 5px;
|
|
654
657
|
}
|
|
655
|
-
.list-arrows.sorted .desc[data-v-
|
|
658
|
+
.list-arrows.sorted .desc[data-v-9d32d080] {
|
|
656
659
|
transform: rotate(180deg);
|
|
657
660
|
}
|
|
658
|
-
table[data-v-
|
|
661
|
+
table[data-v-9d32d080] {
|
|
659
662
|
border-collapse: separate;
|
|
660
663
|
border-spacing: 0 15px;
|
|
661
664
|
border-collapse: collapse;
|
|
662
665
|
}
|
|
663
|
-
th[data-v-
|
|
666
|
+
th[data-v-9d32d080] {
|
|
664
667
|
font-weight: 400;
|
|
665
668
|
}
|
|
666
|
-
.embedded-field[data-v-
|
|
669
|
+
.embedded-field[data-v-9d32d080] {
|
|
667
670
|
margin-bottom: -0.2rem;
|
|
668
671
|
margin-top: -0.2rem;
|
|
669
672
|
}
|
|
670
|
-
.row[data-v-
|
|
673
|
+
.row[data-v-9d32d080] {
|
|
671
674
|
border-bottom: 1px solid var(--border-color);
|
|
672
675
|
cursor: pointer;
|
|
673
676
|
}
|
|
674
|
-
.row.first-row[data-v-
|
|
677
|
+
.row.first-row[data-v-9d32d080] {
|
|
675
678
|
font-size: 0.8rem;
|
|
676
679
|
color: var(--bgl-black-tint);
|
|
677
680
|
position: sticky;
|
|
@@ -681,10 +684,10 @@ th[data-v-9bf1b6df] {
|
|
|
681
684
|
/* height: 50px; */
|
|
682
685
|
vertical-align: bottom;
|
|
683
686
|
}
|
|
684
|
-
.row.first-row input[type=checkbox][data-v-
|
|
687
|
+
.row.first-row input[type=checkbox][data-v-9d32d080]{
|
|
685
688
|
margin-bottom: 0.7rem;
|
|
686
689
|
}
|
|
687
|
-
.row.first-row[data-v-
|
|
690
|
+
.row.first-row[data-v-9d32d080]::after {
|
|
688
691
|
content: '';
|
|
689
692
|
border-bottom: 1px solid var(--border-color);
|
|
690
693
|
position: absolute;
|
|
@@ -692,30 +695,30 @@ th[data-v-9bf1b6df] {
|
|
|
692
695
|
right: 0;
|
|
693
696
|
bottom: -1px;
|
|
694
697
|
}
|
|
695
|
-
.first-row .col[data-v-
|
|
698
|
+
.first-row .col[data-v-9d32d080] {
|
|
696
699
|
cursor: pointer;
|
|
697
700
|
background: var(--bgl-white);
|
|
698
701
|
}
|
|
699
|
-
.col[data-v-
|
|
702
|
+
.col[data-v-9d32d080] {
|
|
700
703
|
white-space: nowrap;
|
|
701
704
|
padding: 0.75rem 1rem;
|
|
702
705
|
transition: var(--bgl-transition);
|
|
703
706
|
line-height: 1;
|
|
704
707
|
align-items: center;
|
|
705
708
|
}
|
|
706
|
-
.col[data-v-
|
|
709
|
+
.col[data-v-9d32d080]:has(.bagel-input) {
|
|
707
710
|
padding: 0rem 0.25rem;
|
|
708
711
|
}
|
|
709
|
-
.col > div[data-v-
|
|
712
|
+
.col > div[data-v-9d32d080] {
|
|
710
713
|
display: flex;
|
|
711
714
|
gap: 0.5rem;
|
|
712
715
|
}
|
|
713
|
-
.max-col-width[data-v-
|
|
716
|
+
.max-col-width[data-v-9d32d080] {
|
|
714
717
|
max-width: 30vw;
|
|
715
718
|
overflow: hidden;
|
|
716
719
|
text-overflow: ellipsis;
|
|
717
720
|
}
|
|
718
|
-
.col.check .bgl_icon-font[data-v-
|
|
721
|
+
.col.check .bgl_icon-font[data-v-9d32d080] {
|
|
719
722
|
border-radius: 100%;
|
|
720
723
|
background: var(--bgl-blue-20);
|
|
721
724
|
color: var(--bgl-primary);
|
|
@@ -726,31 +729,31 @@ th[data-v-9bf1b6df] {
|
|
|
726
729
|
justify-content: center;
|
|
727
730
|
margin-top: -2px;
|
|
728
731
|
}
|
|
729
|
-
.rows[data-v-
|
|
732
|
+
.rows[data-v-9d32d080] {
|
|
730
733
|
font-size: 0.88em;
|
|
731
734
|
}
|
|
732
|
-
.table-list[data-v-
|
|
735
|
+
.table-list[data-v-9d32d080] {
|
|
733
736
|
height: 100%;
|
|
734
737
|
position: relative;
|
|
735
738
|
padding-left: 0 !important;
|
|
736
739
|
padding-right: 0 !important;
|
|
737
740
|
overflow: auto;
|
|
738
741
|
}
|
|
739
|
-
.BagelTable .table-list[data-v-
|
|
742
|
+
.BagelTable .table-list[data-v-9d32d080] {
|
|
740
743
|
overflow: unset;
|
|
741
744
|
}
|
|
742
|
-
.row-item[data-v-
|
|
745
|
+
.row-item[data-v-9d32d080] {
|
|
743
746
|
height: 50px;
|
|
744
747
|
transition: all 200ms ease;
|
|
745
748
|
}
|
|
746
|
-
.row-item[data-v-
|
|
749
|
+
.row-item[data-v-9d32d080]:hover {
|
|
747
750
|
background: var(--bgl-gray-light);
|
|
748
751
|
}
|
|
749
|
-
.row-item input[type=checkbox][data-v-
|
|
752
|
+
.row-item input[type=checkbox][data-v-9d32d080]{
|
|
750
753
|
margin-top: 0.45rem !important;
|
|
751
754
|
accent-color: var(--bgl-primary);
|
|
752
755
|
}
|
|
753
|
-
.infinite-wrapper[data-v-
|
|
756
|
+
.infinite-wrapper[data-v-9d32d080] {
|
|
754
757
|
overflow-y: auto;
|
|
755
758
|
width: 100%;
|
|
756
759
|
}
|
|
@@ -1794,6 +1797,9 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
|
|
1794
1797
|
.dp__time_input {
|
|
1795
1798
|
direction: ltr;
|
|
1796
1799
|
}
|
|
1800
|
+
.ltrDateInput input {
|
|
1801
|
+
direction: ltr;
|
|
1802
|
+
}
|
|
1797
1803
|
|
|
1798
1804
|
.bagel-input textarea[data-v-1cbaeab2] {
|
|
1799
1805
|
font-family: monospace;
|
|
@@ -2618,7 +2624,7 @@ p {
|
|
|
2618
2624
|
background: var(--input-disabled-bg);
|
|
2619
2625
|
}
|
|
2620
2626
|
|
|
2621
|
-
.toolbar[data-v-
|
|
2627
|
+
.toolbar[data-v-4c741194] {
|
|
2622
2628
|
display: flex;
|
|
2623
2629
|
flex-wrap: wrap;
|
|
2624
2630
|
gap: 5px;
|
|
@@ -2626,11 +2632,11 @@ p {
|
|
|
2626
2632
|
background-color: #f0f0f0;
|
|
2627
2633
|
border-bottom: 1px solid #ccc;
|
|
2628
2634
|
}
|
|
2629
|
-
button[data-v-
|
|
2635
|
+
button[data-v-4c741194]:hover {
|
|
2630
2636
|
background-color: #e0e0e0;
|
|
2631
2637
|
}
|
|
2632
|
-
input[type="color"][data-v-
|
|
2633
|
-
input[type="number"][data-v-
|
|
2638
|
+
input[type="color"][data-v-4c741194],
|
|
2639
|
+
input[type="number"][data-v-4c741194] {
|
|
2634
2640
|
width: 40px;
|
|
2635
2641
|
height: 30px;
|
|
2636
2642
|
padding: 0;
|
|
@@ -2914,6 +2920,9 @@ input[type="number"][data-v-ace0040e] {
|
|
|
2914
2920
|
.round-none {
|
|
2915
2921
|
border-radius: 0 ;
|
|
2916
2922
|
}
|
|
2923
|
+
.oval{
|
|
2924
|
+
border-radius: 100% ;
|
|
2925
|
+
}
|
|
2917
2926
|
.flex-center {
|
|
2918
2927
|
justify-content: center;
|
|
2919
2928
|
align-items: center;
|
|
@@ -3020,9 +3029,105 @@ input[type="number"][data-v-ace0040e] {
|
|
|
3020
3029
|
.inset-inline-start, .start{
|
|
3021
3030
|
inset-inline-start: 0;
|
|
3022
3031
|
}
|
|
3032
|
+
.start-1{
|
|
3033
|
+
inset-inline-start: 1rem;
|
|
3034
|
+
}
|
|
3035
|
+
.start-2{
|
|
3036
|
+
inset-inline-start: 2rem;
|
|
3037
|
+
}
|
|
3038
|
+
.start-3{
|
|
3039
|
+
inset-inline-start: 3rem;
|
|
3040
|
+
}
|
|
3041
|
+
.start-4{
|
|
3042
|
+
inset-inline-start: 4rem;
|
|
3043
|
+
}
|
|
3044
|
+
.start-5{
|
|
3045
|
+
inset-inline-start: 5rem;
|
|
3046
|
+
}
|
|
3047
|
+
.start-6{
|
|
3048
|
+
inset-inline-start: 6rem;
|
|
3049
|
+
}
|
|
3050
|
+
.start-7{
|
|
3051
|
+
inset-inline-start: 7rem;
|
|
3052
|
+
}
|
|
3053
|
+
.start-8{
|
|
3054
|
+
inset-inline-start: 8rem;
|
|
3055
|
+
}
|
|
3056
|
+
.-start-1{
|
|
3057
|
+
inset-inline-start: -1rem;
|
|
3058
|
+
}
|
|
3059
|
+
.-start-2{
|
|
3060
|
+
inset-inline-start: -2rem;
|
|
3061
|
+
}
|
|
3062
|
+
.-start-3{
|
|
3063
|
+
inset-inline-start: -3rem;
|
|
3064
|
+
}
|
|
3065
|
+
.-start-4{
|
|
3066
|
+
inset-inline-start: -4rem;
|
|
3067
|
+
}
|
|
3068
|
+
.-start-5{
|
|
3069
|
+
inset-inline-start: -5rem;
|
|
3070
|
+
}
|
|
3071
|
+
.-start-6{
|
|
3072
|
+
inset-inline-start: -6rem;
|
|
3073
|
+
}
|
|
3074
|
+
.-start-7{
|
|
3075
|
+
inset-inline-start: -7rem;
|
|
3076
|
+
}
|
|
3077
|
+
.-start-8{
|
|
3078
|
+
inset-inline-start: -8rem;
|
|
3079
|
+
}
|
|
3023
3080
|
.inset-inline-end, .end{
|
|
3024
3081
|
inset-inline-end: 0;
|
|
3025
3082
|
}
|
|
3083
|
+
.end-1{
|
|
3084
|
+
inset-inline-end: 1rem;
|
|
3085
|
+
}
|
|
3086
|
+
.end-2{
|
|
3087
|
+
inset-inline-end: 2rem;
|
|
3088
|
+
}
|
|
3089
|
+
.end-3{
|
|
3090
|
+
inset-inline-end: 3rem;
|
|
3091
|
+
}
|
|
3092
|
+
.end-4{
|
|
3093
|
+
inset-inline-end: 4rem;
|
|
3094
|
+
}
|
|
3095
|
+
.end-5{
|
|
3096
|
+
inset-inline-end: 5rem;
|
|
3097
|
+
}
|
|
3098
|
+
.end-6{
|
|
3099
|
+
inset-inline-end: 6rem;
|
|
3100
|
+
}
|
|
3101
|
+
.end-7{
|
|
3102
|
+
inset-inline-end: 7rem;
|
|
3103
|
+
}
|
|
3104
|
+
.end-8{
|
|
3105
|
+
inset-inline-end: 8rem;
|
|
3106
|
+
}
|
|
3107
|
+
.-end-1{
|
|
3108
|
+
inset-inline-end: -1rem;
|
|
3109
|
+
}
|
|
3110
|
+
.-end-2{
|
|
3111
|
+
inset-inline-end: -2rem;
|
|
3112
|
+
}
|
|
3113
|
+
.-end-3{
|
|
3114
|
+
inset-inline-end: -3rem;
|
|
3115
|
+
}
|
|
3116
|
+
.-end-4{
|
|
3117
|
+
inset-inline-end: -4rem;
|
|
3118
|
+
}
|
|
3119
|
+
.-end-5{
|
|
3120
|
+
inset-inline-end: -5rem;
|
|
3121
|
+
}
|
|
3122
|
+
.-end-6{
|
|
3123
|
+
inset-inline-end: -6rem;
|
|
3124
|
+
}
|
|
3125
|
+
.-end-7{
|
|
3126
|
+
inset-inline-end: -7rem;
|
|
3127
|
+
}
|
|
3128
|
+
.-end-8{
|
|
3129
|
+
inset-inline-end: -8rem;
|
|
3130
|
+
}
|
|
3026
3131
|
.top, .top-0{
|
|
3027
3132
|
top: 0;
|
|
3028
3133
|
}
|
|
@@ -3038,6 +3143,42 @@ input[type="number"][data-v-ace0040e] {
|
|
|
3038
3143
|
.top-4{
|
|
3039
3144
|
top: 4rem;
|
|
3040
3145
|
}
|
|
3146
|
+
.top-5{
|
|
3147
|
+
top: 5rem;
|
|
3148
|
+
}
|
|
3149
|
+
.top-6{
|
|
3150
|
+
top: 6rem;
|
|
3151
|
+
}
|
|
3152
|
+
.top-7{
|
|
3153
|
+
top: 7rem;
|
|
3154
|
+
}
|
|
3155
|
+
.top-8{
|
|
3156
|
+
top: 8rem;
|
|
3157
|
+
}
|
|
3158
|
+
.-top-1{
|
|
3159
|
+
top: -1rem;
|
|
3160
|
+
}
|
|
3161
|
+
.-top-2{
|
|
3162
|
+
top: -2rem;
|
|
3163
|
+
}
|
|
3164
|
+
.-top-3{
|
|
3165
|
+
top: -3rem;
|
|
3166
|
+
}
|
|
3167
|
+
.-top-4{
|
|
3168
|
+
top: -4rem;
|
|
3169
|
+
}
|
|
3170
|
+
.-top-5{
|
|
3171
|
+
top: -5rem;
|
|
3172
|
+
}
|
|
3173
|
+
.-top-6{
|
|
3174
|
+
top: -6rem;
|
|
3175
|
+
}
|
|
3176
|
+
.-top-7{
|
|
3177
|
+
top: -7rem;
|
|
3178
|
+
}
|
|
3179
|
+
.-top-8{
|
|
3180
|
+
top: -8rem;
|
|
3181
|
+
}
|
|
3041
3182
|
.bottom, .bottom-0{
|
|
3042
3183
|
bottom: 0;
|
|
3043
3184
|
}
|
|
@@ -3053,6 +3194,42 @@ input[type="number"][data-v-ace0040e] {
|
|
|
3053
3194
|
.bottom-4{
|
|
3054
3195
|
bottom: 4rem;
|
|
3055
3196
|
}
|
|
3197
|
+
.bottom-5{
|
|
3198
|
+
bottom: 5rem;
|
|
3199
|
+
}
|
|
3200
|
+
.bottom-6{
|
|
3201
|
+
bottom: 6rem;
|
|
3202
|
+
}
|
|
3203
|
+
.bottom-7{
|
|
3204
|
+
bottom: 7rem;
|
|
3205
|
+
}
|
|
3206
|
+
.bottom-8{
|
|
3207
|
+
bottom: 8rem;
|
|
3208
|
+
}
|
|
3209
|
+
.-bottom-1{
|
|
3210
|
+
bottom: -1rem;
|
|
3211
|
+
}
|
|
3212
|
+
.-bottom-2{
|
|
3213
|
+
bottom: -2rem;
|
|
3214
|
+
}
|
|
3215
|
+
.-bottom-3{
|
|
3216
|
+
bottom: -3rem;
|
|
3217
|
+
}
|
|
3218
|
+
.-bottom-4{
|
|
3219
|
+
bottom: -4rem;
|
|
3220
|
+
}
|
|
3221
|
+
.-bottom-5{
|
|
3222
|
+
bottom: -5rem;
|
|
3223
|
+
}
|
|
3224
|
+
.-bottom-6{
|
|
3225
|
+
bottom: -6rem;
|
|
3226
|
+
}
|
|
3227
|
+
.-bottom-7{
|
|
3228
|
+
bottom: -7rem;
|
|
3229
|
+
}
|
|
3230
|
+
.-bottom-8{
|
|
3231
|
+
bottom: -8rem;
|
|
3232
|
+
}
|
|
3056
3233
|
.auto-flow-rows {
|
|
3057
3234
|
grid-auto-flow: row;
|
|
3058
3235
|
}
|
|
@@ -4486,6 +4663,10 @@ input[type="number"][data-v-ace0040e] {
|
|
|
4486
4663
|
.m_round-none {
|
|
4487
4664
|
border-radius: 0 !important;
|
|
4488
4665
|
}
|
|
4666
|
+
|
|
4667
|
+
.m_oval{
|
|
4668
|
+
border-radius: 100% ;
|
|
4669
|
+
}
|
|
4489
4670
|
|
|
4490
4671
|
.m_flex-center {
|
|
4491
4672
|
justify-items: center;
|
|
@@ -6247,58 +6428,278 @@ input[type="number"][data-v-ace0040e] {
|
|
|
6247
6428
|
inset-inline-start: 0;
|
|
6248
6429
|
inset-inline-end: 0;
|
|
6249
6430
|
}
|
|
6250
|
-
|
|
6251
|
-
|
|
6252
|
-
.m_start {
|
|
6253
|
-
inset-inline-start: 0;
|
|
6431
|
+
.m_inset-inline-start, .m_start{
|
|
6432
|
+
inset-inline-start: 0 !important;
|
|
6254
6433
|
}
|
|
6255
|
-
|
|
6256
|
-
.
|
|
6257
|
-
|
|
6258
|
-
inset-inline-end: 0;
|
|
6434
|
+
|
|
6435
|
+
.m_start-1{
|
|
6436
|
+
inset-inline-start: 1rem !important;
|
|
6259
6437
|
}
|
|
6260
|
-
|
|
6261
|
-
.
|
|
6262
|
-
|
|
6263
|
-
top: 0;
|
|
6438
|
+
|
|
6439
|
+
.m_start-2{
|
|
6440
|
+
inset-inline-start: 2rem !important;
|
|
6264
6441
|
}
|
|
6265
|
-
|
|
6266
|
-
.
|
|
6267
|
-
|
|
6442
|
+
|
|
6443
|
+
.m_start-3{
|
|
6444
|
+
inset-inline-start: 3rem !important;
|
|
6268
6445
|
}
|
|
6269
|
-
|
|
6270
|
-
.
|
|
6271
|
-
|
|
6446
|
+
|
|
6447
|
+
.m_start-4{
|
|
6448
|
+
inset-inline-start: 4rem !important;
|
|
6272
6449
|
}
|
|
6273
|
-
|
|
6274
|
-
.
|
|
6275
|
-
|
|
6450
|
+
|
|
6451
|
+
.m_start-5{
|
|
6452
|
+
inset-inline-start: 5rem !important;
|
|
6276
6453
|
}
|
|
6277
|
-
|
|
6278
|
-
.
|
|
6279
|
-
|
|
6454
|
+
|
|
6455
|
+
.m_start-6{
|
|
6456
|
+
inset-inline-start: 6rem !important;
|
|
6280
6457
|
}
|
|
6281
|
-
|
|
6282
|
-
.
|
|
6283
|
-
|
|
6284
|
-
bottom: 0;
|
|
6458
|
+
|
|
6459
|
+
.m_start-7{
|
|
6460
|
+
inset-inline-start: 7rem !important;
|
|
6285
6461
|
}
|
|
6286
|
-
|
|
6287
|
-
.
|
|
6288
|
-
|
|
6462
|
+
|
|
6463
|
+
.m_start-8{
|
|
6464
|
+
inset-inline-start: 8rem !important;
|
|
6289
6465
|
}
|
|
6290
|
-
|
|
6291
|
-
.
|
|
6292
|
-
|
|
6466
|
+
|
|
6467
|
+
.m_-start-1{
|
|
6468
|
+
inset-inline-start: -1rem !important;
|
|
6293
6469
|
}
|
|
6294
|
-
|
|
6295
|
-
.
|
|
6296
|
-
|
|
6470
|
+
|
|
6471
|
+
.m_-start-2{
|
|
6472
|
+
inset-inline-start: -2rem !important;
|
|
6297
6473
|
}
|
|
6298
|
-
|
|
6299
|
-
.
|
|
6300
|
-
|
|
6474
|
+
|
|
6475
|
+
.m_-start-3{
|
|
6476
|
+
inset-inline-start: -3rem !important;
|
|
6477
|
+
}
|
|
6478
|
+
|
|
6479
|
+
.m_-start-4{
|
|
6480
|
+
inset-inline-start: -4rem !important;
|
|
6481
|
+
}
|
|
6482
|
+
|
|
6483
|
+
.m_-start-5{
|
|
6484
|
+
inset-inline-start: -5rem !important;
|
|
6485
|
+
}
|
|
6486
|
+
|
|
6487
|
+
.m_-start-6{
|
|
6488
|
+
inset-inline-start: -6rem !important;
|
|
6489
|
+
}
|
|
6490
|
+
|
|
6491
|
+
.m_-start-7{
|
|
6492
|
+
inset-inline-start: -7rem !important;
|
|
6493
|
+
}
|
|
6494
|
+
|
|
6495
|
+
.m_-start-8{
|
|
6496
|
+
inset-inline-start: -8rem !important;
|
|
6301
6497
|
}
|
|
6498
|
+
|
|
6499
|
+
.m_inset-inline-end, .m_end{
|
|
6500
|
+
inset-inline-end: 0 !important;
|
|
6501
|
+
}
|
|
6502
|
+
|
|
6503
|
+
.m_end-1{
|
|
6504
|
+
inset-inline-end: 1rem !important;
|
|
6505
|
+
}
|
|
6506
|
+
|
|
6507
|
+
.m_end-2{
|
|
6508
|
+
inset-inline-end: 2rem !important;
|
|
6509
|
+
}
|
|
6510
|
+
|
|
6511
|
+
.m_end-3{
|
|
6512
|
+
inset-inline-end: 3rem !important;
|
|
6513
|
+
}
|
|
6514
|
+
|
|
6515
|
+
.m_end-4{
|
|
6516
|
+
inset-inline-end: 4rem !important;
|
|
6517
|
+
}
|
|
6518
|
+
|
|
6519
|
+
.m_end-5{
|
|
6520
|
+
inset-inline-end: 5rem !important;
|
|
6521
|
+
}
|
|
6522
|
+
|
|
6523
|
+
.m_end-6{
|
|
6524
|
+
inset-inline-end: 6rem !important;
|
|
6525
|
+
}
|
|
6526
|
+
|
|
6527
|
+
.m_end-7{
|
|
6528
|
+
inset-inline-end: 7rem !important;
|
|
6529
|
+
}
|
|
6530
|
+
|
|
6531
|
+
.m_end-8{
|
|
6532
|
+
inset-inline-end: 8rem !important;
|
|
6533
|
+
}
|
|
6534
|
+
|
|
6535
|
+
.m_-end-1{
|
|
6536
|
+
inset-inline-end: -1rem !important;
|
|
6537
|
+
}
|
|
6538
|
+
|
|
6539
|
+
.m_-end-2{
|
|
6540
|
+
inset-inline-end: -2rem !important;
|
|
6541
|
+
}
|
|
6542
|
+
|
|
6543
|
+
.m_-end-3{
|
|
6544
|
+
inset-inline-end: -3rem !important;
|
|
6545
|
+
}
|
|
6546
|
+
|
|
6547
|
+
.m_-end-4{
|
|
6548
|
+
inset-inline-end: -4rem !important;
|
|
6549
|
+
}
|
|
6550
|
+
|
|
6551
|
+
.m_-end-5{
|
|
6552
|
+
inset-inline-end: -5rem !important;
|
|
6553
|
+
}
|
|
6554
|
+
|
|
6555
|
+
.m_-end-6{
|
|
6556
|
+
inset-inline-end: -6rem !important;
|
|
6557
|
+
}
|
|
6558
|
+
|
|
6559
|
+
.m_-end-7{
|
|
6560
|
+
inset-inline-end: -7rem !important;
|
|
6561
|
+
}
|
|
6562
|
+
|
|
6563
|
+
.m_-end-8{
|
|
6564
|
+
inset-inline-end: -8rem !important;
|
|
6565
|
+
}
|
|
6566
|
+
|
|
6567
|
+
.m_top, .m_top-0{
|
|
6568
|
+
top: 0 !important;
|
|
6569
|
+
}
|
|
6570
|
+
|
|
6571
|
+
.m_top-1{
|
|
6572
|
+
top: 1rem !important;
|
|
6573
|
+
}
|
|
6574
|
+
|
|
6575
|
+
.m_top-2{
|
|
6576
|
+
top: 2rem !important;
|
|
6577
|
+
}
|
|
6578
|
+
|
|
6579
|
+
.m_top-3{
|
|
6580
|
+
top: 3rem !important;
|
|
6581
|
+
}
|
|
6582
|
+
|
|
6583
|
+
.m_top-4{
|
|
6584
|
+
top: 4rem !important;
|
|
6585
|
+
}
|
|
6586
|
+
|
|
6587
|
+
.m_top-5{
|
|
6588
|
+
top: 5rem !important;
|
|
6589
|
+
}
|
|
6590
|
+
|
|
6591
|
+
.m_top-6{
|
|
6592
|
+
top: 6rem !important;
|
|
6593
|
+
}
|
|
6594
|
+
|
|
6595
|
+
.m_top-7{
|
|
6596
|
+
top: 7rem !important;
|
|
6597
|
+
}
|
|
6598
|
+
|
|
6599
|
+
.m_top-8{
|
|
6600
|
+
top: 8rem !important;
|
|
6601
|
+
}
|
|
6602
|
+
|
|
6603
|
+
.m_-top-1{
|
|
6604
|
+
top: -1rem !important;
|
|
6605
|
+
}
|
|
6606
|
+
|
|
6607
|
+
.m_-top-2{
|
|
6608
|
+
top: -2rem !important;
|
|
6609
|
+
}
|
|
6610
|
+
|
|
6611
|
+
.m_-top-3{
|
|
6612
|
+
top: -3rem !important;
|
|
6613
|
+
}
|
|
6614
|
+
|
|
6615
|
+
.m_-top-4{
|
|
6616
|
+
top: -4rem !important;
|
|
6617
|
+
}
|
|
6618
|
+
|
|
6619
|
+
.m_-top-5{
|
|
6620
|
+
top: -5rem !important;
|
|
6621
|
+
}
|
|
6622
|
+
|
|
6623
|
+
.m_-top-6{
|
|
6624
|
+
top: -6rem !important;
|
|
6625
|
+
}
|
|
6626
|
+
|
|
6627
|
+
.m_-top-7{
|
|
6628
|
+
top: -7rem !important;
|
|
6629
|
+
}
|
|
6630
|
+
|
|
6631
|
+
.m_-top-8{
|
|
6632
|
+
top: -8rem !important;
|
|
6633
|
+
}
|
|
6634
|
+
|
|
6635
|
+
.m_bottom, .m_bottom-0{
|
|
6636
|
+
bottom: 0 !important;
|
|
6637
|
+
}
|
|
6638
|
+
|
|
6639
|
+
.m_bottom-1{
|
|
6640
|
+
bottom: 1rem !important;
|
|
6641
|
+
}
|
|
6642
|
+
|
|
6643
|
+
.m_bottom-2{
|
|
6644
|
+
bottom: 2rem !important;
|
|
6645
|
+
}
|
|
6646
|
+
|
|
6647
|
+
.m_bottom-3{
|
|
6648
|
+
bottom: 3rem !important;
|
|
6649
|
+
}
|
|
6650
|
+
|
|
6651
|
+
.m_bottom-4{
|
|
6652
|
+
bottom: 4rem !important;
|
|
6653
|
+
}
|
|
6654
|
+
|
|
6655
|
+
.m_bottom-5{
|
|
6656
|
+
bottom: 5rem !important;
|
|
6657
|
+
}
|
|
6658
|
+
|
|
6659
|
+
.m_bottom-6{
|
|
6660
|
+
bottom: 6rem !important;
|
|
6661
|
+
}
|
|
6662
|
+
|
|
6663
|
+
.m_bottom-7{
|
|
6664
|
+
bottom: 7rem !important;
|
|
6665
|
+
}
|
|
6666
|
+
|
|
6667
|
+
.m_bottom-8{
|
|
6668
|
+
bottom: 8rem !important;
|
|
6669
|
+
}
|
|
6670
|
+
|
|
6671
|
+
.m_-bottom-1{
|
|
6672
|
+
bottom: -1rem !important;
|
|
6673
|
+
}
|
|
6674
|
+
|
|
6675
|
+
.m_-bottom-2{
|
|
6676
|
+
bottom: -2rem !important;
|
|
6677
|
+
}
|
|
6678
|
+
|
|
6679
|
+
.m_-bottom-3{
|
|
6680
|
+
bottom: -3rem !important;
|
|
6681
|
+
}
|
|
6682
|
+
|
|
6683
|
+
.m_-bottom-4{
|
|
6684
|
+
bottom: -4rem !important;
|
|
6685
|
+
}
|
|
6686
|
+
|
|
6687
|
+
.m_-bottom-5{
|
|
6688
|
+
bottom: -5rem !important;
|
|
6689
|
+
}
|
|
6690
|
+
|
|
6691
|
+
.m_-bottom-6{
|
|
6692
|
+
bottom: -6rem !important;
|
|
6693
|
+
}
|
|
6694
|
+
|
|
6695
|
+
.m_-bottom-7{
|
|
6696
|
+
bottom: -7rem !important;
|
|
6697
|
+
}
|
|
6698
|
+
|
|
6699
|
+
.m_-bottom-8{
|
|
6700
|
+
bottom: -8rem !important;
|
|
6701
|
+
}
|
|
6702
|
+
|
|
6302
6703
|
}
|
|
6303
6704
|
input,
|
|
6304
6705
|
textarea,
|