@bagelink/vue 0.0.1218 → 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 +514 -0
- package/dist/components/Calendar/Index.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/header/Header.vue.d.ts +119 -0
- package/dist/components/Calendar/components/header/Header.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/AgendaEventTile.vue.d.ts +37 -0
- package/dist/components/Calendar/components/month/AgendaEventTile.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/AgendaEvents.vue.d.ts +37 -0
- package/dist/components/Calendar/components/month/AgendaEvents.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/Day.vue.d.ts +84 -0
- package/dist/components/Calendar/components/month/Day.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/Event.vue.d.ts +69 -0
- package/dist/components/Calendar/components/month/Event.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/Month.vue.d.ts +134 -0
- package/dist/components/Calendar/components/month/Month.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/WeekDay.vue.d.ts +7 -0
- package/dist/components/Calendar/components/month/WeekDay.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/partials/EventFlyout.vue.d.ts +122 -0
- package/dist/components/Calendar/components/partials/EventFlyout.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/Day.vue.d.ts +152 -0
- package/dist/components/Calendar/components/week/Day.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/DayEvent.vue.d.ts +136 -0
- package/dist/components/Calendar/components/week/DayEvent.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/DayTimeline.vue.d.ts +23 -0
- package/dist/components/Calendar/components/week/DayTimeline.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/FullDayEvent.vue.d.ts +42 -0
- package/dist/components/Calendar/components/week/FullDayEvent.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/Week.vue.d.ts +196 -0
- package/dist/components/Calendar/components/week/Week.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/WeekTimeline.vue.d.ts +21 -0
- package/dist/components/Calendar/components/week/WeekTimeline.vue.d.ts.map +1 -0
- package/dist/components/Calendar/constants.d.ts +13 -0
- package/dist/components/Calendar/constants.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/DayIntervals.d.ts +17 -0
- package/dist/components/Calendar/helpers/DayIntervals.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EDate.d.ts +10 -0
- package/dist/components/Calendar/helpers/EDate.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/Errors.d.ts +18 -0
- package/dist/components/Calendar/helpers/Errors.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventChange.d.ts +19 -0
- package/dist/components/Calendar/helpers/EventChange.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventConcurrency.d.ts +12 -0
- package/dist/components/Calendar/helpers/EventConcurrency.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventFlyoutPosition.d.ts +14 -0
- package/dist/components/Calendar/helpers/EventFlyoutPosition.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventPosition.d.ts +11 -0
- package/dist/components/Calendar/helpers/EventPosition.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventsFilter.d.ts +11 -0
- package/dist/components/Calendar/helpers/EventsFilter.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/Helpers.d.ts +19 -0
- package/dist/components/Calendar/helpers/Helpers.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/Time.d.ts +118 -0
- package/dist/components/Calendar/helpers/Time.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/Week.d.ts +10 -0
- package/dist/components/Calendar/helpers/Week.d.ts.map +1 -0
- package/dist/components/Calendar/index.d.ts +4 -0
- package/dist/components/Calendar/index.d.ts.map +1 -0
- package/dist/components/Calendar/language/index.d.ts +7 -0
- package/dist/components/Calendar/language/index.d.ts.map +1 -0
- package/dist/components/Calendar/language/keys.d.ts +93 -0
- package/dist/components/Calendar/language/keys.d.ts.map +1 -0
- package/dist/components/Calendar/models/Event.d.ts +50 -0
- package/dist/components/Calendar/models/Event.d.ts.map +1 -0
- package/dist/components/Calendar/typings/config.interface.d.ts +77 -0
- package/dist/components/Calendar/typings/config.interface.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/day.interface.d.ts +10 -0
- package/dist/components/Calendar/typings/interfaces/day.interface.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/event.interface.d.ts +32 -0
- package/dist/components/Calendar/typings/interfaces/event.interface.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/full-day-events-week.type.d.ts +7 -0
- package/dist/components/Calendar/typings/interfaces/full-day-events-week.type.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/period.interface.d.ts +6 -0
- package/dist/components/Calendar/typings/interfaces/period.interface.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/time-modes.d.ts +6 -0
- package/dist/components/Calendar/typings/interfaces/time-modes.d.ts.map +1 -0
- package/dist/components/Calendar/typings/types.d.ts +21 -0
- package/dist/components/Calendar/typings/types.d.ts.map +1 -0
- package/dist/components/DataTable/DataTable.vue.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 +9 -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 +3 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/directives/index.d.ts +2 -0
- package/dist/directives/index.d.ts.map +1 -1
- package/dist/directives/vResize.d.ts +18 -0
- package/dist/directives/vResize.d.ts.map +1 -0
- package/dist/index.cjs +5081 -925
- package/dist/index.mjs +5082 -926
- package/dist/style.css +1134 -401
- package/package.json +2 -1
- package/src/components/Calendar/Index.vue +417 -0
- package/src/components/Calendar/assets/base.css +60 -0
- package/src/components/Calendar/components/header/Header.vue +152 -0
- package/src/components/Calendar/components/month/AgendaEventTile.vue +128 -0
- package/src/components/Calendar/components/month/AgendaEvents.vue +61 -0
- package/src/components/Calendar/components/month/Day.vue +253 -0
- package/src/components/Calendar/components/month/Event.vue +164 -0
- package/src/components/Calendar/components/month/Month.vue +232 -0
- package/src/components/Calendar/components/month/WeekDay.vue +15 -0
- package/src/components/Calendar/components/partials/EventFlyout.vue +430 -0
- package/src/components/Calendar/components/week/Day.vue +198 -0
- package/src/components/Calendar/components/week/DayEvent.vue +585 -0
- package/src/components/Calendar/components/week/DayTimeline.vue +86 -0
- package/src/components/Calendar/components/week/FullDayEvent.vue +121 -0
- package/src/components/Calendar/components/week/Week.vue +414 -0
- package/src/components/Calendar/components/week/WeekTimeline.vue +101 -0
- package/src/components/Calendar/constants.ts +13 -0
- package/src/components/Calendar/env.d.ts +8 -0
- package/src/components/Calendar/helpers/DayIntervals.ts +48 -0
- package/src/components/Calendar/helpers/EDate.ts +18 -0
- package/src/components/Calendar/helpers/Errors.ts +69 -0
- package/src/components/Calendar/helpers/EventChange.ts +88 -0
- package/src/components/Calendar/helpers/EventConcurrency.ts +69 -0
- package/src/components/Calendar/helpers/EventFlyoutPosition.ts +96 -0
- package/src/components/Calendar/helpers/EventPosition.ts +154 -0
- package/src/components/Calendar/helpers/EventsFilter.ts +50 -0
- package/src/components/Calendar/helpers/Helpers.ts +86 -0
- package/src/components/Calendar/helpers/Time.ts +588 -0
- package/src/components/Calendar/helpers/Week.ts +37 -0
- package/src/components/Calendar/language/index.ts +40 -0
- package/src/components/Calendar/language/keys.ts +93 -0
- package/src/components/Calendar/models/Event.ts +112 -0
- package/src/components/Calendar/styles/_mixins.css +21 -0
- package/src/components/Calendar/styles/_variables.css +47 -0
- package/src/components/Calendar/typings/config.interface.ts +87 -0
- package/src/components/Calendar/typings/interfaces/day.interface.ts +10 -0
- package/src/components/Calendar/typings/interfaces/event.interface.ts +32 -0
- package/src/components/Calendar/typings/interfaces/full-day-events-week.type.ts +8 -0
- package/src/components/Calendar/typings/interfaces/period.interface.ts +5 -0
- package/src/components/Calendar/typings/interfaces/time-modes.ts +9 -0
- package/src/components/Calendar/typings/types.ts +23 -0
- package/src/components/DataTable/DataTable.vue +4 -0
- package/src/components/Spreadsheet/Index.vue +843 -0
- package/src/components/form/BagelForm.vue +1 -1
- package/src/components/form/inputs/DatePick.vue +193 -152
- package/src/components/form/inputs/DatePicker.vue +2 -2
- package/src/components/form/inputs/NumberInput.vue +3 -5
- package/src/components/index.ts +4 -6
- package/src/directives/index.ts +2 -0
- package/src/directives/vResize.ts +205 -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/dist/style.css
CHANGED
|
@@ -307,6 +307,525 @@ display: block;
|
|
|
307
307
|
border-radius: var(--input-border-radius);
|
|
308
308
|
}
|
|
309
309
|
|
|
310
|
+
.datePick input{
|
|
311
|
+
min-width: 2px !important;
|
|
312
|
+
}
|
|
313
|
+
@media screen and (max-width: 910px) {
|
|
314
|
+
.datePick{
|
|
315
|
+
--input-font-size: 0.75rem;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.agenda__event[data-v-7667cd3d] {
|
|
320
|
+
background-color: var(--2331113a);
|
|
321
|
+
color: var(--13d56971);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.event-flyout {
|
|
325
|
+
position: fixed;
|
|
326
|
+
z-index: 50;
|
|
327
|
+
background-color: #fff;
|
|
328
|
+
max-height: 100%;
|
|
329
|
+
width: var(--34f9e9aa);
|
|
330
|
+
max-width: 98%;
|
|
331
|
+
border: var(--qalendar-border-gray-thin);
|
|
332
|
+
border-radius: 8px;
|
|
333
|
+
box-shadow: 0 12px 24px rgb(0 0 0 / 9%), 0 6px 12px rgb(0 0 0 / 18%);
|
|
334
|
+
overflow: hidden;
|
|
335
|
+
transition: all 0.2s ease;
|
|
336
|
+
transition-property: opacity, transform;
|
|
337
|
+
transform: translateY(-40px);
|
|
338
|
+
opacity: 0;
|
|
339
|
+
pointer-events: none;
|
|
340
|
+
}
|
|
341
|
+
@media (prefers-color-scheme: dark) {
|
|
342
|
+
.event-flyout {
|
|
343
|
+
background-color: var(--qalendar-dark-mode-elevated-surface);
|
|
344
|
+
border-color: transparent;
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
.event-flyout.is-visible {
|
|
348
|
+
opacity: 1;
|
|
349
|
+
transform: translateY(0);
|
|
350
|
+
pointer-events: initial;
|
|
351
|
+
}
|
|
352
|
+
.event-flyout__relative-wrapper {
|
|
353
|
+
position: relative;
|
|
354
|
+
}
|
|
355
|
+
.event-flyout__menu {
|
|
356
|
+
display: flex;
|
|
357
|
+
justify-content: space-between;
|
|
358
|
+
align-items: center;
|
|
359
|
+
}
|
|
360
|
+
.event-flyout__menu-editable,
|
|
361
|
+
.event-flyout__menu-close {
|
|
362
|
+
padding: var(--qalendar-spacing) var(--qalendar-spacing) 0 var(--qalendar-spacing);
|
|
363
|
+
display: flex;
|
|
364
|
+
gap: 20px;
|
|
365
|
+
}
|
|
366
|
+
.is-not-editable .event-flyout__menu-close {
|
|
367
|
+
position: absolute;
|
|
368
|
+
top: 0;
|
|
369
|
+
right: 0;
|
|
370
|
+
}
|
|
371
|
+
.event-flyout__menu-item {
|
|
372
|
+
font-size: var(--qalendar-font-l);
|
|
373
|
+
color: gray;
|
|
374
|
+
}
|
|
375
|
+
@media (prefers-color-scheme: dark) {
|
|
376
|
+
.event-flyout__menu-item {
|
|
377
|
+
color: var(--qalendar-dark-mode-text-hint);
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
.event-flyout__menu-item:hover {
|
|
381
|
+
color: var(--qalendar-theme-color);
|
|
382
|
+
cursor: pointer;
|
|
383
|
+
}
|
|
384
|
+
.is-trash-icon:hover {
|
|
385
|
+
color: red;
|
|
386
|
+
}
|
|
387
|
+
.event-flyout__info-wrapper {
|
|
388
|
+
padding: var(--qalendar-spacing);
|
|
389
|
+
}
|
|
390
|
+
.event-flyout__row {
|
|
391
|
+
display: flex;
|
|
392
|
+
gap: var(--qalendar-spacing);
|
|
393
|
+
margin-bottom: 0.25em;
|
|
394
|
+
font-weight: 400;
|
|
395
|
+
}
|
|
396
|
+
.event-flyout__row p {
|
|
397
|
+
margin: 0;
|
|
398
|
+
padding: 0;
|
|
399
|
+
}
|
|
400
|
+
.event-flyout__row svg {
|
|
401
|
+
margin-top: 0.1rem;
|
|
402
|
+
color: #5f6368;
|
|
403
|
+
width: 14px;
|
|
404
|
+
}
|
|
405
|
+
@media (prefers-color-scheme: dark) {
|
|
406
|
+
.event-flyout__row svg {
|
|
407
|
+
color: var(--qalendar-dark-mode-text-hint);
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
.event-flyout__color-icon {
|
|
411
|
+
--icon-height: 16px;
|
|
412
|
+
border-radius: 50%;
|
|
413
|
+
height: var(--icon-height);
|
|
414
|
+
width: var(--icon-height);
|
|
415
|
+
}
|
|
416
|
+
.is-title {
|
|
417
|
+
font-size: 18px;
|
|
418
|
+
line-height: 1.2;
|
|
419
|
+
align-items: center;
|
|
420
|
+
}
|
|
421
|
+
.is-not-editable .is-title {
|
|
422
|
+
max-width: 90%;
|
|
423
|
+
}
|
|
424
|
+
.is-time {
|
|
425
|
+
font-size: var(--qalendar-font-s);
|
|
426
|
+
margin-bottom: 0.75em;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.calendar-month__event[data-v-3c4101df]:active {
|
|
430
|
+
z-index: 100;
|
|
431
|
+
}
|
|
432
|
+
.calendar-month__event .calendar-month__event-color[data-v-3c4101df] {
|
|
433
|
+
background-color: var(--03af06be);
|
|
434
|
+
width: 6px;
|
|
435
|
+
height: 6px;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.calendar-month__weekday[data-v-de994cfd] {
|
|
439
|
+
height: 100%;
|
|
440
|
+
flex: 1;
|
|
441
|
+
display: flex;
|
|
442
|
+
flex-flow: column;
|
|
443
|
+
align-items: center;
|
|
444
|
+
border-right: var(--qalendar-border-gray-thin);
|
|
445
|
+
border-bottom: var(--qalendar-border-gray-thin);
|
|
446
|
+
overflow: hidden;
|
|
447
|
+
transition: background-color 0.2s ease-in-out;
|
|
448
|
+
}
|
|
449
|
+
.calendar-month__weekday.is-droppable[data-v-de994cfd] {
|
|
450
|
+
background-color: var(--qalendar-light-gray);
|
|
451
|
+
}
|
|
452
|
+
.calendar-month__weekday[data-v-de994cfd]:last-child {
|
|
453
|
+
border-right: 0;
|
|
454
|
+
}
|
|
455
|
+
.calendar-month__weekday.is-selected[data-v-de994cfd] {
|
|
456
|
+
box-shadow: inset 0 0 0 1px var(--bgl-primary);
|
|
457
|
+
}
|
|
458
|
+
.calendar-month__weekday-more[data-v-de994cfd] {
|
|
459
|
+
font-size: var(--qalendar-font-2xs);
|
|
460
|
+
width: 100%;
|
|
461
|
+
padding-left: 4px;
|
|
462
|
+
color: var(--qalendar-gray-quite-dark);
|
|
463
|
+
cursor: pointer;
|
|
464
|
+
}
|
|
465
|
+
.calendar-month_events[data-v-de994cfd] {
|
|
466
|
+
width: 100%;
|
|
467
|
+
}
|
|
468
|
+
.qalendar-is-small .calendar-month_events[data-v-de994cfd] {
|
|
469
|
+
display: flex;
|
|
470
|
+
flex-flow: row;
|
|
471
|
+
justify-content: center;
|
|
472
|
+
}
|
|
473
|
+
.qalendar-is-small .calendar-month_events .calendar-month__weekday-more[data-v-de994cfd] {
|
|
474
|
+
display: none;
|
|
475
|
+
}
|
|
476
|
+
.calendar-month__weekday.is-today .calendar-month__day-date[data-v-de994cfd] {
|
|
477
|
+
background-color: var(--bgl-primary);
|
|
478
|
+
color: #fff;
|
|
479
|
+
border-radius: 50%;
|
|
480
|
+
padding: 4px 6px;
|
|
481
|
+
}
|
|
482
|
+
.qalendar-is-small .calendar-month__weekday.is-today .calendar-month__day-date[data-v-de994cfd] {
|
|
483
|
+
padding: 2px 4px;
|
|
484
|
+
}
|
|
485
|
+
.space-reserver[data-v-de994cfd] {
|
|
486
|
+
height: 100%;
|
|
487
|
+
flex: 1;
|
|
488
|
+
display: flex;
|
|
489
|
+
flex-flow: column;
|
|
490
|
+
align-items: center;
|
|
491
|
+
border-right: var(--qalendar-border-gray-thin);
|
|
492
|
+
border-bottom: var(--qalendar-border-gray-thin);
|
|
493
|
+
border-right-color: transparent;
|
|
494
|
+
}
|
|
495
|
+
.space-reserver + .calendar-month__weekday[data-v-de994cfd]:not(.trailing-or-leading) {
|
|
496
|
+
border-left: var(--qalendar-border-gray-thin);
|
|
497
|
+
}
|
|
498
|
+
@media (prefers-color-scheme: dark) {
|
|
499
|
+
.calendar-month__weekday[data-v-de994cfd],
|
|
500
|
+
.space-reserver[data-v-de994cfd] {
|
|
501
|
+
border-color: var(--qalendar-dark-mode-line-color);
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.calendar-month__week {
|
|
506
|
+
display: flex;
|
|
507
|
+
flex: 1;
|
|
508
|
+
}
|
|
509
|
+
.calendar-month__week:first-child {
|
|
510
|
+
border-top: var(--qalendar-border-gray-thin);
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.calendar-week__event[data-v-d496d603] {
|
|
514
|
+
position: absolute;
|
|
515
|
+
width: 100%;
|
|
516
|
+
border-radius: 4px;
|
|
517
|
+
cursor: pointer;
|
|
518
|
+
box-sizing: content-box;
|
|
519
|
+
user-select: none;
|
|
520
|
+
overflow: hidden;
|
|
521
|
+
}
|
|
522
|
+
.calendar-week__event.is-editable[data-v-d496d603] {
|
|
523
|
+
cursor: grab;
|
|
524
|
+
}
|
|
525
|
+
.calendar-week__event.has-disabled-dnd[data-v-d496d603] {
|
|
526
|
+
cursor: initial;
|
|
527
|
+
}
|
|
528
|
+
.calendar-week__event .calendar-week__event-row[data-v-d496d603] {
|
|
529
|
+
display: flex;
|
|
530
|
+
align-items: flex-start;
|
|
531
|
+
margin-bottom: 0.25em;
|
|
532
|
+
}
|
|
533
|
+
.calendar-week__event .calendar-week__event-row p[data-v-d496d603] {
|
|
534
|
+
margin: 0;
|
|
535
|
+
padding: 0;
|
|
536
|
+
}
|
|
537
|
+
.calendar-week__event .calendar-week__event-info-wrapper[data-v-d496d603] {
|
|
538
|
+
position: relative;
|
|
539
|
+
padding: var(--qalendar-spacing-half);
|
|
540
|
+
font-size: var(--qalendar-font-xs);
|
|
541
|
+
height: 100%;
|
|
542
|
+
box-sizing: border-box;
|
|
543
|
+
user-select: none;
|
|
544
|
+
}
|
|
545
|
+
.calendar-week__event .calendar-week__event-blend-out[data-v-d496d603] {
|
|
546
|
+
position: absolute;
|
|
547
|
+
bottom: 0;
|
|
548
|
+
height: 20px;
|
|
549
|
+
width: 100%;
|
|
550
|
+
transform: translateX(calc(var(--qalendar-spacing-half) * -1));
|
|
551
|
+
}
|
|
552
|
+
.calendar-week__event .calendar-week__event-icon[data-v-d496d603] {
|
|
553
|
+
margin: 2px 4px 0 0;
|
|
554
|
+
font-size: var(--qalendar-font-xs);
|
|
555
|
+
}
|
|
556
|
+
.calendar-week__event .calendar-week__event-resize[data-v-d496d603] {
|
|
557
|
+
position: absolute;
|
|
558
|
+
width: 100%;
|
|
559
|
+
cursor: ns-resize;
|
|
560
|
+
height: 5px;
|
|
561
|
+
}
|
|
562
|
+
.calendar-week__event .calendar-week__event-resize-up[data-v-d496d603] {
|
|
563
|
+
top: 0;
|
|
564
|
+
}
|
|
565
|
+
.calendar-week__event .calendar-week__event-resize-down[data-v-d496d603] {
|
|
566
|
+
bottom: 0;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.calendar-week__day[data-v-87669cec] {
|
|
570
|
+
position: relative;
|
|
571
|
+
width: 100%;
|
|
572
|
+
height: 100%;
|
|
573
|
+
display: flex;
|
|
574
|
+
flex-direction: column;
|
|
575
|
+
}
|
|
576
|
+
.calendar-week__day .calendar-week__day-interval[data-v-87669cec] {
|
|
577
|
+
flex: 1;
|
|
578
|
+
font-size: var(--qalendar-font-xs);
|
|
579
|
+
color: var(--qalendar-gray);
|
|
580
|
+
padding: 2px;
|
|
581
|
+
}
|
|
582
|
+
.calendar-week__day[data-v-87669cec]:first-child {
|
|
583
|
+
border-inline-start: 1px solid var(--border-color);
|
|
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);
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.day-timeline[data-v-a4d8d28d] {
|
|
591
|
+
position: absolute;
|
|
592
|
+
top: 0;
|
|
593
|
+
left: 0;
|
|
594
|
+
width: calc(100% + 10px);
|
|
595
|
+
height: var(--73f3c772);
|
|
596
|
+
transform: translateX(-10px);
|
|
597
|
+
display: flex;
|
|
598
|
+
flex-flow: column;
|
|
599
|
+
justify-content: space-evenly;
|
|
600
|
+
}
|
|
601
|
+
.day-timeline__hour[data-v-a4d8d28d] {
|
|
602
|
+
padding-left: 4px;
|
|
603
|
+
display: flex;
|
|
604
|
+
flex-flow: column;
|
|
605
|
+
justify-content: flex-start;
|
|
606
|
+
height: 100%;
|
|
607
|
+
font-size: clamp(10px, 0.625rem, 14px);
|
|
608
|
+
color: var(--qalendar-gray-quite-dark);
|
|
609
|
+
}
|
|
610
|
+
.day-timeline__hour-text[data-v-a4d8d28d] {
|
|
611
|
+
line-height: 0;
|
|
612
|
+
transform: translate(-40px, 0);
|
|
613
|
+
}
|
|
614
|
+
.day-timeline__hour:first-child .day-timeline__hour-text[data-v-a4d8d28d] {
|
|
615
|
+
display: none;
|
|
616
|
+
}
|
|
617
|
+
.day-timeline__hour[data-v-a4d8d28d]:not(:last-child) {
|
|
618
|
+
border-bottom: var(--qalendar-border-gray-thin);
|
|
619
|
+
}
|
|
620
|
+
@media (prefers-color-scheme: dark) {
|
|
621
|
+
.day-timeline__hour[data-v-a4d8d28d]:not(:last-child) {
|
|
622
|
+
border-color: var(--qalendar-dark-mode-line-color);
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.week-timeline__event[data-v-489753e0] {
|
|
627
|
+
position: relative;
|
|
628
|
+
--event-padding: 3px;
|
|
629
|
+
display: flex;
|
|
630
|
+
align-items: center;
|
|
631
|
+
height: 0.9rem;
|
|
632
|
+
width: calc(100% - var(--event-padding));
|
|
633
|
+
font-size: var(--qalendar-font-2xs);
|
|
634
|
+
border-radius: 4px;
|
|
635
|
+
padding: var(--event-padding);
|
|
636
|
+
margin-bottom: 0.25em;
|
|
637
|
+
text-align: left;
|
|
638
|
+
cursor: pointer;
|
|
639
|
+
user-select: none;
|
|
640
|
+
overflow: hidden;
|
|
641
|
+
}
|
|
642
|
+
.week-timeline__event[data-v-489753e0]:active {
|
|
643
|
+
cursor: not-allowed;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.week-timeline[data-v-e3c7c017] {
|
|
647
|
+
height: fit-content;
|
|
648
|
+
display: flex;
|
|
649
|
+
justify-content: space-evenly;
|
|
650
|
+
}
|
|
651
|
+
.mode-is-day .week-timeline[data-v-e3c7c017] {
|
|
652
|
+
width: calc(100% - 3.5em);
|
|
653
|
+
}
|
|
654
|
+
.week-timeline__day[data-v-e3c7c017] {
|
|
655
|
+
width: 100%;
|
|
656
|
+
}
|
|
657
|
+
.week-timeline__date[data-v-e3c7c017] {
|
|
658
|
+
height: 1rem;
|
|
659
|
+
width: 1rem;
|
|
660
|
+
}
|
|
661
|
+
.is-today .week-timeline__date[data-v-e3c7c017] {
|
|
662
|
+
background: var(--bgl-primary);
|
|
663
|
+
color: var(--bgl-white);
|
|
664
|
+
}
|
|
665
|
+
.week-timeline__events[data-v-e3c7c017] {
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.calendar-week__wrapper[data-v-f1208dd2] {
|
|
669
|
+
position: relative;
|
|
670
|
+
padding-left: var(--qalendar-week-padding-left);
|
|
671
|
+
overflow-y: auto;
|
|
672
|
+
}
|
|
673
|
+
.calendar-week[data-v-f1208dd2] {
|
|
674
|
+
position: relative;
|
|
675
|
+
width: 100%;
|
|
676
|
+
flex: 1 1 auto;
|
|
677
|
+
}
|
|
678
|
+
.calendar-week__events[data-v-f1208dd2] {
|
|
679
|
+
display: flex;
|
|
680
|
+
width: 100%;
|
|
681
|
+
height: var(--7ccd10f4);
|
|
682
|
+
overflow: hidden;
|
|
683
|
+
}
|
|
684
|
+
.calendar-week .current-time-line[data-v-f1208dd2] {
|
|
685
|
+
position: absolute;
|
|
686
|
+
left: 0;
|
|
687
|
+
width: 100%;
|
|
688
|
+
height: 2px;
|
|
689
|
+
z-index: 1;
|
|
690
|
+
background-color: red;
|
|
691
|
+
}
|
|
692
|
+
.calendar-week .current-time-line__circle[data-v-f1208dd2] {
|
|
693
|
+
position: relative;
|
|
694
|
+
}
|
|
695
|
+
.calendar-week .current-time-line__circle[data-v-f1208dd2]::before {
|
|
696
|
+
content: '';
|
|
697
|
+
position: absolute;
|
|
698
|
+
transform: translate(-45%, -45%);
|
|
699
|
+
width: 10px;
|
|
700
|
+
height: 10px;
|
|
701
|
+
border-radius: 50%;
|
|
702
|
+
background-color: red;
|
|
703
|
+
}
|
|
704
|
+
.calendar-week .custom-current-time[data-v-f1208dd2] {
|
|
705
|
+
position: absolute;
|
|
706
|
+
left: 0;
|
|
707
|
+
width: 100%;
|
|
708
|
+
z-index: 1;
|
|
709
|
+
}
|
|
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
|
+
}
|
|
756
|
+
.calendar-root-wrapper {
|
|
757
|
+
width: 100%;
|
|
758
|
+
max-width: 100vw;
|
|
759
|
+
height: 100%;
|
|
760
|
+
display: flex;
|
|
761
|
+
}
|
|
762
|
+
.calendar-root-wrapper .calendar-root {
|
|
763
|
+
flex: 1;
|
|
764
|
+
border-radius: var(--qalendar-border-radius);
|
|
765
|
+
position: relative;
|
|
766
|
+
width: 100%;
|
|
767
|
+
margin: 0 auto;
|
|
768
|
+
display: flex;
|
|
769
|
+
flex-flow: column;
|
|
770
|
+
}
|
|
771
|
+
.calendar-root-wrapper .calendar-root .calendar-month__weeks{
|
|
772
|
+
border-inline: var(--qalendar-border-gray-thin);
|
|
773
|
+
}
|
|
774
|
+
.calendar-root-wrapper .calendar-root .top-bar-loader {
|
|
775
|
+
position: absolute;
|
|
776
|
+
top: 1px;
|
|
777
|
+
left: 2px;
|
|
778
|
+
width: calc(100% - 4px);
|
|
779
|
+
height: 3px;
|
|
780
|
+
background: rgba(241, 241, 241, 0.2);
|
|
781
|
+
border-radius: 16px;
|
|
782
|
+
overflow: hidden;
|
|
783
|
+
}
|
|
784
|
+
.calendar-root-wrapper .calendar-root .top-bar-loader:before {
|
|
785
|
+
content: '';
|
|
786
|
+
height: 4px;
|
|
787
|
+
width: calc(100% - 4px);
|
|
788
|
+
position: absolute;
|
|
789
|
+
top: 1px;
|
|
790
|
+
left: 2px;
|
|
791
|
+
background: rgb(38, 132, 255);
|
|
792
|
+
background: linear-gradient(
|
|
793
|
+
90deg,
|
|
794
|
+
rgba(38, 132, 255, 1) 0%,
|
|
795
|
+
rgba(38, 132, 255, 0.5088410364145659) 48%,
|
|
796
|
+
rgba(38, 132, 255, 1) 100%
|
|
797
|
+
);
|
|
798
|
+
animation: load 1.8s infinite;
|
|
799
|
+
border-radius: 16px;
|
|
800
|
+
}
|
|
801
|
+
@media (prefers-color-scheme: dark) {
|
|
802
|
+
.calendar-root-wrapper .calendar-root .top-bar-loader:before {
|
|
803
|
+
background: rgb(229, 224, 245);
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
@keyframes load {
|
|
807
|
+
0% {
|
|
808
|
+
width: 0;
|
|
809
|
+
left: -100%;
|
|
810
|
+
}
|
|
811
|
+
50% {
|
|
812
|
+
left: 0;
|
|
813
|
+
width: 100%;
|
|
814
|
+
}
|
|
815
|
+
100% {
|
|
816
|
+
width: 0;
|
|
817
|
+
left: 100%;
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
.calendar-root-wrapper .calendar-root .loading-enter-active,
|
|
821
|
+
.calendar-root-wrapper .calendar-root .loading-leave-active {
|
|
822
|
+
transition: background 0.5s ease;
|
|
823
|
+
}
|
|
824
|
+
.calendar-root-wrapper .calendar-root .loading-leave-to,
|
|
825
|
+
.calendar-root-wrapper .calendar-root .loading-enter-from {
|
|
826
|
+
background-color: rgba(255, 255, 255, 0);
|
|
827
|
+
}
|
|
828
|
+
|
|
310
829
|
.card_label {
|
|
311
830
|
font-size: 1rem;
|
|
312
831
|
position: relative;
|
|
@@ -473,22 +992,22 @@ display: block;
|
|
|
473
992
|
font-size: 0.95rem;
|
|
474
993
|
}
|
|
475
994
|
|
|
476
|
-
.table-list-wrap[data-v-
|
|
995
|
+
.table-list-wrap[data-v-3668ec69] {
|
|
477
996
|
min-height: 150px;
|
|
478
997
|
}
|
|
479
|
-
.selected[data-v-
|
|
998
|
+
.selected[data-v-3668ec69] {
|
|
480
999
|
background: var(--bgl-primary-tint);
|
|
481
1000
|
}
|
|
482
|
-
tbody tr.selected[data-v-
|
|
1001
|
+
tbody tr.selected[data-v-3668ec69]:hover {
|
|
483
1002
|
background: var(--bgl-primary-light);
|
|
484
1003
|
}
|
|
485
|
-
.loading-table[data-v-
|
|
1004
|
+
.loading-table[data-v-3668ec69] {
|
|
486
1005
|
position: relative;
|
|
487
1006
|
}
|
|
488
|
-
.inset[data-v-
|
|
1007
|
+
.inset[data-v-3668ec69] {
|
|
489
1008
|
inset: 0;
|
|
490
1009
|
}
|
|
491
|
-
.loading-table-animation[data-v-
|
|
1010
|
+
.loading-table-animation[data-v-3668ec69] {
|
|
492
1011
|
--size: 60px;
|
|
493
1012
|
top: 30vh;
|
|
494
1013
|
inset-inline-start: calc(50% - var(--size));
|
|
@@ -496,9 +1015,9 @@ tbody tr.selected[data-v-a1cf8002]:hover {
|
|
|
496
1015
|
border-top: 4px solid var(--bgl-primary);
|
|
497
1016
|
width: var(--size);
|
|
498
1017
|
height: var(--size);
|
|
499
|
-
animation: loading-table-
|
|
1018
|
+
animation: loading-table-3668ec69 1s linear infinite;
|
|
500
1019
|
}
|
|
501
|
-
@keyframes loading-table-
|
|
1020
|
+
@keyframes loading-table-3668ec69 {
|
|
502
1021
|
0% {
|
|
503
1022
|
transform: translate(-50%, -50%) rotate(0deg);
|
|
504
1023
|
}
|
|
@@ -506,51 +1025,55 @@ tbody tr.selected[data-v-a1cf8002]:hover {
|
|
|
506
1025
|
transform: translate(-50%, -50%) rotate(360deg);
|
|
507
1026
|
}
|
|
508
1027
|
}
|
|
509
|
-
.list-arrows[data-v-
|
|
1028
|
+
.list-arrows[data-v-3668ec69] {
|
|
510
1029
|
opacity: 0;
|
|
511
1030
|
}
|
|
512
|
-
.list-arrows .bgl_icon-font[data-v-
|
|
1031
|
+
.list-arrows .bgl_icon-font[data-v-3668ec69] {
|
|
513
1032
|
transition: all ease-in-out 0.2s;
|
|
514
1033
|
}
|
|
515
|
-
.list-arrows.sorted[data-v-
|
|
1034
|
+
.list-arrows.sorted[data-v-3668ec69] {
|
|
516
1035
|
opacity: 1;
|
|
517
1036
|
}
|
|
518
|
-
.col img[data-v-
|
|
1037
|
+
.col img[data-v-3668ec69] {
|
|
519
1038
|
height: 35px;
|
|
520
1039
|
margin-top: -14px;
|
|
521
1040
|
margin-bottom: -14px;
|
|
522
1041
|
border-radius: 5px;
|
|
1042
|
+
object-fit: cover;
|
|
1043
|
+
}
|
|
1044
|
+
.col[data-v-3668ec69]:has(img) {
|
|
1045
|
+
padding-inline-end: 0.5rem;
|
|
523
1046
|
}
|
|
524
|
-
.list-arrows.sorted .desc[data-v-
|
|
1047
|
+
.list-arrows.sorted .desc[data-v-3668ec69] {
|
|
525
1048
|
transform: rotate(180deg);
|
|
526
1049
|
display: inline-block;
|
|
527
1050
|
}
|
|
528
|
-
table[data-v-
|
|
1051
|
+
table[data-v-3668ec69] {
|
|
529
1052
|
border-spacing: 0 15px;
|
|
530
1053
|
border-collapse: collapse;
|
|
531
1054
|
width: 100%;
|
|
532
1055
|
}
|
|
533
|
-
th[data-v-
|
|
1056
|
+
th[data-v-3668ec69] {
|
|
534
1057
|
font-size: 0.8rem;
|
|
535
1058
|
color: var(--bgl-black-tint);
|
|
536
1059
|
position: sticky;
|
|
537
1060
|
top: 0;
|
|
538
1061
|
z-index: 2;
|
|
539
1062
|
background: var(--bgl-box-bg);
|
|
540
|
-
height: var(--
|
|
1063
|
+
height: var(--3ee4947a);
|
|
541
1064
|
vertical-align: bottom;
|
|
542
1065
|
font-weight: 400;
|
|
543
1066
|
text-align: start;
|
|
544
1067
|
}
|
|
545
|
-
.embedded-field[data-v-
|
|
1068
|
+
.embedded-field[data-v-3668ec69] {
|
|
546
1069
|
margin-bottom: -0.2rem;
|
|
547
1070
|
margin-top: -0.2rem;
|
|
548
1071
|
}
|
|
549
|
-
.row[data-v-
|
|
1072
|
+
.row[data-v-3668ec69] {
|
|
550
1073
|
border-bottom: 1px solid var(--border-color);
|
|
551
1074
|
cursor: pointer;
|
|
552
1075
|
}
|
|
553
|
-
.row.first-row[data-v-
|
|
1076
|
+
.row.first-row[data-v-3668ec69] {
|
|
554
1077
|
font-size: 0.8rem;
|
|
555
1078
|
color: var(--bgl-black-tint);
|
|
556
1079
|
position: sticky;
|
|
@@ -559,7 +1082,7 @@ th[data-v-a1cf8002] {
|
|
|
559
1082
|
background: var(--bgl-box-bg);
|
|
560
1083
|
vertical-align: bottom;
|
|
561
1084
|
}
|
|
562
|
-
.row.first-row[data-v-
|
|
1085
|
+
.row.first-row[data-v-3668ec69]::after {
|
|
563
1086
|
content: '';
|
|
564
1087
|
border-bottom: 1px solid var(--border-color);
|
|
565
1088
|
position: absolute;
|
|
@@ -567,11 +1090,11 @@ th[data-v-a1cf8002] {
|
|
|
567
1090
|
right: 0;
|
|
568
1091
|
bottom: -1px;
|
|
569
1092
|
}
|
|
570
|
-
.first-row .col[data-v-
|
|
1093
|
+
.first-row .col[data-v-3668ec69] {
|
|
571
1094
|
cursor: pointer;
|
|
572
1095
|
background: var(--bgl-box-bg);
|
|
573
1096
|
}
|
|
574
|
-
.col[data-v-
|
|
1097
|
+
.col[data-v-3668ec69] {
|
|
575
1098
|
white-space: nowrap;
|
|
576
1099
|
padding: 0.75rem 1rem;
|
|
577
1100
|
transition: var(--bgl-transition);
|
|
@@ -581,19 +1104,19 @@ th[data-v-a1cf8002] {
|
|
|
581
1104
|
overflow: hidden;
|
|
582
1105
|
max-width: 30vw;
|
|
583
1106
|
}
|
|
584
|
-
.col[data-v-
|
|
1107
|
+
.col[data-v-3668ec69]:has(.bagel-input) {
|
|
585
1108
|
padding: 0rem 0.25rem;
|
|
586
1109
|
}
|
|
587
|
-
.col > div[data-v-
|
|
1110
|
+
.col > div[data-v-3668ec69] {
|
|
588
1111
|
display: flex;
|
|
589
1112
|
gap: 0.5rem;
|
|
590
1113
|
}
|
|
591
|
-
.max-col-width[data-v-
|
|
1114
|
+
.max-col-width[data-v-3668ec69] {
|
|
592
1115
|
max-width: 30vw;
|
|
593
1116
|
overflow: hidden;
|
|
594
1117
|
text-overflow: ellipsis;
|
|
595
1118
|
}
|
|
596
|
-
.col.check .bgl_icon-font[data-v-
|
|
1119
|
+
.col.check .bgl_icon-font[data-v-3668ec69] {
|
|
597
1120
|
border-radius: 100%;
|
|
598
1121
|
background: var(--bgl-blue-20);
|
|
599
1122
|
color: var(--bgl-primary);
|
|
@@ -604,35 +1127,35 @@ th[data-v-a1cf8002] {
|
|
|
604
1127
|
justify-content: center;
|
|
605
1128
|
margin-top: -2px;
|
|
606
1129
|
}
|
|
607
|
-
.rows[data-v-
|
|
1130
|
+
.rows[data-v-3668ec69] {
|
|
608
1131
|
font-size: 0.88em;
|
|
609
1132
|
}
|
|
610
|
-
.table-list[data-v-
|
|
1133
|
+
.table-list[data-v-3668ec69] {
|
|
611
1134
|
height: 100%;
|
|
612
1135
|
position: relative;
|
|
613
1136
|
padding-left: 0 !important;
|
|
614
1137
|
padding-right: 0 !important;
|
|
615
1138
|
overflow: auto;
|
|
616
1139
|
}
|
|
617
|
-
.BagelTable .table-list[data-v-
|
|
1140
|
+
.BagelTable .table-list[data-v-3668ec69] {
|
|
618
1141
|
overflow: unset;
|
|
619
1142
|
}
|
|
620
|
-
.row-item[data-v-
|
|
621
|
-
height: var(--
|
|
1143
|
+
.row-item[data-v-3668ec69] {
|
|
1144
|
+
height: var(--3ee4947a);
|
|
622
1145
|
transition: all 200ms ease;
|
|
623
1146
|
}
|
|
624
|
-
.row-item[data-v-
|
|
1147
|
+
.row-item[data-v-3668ec69]:hover {
|
|
625
1148
|
background: var(--bgl-gray-light);
|
|
626
1149
|
}
|
|
627
|
-
.row-item input[type='checkbox'][data-v-
|
|
1150
|
+
.row-item input[type='checkbox'][data-v-3668ec69] {
|
|
628
1151
|
margin-top: 0.45rem !important;
|
|
629
1152
|
accent-color: var(--bgl-accent-color);
|
|
630
1153
|
}
|
|
631
|
-
.infinite-wrapper[data-v-
|
|
1154
|
+
.infinite-wrapper[data-v-3668ec69] {
|
|
632
1155
|
overflow-y: auto;
|
|
633
1156
|
width: 100%;
|
|
634
1157
|
}
|
|
635
|
-
input[type='checkbox'][data-v-
|
|
1158
|
+
input[type='checkbox'][data-v-3668ec69] {
|
|
636
1159
|
margin-top: 0.3rem !important;
|
|
637
1160
|
accent-color: var(--bgl-accent-color);
|
|
638
1161
|
transform: scale(1.2);
|
|
@@ -644,7 +1167,7 @@ input[type='checkbox'][data-v-a1cf8002] {
|
|
|
644
1167
|
height: 0.85rem;
|
|
645
1168
|
width: 0.85rem;
|
|
646
1169
|
}
|
|
647
|
-
input[type='checkbox'][data-v-
|
|
1170
|
+
input[type='checkbox'][data-v-3668ec69]::before {
|
|
648
1171
|
content: '';
|
|
649
1172
|
height: 0.85rem;
|
|
650
1173
|
width: 0.85rem;
|
|
@@ -657,18 +1180,18 @@ input[type='checkbox'][data-v-a1cf8002]::before {
|
|
|
657
1180
|
transform: scale(1);
|
|
658
1181
|
position: absolute;
|
|
659
1182
|
}
|
|
660
|
-
input[type='checkbox'][data-v-
|
|
1183
|
+
input[type='checkbox'][data-v-3668ec69]:hover::before {
|
|
661
1184
|
opacity: 0.2;
|
|
662
1185
|
transform: scale(2);
|
|
663
1186
|
}
|
|
664
|
-
[lang='he'] [dir='ltr'][data-v-
|
|
1187
|
+
[lang='he'] [dir='ltr'][data-v-3668ec69] {
|
|
665
1188
|
text-align: right;
|
|
666
1189
|
}
|
|
667
|
-
th input[type='checkbox'][data-v-
|
|
1190
|
+
th input[type='checkbox'][data-v-3668ec69] {
|
|
668
1191
|
transform: translateY(0.2rem) scale(1.2);
|
|
669
1192
|
accent-color: var(--bgl-accent-color);
|
|
670
1193
|
}
|
|
671
|
-
th[data-v-
|
|
1194
|
+
th[data-v-3668ec69]::after {
|
|
672
1195
|
content: '';
|
|
673
1196
|
border-bottom: 1px solid var(--border-color);
|
|
674
1197
|
position: absolute;
|
|
@@ -676,24 +1199,24 @@ th[data-v-a1cf8002]::after {
|
|
|
676
1199
|
right: 0;
|
|
677
1200
|
bottom: -1px;
|
|
678
1201
|
}
|
|
679
|
-
tr[data-v-
|
|
1202
|
+
tr[data-v-3668ec69] {
|
|
680
1203
|
border-bottom: 1px solid var(--border-color);
|
|
681
1204
|
cursor: pointer;
|
|
682
1205
|
align-items: center;
|
|
683
1206
|
}
|
|
684
|
-
td[data-v-
|
|
685
|
-
th[data-v-
|
|
1207
|
+
td[data-v-3668ec69],
|
|
1208
|
+
th[data-v-3668ec69] {
|
|
686
1209
|
white-space: nowrap;
|
|
687
1210
|
padding: 0.75rem 0.65rem;
|
|
688
1211
|
transition: var(--bgl-transition);
|
|
689
1212
|
line-height: 1;
|
|
690
1213
|
}
|
|
691
|
-
tbody tr[data-v-
|
|
1214
|
+
tbody tr[data-v-3668ec69] {
|
|
692
1215
|
font-size: 0.88em;
|
|
693
|
-
height: var(--
|
|
1216
|
+
height: var(--3ee4947a);
|
|
694
1217
|
transition: all 200ms ease;
|
|
695
1218
|
}
|
|
696
|
-
tbody tr[data-v-
|
|
1219
|
+
tbody tr[data-v-3668ec69]:hover {
|
|
697
1220
|
background: var(--bgl-gray-light);
|
|
698
1221
|
}
|
|
699
1222
|
|
|
@@ -865,67 +1388,70 @@ pre code.hljs{
|
|
|
865
1388
|
direction: ltr;
|
|
866
1389
|
}
|
|
867
1390
|
|
|
868
|
-
.calendar-container[data-v-
|
|
1391
|
+
.calendar-container[data-v-c6c8cc7b] {
|
|
869
1392
|
max-width: 90vw;
|
|
870
1393
|
}
|
|
871
|
-
.calendar-section[data-v-
|
|
1394
|
+
.calendar-section[data-v-c6c8cc7b] {
|
|
872
1395
|
min-width: 280px;
|
|
873
1396
|
}
|
|
874
|
-
.calendar-grid[data-v-
|
|
1397
|
+
.calendar-grid[data-v-c6c8cc7b] {
|
|
875
1398
|
grid-template-columns: repeat(7, 1fr);
|
|
876
1399
|
}
|
|
877
|
-
.month-grid[data-v-
|
|
1400
|
+
.month-grid[data-v-c6c8cc7b] {
|
|
878
1401
|
grid-template-columns: repeat(3, 1fr);
|
|
879
1402
|
grid-template-rows: repeat(4, 1fr);
|
|
880
1403
|
}
|
|
881
|
-
.year-grid[data-v-
|
|
1404
|
+
.year-grid[data-v-c6c8cc7b] {
|
|
882
1405
|
grid-template-columns: repeat(3, 1fr);
|
|
883
1406
|
grid-template-rows: repeat(7, 1fr);
|
|
884
1407
|
}
|
|
885
|
-
.month-item[data-v-
|
|
886
|
-
.year-item[data-v-
|
|
1408
|
+
.month-item[data-v-c6c8cc7b],
|
|
1409
|
+
.year-item[data-v-c6c8cc7b] {
|
|
887
1410
|
background: none;
|
|
888
1411
|
color: var(--bgl-text-color);
|
|
889
1412
|
}
|
|
890
|
-
.month-item[data-v-
|
|
891
|
-
.year-item[data-v-
|
|
1413
|
+
.month-item[data-v-c6c8cc7b]:hover:not(.disabled),
|
|
1414
|
+
.year-item[data-v-c6c8cc7b]:hover:not(.disabled) {
|
|
892
1415
|
background: var(--bgl-box-bg);
|
|
893
|
-
filter:var(--bgl-hover-filter);
|
|
1416
|
+
filter: var(--bgl-hover-filter);
|
|
894
1417
|
}
|
|
895
|
-
.month-item[data-v-
|
|
896
|
-
.year-item[data-v-
|
|
1418
|
+
.month-item[data-v-c6c8cc7b]:active:not(.disabled),
|
|
1419
|
+
.year-item[data-v-c6c8cc7b]:active:not(.disabled) {
|
|
897
1420
|
background: var(--bgl-box-bg);
|
|
898
|
-
filter:var(--bgl-active-filter);
|
|
1421
|
+
filter: var(--bgl-active-filter);
|
|
899
1422
|
}
|
|
900
|
-
.month-item.selected[data-v-
|
|
901
|
-
.year-item.selected[data-v-
|
|
1423
|
+
.month-item.selected[data-v-c6c8cc7b],
|
|
1424
|
+
.year-item.selected[data-v-c6c8cc7b] {
|
|
902
1425
|
background-color: var(--bgl-primary);
|
|
903
1426
|
color: white;
|
|
904
1427
|
}
|
|
905
|
-
.month-item.disabled[data-v-
|
|
906
|
-
.year-item.disabled[data-v-
|
|
1428
|
+
.month-item.disabled[data-v-c6c8cc7b],
|
|
1429
|
+
.year-item.disabled[data-v-c6c8cc7b] {
|
|
907
1430
|
opacity: 0.6;
|
|
908
1431
|
filter: grayscale(0.3);
|
|
909
1432
|
}
|
|
910
|
-
.day[data-v-
|
|
1433
|
+
.day[data-v-c6c8cc7b] {
|
|
911
1434
|
border: none;
|
|
912
1435
|
background: none;
|
|
913
1436
|
color: var(--bgl-text-color);
|
|
914
1437
|
}
|
|
915
|
-
.day[data-v-
|
|
1438
|
+
.day[data-v-c6c8cc7b]:hover:not(.disabled) {
|
|
916
1439
|
background-color: var(--input-bg);
|
|
917
1440
|
}
|
|
918
|
-
.day.selected[data-v-
|
|
1441
|
+
.day.selected[data-v-c6c8cc7b] {
|
|
919
1442
|
background-color: var(--bgl-primary);
|
|
920
1443
|
color: var(--bgl-white);
|
|
921
1444
|
}
|
|
922
|
-
.day.today[data-v-
|
|
1445
|
+
.day.today[data-v-c6c8cc7b]:not(.selected) {
|
|
923
1446
|
border: 1px solid var(--bgl-primary);
|
|
924
1447
|
}
|
|
925
|
-
.day.disabled[data-v-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
1448
|
+
.day.disabled[data-v-c6c8cc7b] {
|
|
1449
|
+
opacity: 0.6;
|
|
1450
|
+
filter: grayscale(0.3);
|
|
1451
|
+
cursor: not-allowed;
|
|
1452
|
+
}
|
|
1453
|
+
.day.not-in-month[data-v-c6c8cc7b] {
|
|
1454
|
+
opacity: 0.4;
|
|
929
1455
|
}
|
|
930
1456
|
|
|
931
1457
|
.datetime-wrap {
|
|
@@ -1241,14 +1767,14 @@ pre code.hljs{
|
|
|
1241
1767
|
direction: ltr;
|
|
1242
1768
|
}
|
|
1243
1769
|
|
|
1244
|
-
.txtInputIconStart .iconStart[data-v-
|
|
1770
|
+
.txtInputIconStart .iconStart[data-v-6e5ae00f] {
|
|
1245
1771
|
color: var(--input-color);
|
|
1246
1772
|
position: absolute;
|
|
1247
1773
|
inset-inline-start:calc(var(--input-height) / 3 - 0.25rem);
|
|
1248
1774
|
margin-top: calc(var(--input-height) / 2 );
|
|
1249
1775
|
line-height: 0;
|
|
1250
1776
|
}
|
|
1251
|
-
.textInputSpinnerWrap .spinner[data-v-
|
|
1777
|
+
.textInputSpinnerWrap .spinner[data-v-6e5ae00f] {
|
|
1252
1778
|
color: var(--input-color);
|
|
1253
1779
|
position: absolute;
|
|
1254
1780
|
inset-inline-end: 0;
|
|
@@ -1258,18 +1784,18 @@ pre code.hljs{
|
|
|
1258
1784
|
flex-direction: column;
|
|
1259
1785
|
gap: 0;
|
|
1260
1786
|
}
|
|
1261
|
-
.top-bgl-ctrl-num-btn[data-v-
|
|
1787
|
+
.top-bgl-ctrl-num-btn[data-v-6e5ae00f]{
|
|
1262
1788
|
margin-top: calc(var(--input-height) / 10) !important;
|
|
1263
1789
|
}
|
|
1264
|
-
.bgl-ctrl-num-btn[data-v-
|
|
1790
|
+
.bgl-ctrl-num-btn[data-v-6e5ae00f]{
|
|
1265
1791
|
height: calc(var(--input-height) / 2.5) !important;
|
|
1266
1792
|
isolation: isolate;
|
|
1267
1793
|
}
|
|
1268
|
-
.bgl-big-ctrl-num-btn[data-v-
|
|
1794
|
+
.bgl-big-ctrl-num-btn[data-v-6e5ae00f]{
|
|
1269
1795
|
width: 100% !important;
|
|
1270
1796
|
isolation: isolate;
|
|
1271
1797
|
}
|
|
1272
|
-
.bgl-number-input[data-v-
|
|
1798
|
+
.bgl-number-input[data-v-6e5ae00f]{
|
|
1273
1799
|
padding-inline-end: 1.75rem !important;
|
|
1274
1800
|
}
|
|
1275
1801
|
|
|
@@ -3773,10 +4299,102 @@ body:has(.bg-dark.is-active) {
|
|
|
3773
4299
|
.bgl_pill.round[data-v-2ca4d3a1] {
|
|
3774
4300
|
border-radius: 1000px;
|
|
3775
4301
|
}
|
|
3776
|
-
.bgl_pill-border[data-v-2ca4d3a1] {
|
|
3777
|
-
outline: 1px solid var(--2a89394f);
|
|
3778
|
-
color: var(--2a89394f);
|
|
3779
|
-
background: transparent;
|
|
4302
|
+
.bgl_pill-border[data-v-2ca4d3a1] {
|
|
4303
|
+
outline: 1px solid var(--2a89394f);
|
|
4304
|
+
color: var(--2a89394f);
|
|
4305
|
+
background: transparent;
|
|
4306
|
+
}
|
|
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;
|
|
3780
4398
|
}
|
|
3781
4399
|
|
|
3782
4400
|
.zoomer-debug[data-v-379819e1] {
|
|
@@ -3901,6 +4519,18 @@ to {
|
|
|
3901
4519
|
border-radius: 100%;
|
|
3902
4520
|
}.aspect-ratio-1 {
|
|
3903
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;
|
|
3904
4534
|
}.flex-center {
|
|
3905
4535
|
justify-content: center;
|
|
3906
4536
|
align-items: center;
|
|
@@ -7172,6 +7802,8 @@ to {
|
|
|
7172
7802
|
justify-content: flex-end;
|
|
7173
7803
|
}.space-between {
|
|
7174
7804
|
justify-content: space-between;
|
|
7805
|
+
}.space-evenly {
|
|
7806
|
+
justify-content: space-evenly;
|
|
7175
7807
|
}.label {
|
|
7176
7808
|
display: block;
|
|
7177
7809
|
font-size: var(--label-font-size);
|
|
@@ -7456,6 +8088,27 @@ to {
|
|
|
7456
8088
|
aspect-ratio: 1;
|
|
7457
8089
|
}
|
|
7458
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
|
+
|
|
7459
8112
|
.m_flex-center {
|
|
7460
8113
|
justify-items: center;
|
|
7461
8114
|
align-items: center;
|
|
@@ -12011,6 +12664,10 @@ to {
|
|
|
12011
12664
|
justify-content: space-between;
|
|
12012
12665
|
}
|
|
12013
12666
|
|
|
12667
|
+
.m_space-evenly {
|
|
12668
|
+
justify-content: space-evenly;
|
|
12669
|
+
}
|
|
12670
|
+
|
|
12014
12671
|
.m_label {
|
|
12015
12672
|
display: block;
|
|
12016
12673
|
font-size: var(--label-font-size);
|
|
@@ -13295,100 +13952,104 @@ select {
|
|
|
13295
13952
|
}.bgl_btn,
|
|
13296
13953
|
.bgl_flatBtn,
|
|
13297
13954
|
.bgl_btn-icon {
|
|
13298
|
-
|
|
13299
|
-
|
|
13300
|
-
|
|
13301
|
-
|
|
13302
|
-
|
|
13303
|
-
|
|
13304
|
-
|
|
13305
|
-
|
|
13306
|
-
|
|
13307
|
-
|
|
13308
|
-
|
|
13309
|
-
|
|
13310
|
-
|
|
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;
|
|
13311
13968
|
}.btn-close {
|
|
13312
|
-
|
|
13313
|
-
|
|
13314
|
-
|
|
13315
|
-
|
|
13316
|
-
|
|
13317
|
-
|
|
13318
|
-
|
|
13319
|
-
|
|
13320
|
-
|
|
13321
|
-
|
|
13322
|
-
|
|
13323
|
-
|
|
13324
|
-
|
|
13325
|
-
|
|
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;
|
|
13326
13983
|
}.btn-close:hover {
|
|
13327
|
-
|
|
13328
|
-
|
|
13984
|
+
background: var(--bgl-gray-light);
|
|
13985
|
+
opacity: 1;
|
|
13329
13986
|
}.btn-close:active {
|
|
13330
|
-
|
|
13987
|
+
background: var(--bgl-gray);
|
|
13331
13988
|
}.btn-close::before {
|
|
13332
|
-
|
|
13333
|
-
|
|
13989
|
+
content: 'close';
|
|
13990
|
+
font-family: 'Material Symbols Outlined', serif;
|
|
13334
13991
|
}.bgl_btn.thin {
|
|
13335
|
-
|
|
13336
|
-
|
|
13992
|
+
height: calc(var(--btn-height) * 0.7);
|
|
13993
|
+
line-height: calc(var(--btn-height) * 0.7);
|
|
13337
13994
|
}.hover {
|
|
13338
|
-
|
|
13339
|
-
|
|
13995
|
+
cursor: pointer;
|
|
13996
|
+
transition: all 400ms ease;
|
|
13340
13997
|
}.hover:hover {
|
|
13341
|
-
|
|
13998
|
+
filter: brightness(90%);
|
|
13342
13999
|
}.hover:active {
|
|
13343
|
-
|
|
14000
|
+
filter: brightness(80%);
|
|
13344
14001
|
}.border {
|
|
13345
|
-
|
|
14002
|
+
border: 1px solid var(--border-color);
|
|
13346
14003
|
}.border-primary {
|
|
13347
|
-
|
|
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);
|
|
13348
14009
|
}.rotate-270 {
|
|
13349
|
-
|
|
14010
|
+
transform: rotate(270deg);
|
|
13350
14011
|
}.rotate-180 {
|
|
13351
|
-
|
|
14012
|
+
transform: rotate(180deg);
|
|
13352
14013
|
}.rotate-90 {
|
|
13353
|
-
|
|
14014
|
+
transform: rotate(90deg);
|
|
13354
14015
|
}.rotate-0 {
|
|
13355
|
-
|
|
14016
|
+
transform: rotate(0deg);
|
|
13356
14017
|
}@media screen and (max-width: 910px) {
|
|
13357
|
-
|
|
13358
|
-
|
|
13359
|
-
|
|
14018
|
+
.bgl_btn {
|
|
14019
|
+
padding: 0 20px;
|
|
14020
|
+
}
|
|
13360
14021
|
|
|
13361
|
-
|
|
13362
|
-
|
|
13363
|
-
|
|
14022
|
+
.m_border {
|
|
14023
|
+
border: 1px solid var(--border-color);
|
|
14024
|
+
}
|
|
13364
14025
|
|
|
13365
|
-
|
|
13366
|
-
|
|
13367
|
-
|
|
14026
|
+
.m_rotate-270 {
|
|
14027
|
+
transform: rotate(270deg);
|
|
14028
|
+
}
|
|
13368
14029
|
|
|
13369
|
-
|
|
13370
|
-
|
|
13371
|
-
|
|
14030
|
+
.m_rotate-180 {
|
|
14031
|
+
transform: rotate(180deg);
|
|
14032
|
+
}
|
|
13372
14033
|
|
|
13373
|
-
|
|
13374
|
-
|
|
13375
|
-
|
|
14034
|
+
.m_rotate-90 {
|
|
14035
|
+
transform: rotate(90deg);
|
|
14036
|
+
}
|
|
13376
14037
|
|
|
13377
|
-
|
|
13378
|
-
|
|
13379
|
-
|
|
14038
|
+
.m_rotate-0 {
|
|
14039
|
+
transform: rotate(0deg);
|
|
14040
|
+
}
|
|
13380
14041
|
}.ripple {
|
|
13381
|
-
|
|
13382
|
-
|
|
13383
|
-
|
|
13384
|
-
|
|
13385
|
-
|
|
13386
|
-
|
|
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;
|
|
13387
14048
|
}@keyframes rippleEffect {
|
|
13388
|
-
|
|
13389
|
-
|
|
13390
|
-
|
|
13391
|
-
|
|
14049
|
+
to {
|
|
14050
|
+
transform: scale(4);
|
|
14051
|
+
opacity: 0;
|
|
14052
|
+
}
|
|
13392
14053
|
}.txt-center {
|
|
13393
14054
|
text-align: center;
|
|
13394
14055
|
}.txt-start {
|
|
@@ -13549,6 +14210,26 @@ select {
|
|
|
13549
14210
|
}.black,
|
|
13550
14211
|
.font-black {
|
|
13551
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;
|
|
13552
14233
|
}.line-height-1 {
|
|
13553
14234
|
line-height: 1;
|
|
13554
14235
|
}.line-height-11 {
|
|
@@ -13636,6 +14317,7 @@ select {
|
|
|
13636
14317
|
}.white-space {
|
|
13637
14318
|
white-space: nowrap;
|
|
13638
14319
|
}@media screen and (max-width: 910px) {
|
|
14320
|
+
|
|
13639
14321
|
.txt20,
|
|
13640
14322
|
.txt-20 {
|
|
13641
14323
|
font-size: 18px;
|
|
@@ -13911,6 +14593,46 @@ select {
|
|
|
13911
14593
|
font-weight: 900;
|
|
13912
14594
|
}
|
|
13913
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
|
+
|
|
13914
14636
|
.m_line-height-1 {
|
|
13915
14637
|
line-height: 1;
|
|
13916
14638
|
}
|
|
@@ -15049,298 +15771,309 @@ select {
|
|
|
15049
15771
|
}
|
|
15050
15772
|
|
|
15051
15773
|
}/* TEHEME */:root {
|
|
15052
|
-
|
|
15053
|
-
|
|
15054
|
-
|
|
15055
|
-
|
|
15056
|
-
|
|
15057
|
-
|
|
15058
|
-
|
|
15059
|
-
|
|
15060
|
-
|
|
15061
|
-
|
|
15062
|
-
|
|
15063
|
-
|
|
15064
|
-
|
|
15065
|
-
|
|
15066
|
-
|
|
15067
|
-
|
|
15068
|
-
|
|
15069
|
-
|
|
15070
|
-
|
|
15071
|
-
|
|
15072
|
-
|
|
15073
|
-
|
|
15074
|
-
|
|
15075
|
-
|
|
15076
|
-
|
|
15077
|
-
|
|
15078
|
-
|
|
15079
|
-
|
|
15080
|
-
|
|
15081
|
-
|
|
15082
|
-
|
|
15083
|
-
|
|
15084
|
-
|
|
15085
|
-
|
|
15086
|
-
|
|
15087
|
-
|
|
15088
|
-
|
|
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);
|
|
15089
15811
|
}/* TYPE */:root {
|
|
15090
|
-
|
|
15091
|
-
|
|
15812
|
+
--bgl-font: 'Lexend', 'Ploni', sans-serif;
|
|
15813
|
+
--input-font-size: 16px;
|
|
15092
15814
|
}/* DIMENSIONS */:root {
|
|
15093
|
-
|
|
15094
|
-
|
|
15095
|
-
|
|
15096
|
-
|
|
15097
|
-
|
|
15098
|
-
|
|
15099
|
-
|
|
15100
|
-
|
|
15101
|
-
|
|
15102
|
-
|
|
15103
|
-
|
|
15104
|
-
|
|
15105
|
-
|
|
15106
|
-
|
|
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;
|
|
15107
15829
|
}/* MISC */:root {
|
|
15108
|
-
|
|
15109
|
-
|
|
15110
|
-
|
|
15111
|
-
|
|
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%);
|
|
15112
15834
|
}/* OTHER COLORS */:root {
|
|
15113
|
-
|
|
15114
|
-
|
|
15115
|
-
|
|
15116
|
-
|
|
15117
|
-
|
|
15118
|
-
|
|
15119
|
-
|
|
15120
|
-
|
|
15121
|
-
|
|
15122
|
-
|
|
15123
|
-
|
|
15124
|
-
|
|
15125
|
-
|
|
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;
|
|
15126
15859
|
}.testMe * {
|
|
15127
|
-
|
|
15860
|
+
outline: 1px dotted red;
|
|
15128
15861
|
}.Vue-Toastification__toast {
|
|
15129
|
-
|
|
15130
|
-
|
|
15862
|
+
border-radius: var(--card-border-radius);
|
|
15863
|
+
box-shadow: none;
|
|
15131
15864
|
}.Vue-Toastification__toast--default {
|
|
15132
|
-
|
|
15865
|
+
background: var(--bgl-primary);
|
|
15133
15866
|
}.Vue-Toastification__close-button {
|
|
15134
|
-
|
|
15135
|
-
|
|
15867
|
+
height: 1.5rem;
|
|
15868
|
+
line-height: 1rem;
|
|
15136
15869
|
}::-moz-selection {
|
|
15137
|
-
|
|
15138
|
-
|
|
15870
|
+
color: var(--bgl-selection-color);
|
|
15871
|
+
background: var(--bgl-selection-bg);
|
|
15139
15872
|
}::selection {
|
|
15140
|
-
|
|
15141
|
-
|
|
15873
|
+
color: var(--bgl-selection-color);
|
|
15874
|
+
background: var(--bgl-selection-bg);
|
|
15142
15875
|
}.popup {
|
|
15143
|
-
|
|
15144
|
-
|
|
15145
|
-
|
|
15146
|
-
|
|
15147
|
-
|
|
15148
|
-
|
|
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;
|
|
15149
15882
|
}.tabs {
|
|
15150
|
-
|
|
15151
|
-
|
|
15152
|
-
|
|
15153
|
-
|
|
15154
|
-
|
|
15155
|
-
|
|
15156
|
-
|
|
15157
|
-
|
|
15158
|
-
|
|
15159
|
-
|
|
15160
|
-
|
|
15161
|
-
|
|
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;
|
|
15162
15895
|
}.tab {
|
|
15163
|
-
|
|
15164
|
-
|
|
15165
|
-
|
|
15166
|
-
|
|
15167
|
-
|
|
15168
|
-
|
|
15169
|
-
|
|
15170
|
-
|
|
15171
|
-
|
|
15172
|
-
|
|
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;
|
|
15173
15906
|
}.tab.active {
|
|
15174
|
-
|
|
15175
|
-
|
|
15907
|
+
color: var(--bgl-primary);
|
|
15908
|
+
border-bottom: 2px solid var(--bgl-primary);
|
|
15176
15909
|
}.tab:hover {
|
|
15177
|
-
|
|
15910
|
+
color: var(--bgl-primary);
|
|
15178
15911
|
}.tab:active {
|
|
15179
|
-
|
|
15180
|
-
|
|
15912
|
+
-webkit-filter: brightness(70%);
|
|
15913
|
+
filter: brightness(70%);
|
|
15181
15914
|
}.router-tab {
|
|
15182
|
-
|
|
15183
|
-
|
|
15184
|
-
|
|
15185
|
-
|
|
15186
|
-
|
|
15187
|
-
|
|
15188
|
-
|
|
15189
|
-
|
|
15190
|
-
|
|
15191
|
-
|
|
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;
|
|
15192
15925
|
}.router-tab.router-link-active {
|
|
15193
|
-
|
|
15194
|
-
|
|
15926
|
+
color: var(--bgl-primary);
|
|
15927
|
+
border-bottom: 2px solid var(--bgl-primary);
|
|
15195
15928
|
}.router-tab:hover {
|
|
15196
|
-
|
|
15929
|
+
color: var(--bgl-primary);
|
|
15197
15930
|
}.router-tab:active {
|
|
15198
|
-
|
|
15199
|
-
|
|
15931
|
+
-webkit-filter: brightness(70%);
|
|
15932
|
+
filter: brightness(70%);
|
|
15200
15933
|
}.entity-container {
|
|
15201
|
-
|
|
15202
|
-
|
|
15203
|
-
|
|
15204
|
-
|
|
15205
|
-
|
|
15206
|
-
|
|
15207
|
-
|
|
15208
|
-
|
|
15209
|
-
|
|
15210
|
-
|
|
15211
|
-
|
|
15212
|
-
|
|
15213
|
-
|
|
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);
|
|
15214
15947
|
}.detail-main {
|
|
15215
|
-
|
|
15948
|
+
overflow-y: auto;
|
|
15216
15949
|
}.content-row p {
|
|
15217
|
-
|
|
15950
|
+
margin: 0 0 10px 0;
|
|
15218
15951
|
}.id {
|
|
15219
|
-
|
|
15220
|
-
|
|
15952
|
+
color: var(--bgl-gray);
|
|
15953
|
+
font-size: 9px;
|
|
15221
15954
|
}.field {
|
|
15222
|
-
|
|
15223
|
-
|
|
15224
|
-
|
|
15225
|
-
|
|
15226
|
-
|
|
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;
|
|
15227
15960
|
}.detail-view-inner {
|
|
15228
|
-
|
|
15229
|
-
|
|
15230
|
-
|
|
15231
|
-
|
|
15232
|
-
|
|
15233
|
-
|
|
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;
|
|
15234
15967
|
}.detail-view-inner-wrap {
|
|
15235
|
-
|
|
15236
|
-
|
|
15237
|
-
|
|
15968
|
+
height: 100%;
|
|
15969
|
+
overflow: hidden;
|
|
15970
|
+
transition: var(--bgl-transition);
|
|
15238
15971
|
}.table-list-wrap {
|
|
15239
|
-
|
|
15972
|
+
overflow: auto;
|
|
15240
15973
|
}.copy-url {
|
|
15241
|
-
|
|
15242
|
-
|
|
15243
|
-
|
|
15244
|
-
|
|
15245
|
-
|
|
15246
|
-
|
|
15247
|
-
|
|
15248
|
-
|
|
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;
|
|
15249
15982
|
}.copy-url a {
|
|
15250
|
-
|
|
15251
|
-
|
|
15252
|
-
|
|
15253
|
-
|
|
15254
|
-
|
|
15983
|
+
margin: 0;
|
|
15984
|
+
font-size: 12px;
|
|
15985
|
+
opacity: 0.8;
|
|
15986
|
+
color: var(--bgl-text-color);
|
|
15987
|
+
word-break: break-all;
|
|
15255
15988
|
}.list-view {
|
|
15256
|
-
|
|
15257
|
-
|
|
15258
|
-
|
|
15259
|
-
|
|
15260
|
-
|
|
15261
|
-
|
|
15262
|
-
|
|
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);
|
|
15263
15996
|
}.shekel {
|
|
15264
|
-
|
|
15997
|
+
line-height: 0;
|
|
15265
15998
|
}.view-wrapper {
|
|
15266
|
-
|
|
15267
|
-
|
|
15268
|
-
|
|
15999
|
+
height: 100%;
|
|
16000
|
+
position: relative;
|
|
16001
|
+
overflow: hidden;
|
|
15269
16002
|
}@media screen and (max-width: 1000px) {
|
|
15270
|
-
|
|
15271
|
-
|
|
15272
|
-
|
|
16003
|
+
.entity-container {
|
|
16004
|
+
grid-template-columns: minmax(22vw, 1fr) 2fr;
|
|
16005
|
+
}
|
|
15273
16006
|
}@media screen and (max-width: 910px) {
|
|
15274
|
-
|
|
15275
|
-
|
|
15276
|
-
|
|
16007
|
+
.tab {
|
|
16008
|
+
font-size: 12px;
|
|
16009
|
+
}
|
|
15277
16010
|
|
|
15278
|
-
|
|
15279
|
-
|
|
15280
|
-
|
|
15281
|
-
|
|
16011
|
+
.entity-container {
|
|
16012
|
+
grid-template-columns: 1fr;
|
|
16013
|
+
gap: 0;
|
|
16014
|
+
}
|
|
15282
16015
|
|
|
15283
|
-
|
|
15284
|
-
|
|
15285
|
-
|
|
15286
|
-
|
|
16016
|
+
.detail-view-inner {
|
|
16017
|
+
border-radius: var(--card-border-radius);
|
|
16018
|
+
background: var(--bgl-box-bg);
|
|
16019
|
+
}
|
|
15287
16020
|
|
|
15288
|
-
|
|
15289
|
-
|
|
15290
|
-
|
|
15291
|
-
|
|
15292
|
-
|
|
15293
|
-
|
|
16021
|
+
.detail-view-inner-wrap {
|
|
16022
|
+
position: absolute;
|
|
16023
|
+
height: 100%;
|
|
16024
|
+
width: 100%;
|
|
16025
|
+
background: var(--bgl-bg);
|
|
16026
|
+
}
|
|
15294
16027
|
|
|
15295
|
-
|
|
15296
|
-
|
|
15297
|
-
|
|
16028
|
+
.detail-view-inner-wrap.bgl_card {
|
|
16029
|
+
background: var(--bgl-box-bg);
|
|
16030
|
+
}
|
|
15298
16031
|
|
|
15299
|
-
|
|
15300
|
-
|
|
15301
|
-
|
|
16032
|
+
.bgl_card {
|
|
16033
|
+
padding: 1rem 1rem;
|
|
16034
|
+
}
|
|
15302
16035
|
|
|
15303
|
-
|
|
15304
|
-
|
|
15305
|
-
|
|
15306
|
-
|
|
15307
|
-
|
|
15308
|
-
|
|
15309
|
-
|
|
15310
|
-
|
|
15311
|
-
|
|
15312
|
-
|
|
15313
|
-
|
|
15314
|
-
|
|
15315
|
-
|
|
15316
|
-
.popup {
|
|
15317
|
-
border-radius: 15px;
|
|
15318
|
-
background: var(--bgl-popup-bg);
|
|
15319
|
-
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
|
|
15320
|
-
padding: 2rem;
|
|
15321
|
-
min-width: 0;
|
|
15322
|
-
max-width: 90%;
|
|
15323
|
-
max-height: 90vh;
|
|
15324
|
-
overflow-x: auto;
|
|
15325
|
-
text-align: center;
|
|
15326
|
-
}
|
|
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
|
+
}
|
|
15327
16048
|
|
|
15328
|
-
|
|
15329
|
-
|
|
15330
|
-
|
|
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
|
+
}
|
|
15331
16060
|
|
|
15332
|
-
|
|
15333
|
-
|
|
15334
|
-
|
|
15335
|
-
height: fit-content;
|
|
15336
|
-
}
|
|
16061
|
+
.detail-main {
|
|
16062
|
+
overflow-y: unset;
|
|
16063
|
+
}
|
|
15337
16064
|
|
|
15338
|
-
|
|
15339
|
-
|
|
15340
|
-
|
|
15341
|
-
|
|
15342
|
-
|
|
15343
|
-
|
|
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
|
+
}
|
|
15344
16077
|
}[theme="dark"] {
|
|
15345
16078
|
--bgl-primary: #1c4fe1;
|
|
15346
16079
|
--bgl-primary-tint: #1c4fe180;
|