@bagelink/vue 0.0.74 → 0.0.83

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.
Files changed (77) hide show
  1. package/dist/components/Btn.vue.d.ts +79 -0
  2. package/dist/components/Comments.vue.d.ts +23 -0
  3. package/dist/components/ContactSubmissions.vue.d.ts +12 -0
  4. package/dist/components/DataPreview.vue.d.ts +42 -0
  5. package/dist/components/DropDown.vue.d.ts +14 -0
  6. package/dist/components/FormSchema.vue.d.ts +42 -0
  7. package/dist/components/LangText.vue.d.ts +15 -0
  8. package/dist/components/ListItem.vue.d.ts +23 -0
  9. package/dist/components/ListView.vue.d.ts +36 -0
  10. package/dist/components/MaterialIcon.vue.d.ts +18 -0
  11. package/dist/components/Modal.vue.d.ts +35 -0
  12. package/dist/components/ModalForm.vue.d.ts +44 -0
  13. package/dist/components/NavBar.vue.d.ts +60 -0
  14. package/dist/components/PageTitle.vue.d.ts +21 -0
  15. package/dist/components/PersonPreviewFormkit.vue.d.ts +20 -0
  16. package/dist/components/RTXEditor.vue.d.ts +40 -0
  17. package/dist/components/RouterWrapper.vue.d.ts +2 -0
  18. package/dist/components/TabbedLayout.vue.d.ts +35 -0
  19. package/dist/components/TableSchema.vue.d.ts +29 -0
  20. package/dist/components/TopBar.vue.d.ts +9 -0
  21. package/dist/components/charts/BarChart.vue.d.ts +33 -0
  22. package/dist/components/form/MaterialIcon.vue.d.ts +18 -0
  23. package/dist/components/form/inputs/CheckInput.vue.d.ts +40 -0
  24. package/dist/components/form/inputs/Checkbox.vue.d.ts +12 -0
  25. package/dist/components/form/inputs/CurrencyInput.vue.d.ts +42 -0
  26. package/dist/components/form/inputs/DateInput.vue.d.ts +43 -0
  27. package/dist/components/form/inputs/DatetimeInput.vue.d.ts +52 -0
  28. package/dist/components/form/inputs/DurationInput.vue.d.ts +52 -0
  29. package/dist/components/form/inputs/EmailInput.vue.d.ts +52 -0
  30. package/dist/components/form/inputs/FloatInput.vue.d.ts +52 -0
  31. package/dist/components/form/inputs/IntInput.vue.d.ts +52 -0
  32. package/dist/components/form/inputs/JSONInput.vue.d.ts +52 -0
  33. package/dist/components/form/inputs/LinkField.vue.d.ts +63 -0
  34. package/dist/components/form/inputs/Password.vue.d.ts +46 -0
  35. package/dist/components/form/inputs/PasswordInput.vue.d.ts +52 -0
  36. package/dist/components/form/inputs/ReadOnlyInput.vue.d.ts +20 -0
  37. package/dist/components/form/inputs/RichTextEditor.vue.d.ts +52 -0
  38. package/dist/components/form/inputs/SelectField.vue.d.ts +51 -0
  39. package/dist/components/form/inputs/TableField.vue.d.ts +44 -0
  40. package/dist/components/form/inputs/TextInput.vue.d.ts +56 -0
  41. package/dist/components/form/inputs/index.d.ts +17 -0
  42. package/dist/components/formkit/AddressArray.vue.d.ts +37 -0
  43. package/dist/components/formkit/BankDetailsArray.vue.d.ts +41 -0
  44. package/dist/components/formkit/ContactArrayFormKit.vue.d.ts +33 -0
  45. package/dist/components/formkit/FileUploader.vue.d.ts +36 -0
  46. package/dist/components/formkit/MiscFields.vue.d.ts +17 -0
  47. package/dist/components/formkit/Toggle.vue.d.ts +6 -0
  48. package/dist/components/formkit/index.d.ts +9 -0
  49. package/dist/components/index.d.ts +20 -0
  50. package/dist/components/whatsapp/form/TextVariableExamples.vue.d.ts +6 -0
  51. package/dist/components/whatsapp/interfaces.d.ts +49 -0
  52. package/dist/index.cjs +26500 -0
  53. package/dist/index.d.ts +6 -0
  54. package/dist/index.mjs +26500 -0
  55. package/dist/plugins/bagel.d.ts +9 -0
  56. package/dist/plugins/modal.d.ts +24 -0
  57. package/dist/style.css +2110 -0
  58. package/dist/types/BagelField.d.ts +39 -0
  59. package/dist/types/BtnOptions.d.ts +13 -0
  60. package/dist/types/Person.d.ts +47 -0
  61. package/dist/types/file.d.ts +12 -0
  62. package/dist/types/index.d.ts +4 -0
  63. package/dist/utils/index.d.ts +8 -0
  64. package/dist/utils/objects.d.ts +3 -0
  65. package/dist/utils/strings.d.ts +1 -0
  66. package/package.json +3 -3
  67. package/src/components/DataPreview.vue +2 -1
  68. package/src/components/FormSchema.vue +1 -1
  69. package/src/components/PersonPreview.vue +2 -4
  70. package/src/components/PersonPreviewFormkit.vue +2 -4
  71. package/src/components/form/inputs/DatetimeInput.vue +2 -3
  72. package/src/components/form/inputs/DurationInput.vue +6 -7
  73. package/src/components/form/inputs/DynamicLinkField.vue +3 -7
  74. package/src/components/form/inputs/EmailInput.vue +6 -5
  75. package/src/components/form/inputs/FloatInput.vue +6 -5
  76. package/src/components/form/inputs/IntInput.vue +5 -6
  77. package/src/components/form/inputs/JSONInput.vue +4 -5
package/dist/style.css ADDED
@@ -0,0 +1,2110 @@
1
+
2
+ .new-comment .ProseMirror {
3
+ width: 100%;
4
+ height: 100%;
5
+ border-radius: 3px;
6
+ padding: 0.55rem;
7
+ min-height: 40px;
8
+ }
9
+ .new-comment .ProseMirror p {
10
+ margin: 0;
11
+ }
12
+ .comment-input .ProseMirror {
13
+ background-color: var(--bgl-bg);
14
+ margin-inline-start: 0;
15
+ }
16
+ .new-comment .editable {
17
+ background-color: var(--bgl-bg);
18
+ }
19
+ .ProseMirror-focused {
20
+ outline: none;
21
+ border: none;
22
+ box-shadow: inset 0 0 10px #00000012;
23
+ }
24
+ .ProseMirror,
25
+ .editor-wrapper {
26
+ height: 100%;
27
+ border-radius: 3px;
28
+ padding: 0.55rem;
29
+ border-radius: var(--btn-border-radius);
30
+ margin-inline-start: 1rem;
31
+ }
32
+ .ProseMirror p,
33
+ .editor-wrapper p {
34
+ margin: 0;
35
+ }
36
+ .editable .ProseMirror {
37
+ background-color: var(--bgl-bg);
38
+ }
39
+
40
+ [dir='rtl'] .top-arrow {
41
+ transform: rotate(180deg);
42
+ }
43
+ .nav-expend {
44
+ text-align: center;
45
+ cursor: pointer;
46
+ background: var(--bgl-white);
47
+ color: var(--bgl-blue);
48
+ display: flex;
49
+ border-radius: 100%;
50
+ font-size: 13px;
51
+ box-shadow: 0 0 50px 0 var(--bgl-shadow);
52
+ height: 22px;
53
+ width: 22px;
54
+ align-items: center;
55
+ justify-content: center;
56
+ position: absolute;
57
+ top: 82px;
58
+ box-sizing: border-box;
59
+ padding-inline-start: 2px;
60
+ margin-inline-start: 55px;
61
+ transition: all 0.4s cubic-bezier(0.36, 0.02, 0.23, 1);
62
+ }
63
+
64
+ /*
65
+ .nav-home-wrapper {
66
+ margin-bottom: 30px;
67
+ }
68
+ */
69
+ .nav-expend {
70
+ background: white;
71
+ }
72
+ .nav-expend:hover {
73
+ filter: brightness(95%);
74
+ box-shadow: 0 0 20px 0 var(--bgl-blue-tint);
75
+ }
76
+ .nav-expend:active {
77
+ filter: var(--bgl-active-filter);
78
+ }
79
+ .nav {
80
+ color: var(--bgl-white);
81
+ background: var(--bgl-blue);
82
+ z-index: 100;
83
+ width: 70px;
84
+ transition: all 0.4s cubic-bezier(0.36, 0.02, 0.23, 1);
85
+ display: flex;
86
+ flex-direction: column;
87
+ }
88
+ .nav * {
89
+ user-select: none;
90
+ }
91
+ .nav-button {
92
+ text-decoration: none;
93
+ cursor: pointer;
94
+ display: flex;
95
+ text-align: start;
96
+ align-items: center;
97
+ position: relative;
98
+ color: var(--bgl-white);
99
+ transition: all 0.2s ease;
100
+ pointer-events: none;
101
+ }
102
+ .nav-button:hover {
103
+ width: fit-content;
104
+ pointer-events: all;
105
+ }
106
+ .nav-button .icon-font {
107
+ font-size: 22px;
108
+ margin: 0.25rem 10px;
109
+ padding: 10px;
110
+ width: 50px;
111
+ text-align: center;
112
+ height: 45px;
113
+ flex-grow: 0;
114
+ flex-shrink: 0;
115
+ border-radius: 10px;
116
+ transition: all 0.2s ease;
117
+ pointer-events: all;
118
+ }
119
+ .nav-button:hover .icon-font,
120
+ .nav-button.router-link-active .icon-font {
121
+ background: var(--bgl-white);
122
+ color: var(--bgl-blue);
123
+ }
124
+ .nav-button:hover .tooltip {
125
+ opacity: 1;
126
+ pointer-events: all;
127
+ }
128
+ .tooltip {
129
+ background-color: var(--bgl-white);
130
+ color: var(--bgl-blue);
131
+ line-height: 1;
132
+ padding: 0.5rem;
133
+ border-radius: 10px;
134
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
135
+ transition: all 0.2s ease;
136
+ border: 5px solid transparent;
137
+ white-space: nowrap;
138
+ pointer-events: none;
139
+ opacity: 0;
140
+ margin-inline-start: 1rem;
141
+ }
142
+ .tooltip:hover {
143
+ filter: brightness(95%);
144
+ }
145
+ .tooltip:active {
146
+ filter: brightness(90%);
147
+ }
148
+ .bot-buttons-wrapper {
149
+ margin-top: auto;
150
+ width: 100%;
151
+ }
152
+ .nav-links-wrapper {
153
+ direction: ltr;
154
+ }
155
+ [dir='rtl'] .nav-links-wrapper {
156
+ direction: rtl;
157
+ }
158
+ .nav-scroll {
159
+ overflow-y: scroll;
160
+ width: 50vw;
161
+ direction: rtl;
162
+ text-align: end;
163
+ margin-inline-end: -7px;
164
+ pointer-events: none;
165
+ display: flex;
166
+ flex-direction: column;
167
+ }
168
+ .nav::-webkit-scrollbar-thumb {
169
+ background-color: transparent;
170
+ }
171
+ .nav:hover::-webkit-scrollbar-thumb {
172
+ background-color: var(--bgl-gray);
173
+ }
174
+ [dir='rtl'] .nav-scroll {
175
+ direction: ltr;
176
+ }
177
+ .full-nav {
178
+ height: 100%;
179
+ display: flex;
180
+ flex-direction: column;
181
+ }
182
+ @media screen and (min-width: 910px) {
183
+ .nav.open .nav-expend {
184
+ margin-inline-start: 189px;
185
+ transform: rotate(180deg);
186
+ }
187
+ .nav.open {
188
+ width: 200px;
189
+ text-align: start;
190
+ }
191
+ .nav.open .tooltip {
192
+ background-color: transparent;
193
+ color: var(--bgl-white);
194
+ padding: 0;
195
+ box-shadow: none;
196
+ pointer-events: all;
197
+ opacity: 1;
198
+ margin-inline-start: 0rem;
199
+ }
200
+ .nav.open .nav-button .icon-font {
201
+ margin: 0;
202
+ background: transparent;
203
+ }
204
+ .nav.open .nav-button {
205
+ width: 180px;
206
+ border-radius: 10px;
207
+ margin-inline-start: 10px;
208
+ margin-top: 10px;
209
+ margin-bottom: 10px;
210
+ }
211
+ .nav.open .nav-button:hover,
212
+ .nav.open .nav-button.router-link-active {
213
+ background: var(--bgl-white);
214
+ color: var(--bgl-blue);
215
+ }
216
+ .nav.open .nav-button:hover,
217
+ .nav.open .nav-button:hover .tooltip,
218
+ .nav.open .nav-button.router-link-active .tooltip {
219
+ color: var(--bgl-blue);
220
+ }
221
+ }
222
+ @media screen and (max-width: 910px) {
223
+ .full-nav {
224
+ height: auto;
225
+ display: flex;
226
+ flex-direction: row;
227
+ width: calc(100vw - 70px);
228
+ position: absolute;
229
+ inset-inline-end: 0;
230
+ overflow-x: auto;
231
+ }
232
+ .nav.open {
233
+ width: initial;
234
+ }
235
+ .nav {
236
+ width: auto;
237
+ display: flex;
238
+ flex-direction: row;
239
+ margin: 0;
240
+ overflow-x: auto;
241
+ justify-content: flex-start;
242
+ }
243
+ .tooltip {
244
+ opacity: 1;
245
+ background: transparent;
246
+ color: var(--bgl-white);
247
+ box-shadow: none;
248
+ font-size: 10px;
249
+ padding: 0;
250
+ margin: 0;
251
+ }
252
+ .nav-button {
253
+ flex-direction: column;
254
+ margin: 12px 0.25rem;
255
+ }
256
+ .nav-button .icon-font {
257
+ padding: 2px 0 0 0;
258
+ margin: 0;
259
+ height: 30px;
260
+ width: 30px;
261
+ }
262
+ .nav-links-wrapper {
263
+ display: flex;
264
+ }
265
+ .bot-buttons-wrapper {
266
+ margin-top: 0;
267
+ width: auto;
268
+ display: flex;
269
+ }
270
+ .nav-scroll {
271
+ overflow-y: visible;
272
+ width: auto;
273
+ direction: auto;
274
+ text-align: start;
275
+ margin-inline-end: 0px;
276
+ pointer-events: all;
277
+ display: flex;
278
+ flex-direction: row;
279
+ margin-inline-end: auto;
280
+ }
281
+ .nav::-webkit-scrollbar {
282
+ display: none;
283
+ }
284
+ .nav-expend {
285
+ display: none;
286
+ }
287
+ }
288
+
289
+ .loading[data-v-4e57112f] {
290
+ border: 1px solid var(--bgl-white);
291
+ border-bottom: 2px solid var(--bgl-white);
292
+ animation: spin-4e57112f 1s linear infinite;
293
+ border-radius: 100px;
294
+ width: 1rem;
295
+ height: 1rem;
296
+ margin: auto;
297
+ }
298
+ @keyframes spin-4e57112f {
299
+ 0% {
300
+ transform: rotate(0deg);
301
+ }
302
+ 100% {
303
+ transform: rotate(360deg);
304
+ }
305
+ }
306
+ .btn-icon[data-v-4e57112f] {
307
+ height: var(--btn-height);
308
+ width: var(--btn-height);
309
+ border-radius: 100%;
310
+ font-size: 1rem;
311
+ background: var(--bgl-blue);
312
+ color: var(--bgl-white);
313
+ flex-shrink: 0;
314
+ transition: var(--bgl-transition);
315
+ }
316
+ .btn[data-v-4e57112f] {
317
+ background: var(--bgl-blue);
318
+ color: var(--bgl-white);
319
+ padding-left: var(--btn-padding);
320
+ padding-right: var(--btn-padding);
321
+ transition: var(--bgl-transition);
322
+ text-decoration: none;
323
+ }
324
+ .btn[disabled='true'][data-v-4e57112f] {
325
+ opacity: 0.5;
326
+ cursor: not-allowed;
327
+ }
328
+ .btn-flex[data-v-4e57112f] {
329
+ display: flex;
330
+ align-items: center;
331
+ gap: 0.5rem;
332
+ justify-content: center;
333
+ }
334
+ .btn .icon-font[data-v-4e57112f] {
335
+ font-size: calc(var(--input-font-size) * 1.3);
336
+ }
337
+ .btn[data-v-4e57112f]:hover,
338
+ .btn-icon[data-v-4e57112f]:hover {
339
+ filter: var(--bgl-hover-filter);
340
+ }
341
+ .btn[data-v-4e57112f]:active,
342
+ .btn-icon[data-v-4e57112f]:active {
343
+ filter: var(--bgl-active-filter);
344
+ }
345
+ .btn.red[data-v-4e57112f],
346
+ .btn-icon.red[data-v-4e57112f] {
347
+ background: var(--bgl-red);
348
+ }
349
+ .btn.light[data-v-4e57112f],
350
+ .btn-icon.light[data-v-4e57112f] {
351
+ background: var(--bgl-blue-light);
352
+ color: var(--bgl-blue);
353
+ }
354
+ .btn.gray[data-v-4e57112f],
355
+ .btn-icon.gray[data-v-4e57112f] {
356
+ background: var(--bgl-gray-light);
357
+ color: var(--bgl-black);
358
+ }
359
+ .btn.green[data-v-4e57112f],
360
+ .btn-icon.green[data-v-4e57112f] {
361
+ background: var(--bgl-green);
362
+ color: var(--bgl-white)
363
+ }
364
+ .btn.gray-light[data-v-4e57112f],
365
+ .btn-icon.gray-light[data-v-4e57112f] {
366
+ background: var(--bgl-gray-light);
367
+ color: var(--bgl-gray);
368
+ }
369
+ .btn.black[data-v-4e57112f],
370
+ .btn-icon.black[data-v-4e57112f] {
371
+ background: var(--bgl-black);
372
+ }
373
+ .btn.btn-txt[data-v-4e57112f] {
374
+ color: var(--bgl-blue);
375
+ padding-left: var(--btn-padding);
376
+ padding-right: var(--btn-padding);
377
+ background: transparent;
378
+ }
379
+ .btn-icon.btn-txt[data-v-4e57112f] {
380
+ color: var(--bgl-blue);
381
+ background: transparent;
382
+ }
383
+ .btn.btn-txt[data-v-4e57112f]:hover,
384
+ .btn-icon.btn-txt[data-v-4e57112f]:hover {
385
+ filter: var(--bgl-active-filter);
386
+ }
387
+ .btn.btn-txt[data-v-4e57112f]:active,
388
+ .btn-icon.btn-txt[data-v-4e57112f]:active {
389
+ background: var(--bgl-white);
390
+ filter: var(--bgl-hover-filter);
391
+ }
392
+ .btn.btn-txt.red[data-v-4e57112f],
393
+ .btn-icon.btn-txt.red[data-v-4e57112f] {
394
+ color: var(--bgl-red);
395
+ }
396
+ .btn.btn-txt.light[data-v-4e57112f],
397
+ .btn-icon.btn-txt.light[data-v-4e57112f] {
398
+ color: var(--bgl-blue-tint);
399
+ }
400
+ .btn.btn-txt.black[data-v-4e57112f],
401
+ .btn-icon.btn-txt.black[data-v-4e57112f] {
402
+ color: var(--bgl-black);
403
+ }
404
+ .btn.btn-txt.gray[data-v-4e57112f],
405
+ .btn-icon.btn-txt.gray[data-v-4e57112f] {
406
+ color: var(--bgl-gray);
407
+ }
408
+ .btn.thin[data-v-4e57112f] {
409
+ padding-left: calc(var(--btn-padding) / 2);
410
+ padding-right: calc(var(--btn-padding) / 2);
411
+ }
412
+ .btn.round[data-v-4e57112f] {
413
+ border-radius: calc(var(--btn-border-radius) * 2);
414
+ }
415
+ .btn-icon.thin[data-v-4e57112f] {
416
+ height: calc(var(--btn-height) / 1.5);
417
+ width: calc(var(--btn-height) / 1.5);
418
+ line-height: 1;
419
+ }
420
+ [dir='rtl'] .icon-font[data-v-4e57112f] {
421
+ transform: rotateY(180deg);
422
+ }.bg-dark {
423
+ position: fixed;
424
+ top: 0;
425
+ right: 0;
426
+ left: 0;
427
+ bottom: 0;
428
+ background-color: rgba(0, 0, 0, 0.7);
429
+ z-index: 999;
430
+ display: flex;
431
+ justify-content: center;
432
+ align-items: center;
433
+ pointer-events: none;
434
+ opacity: 0;
435
+ transition: all ease-in-out 0.3s;
436
+ }
437
+
438
+ .modal {
439
+ width: 96%;
440
+ max-width: 680px;
441
+ transform: scale(0.5);
442
+ opacity: 0;
443
+ transition: all ease-in-out 0.15s;
444
+ overflow: auto;
445
+ max-height: 96vh;
446
+ }
447
+
448
+ .small-modal .modal {
449
+ max-width: 300px;
450
+ text-align: center;
451
+ }
452
+
453
+ .tool-bar {
454
+ margin: -2rem -1rem 1rem;
455
+ display: flex;
456
+ justify-content: space-between;
457
+ position: sticky;
458
+ padding-top: 1rem;
459
+ top: -2rem;
460
+ z-index: 3;
461
+ background: var(--bgl-white);
462
+ }
463
+
464
+ .modal-size {
465
+ cursor: pointer;
466
+ }
467
+
468
+ .is-side .modal {
469
+ inset-inline-end: -600px;
470
+ transform: scale(1);
471
+ opacity: 1;
472
+ position: fixed;
473
+ top: 20px;
474
+ bottom: 20px;
475
+ max-width: 600px;
476
+ width: 90%;
477
+ }
478
+
479
+ .is-active .modal {
480
+ transform: scale(1);
481
+ opacity: 1;
482
+ box-shadow: 6px 6px 20px 20px #0000001c;
483
+ }
484
+
485
+ .is-active.is-side .modal {
486
+ inset-inline-end: 20px;
487
+ }
488
+
489
+ .bg-dark.is-active {
490
+ opacity: 1;
491
+ pointer-events: all;
492
+ }
493
+
494
+ .is-side.bg-dark.is-active {
495
+ opacity: 1;
496
+ }
497
+
498
+ .is-side.is-active .modal {
499
+ pointer-events: all;
500
+ }
501
+
502
+ @media screen and (max-width: 910px) {
503
+ .tool-bar {
504
+ margin: -2rem 0 1rem;
505
+ align-items: center;
506
+ }
507
+
508
+ .is-active.is-side .modal {
509
+ inset-inline-end: 5%;
510
+ }
511
+ }
512
+ /* .group-wrap * {
513
+ outline: 1px solid red;
514
+ } */
515
+ .group-wrap[data-v-f7af54ed] {
516
+ height: 100%;
517
+ display: flex;
518
+ align-items: center;
519
+ justify-content: center;
520
+ flex-wrap: wrap;
521
+ gap: 2px;
522
+ }
523
+ .group-wrap .bar-wrap[data-v-f7af54ed] {
524
+ gap: 2px;
525
+ }
526
+ .group-title[data-v-f7af54ed] {
527
+ font-size: 0.6em;
528
+ width: 100%;
529
+ }
530
+ .bar-txt[data-v-f7af54ed] {
531
+ font-size: 11px;
532
+ font-weight: 200;
533
+ /* max-width: 95%; */
534
+ width: max-content;
535
+ height: 20px;
536
+ line-height: 1.2;
537
+ margin: 5px auto 0;
538
+ position: absolute;
539
+ transform: rotate(300deg);
540
+ transform-origin: 40px 40px;
541
+ }
542
+ .graph-wrap[data-v-f7af54ed] {
543
+ display: flex;
544
+ flex-direction: row;
545
+ align-items: flex-end;
546
+ padding: 0 10px;
547
+ }
548
+ .bar-wrap[data-v-f7af54ed] {
549
+ text-align: center;
550
+ height: 100%;
551
+ /* flex: 0 1 16.6%; */
552
+ display: flex;
553
+ flex-direction: row;
554
+ align-items: flex-end;
555
+ position: relative;
556
+ }
557
+ .bar[data-v-f7af54ed] {
558
+ background: var(--bgl-blue);
559
+ position: relative;
560
+ min-width: 10px;
561
+ min-height: 5px;
562
+ width: 4px;
563
+ margin: 0 auto;
564
+ transition: all ease-out 0.8s;
565
+ }
566
+ .bar.compare[data-v-f7af54ed] {
567
+ background-color: #cf2135;
568
+ }
569
+ .bar-chart[data-v-f7af54ed] {
570
+ height: calc(100vh - 500px);
571
+ width: 90%;
572
+ margin: 30px auto;
573
+ display: flex;
574
+ justify-content: space-between;
575
+ position: relative;
576
+ }
577
+ .graps .bar-chart[data-v-f7af54ed] {
578
+ aspect-ratio: 9/5;
579
+ height: auto;
580
+ max-height: calc(100vh - 500px);
581
+ }
582
+ .bar-lines[data-v-f7af54ed] {
583
+ position: absolute;
584
+ /* font-size: 20px; */
585
+ display: flex;
586
+ flex-direction: column-reverse;
587
+ top: -15px;
588
+ bottom: -12px;
589
+ left: -30px;
590
+ justify-content: space-between;
591
+ width: calc(100% + 20px);
592
+ text-align: start;
593
+ }
594
+ .bar-lines p[data-v-f7af54ed] {
595
+ margin: 0;
596
+ position: relative;
597
+ }
598
+ .bar-lines p[data-v-f7af54ed]::after {
599
+ content: "";
600
+ background: var(--bgl-blue-tint);
601
+ height: 1px;
602
+ position: absolute;
603
+ width: calc(100% - 20px);
604
+ margin: 14px 0 0 10px;
605
+ opacity: 0.5;
606
+ }
607
+ .bar-lines p[data-v-f7af54ed]:first-child:after {
608
+ content: "";
609
+ background: var(--bgl-blue-tint);
610
+ height: 1px;
611
+ position: absolute;
612
+ width: calc(100% - 10px);
613
+ margin: 8px 0 0 10px;
614
+ opacity: 0.5;
615
+ }
616
+ .red-bar[data-v-f7af54ed] {
617
+ background: #cf2135;
618
+ height: var(--6227cb5e);
619
+ width: 100%;
620
+ position: absolute;
621
+ left: 0px;
622
+ bottom: 0;
623
+ opacity: 0.6;
624
+ transition: all 200ms ease;
625
+ }
626
+ .red-bar.open-redbar[data-v-f7af54ed] {
627
+ height: 7%;
628
+ }
629
+ .factor[data-v-f7af54ed] {
630
+ position: absolute;
631
+ transform: rotate(270deg);
632
+ height: 0px;
633
+ width: 0;
634
+ left: -60px;
635
+ font-size: 22px;
636
+ text-align: center;
637
+ white-space: nowrap;
638
+ top: 60%;
639
+ }
640
+ .dash-hor[data-v-f7af54ed] {
641
+ /* border-bottom: 1px dashed white; */
642
+ position: absolute;
643
+ background-image: linear-gradient(to right, #cf2134 53%, transparent 0%);
644
+ height: 10px;
645
+ bottom: 41.5%;
646
+ width: 100%;
647
+ animation: 1s linear 0s infinite dash-f7af54ed;
648
+ background-position: left;
649
+ background-repeat: repeat-x;
650
+ background-size: 15px 4px;
651
+ }
652
+ .dash-hor[data-v-f7af54ed]::after {
653
+ content: "Average Speedup = 25x";
654
+ position: absolute;
655
+ left: 0;
656
+ bottom: 10px;
657
+ font-size: 22px;
658
+ background: #cf2134;
659
+ z-index: 2;
660
+ padding: 1px 4px;
661
+ border-radius: 3px;
662
+ }
663
+ @keyframes dash-f7af54ed {
664
+ 0% {
665
+ background-position: 0;
666
+ }
667
+ 100% {
668
+ background-position: 15px;
669
+ }
670
+ }
671
+
672
+ .dropdown {
673
+ position: relative;
674
+ font-size: calc(var(--input-font-size) * 1.3);
675
+ width: 50px;
676
+ /* color: var(--bgl-blue); */
677
+ z-index: 1;
678
+ }
679
+ .dropdown-title {
680
+ white-space: nowrap;
681
+ border-radius: var(--input-border-radius);
682
+ box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
683
+ padding-left: calc(var(--btn-padding) / 2);
684
+ padding-right: calc(var(--btn-padding) / 2);
685
+ display: flex;
686
+ align-items: center;
687
+ min-height: var(--input-height);
688
+ cursor: pointer;
689
+ transition: var(--bgl-transition);
690
+ background: var(--bgl-white);
691
+ justify-content: space-between;
692
+ user-select: none;
693
+ position: relative;
694
+ }
695
+ .open .dropdown {
696
+ min-width: 120px;
697
+ }
698
+ .dropdown-title:hover {
699
+ filter: var(--bgl-hover-filter);
700
+ color: var(--bgl-blue);
701
+ }
702
+ .dropdown-title:active {
703
+ filter: var(--bgl-active-filter);
704
+ }
705
+ .dropdown-body {
706
+ border-radius: var(--input-border-radius);
707
+ position: absolute;
708
+ transition: var(--bgl-transition);
709
+ max-height: 0;
710
+ overflow: hidden;
711
+ background: var(--bgl-white);
712
+ inset-inline-start: 0;
713
+ inset-inline-end: 0;
714
+ overflow: auto;
715
+ box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
716
+ }
717
+ .dropdown-body * {
718
+ display: block;
719
+ cursor: pointer;
720
+ padding: calc(var(--btn-padding) / 2);
721
+ padding-bottom: calc(var(--btn-padding) / 4);
722
+ padding-top: calc(var(--btn-padding) / 4);
723
+ color: inherit;
724
+ text-decoration: none;
725
+ line-height: 1;
726
+ transition: var(--bgl-transition);
727
+ box-shadow: 0 -1px 0 0 rgb(0 0 0, 10%);
728
+ z-index: 99999999;
729
+ }
730
+ .dropdown-body *:hover {
731
+ filter: var(--bgl-hover-filter);
732
+ color: var(--bgl-blue);
733
+ }
734
+ .dropdown-body *:active {
735
+ filter: var(--bgl-active-filter);
736
+ }
737
+ .dropdown.opendrop .dropdown-body {
738
+ max-height: 150px;
739
+ }
740
+ .search-wrap {
741
+ flex-grow: 1;
742
+ }
743
+
744
+ .tab[data-v-4ac29f1d] {
745
+ text-transform: capitalize;
746
+ }
747
+
748
+ /* .top-section {
749
+ grid-area: top-section;
750
+ font-size: 10px;
751
+ }
752
+
753
+ .detail-section {
754
+ grid-area: detail-section;
755
+ } */
756
+ .card.tabs-top[data-v-4ac29f1d] {
757
+ width: 99%;
758
+ }
759
+
760
+ .comments-wrap[data-v-36ddbe63] {
761
+ display: grid;
762
+ grid-template-rows: 1fr 40px;
763
+ height: 100%;
764
+ position: relative;
765
+ gap: 0.5rem;
766
+ }
767
+ .comments-wrap p[data-v-36ddbe63] {
768
+ margin: 0;
769
+ }
770
+ .comments-wrap[data-v-36ddbe63]::before {
771
+ content: '';
772
+ inset-inline-start: 10px;
773
+ top: 0px;
774
+ width: 1px;
775
+ background: var(--border-color);
776
+ position: absolute;
777
+ bottom: 10px;
778
+ }
779
+ .comment-top[data-v-36ddbe63] {
780
+ display: flex;
781
+ align-items: baseline;
782
+ flex-wrap: wrap;
783
+ position: relative;
784
+ margin-inline-start: 1rem;
785
+ }
786
+ .comment-list[data-v-36ddbe63] {
787
+ padding: 0.5rem;
788
+ height: 100%;
789
+ overflow: auto;
790
+ }
791
+ .comment[data-v-36ddbe63] {
792
+ margin-bottom: 1rem;
793
+ }
794
+ .comment-owner[data-v-36ddbe63] {
795
+ font-size: 14px;
796
+ margin-inline-end: 0.5rem;
797
+ color: var(--bgl-gray);
798
+ }
799
+ .comment-owner[data-v-36ddbe63]::before {
800
+ content: '';
801
+ height: 12px;
802
+ width: 12px;
803
+ border-radius: 100%;
804
+ position: absolute;
805
+ background: var(--bgl-gray);
806
+ inset-inline-start: -1.2rem;
807
+ top: 0.2rem;
808
+ }
809
+ .me .comment-owner[data-v-36ddbe63] {
810
+ color: var(--bgl-blue);
811
+ }
812
+ .me .comment-owner[data-v-36ddbe63]::before {
813
+ background: var(--bgl-blue);
814
+ }
815
+ .comment-time[data-v-36ddbe63] {
816
+ color: var(--bgl-gray);
817
+ font-size: 10px;
818
+ white-space: nowrap;
819
+ }
820
+ .comment-actions[data-v-36ddbe63] {
821
+ background: red;
822
+ line-height: 0;
823
+ display: flex;
824
+ padding: 0 0.5rem;
825
+ flex-grow: 1;
826
+ gap: 0.25rem;
827
+ }
828
+ .comment .comment-actions .edit[data-v-36ddbe63] {
829
+ opacity: 0;
830
+ }
831
+ .comment-actions .edit[data-v-36ddbe63] {
832
+ margin-inline-end: auto;
833
+ }
834
+ .comment.me:hover .comment-actions .edit[data-v-36ddbe63] {
835
+ opacity: 0.4;
836
+ }
837
+ .comment-actions>div[data-v-36ddbe63] {
838
+ transition: all 200ms ease;
839
+ cursor: pointer;
840
+ opacity: 0.6;
841
+ }
842
+ .comment-actions>div[data-v-36ddbe63]:hover {
843
+ color: var(--bgl-blue);
844
+ }
845
+ .comment-actions .delete[data-v-36ddbe63]:hover {
846
+ color: var(--bgl-red);
847
+ }
848
+ .comment-actions>div[data-v-36ddbe63]:active {
849
+ filter: brightness(70%);
850
+ }
851
+ .icon-font.delete[data-v-36ddbe63],
852
+ .icon-font.save[data-v-36ddbe63] {
853
+ display: none;
854
+ }
855
+ .editable .icon-font.delete[data-v-36ddbe63],
856
+ .editable .icon-font.save[data-v-36ddbe63] {
857
+ display: block;
858
+ }
859
+
860
+ /* .editor-wrapper { */
861
+ /* margin-inline-start: 0.5rem; */
862
+ /* margin-top: 0.05em; */
863
+ /* margin-bottom: 0.05em; */
864
+ /* height: 100%; */
865
+ /* padding: 0.05em 0.5em; */
866
+ /* overflow: hidden; */
867
+ /* border-radius: 10px; */
868
+ /* } */
869
+ .editable .editor-wrapper[data-v-36ddbe63] {
870
+ background-color: var(--bgl-bg);
871
+ }
872
+ .new-comment[data-v-36ddbe63] {
873
+ display: flex;
874
+ align-items: flex-end;
875
+ position: relative;
876
+ z-index: 2;
877
+ gap: 0.5rem;
878
+ font-size: 12px;
879
+ color: var(--input-color);
880
+ line-height: 1.6;
881
+ }
882
+ .comment-input[data-v-36ddbe63] {
883
+ max-height: 100px;
884
+ overflow: auto;
885
+ flex-grow: 1;
886
+ border-radius: var(--btn-border-radius);
887
+ }
888
+
889
+ .modal-title[data-v-25f14815] {
890
+ margin-top: 0.5rem;
891
+ }
892
+ @media screen and (max-width: 910px) {
893
+ .modal-title[data-v-25f14815] {
894
+ margin-top: 1rem;
895
+ }
896
+ }
897
+
898
+ .data[data-v-eadd1885] {
899
+ border: 1.1px solid var(--border-color);
900
+ padding: 20px;
901
+ border-radius: var(--input-border-radius);
902
+ }
903
+ .data-row[data-v-eadd1885] {
904
+ display: flex;
905
+ justify-content: space-between;
906
+ padding-bottom: 0.5rem;
907
+ margin-bottom: 0.5rem;
908
+ opacity: 0.8;
909
+ border-bottom: 1px solid var(--border-color);
910
+ }
911
+ .data-link[data-v-eadd1885] {
912
+ display: block;
913
+ font-size: var(--input-font-size);
914
+ margin-bottom: 2px;
915
+ line-height: 1.3;
916
+ color: var(--input-color);
917
+ }
918
+
919
+ .del-top {
920
+ transform: translateY(-2.6rem);
921
+ }
922
+
923
+ .list-arrows[data-v-31ab7183] {
924
+ opacity: 0;
925
+ }
926
+ .list-arrows .icon-font[data-v-31ab7183] {
927
+ transition: all ease-in-out 0.2s;
928
+ }
929
+ .list-arrows.sorted[data-v-31ab7183] {
930
+ opacity: 1;
931
+ }
932
+ .col img[data-v-31ab7183] {
933
+ height: 35px;
934
+ margin-top: -14px;
935
+ margin-bottom: -14px;
936
+ border-radius: 5px;
937
+ }
938
+ .list-arrows.sorted .desc[data-v-31ab7183] {
939
+ transform: rotate(180deg);
940
+ }
941
+ table[data-v-31ab7183] {
942
+ border-collapse: separate;
943
+ border-spacing: 0 15px;
944
+ border-collapse: collapse;
945
+ }
946
+ th[data-v-31ab7183] {
947
+ font-weight: 400;
948
+ }
949
+ .row[data-v-31ab7183] {
950
+ border-bottom: 1px solid var(--border-color);
951
+ cursor: pointer;
952
+ }
953
+ .row.first-row[data-v-31ab7183] {
954
+ font-size: 0.8rem;
955
+ color: var(--bgl-black-tint);
956
+ position: sticky;
957
+ top: 0;
958
+ z-index: 2;
959
+ background: var(--bgl-white);
960
+ height: 50px;
961
+ vertical-align: bottom;
962
+ }
963
+ .row.first-row[data-v-31ab7183]::after {
964
+ content: '';
965
+ border-bottom: 1px solid var(--border-color);
966
+ position: absolute;
967
+ left: 0;
968
+ right: 0;
969
+ bottom: -1px;
970
+ }
971
+ .first-row .col[data-v-31ab7183] {
972
+ cursor: pointer;
973
+ background: var(--bgl-white);
974
+ }
975
+ .col[data-v-31ab7183] {
976
+ white-space: nowrap;
977
+ padding: 14px;
978
+ transition: var(--bgl-transition);
979
+ line-height: 1;
980
+ padding-left: 1rem;
981
+ padding-right: 1rem;
982
+ align-items: center;
983
+ }
984
+ .col>div[data-v-31ab7183] {
985
+ display: flex;
986
+ gap: 0.5rem;
987
+ }
988
+ .max-col-width[data-v-31ab7183] {
989
+ max-width: 30vw;
990
+ overflow: hidden;
991
+ text-overflow: ellipsis;
992
+ }
993
+ .col.check .icon-font[data-v-31ab7183] {
994
+ border-radius: 100%;
995
+ background: var(--bgl-blue-20);
996
+ color: var(--bgl-blue);
997
+ width: 20px;
998
+ height: 20px;
999
+ display: flex;
1000
+ align-items: center;
1001
+ justify-content: center;
1002
+ margin-top: -2px;
1003
+ }
1004
+ .rows[data-v-31ab7183] {
1005
+ font-size: 0.8125em;
1006
+ }
1007
+ .table-list[data-v-31ab7183] {
1008
+ height: 100%;
1009
+ position: relative;
1010
+ padding-left: 0 !important;
1011
+ padding-right: 0 !important;
1012
+ overflow: auto;
1013
+ }
1014
+ .BagelTable .table-list[data-v-31ab7183] {
1015
+ overflow: unset;
1016
+ }
1017
+ .row-item[data-v-31ab7183] {
1018
+ height: 50px;
1019
+ transition: all 200ms ease;
1020
+ }
1021
+ .row-item[data-v-31ab7183]:hover {
1022
+ background: var(--bgl-gray-light);
1023
+ }
1024
+ .infinite-wrapper[data-v-31ab7183] {
1025
+ overflow-y: auto;
1026
+ width: 100%;
1027
+ }
1028
+
1029
+ .primary-checkbox input[data-v-b85dbec6] {
1030
+ display: none;
1031
+ }
1032
+ .primary-checkbox[data-v-b85dbec6] {
1033
+ margin-top: 8px;
1034
+ }
1035
+ .primary-checkbox span[data-v-b85dbec6] {
1036
+ display: flex;
1037
+ padding-top: 1px;
1038
+ align-items: center;
1039
+ justify-content: center;
1040
+ color: var(--bgl-white);
1041
+ border-radius: 100%;
1042
+ width: 26px;
1043
+ height: 26px;
1044
+ background: white;
1045
+ border: 4px solid var(--bgl-gray-light);
1046
+ cursor: pointer;
1047
+ transition: var(--bgl-transition);
1048
+ user-select: none;
1049
+ }
1050
+ .primary-checkbox span[data-v-b85dbec6]:hover {
1051
+ filter: brightness(90%);
1052
+ }
1053
+ .primary-checkbox span[data-v-b85dbec6]:active {
1054
+ filter: brightness(80%);
1055
+ }
1056
+ .primary-checkbox input:checked+span[data-v-b85dbec6] {
1057
+ background: var(--bgl-blue);
1058
+ border: none;
1059
+ }
1060
+
1061
+ .bglform-contact[data-v-3ab41ef8] {
1062
+ display: flex;
1063
+ align-items: center;
1064
+ gap: 0.5rem;
1065
+ max-width: 700px;
1066
+ position: relative;
1067
+ }
1068
+ .bglform-contact-label[data-v-3ab41ef8] {
1069
+ flex-basis: 140px;
1070
+ }
1071
+ .bglform-contact input[type='checkbox'][data-v-3ab41ef8] {
1072
+ width: 30px;
1073
+ min-width: 0;
1074
+ }
1075
+ .light.thin.btn-txt.btn[data-v-3ab41ef8] {
1076
+ padding-left: calc(var(--btn-padding) / 4);
1077
+ padding-right: calc(var(--btn-padding) / 4);
1078
+ }
1079
+ .add-btn[data-v-3ab41ef8] {
1080
+ display: flex;
1081
+ gap: 0.5rem;
1082
+ align-items: center;
1083
+ margin-inline-start: 1rem;
1084
+ }
1085
+ .add-btn[data-v-3ab41ef8]:active {
1086
+ background: none !important;
1087
+ }
1088
+ .add-btn[data-v-3ab41ef8]::before {
1089
+ content: '+';
1090
+ font-size: 10px;
1091
+ background: var(--bgl-blue-light);
1092
+ border-radius: 100%;
1093
+ height: 14px;
1094
+ width: 14px;
1095
+ display: flex;
1096
+ align-items: center;
1097
+ justify-content: center;
1098
+ color: var(--bgl-blue);
1099
+ }
1100
+ .add-btn[data-v-3ab41ef8]:hover::before {
1101
+ background: var(--bgl-blue);
1102
+ color: var(--bgl-white);
1103
+ }
1104
+ @media screen and (max-width: 910px) {
1105
+ .bglform-contact-label[data-v-3ab41ef8] {
1106
+ min-width: 0;
1107
+ }
1108
+ }
1109
+
1110
+ .bglform-contact-confirm {
1111
+ position: absolute;
1112
+ background: rgba(255, 255, 255, 0.5);
1113
+ height: 100%;
1114
+ width: 100%;
1115
+ display: flex;
1116
+ align-items: center;
1117
+ justify-content: center;
1118
+ gap: 0.5rem;
1119
+ backdrop-filter: blur(1px);
1120
+ }
1121
+
1122
+ .bglform-contact[data-v-c08347ee] {
1123
+ display: flex;
1124
+ gap: 0.5rem;
1125
+ max-width: 700px;
1126
+ position: relative;
1127
+ }
1128
+ .bglform-contact-label[data-v-c08347ee] {
1129
+ flex-basis: 140px;
1130
+ }
1131
+ .bglform-contact-address[data-v-c08347ee] {
1132
+ display: flex;
1133
+ flex-direction: column;
1134
+ gap: 0.5rem;
1135
+ }
1136
+ .bglform-contact input[type='checkbox'][data-v-c08347ee] {
1137
+ width: 30px;
1138
+ min-width: 0;
1139
+ }
1140
+ .light.thin.btn-txt.btn[data-v-c08347ee] {
1141
+ padding-left: calc(var(--btn-padding) / 4);
1142
+ padding-right: calc(var(--btn-padding) / 4);
1143
+ }
1144
+ .bglform-address-del[data-v-c08347ee] {
1145
+ margin-top: 6px;
1146
+ }
1147
+ .bglform-contact-address-flex[data-v-c08347ee] {
1148
+ display: flex;
1149
+ gap: 0.5rem;
1150
+ }
1151
+ .add-btn[data-v-c08347ee] {
1152
+ display: flex;
1153
+ gap: 0.5rem;
1154
+ align-items: center;
1155
+ margin-inline-start: 1rem;
1156
+ }
1157
+ .add-btn[data-v-c08347ee]:active {
1158
+ background: none !important;
1159
+ }
1160
+ .add-btn[data-v-c08347ee]::before {
1161
+ content: '+';
1162
+ font-size: 10px;
1163
+ background: var(--bgl-blue-light);
1164
+ border-radius: 100%;
1165
+ height: 14px;
1166
+ width: 14px;
1167
+ display: flex;
1168
+ align-items: center;
1169
+ justify-content: center;
1170
+ color: var(--bgl-blue);
1171
+ }
1172
+ .add-btn[data-v-c08347ee]:hover::before {
1173
+ background: var(--bgl-blue);
1174
+ color: var(--bgl-white);
1175
+ }
1176
+ @media screen and (max-width: 910px) {
1177
+ .bglform-contact-address-flex[data-v-c08347ee] {
1178
+ flex-wrap: wrap;
1179
+ }
1180
+ .bglform-contact-label[data-v-c08347ee] {
1181
+ min-width: 0;
1182
+ }
1183
+ }
1184
+
1185
+ .bglform-contact-confirm {
1186
+ position: absolute;
1187
+ background: rgba(255, 255, 255, 0.5);
1188
+ height: 100%;
1189
+ width: 100%;
1190
+ display: flex;
1191
+ align-items: center;
1192
+ justify-content: center;
1193
+ gap: 0.5rem;
1194
+ backdrop-filter: blur(1px);
1195
+ }
1196
+
1197
+ .bglform-contact[data-v-4602df64] {
1198
+ display: flex;
1199
+ gap: 0.5rem;
1200
+ max-width: 700px;
1201
+ position: relative;
1202
+ }
1203
+ .bglform-contact-label[data-v-4602df64] {
1204
+ flex-basis: 140px;
1205
+ }
1206
+ .bglform-contact-address[data-v-4602df64] {
1207
+ display: flex;
1208
+ flex-direction: column;
1209
+ gap: 0.5rem;
1210
+ }
1211
+ .bglform-contact input[type='checkbox'][data-v-4602df64] {
1212
+ width: 30px;
1213
+ min-width: 0;
1214
+ }
1215
+ .light.thin.btn-txt.btn[data-v-4602df64] {
1216
+ padding-left: calc(var(--btn-padding) / 4);
1217
+ padding-right: calc(var(--btn-padding) / 4);
1218
+ }
1219
+ .bglform-address-del[data-v-4602df64] {
1220
+ margin-top: 6px;
1221
+ }
1222
+ .bglform-contact-address-flex[data-v-4602df64] {
1223
+ display: flex;
1224
+ gap: 0.5rem;
1225
+ }
1226
+ .add-btn[data-v-4602df64] {
1227
+ display: flex;
1228
+ gap: 0.5rem;
1229
+ align-items: center;
1230
+ margin-inline-start: 1rem;
1231
+ }
1232
+ .add-btn[data-v-4602df64]:active {
1233
+ background: none !important;
1234
+ }
1235
+ .add-btn[data-v-4602df64]::before {
1236
+ content: '+';
1237
+ font-size: 10px;
1238
+ background: var(--bgl-blue-light);
1239
+ border-radius: 100%;
1240
+ height: 14px;
1241
+ width: 14px;
1242
+ display: flex;
1243
+ align-items: center;
1244
+ justify-content: center;
1245
+ color: var(--bgl-blue);
1246
+ }
1247
+ .add-btn[data-v-4602df64]:hover::before {
1248
+ background: var(--bgl-blue);
1249
+ color: var(--bgl-white);
1250
+ }
1251
+ @media screen and (max-width: 910px) {
1252
+ .bglform-contact-address-flex[data-v-4602df64] {
1253
+ flex-wrap: wrap;
1254
+ }
1255
+ .bglform-contact-label[data-v-4602df64] {
1256
+ min-width: 0;
1257
+ }
1258
+ }
1259
+
1260
+ .misc-wrap[data-v-6bad8515] {
1261
+ display: flex;
1262
+ gap: 1rem;
1263
+ border-top: 1px solid var(--border-color);
1264
+ padding-top: 0.5rem;
1265
+ margin-bottom: auto;
1266
+ }
1267
+ .gray.thin.btn-txt.btn.add-btn[data-v-6bad8515] {
1268
+ display: flex;
1269
+ gap: 0.5rem;
1270
+ align-items: center;
1271
+ padding-left: 0;
1272
+ padding-right: 0;
1273
+ transition: var(--bgl-transition);
1274
+ }
1275
+ .add-btn[data-v-6bad8515]:active {
1276
+ background: none !important;
1277
+ }
1278
+ .add-btn[data-v-6bad8515]::before {
1279
+ content: '+';
1280
+ font-size: 10px;
1281
+ background: var(--bgl-gray-light);
1282
+ border-radius: 100%;
1283
+ height: 14px;
1284
+ width: 14px;
1285
+ display: flex;
1286
+ align-items: center;
1287
+ justify-content: center;
1288
+ color: var(--bgl-gray);
1289
+ }
1290
+ .add-btn[data-v-6bad8515]:hover::before {
1291
+ background: var(--bgl-blue);
1292
+ color: var(--bgl-white);
1293
+ }
1294
+
1295
+ .checkbox-label {
1296
+ display: flex;
1297
+ gap: 0.5rem;
1298
+ flex-direction: row-reverse;
1299
+ justify-content: flex-end;
1300
+ align-items: center;
1301
+ cursor: pointer;
1302
+ }
1303
+
1304
+ .no-edit[data-v-d12598ff] {
1305
+ pointer-events: none;
1306
+ }
1307
+ .radio-wrap p[data-v-d12598ff] {
1308
+ display: inline-block;
1309
+ color: var(--input-bg);
1310
+ font-size: var(--input-font-size);
1311
+ margin-inline-end: 10px;
1312
+ }
1313
+ .radio-wrap label[data-v-d12598ff] {
1314
+ padding: 3px 5px;
1315
+ display: inline-block;
1316
+ border-radius: var(--input-border-radius);
1317
+ font-size: var(--input-font-size);
1318
+ background: var(--input-bg);
1319
+ color: var(--bgl-black);
1320
+ text-align: center;
1321
+ margin: 8px 5px;
1322
+ cursor: pointer;
1323
+ user-select: none;
1324
+ }
1325
+ .bagel-input .radio-wrap label[data-v-d12598ff]::after {
1326
+ background: transparent;
1327
+ }
1328
+ .radio-wrap input[data-v-d12598ff] {
1329
+ display: none;
1330
+ }
1331
+ .radio-wrap input:checked:checked+label[data-v-d12598ff] {
1332
+ background: var(--bgl-blue);
1333
+ color: var(--bgl-white);
1334
+ }
1335
+ .checkbox[data-v-d12598ff] {
1336
+ position: relative;
1337
+ }
1338
+ .switch[data-v-d12598ff] {
1339
+ position: relative;
1340
+ display: inline-block;
1341
+ height: calc(var(--input-height) / 2);
1342
+ width: var(--input-height);
1343
+ border-radius: var(--input-height);
1344
+ }
1345
+ .switch input[data-v-d12598ff] {
1346
+ opacity: 0;
1347
+ width: 0;
1348
+ height: 0;
1349
+ }
1350
+ .bagel-input.checkbox.check[data-v-d12598ff] {
1351
+ margin: 0;
1352
+ }
1353
+ .bagel-input.checkbox.check .switch[data-v-d12598ff] {
1354
+ width: calc(var(--input-height) / 2);
1355
+ height: calc(var(--input-height) / 2);
1356
+ transition: 0.2s;
1357
+ }
1358
+ .bagel-input.checkbox.check .slider[data-v-d12598ff]:before {
1359
+ position: absolute;
1360
+ font-family: 'Material Symbols Outlined', serif;
1361
+ content: '';
1362
+ color: var(--bgl-white);
1363
+ background: transparent;
1364
+ display: flex;
1365
+ align-items: center;
1366
+ justify-content: center;
1367
+ }
1368
+ .bagel-input.checkbox.check input:checked+.slider[data-v-d12598ff]:before {
1369
+ transform: none;
1370
+ content: 'check';
1371
+ }
1372
+ .slider[data-v-d12598ff] {
1373
+ position: absolute;
1374
+ cursor: pointer;
1375
+ top: 0;
1376
+ left: 0;
1377
+ right: 0;
1378
+ bottom: 0;
1379
+ background: var(--input-bg);
1380
+ -webkit-transition: 0.4s;
1381
+ transition: 0.4s;
1382
+ border-radius: calc(var(--input-height) / 2);
1383
+ box-shadow: inset 0 0 10px #00000020;
1384
+ }
1385
+ .slider[data-v-d12598ff]:before {
1386
+ position: absolute;
1387
+ content: '';
1388
+ height: calc(var(--input-height) / 2 - 4px);
1389
+ width: calc(var(--input-height) / 2 - 4px);
1390
+ left: 2px;
1391
+ bottom: 2px;
1392
+ border-radius: 50%;
1393
+ background: var(--bgl-white);
1394
+ -webkit-transition: 0.4s;
1395
+ transition: 0.4s;
1396
+ }
1397
+ input:checked+.slider[data-v-d12598ff] {
1398
+ background: var(--bgl-blue);
1399
+ }
1400
+ input:checked+.slider[data-v-d12598ff]:before {
1401
+ transform: translateX(calc(var(--input-height) / 2));
1402
+ }
1403
+
1404
+ .uploading-wrap {
1405
+ width: 100%;
1406
+ padding-right: 5px;
1407
+ padding-left: 5px;
1408
+ }
1409
+
1410
+ /*
1411
+ .uploading {}
1412
+ */
1413
+ .img-label .icon-font {
1414
+ font-size: 30px;
1415
+ margin-bottom: 10px;
1416
+ }
1417
+ .img-label span {
1418
+ text-decoration: underline;
1419
+ }
1420
+ .file-input {
1421
+ display: none;
1422
+ }
1423
+ .files-wrapper {
1424
+ flex-direction: column;
1425
+ border-radius: 10px;
1426
+ /*overflow: hidden;*/
1427
+ min-height: calc(var(--input-height) * 1.5);
1428
+
1429
+ font-size: var(--input-font-size);
1430
+ }
1431
+ .drop-zone {
1432
+ background-color: var(--bgl-bg);
1433
+ height: 100%;
1434
+ width: 100%;
1435
+ flex-grow: 1;
1436
+ position: relative;
1437
+ overflow: hidden;
1438
+ cursor: pointer;
1439
+ transition: var(--bgl-transition);
1440
+ outline: dashed 1px var(--border-color);
1441
+ border-radius: 10px;
1442
+ padding: 1px;
1443
+ display: flex;
1444
+ flex-direction: column;
1445
+ align-items: center;
1446
+ justify-content: center;
1447
+ color: var(--input-color);
1448
+ }
1449
+ .drop-zone:hover {
1450
+ color: var(--bgl-blue);
1451
+ outline: dashed 1px var(--bgl-blue-tint);
1452
+ }
1453
+ .drop-circle {
1454
+ pointer-events: none;
1455
+ position: absolute;
1456
+ width: 100px;
1457
+ height: 100px;
1458
+ border-radius: 50%;
1459
+ background-color: var(--bgl-blue-tint);
1460
+ display: flex;
1461
+ transform: translate(-50%, -50%) scale(1);
1462
+ transform-origin: left top;
1463
+ }
1464
+ .load-file-bar {
1465
+ display: flex;
1466
+ align-items: center;
1467
+ justify-content: space-between;
1468
+ background: var(--bgl-white);
1469
+ border-radius: var(--btn-border-radius);
1470
+ width: 100%;
1471
+ color: var(--input-color);
1472
+ height: var(--btn-height);
1473
+ padding: 0.5rem;
1474
+ height: 46px;
1475
+ box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
1476
+ white-space: nowrap;
1477
+ }
1478
+ .load-file-bar p {
1479
+ width: calc(100% - 40px);
1480
+ overflow: hidden;
1481
+ text-overflow: ellipsis;
1482
+ }
1483
+ .load-file-bar span {
1484
+ font-size: 10px;
1485
+ }
1486
+ .pie {
1487
+ width: 30px;
1488
+ height: 30px;
1489
+ position: relative;
1490
+ display: flex;
1491
+ align-items: center;
1492
+ justify-content: center;
1493
+ }
1494
+ .pie:before {
1495
+ content: '';
1496
+ position: absolute;
1497
+ border-radius: 50%;
1498
+ inset: 0;
1499
+ transition: all 0.2s ease-in-out;
1500
+ background: conic-gradient(var(--bgl-blue) calc(var(--p) * 1%), #0000 0);
1501
+ -webkit-mask: radial-gradient(farthest-side,
1502
+ #0000 calc(99% - var(--b)),
1503
+ #000 calc(100% - var(--b)));
1504
+ mask: radial-gradient(farthest-side,
1505
+ #0000 calc(99% - var(--b)),
1506
+ #000 calc(100% - var(--b)));
1507
+ }
1508
+ .pie .success {
1509
+ transform: scale(0);
1510
+ opacity: 0;
1511
+ transition: all 0.3s ease-in-out;
1512
+ }
1513
+ .pie .progress {
1514
+ position: absolute;
1515
+ font-size: 10px;
1516
+ }
1517
+ .pie.complete .progress {
1518
+ display: none;
1519
+ }
1520
+ .pie.complete .success {
1521
+ transform: scale(1.3);
1522
+ opacity: 1;
1523
+ }
1524
+ .pie.complete:before {
1525
+ background: conic-gradient(var(--bgl-green) calc(var(--p) * 1%), #0000 0);
1526
+ }
1527
+ .pie.complete {
1528
+ color: var(--bgl-green);
1529
+ }
1530
+
1531
+ .pop-enter-active {
1532
+ transition: scale 0.2s cubic-bezier(0.55, 0, 0.1, 1);
1533
+ }
1534
+ .pop-leave-active {
1535
+ transition: scale 0.2s cubic-bezier(0.55, 0, 0.1, 1);
1536
+ }
1537
+ .pop-enter-from,
1538
+ .pop-leave-to {
1539
+ scale: 0;
1540
+ }
1541
+ .delete-btn {
1542
+ margin-inline-end: -30px;
1543
+ opacity: 0;
1544
+ margin-inline-start: 10px;
1545
+ }
1546
+ .uploading-wrap:hover .delete-btn {
1547
+ opacity: 1;
1548
+ margin-inline-end: 0;
1549
+ }
1550
+
1551
+ .person-card {
1552
+ border: 1.1px solid var(--border-color);
1553
+ /* background: var(--input-bg); */
1554
+ border-radius: var(--card-border-radius);
1555
+ padding: 1rem;
1556
+ margin-bottom: 0.5rem;
1557
+ font-size: 1rem;
1558
+ position: relative;
1559
+ }
1560
+ .person-card p {
1561
+ margin: 0;
1562
+ }
1563
+ .person-card-details {
1564
+ font-size: 14px;
1565
+ margin-bottom: 2px;
1566
+ line-height: 1.3;
1567
+ display: flex;
1568
+ }
1569
+ .person-card-details p {
1570
+ color: var(--input-color);
1571
+ opacity: 0.6;
1572
+ }
1573
+ .person-card-details.badge p {
1574
+ opacity: 1;
1575
+ }
1576
+ .person-card-details p:nth-child(2) {
1577
+ opacity: 1;
1578
+ padding-inline-end: 0.5rem;
1579
+ }
1580
+ .person-card-details .icon-font {
1581
+ color: var(--bgl-blue);
1582
+ padding-inline-end: 0.25rem;
1583
+ }
1584
+ .person-card-edit {
1585
+ position: absolute;
1586
+ inset-inline-end: 1rem;
1587
+ }
1588
+ .person-card-details-wrap {
1589
+ display: flex;
1590
+ gap: 0.5rem;
1591
+ flex-wrap: wrap;
1592
+ }
1593
+ .person-card-icon {
1594
+ background: var(--bgl-gray);
1595
+ height: 30px;
1596
+ width: 30px;
1597
+ border-radius: 100%;
1598
+ text-transform: uppercase;
1599
+ display: flex;
1600
+ justify-content: center;
1601
+ align-items: center;
1602
+ color: white;
1603
+ font-size: 12px;
1604
+ }
1605
+ .person-card-icon-wrap {
1606
+ display: flex;
1607
+ gap: 0.5rem;
1608
+ align-items: center;
1609
+ padding-bottom: 0.75rem;
1610
+ }
1611
+ @media screen and (max-width: 910px) {
1612
+ .person-card-icon-wrap {
1613
+ padding-bottom: 0.5rem;
1614
+ }
1615
+ .person-card {
1616
+ padding: 0.75rem;
1617
+ position: relative;
1618
+ }
1619
+ .person-card-edit {
1620
+ /* position: relative; */
1621
+ inset-inline-end: 0.5rem;
1622
+ margin-bottom: 1rem;
1623
+ justify-content: flex-end;
1624
+ }
1625
+ .person-card-name {
1626
+ max-width: calc(100% - 170px);
1627
+ }
1628
+ }
1629
+
1630
+ .no-edit[data-v-6a5478c3] {
1631
+ pointer-events: none;
1632
+ }
1633
+ .radio-wrap p[data-v-6a5478c3] {
1634
+ display: inline-block;
1635
+ color: var(--input-bg);
1636
+ font-size: var(--input-font-size);
1637
+ margin-inline-end: 10px;
1638
+ }
1639
+ .radio-wrap label[data-v-6a5478c3] {
1640
+ padding: 3px 5px;
1641
+ display: inline-block;
1642
+ border-radius: var(--input-border-radius);
1643
+ font-size: var(--input-font-size);
1644
+ background: var(--input-bg);
1645
+ color: var(--bgl-black);
1646
+ text-align: center;
1647
+ margin: 8px 5px;
1648
+ cursor: pointer;
1649
+ user-select: none;
1650
+ }
1651
+ .bagel-input .radio-wrap label[data-v-6a5478c3]::after {
1652
+ background: transparent;
1653
+ }
1654
+ .radio-wrap input[data-v-6a5478c3] {
1655
+ display: none;
1656
+ }
1657
+ .radio-wrap input:checked:checked+label[data-v-6a5478c3] {
1658
+ background: var(--bgl-blue);
1659
+ color: var(--bgl-white);
1660
+ }
1661
+ .checkbox[data-v-6a5478c3] {
1662
+ position: relative;
1663
+ }
1664
+ .switch[data-v-6a5478c3] {
1665
+ position: relative;
1666
+ display: inline-block;
1667
+ height: calc(var(--input-height) / 2);
1668
+ width: var(--input-height);
1669
+ border-radius: var(--input-height);
1670
+ }
1671
+ .switch input[data-v-6a5478c3] {
1672
+ opacity: 0;
1673
+ width: 0;
1674
+ height: 0;
1675
+ }
1676
+ .slider[data-v-6a5478c3] {
1677
+ position: absolute;
1678
+ cursor: pointer;
1679
+ top: 0;
1680
+ left: 0;
1681
+ right: 0;
1682
+ bottom: 0;
1683
+ background: var(--input-bg);
1684
+ -webkit-transition: 0.4s;
1685
+ transition: 0.4s;
1686
+ border-radius: calc(var(--input-height) / 2);
1687
+ box-shadow: inset 0 0 10px #00000020;
1688
+ }
1689
+ .slider[data-v-6a5478c3]:before {
1690
+ position: absolute;
1691
+ content: '';
1692
+ height: calc(var(--input-height) / 2 - 4px);
1693
+ width: calc(var(--input-height) / 2 - 4px);
1694
+ left: 2px;
1695
+ bottom: 2px;
1696
+ border-radius: 50%;
1697
+ background: var(--bgl-white);
1698
+ -webkit-transition: 0.4s;
1699
+ transition: 0.4s;
1700
+ }
1701
+ input:checked+.slider[data-v-6a5478c3] {
1702
+ background: var(--bgl-blue);
1703
+ }
1704
+ input:checked+.slider[data-v-6a5478c3]:before {
1705
+ transform: translateX(calc(var(--input-height) / 2));
1706
+ }
1707
+
1708
+ .currency[data-v-4cb01bfc] {
1709
+ font-size: calc(var(--input-font-size) * 1.4);
1710
+ margin-inline-start: -50px;
1711
+ line-height: 0px;
1712
+ }
1713
+
1714
+ /*
1715
+ .date-picker {
1716
+ padding-inline-start: 10px;
1717
+ }
1718
+ */
1719
+
1720
+ input[type='email'][data-v-ed81a514] {
1721
+ direction: ltr;
1722
+ }
1723
+ [dir='rtl'] input[type='email'][data-v-ed81a514] {
1724
+ text-align: end;
1725
+ }
1726
+
1727
+ .bagel-input textarea[data-v-1fc4f739] {
1728
+ font-family: monospace;
1729
+ }
1730
+ [dir='rtl'] .bagel-input textarea[data-v-1fc4f739] {
1731
+ direction: ltr;
1732
+ }
1733
+
1734
+ .custom-select[data-v-81840a60] {
1735
+ position: relative;
1736
+ font-size: var(--input-font-size);
1737
+ }
1738
+ .custom-select .input[data-v-81840a60] {
1739
+ width: 100%;
1740
+ cursor: pointer;
1741
+ background: var(--input-bg);
1742
+ min-height: var(--input-height);
1743
+ border: none;
1744
+ border-radius: var(--input-border-radius);
1745
+ color: var(--input-color);
1746
+ position: relative;
1747
+ display: flex;
1748
+ flex-direction: column;
1749
+ text-align: start;
1750
+ margin-inline-end: 20px;
1751
+ justify-content: center;
1752
+ }
1753
+ .custom-select .input[data-v-81840a60]:after {
1754
+ content: 'keyboard_arrow_down';
1755
+ font-family: 'Material Symbols Outlined', serif;
1756
+ position: absolute;
1757
+ top: calc(var(--input-height) / 2 - 10px);
1758
+ font-size: calc(var(--input-font-size) * 1.5);
1759
+ right: calc(var(--input-height) / 4);
1760
+ height: 100%;
1761
+ }
1762
+ .option-label[data-v-81840a60] {
1763
+ font-size: var(--input-font-size);
1764
+ /*color: var(--input-color);*/
1765
+ }
1766
+ .option-description[data-v-81840a60] {
1767
+ font-size: var(--input-font-size);
1768
+ color: var(--input-color);
1769
+ }
1770
+ [dir='rtl'] .custom-select .input[data-v-81840a60]:after {
1771
+ right: unset;
1772
+ left: calc(var(--input-font-size) / 2);
1773
+ }
1774
+
1775
+ /*[dir='rtl'] .custom-select-drop {*/
1776
+ /* right: v-bind(left);*/
1777
+ /* left: unset;*/
1778
+ /*}*/
1779
+ [dir='rtl'] .custom-select-drop[data-v-81840a60] {
1780
+ inset-inline-end: var(--6a2190dd);
1781
+ inset-inline-start: unset;
1782
+ }
1783
+ .custom-select-drop[data-v-81840a60] {
1784
+ position: fixed;
1785
+ cursor: pointer;
1786
+ inset-inline-start: var(--6a2190dd);
1787
+ top: var(--2c26b862);
1788
+ box-sizing: border-box;
1789
+ width: var(--4aa550a0);
1790
+ background: var(--bgl-white);
1791
+ box-shadow: 0 0 10px 0 var(--bgl-shadow);
1792
+ border-radius: 10px;
1793
+ z-index: 10000;
1794
+ overflow-y: auto;
1795
+ opacity: 0;
1796
+ pointer-events: none;
1797
+ max-height: 0;
1798
+ }
1799
+ .open-select.custom-select-drop[data-v-81840a60] {
1800
+ opacity: 1;
1801
+ max-height: 150px;
1802
+ pointer-events: all;
1803
+ }
1804
+ .custom-select-drop>*[data-v-81840a60] {
1805
+ padding: 0.5rem 0.75rem;
1806
+ }
1807
+ .custom-select-drop>*[data-v-81840a60]:hover {
1808
+ background: var(--bgl-blue-light);
1809
+ }
1810
+ .custom-select-drop>*[data-v-81840a60]:active {
1811
+ filter: var(--bgl-hover-filter);
1812
+ }
1813
+
1814
+ .password-input-wrap[data-v-eec3e237] {
1815
+ position: relative;
1816
+ }
1817
+ .password-icon[data-v-eec3e237] {
1818
+ position: absolute;
1819
+ top: calc(var(--input-height) / 2 - 10px);
1820
+ right: calc(var(--input-height) / 2 - 10px);
1821
+ cursor: pointer;
1822
+ transition: var(--bgl-transition);
1823
+ user-select: none;
1824
+ }
1825
+ .password-icon[data-v-eec3e237]:hover {
1826
+ filter: var(--bgl-hover-filter);
1827
+ color: var(--bgl-blue);
1828
+ }
1829
+ .password-icon[data-v-eec3e237]:active {
1830
+ filter: var(--bgl-active-filter);
1831
+ }
1832
+ [dir='rtl'] .password-icon[data-v-eec3e237] {
1833
+ left: calc(var(--input-height) / 2 - 10px);
1834
+ right: unset;
1835
+ }
1836
+
1837
+ .icon-font[data-v-c0d14aa1] {
1838
+ position: absolute;
1839
+ cursor: pointer;
1840
+ z-index: 2;
1841
+ color: var(--bgl-gray);
1842
+ inset-inline-end: 0.75rem;
1843
+ inset-block-start: calc(var(--input-height) / 2 + 3px);
1844
+ transition: var(--bgl-transition);
1845
+ user-select: none;
1846
+ border-radius: 100%;
1847
+ height: 24px;
1848
+ width: 24px;
1849
+ display: flex;
1850
+ align-items: center;
1851
+ justify-content: center;
1852
+ }
1853
+ .icon-font[data-v-c0d14aa1]:hover {
1854
+ background: var(--bgl-white);
1855
+ }
1856
+ .icon-font[data-v-c0d14aa1]:active {
1857
+ background: var(--bgl-white);
1858
+ filter: brightness(90%);
1859
+ }
1860
+
1861
+ .no-edit[data-v-92851182] {
1862
+ margin-bottom: 2px;
1863
+ }
1864
+
1865
+ .translate {
1866
+ cursor: pointer;
1867
+ position: relative;
1868
+ }
1869
+
1870
+ /*
1871
+ .translate:hover {
1872
+ color: var(--bgl-blue);
1873
+ }
1874
+ */
1875
+ .translate-globe {
1876
+ position: absolute;
1877
+ top: -5px;
1878
+ right: -5px;
1879
+ width: 10px;
1880
+ height: 10px;
1881
+ background-size: contain;
1882
+ /* background-image: url('@/assets/globe.svg'); */
1883
+ }
1884
+
1885
+ .custom-select[data-v-0b2eccce] {
1886
+ position: relative;
1887
+ font-size: var(--input-font-size);
1888
+ }
1889
+ .custom-select .input[data-v-0b2eccce] {
1890
+ width: 100%;
1891
+ cursor: pointer;
1892
+ background: var(--input-bg);
1893
+ min-height: var(--input-height);
1894
+ border: none;
1895
+ border-radius: var(--input-border-radius);
1896
+ color: var(--input-color);
1897
+ position: relative;
1898
+ display: flex;
1899
+ flex-direction: column;
1900
+ text-align: start;
1901
+ margin-inline-end: 20px;
1902
+ justify-content: center;
1903
+ margin-bottom: 2px;
1904
+ }
1905
+ .custom-select .input[data-v-0b2eccce]:after {
1906
+ content: 'keyboard_arrow_down';
1907
+ font-family: 'Material Symbols Outlined', serif;
1908
+ position: absolute;
1909
+ top: calc(var(--input-height) / 2 - 10px);
1910
+ font-size: calc(var(--input-font-size) * 1.5);
1911
+ right: calc(var(--input-height) / 4);
1912
+ height: 100%;
1913
+ }
1914
+ [dir='rtl'] .custom-select .input[data-v-0b2eccce]:after {
1915
+ right: unset;
1916
+ left: calc(var(--input-font-size) / 2);
1917
+ }
1918
+ [dir='rtl'] .custom-select-drop[data-v-0b2eccce] {
1919
+ inset-inline-end: var(--81cee438);
1920
+ inset-inline-start: unset;
1921
+ }
1922
+ .custom-select-drop[data-v-0b2eccce] {
1923
+ position: fixed;
1924
+
1925
+ cursor: pointer;
1926
+ font-size: 12px;
1927
+ top: var(--293d7f96);
1928
+ inset-inline-start: var(--81cee438);
1929
+ box-sizing: border-box;
1930
+ min-width: 220px;
1931
+ width: var(--2495fb89);
1932
+ background: var(--bgl-white);
1933
+ box-shadow: 0 0 10px 0 var(--bgl-shadow);
1934
+ border-radius: 10px;
1935
+ z-index: 10000;
1936
+ overflow-y: auto;
1937
+ opacity: 0;
1938
+ pointer-events: none;
1939
+ max-height: 0;
1940
+ /*transition: var(--bgl-transition);*/
1941
+ }
1942
+ .open-select.custom-select-drop[data-v-0b2eccce] {
1943
+ opacity: 1;
1944
+ max-height: 150px;
1945
+ pointer-events: all;
1946
+ /*transition: var(--bgl-transition);*/
1947
+ }
1948
+ .custom-select-drop>*[data-v-0b2eccce] {
1949
+ /*transition: var(--bgl-transition); */
1950
+ padding: 0.5rem 0.75rem;
1951
+ }
1952
+ .custom-select-drop>*[data-v-0b2eccce]:hover {
1953
+ background: var(--bgl-blue-light);
1954
+ }
1955
+ .custom-select-drop>*[data-v-0b2eccce]:active {
1956
+ filter: var(--bgl-hover-filter);
1957
+ }
1958
+ .bagel-input label[data-v-0b2eccce] {
1959
+ margin-bottom: 0;
1960
+ }
1961
+
1962
+ .bagel-input[data-v-69a60381] {
1963
+ height: 100%;
1964
+ margin: 0;
1965
+ }
1966
+ .bagel-input textarea[data-v-69a60381] {
1967
+ height: 100%;
1968
+ resize: none;
1969
+ background: transparent;
1970
+ }
1971
+
1972
+ .table-side-scroll[data-v-c5cacca2] {
1973
+ overflow: auto;
1974
+ margin-inline-start: -1rem;
1975
+ padding-inline-start: 1rem;
1976
+ padding-bottom: 1rem;
1977
+ }
1978
+ .table-field-wrap[data-v-c5cacca2] {
1979
+ margin-bottom: -1rem;
1980
+ }
1981
+ .table-cell[data-v-c5cacca2] {
1982
+ border-inline-end: 1px solid var(--border-color);
1983
+ border-bottom: 1px solid var(--border-color);
1984
+ }
1985
+ .table-row[data-v-c5cacca2] {
1986
+ transition: var(--bgl-transition);
1987
+ position: relative;
1988
+ width: max-content;
1989
+ }
1990
+ .table-row[data-v-c5cacca2]:hover {
1991
+ background: var(--bgl-gray-light);
1992
+ }
1993
+ .table-reorder[data-v-c5cacca2] {
1994
+ opacity: 0;
1995
+ width: 2rem;
1996
+ text-align: center;
1997
+ position: absolute;
1998
+ margin-inline-start: -2rem;
1999
+ }
2000
+ .table-row:hover .table-reorder[data-v-c5cacca2] {
2001
+ opacity: 1;
2002
+ cursor: grab;
2003
+ }
2004
+ .table-reorder[data-v-c5cacca2]:active {
2005
+ opacity: 1;
2006
+ cursor: grab;
2007
+ }
2008
+ .btn.thin.btn-txt[data-v-c5cacca2] {
2009
+ margin-inline-start: -1rem;
2010
+ margin-top: 1rem;
2011
+ }
2012
+ .table-header[data-v-c5cacca2] {
2013
+ display: flex;
2014
+ width: max-content;
2015
+ }
2016
+ .header-col[data-v-c5cacca2] {
2017
+ min-width: calc(var(--input-height) * 3);
2018
+ font-size: 13px;
2019
+ color: var(--input-color);
2020
+ padding: 10px 0;
2021
+ border-bottom: 1px solid var(--border-color);
2022
+ }
2023
+ .table-cell[data-v-c5cacca2],
2024
+ .header-col[data-v-c5cacca2] {
2025
+ width: 160px;
2026
+ }
2027
+ .table-cell.check[data-v-c5cacca2],
2028
+ .header-col.check[data-v-c5cacca2] {
2029
+ width: 100px;
2030
+ }
2031
+ .table-cell.date[data-v-c5cacca2],
2032
+ .header-col.date[data-v-c5cacca2] {
2033
+ width: 140px;
2034
+ }
2035
+ .header-col.small-text[data-v-c5cacca2],
2036
+ .header-col.text[data-v-c5cacca2],
2037
+ .header-col.long-text[data-v-c5cacca2],
2038
+ .header-col.json[data-v-c5cacca2],
2039
+ .table-cell.small-text[data-v-c5cacca2],
2040
+ .table-cell.text[data-v-c5cacca2],
2041
+ .table-cell.long-text[data-v-c5cacca2],
2042
+ .table-cell.json[data-v-c5cacca2] {
2043
+ width: 240px;
2044
+ }
2045
+ .table-cell.small-text .bagel-input[data-v-c5cacca2],
2046
+ .table-cell.text .bagel-input[data-v-c5cacca2],
2047
+ .table-cell.long-text .bagel-input[data-v-c5cacca2],
2048
+ .table-cell.json .bagel-input[data-v-c5cacca2] {
2049
+ height: 40px;
2050
+ overflow: auto;
2051
+ }
2052
+ .table-action[data-v-c5cacca2] {
2053
+ text-align: center;
2054
+ position: sticky;
2055
+ opacity: 0;
2056
+ transition: var(--bgl-transition);
2057
+ inset-inline-end: 0;
2058
+ height: 100%;
2059
+ margin-top: -1px;
2060
+ background: var(--border-color);
2061
+ }
2062
+ .table-action>.icon-font[data-v-c5cacca2] {
2063
+ padding: 11.4px;
2064
+ cursor: pointer;
2065
+ transition: var(--bgl-transition);
2066
+ }
2067
+ .table-action:hover>.icon-font[data-v-c5cacca2] {
2068
+ background: var(--bgl-red);
2069
+ color: var(--bgl-white);
2070
+ }
2071
+ .table-action:active>.icon-font[data-v-c5cacca2] {
2072
+ filter: brightness(90%);
2073
+ }
2074
+ .table-row:hover .table-action[data-v-c5cacca2] {
2075
+ opacity: 1;
2076
+ }
2077
+
2078
+ .table-row .bagel-input input,
2079
+ .table-row .bagel-input textarea,
2080
+ .table-row .bagel-input .input {
2081
+ border-radius: 0;
2082
+ background: transparent;
2083
+ color: var(--bgl-black);
2084
+ }
2085
+ .table-row .bagel-input textarea {
2086
+ resize: none;
2087
+ min-height: 40px;
2088
+ overflow: auto;
2089
+ margin: 0px;
2090
+ padding: 0.64rem 0.7rem 0;
2091
+ }
2092
+ .table-row .bagel-input {
2093
+ margin: 0;
2094
+ }
2095
+ .table-row .bagel-input input:focus-visible,
2096
+ .table-row .bagel-input textarea:focus-visible,
2097
+ .table-row .bagel-input .input:focus-visible {
2098
+ background: var(--border-color);
2099
+ }
2100
+ .ghost {
2101
+ opacity: 0;
2102
+ background: #c8ebfb;
2103
+ }
2104
+ .sortable-chosen {
2105
+ cursor: grabbing !important;
2106
+ border-color: transparent;
2107
+ background: var(--bgl-white);
2108
+ border-radius: 10px;
2109
+ box-shadow: 0 0 10px 0 rgb(0 0 0 /20%);
2110
+ }