@bagelink/vue 0.0.1220 → 0.0.1224
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/Calendar/Index.vue.d.ts +8 -4
- package/dist/components/Calendar/Index.vue.d.ts.map +1 -1
- package/dist/components/Calendar/components/header/Header.vue.d.ts +2 -0
- package/dist/components/Calendar/components/header/Header.vue.d.ts.map +1 -1
- package/dist/components/Calendar/components/month/AgendaEventTile.vue.d.ts.map +1 -1
- package/dist/components/Calendar/components/month/AgendaEvents.vue.d.ts.map +1 -1
- package/dist/components/Calendar/components/month/Day.vue.d.ts.map +1 -1
- package/dist/components/Calendar/components/month/Event.vue.d.ts.map +1 -1
- package/dist/components/Calendar/components/month/Month.vue.d.ts +2 -2
- package/dist/components/Calendar/components/month/Month.vue.d.ts.map +1 -1
- package/dist/components/Calendar/components/month/WeekDay.vue.d.ts.map +1 -1
- package/dist/components/Calendar/components/partials/EventFlyout.vue.d.ts.map +1 -1
- package/dist/components/Calendar/components/week/Day.vue.d.ts.map +1 -1
- package/dist/components/Calendar/components/week/Week.vue.d.ts +2 -2
- package/dist/components/Calendar/components/week/WeekTimeline.vue.d.ts.map +1 -1
- package/dist/components/Calendar/constants.d.ts.map +1 -1
- package/dist/components/Calendar/language/index.d.ts +2 -1
- package/dist/components/Calendar/language/index.d.ts.map +1 -1
- package/dist/components/Calendar/language/keys.d.ts +66 -63
- package/dist/components/Calendar/language/keys.d.ts.map +1 -1
- package/dist/components/Spreadsheet/Index.vue.d.ts +24 -0
- package/dist/components/Spreadsheet/Index.vue.d.ts.map +1 -0
- package/dist/components/form/BagelForm.vue.d.ts +1 -1
- package/dist/components/form/BagelForm.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DatePick.vue.d.ts +1 -0
- package/dist/components/form/inputs/DatePick.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DatePicker.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/NumberInput.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.cjs +1828 -1144
- package/dist/index.mjs +1829 -1145
- package/dist/style.css +679 -712
- package/package.json +1 -1
- package/src/components/Calendar/Index.vue +13 -16
- package/src/components/Calendar/components/header/Header.vue +17 -139
- package/src/components/Calendar/components/month/AgendaEventTile.vue +1 -10
- package/src/components/Calendar/components/month/AgendaEvents.vue +7 -53
- package/src/components/Calendar/components/month/Day.vue +12 -30
- package/src/components/Calendar/components/month/Event.vue +10 -67
- package/src/components/Calendar/components/month/Month.vue +10 -56
- package/src/components/Calendar/components/month/WeekDay.vue +1 -11
- package/src/components/Calendar/components/partials/EventFlyout.vue +2 -1
- package/src/components/Calendar/components/week/Day.vue +4 -18
- package/src/components/Calendar/components/week/DayEvent.vue +1 -1
- package/src/components/Calendar/components/week/FullDayEvent.vue +2 -2
- package/src/components/Calendar/components/week/Week.vue +1 -1
- package/src/components/Calendar/components/week/WeekTimeline.vue +13 -38
- package/src/components/Calendar/constants.ts +11 -11
- package/src/components/Calendar/language/index.ts +6 -3
- package/src/components/Calendar/language/keys.ts +91 -88
- package/src/components/Calendar/styles/_variables.css +38 -42
- package/src/components/Spreadsheet/Index.vue +843 -0
- package/src/components/form/BagelForm.vue +1 -1
- package/src/components/form/inputs/DatePick.vue +6 -2
- package/src/components/form/inputs/DatePicker.vue +2 -2
- package/src/components/form/inputs/NumberInput.vue +2 -2
- package/src/components/index.ts +1 -0
- package/src/styles/buttons.css +81 -73
- package/src/styles/layout.css +25 -0
- package/src/styles/mobilLayout.css +25 -0
- package/src/styles/text.css +82 -1
- package/src/styles/theme.css +269 -258
- package/src/components/Calendar/index.ts +0 -4
package/dist/style.css
CHANGED
|
@@ -307,97 +307,18 @@ display: block;
|
|
|
307
307
|
border-radius: var(--input-border-radius);
|
|
308
308
|
}
|
|
309
309
|
|
|
310
|
-
.
|
|
311
|
-
|
|
312
|
-
flex-wrap: wrap;
|
|
313
|
-
align-items: center;
|
|
314
|
-
justify-content: space-between;
|
|
315
|
-
padding: var(--qalendar-spacing-half);
|
|
316
|
-
border-radius: var(--qalendar-border-radius);
|
|
317
|
-
}
|
|
318
|
-
@media (min-width: 768px) {
|
|
319
|
-
.calendar-header[data-v-34cb97da] {
|
|
320
|
-
justify-content: space-between;
|
|
321
|
-
gap: var(--qalendar-spacing);
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
.dark {
|
|
325
|
-
color: var(--qalendar-dark-mode-text-hint);
|
|
326
|
-
}
|
|
327
|
-
.calendar-header__period-name[data-v-34cb97da] {
|
|
328
|
-
font-size: var(--qalendar-font-l);
|
|
329
|
-
text-align: center;
|
|
330
|
-
}
|
|
331
|
-
@media (min-width: 768px) {
|
|
332
|
-
.calendar-header__period-name[data-v-34cb97da] {
|
|
333
|
-
margin-bottom: 0;
|
|
334
|
-
text-align: left;
|
|
335
|
-
}
|
|
336
|
-
}
|
|
337
|
-
.calendar-header__multiselects[data-v-34cb97da] {
|
|
338
|
-
display: flex;
|
|
339
|
-
flex-wrap: wrap;
|
|
340
|
-
align-items: center;
|
|
341
|
-
gap: var(--qalendar-spacing);
|
|
342
|
-
}
|
|
343
|
-
.calendar-header__chevron-arrows[data-v-34cb97da] {
|
|
344
|
-
display: flex;
|
|
345
|
-
align-items: center;
|
|
346
|
-
gap: 20px;
|
|
310
|
+
.datePick input{
|
|
311
|
+
min-width: 2px !important;
|
|
347
312
|
}
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
font-size: var(--qalendar-font-m);
|
|
352
|
-
}
|
|
353
|
-
.calendar-header__chevron-arrow[data-v-34cb97da]:hover {
|
|
354
|
-
color: var(--qalendar-gray-quite-dark);
|
|
355
|
-
}
|
|
356
|
-
.calendar-header__mode-picker[data-v-34cb97da] {
|
|
357
|
-
position: relative;
|
|
358
|
-
display: flex;
|
|
359
|
-
align-items: center;
|
|
360
|
-
justify-content: center;
|
|
361
|
-
width: fit-content;
|
|
362
|
-
height: 36px;
|
|
363
|
-
border-radius: 4px;
|
|
364
|
-
font-size: var(--qalendar-font-m);
|
|
365
|
-
cursor: pointer;
|
|
366
|
-
border: var(--qalendar-border-gray-thin);
|
|
367
|
-
}
|
|
368
|
-
.dark {
|
|
369
|
-
border-color: transparent;
|
|
370
|
-
}
|
|
371
|
-
.calendar-header__mode-value[data-v-34cb97da] {
|
|
372
|
-
padding: 0 var(--qalendar-spacing);
|
|
373
|
-
width: 100%;
|
|
374
|
-
height: 100%;
|
|
375
|
-
display: flex;
|
|
376
|
-
align-items: center;
|
|
377
|
-
user-select: none;
|
|
378
|
-
border-radius: 4px;
|
|
379
|
-
}
|
|
380
|
-
.dark {
|
|
381
|
-
background-color: var(--qalendar-dark-mode-lightly-elevated-surface);
|
|
382
|
-
}
|
|
383
|
-
.calendar-header__mode-options[data-v-34cb97da] {
|
|
384
|
-
position: absolute;
|
|
385
|
-
z-index: 51;
|
|
386
|
-
top: 100%;
|
|
387
|
-
left: 50%;
|
|
388
|
-
transform: translateX(-50%);
|
|
389
|
-
border: var(--qalendar-border-gray-thin);
|
|
390
|
-
background-color: #fff;
|
|
391
|
-
}
|
|
392
|
-
.dark {
|
|
393
|
-
border-color: transparent;
|
|
394
|
-
background-color: var(--qalendar-dark-mode-elevated-surface);
|
|
313
|
+
@media screen and (max-width: 910px) {
|
|
314
|
+
.datePick{
|
|
315
|
+
--input-font-size: 0.75rem;
|
|
395
316
|
}
|
|
396
|
-
.calendar-header__mode-option[data-v-34cb97da] {
|
|
397
|
-
padding: var(--qalendar-spacing-half) var(--qalendar-spacing);
|
|
398
317
|
}
|
|
399
|
-
|
|
400
|
-
|
|
318
|
+
|
|
319
|
+
.agenda__event[data-v-7667cd3d] {
|
|
320
|
+
background-color: var(--2331113a);
|
|
321
|
+
color: var(--13d56971);
|
|
401
322
|
}
|
|
402
323
|
|
|
403
324
|
.event-flyout {
|
|
@@ -405,7 +326,7 @@ display: block;
|
|
|
405
326
|
z-index: 50;
|
|
406
327
|
background-color: #fff;
|
|
407
328
|
max-height: 100%;
|
|
408
|
-
width: var(--
|
|
329
|
+
width: var(--34f9e9aa);
|
|
409
330
|
max-width: 98%;
|
|
410
331
|
border: var(--qalendar-border-gray-thin);
|
|
411
332
|
border-radius: 8px;
|
|
@@ -493,7 +414,8 @@ display: block;
|
|
|
493
414
|
width: var(--icon-height);
|
|
494
415
|
}
|
|
495
416
|
.is-title {
|
|
496
|
-
font-size:
|
|
417
|
+
font-size: 18px;
|
|
418
|
+
line-height: 1.2;
|
|
497
419
|
align-items: center;
|
|
498
420
|
}
|
|
499
421
|
.is-not-editable .is-title {
|
|
@@ -504,116 +426,16 @@ display: block;
|
|
|
504
426
|
margin-bottom: 0.75em;
|
|
505
427
|
}
|
|
506
428
|
|
|
507
|
-
.
|
|
508
|
-
|
|
509
|
-
color: var(--2507007e);
|
|
510
|
-
display: flex;
|
|
511
|
-
flex-flow: column;
|
|
512
|
-
justify-content: flex-start;
|
|
513
|
-
border-radius: 4px;
|
|
514
|
-
font-size: var(--qalendar-font-2xs);
|
|
515
|
-
margin-bottom: 4px;
|
|
516
|
-
padding: var(--qalendar-spacing);
|
|
517
|
-
cursor: pointer;
|
|
518
|
-
user-select: none;
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
.agenda__wrapper[data-v-25f23df1] {
|
|
522
|
-
display: flex;
|
|
523
|
-
flex-flow: row;
|
|
524
|
-
padding: 10px 5px 0;
|
|
525
|
-
}
|
|
526
|
-
.agenda__header[data-v-25f23df1] {
|
|
527
|
-
padding-right: 10px;
|
|
528
|
-
}
|
|
529
|
-
.agenda__header-day-name[data-v-25f23df1] {
|
|
530
|
-
text-align: center;
|
|
531
|
-
color: var(--qalendar-theme-color);
|
|
532
|
-
font-size: var(--qalendar-font-xs);
|
|
533
|
-
font-weight: bold;
|
|
534
|
-
}
|
|
535
|
-
.agenda__header-date[data-v-25f23df1] {
|
|
536
|
-
height: fit-content;
|
|
537
|
-
display: flex;
|
|
538
|
-
justify-content: center;
|
|
539
|
-
align-items: center;
|
|
540
|
-
padding: 5px;
|
|
541
|
-
border-radius: 4px;
|
|
542
|
-
background-color: var(--qalendar-theme-color);
|
|
543
|
-
color: white;
|
|
544
|
-
font-weight: 600;
|
|
545
|
-
font-size: var(--qalendar-font-m);
|
|
546
|
-
}
|
|
547
|
-
.agenda__content[data-v-25f23df1] {
|
|
548
|
-
display: flex;
|
|
549
|
-
flex-flow: column;
|
|
550
|
-
width: 100%;
|
|
551
|
-
height: auto;
|
|
552
|
-
}
|
|
553
|
-
.agenda__content .is-empty[data-v-25f23df1] {
|
|
554
|
-
min-height: 70px;
|
|
555
|
-
display: flex;
|
|
556
|
-
justify-content: center;
|
|
557
|
-
align-items: center;
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
.calendar-month__event {
|
|
561
|
-
--event-inline-padding: 4px;
|
|
562
|
-
display: flex;
|
|
563
|
-
align-items: center;
|
|
564
|
-
overflow: hidden;
|
|
565
|
-
border-radius: 4px;
|
|
566
|
-
font-size: var(--qalendar-font-2xs);
|
|
567
|
-
width: calc(100% - (var(--event-inline-padding) * 2));
|
|
568
|
-
margin-bottom: 4px;
|
|
569
|
-
padding: 0.25rem var(--event-inline-padding);
|
|
570
|
-
cursor: pointer;
|
|
571
|
-
user-select: none;
|
|
572
|
-
}
|
|
573
|
-
.calendar-month__event .calendar-month__event-time {
|
|
574
|
-
margin-right: 6px;
|
|
575
|
-
}
|
|
576
|
-
.calendar-month__event .calendar-month__event-time,
|
|
577
|
-
.calendar-month__event .calendar-month__event-title,
|
|
578
|
-
.calendar-month__event .calendar-month__event-color {
|
|
579
|
-
flex-shrink: 0;
|
|
580
|
-
}
|
|
581
|
-
.qalendar-is-small .calendar-month__event .calendar-month__event-time,
|
|
582
|
-
.qalendar-is-small .calendar-month__event .calendar-month__event-title {
|
|
583
|
-
display: none;
|
|
584
|
-
}
|
|
585
|
-
.qalendar-is-small .calendar-month__event {
|
|
586
|
-
background-color: var(--2920aa71);
|
|
587
|
-
width: 4px;
|
|
588
|
-
height: 4px;
|
|
589
|
-
border-radius: 50%;
|
|
590
|
-
padding: 1px;
|
|
591
|
-
margin-right: 1px;
|
|
592
|
-
}
|
|
593
|
-
.calendar-month__event.is-draggable {
|
|
594
|
-
cursor: grab;
|
|
595
|
-
}
|
|
596
|
-
.calendar-month__event:active {
|
|
597
|
-
z-index: 100;
|
|
598
|
-
}
|
|
599
|
-
.calendar-month__event:not(.is-draggable):active {
|
|
600
|
-
cursor: not-allowed;
|
|
601
|
-
}
|
|
602
|
-
.calendar-month__event:hover {
|
|
603
|
-
background-color: var(--qalendar-light-gray);
|
|
429
|
+
.calendar-month__event[data-v-3c4101df]:active {
|
|
430
|
+
z-index: 100;
|
|
604
431
|
}
|
|
605
|
-
.calendar-month__event
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
background-color: var(--2920aa71);
|
|
610
|
-
width: 6px;
|
|
611
|
-
height: 6px;
|
|
612
|
-
border-radius: 50%;
|
|
613
|
-
margin-right: 4px;
|
|
432
|
+
.calendar-month__event .calendar-month__event-color[data-v-3c4101df] {
|
|
433
|
+
background-color: var(--03af06be);
|
|
434
|
+
width: 6px;
|
|
435
|
+
height: 6px;
|
|
614
436
|
}
|
|
615
437
|
|
|
616
|
-
.calendar-month__weekday[data-v-
|
|
438
|
+
.calendar-month__weekday[data-v-de994cfd] {
|
|
617
439
|
height: 100%;
|
|
618
440
|
flex: 1;
|
|
619
441
|
display: flex;
|
|
@@ -624,60 +446,43 @@ display: block;
|
|
|
624
446
|
overflow: hidden;
|
|
625
447
|
transition: background-color 0.2s ease-in-out;
|
|
626
448
|
}
|
|
627
|
-
.calendar-month__weekday.is-droppable[data-v-
|
|
449
|
+
.calendar-month__weekday.is-droppable[data-v-de994cfd] {
|
|
628
450
|
background-color: var(--qalendar-light-gray);
|
|
629
451
|
}
|
|
630
|
-
.calendar-month__weekday[data-v-
|
|
452
|
+
.calendar-month__weekday[data-v-de994cfd]:last-child {
|
|
631
453
|
border-right: 0;
|
|
632
454
|
}
|
|
633
|
-
.
|
|
634
|
-
|
|
635
|
-
-moz-box-shadow: inset 0 0 0 3px var(--qalendar-theme-color);
|
|
636
|
-
box-shadow: inset 0 0 0 3px var(--qalendar-theme-color);
|
|
637
|
-
border-radius: 5px;
|
|
638
|
-
}
|
|
639
|
-
.qalendar-is-small .calendar-month__weekday[data-v-057882e2] {
|
|
640
|
-
height: 45px;
|
|
641
|
-
width: 45px;
|
|
642
|
-
display: flex;
|
|
643
|
-
flex-flow: column;
|
|
644
|
-
justify-content: space-around;
|
|
645
|
-
}
|
|
646
|
-
.calendar-month__day-date[data-v-057882e2] {
|
|
647
|
-
font-size: var(--qalendar-font-xs);
|
|
648
|
-
color: var(--qalendar-gray-quite-dark);
|
|
649
|
-
}
|
|
650
|
-
.calendar-month__day-date[data-v-057882e2]:first-child {
|
|
651
|
-
margin-top: 6px;
|
|
455
|
+
.calendar-month__weekday.is-selected[data-v-de994cfd] {
|
|
456
|
+
box-shadow: inset 0 0 0 1px var(--bgl-primary);
|
|
652
457
|
}
|
|
653
|
-
.calendar-month__weekday-more[data-v-
|
|
458
|
+
.calendar-month__weekday-more[data-v-de994cfd] {
|
|
654
459
|
font-size: var(--qalendar-font-2xs);
|
|
655
460
|
width: 100%;
|
|
656
461
|
padding-left: 4px;
|
|
657
462
|
color: var(--qalendar-gray-quite-dark);
|
|
658
463
|
cursor: pointer;
|
|
659
464
|
}
|
|
660
|
-
.calendar-month_events[data-v-
|
|
465
|
+
.calendar-month_events[data-v-de994cfd] {
|
|
661
466
|
width: 100%;
|
|
662
467
|
}
|
|
663
|
-
.qalendar-is-small .calendar-month_events[data-v-
|
|
468
|
+
.qalendar-is-small .calendar-month_events[data-v-de994cfd] {
|
|
664
469
|
display: flex;
|
|
665
470
|
flex-flow: row;
|
|
666
471
|
justify-content: center;
|
|
667
472
|
}
|
|
668
|
-
.qalendar-is-small .calendar-month_events .calendar-month__weekday-more[data-v-
|
|
473
|
+
.qalendar-is-small .calendar-month_events .calendar-month__weekday-more[data-v-de994cfd] {
|
|
669
474
|
display: none;
|
|
670
475
|
}
|
|
671
|
-
.calendar-month__weekday.is-today .calendar-month__day-date[data-v-
|
|
672
|
-
background-color: var(--
|
|
476
|
+
.calendar-month__weekday.is-today .calendar-month__day-date[data-v-de994cfd] {
|
|
477
|
+
background-color: var(--bgl-primary);
|
|
673
478
|
color: #fff;
|
|
674
479
|
border-radius: 50%;
|
|
675
480
|
padding: 4px 6px;
|
|
676
481
|
}
|
|
677
|
-
.qalendar-is-small .calendar-month__weekday.is-today .calendar-month__day-date[data-v-
|
|
482
|
+
.qalendar-is-small .calendar-month__weekday.is-today .calendar-month__day-date[data-v-de994cfd] {
|
|
678
483
|
padding: 2px 4px;
|
|
679
484
|
}
|
|
680
|
-
.space-reserver[data-v-
|
|
485
|
+
.space-reserver[data-v-de994cfd] {
|
|
681
486
|
height: 100%;
|
|
682
487
|
flex: 1;
|
|
683
488
|
display: flex;
|
|
@@ -687,71 +492,25 @@ display: block;
|
|
|
687
492
|
border-bottom: var(--qalendar-border-gray-thin);
|
|
688
493
|
border-right-color: transparent;
|
|
689
494
|
}
|
|
690
|
-
.space-reserver + .calendar-month__weekday[data-v-
|
|
495
|
+
.space-reserver + .calendar-month__weekday[data-v-de994cfd]:not(.trailing-or-leading) {
|
|
691
496
|
border-left: var(--qalendar-border-gray-thin);
|
|
692
497
|
}
|
|
693
498
|
@media (prefers-color-scheme: dark) {
|
|
694
|
-
.calendar-month__weekday[data-v-
|
|
695
|
-
.space-reserver[data-v-
|
|
499
|
+
.calendar-month__weekday[data-v-de994cfd],
|
|
500
|
+
.space-reserver[data-v-de994cfd] {
|
|
696
501
|
border-color: var(--qalendar-dark-mode-line-color);
|
|
697
502
|
}
|
|
698
503
|
}
|
|
699
504
|
|
|
700
|
-
.calendar-month__day-name[data-v-d96cc47c] {
|
|
701
|
-
display: block;
|
|
702
|
-
font-size: 12px;
|
|
703
|
-
font-weight: 500;
|
|
704
|
-
color: var(--qalendar-gray-quite-dark);
|
|
705
|
-
margin-bottom: var(--qalendar-spacing-half);
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
.calendar-month {
|
|
709
|
-
position: relative;
|
|
710
|
-
display: flex;
|
|
711
|
-
flex-flow: column;
|
|
712
|
-
width: 100%;
|
|
713
|
-
height: 100%;
|
|
714
|
-
overflow-y: auto;
|
|
715
|
-
}
|
|
716
|
-
:global(.qalendar-is-small) .calendar-month {
|
|
717
|
-
height: initial;
|
|
718
|
-
}
|
|
719
|
-
.calendar-month__week-day-names {
|
|
720
|
-
display: flex;
|
|
721
|
-
justify-content: space-between;
|
|
722
|
-
}
|
|
723
|
-
.calendar-month__week-day-name {
|
|
724
|
-
flex: 1;
|
|
725
|
-
text-align: center;
|
|
726
|
-
}
|
|
727
|
-
.calendar-month__weeks {
|
|
728
|
-
height: 100%;
|
|
729
|
-
flex-grow: 1;
|
|
730
|
-
display: flex;
|
|
731
|
-
flex-flow: column;
|
|
732
|
-
justify-content: space-between;
|
|
733
|
-
}
|
|
734
505
|
.calendar-month__week {
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
}
|
|
738
|
-
.calendar-month__week:first-child {
|
|
739
|
-
border-top: var(--qalendar-border-gray-thin);
|
|
506
|
+
display: flex;
|
|
507
|
+
flex: 1;
|
|
740
508
|
}
|
|
741
|
-
@media (prefers-color-scheme: dark) {
|
|
742
509
|
.calendar-month__week:first-child {
|
|
743
|
-
border-
|
|
744
|
-
}
|
|
745
|
-
}
|
|
746
|
-
.calendar-month__day_events {
|
|
747
|
-
height: 100%;
|
|
748
|
-
display: none;
|
|
749
|
-
}
|
|
750
|
-
:global(.qalendar-is-small) .calendar-month__day_events {
|
|
751
|
-
display: block;
|
|
510
|
+
border-top: var(--qalendar-border-gray-thin);
|
|
752
511
|
}
|
|
753
512
|
|
|
754
|
-
.calendar-week__event[data-v-
|
|
513
|
+
.calendar-week__event[data-v-d496d603] {
|
|
755
514
|
position: absolute;
|
|
756
515
|
width: 100%;
|
|
757
516
|
border-radius: 4px;
|
|
@@ -760,22 +519,22 @@ display: block;
|
|
|
760
519
|
user-select: none;
|
|
761
520
|
overflow: hidden;
|
|
762
521
|
}
|
|
763
|
-
.calendar-week__event.is-editable[data-v-
|
|
522
|
+
.calendar-week__event.is-editable[data-v-d496d603] {
|
|
764
523
|
cursor: grab;
|
|
765
524
|
}
|
|
766
|
-
.calendar-week__event.has-disabled-dnd[data-v-
|
|
525
|
+
.calendar-week__event.has-disabled-dnd[data-v-d496d603] {
|
|
767
526
|
cursor: initial;
|
|
768
527
|
}
|
|
769
|
-
.calendar-week__event .calendar-week__event-row[data-v-
|
|
528
|
+
.calendar-week__event .calendar-week__event-row[data-v-d496d603] {
|
|
770
529
|
display: flex;
|
|
771
530
|
align-items: flex-start;
|
|
772
531
|
margin-bottom: 0.25em;
|
|
773
532
|
}
|
|
774
|
-
.calendar-week__event .calendar-week__event-row p[data-v-
|
|
533
|
+
.calendar-week__event .calendar-week__event-row p[data-v-d496d603] {
|
|
775
534
|
margin: 0;
|
|
776
535
|
padding: 0;
|
|
777
536
|
}
|
|
778
|
-
.calendar-week__event .calendar-week__event-info-wrapper[data-v-
|
|
537
|
+
.calendar-week__event .calendar-week__event-info-wrapper[data-v-d496d603] {
|
|
779
538
|
position: relative;
|
|
780
539
|
padding: var(--qalendar-spacing-half);
|
|
781
540
|
font-size: var(--qalendar-font-xs);
|
|
@@ -783,61 +542,49 @@ display: block;
|
|
|
783
542
|
box-sizing: border-box;
|
|
784
543
|
user-select: none;
|
|
785
544
|
}
|
|
786
|
-
.calendar-week__event .calendar-week__event-blend-out[data-v-
|
|
545
|
+
.calendar-week__event .calendar-week__event-blend-out[data-v-d496d603] {
|
|
787
546
|
position: absolute;
|
|
788
547
|
bottom: 0;
|
|
789
548
|
height: 20px;
|
|
790
549
|
width: 100%;
|
|
791
550
|
transform: translateX(calc(var(--qalendar-spacing-half) * -1));
|
|
792
551
|
}
|
|
793
|
-
.calendar-week__event .calendar-week__event-icon[data-v-
|
|
552
|
+
.calendar-week__event .calendar-week__event-icon[data-v-d496d603] {
|
|
794
553
|
margin: 2px 4px 0 0;
|
|
795
554
|
font-size: var(--qalendar-font-xs);
|
|
796
555
|
}
|
|
797
|
-
.calendar-week__event .calendar-week__event-resize[data-v-
|
|
556
|
+
.calendar-week__event .calendar-week__event-resize[data-v-d496d603] {
|
|
798
557
|
position: absolute;
|
|
799
558
|
width: 100%;
|
|
800
559
|
cursor: ns-resize;
|
|
801
560
|
height: 5px;
|
|
802
561
|
}
|
|
803
|
-
.calendar-week__event .calendar-week__event-resize-up[data-v-
|
|
562
|
+
.calendar-week__event .calendar-week__event-resize-up[data-v-d496d603] {
|
|
804
563
|
top: 0;
|
|
805
564
|
}
|
|
806
|
-
.calendar-week__event .calendar-week__event-resize-down[data-v-
|
|
565
|
+
.calendar-week__event .calendar-week__event-resize-down[data-v-d496d603] {
|
|
807
566
|
bottom: 0;
|
|
808
567
|
}
|
|
809
568
|
|
|
810
|
-
.calendar-week__day[data-v-
|
|
569
|
+
.calendar-week__day[data-v-87669cec] {
|
|
811
570
|
position: relative;
|
|
812
571
|
width: 100%;
|
|
813
572
|
height: 100%;
|
|
814
573
|
display: flex;
|
|
815
574
|
flex-direction: column;
|
|
816
575
|
}
|
|
817
|
-
.calendar-week__day .calendar-week__day-interval[data-v-
|
|
576
|
+
.calendar-week__day .calendar-week__day-interval[data-v-87669cec] {
|
|
818
577
|
flex: 1;
|
|
819
578
|
font-size: var(--qalendar-font-xs);
|
|
820
579
|
color: var(--qalendar-gray);
|
|
821
580
|
padding: 2px;
|
|
822
581
|
}
|
|
823
|
-
.calendar-week__day
|
|
824
|
-
border-
|
|
825
|
-
}
|
|
826
|
-
.calendar-week__day[data-v-12350119]:first-child {
|
|
827
|
-
border-left: 1px dashed rgb(224 224 224);
|
|
828
|
-
}
|
|
829
|
-
@media (prefers-color-scheme: dark) {
|
|
830
|
-
.calendar-week__day[data-v-12350119]:first-child {
|
|
831
|
-
border-color: var(--qalendar-dark-mode-line-color);
|
|
832
|
-
}
|
|
833
|
-
}
|
|
834
|
-
.calendar-week__day[data-v-12350119]:not(:last-child) {
|
|
835
|
-
border-right: 1px dashed rgb(224 224 224);
|
|
836
|
-
}
|
|
837
|
-
@media (prefers-color-scheme: dark) {
|
|
838
|
-
.calendar-week__day[data-v-12350119]:not(:last-child) {
|
|
839
|
-
border-color: var(--qalendar-dark-mode-line-color);
|
|
582
|
+
.calendar-week__day[data-v-87669cec]:first-child {
|
|
583
|
+
border-inline-start: 1px solid var(--border-color);
|
|
840
584
|
}
|
|
585
|
+
.calendar-week__day[data-v-87669cec] {
|
|
586
|
+
border-inline-end: 1px solid var(--border-color);
|
|
587
|
+
border-bottom: 1px solid var(--border-color);
|
|
841
588
|
}
|
|
842
589
|
|
|
843
590
|
.day-timeline[data-v-a4d8d28d] {
|
|
@@ -876,7 +623,7 @@ display: block;
|
|
|
876
623
|
}
|
|
877
624
|
}
|
|
878
625
|
|
|
879
|
-
.week-timeline__event[data-v-
|
|
626
|
+
.week-timeline__event[data-v-489753e0] {
|
|
880
627
|
position: relative;
|
|
881
628
|
--event-padding: 3px;
|
|
882
629
|
display: flex;
|
|
@@ -892,75 +639,49 @@ display: block;
|
|
|
892
639
|
user-select: none;
|
|
893
640
|
overflow: hidden;
|
|
894
641
|
}
|
|
895
|
-
.week-timeline__event[data-v-
|
|
642
|
+
.week-timeline__event[data-v-489753e0]:active {
|
|
896
643
|
cursor: not-allowed;
|
|
897
644
|
}
|
|
898
645
|
|
|
899
|
-
.week-timeline[data-v-
|
|
646
|
+
.week-timeline[data-v-e3c7c017] {
|
|
900
647
|
height: fit-content;
|
|
901
648
|
display: flex;
|
|
902
649
|
justify-content: space-evenly;
|
|
903
|
-
padding-bottom: var(--qalendar-spacing-half);
|
|
904
|
-
padding-left: var(--qalendar-week-padding-left);
|
|
905
|
-
border-bottom: var(--qalendar-border-gray-thin);
|
|
906
650
|
}
|
|
907
|
-
.mode-is-day .week-timeline[data-v-
|
|
908
|
-
width: 100
|
|
909
|
-
padding-left: 0;
|
|
651
|
+
.mode-is-day .week-timeline[data-v-e3c7c017] {
|
|
652
|
+
width: calc(100% - 3.5em);
|
|
910
653
|
}
|
|
911
|
-
.week-timeline__day[data-v-
|
|
654
|
+
.week-timeline__day[data-v-e3c7c017] {
|
|
912
655
|
width: 100%;
|
|
913
|
-
display: flex;
|
|
914
|
-
flex-flow: column;
|
|
915
|
-
align-items: center;
|
|
916
|
-
justify-content: flex-start;
|
|
917
656
|
}
|
|
918
|
-
.week-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
margin-bottom: 4px;
|
|
922
|
-
color: var(--qalendar-gray-quite-dark);
|
|
657
|
+
.week-timeline__date[data-v-e3c7c017] {
|
|
658
|
+
height: 1rem;
|
|
659
|
+
width: 1rem;
|
|
923
660
|
}
|
|
924
|
-
.week-timeline__date[data-v-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
height: 2rem;
|
|
928
|
-
width: 2rem;
|
|
929
|
-
border-radius: 50%;
|
|
930
|
-
display: flex;
|
|
931
|
-
align-items: center;
|
|
932
|
-
justify-content: center;
|
|
933
|
-
}
|
|
934
|
-
.is-today .week-timeline__date[data-v-0e7c9832] {
|
|
935
|
-
background-color: var(--qalendar-blue);
|
|
936
|
-
color: #fff;
|
|
937
|
-
}
|
|
938
|
-
.week-timeline__events[data-v-0e7c9832] {
|
|
939
|
-
width: 100%;
|
|
940
|
-
flex: 1;
|
|
941
|
-
border-right: 1px dashed rgb(224 224 224);
|
|
661
|
+
.is-today .week-timeline__date[data-v-e3c7c017] {
|
|
662
|
+
background: var(--bgl-primary);
|
|
663
|
+
color: var(--bgl-white);
|
|
942
664
|
}
|
|
943
|
-
.week-
|
|
944
|
-
border-left: 1px dashed rgb(224 224 224);
|
|
665
|
+
.week-timeline__events[data-v-e3c7c017] {
|
|
945
666
|
}
|
|
946
667
|
|
|
947
|
-
.calendar-week__wrapper[data-v-
|
|
668
|
+
.calendar-week__wrapper[data-v-f1208dd2] {
|
|
948
669
|
position: relative;
|
|
949
670
|
padding-left: var(--qalendar-week-padding-left);
|
|
950
671
|
overflow-y: auto;
|
|
951
672
|
}
|
|
952
|
-
.calendar-week[data-v-
|
|
673
|
+
.calendar-week[data-v-f1208dd2] {
|
|
953
674
|
position: relative;
|
|
954
675
|
width: 100%;
|
|
955
676
|
flex: 1 1 auto;
|
|
956
677
|
}
|
|
957
|
-
.calendar-week__events[data-v-
|
|
678
|
+
.calendar-week__events[data-v-f1208dd2] {
|
|
958
679
|
display: flex;
|
|
959
680
|
width: 100%;
|
|
960
|
-
height: var(--
|
|
681
|
+
height: var(--7ccd10f4);
|
|
961
682
|
overflow: hidden;
|
|
962
683
|
}
|
|
963
|
-
.calendar-week .current-time-line[data-v-
|
|
684
|
+
.calendar-week .current-time-line[data-v-f1208dd2] {
|
|
964
685
|
position: absolute;
|
|
965
686
|
left: 0;
|
|
966
687
|
width: 100%;
|
|
@@ -968,10 +689,10 @@ display: block;
|
|
|
968
689
|
z-index: 1;
|
|
969
690
|
background-color: red;
|
|
970
691
|
}
|
|
971
|
-
.calendar-week .current-time-line__circle[data-v-
|
|
692
|
+
.calendar-week .current-time-line__circle[data-v-f1208dd2] {
|
|
972
693
|
position: relative;
|
|
973
694
|
}
|
|
974
|
-
.calendar-week .current-time-line__circle[data-v-
|
|
695
|
+
.calendar-week .current-time-line__circle[data-v-f1208dd2]::before {
|
|
975
696
|
content: '';
|
|
976
697
|
position: absolute;
|
|
977
698
|
transform: translate(-45%, -45%);
|
|
@@ -980,13 +701,58 @@ display: block;
|
|
|
980
701
|
border-radius: 50%;
|
|
981
702
|
background-color: red;
|
|
982
703
|
}
|
|
983
|
-
.calendar-week .custom-current-time[data-v-
|
|
704
|
+
.calendar-week .custom-current-time[data-v-f1208dd2] {
|
|
984
705
|
position: absolute;
|
|
985
706
|
left: 0;
|
|
986
707
|
width: 100%;
|
|
987
708
|
z-index: 1;
|
|
988
709
|
}
|
|
989
|
-
|
|
710
|
+
:root {
|
|
711
|
+
/** Color */
|
|
712
|
+
--qalendar-gray-quite-dark: rgb(110 110 110);
|
|
713
|
+
--qalendar-gray: rgb(180 180 180);
|
|
714
|
+
--qalendar-green: rgb(51 182 121);
|
|
715
|
+
--qalendar-theme-color: var(--qalendar-blue);
|
|
716
|
+
--qalendar-light-gray: rgba(240 236 236 / 76%);
|
|
717
|
+
--qalendar-option-hover: var(--qalendar-light-gray);
|
|
718
|
+
|
|
719
|
+
--qalendar-dark-mode-elevated-surface: #383838;
|
|
720
|
+
--qalendar-dark-mode-lightly-elevated-surface: #2e2e2e;
|
|
721
|
+
--qalendar-dark-mode-text-primary: rgba(255 255 255 1);
|
|
722
|
+
--qalendar-dark-mode-text-secondary: rgba(255 255 255 0.7);
|
|
723
|
+
--qalendar-dark-mode-text-hint: rgba(255 255 255 0.5);
|
|
724
|
+
--qalendar-dark-mode-line-color: var(--qalendar-gray);
|
|
725
|
+
|
|
726
|
+
/** Borders */
|
|
727
|
+
--qalendar-border-gray-thin: 1px solid rgb(224 224 224);
|
|
728
|
+
--qalendar-border-dashed-gray-thin: 1px dashed rgb(224 224 224);
|
|
729
|
+
--qalendar-border-blue-thin: 1px solid var(--qalendar-theme-color);
|
|
730
|
+
--qalendar-border-radius: 8px;
|
|
731
|
+
|
|
732
|
+
/** Spacing */
|
|
733
|
+
--qalendar-spacing: 10px;
|
|
734
|
+
--qalendar-spacing-half: 5px;
|
|
735
|
+
--qalendar-spacing-double: 20px;
|
|
736
|
+
|
|
737
|
+
/** Miscellaneous */
|
|
738
|
+
--qalendar-box-shadow: 0 4px 4px rgba(0 0 0 / 6%), 0 1px 4px rgba(0 0 0 / 18%);
|
|
739
|
+
--qalendar-text-transition: color 0.2s ease;
|
|
740
|
+
--qalendar-week-padding-left: 56px;
|
|
741
|
+
|
|
742
|
+
/** Font */
|
|
743
|
+
--qalendar-font-2xs: 10px;
|
|
744
|
+
--qalendar-font-xs: 12px;
|
|
745
|
+
--qalendar-font-s: 14px;
|
|
746
|
+
--qalendar-font-m: 16px;
|
|
747
|
+
--qalendar-font-l: 18px;
|
|
748
|
+
}
|
|
749
|
+
@media (min-width: 62rem) {
|
|
750
|
+
.calendar-root {
|
|
751
|
+
--qalendar-spacing: 20px;
|
|
752
|
+
--qalendar-spacing-half: 10px;
|
|
753
|
+
--qalendar-spacing-double: 40px;
|
|
754
|
+
}
|
|
755
|
+
}
|
|
990
756
|
.calendar-root-wrapper {
|
|
991
757
|
width: 100%;
|
|
992
758
|
max-width: 100vw;
|
|
@@ -995,7 +761,6 @@ display: block;
|
|
|
995
761
|
}
|
|
996
762
|
.calendar-root-wrapper .calendar-root {
|
|
997
763
|
flex: 1;
|
|
998
|
-
border: var(--qalendar-border-gray-thin);
|
|
999
764
|
border-radius: var(--qalendar-border-radius);
|
|
1000
765
|
position: relative;
|
|
1001
766
|
width: 100%;
|
|
@@ -1003,14 +768,9 @@ display: block;
|
|
|
1003
768
|
display: flex;
|
|
1004
769
|
flex-flow: column;
|
|
1005
770
|
}
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
background: #121212;
|
|
1010
|
-
color: #fff;
|
|
1011
|
-
border-color: transparent;
|
|
1012
|
-
}
|
|
1013
|
-
} */
|
|
771
|
+
.calendar-root-wrapper .calendar-root .calendar-month__weeks{
|
|
772
|
+
border-inline: var(--qalendar-border-gray-thin);
|
|
773
|
+
}
|
|
1014
774
|
.calendar-root-wrapper .calendar-root .top-bar-loader {
|
|
1015
775
|
position: absolute;
|
|
1016
776
|
top: 1px;
|
|
@@ -1628,69 +1388,69 @@ pre code.hljs{
|
|
|
1628
1388
|
direction: ltr;
|
|
1629
1389
|
}
|
|
1630
1390
|
|
|
1631
|
-
.calendar-container[data-v-
|
|
1391
|
+
.calendar-container[data-v-c6c8cc7b] {
|
|
1632
1392
|
max-width: 90vw;
|
|
1633
1393
|
}
|
|
1634
|
-
.calendar-section[data-v-
|
|
1394
|
+
.calendar-section[data-v-c6c8cc7b] {
|
|
1635
1395
|
min-width: 280px;
|
|
1636
1396
|
}
|
|
1637
|
-
.calendar-grid[data-v-
|
|
1397
|
+
.calendar-grid[data-v-c6c8cc7b] {
|
|
1638
1398
|
grid-template-columns: repeat(7, 1fr);
|
|
1639
1399
|
}
|
|
1640
|
-
.month-grid[data-v-
|
|
1400
|
+
.month-grid[data-v-c6c8cc7b] {
|
|
1641
1401
|
grid-template-columns: repeat(3, 1fr);
|
|
1642
1402
|
grid-template-rows: repeat(4, 1fr);
|
|
1643
1403
|
}
|
|
1644
|
-
.year-grid[data-v-
|
|
1404
|
+
.year-grid[data-v-c6c8cc7b] {
|
|
1645
1405
|
grid-template-columns: repeat(3, 1fr);
|
|
1646
1406
|
grid-template-rows: repeat(7, 1fr);
|
|
1647
1407
|
}
|
|
1648
|
-
.month-item[data-v-
|
|
1649
|
-
.year-item[data-v-
|
|
1408
|
+
.month-item[data-v-c6c8cc7b],
|
|
1409
|
+
.year-item[data-v-c6c8cc7b] {
|
|
1650
1410
|
background: none;
|
|
1651
1411
|
color: var(--bgl-text-color);
|
|
1652
1412
|
}
|
|
1653
|
-
.month-item[data-v-
|
|
1654
|
-
.year-item[data-v-
|
|
1413
|
+
.month-item[data-v-c6c8cc7b]:hover:not(.disabled),
|
|
1414
|
+
.year-item[data-v-c6c8cc7b]:hover:not(.disabled) {
|
|
1655
1415
|
background: var(--bgl-box-bg);
|
|
1656
1416
|
filter: var(--bgl-hover-filter);
|
|
1657
1417
|
}
|
|
1658
|
-
.month-item[data-v-
|
|
1659
|
-
.year-item[data-v-
|
|
1418
|
+
.month-item[data-v-c6c8cc7b]:active:not(.disabled),
|
|
1419
|
+
.year-item[data-v-c6c8cc7b]:active:not(.disabled) {
|
|
1660
1420
|
background: var(--bgl-box-bg);
|
|
1661
1421
|
filter: var(--bgl-active-filter);
|
|
1662
1422
|
}
|
|
1663
|
-
.month-item.selected[data-v-
|
|
1664
|
-
.year-item.selected[data-v-
|
|
1423
|
+
.month-item.selected[data-v-c6c8cc7b],
|
|
1424
|
+
.year-item.selected[data-v-c6c8cc7b] {
|
|
1665
1425
|
background-color: var(--bgl-primary);
|
|
1666
1426
|
color: white;
|
|
1667
1427
|
}
|
|
1668
|
-
.month-item.disabled[data-v-
|
|
1669
|
-
.year-item.disabled[data-v-
|
|
1428
|
+
.month-item.disabled[data-v-c6c8cc7b],
|
|
1429
|
+
.year-item.disabled[data-v-c6c8cc7b] {
|
|
1670
1430
|
opacity: 0.6;
|
|
1671
1431
|
filter: grayscale(0.3);
|
|
1672
1432
|
}
|
|
1673
|
-
.day[data-v-
|
|
1433
|
+
.day[data-v-c6c8cc7b] {
|
|
1674
1434
|
border: none;
|
|
1675
1435
|
background: none;
|
|
1676
1436
|
color: var(--bgl-text-color);
|
|
1677
1437
|
}
|
|
1678
|
-
.day[data-v-
|
|
1438
|
+
.day[data-v-c6c8cc7b]:hover:not(.disabled) {
|
|
1679
1439
|
background-color: var(--input-bg);
|
|
1680
1440
|
}
|
|
1681
|
-
.day.selected[data-v-
|
|
1441
|
+
.day.selected[data-v-c6c8cc7b] {
|
|
1682
1442
|
background-color: var(--bgl-primary);
|
|
1683
1443
|
color: var(--bgl-white);
|
|
1684
1444
|
}
|
|
1685
|
-
.day.today[data-v-
|
|
1445
|
+
.day.today[data-v-c6c8cc7b]:not(.selected) {
|
|
1686
1446
|
border: 1px solid var(--bgl-primary);
|
|
1687
1447
|
}
|
|
1688
|
-
.day.disabled[data-v-
|
|
1448
|
+
.day.disabled[data-v-c6c8cc7b] {
|
|
1689
1449
|
opacity: 0.6;
|
|
1690
1450
|
filter: grayscale(0.3);
|
|
1691
1451
|
cursor: not-allowed;
|
|
1692
1452
|
}
|
|
1693
|
-
.day.not-in-month[data-v-
|
|
1453
|
+
.day.not-in-month[data-v-c6c8cc7b] {
|
|
1694
1454
|
opacity: 0.4;
|
|
1695
1455
|
}
|
|
1696
1456
|
|
|
@@ -2007,14 +1767,14 @@ pre code.hljs{
|
|
|
2007
1767
|
direction: ltr;
|
|
2008
1768
|
}
|
|
2009
1769
|
|
|
2010
|
-
.txtInputIconStart .iconStart[data-v-
|
|
1770
|
+
.txtInputIconStart .iconStart[data-v-6e5ae00f] {
|
|
2011
1771
|
color: var(--input-color);
|
|
2012
1772
|
position: absolute;
|
|
2013
1773
|
inset-inline-start:calc(var(--input-height) / 3 - 0.25rem);
|
|
2014
1774
|
margin-top: calc(var(--input-height) / 2 );
|
|
2015
1775
|
line-height: 0;
|
|
2016
1776
|
}
|
|
2017
|
-
.textInputSpinnerWrap .spinner[data-v-
|
|
1777
|
+
.textInputSpinnerWrap .spinner[data-v-6e5ae00f] {
|
|
2018
1778
|
color: var(--input-color);
|
|
2019
1779
|
position: absolute;
|
|
2020
1780
|
inset-inline-end: 0;
|
|
@@ -2024,18 +1784,18 @@ pre code.hljs{
|
|
|
2024
1784
|
flex-direction: column;
|
|
2025
1785
|
gap: 0;
|
|
2026
1786
|
}
|
|
2027
|
-
.top-bgl-ctrl-num-btn[data-v-
|
|
1787
|
+
.top-bgl-ctrl-num-btn[data-v-6e5ae00f]{
|
|
2028
1788
|
margin-top: calc(var(--input-height) / 10) !important;
|
|
2029
1789
|
}
|
|
2030
|
-
.bgl-ctrl-num-btn[data-v-
|
|
1790
|
+
.bgl-ctrl-num-btn[data-v-6e5ae00f]{
|
|
2031
1791
|
height: calc(var(--input-height) / 2.5) !important;
|
|
2032
1792
|
isolation: isolate;
|
|
2033
1793
|
}
|
|
2034
|
-
.bgl-big-ctrl-num-btn[data-v-
|
|
1794
|
+
.bgl-big-ctrl-num-btn[data-v-6e5ae00f]{
|
|
2035
1795
|
width: 100% !important;
|
|
2036
1796
|
isolation: isolate;
|
|
2037
1797
|
}
|
|
2038
|
-
.bgl-number-input[data-v-
|
|
1798
|
+
.bgl-number-input[data-v-6e5ae00f]{
|
|
2039
1799
|
padding-inline-end: 1.75rem !important;
|
|
2040
1800
|
}
|
|
2041
1801
|
|
|
@@ -4545,6 +4305,98 @@ body:has(.bg-dark.is-active) {
|
|
|
4545
4305
|
background: transparent;
|
|
4546
4306
|
}
|
|
4547
4307
|
|
|
4308
|
+
.fixed-columns[data-v-c988b157] {
|
|
4309
|
+
border-right: 2px solid var(--border-color);
|
|
4310
|
+
}
|
|
4311
|
+
.spreadsheet table[data-v-c988b157] {
|
|
4312
|
+
border-collapse: collapse;
|
|
4313
|
+
}
|
|
4314
|
+
.spreadsheet th[data-v-c988b157], .spreadsheet td[data-v-c988b157] {
|
|
4315
|
+
border: 1px solid var(--border-color);
|
|
4316
|
+
padding: 0.1rem 0.5rem;
|
|
4317
|
+
min-width: 80px;
|
|
4318
|
+
background: var(--bgl-white);
|
|
4319
|
+
user-select: none;
|
|
4320
|
+
}
|
|
4321
|
+
.spreadsheet th[data-v-c988b157] {
|
|
4322
|
+
background: var(--input-bg);
|
|
4323
|
+
white-space: nowrap;
|
|
4324
|
+
position: relative;
|
|
4325
|
+
padding: 0.25rem 0.5rem;
|
|
4326
|
+
font-weight: 500;
|
|
4327
|
+
text-align: start;
|
|
4328
|
+
}
|
|
4329
|
+
.spreadsheet th .bgl_icon-font[data-v-c988b157]{
|
|
4330
|
+
vertical-align: middle;
|
|
4331
|
+
}
|
|
4332
|
+
.spreadsheet td.selected[data-v-c988b157] {
|
|
4333
|
+
background: var(--bgl-primary-light);
|
|
4334
|
+
}
|
|
4335
|
+
.spreadsheet td.locked[data-v-c988b157] {
|
|
4336
|
+
background: var(--bgl-gray-light);
|
|
4337
|
+
cursor: default;
|
|
4338
|
+
}
|
|
4339
|
+
.spreadsheet td.locked.selected[data-v-c988b157] {
|
|
4340
|
+
background: var(--bgl-primary-light);
|
|
4341
|
+
}
|
|
4342
|
+
.spreadsheet td[data-v-c988b157] {
|
|
4343
|
+
height: 40px;
|
|
4344
|
+
vertical-align: middle;
|
|
4345
|
+
}
|
|
4346
|
+
.spreadsheet td[data-v-c988b157]:has(img){
|
|
4347
|
+
padding: 0;
|
|
4348
|
+
}
|
|
4349
|
+
.spreadsheet td span[data-v-c988b157]{
|
|
4350
|
+
display: block;
|
|
4351
|
+
display: -webkit-box;
|
|
4352
|
+
max-width: 100%;
|
|
4353
|
+
-webkit-box-orient: vertical;
|
|
4354
|
+
overflow: hidden;
|
|
4355
|
+
text-overflow: ellipsis;
|
|
4356
|
+
-webkit-line-clamp: 1;
|
|
4357
|
+
word-break: break-all;
|
|
4358
|
+
}
|
|
4359
|
+
.spreadsheet input[data-v-c988b157] {
|
|
4360
|
+
width: 100%;
|
|
4361
|
+
border: none;
|
|
4362
|
+
background: transparent;
|
|
4363
|
+
padding: 0;
|
|
4364
|
+
margin: 0;
|
|
4365
|
+
min-height: 0;
|
|
4366
|
+
min-width: 0;
|
|
4367
|
+
}
|
|
4368
|
+
.spreadsheet input[data-v-c988b157]:focus {
|
|
4369
|
+
outline: 2px solid var(--bgl-primary);
|
|
4370
|
+
outline-offset: 6px;
|
|
4371
|
+
}
|
|
4372
|
+
.spreadsheet th.sortable[data-v-c988b157] {
|
|
4373
|
+
cursor: pointer;
|
|
4374
|
+
}
|
|
4375
|
+
.row-number-header[data-v-c988b157], .row-number[data-v-c988b157] {
|
|
4376
|
+
width: fit-content;
|
|
4377
|
+
min-width: fit-content !important;
|
|
4378
|
+
padding: 0.1rem 0.7rem !important;
|
|
4379
|
+
}
|
|
4380
|
+
.spreadsheet td .bgl-checkbox[data-v-c988b157]{
|
|
4381
|
+
margin: 0;
|
|
4382
|
+
text-align: center;
|
|
4383
|
+
justify-content: center;
|
|
4384
|
+
}
|
|
4385
|
+
.spreadsheet td[data-v-c988b157]:has(.bgl-checkbox){
|
|
4386
|
+
text-align: center;
|
|
4387
|
+
background: var(--input-bg);
|
|
4388
|
+
}
|
|
4389
|
+
.spreadsheet td[data-v-c988b157]:has(:checked){
|
|
4390
|
+
background: var(--bgl-primary-light);
|
|
4391
|
+
}
|
|
4392
|
+
.spreadsheetCellPlaceHolder[data-v-c988b157]{
|
|
4393
|
+
height: 0px;
|
|
4394
|
+
overflow: hidden;
|
|
4395
|
+
opactiy: 0;
|
|
4396
|
+
poiner-events: none;
|
|
4397
|
+
user-select: none;
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4548
4400
|
.zoomer-debug[data-v-379819e1] {
|
|
4549
4401
|
position: fixed;
|
|
4550
4402
|
top: 0;
|
|
@@ -4667,6 +4519,18 @@ to {
|
|
|
4667
4519
|
border-radius: 100%;
|
|
4668
4520
|
}.aspect-ratio-1 {
|
|
4669
4521
|
aspect-ratio: 1;
|
|
4522
|
+
}.vertical-align-middle,
|
|
4523
|
+
.vertical-middle {
|
|
4524
|
+
vertical-align: middle;
|
|
4525
|
+
}.vertical-align-top,
|
|
4526
|
+
.vertical-top {
|
|
4527
|
+
vertical-align: top;
|
|
4528
|
+
}.vertical-align-bottom,
|
|
4529
|
+
.vertical-bottom {
|
|
4530
|
+
vertical-align: bottom;
|
|
4531
|
+
}.vertical-align-baseline,
|
|
4532
|
+
.vertical-baseline {
|
|
4533
|
+
vertical-align: baseline;
|
|
4670
4534
|
}.flex-center {
|
|
4671
4535
|
justify-content: center;
|
|
4672
4536
|
align-items: center;
|
|
@@ -7938,6 +7802,8 @@ to {
|
|
|
7938
7802
|
justify-content: flex-end;
|
|
7939
7803
|
}.space-between {
|
|
7940
7804
|
justify-content: space-between;
|
|
7805
|
+
}.space-evenly {
|
|
7806
|
+
justify-content: space-evenly;
|
|
7941
7807
|
}.label {
|
|
7942
7808
|
display: block;
|
|
7943
7809
|
font-size: var(--label-font-size);
|
|
@@ -8222,6 +8088,27 @@ to {
|
|
|
8222
8088
|
aspect-ratio: 1;
|
|
8223
8089
|
}
|
|
8224
8090
|
|
|
8091
|
+
.m_vertical-align-middle,
|
|
8092
|
+
.m_vertical-middle {
|
|
8093
|
+
vertical-align: middle;
|
|
8094
|
+
}
|
|
8095
|
+
|
|
8096
|
+
.m_vertical-align-top,
|
|
8097
|
+
.m_vertical-top {
|
|
8098
|
+
vertical-align: top;
|
|
8099
|
+
}
|
|
8100
|
+
|
|
8101
|
+
.m_vertical-align-bottom,
|
|
8102
|
+
.m_vertical-bottom {
|
|
8103
|
+
vertical-align: bottom;
|
|
8104
|
+
}
|
|
8105
|
+
|
|
8106
|
+
.m_vertical-align-baseline,
|
|
8107
|
+
.m_vertical-baseline {
|
|
8108
|
+
vertical-align: baseline;
|
|
8109
|
+
}
|
|
8110
|
+
|
|
8111
|
+
|
|
8225
8112
|
.m_flex-center {
|
|
8226
8113
|
justify-items: center;
|
|
8227
8114
|
align-items: center;
|
|
@@ -12777,6 +12664,10 @@ to {
|
|
|
12777
12664
|
justify-content: space-between;
|
|
12778
12665
|
}
|
|
12779
12666
|
|
|
12667
|
+
.m_space-evenly {
|
|
12668
|
+
justify-content: space-evenly;
|
|
12669
|
+
}
|
|
12670
|
+
|
|
12780
12671
|
.m_label {
|
|
12781
12672
|
display: block;
|
|
12782
12673
|
font-size: var(--label-font-size);
|
|
@@ -14061,100 +13952,104 @@ select {
|
|
|
14061
13952
|
}.bgl_btn,
|
|
14062
13953
|
.bgl_flatBtn,
|
|
14063
13954
|
.bgl_btn-icon {
|
|
14064
|
-
|
|
14065
|
-
|
|
14066
|
-
|
|
14067
|
-
|
|
14068
|
-
|
|
14069
|
-
|
|
14070
|
-
|
|
14071
|
-
|
|
14072
|
-
|
|
14073
|
-
|
|
14074
|
-
|
|
14075
|
-
|
|
14076
|
-
|
|
13955
|
+
font-family: inherit;
|
|
13956
|
+
white-space: nowrap;
|
|
13957
|
+
cursor: pointer;
|
|
13958
|
+
box-sizing: border-box;
|
|
13959
|
+
user-select: none;
|
|
13960
|
+
border: none;
|
|
13961
|
+
transition: var(--bgl-transition);
|
|
13962
|
+
border-radius: var(--btn-border-radius);
|
|
13963
|
+
line-height: var(--btn-height);
|
|
13964
|
+
font-size: var(--input-font-size);
|
|
13965
|
+
display: inline-block;
|
|
13966
|
+
height: var(--btn-height);
|
|
13967
|
+
padding: 0;
|
|
14077
13968
|
}.btn-close {
|
|
14078
|
-
|
|
14079
|
-
|
|
14080
|
-
|
|
14081
|
-
|
|
14082
|
-
|
|
14083
|
-
|
|
14084
|
-
|
|
14085
|
-
|
|
14086
|
-
|
|
14087
|
-
|
|
14088
|
-
|
|
14089
|
-
|
|
14090
|
-
|
|
14091
|
-
|
|
13969
|
+
margin-top: -20px;
|
|
13970
|
+
margin-inline-end: -20px;
|
|
13971
|
+
margin-inline-start: auto;
|
|
13972
|
+
margin-bottom: 15px;
|
|
13973
|
+
transition: var(--bgl-transition);
|
|
13974
|
+
height: 30px;
|
|
13975
|
+
width: 30px;
|
|
13976
|
+
opacity: 0.6;
|
|
13977
|
+
cursor: pointer;
|
|
13978
|
+
border-radius: 100%;
|
|
13979
|
+
outline: 2px solid transparent;
|
|
13980
|
+
display: flex;
|
|
13981
|
+
align-items: center;
|
|
13982
|
+
justify-content: center;
|
|
14092
13983
|
}.btn-close:hover {
|
|
14093
|
-
|
|
14094
|
-
|
|
13984
|
+
background: var(--bgl-gray-light);
|
|
13985
|
+
opacity: 1;
|
|
14095
13986
|
}.btn-close:active {
|
|
14096
|
-
|
|
13987
|
+
background: var(--bgl-gray);
|
|
14097
13988
|
}.btn-close::before {
|
|
14098
|
-
|
|
14099
|
-
|
|
13989
|
+
content: 'close';
|
|
13990
|
+
font-family: 'Material Symbols Outlined', serif;
|
|
14100
13991
|
}.bgl_btn.thin {
|
|
14101
|
-
|
|
14102
|
-
|
|
13992
|
+
height: calc(var(--btn-height) * 0.7);
|
|
13993
|
+
line-height: calc(var(--btn-height) * 0.7);
|
|
14103
13994
|
}.hover {
|
|
14104
|
-
|
|
14105
|
-
|
|
13995
|
+
cursor: pointer;
|
|
13996
|
+
transition: all 400ms ease;
|
|
14106
13997
|
}.hover:hover {
|
|
14107
|
-
|
|
13998
|
+
filter: brightness(90%);
|
|
14108
13999
|
}.hover:active {
|
|
14109
|
-
|
|
14000
|
+
filter: brightness(80%);
|
|
14110
14001
|
}.border {
|
|
14111
|
-
|
|
14002
|
+
border: 1px solid var(--border-color);
|
|
14112
14003
|
}.border-primary {
|
|
14113
|
-
|
|
14004
|
+
border: 1px solid var(--bgl-primary);
|
|
14005
|
+
}.outline {
|
|
14006
|
+
outline: 1px solid var(--border-color);
|
|
14007
|
+
}.outline-primary {
|
|
14008
|
+
outline: 1px solid var(--bgl-primary);
|
|
14114
14009
|
}.rotate-270 {
|
|
14115
|
-
|
|
14010
|
+
transform: rotate(270deg);
|
|
14116
14011
|
}.rotate-180 {
|
|
14117
|
-
|
|
14012
|
+
transform: rotate(180deg);
|
|
14118
14013
|
}.rotate-90 {
|
|
14119
|
-
|
|
14014
|
+
transform: rotate(90deg);
|
|
14120
14015
|
}.rotate-0 {
|
|
14121
|
-
|
|
14016
|
+
transform: rotate(0deg);
|
|
14122
14017
|
}@media screen and (max-width: 910px) {
|
|
14123
|
-
|
|
14124
|
-
|
|
14125
|
-
|
|
14018
|
+
.bgl_btn {
|
|
14019
|
+
padding: 0 20px;
|
|
14020
|
+
}
|
|
14126
14021
|
|
|
14127
|
-
|
|
14128
|
-
|
|
14129
|
-
|
|
14022
|
+
.m_border {
|
|
14023
|
+
border: 1px solid var(--border-color);
|
|
14024
|
+
}
|
|
14130
14025
|
|
|
14131
|
-
|
|
14132
|
-
|
|
14133
|
-
|
|
14026
|
+
.m_rotate-270 {
|
|
14027
|
+
transform: rotate(270deg);
|
|
14028
|
+
}
|
|
14134
14029
|
|
|
14135
|
-
|
|
14136
|
-
|
|
14137
|
-
|
|
14030
|
+
.m_rotate-180 {
|
|
14031
|
+
transform: rotate(180deg);
|
|
14032
|
+
}
|
|
14138
14033
|
|
|
14139
|
-
|
|
14140
|
-
|
|
14141
|
-
|
|
14034
|
+
.m_rotate-90 {
|
|
14035
|
+
transform: rotate(90deg);
|
|
14036
|
+
}
|
|
14142
14037
|
|
|
14143
|
-
|
|
14144
|
-
|
|
14145
|
-
|
|
14038
|
+
.m_rotate-0 {
|
|
14039
|
+
transform: rotate(0deg);
|
|
14040
|
+
}
|
|
14146
14041
|
}.ripple {
|
|
14147
|
-
|
|
14148
|
-
|
|
14149
|
-
|
|
14150
|
-
|
|
14151
|
-
|
|
14152
|
-
|
|
14042
|
+
position: absolute;
|
|
14043
|
+
border-radius: 50%;
|
|
14044
|
+
transform: scale(0);
|
|
14045
|
+
background: rgba(0, 0, 0, 0.3);
|
|
14046
|
+
pointer-events: none;
|
|
14047
|
+
animation: rippleEffect 0.6s ease-out;
|
|
14153
14048
|
}@keyframes rippleEffect {
|
|
14154
|
-
|
|
14155
|
-
|
|
14156
|
-
|
|
14157
|
-
|
|
14049
|
+
to {
|
|
14050
|
+
transform: scale(4);
|
|
14051
|
+
opacity: 0;
|
|
14052
|
+
}
|
|
14158
14053
|
}.txt-center {
|
|
14159
14054
|
text-align: center;
|
|
14160
14055
|
}.txt-start {
|
|
@@ -14315,6 +14210,26 @@ select {
|
|
|
14315
14210
|
}.black,
|
|
14316
14211
|
.font-black {
|
|
14317
14212
|
font-weight: 900;
|
|
14213
|
+
}.line-height-0 {
|
|
14214
|
+
line-height: 0;
|
|
14215
|
+
}.line-height-01 {
|
|
14216
|
+
line-height: 0.1;
|
|
14217
|
+
}.line-height-02 {
|
|
14218
|
+
line-height: 0.2;
|
|
14219
|
+
}.line-height-03 {
|
|
14220
|
+
line-height: 0.3;
|
|
14221
|
+
}.line-height-04 {
|
|
14222
|
+
line-height: 0.4;
|
|
14223
|
+
}.line-height-05 {
|
|
14224
|
+
line-height: 0.5;
|
|
14225
|
+
}.line-height-06 {
|
|
14226
|
+
line-height: 0.6;
|
|
14227
|
+
}.line-height-07 {
|
|
14228
|
+
line-height: 0.7;
|
|
14229
|
+
}.line-height-08 {
|
|
14230
|
+
line-height: 0.8;
|
|
14231
|
+
}.line-height-09 {
|
|
14232
|
+
line-height: 0.9;
|
|
14318
14233
|
}.line-height-1 {
|
|
14319
14234
|
line-height: 1;
|
|
14320
14235
|
}.line-height-11 {
|
|
@@ -14402,6 +14317,7 @@ select {
|
|
|
14402
14317
|
}.white-space {
|
|
14403
14318
|
white-space: nowrap;
|
|
14404
14319
|
}@media screen and (max-width: 910px) {
|
|
14320
|
+
|
|
14405
14321
|
.txt20,
|
|
14406
14322
|
.txt-20 {
|
|
14407
14323
|
font-size: 18px;
|
|
@@ -14677,6 +14593,46 @@ select {
|
|
|
14677
14593
|
font-weight: 900;
|
|
14678
14594
|
}
|
|
14679
14595
|
|
|
14596
|
+
.m_line-height-0 {
|
|
14597
|
+
line-height: 0;
|
|
14598
|
+
}
|
|
14599
|
+
|
|
14600
|
+
.m_line-height-01 {
|
|
14601
|
+
line-height: 0.1;
|
|
14602
|
+
}
|
|
14603
|
+
|
|
14604
|
+
.m_line-height-02 {
|
|
14605
|
+
line-height: 0.2;
|
|
14606
|
+
}
|
|
14607
|
+
|
|
14608
|
+
.m_line-height-03 {
|
|
14609
|
+
line-height: 0.3;
|
|
14610
|
+
}
|
|
14611
|
+
|
|
14612
|
+
.m_line-height-04 {
|
|
14613
|
+
line-height: 0.4;
|
|
14614
|
+
}
|
|
14615
|
+
|
|
14616
|
+
.m_line-height-05 {
|
|
14617
|
+
line-height: 0.5;
|
|
14618
|
+
}
|
|
14619
|
+
|
|
14620
|
+
.m_line-height-06 {
|
|
14621
|
+
line-height: 0.6;
|
|
14622
|
+
}
|
|
14623
|
+
|
|
14624
|
+
.m_line-height-07 {
|
|
14625
|
+
line-height: 0.7;
|
|
14626
|
+
}
|
|
14627
|
+
|
|
14628
|
+
.m_line-height-08 {
|
|
14629
|
+
line-height: 0.8;
|
|
14630
|
+
}
|
|
14631
|
+
|
|
14632
|
+
.m_line-height-09 {
|
|
14633
|
+
line-height: 0.9;
|
|
14634
|
+
}
|
|
14635
|
+
|
|
14680
14636
|
.m_line-height-1 {
|
|
14681
14637
|
line-height: 1;
|
|
14682
14638
|
}
|
|
@@ -15815,298 +15771,309 @@ select {
|
|
|
15815
15771
|
}
|
|
15816
15772
|
|
|
15817
15773
|
}/* TEHEME */:root {
|
|
15818
|
-
|
|
15819
|
-
|
|
15820
|
-
|
|
15821
|
-
|
|
15822
|
-
|
|
15823
|
-
|
|
15824
|
-
|
|
15825
|
-
|
|
15826
|
-
|
|
15827
|
-
|
|
15828
|
-
|
|
15829
|
-
|
|
15830
|
-
|
|
15831
|
-
|
|
15832
|
-
|
|
15833
|
-
|
|
15834
|
-
|
|
15835
|
-
|
|
15836
|
-
|
|
15837
|
-
|
|
15838
|
-
|
|
15839
|
-
|
|
15840
|
-
|
|
15841
|
-
|
|
15842
|
-
|
|
15843
|
-
|
|
15844
|
-
|
|
15845
|
-
|
|
15846
|
-
|
|
15847
|
-
|
|
15848
|
-
|
|
15849
|
-
|
|
15850
|
-
|
|
15851
|
-
|
|
15852
|
-
|
|
15853
|
-
|
|
15854
|
-
|
|
15774
|
+
--bgl-primary: var(--bgl-blue);
|
|
15775
|
+
--bgl-primary-tint: #2e5bff80;
|
|
15776
|
+
--bgl-primary-light: #eef6ff;
|
|
15777
|
+
--bgl-black: #282929;
|
|
15778
|
+
--bgl-black-tint: #28292980;
|
|
15779
|
+
--bgl-white: #fff;
|
|
15780
|
+
--bgl-gray: #b7b7b7;
|
|
15781
|
+
--bgl-gray-light: #f5f8fa;
|
|
15782
|
+
--bgl-gray-80: #e8ecef;
|
|
15783
|
+
--bgl-gray-20: rgba(183, 183, 183, 0.2);
|
|
15784
|
+
--bgl-gray-40: rgba(183, 183, 183, 0.4);
|
|
15785
|
+
--bgl-accent-color: var(--bgl-primary);
|
|
15786
|
+
--bgl-bg: #f4f6fa;
|
|
15787
|
+
--bgl-shadow: #00000031;
|
|
15788
|
+
--border-color: #00000020;
|
|
15789
|
+
--placeholder-color: #00000040;
|
|
15790
|
+
--label-color: #00000080;
|
|
15791
|
+
--input-bg: #f5f8fa;
|
|
15792
|
+
--input-color: #000000;
|
|
15793
|
+
--bgl-box-bg: var(--bgl-white);
|
|
15794
|
+
--bgl-popup-bg: var(--bgl-white);
|
|
15795
|
+
--bgl-popup-text: var(--bgl-black);
|
|
15796
|
+
--bgl-text-color: var(--bgl-black);
|
|
15797
|
+
--bgl-light-text: var(--bgl-white);
|
|
15798
|
+
--bgl-richtext-color: var(--bgl-white);
|
|
15799
|
+
--bgl-code-bg: var(--bgl-black);
|
|
15800
|
+
--bgl-code-color: var(--bgl-white);
|
|
15801
|
+
--bgl-dark-bg: rgba(0, 0, 0, 0.7);
|
|
15802
|
+
--bgl-selection-bg: var(--bgl-blue-dark);
|
|
15803
|
+
--bgl-selection-color: var(--bgl-white);
|
|
15804
|
+
--bgl-scrollbar-thumb: var(--bgl-gray);
|
|
15805
|
+
--pill-btn-color: var(--bgl-white);
|
|
15806
|
+
--pill-btn-bg: var(--placeholder-color);
|
|
15807
|
+
--bgl-selected: var(--bgl-gray-light);
|
|
15808
|
+
--skeleton-bg: #f0f0f0;
|
|
15809
|
+
--skeleton-pulse: var(--bgl-bg);
|
|
15810
|
+
--bgl-range-thumb-color: var(--bgl-white);
|
|
15855
15811
|
}/* TYPE */:root {
|
|
15856
|
-
|
|
15857
|
-
|
|
15812
|
+
--bgl-font: 'Lexend', 'Ploni', sans-serif;
|
|
15813
|
+
--input-font-size: 16px;
|
|
15858
15814
|
}/* DIMENSIONS */:root {
|
|
15859
|
-
|
|
15860
|
-
|
|
15861
|
-
|
|
15862
|
-
|
|
15863
|
-
|
|
15864
|
-
|
|
15865
|
-
|
|
15866
|
-
|
|
15867
|
-
|
|
15868
|
-
|
|
15869
|
-
|
|
15870
|
-
|
|
15871
|
-
|
|
15872
|
-
|
|
15815
|
+
--bgl-font-size: 16px;
|
|
15816
|
+
--input-height: 40px;
|
|
15817
|
+
--label-font-size: 12px;
|
|
15818
|
+
--input-border-radius: 7px;
|
|
15819
|
+
--card-border-radius: 12px;
|
|
15820
|
+
--btn-border-radius: 10px;
|
|
15821
|
+
--btn-padding: 30px;
|
|
15822
|
+
--btn-height: 40px;
|
|
15823
|
+
--pill-border-radius: 8px;
|
|
15824
|
+
--pill-height: 30px;
|
|
15825
|
+
--skeleton-radius: 0.25rem;
|
|
15826
|
+
--skeleton-margin: 1rem;
|
|
15827
|
+
--bgl-range-thumb-size: 20px;
|
|
15828
|
+
--bgl-range-track-height: 8px;
|
|
15873
15829
|
}/* MISC */:root {
|
|
15874
|
-
|
|
15875
|
-
|
|
15876
|
-
|
|
15877
|
-
|
|
15830
|
+
--bgl-transition: all 200ms ease;
|
|
15831
|
+
--bgl-transition-400: all 400ms ease;
|
|
15832
|
+
--bgl-hover-filter: brightness(90%);
|
|
15833
|
+
--bgl-active-filter: brightness(70%);
|
|
15878
15834
|
}/* OTHER COLORS */:root {
|
|
15879
|
-
|
|
15880
|
-
|
|
15881
|
-
|
|
15882
|
-
|
|
15883
|
-
|
|
15884
|
-
|
|
15885
|
-
|
|
15886
|
-
|
|
15887
|
-
|
|
15888
|
-
|
|
15889
|
-
|
|
15890
|
-
|
|
15891
|
-
|
|
15835
|
+
--bgl-blue: #2e5bff;
|
|
15836
|
+
--bgl-blue-20: rgba(46, 91, 255, 20%);
|
|
15837
|
+
--bgl-blue-dark: #191c30;
|
|
15838
|
+
--bgl-blue-light: #eef6ff;
|
|
15839
|
+
--bgl-pink: #f1416c;
|
|
15840
|
+
--bgl-pink-light: #fde8f0;
|
|
15841
|
+
--bgl-red: #ed6c6f;
|
|
15842
|
+
--bgl-red-tint: #fbe2e2;
|
|
15843
|
+
--bgl-red-light: #fde8e8;
|
|
15844
|
+
--bgl-yellow: #ffbb00;
|
|
15845
|
+
--bgl-yellow-light: #fff6d5;
|
|
15846
|
+
--bgl-green: #75c98f;
|
|
15847
|
+
--bgl-green-light: #e8f7f0;
|
|
15848
|
+
--bgl-purple: #8a4baf;
|
|
15849
|
+
--bgl-purple-light: #f0e8f7;
|
|
15850
|
+
--bgl-brown: #a67c52;
|
|
15851
|
+
--bgl-brown-light: #f9f4f0;
|
|
15852
|
+
--bgl-orange: #ff8c00;
|
|
15853
|
+
--bgl-orange-light: #ffebd9;
|
|
15854
|
+
--bgl-turquoise: #00d8c0;
|
|
15855
|
+
--bgl-turquoise-light: #e8f9f7;
|
|
15856
|
+
--whatsapp-gray: #89959f;
|
|
15857
|
+
--whatsapp-green: #e0fcd6;
|
|
15858
|
+
--whatsapp-blue: #71bce6;
|
|
15892
15859
|
}.testMe * {
|
|
15893
|
-
|
|
15860
|
+
outline: 1px dotted red;
|
|
15894
15861
|
}.Vue-Toastification__toast {
|
|
15895
|
-
|
|
15896
|
-
|
|
15862
|
+
border-radius: var(--card-border-radius);
|
|
15863
|
+
box-shadow: none;
|
|
15897
15864
|
}.Vue-Toastification__toast--default {
|
|
15898
|
-
|
|
15865
|
+
background: var(--bgl-primary);
|
|
15899
15866
|
}.Vue-Toastification__close-button {
|
|
15900
|
-
|
|
15901
|
-
|
|
15867
|
+
height: 1.5rem;
|
|
15868
|
+
line-height: 1rem;
|
|
15902
15869
|
}::-moz-selection {
|
|
15903
|
-
|
|
15904
|
-
|
|
15870
|
+
color: var(--bgl-selection-color);
|
|
15871
|
+
background: var(--bgl-selection-bg);
|
|
15905
15872
|
}::selection {
|
|
15906
|
-
|
|
15907
|
-
|
|
15873
|
+
color: var(--bgl-selection-color);
|
|
15874
|
+
background: var(--bgl-selection-bg);
|
|
15908
15875
|
}.popup {
|
|
15909
|
-
|
|
15910
|
-
|
|
15911
|
-
|
|
15912
|
-
|
|
15913
|
-
|
|
15914
|
-
|
|
15876
|
+
border-radius: 15px;
|
|
15877
|
+
background: var(--bgl-popup-bg);
|
|
15878
|
+
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
|
|
15879
|
+
padding: 2rem;
|
|
15880
|
+
min-width: 300px;
|
|
15881
|
+
text-align: center;
|
|
15915
15882
|
}.tabs {
|
|
15916
|
-
|
|
15917
|
-
|
|
15918
|
-
|
|
15919
|
-
|
|
15920
|
-
|
|
15921
|
-
|
|
15922
|
-
|
|
15923
|
-
|
|
15924
|
-
|
|
15925
|
-
|
|
15926
|
-
|
|
15927
|
-
|
|
15883
|
+
-moz-column-gap: 1rem;
|
|
15884
|
+
column-gap: 1rem;
|
|
15885
|
+
margin-top: 20px;
|
|
15886
|
+
margin-bottom: -2rem;
|
|
15887
|
+
border-top: 1px solid var(--border-color);
|
|
15888
|
+
width: calc(100% + 4rem);
|
|
15889
|
+
-webkit-margin-start: -2rem;
|
|
15890
|
+
margin-inline-start: -2rem;
|
|
15891
|
+
-webkit-padding-start: 2rem;
|
|
15892
|
+
padding-inline-start: 2rem;
|
|
15893
|
+
overflow: auto;
|
|
15894
|
+
display: flex;
|
|
15928
15895
|
}.tab {
|
|
15929
|
-
|
|
15930
|
-
|
|
15931
|
-
|
|
15932
|
-
|
|
15933
|
-
|
|
15934
|
-
|
|
15935
|
-
|
|
15936
|
-
|
|
15937
|
-
|
|
15938
|
-
|
|
15896
|
+
font-size: 14px;
|
|
15897
|
+
font-weight: 600;
|
|
15898
|
+
line-height: 2.5;
|
|
15899
|
+
cursor: pointer;
|
|
15900
|
+
transition: var(--bgl-transition);
|
|
15901
|
+
border-bottom: 2px solid transparent;
|
|
15902
|
+
padding: 0 5px;
|
|
15903
|
+
white-space: nowrap;
|
|
15904
|
+
text-decoration: none;
|
|
15905
|
+
color: inherit;
|
|
15939
15906
|
}.tab.active {
|
|
15940
|
-
|
|
15941
|
-
|
|
15907
|
+
color: var(--bgl-primary);
|
|
15908
|
+
border-bottom: 2px solid var(--bgl-primary);
|
|
15942
15909
|
}.tab:hover {
|
|
15943
|
-
|
|
15910
|
+
color: var(--bgl-primary);
|
|
15944
15911
|
}.tab:active {
|
|
15945
|
-
|
|
15946
|
-
|
|
15912
|
+
-webkit-filter: brightness(70%);
|
|
15913
|
+
filter: brightness(70%);
|
|
15947
15914
|
}.router-tab {
|
|
15948
|
-
|
|
15949
|
-
|
|
15950
|
-
|
|
15951
|
-
|
|
15952
|
-
|
|
15953
|
-
|
|
15954
|
-
|
|
15955
|
-
|
|
15956
|
-
|
|
15957
|
-
|
|
15915
|
+
font-size: 14px;
|
|
15916
|
+
font-weight: 600;
|
|
15917
|
+
line-height: 2.5;
|
|
15918
|
+
cursor: pointer;
|
|
15919
|
+
transition: var(--bgl-transition);
|
|
15920
|
+
border-bottom: 2px solid transparent;
|
|
15921
|
+
padding: 0 5px;
|
|
15922
|
+
white-space: nowrap;
|
|
15923
|
+
text-decoration: none;
|
|
15924
|
+
color: inherit;
|
|
15958
15925
|
}.router-tab.router-link-active {
|
|
15959
|
-
|
|
15960
|
-
|
|
15926
|
+
color: var(--bgl-primary);
|
|
15927
|
+
border-bottom: 2px solid var(--bgl-primary);
|
|
15961
15928
|
}.router-tab:hover {
|
|
15962
|
-
|
|
15929
|
+
color: var(--bgl-primary);
|
|
15963
15930
|
}.router-tab:active {
|
|
15964
|
-
|
|
15965
|
-
|
|
15931
|
+
-webkit-filter: brightness(70%);
|
|
15932
|
+
filter: brightness(70%);
|
|
15966
15933
|
}.entity-container {
|
|
15967
|
-
|
|
15968
|
-
|
|
15969
|
-
|
|
15970
|
-
|
|
15971
|
-
|
|
15972
|
-
|
|
15973
|
-
|
|
15974
|
-
|
|
15975
|
-
|
|
15976
|
-
|
|
15977
|
-
|
|
15978
|
-
|
|
15979
|
-
|
|
15934
|
+
display: grid;
|
|
15935
|
+
height: 100%;
|
|
15936
|
+
grid-template-columns: minmax(300px, 1fr) 3fr;
|
|
15937
|
+
grid-gap: 1rem;
|
|
15938
|
+
-moz-column-gap: 1rem;
|
|
15939
|
+
column-gap: 1rem;
|
|
15940
|
+
grid-template-rows: 1fr;
|
|
15941
|
+
grid-template-areas: 'list-view detail-view';
|
|
15942
|
+
transition: grid-template-columns 0.4s cubic-bezier(0.79, 0.01, 0.34, 0.99);
|
|
15943
|
+
transition:
|
|
15944
|
+
grid-template-columns 0.4s cubic-bezier(0.79, 0.01, 0.34, 0.99),
|
|
15945
|
+
-ms-grid-columns 0.4s cubic-bezier(0.79, 0.01, 0.34, 0.99);
|
|
15946
|
+
transition: all 0.5s cubic-bezier(0.79, 0.01, 0.34, 0.99);
|
|
15980
15947
|
}.detail-main {
|
|
15981
|
-
|
|
15948
|
+
overflow-y: auto;
|
|
15982
15949
|
}.content-row p {
|
|
15983
|
-
|
|
15950
|
+
margin: 0 0 10px 0;
|
|
15984
15951
|
}.id {
|
|
15985
|
-
|
|
15986
|
-
|
|
15952
|
+
color: var(--bgl-gray);
|
|
15953
|
+
font-size: 9px;
|
|
15987
15954
|
}.field {
|
|
15988
|
-
|
|
15989
|
-
|
|
15990
|
-
|
|
15991
|
-
|
|
15992
|
-
|
|
15955
|
+
--field-count: 1;
|
|
15956
|
+
--width: calc(100% / var(--field-count));
|
|
15957
|
+
grid-auto-columns: minmax(var(--width), var(--width));
|
|
15958
|
+
font-size: 10px;
|
|
15959
|
+
text-align: z;
|
|
15993
15960
|
}.detail-view-inner {
|
|
15994
|
-
|
|
15995
|
-
|
|
15996
|
-
|
|
15997
|
-
|
|
15998
|
-
|
|
15999
|
-
|
|
15961
|
+
display: grid;
|
|
15962
|
+
height: 100%;
|
|
15963
|
+
overflow: hidden;
|
|
15964
|
+
grid-template-rows: -webkit-max-content 1fr;
|
|
15965
|
+
grid-template-rows: max-content 1fr;
|
|
15966
|
+
gap: 1rem;
|
|
16000
15967
|
}.detail-view-inner-wrap {
|
|
16001
|
-
|
|
16002
|
-
|
|
16003
|
-
|
|
15968
|
+
height: 100%;
|
|
15969
|
+
overflow: hidden;
|
|
15970
|
+
transition: var(--bgl-transition);
|
|
16004
15971
|
}.table-list-wrap {
|
|
16005
|
-
|
|
15972
|
+
overflow: auto;
|
|
16006
15973
|
}.copy-url {
|
|
16007
|
-
|
|
16008
|
-
|
|
16009
|
-
|
|
16010
|
-
|
|
16011
|
-
|
|
16012
|
-
|
|
16013
|
-
|
|
16014
|
-
|
|
15974
|
+
background-color: var(--bgl-gray-light);
|
|
15975
|
+
border-radius: var(--btn-border-radius);
|
|
15976
|
+
padding: 0.5rem 1rem;
|
|
15977
|
+
align-items: center;
|
|
15978
|
+
justify-content: flex-start;
|
|
15979
|
+
margin-bottom: 1rem;
|
|
15980
|
+
display: flex;
|
|
15981
|
+
justify-content: space-between;
|
|
16015
15982
|
}.copy-url a {
|
|
16016
|
-
|
|
16017
|
-
|
|
16018
|
-
|
|
16019
|
-
|
|
16020
|
-
|
|
15983
|
+
margin: 0;
|
|
15984
|
+
font-size: 12px;
|
|
15985
|
+
opacity: 0.8;
|
|
15986
|
+
color: var(--bgl-text-color);
|
|
15987
|
+
word-break: break-all;
|
|
16021
15988
|
}.list-view {
|
|
16022
|
-
|
|
16023
|
-
|
|
16024
|
-
|
|
16025
|
-
|
|
16026
|
-
|
|
16027
|
-
|
|
16028
|
-
|
|
15989
|
+
grid-area: list-view;
|
|
15990
|
+
grid-template-areas: 'list-header''list-content';
|
|
15991
|
+
grid-template-columns: 1fr;
|
|
15992
|
+
overflow-y: auto;
|
|
15993
|
+
grid-template-rows: -webkit-max-content 1fr;
|
|
15994
|
+
grid-template-rows: max-content 1fr;
|
|
15995
|
+
transition: var(--transition);
|
|
16029
15996
|
}.shekel {
|
|
16030
|
-
|
|
15997
|
+
line-height: 0;
|
|
16031
15998
|
}.view-wrapper {
|
|
16032
|
-
|
|
16033
|
-
|
|
16034
|
-
|
|
15999
|
+
height: 100%;
|
|
16000
|
+
position: relative;
|
|
16001
|
+
overflow: hidden;
|
|
16035
16002
|
}@media screen and (max-width: 1000px) {
|
|
16036
|
-
|
|
16037
|
-
|
|
16038
|
-
|
|
16003
|
+
.entity-container {
|
|
16004
|
+
grid-template-columns: minmax(22vw, 1fr) 2fr;
|
|
16005
|
+
}
|
|
16039
16006
|
}@media screen and (max-width: 910px) {
|
|
16040
|
-
|
|
16041
|
-
|
|
16042
|
-
|
|
16007
|
+
.tab {
|
|
16008
|
+
font-size: 12px;
|
|
16009
|
+
}
|
|
16043
16010
|
|
|
16044
|
-
|
|
16045
|
-
|
|
16046
|
-
|
|
16047
|
-
|
|
16011
|
+
.entity-container {
|
|
16012
|
+
grid-template-columns: 1fr;
|
|
16013
|
+
gap: 0;
|
|
16014
|
+
}
|
|
16048
16015
|
|
|
16049
|
-
|
|
16050
|
-
|
|
16051
|
-
|
|
16052
|
-
|
|
16016
|
+
.detail-view-inner {
|
|
16017
|
+
border-radius: var(--card-border-radius);
|
|
16018
|
+
background: var(--bgl-box-bg);
|
|
16019
|
+
}
|
|
16053
16020
|
|
|
16054
|
-
|
|
16055
|
-
|
|
16056
|
-
|
|
16057
|
-
|
|
16058
|
-
|
|
16059
|
-
|
|
16021
|
+
.detail-view-inner-wrap {
|
|
16022
|
+
position: absolute;
|
|
16023
|
+
height: 100%;
|
|
16024
|
+
width: 100%;
|
|
16025
|
+
background: var(--bgl-bg);
|
|
16026
|
+
}
|
|
16060
16027
|
|
|
16061
|
-
|
|
16062
|
-
|
|
16063
|
-
|
|
16028
|
+
.detail-view-inner-wrap.bgl_card {
|
|
16029
|
+
background: var(--bgl-box-bg);
|
|
16030
|
+
}
|
|
16064
16031
|
|
|
16065
|
-
|
|
16066
|
-
|
|
16067
|
-
|
|
16032
|
+
.bgl_card {
|
|
16033
|
+
padding: 1rem 1rem;
|
|
16034
|
+
}
|
|
16068
16035
|
|
|
16069
|
-
|
|
16070
|
-
|
|
16071
|
-
|
|
16072
|
-
|
|
16073
|
-
|
|
16074
|
-
|
|
16075
|
-
|
|
16076
|
-
|
|
16077
|
-
|
|
16078
|
-
|
|
16079
|
-
|
|
16080
|
-
|
|
16081
|
-
|
|
16082
|
-
.popup {
|
|
16083
|
-
border-radius: 15px;
|
|
16084
|
-
background: var(--bgl-popup-bg);
|
|
16085
|
-
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
|
|
16086
|
-
padding: 2rem;
|
|
16087
|
-
min-width: 0;
|
|
16088
|
-
max-width: 90%;
|
|
16089
|
-
max-height: 90vh;
|
|
16090
|
-
overflow-x: auto;
|
|
16091
|
-
text-align: center;
|
|
16092
|
-
}
|
|
16036
|
+
.tabs {
|
|
16037
|
+
-moz-column-gap: 10px;
|
|
16038
|
+
column-gap: 10px;
|
|
16039
|
+
margin-top: 10px;
|
|
16040
|
+
margin-bottom: -15px;
|
|
16041
|
+
box-sizing: border-box;
|
|
16042
|
+
-webkit-margin-start: -1rem;
|
|
16043
|
+
margin-inline-start: -1rem;
|
|
16044
|
+
-webkit-padding-start: 1rem;
|
|
16045
|
+
padding-inline-start: 1rem;
|
|
16046
|
+
max-width: calc(100vw - 2rem);
|
|
16047
|
+
}
|
|
16093
16048
|
|
|
16094
|
-
|
|
16095
|
-
|
|
16096
|
-
|
|
16049
|
+
.popup {
|
|
16050
|
+
border-radius: 15px;
|
|
16051
|
+
background: var(--bgl-popup-bg);
|
|
16052
|
+
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
|
|
16053
|
+
padding: 2rem;
|
|
16054
|
+
min-width: 0;
|
|
16055
|
+
max-width: 90%;
|
|
16056
|
+
max-height: 90vh;
|
|
16057
|
+
overflow-x: auto;
|
|
16058
|
+
text-align: center;
|
|
16059
|
+
}
|
|
16097
16060
|
|
|
16098
|
-
|
|
16099
|
-
|
|
16100
|
-
|
|
16101
|
-
height: fit-content;
|
|
16102
|
-
}
|
|
16061
|
+
.detail-main {
|
|
16062
|
+
overflow-y: unset;
|
|
16063
|
+
}
|
|
16103
16064
|
|
|
16104
|
-
|
|
16105
|
-
|
|
16106
|
-
|
|
16107
|
-
|
|
16108
|
-
|
|
16109
|
-
|
|
16065
|
+
.detail-section {
|
|
16066
|
+
height: -webkit-fit-content;
|
|
16067
|
+
height: -moz-fit-content;
|
|
16068
|
+
height: fit-content;
|
|
16069
|
+
}
|
|
16070
|
+
|
|
16071
|
+
.field {
|
|
16072
|
+
display: flex;
|
|
16073
|
+
flex-wrap: wrap;
|
|
16074
|
+
gap: 0.5rem;
|
|
16075
|
+
align-items: center;
|
|
16076
|
+
}
|
|
16110
16077
|
}[theme="dark"] {
|
|
16111
16078
|
--bgl-primary: #1c4fe1;
|
|
16112
16079
|
--bgl-primary-tint: #1c4fe180;
|