@bagelink/vue 1.2.15 → 1.2.20
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/CalendarTypes.d.ts +13 -0
- package/dist/components/calendar/CalendarTypes.d.ts.map +1 -0
- package/dist/components/calendar/Index.vue.d.ts +39 -507
- package/dist/components/calendar/Index.vue.d.ts.map +1 -1
- package/dist/components/calendar/utils.d.ts +31 -0
- package/dist/components/calendar/utils.d.ts.map +1 -0
- package/dist/components/calendar/views/AgendaView.vue.d.ts +16 -0
- package/dist/components/calendar/views/AgendaView.vue.d.ts.map +1 -0
- package/dist/components/calendar/views/DayView.vue.d.ts +50 -0
- package/dist/components/calendar/views/DayView.vue.d.ts.map +1 -0
- package/dist/components/calendar/views/MonthView.vue.d.ts +20 -0
- package/dist/components/calendar/views/MonthView.vue.d.ts.map +1 -0
- package/dist/components/calendar/views/WeekView.vue.d.ts +33 -0
- package/dist/components/calendar/views/WeekView.vue.d.ts.map +1 -0
- package/dist/components/form/BglMultiStepForm.vue.d.ts +63 -0
- package/dist/components/form/BglMultiStepForm.vue.d.ts.map +1 -0
- package/dist/components/form/index.d.ts +1 -0
- package/dist/components/form/index.d.ts.map +1 -1
- package/dist/components/form/inputs/CodeEditor/Index.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DateInput.vue.d.ts +3 -3
- package/dist/components/form/inputs/DateInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DatePicker.vue.d.ts +3 -3
- package/dist/components/form/inputs/DatePicker.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/index.cjs +2241 -3891
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +2242 -3892
- package/dist/style.css +567 -633
- package/dist/utils/BagelFormUtils.d.ts +4 -2
- package/dist/utils/BagelFormUtils.d.ts.map +1 -1
- package/dist/utils/calendar/EDate.d.ts +2 -0
- package/dist/utils/calendar/EDate.d.ts.map +1 -0
- package/dist/utils/calendar/Helpers.d.ts +19 -0
- package/dist/utils/calendar/Helpers.d.ts.map +1 -0
- package/dist/utils/calendar/constants.d.ts +3 -0
- package/dist/utils/calendar/constants.d.ts.map +1 -0
- package/dist/utils/calendar/dateUtils.d.ts +30 -0
- package/dist/utils/calendar/dateUtils.d.ts.map +1 -0
- package/dist/utils/calendar/event.interface.d.ts +32 -0
- package/dist/utils/calendar/event.interface.d.ts.map +1 -0
- package/dist/utils/calendar/time.d.ts +117 -0
- package/dist/utils/calendar/time.d.ts.map +1 -0
- package/dist/utils/calendar/types.d.ts +27 -0
- package/dist/utils/calendar/types.d.ts.map +1 -0
- package/dist/utils/calendar/typings.d.ts +87 -0
- package/dist/utils/calendar/typings.d.ts.map +1 -0
- package/dist/utils/calendar/week.d.ts +117 -0
- package/dist/utils/calendar/week.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/components/calendar/CalendarTypes.ts +13 -0
- package/src/components/calendar/Index.vue +124 -389
- package/src/components/calendar/utils.ts +70 -0
- package/src/components/calendar/views/AgendaView.vue +263 -0
- package/src/components/calendar/views/DayView.vue +373 -0
- package/src/components/calendar/views/MonthView.vue +313 -0
- package/src/components/calendar/views/WeekView.vue +431 -0
- package/src/components/form/BglMultiStepForm.vue +383 -69
- package/src/components/form/index.ts +1 -0
- package/src/components/form/inputs/CodeEditor/Index.vue +11 -0
- package/src/components/form/inputs/DateInput.vue +3 -3
- package/src/components/form/inputs/DatePicker.vue +35 -30
- package/src/components/form/inputs/SelectInput.vue +2 -0
- package/src/components/form/inputs/Upload/upload.types.d.ts +0 -1
- package/src/index.ts +2 -2
- package/src/styles/inputs.css +138 -137
- package/src/styles/layout.css +3 -2
- package/src/styles/mobilLayout.css +4 -2
- package/src/utils/BagelFormUtils.ts +6 -2
- package/src/utils/calendar/EDate.ts +0 -0
- package/src/{components/calendar/helpers → utils/calendar}/Helpers.ts +6 -6
- package/src/utils/calendar/constants.ts +2 -0
- package/src/utils/{timeAgo.ts → calendar/dateUtils.ts} +38 -1
- package/src/utils/calendar/event.interface.ts +33 -0
- package/src/{components/calendar/helpers/Time.ts → utils/calendar/time.ts} +15 -15
- package/src/utils/calendar/types.ts +27 -0
- package/src/{components/calendar/typings/config.interface.ts → utils/calendar/typings.ts} +13 -6
- package/src/utils/calendar/week.ts +588 -0
- package/src/components/calendar/assets/base.css +0 -60
- package/src/components/calendar/components/header/Header.vue +0 -153
- package/src/components/calendar/components/month/AgendaEventTile.vue +0 -135
- package/src/components/calendar/components/month/AgendaEvents.vue +0 -72
- package/src/components/calendar/components/month/Day.vue +0 -256
- package/src/components/calendar/components/month/Event.vue +0 -164
- package/src/components/calendar/components/month/Month.vue +0 -241
- package/src/components/calendar/components/month/WeekDay.vue +0 -15
- package/src/components/calendar/components/partials/EventFlyout.vue +0 -430
- package/src/components/calendar/components/week/Day.vue +0 -198
- package/src/components/calendar/components/week/DayEvent.vue +0 -584
- package/src/components/calendar/components/week/DayTimeline.vue +0 -80
- package/src/components/calendar/components/week/FullDayEvent.vue +0 -121
- package/src/components/calendar/components/week/Week.vue +0 -414
- package/src/components/calendar/components/week/WeekTimeline.vue +0 -101
- package/src/components/calendar/constants.ts +0 -13
- package/src/components/calendar/helpers/DayIntervals.ts +0 -48
- package/src/components/calendar/helpers/EDate.ts +0 -18
- package/src/components/calendar/helpers/Errors.ts +0 -69
- package/src/components/calendar/helpers/EventChange.ts +0 -88
- package/src/components/calendar/helpers/EventConcurrency.ts +0 -69
- package/src/components/calendar/helpers/EventFlyoutPosition.ts +0 -96
- package/src/components/calendar/helpers/EventPosition.ts +0 -154
- package/src/components/calendar/helpers/EventsFilter.ts +0 -50
- package/src/components/calendar/helpers/Week.ts +0 -37
- package/src/components/calendar/language/index.ts +0 -41
- package/src/components/calendar/language/keys.ts +0 -99
- package/src/components/calendar/models/Event.ts +0 -112
- package/src/components/calendar/styles/_mixins.css +0 -21
- package/src/components/calendar/styles/_variables.css +0 -47
- package/src/components/calendar/typings/interfaces/day.interface.ts +0 -10
- package/src/components/calendar/typings/interfaces/event.interface.ts +0 -32
- package/src/components/calendar/typings/interfaces/full-day-events-week.type.ts +0 -8
- package/src/components/calendar/typings/interfaces/period.interface.ts +0 -5
- package/src/components/calendar/typings/interfaces/time-modes.ts +0 -11
- package/src/components/calendar/typings/types.ts +0 -27
package/dist/style.css
CHANGED
|
@@ -310,544 +310,345 @@ display: block;
|
|
|
310
310
|
border-radius: var(--input-border-radius);
|
|
311
311
|
}
|
|
312
312
|
|
|
313
|
-
.
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
--input-font-size: 0.75rem;
|
|
319
|
-
--btn-padding: 20px;
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
.agenda__event[data-v-d63dd40c] {
|
|
324
|
-
border-inline-start: 0.75rem solid;
|
|
325
|
-
border-color: var(--26bbff92);
|
|
326
|
-
background: var(--input-bg);
|
|
327
|
-
grid-template-columns: 200px auto;
|
|
328
|
-
box-shadow: 0 0 0 1px var(--border-color);
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
.agenda__wrapper[data-v-4523e7de] {
|
|
332
|
-
grid-template-columns: 100px 1fr;
|
|
333
|
-
}
|
|
334
|
-
@media screen and (max-width: 910px) {
|
|
335
|
-
.agenda__wrapper[data-v-4523e7de] {
|
|
336
|
-
grid-template-columns: 40px 1fr;
|
|
337
|
-
}
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
.event-flyout {
|
|
341
|
-
position: fixed;
|
|
342
|
-
z-index: 50;
|
|
343
|
-
background-color: #fff;
|
|
344
|
-
max-height: 100%;
|
|
345
|
-
width: var(--c7702184);
|
|
346
|
-
max-width: 98%;
|
|
347
|
-
border: var(--qalendar-border-gray-thin);
|
|
348
|
-
border-radius: 8px;
|
|
349
|
-
box-shadow: 0 12px 24px rgb(0 0 0 / 9%), 0 6px 12px rgb(0 0 0 / 18%);
|
|
350
|
-
overflow: hidden;
|
|
351
|
-
transition: all 0.2s ease;
|
|
352
|
-
transition-property: opacity, transform;
|
|
353
|
-
transform: translateY(-40px);
|
|
354
|
-
opacity: 0;
|
|
355
|
-
pointer-events: none;
|
|
356
|
-
}
|
|
357
|
-
@media (prefers-color-scheme: dark) {
|
|
358
|
-
.event-flyout {
|
|
359
|
-
background-color: var(--qalendar-dark-mode-elevated-surface);
|
|
360
|
-
border-color: transparent;
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
.event-flyout.is-visible {
|
|
364
|
-
opacity: 1;
|
|
365
|
-
transform: translateY(0);
|
|
366
|
-
pointer-events: initial;
|
|
367
|
-
}
|
|
368
|
-
.event-flyout__relative-wrapper {
|
|
369
|
-
position: relative;
|
|
370
|
-
}
|
|
371
|
-
.event-flyout__menu {
|
|
372
|
-
display: flex;
|
|
373
|
-
justify-content: space-between;
|
|
374
|
-
align-items: center;
|
|
313
|
+
.agenda-view[data-v-54c102a2] {
|
|
314
|
+
display: flex;
|
|
315
|
+
flex-direction: column;
|
|
316
|
+
height: 100%;
|
|
317
|
+
overflow: hidden;
|
|
375
318
|
}
|
|
376
|
-
.
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
gap: 20px;
|
|
319
|
+
.agenda-header[data-v-54c102a2] {
|
|
320
|
+
display: flex;
|
|
321
|
+
padding: 0.5rem;
|
|
322
|
+
border-bottom: 1px solid var(--border-color);
|
|
381
323
|
}
|
|
382
|
-
.
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
inset-inline-end: 0;
|
|
324
|
+
.time-column[data-v-54c102a2] {
|
|
325
|
+
width: 100px;
|
|
326
|
+
flex-shrink: 0;
|
|
386
327
|
}
|
|
387
|
-
.event-
|
|
388
|
-
|
|
389
|
-
color: gray;
|
|
328
|
+
.event-column[data-v-54c102a2] {
|
|
329
|
+
flex-grow: 1;
|
|
390
330
|
}
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
331
|
+
.agenda-content[data-v-54c102a2] {
|
|
332
|
+
flex-grow: 1;
|
|
333
|
+
overflow-y: auto;
|
|
334
|
+
padding: 1rem;
|
|
394
335
|
}
|
|
336
|
+
.event[data-v-54c102a2] {
|
|
337
|
+
margin-bottom: 1rem;
|
|
338
|
+
border-radius: 4px;
|
|
339
|
+
overflow: hidden;
|
|
340
|
+
cursor: pointer;
|
|
341
|
+
transition: all 0.2s ease;
|
|
395
342
|
}
|
|
396
|
-
.event-
|
|
397
|
-
|
|
398
|
-
cursor: pointer;
|
|
343
|
+
.event[data-v-54c102a2]:hover {
|
|
344
|
+
transform: scale(1.01);
|
|
399
345
|
}
|
|
400
|
-
.
|
|
401
|
-
|
|
346
|
+
.event-content[data-v-54c102a2] {
|
|
347
|
+
display: flex;
|
|
348
|
+
height: 100%;
|
|
349
|
+
color: white;
|
|
402
350
|
}
|
|
403
|
-
.event-
|
|
404
|
-
|
|
351
|
+
.event-time[data-v-54c102a2] {
|
|
352
|
+
width: 100px;
|
|
353
|
+
flex-shrink: 0;
|
|
354
|
+
padding: 0.5rem;
|
|
355
|
+
display: flex;
|
|
356
|
+
align-items: center;
|
|
357
|
+
font-size: 0.9rem;
|
|
405
358
|
}
|
|
406
|
-
.event-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
font-weight: 400;
|
|
359
|
+
.event-details[data-v-54c102a2] {
|
|
360
|
+
flex-grow: 1;
|
|
361
|
+
padding: 0.5rem;
|
|
362
|
+
border-left: 1px solid rgba(255, 255, 255, 0.2);
|
|
411
363
|
}
|
|
412
|
-
.event-
|
|
413
|
-
|
|
414
|
-
|
|
364
|
+
.event-title[data-v-54c102a2] {
|
|
365
|
+
font-size: 1rem;
|
|
366
|
+
margin-bottom: 0.25rem;
|
|
415
367
|
}
|
|
416
|
-
.event-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
width: 14px;
|
|
368
|
+
.event-day[data-v-54c102a2] {
|
|
369
|
+
font-size: 0.8rem;
|
|
370
|
+
opacity: 0.8;
|
|
420
371
|
}
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
372
|
+
.event-day.today[data-v-54c102a2] {
|
|
373
|
+
color: var(--bgl-primary);
|
|
374
|
+
opacity: 1;
|
|
424
375
|
}
|
|
376
|
+
@media (max-width: 768px) {
|
|
377
|
+
.agenda-header[data-v-54c102a2] {
|
|
378
|
+
padding: 0.5rem;
|
|
425
379
|
}
|
|
426
|
-
.
|
|
427
|
-
|
|
428
|
-
border-radius: 50%;
|
|
429
|
-
height: var(--icon-height);
|
|
430
|
-
width: var(--icon-height);
|
|
380
|
+
.time-column[data-v-54c102a2] {
|
|
381
|
+
width: 80px;
|
|
431
382
|
}
|
|
432
|
-
.
|
|
433
|
-
|
|
434
|
-
line-height: 1.2;
|
|
435
|
-
align-items: center;
|
|
383
|
+
.event-content[data-v-54c102a2] {
|
|
384
|
+
font-size: 0.9rem;
|
|
436
385
|
}
|
|
437
|
-
.
|
|
438
|
-
|
|
386
|
+
.event-time[data-v-54c102a2] {
|
|
387
|
+
width: 80px;
|
|
388
|
+
font-size: 0.8rem;
|
|
439
389
|
}
|
|
440
|
-
.
|
|
441
|
-
|
|
442
|
-
margin-bottom: 0.75em;
|
|
390
|
+
.event-title[data-v-54c102a2] {
|
|
391
|
+
font-size: 0.9rem;
|
|
443
392
|
}
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
z-index: 100;
|
|
393
|
+
.event-day[data-v-54c102a2] {
|
|
394
|
+
font-size: 0.7rem;
|
|
447
395
|
}
|
|
448
|
-
.calendar-month__event .calendar-month__event-color[data-v-16d8079e] {
|
|
449
|
-
background-color: var(--1772761d);
|
|
450
|
-
width: 6px;
|
|
451
|
-
height: 6px;
|
|
452
396
|
}
|
|
453
397
|
|
|
454
|
-
.
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
display: flex;
|
|
458
|
-
flex-flow: column;
|
|
459
|
-
align-items: center;
|
|
460
|
-
border-inline-end: var(--qalendar-border-gray-thin);
|
|
461
|
-
border-bottom: var(--qalendar-border-gray-thin);
|
|
462
|
-
overflow: hidden;
|
|
463
|
-
transition: background-color 0.2s ease-in-out;
|
|
464
|
-
}
|
|
465
|
-
.calendar-month__weekday[data-v-4b49a3b2]:active {
|
|
466
|
-
background-color: var(--qalendar-light-gray);
|
|
467
|
-
}
|
|
468
|
-
.calendar-month__weekday.is-droppable[data-v-4b49a3b2] {
|
|
469
|
-
background-color: var(--qalendar-light-gray);
|
|
398
|
+
.dayGrid[data-v-8aa8e541]{
|
|
399
|
+
display: grid;
|
|
400
|
+
grid-template-columns: 5rem 1fr;
|
|
470
401
|
}
|
|
471
|
-
.
|
|
472
|
-
|
|
402
|
+
.time-column[data-v-8aa8e541] {
|
|
403
|
+
width: 80px;
|
|
404
|
+
flex-shrink: 0;
|
|
473
405
|
}
|
|
474
|
-
.
|
|
475
|
-
|
|
406
|
+
.events-column[data-v-8aa8e541] {
|
|
407
|
+
flex-grow: 1;
|
|
408
|
+
position: relative;
|
|
409
|
+
border-inline-start: 1px solid var(--border-color);
|
|
476
410
|
}
|
|
477
|
-
.
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
padding-inline-start: 4px;
|
|
481
|
-
color: var(--qalendar-gray-quite-dark);
|
|
482
|
-
cursor: pointer;
|
|
411
|
+
.date-header[data-v-8aa8e541] {
|
|
412
|
+
padding: 0.5rem;
|
|
413
|
+
text-align: center;
|
|
483
414
|
}
|
|
484
|
-
.
|
|
485
|
-
|
|
415
|
+
.day-header .events-column[data-v-8aa8e541] {
|
|
416
|
+
border-inline-start: 1px solid transparent;
|
|
486
417
|
}
|
|
487
|
-
.
|
|
418
|
+
.time-slot[data-v-8aa8e541] {
|
|
419
|
+
height: 30px;
|
|
488
420
|
display: flex;
|
|
489
|
-
|
|
421
|
+
align-items: center;
|
|
490
422
|
justify-content: center;
|
|
491
423
|
}
|
|
492
|
-
.
|
|
493
|
-
|
|
424
|
+
.time-slots[data-v-8aa8e541] {
|
|
425
|
+
flex-grow: 1;
|
|
426
|
+
display: flex;
|
|
427
|
+
overflow: auto;
|
|
428
|
+
position: relative;
|
|
494
429
|
}
|
|
495
|
-
.
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
border-radius: 50%;
|
|
499
|
-
padding: 4px 6px;
|
|
430
|
+
.event[data-v-8aa8e541] {
|
|
431
|
+
left: 10px;
|
|
432
|
+
right: 10px;
|
|
500
433
|
}
|
|
501
|
-
.
|
|
502
|
-
|
|
434
|
+
.event[data-v-8aa8e541]:hover {
|
|
435
|
+
z-index: 2;
|
|
436
|
+
transform: scale(1.02);
|
|
503
437
|
}
|
|
504
|
-
.
|
|
438
|
+
.event-content[data-v-8aa8e541] {
|
|
439
|
+
padding: 0.5rem;
|
|
440
|
+
color: white;
|
|
441
|
+
font-size: 0.9rem;
|
|
505
442
|
height: 100%;
|
|
506
|
-
|
|
507
|
-
display: flex;
|
|
508
|
-
flex-flow: column;
|
|
509
|
-
align-items: center;
|
|
510
|
-
border-inline-end: var(--qalendar-border-gray-thin);
|
|
511
|
-
border-bottom: var(--qalendar-border-gray-thin);
|
|
512
|
-
border-inline-end-color: transparent;
|
|
443
|
+
overflow: hidden;
|
|
513
444
|
}
|
|
514
|
-
.
|
|
515
|
-
|
|
445
|
+
.event-title[data-v-8aa8e541] {
|
|
446
|
+
white-space: nowrap;
|
|
447
|
+
overflow: hidden;
|
|
448
|
+
text-overflow: ellipsis;
|
|
516
449
|
}
|
|
517
|
-
|
|
518
|
-
.
|
|
519
|
-
.space-reserver[data-v-4b49a3b2] {
|
|
520
|
-
border-color: var(--qalendar-dark-mode-line-color);
|
|
450
|
+
.event-time[data-v-8aa8e541] {
|
|
451
|
+
font-size: 0.8rem;
|
|
521
452
|
}
|
|
453
|
+
.drag-preview[data-v-8aa8e541] {
|
|
454
|
+
background-color: rgba(var(--bgl-primary-rgb), 0.1);
|
|
522
455
|
}
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
display: flex;
|
|
526
|
-
flex: 1;
|
|
456
|
+
.current-time-line[data-v-8aa8e541] {
|
|
457
|
+
height: 2px;
|
|
527
458
|
}
|
|
528
|
-
.
|
|
529
|
-
|
|
459
|
+
.custom-popover[data-v-8aa8e541] {
|
|
460
|
+
position: fixed;
|
|
461
|
+
z-index: 1000;
|
|
462
|
+
min-width: 250px;
|
|
463
|
+
max-width: 350px;
|
|
464
|
+
background-color: white;
|
|
465
|
+
border-radius: 4px;
|
|
466
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
467
|
+
animation: fadeIn-8aa8e541 0.2s ease;
|
|
468
|
+
transform-origin: center left;
|
|
530
469
|
}
|
|
531
|
-
|
|
532
|
-
|
|
470
|
+
@keyframes fadeIn-8aa8e541 {
|
|
471
|
+
from {
|
|
472
|
+
opacity: 0;
|
|
473
|
+
transform: scale(0.95);
|
|
533
474
|
}
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
475
|
+
to {
|
|
476
|
+
opacity: 1;
|
|
477
|
+
transform: scale(1);
|
|
537
478
|
}
|
|
538
|
-
.calendar-root.mode-is-month.qalendar-is-small .calendar-month__weekday{
|
|
539
|
-
height: 40px !important;
|
|
540
479
|
}
|
|
541
480
|
|
|
542
|
-
.
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
box-sizing: content-box;
|
|
548
|
-
user-select: none;
|
|
549
|
-
overflow: hidden;
|
|
550
|
-
}
|
|
551
|
-
.calendar-week__event.is-editable[data-v-992d6df6] {
|
|
552
|
-
cursor: grab;
|
|
553
|
-
}
|
|
554
|
-
.calendar-week__event.has-disabled-dnd[data-v-992d6df6] {
|
|
555
|
-
cursor: initial;
|
|
556
|
-
}
|
|
557
|
-
.calendar-week__event .calendar-week__event-row[data-v-992d6df6] {
|
|
558
|
-
display: flex;
|
|
559
|
-
align-items: flex-start;
|
|
560
|
-
margin-bottom: 0.25em;
|
|
561
|
-
}
|
|
562
|
-
.calendar-week__event .calendar-week__event-row p[data-v-992d6df6] {
|
|
563
|
-
margin: 0;
|
|
564
|
-
padding: 0;
|
|
481
|
+
.month-view[data-v-505b680c] {
|
|
482
|
+
display: flex;
|
|
483
|
+
flex-direction: column;
|
|
484
|
+
height: 100%;
|
|
485
|
+
overflow: hidden;
|
|
565
486
|
}
|
|
566
|
-
.
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
height: 100%;
|
|
571
|
-
box-sizing: border-box;
|
|
572
|
-
user-select: none;
|
|
487
|
+
.month-header[data-v-505b680c] {
|
|
488
|
+
display: grid;
|
|
489
|
+
grid-template-columns: repeat(7, 1fr);
|
|
490
|
+
border-bottom: 1px solid var(--border-color);
|
|
573
491
|
}
|
|
574
|
-
.
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
width: 100%;
|
|
579
|
-
transform: translateX(calc(var(--qalendar-spacing-half) * -1));
|
|
492
|
+
.weekday[data-v-505b680c] {
|
|
493
|
+
padding: 0.5rem;
|
|
494
|
+
text-align: center;
|
|
495
|
+
color: var(--text-muted);
|
|
580
496
|
}
|
|
581
|
-
.
|
|
582
|
-
|
|
583
|
-
|
|
497
|
+
.month-grid[data-v-505b680c] {
|
|
498
|
+
display: grid;
|
|
499
|
+
grid-template-columns: repeat(7, 1fr);
|
|
500
|
+
grid-template-rows: repeat(6, 1fr);
|
|
501
|
+
flex-grow: 1;
|
|
502
|
+
overflow: auto;
|
|
503
|
+
border-inline-end: 1px solid var(--border-color);
|
|
504
|
+
}
|
|
505
|
+
.day-cell[data-v-505b680c] {
|
|
506
|
+
border-inline-start: 1px solid var(--border-color);
|
|
507
|
+
border-bottom: 1px solid var(--border-color);
|
|
508
|
+
padding: 0.5rem;
|
|
509
|
+
min-height: 100px;
|
|
510
|
+
display: flex;
|
|
511
|
+
flex-direction: column;
|
|
584
512
|
}
|
|
585
|
-
.
|
|
586
|
-
|
|
587
|
-
width: 100%;
|
|
588
|
-
cursor: ns-resize;
|
|
589
|
-
height: 5px;
|
|
513
|
+
.day-number[data-v-505b680c] {
|
|
514
|
+
margin-bottom: 0.5rem;
|
|
590
515
|
}
|
|
591
|
-
.
|
|
592
|
-
|
|
516
|
+
.other-month[data-v-505b680c] {
|
|
517
|
+
background-color: var(--bgl-gray-light);
|
|
518
|
+
color: var(--bgl-gray);
|
|
593
519
|
}
|
|
594
|
-
.
|
|
595
|
-
|
|
520
|
+
.today[data-v-505b680c] {
|
|
521
|
+
background-color: var(--bgl-primary-light);
|
|
596
522
|
}
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
position: relative;
|
|
600
|
-
width: 100%;
|
|
601
|
-
height: 100%;
|
|
602
|
-
display: flex;
|
|
603
|
-
flex-direction: column;
|
|
604
|
-
}
|
|
605
|
-
.calendar-week__day .calendar-week__day-interval[data-v-7947ee7a] {
|
|
606
|
-
flex: 1;
|
|
607
|
-
font-size: var(--qalendar-font-xs);
|
|
608
|
-
color: var(--qalendar-gray);
|
|
609
|
-
padding: 2px;
|
|
610
|
-
}
|
|
611
|
-
.calendar-week__day[data-v-7947ee7a]:first-child {
|
|
612
|
-
border-inline-start: 1px solid var(--border-color);
|
|
613
|
-
}
|
|
614
|
-
.calendar-week__day[data-v-7947ee7a] {
|
|
615
|
-
border-inline-end: 1px solid var(--border-color);
|
|
616
|
-
border-bottom: 1px solid var(--border-color);
|
|
523
|
+
.today .day-number[data-v-505b680c] {
|
|
524
|
+
color: var(--bgl-primary);
|
|
617
525
|
}
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
height: var(--42711aca);
|
|
622
|
-
transform: translateX(-10px);
|
|
526
|
+
.day-events[data-v-505b680c] {
|
|
527
|
+
flex-grow: 1;
|
|
528
|
+
overflow-y: auto;
|
|
623
529
|
}
|
|
624
|
-
|
|
625
|
-
|
|
530
|
+
.event-item[data-v-505b680c] {
|
|
531
|
+
margin-bottom: 0.25rem;
|
|
532
|
+
padding: 0.25rem;
|
|
533
|
+
border-radius: 4px;
|
|
534
|
+
color: white;
|
|
535
|
+
font-size: 0.8rem;
|
|
536
|
+
cursor: pointer;
|
|
537
|
+
transition: all 0.2s ease;
|
|
626
538
|
}
|
|
627
|
-
|
|
628
|
-
|
|
539
|
+
.event-title[data-v-505b680c] {
|
|
540
|
+
font-weight: 500;
|
|
541
|
+
white-space: nowrap;
|
|
542
|
+
overflow: hidden;
|
|
543
|
+
text-overflow: ellipsis;
|
|
629
544
|
}
|
|
630
|
-
.
|
|
631
|
-
|
|
632
|
-
|
|
545
|
+
.event-time[data-v-505b680c] {
|
|
546
|
+
font-size: 0.7rem;
|
|
547
|
+
opacity: 0.8;
|
|
633
548
|
}
|
|
634
|
-
.
|
|
635
|
-
|
|
549
|
+
.event-dot[data-v-505b680c] {
|
|
550
|
+
width: 6px;
|
|
551
|
+
height: 6px;
|
|
552
|
+
background-color: var(--bgl-primary);
|
|
553
|
+
border-radius: 50%;
|
|
554
|
+
margin: 0.25rem auto;
|
|
636
555
|
}
|
|
637
|
-
|
|
638
|
-
|
|
556
|
+
@media (max-width: 768px) {
|
|
557
|
+
.day-cell[data-v-505b680c] {
|
|
558
|
+
min-height: 60px;
|
|
559
|
+
padding: 0.25rem;
|
|
639
560
|
}
|
|
640
|
-
|
|
641
|
-
|
|
561
|
+
.day-number[data-v-505b680c] {
|
|
562
|
+
font-size: 0.8rem;
|
|
563
|
+
margin-bottom: 0.25rem;
|
|
642
564
|
}
|
|
643
|
-
.
|
|
644
|
-
|
|
565
|
+
.weekday[data-v-505b680c] {
|
|
566
|
+
font-size: 0.8rem;
|
|
567
|
+
padding: 0.25rem;
|
|
645
568
|
}
|
|
646
|
-
.day-timeline__hour[data-v-64469387]:not(:last-child) {
|
|
647
|
-
border-bottom: var(--qalendar-border-gray-thin);
|
|
648
569
|
}
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
height: 0.9rem;
|
|
656
|
-
width: calc(100% - var(--event-padding));
|
|
657
|
-
font-size: var(--qalendar-font-2xs);
|
|
570
|
+
.custom-popover[data-v-505b680c] {
|
|
571
|
+
position: fixed;
|
|
572
|
+
z-index: 1000;
|
|
573
|
+
min-width: 250px;
|
|
574
|
+
max-width: 350px;
|
|
575
|
+
background-color: white;
|
|
658
576
|
border-radius: 4px;
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
cursor: pointer;
|
|
663
|
-
user-select: none;
|
|
664
|
-
overflow: hidden;
|
|
665
|
-
}
|
|
666
|
-
.week-timeline__event[data-v-de98fbb8]:active {
|
|
667
|
-
cursor: not-allowed;
|
|
668
|
-
}
|
|
669
|
-
|
|
670
|
-
.week-timeline[data-v-9aaa9a54] {
|
|
671
|
-
height: fit-content;
|
|
672
|
-
display: flex;
|
|
673
|
-
justify-content: space-evenly;
|
|
674
|
-
}
|
|
675
|
-
.mode-is-day .week-timeline[data-v-9aaa9a54] {
|
|
676
|
-
/* width: calc(100% - 3.5em); */
|
|
577
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
578
|
+
animation: fadeIn-505b680c 0.2s ease;
|
|
579
|
+
transform-origin: center left;
|
|
677
580
|
}
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
.
|
|
682
|
-
height: 1.5rem;
|
|
683
|
-
width: 1.5rem;
|
|
581
|
+
@keyframes fadeIn-505b680c {
|
|
582
|
+
from {
|
|
583
|
+
opacity: 0;
|
|
584
|
+
transform: scale(0.95);
|
|
684
585
|
}
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
586
|
+
to {
|
|
587
|
+
opacity: 1;
|
|
588
|
+
transform: scale(1);
|
|
688
589
|
}
|
|
689
|
-
.week-timeline__events[data-v-9aaa9a54] {
|
|
690
590
|
}
|
|
691
591
|
|
|
692
|
-
.
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
overflow-y: auto;
|
|
592
|
+
.weekGrid[data-v-f774fc40]{
|
|
593
|
+
display: grid;
|
|
594
|
+
grid-template-columns: 5rem repeat(7, 1fr);
|
|
696
595
|
}
|
|
697
|
-
.
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
flex: 1 1 auto;
|
|
596
|
+
.days-column[data-v-f774fc40] {
|
|
597
|
+
flex-grow: 1;
|
|
598
|
+
display: flex;
|
|
701
599
|
}
|
|
702
|
-
.
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
600
|
+
.time-slot[data-v-f774fc40] {
|
|
601
|
+
height: 30px;
|
|
602
|
+
display: flex;
|
|
603
|
+
align-items: center;
|
|
604
|
+
justify-content: center;
|
|
605
|
+
color: var(--text-muted);
|
|
707
606
|
}
|
|
708
|
-
.
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
z-index: 1;
|
|
714
|
-
background-color: red;
|
|
607
|
+
.time-slots[data-v-f774fc40] {
|
|
608
|
+
flex-grow: 1;
|
|
609
|
+
display: flex;
|
|
610
|
+
overflow: auto;
|
|
611
|
+
position: relative;
|
|
715
612
|
}
|
|
716
|
-
.
|
|
717
|
-
|
|
613
|
+
.day-column[data-v-f774fc40] {
|
|
614
|
+
flex: 1;
|
|
718
615
|
}
|
|
719
|
-
.
|
|
720
|
-
|
|
721
|
-
position: absolute;
|
|
722
|
-
transform: translate(-45%, -45%);
|
|
723
|
-
width: 10px;
|
|
724
|
-
height: 10px;
|
|
725
|
-
border-radius: 50%;
|
|
726
|
-
background-color: red;
|
|
616
|
+
.event[data-v-f774fc40] {
|
|
617
|
+
margin-right: 2px;
|
|
727
618
|
}
|
|
728
|
-
.
|
|
729
|
-
|
|
730
|
-
inset-inline-start: 0;
|
|
731
|
-
width: 100%;
|
|
732
|
-
z-index: 1;
|
|
733
|
-
}
|
|
734
|
-
:root {
|
|
735
|
-
/** Color */
|
|
736
|
-
--qalendar-gray-quite-dark: rgb(110 110 110);
|
|
737
|
-
--qalendar-gray: rgb(180 180 180);
|
|
738
|
-
--qalendar-green: rgb(51 182 121);
|
|
739
|
-
--qalendar-theme-color: var(--qalendar-blue);
|
|
740
|
-
--qalendar-light-gray: rgba(240 236 236 / 76%);
|
|
741
|
-
--qalendar-option-hover: var(--qalendar-light-gray);
|
|
742
|
-
|
|
743
|
-
--qalendar-dark-mode-elevated-surface: #383838;
|
|
744
|
-
--qalendar-dark-mode-lightly-elevated-surface: #2e2e2e;
|
|
745
|
-
--qalendar-dark-mode-text-primary: rgba(255 255 255 1);
|
|
746
|
-
--qalendar-dark-mode-text-secondary: rgba(255 255 255 0.7);
|
|
747
|
-
--qalendar-dark-mode-text-hint: rgba(255 255 255 0.5);
|
|
748
|
-
--qalendar-dark-mode-line-color: var(--qalendar-gray);
|
|
749
|
-
|
|
750
|
-
/** Borders */
|
|
751
|
-
--qalendar-border-gray-thin: 1px solid rgb(224 224 224);
|
|
752
|
-
--qalendar-border-dashed-gray-thin: 1px dashed rgb(224 224 224);
|
|
753
|
-
--qalendar-border-blue-thin: 1px solid var(--qalendar-theme-color);
|
|
754
|
-
--qalendar-border-radius: 8px;
|
|
755
|
-
|
|
756
|
-
/** Spacing */
|
|
757
|
-
--qalendar-spacing: 10px;
|
|
758
|
-
--qalendar-spacing-half: 5px;
|
|
759
|
-
--qalendar-spacing-double: 20px;
|
|
760
|
-
|
|
761
|
-
/** Miscellaneous */
|
|
762
|
-
--qalendar-box-shadow: 0 4px 4px rgba(0 0 0 / 6%), 0 1px 4px rgba(0 0 0 / 18%);
|
|
763
|
-
--qalendar-text-transition: color 0.2s ease;
|
|
764
|
-
--qalendar-week-padding-left: 56px;
|
|
765
|
-
|
|
766
|
-
/** Font */
|
|
767
|
-
--qalendar-font-2xs: 10px;
|
|
768
|
-
--qalendar-font-xs: 12px;
|
|
769
|
-
--qalendar-font-s: 14px;
|
|
770
|
-
--qalendar-font-m: 16px;
|
|
771
|
-
--qalendar-font-l: 18px;
|
|
772
|
-
}
|
|
773
|
-
@media (min-width: 62rem) {
|
|
774
|
-
.calendar-root {
|
|
775
|
-
--qalendar-spacing: 20px;
|
|
776
|
-
--qalendar-spacing-half: 10px;
|
|
777
|
-
--qalendar-spacing-double: 40px;
|
|
778
|
-
}
|
|
779
|
-
}
|
|
780
|
-
.calendar-root-wrapper {
|
|
781
|
-
width: 100%;
|
|
782
|
-
max-width: 100vw;
|
|
783
|
-
height: 100%;
|
|
784
|
-
display: flex;
|
|
619
|
+
.event[data-v-f774fc40]:hover {
|
|
620
|
+
z-index: 1;
|
|
785
621
|
}
|
|
786
|
-
.
|
|
787
|
-
|
|
788
|
-
border-radius: var(--qalendar-border-radius);
|
|
789
|
-
position: relative;
|
|
790
|
-
width: 100%;
|
|
791
|
-
margin: 0 auto;
|
|
792
|
-
display: flex;
|
|
793
|
-
flex-flow: column;
|
|
622
|
+
.drag-preview[data-v-f774fc40] {
|
|
623
|
+
border: 2px solid var(--bgl-primary);
|
|
794
624
|
}
|
|
795
|
-
.
|
|
796
|
-
|
|
625
|
+
.current-time-line[data-v-f774fc40] {
|
|
626
|
+
height: 2px;
|
|
797
627
|
}
|
|
798
|
-
.
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
height: 3px;
|
|
804
|
-
background: rgba(241, 241, 241, 0.2);
|
|
805
|
-
border-radius: 16px;
|
|
806
|
-
overflow: hidden;
|
|
628
|
+
.custom-popover[data-v-f774fc40] {
|
|
629
|
+
min-width: 250px;
|
|
630
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
631
|
+
animation: fadeIn-f774fc40 0.2s ease;
|
|
632
|
+
transform-origin: center left;
|
|
807
633
|
}
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
position: absolute;
|
|
813
|
-
top: 1px;
|
|
814
|
-
left: 2px;
|
|
815
|
-
background: rgb(38, 132, 255);
|
|
816
|
-
background: linear-gradient(
|
|
817
|
-
90deg,
|
|
818
|
-
rgba(38, 132, 255, 1) 0%,
|
|
819
|
-
rgba(38, 132, 255, 0.5088410364145659) 48%,
|
|
820
|
-
rgba(38, 132, 255, 1) 100%
|
|
821
|
-
);
|
|
822
|
-
animation: load 1.8s infinite;
|
|
823
|
-
border-radius: 16px;
|
|
824
|
-
}
|
|
825
|
-
@media (prefers-color-scheme: dark) {
|
|
826
|
-
.calendar-root-wrapper .calendar-root .top-bar-loader:before {
|
|
827
|
-
background: rgb(229, 224, 245);
|
|
828
|
-
}
|
|
829
|
-
}
|
|
830
|
-
@keyframes load {
|
|
831
|
-
0% {
|
|
832
|
-
width: 0;
|
|
833
|
-
left: -100%;
|
|
834
|
-
}
|
|
835
|
-
50% {
|
|
836
|
-
left: 0;
|
|
837
|
-
width: 100%;
|
|
634
|
+
@keyframes fadeIn-f774fc40 {
|
|
635
|
+
from {
|
|
636
|
+
opacity: 0;
|
|
637
|
+
transform: scale(0.95);
|
|
838
638
|
}
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
639
|
+
to {
|
|
640
|
+
opacity: 1;
|
|
641
|
+
transform: scale(1);
|
|
842
642
|
}
|
|
843
643
|
}
|
|
844
|
-
|
|
845
|
-
.calendar-root-wrapper .calendar-root .loading-leave-active {
|
|
846
|
-
transition: background 0.5s ease;
|
|
644
|
+
@media screen and (max-width: 910px) {
|
|
847
645
|
}
|
|
848
|
-
|
|
849
|
-
.calendar-
|
|
850
|
-
|
|
646
|
+
|
|
647
|
+
.calendar[data-v-b1af1548] {
|
|
648
|
+
display: flex;
|
|
649
|
+
flex-direction: column;
|
|
650
|
+
height: 100%;
|
|
651
|
+
width: 100%;
|
|
851
652
|
}
|
|
852
653
|
|
|
853
654
|
.card_label {
|
|
@@ -1307,6 +1108,126 @@ fieldset[data-v-f7e758e5] {
|
|
|
1307
1108
|
.fi[data-v-f99f1900]:before{ content:" "
|
|
1308
1109
|
}
|
|
1309
1110
|
|
|
1111
|
+
.bgl-multi-step-form[data-v-4ead8342] {
|
|
1112
|
+
display: flex;
|
|
1113
|
+
flex-direction: column;
|
|
1114
|
+
gap: 1rem;
|
|
1115
|
+
/* Default transition duration */
|
|
1116
|
+
--transition-duration: 200ms;
|
|
1117
|
+
--move-distance: 35%;
|
|
1118
|
+
--ease-in: ease-in-out;
|
|
1119
|
+
--ease-out: ease-in-out;
|
|
1120
|
+
/* --ease-in: cubic-bezier(0.42, 0, 0.58, 1); */
|
|
1121
|
+
/* --ease-out: cubic-bezier(0.5, 0, 0.75, 0); */
|
|
1122
|
+
}
|
|
1123
|
+
.bgl-steps-indicator[data-v-4ead8342] {
|
|
1124
|
+
display: flex;
|
|
1125
|
+
justify-content: space-between;
|
|
1126
|
+
align-items: center;
|
|
1127
|
+
margin-bottom: 1rem;
|
|
1128
|
+
}
|
|
1129
|
+
.bgl-step-indicator[data-v-4ead8342] {
|
|
1130
|
+
display: flex;
|
|
1131
|
+
flex-direction: column;
|
|
1132
|
+
align-items: center;
|
|
1133
|
+
position: relative;
|
|
1134
|
+
}
|
|
1135
|
+
.bgl-step-indicator[data-v-4ead8342]::before {
|
|
1136
|
+
content: '';
|
|
1137
|
+
position: absolute;
|
|
1138
|
+
top: 50%;
|
|
1139
|
+
right: 50%;
|
|
1140
|
+
height: 2px;
|
|
1141
|
+
width: 100%;
|
|
1142
|
+
background: #e0e0e0;
|
|
1143
|
+
z-index: -1;
|
|
1144
|
+
}
|
|
1145
|
+
.bgl-step-indicator[data-v-4ead8342]:first-child::before {
|
|
1146
|
+
display: none;
|
|
1147
|
+
}
|
|
1148
|
+
.bgl-step-indicator > span[data-v-4ead8342]:first-child {
|
|
1149
|
+
width: 30px;
|
|
1150
|
+
height: 30px;
|
|
1151
|
+
border-radius: 50%;
|
|
1152
|
+
background: #e0e0e0;
|
|
1153
|
+
color: #555;
|
|
1154
|
+
display: flex;
|
|
1155
|
+
align-items: center;
|
|
1156
|
+
justify-content: center;
|
|
1157
|
+
margin-bottom: 0.5rem;
|
|
1158
|
+
}
|
|
1159
|
+
.bgl-step-indicator.active > span[data-v-4ead8342]:first-child {
|
|
1160
|
+
background: var(--primary-color, #4CAF50);
|
|
1161
|
+
color: white;
|
|
1162
|
+
}
|
|
1163
|
+
.bgl-step-indicator.completed > span[data-v-4ead8342]:first-child {
|
|
1164
|
+
background: var(--success-color, #8BC34A);
|
|
1165
|
+
color: white;
|
|
1166
|
+
}
|
|
1167
|
+
.bgl-step-indicator.clickable[data-v-4ead8342] {
|
|
1168
|
+
cursor: pointer;
|
|
1169
|
+
}
|
|
1170
|
+
.bgl-step-label[data-v-4ead8342] {
|
|
1171
|
+
font-size: 0.8rem;
|
|
1172
|
+
max-width: 100px;
|
|
1173
|
+
text-align: center;
|
|
1174
|
+
}
|
|
1175
|
+
.bgl-form-wrapper[data-v-4ead8342] {
|
|
1176
|
+
display: grid;
|
|
1177
|
+
overflow: clip;
|
|
1178
|
+
height: auto;
|
|
1179
|
+
min-height: 300px;
|
|
1180
|
+
transition: height var(--transition-duration) ease;
|
|
1181
|
+
interpolate-size: allow-keywords;
|
|
1182
|
+
}
|
|
1183
|
+
.bgl-form-wrapper > div[data-v-4ead8342] {
|
|
1184
|
+
grid-area: 1 / 1;
|
|
1185
|
+
}
|
|
1186
|
+
.bgl-form-container[data-v-4ead8342] {
|
|
1187
|
+
width: 100%;
|
|
1188
|
+
display: flex;
|
|
1189
|
+
flex-direction: column;
|
|
1190
|
+
}
|
|
1191
|
+
.bgl-step-controls[data-v-4ead8342] {
|
|
1192
|
+
display: flex;
|
|
1193
|
+
justify-content: center;
|
|
1194
|
+
gap: 1rem;
|
|
1195
|
+
margin-top: 1.5rem;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
/* Slide Left Animation (going forward) */
|
|
1199
|
+
.slide-left-enter-active[data-v-4ead8342] {
|
|
1200
|
+
transition: opacity, transform calc(var(--transition-duration) * 1.2) var(--ease-in);
|
|
1201
|
+
}
|
|
1202
|
+
.slide-left-leave-active[data-v-4ead8342] {
|
|
1203
|
+
transition: opacity, transform var(--transition-duration) var(--ease-out);
|
|
1204
|
+
}
|
|
1205
|
+
.slide-left-enter-from[data-v-4ead8342] {
|
|
1206
|
+
opacity: 0;
|
|
1207
|
+
transform: translateX(var(--move-distance));
|
|
1208
|
+
}
|
|
1209
|
+
.slide-left-leave-to[data-v-4ead8342] {
|
|
1210
|
+
opacity: 0;
|
|
1211
|
+
transform: translateX(-30%);
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
/* Slide Right Animation (going back) */
|
|
1215
|
+
.slide-right-enter-active[data-v-4ead8342] {
|
|
1216
|
+
transition: all calc(var(--transition-duration) * 1.2) var(--ease-in);
|
|
1217
|
+
}
|
|
1218
|
+
.slide-right-leave-active[data-v-4ead8342] {
|
|
1219
|
+
transition: all var(--transition-duration) var(--ease-out);
|
|
1220
|
+
transition-property: opacity, transform;
|
|
1221
|
+
}
|
|
1222
|
+
.slide-right-enter-from[data-v-4ead8342] {
|
|
1223
|
+
opacity: 0;
|
|
1224
|
+
transform: translateX(-30%);
|
|
1225
|
+
}
|
|
1226
|
+
.slide-right-leave-to[data-v-4ead8342] {
|
|
1227
|
+
opacity: 0;
|
|
1228
|
+
transform: translateX(var(--move-distance));
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1310
1231
|
.minimized {
|
|
1311
1232
|
height: 2.4rem;
|
|
1312
1233
|
overflow: hidden;
|
|
@@ -1429,26 +1350,35 @@ pre code.hljs{
|
|
|
1429
1350
|
position: absolute;
|
|
1430
1351
|
}
|
|
1431
1352
|
|
|
1432
|
-
.codeText[data-v-
|
|
1353
|
+
.codeText[data-v-13335b34]{
|
|
1433
1354
|
font-family: monospace;
|
|
1434
1355
|
white-space: pre-wrap;
|
|
1435
1356
|
word-wrap: break-word;
|
|
1436
1357
|
caret-color: var(--bgl-white);
|
|
1437
1358
|
color: var(--bgl-white);
|
|
1438
1359
|
}
|
|
1439
|
-
.code-editor-wrap[data-v-
|
|
1360
|
+
.code-editor-wrap[data-v-13335b34] {
|
|
1440
1361
|
background: #282c34;
|
|
1441
1362
|
height: max-content;
|
|
1442
1363
|
}
|
|
1443
|
-
.code-editor[data-v-
|
|
1364
|
+
.code-editor-wrap[data-v-13335b34]:focus-within, .code-editor-wrap[data-v-13335b34]:focus-visible, .code-editor-wrap[data-v-13335b34]:focus {
|
|
1365
|
+
box-shadow: inset 0 0 10px #00000021;
|
|
1366
|
+
outline: solid 1px var(--border-color);
|
|
1367
|
+
/* outline: -webkit-focus-ring-color auto 1px; */
|
|
1368
|
+
}
|
|
1369
|
+
.code-editor-wrap:focus-within:has(textarea:focus) + .label[data-v-13335b34],
|
|
1370
|
+
.label[data-v-13335b34]:has(+ .code-editor-wrap:focus-within) {
|
|
1371
|
+
color: var(--bgl-primary) !important;
|
|
1372
|
+
}
|
|
1373
|
+
.code-editor[data-v-13335b34] {
|
|
1444
1374
|
color: transparent;
|
|
1445
1375
|
resize: none;
|
|
1446
1376
|
}
|
|
1447
|
-
.code-editor[data-v-
|
|
1377
|
+
.code-editor[data-v-13335b34]::selection {
|
|
1448
1378
|
background: #2466bc30;
|
|
1449
1379
|
color: inherit;
|
|
1450
1380
|
}
|
|
1451
|
-
.code-editor[data-v-
|
|
1381
|
+
.code-editor[data-v-13335b34]:focus {
|
|
1452
1382
|
outline: none;
|
|
1453
1383
|
}
|
|
1454
1384
|
|
|
@@ -1466,73 +1396,73 @@ pre code.hljs{
|
|
|
1466
1396
|
outline-color: var(--input-bg);
|
|
1467
1397
|
}
|
|
1468
1398
|
|
|
1469
|
-
.calendar-container[data-v-
|
|
1399
|
+
.calendar-container[data-v-9c8816c6] {
|
|
1470
1400
|
max-width: 90vw;
|
|
1471
1401
|
}
|
|
1472
|
-
.calendar-section[data-v-
|
|
1402
|
+
.calendar-section[data-v-9c8816c6] {
|
|
1473
1403
|
min-width: 280px;
|
|
1474
1404
|
}
|
|
1475
|
-
.calendar-grid[data-v-
|
|
1405
|
+
.calendar-grid[data-v-9c8816c6] {
|
|
1476
1406
|
grid-template-columns: repeat(7, 1fr);
|
|
1477
1407
|
}
|
|
1478
|
-
.month-grid[data-v-
|
|
1408
|
+
.month-grid[data-v-9c8816c6] {
|
|
1479
1409
|
grid-template-columns: repeat(3, 1fr);
|
|
1480
1410
|
grid-template-rows: repeat(4, 1fr);
|
|
1481
1411
|
}
|
|
1482
|
-
.year-grid[data-v-
|
|
1412
|
+
.year-grid[data-v-9c8816c6] {
|
|
1483
1413
|
grid-template-columns: repeat(3, 1fr);
|
|
1484
1414
|
grid-template-rows: repeat(7, 1fr);
|
|
1485
1415
|
}
|
|
1486
|
-
.month-item[data-v-
|
|
1487
|
-
.year-item[data-v-
|
|
1416
|
+
.month-item[data-v-9c8816c6],
|
|
1417
|
+
.year-item[data-v-9c8816c6] {
|
|
1488
1418
|
background: none;
|
|
1489
1419
|
color: var(--bgl-text-color);
|
|
1490
1420
|
}
|
|
1491
|
-
.month-item[data-v-
|
|
1492
|
-
.year-item[data-v-
|
|
1421
|
+
.month-item[data-v-9c8816c6]:hover:not(.disabled),
|
|
1422
|
+
.year-item[data-v-9c8816c6]:hover:not(.disabled) {
|
|
1493
1423
|
background: var(--bgl-box-bg);
|
|
1494
1424
|
filter: var(--bgl-hover-filter);
|
|
1495
1425
|
}
|
|
1496
|
-
.month-item[data-v-
|
|
1497
|
-
.year-item[data-v-
|
|
1426
|
+
.month-item[data-v-9c8816c6]:active:not(.disabled),
|
|
1427
|
+
.year-item[data-v-9c8816c6]:active:not(.disabled) {
|
|
1498
1428
|
background: var(--bgl-box-bg);
|
|
1499
1429
|
filter: var(--bgl-active-filter);
|
|
1500
1430
|
}
|
|
1501
|
-
.month-item.selected[data-v-
|
|
1502
|
-
.year-item.selected[data-v-
|
|
1431
|
+
.month-item.selected[data-v-9c8816c6],
|
|
1432
|
+
.year-item.selected[data-v-9c8816c6] {
|
|
1503
1433
|
background-color: var(--bgl-primary);
|
|
1504
1434
|
color: white;
|
|
1505
1435
|
}
|
|
1506
|
-
.month-item.disabled[data-v-
|
|
1507
|
-
.year-item.disabled[data-v-
|
|
1436
|
+
.month-item.disabled[data-v-9c8816c6],
|
|
1437
|
+
.year-item.disabled[data-v-9c8816c6] {
|
|
1508
1438
|
opacity: 0.6;
|
|
1509
1439
|
filter: grayscale(0.3);
|
|
1510
1440
|
}
|
|
1511
|
-
.day[data-v-
|
|
1441
|
+
.day[data-v-9c8816c6] {
|
|
1512
1442
|
border: none;
|
|
1513
1443
|
background: none;
|
|
1514
1444
|
color: var(--bgl-text-color);
|
|
1515
1445
|
}
|
|
1516
|
-
.day[data-v-
|
|
1446
|
+
.day[data-v-9c8816c6]:hover:not(.disabled) {
|
|
1517
1447
|
background-color: var(--input-bg);
|
|
1518
1448
|
}
|
|
1519
|
-
.day.selected[data-v-
|
|
1449
|
+
.day.selected[data-v-9c8816c6] {
|
|
1520
1450
|
background-color: var(--bgl-primary);
|
|
1521
1451
|
color: var(--bgl-white);
|
|
1522
1452
|
}
|
|
1523
|
-
.day.today[data-v-
|
|
1453
|
+
.day.today[data-v-9c8816c6]:not(.selected) {
|
|
1524
1454
|
border: 1px solid var(--bgl-primary);
|
|
1525
1455
|
}
|
|
1526
|
-
.day.disabled[data-v-
|
|
1456
|
+
.day.disabled[data-v-9c8816c6] {
|
|
1527
1457
|
opacity: 0.6;
|
|
1528
1458
|
filter: grayscale(0.3);
|
|
1529
1459
|
cursor: not-allowed;
|
|
1530
1460
|
}
|
|
1531
|
-
.day.not-in-month[data-v-
|
|
1461
|
+
.day.not-in-month[data-v-9c8816c6] {
|
|
1532
1462
|
opacity: 0.4;
|
|
1533
1463
|
}
|
|
1534
1464
|
|
|
1535
|
-
.date-picker-container[data-v-
|
|
1465
|
+
.date-picker-container[data-v-6202aa21] {
|
|
1536
1466
|
width: 100%;
|
|
1537
1467
|
}
|
|
1538
1468
|
|
|
@@ -2150,10 +2080,10 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
2150
2080
|
/* color: var(--input-color); */
|
|
2151
2081
|
}
|
|
2152
2082
|
|
|
2153
|
-
.selectinput[data-v-
|
|
2083
|
+
.selectinput[data-v-0432625c] {
|
|
2154
2084
|
width: 100%;
|
|
2155
2085
|
}
|
|
2156
|
-
.selectinput-option[data-v-
|
|
2086
|
+
.selectinput-option[data-v-0432625c] {
|
|
2157
2087
|
padding: 6px 12px;
|
|
2158
2088
|
cursor: pointer;
|
|
2159
2089
|
border-radius: 5px;
|
|
@@ -2165,23 +2095,23 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
2165
2095
|
font-size: var(--input-font-size);
|
|
2166
2096
|
margin-block: 0.15rem;
|
|
2167
2097
|
}
|
|
2168
|
-
.selectinput-option .bgl_icon-font[data-v-
|
|
2098
|
+
.selectinput-option .bgl_icon-font[data-v-0432625c]{
|
|
2169
2099
|
line-height: normal;
|
|
2170
2100
|
}
|
|
2171
|
-
.selectinput-options.multiselect .selectinput-option[data-v-
|
|
2101
|
+
.selectinput-options.multiselect .selectinput-option[data-v-0432625c] {
|
|
2172
2102
|
grid-template-columns: 10px 1fr;
|
|
2173
2103
|
}
|
|
2174
|
-
.selectinput-options[data-v-
|
|
2104
|
+
.selectinput-options[data-v-0432625c] {
|
|
2175
2105
|
max-height: 300px;
|
|
2176
2106
|
overflow-y: auto;
|
|
2177
2107
|
}
|
|
2178
|
-
.selectinput-option[data-v-
|
|
2108
|
+
.selectinput-option[data-v-0432625c]:hover, .highlight[data-v-0432625c] {
|
|
2179
2109
|
background: var(--bgl-gray-20);
|
|
2180
2110
|
}
|
|
2181
|
-
.isEmpty p[data-v-
|
|
2111
|
+
.isEmpty p[data-v-0432625c] {
|
|
2182
2112
|
opacity: 0.3;
|
|
2183
2113
|
}
|
|
2184
|
-
.selected[data-v-
|
|
2114
|
+
.selected[data-v-0432625c]{
|
|
2185
2115
|
/* background: var(--bgl-primary-tint); */
|
|
2186
2116
|
background: var(--bgl-selected);
|
|
2187
2117
|
}
|
|
@@ -6988,9 +6918,10 @@ to {
|
|
|
6988
6918
|
flex-direction: column-reverse;
|
|
6989
6919
|
}.row {
|
|
6990
6920
|
flex-direction: row;
|
|
6991
|
-
}.flex-grow
|
|
6921
|
+
}.flex-grow,
|
|
6922
|
+
.flex-grow-1 {
|
|
6992
6923
|
flex-grow: 1;
|
|
6993
|
-
}.flex-shrink {
|
|
6924
|
+
}.flex-shrink, .flex-shrink-1 {
|
|
6994
6925
|
flex-shrink: 1;
|
|
6995
6926
|
}.flex-no-grow,
|
|
6996
6927
|
.flex-grow-0 {
|
|
@@ -11488,11 +11419,13 @@ to {
|
|
|
11488
11419
|
flex-direction: row;
|
|
11489
11420
|
}
|
|
11490
11421
|
|
|
11491
|
-
.m_flex-grow
|
|
11422
|
+
.m_flex-grow,
|
|
11423
|
+
.m_flex-grow-1 {
|
|
11492
11424
|
flex-grow: 1;
|
|
11493
11425
|
}
|
|
11494
11426
|
|
|
11495
|
-
.m_flex-shrink
|
|
11427
|
+
.m_flex-shrink,
|
|
11428
|
+
.m_flex-shrink-1 {
|
|
11496
11429
|
flex-shrink: 1;
|
|
11497
11430
|
}
|
|
11498
11431
|
|
|
@@ -14955,156 +14888,156 @@ to {
|
|
|
14955
14888
|
}input,
|
|
14956
14889
|
textarea,
|
|
14957
14890
|
select {
|
|
14958
|
-
|
|
14959
|
-
|
|
14891
|
+
font-family: inherit;
|
|
14892
|
+
width: 100%;
|
|
14960
14893
|
}.bagel-input-error input,
|
|
14961
14894
|
.bagel-input-error button,
|
|
14962
14895
|
.bagel-input-error textarea {
|
|
14963
|
-
|
|
14896
|
+
outline: 1px solid var(--bgl-red);
|
|
14964
14897
|
}.bagel-input {
|
|
14965
|
-
|
|
14966
|
-
|
|
14967
|
-
|
|
14968
|
-
|
|
14969
|
-
|
|
14970
|
-
|
|
14971
|
-
|
|
14898
|
+
position: relative;
|
|
14899
|
+
display: flex;
|
|
14900
|
+
flex-direction: column;
|
|
14901
|
+
text-align: start;
|
|
14902
|
+
margin-bottom: 0.5rem;
|
|
14903
|
+
width: 100%;
|
|
14904
|
+
color: var(--bgl-text-color);
|
|
14972
14905
|
}.bagel-input::-webkit-input-placeholder .bagel-input label {
|
|
14973
|
-
|
|
14974
|
-
|
|
14975
|
-
|
|
14976
|
-
|
|
14906
|
+
display: block;
|
|
14907
|
+
font-size: var(--label-font-size);
|
|
14908
|
+
margin-bottom: 2px;
|
|
14909
|
+
line-height: 1.3;
|
|
14977
14910
|
}.bagel-input::-moz-placeholder .bagel-input label {
|
|
14978
|
-
|
|
14979
|
-
|
|
14980
|
-
|
|
14981
|
-
|
|
14911
|
+
display: block;
|
|
14912
|
+
font-size: var(--label-font-size);
|
|
14913
|
+
margin-bottom: 2px;
|
|
14914
|
+
line-height: 1.3;
|
|
14982
14915
|
}.bagel-input:-ms-input-placeholder .bagel-input label {
|
|
14983
|
-
|
|
14984
|
-
|
|
14985
|
-
|
|
14986
|
-
|
|
14916
|
+
display: block;
|
|
14917
|
+
font-size: var(--label-font-size);
|
|
14918
|
+
margin-bottom: 2px;
|
|
14919
|
+
line-height: 1.3;
|
|
14987
14920
|
}.bagel-input::-ms-input-placeholder .bagel-input label {
|
|
14988
|
-
|
|
14989
|
-
|
|
14990
|
-
|
|
14991
|
-
|
|
14921
|
+
display: block;
|
|
14922
|
+
font-size: var(--label-font-size);
|
|
14923
|
+
margin-bottom: 2px;
|
|
14924
|
+
line-height: 1.3;
|
|
14992
14925
|
}.bagel-input::placeholder .bagel-input label {
|
|
14993
|
-
|
|
14994
|
-
|
|
14995
|
-
|
|
14996
|
-
|
|
14926
|
+
display: block;
|
|
14927
|
+
font-size: var(--label-font-size);
|
|
14928
|
+
margin-bottom: 2px;
|
|
14929
|
+
line-height: 1.3;
|
|
14997
14930
|
}.bagel-input::-webkit-input-placeholder {
|
|
14998
|
-
|
|
14931
|
+
color: var(--placeholder-color);
|
|
14999
14932
|
}.bagel-input::-moz-placeholder {
|
|
15000
|
-
|
|
14933
|
+
color: var(--placeholder-color);
|
|
15001
14934
|
}.bagel-input:-ms-input-placeholder {
|
|
15002
|
-
|
|
14935
|
+
color: var(--placeholder-color);
|
|
15003
14936
|
}.bagel-input::-ms-input-placeholder {
|
|
15004
|
-
|
|
14937
|
+
color: var(--placeholder-color);
|
|
15005
14938
|
}.bagel-input::placeholder {
|
|
15006
|
-
|
|
14939
|
+
color: var(--placeholder-color);
|
|
15007
14940
|
}.bagel-input label {
|
|
15008
|
-
|
|
14941
|
+
color: var(--label-color);
|
|
15009
14942
|
}.bagel-input input,
|
|
15010
14943
|
.bagel-input select,
|
|
15011
14944
|
.custom-select .input {
|
|
15012
|
-
|
|
15013
|
-
|
|
14945
|
+
height: var(--input-height);
|
|
14946
|
+
font-size: var(--input-font-size);
|
|
15014
14947
|
}.bagel-input input,
|
|
15015
14948
|
.bagel-input textarea,
|
|
15016
14949
|
.bagel-input select,
|
|
15017
14950
|
.custom-select .input {
|
|
15018
|
-
|
|
15019
|
-
|
|
15020
|
-
|
|
15021
|
-
|
|
15022
|
-
|
|
15023
|
-
|
|
15024
|
-
|
|
14951
|
+
background: var(--input-bg);
|
|
14952
|
+
border: none;
|
|
14953
|
+
padding: 0.7rem;
|
|
14954
|
+
border-radius: var(--input-border-radius);
|
|
14955
|
+
color: var(--input-color);
|
|
14956
|
+
min-width: calc(var(--input-height) * 3);
|
|
14957
|
+
width: 100%;
|
|
15025
14958
|
}.bagel-input input::-webkit-input-placeholder,
|
|
15026
14959
|
.bagel-input textarea::-webkit-input-placeholder,
|
|
15027
14960
|
.bagel-input select::-webkit-input-placeholder,
|
|
15028
14961
|
.custom-select .input::-webkit-input-placeholder {
|
|
15029
|
-
|
|
14962
|
+
color: var(--placeholder-color);
|
|
15030
14963
|
}.bagel-input input::-moz-placeholder,
|
|
15031
14964
|
.bagel-input textarea::-moz-placeholder,
|
|
15032
14965
|
.bagel-input select::-moz-placeholder,
|
|
15033
14966
|
.custom-select .input::-moz-placeholder {
|
|
15034
|
-
|
|
14967
|
+
color: var(--placeholder-color);
|
|
15035
14968
|
}.bagel-input input:-ms-input-placeholder,
|
|
15036
14969
|
.bagel-input textarea:-ms-input-placeholder,
|
|
15037
14970
|
.bagel-input select:-ms-input-placeholder,
|
|
15038
14971
|
.custom-select .input:-ms-input-placeholder {
|
|
15039
|
-
|
|
14972
|
+
color: var(--placeholder-color);
|
|
15040
14973
|
}.bagel-input input::-ms-input-placeholder,
|
|
15041
14974
|
.bagel-input textarea::-ms-input-placeholder,
|
|
15042
14975
|
.bagel-input select::-ms-input-placeholder,
|
|
15043
14976
|
.custom-select .input::-ms-input-placeholder {
|
|
15044
|
-
|
|
14977
|
+
color: var(--placeholder-color);
|
|
15045
14978
|
}.bagel-input input::placeholder,
|
|
15046
14979
|
.bagel-input textarea::placeholder,
|
|
15047
14980
|
.bagel-input select::placeholder,
|
|
15048
14981
|
.custom-select .input::placeholder {
|
|
15049
|
-
|
|
14982
|
+
color: var(--placeholder-color);
|
|
15050
14983
|
}.bagel-input.search-wrap {
|
|
15051
|
-
|
|
15052
|
-
|
|
15053
|
-
|
|
14984
|
+
display: flex;
|
|
14985
|
+
flex-direction: row;
|
|
14986
|
+
align-items: center;
|
|
15054
14987
|
}.bagel-input.search-wrap input {
|
|
15055
|
-
|
|
15056
|
-
|
|
14988
|
+
-webkit-padding-end: 2rem;
|
|
14989
|
+
padding-inline-end: 2rem;
|
|
15057
14990
|
}.bagel-input.search-wrap .bgl_icon-font {
|
|
15058
|
-
|
|
15059
|
-
|
|
14991
|
+
-webkit-margin-start: -1.75rem;
|
|
14992
|
+
margin-inline-start: -1.75rem;
|
|
15060
14993
|
}.bagel-input select {
|
|
15061
|
-
|
|
14994
|
+
height: var(--input-height);
|
|
15062
14995
|
}.bagel-input textarea {
|
|
15063
|
-
|
|
15064
|
-
|
|
15065
|
-
|
|
14996
|
+
resize: vertical;
|
|
14997
|
+
min-height: calc(var(--input-height) * 3);
|
|
14998
|
+
line-height: 1.5;
|
|
15066
14999
|
}.bagel-input.wider input {
|
|
15067
|
-
|
|
15000
|
+
min-width: 320px;
|
|
15068
15001
|
}.bagel-input input[type='radio'] {
|
|
15069
|
-
|
|
15070
|
-
|
|
15071
|
-
|
|
15072
|
-
|
|
15002
|
+
padding: 0;
|
|
15003
|
+
width: -webkit-fit-content;
|
|
15004
|
+
width: -moz-fit-content;
|
|
15005
|
+
width: fit-content;
|
|
15073
15006
|
}.bagel-input:focus-within label {
|
|
15074
|
-
|
|
15007
|
+
color: var(--bgl-primary);
|
|
15075
15008
|
}.bagel-input select.no-edit,
|
|
15076
15009
|
.bagel-input input.no-edit,
|
|
15077
15010
|
.bagel-input textarea.no-edit,
|
|
15078
15011
|
.bagel-input .switch.no-edit {
|
|
15079
|
-
|
|
15080
|
-
|
|
15081
|
-
|
|
15012
|
+
pointer-events: none;
|
|
15013
|
+
outline: none;
|
|
15014
|
+
opacity: 0.7;
|
|
15082
15015
|
}.bagel-input label.active {
|
|
15083
|
-
|
|
15016
|
+
color: var(--bgl-primary);
|
|
15084
15017
|
}.inline-80 {
|
|
15085
|
-
|
|
15086
|
-
|
|
15018
|
+
display: inline-block;
|
|
15019
|
+
width: 80%;
|
|
15087
15020
|
}.inline-20 {
|
|
15088
|
-
|
|
15089
|
-
|
|
15021
|
+
display: inline-block;
|
|
15022
|
+
width: 20%;
|
|
15090
15023
|
}.inline-10 {
|
|
15091
|
-
|
|
15092
|
-
|
|
15024
|
+
display: inline-block;
|
|
15025
|
+
width: 20%;
|
|
15093
15026
|
}.inline-50 {
|
|
15094
|
-
|
|
15095
|
-
|
|
15096
|
-
|
|
15027
|
+
display: inline-block;
|
|
15028
|
+
width: 49%;
|
|
15029
|
+
margin: 0 0.5%;
|
|
15097
15030
|
}.custom-select .input {
|
|
15098
|
-
|
|
15099
|
-
|
|
15031
|
+
height: var(--input-height);
|
|
15032
|
+
font-size: var(--input-font-size);
|
|
15100
15033
|
}.custom-select .input {
|
|
15101
|
-
|
|
15102
|
-
|
|
15103
|
-
|
|
15104
|
-
|
|
15105
|
-
|
|
15106
|
-
|
|
15107
|
-
|
|
15034
|
+
background: var(--input-bg);
|
|
15035
|
+
border: none;
|
|
15036
|
+
padding: 0.7rem;
|
|
15037
|
+
border-radius: var(--input-border-radius);
|
|
15038
|
+
color: var(--input-color);
|
|
15039
|
+
min-width: calc(var(--input-height) * 3);
|
|
15040
|
+
width: 100%;
|
|
15108
15041
|
}/* [dir='rtl'] .bagel-input input[type='email'],
|
|
15109
15042
|
[dir='rtl'] .tel-input input[type='tel'] {
|
|
15110
15043
|
direction: ltr;
|
|
@@ -15114,79 +15047,80 @@ select {
|
|
|
15114
15047
|
.bagel-input textarea:focus-visible,
|
|
15115
15048
|
.bagel-input button:focus-visible,
|
|
15116
15049
|
.bgl_btn:focus-visible {
|
|
15117
|
-
|
|
15118
|
-
|
|
15050
|
+
outline-color: var(--bgl-primary-tint);
|
|
15051
|
+
box-shadow: inset 0 0 10px #00000012;
|
|
15119
15052
|
}.bagel-input input:focus,
|
|
15120
15053
|
.bagel-input select:focus,
|
|
15121
15054
|
.bagel-input textarea:focus {
|
|
15122
|
-
|
|
15123
|
-
|
|
15124
|
-
|
|
15055
|
+
outline-color: rgba(0, 0, 0, 0.05);
|
|
15056
|
+
box-shadow: inset 0 0 10px #00000021;
|
|
15057
|
+
outline-color: var(--input-bg);
|
|
15058
|
+
|
|
15125
15059
|
}.bagel-input .bgl_btn:focus,
|
|
15126
15060
|
.bagel-input button:focus {
|
|
15127
|
-
|
|
15128
|
-
|
|
15061
|
+
outline-color: rgba(0, 0, 0, 0.05);
|
|
15062
|
+
outline-color: var(--input-bg);
|
|
15129
15063
|
}.bagel-input.light-input input,
|
|
15130
15064
|
.bagel-input.light-input textarea,
|
|
15131
15065
|
.bagel-input.light-input select,
|
|
15132
15066
|
.custom-select.light-input .input,
|
|
15133
15067
|
.light-input .selectinput-btn {
|
|
15134
|
-
|
|
15135
|
-
|
|
15136
|
-
|
|
15137
|
-
|
|
15138
|
-
|
|
15068
|
+
background: var(--bgl-popup-bg) !important;
|
|
15069
|
+
box-shadow:
|
|
15070
|
+
0 1px 5px 0 rgba(0, 0, 0, 0.1),
|
|
15071
|
+
0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
|
|
15072
|
+
outline: 1px solid var(--border-color) !important;
|
|
15139
15073
|
}.input.active.light-input,
|
|
15140
15074
|
.bagel-input.light-input input:focus-visible,
|
|
15141
15075
|
.bagel-input.light-input select:focus-visible,
|
|
15142
15076
|
.bagel-input.light-input textarea:focus-visible {
|
|
15143
|
-
|
|
15077
|
+
box-shadow: inset 0 0 2px var(--bgl-popup-text) !important;
|
|
15144
15078
|
}.bagel-input input[type='number']-webkit-inner-spin-button,
|
|
15145
15079
|
.bagel-input input[type='number']::-webkit-outer-spin-button {
|
|
15146
|
-
|
|
15080
|
+
-webkit-appearance: none;
|
|
15147
15081
|
}.label-count-0 label {
|
|
15148
|
-
|
|
15082
|
+
display: none;
|
|
15149
15083
|
}.label-count-0 button.bgl_btn.bgl_flatBtn {
|
|
15150
|
-
|
|
15084
|
+
margin-right: 5px;
|
|
15151
15085
|
}.label-count-0 button.bgl_btn.bgl_flatBtn:hover {
|
|
15152
|
-
|
|
15086
|
+
background: var(--bgl-hover-filter);
|
|
15153
15087
|
}.bagel-input input[type='color'] {
|
|
15154
|
-
|
|
15155
|
-
|
|
15156
|
-
|
|
15157
|
-
|
|
15158
|
-
|
|
15159
|
-
|
|
15160
|
-
|
|
15161
|
-
|
|
15162
|
-
|
|
15163
|
-
|
|
15088
|
+
padding: 0.025rem 0.05rem;
|
|
15089
|
+
display: block;
|
|
15090
|
+
width: var(--input-height);
|
|
15091
|
+
min-width: var(--input-height);
|
|
15092
|
+
height: var(--input-height);
|
|
15093
|
+
border: none;
|
|
15094
|
+
-webkit-appearance: none;
|
|
15095
|
+
-moz-appearance: none;
|
|
15096
|
+
appearance: none;
|
|
15097
|
+
cursor: pointer;
|
|
15164
15098
|
}.bagel-input input[type='color']::-webkit-color-swatch {
|
|
15165
|
-
|
|
15166
|
-
|
|
15167
|
-
|
|
15168
|
-
|
|
15099
|
+
border-radius: var(--input-border-radius);
|
|
15100
|
+
border: none;
|
|
15101
|
+
-webkit-transition: box-shadow 200ms ease;
|
|
15102
|
+
transition: box-shadow 200ms ease;
|
|
15169
15103
|
}.bagel-input input[type='color']::-moz-color-swatch {
|
|
15170
|
-
|
|
15171
|
-
|
|
15172
|
-
|
|
15173
|
-
|
|
15104
|
+
border-radius: var(--input-border-radius);
|
|
15105
|
+
border: none;
|
|
15106
|
+
-moz-transition: box-shadow 200ms ease;
|
|
15107
|
+
transition: box-shadow 200ms ease;
|
|
15174
15108
|
}.bagel-input input[type='color']::-webkit-color-swatch:hover {
|
|
15175
|
-
|
|
15109
|
+
box-shadow: inset 0 0 10px #00000050;
|
|
15176
15110
|
}.bagel-input input[type='color']::-moz-color-swatch:hover {
|
|
15177
|
-
|
|
15111
|
+
box-shadow: inset 0 0 10px #00000050;
|
|
15178
15112
|
}@media screen and (max-width: 910px) {
|
|
15179
|
-
|
|
15180
|
-
|
|
15181
|
-
|
|
15113
|
+
.bagel-input.wider input {
|
|
15114
|
+
min-width: 120px;
|
|
15115
|
+
}
|
|
15182
15116
|
}.pixel {
|
|
15183
|
-
|
|
15184
|
-
|
|
15185
|
-
|
|
15186
|
-
|
|
15187
|
-
|
|
15188
|
-
|
|
15189
|
-
|
|
15117
|
+
width: 0 !important;
|
|
15118
|
+
height: 0 !important;
|
|
15119
|
+
overflow: hidden !important;
|
|
15120
|
+
outline: none !important;
|
|
15121
|
+
position: absolute !important;
|
|
15122
|
+
bottom: 0 !important;
|
|
15123
|
+
left: 50% !important;
|
|
15190
15124
|
}.bgl_btn,
|
|
15191
15125
|
.bgl_flatBtn,
|
|
15192
15126
|
.bgl_btn-icon {
|