@g1cloud/bluesea 5.0.0-alpha.1

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 (69) hide show
  1. package/LICENSE +6 -0
  2. package/css/bluesea-base.scss +6 -0
  3. package/css/component.scss +164 -0
  4. package/css/font.scss +3 -0
  5. package/css/frame/default.scss +149 -0
  6. package/css/layout.scss +116 -0
  7. package/css/reset.scss +58 -0
  8. package/css/utility.scss +228 -0
  9. package/css/variable.scss +34 -0
  10. package/dist/bluesea.js +2465 -0
  11. package/dist/bluesea.umd.cjs +2466 -0
  12. package/dist/component/BSButton.vue.d.ts +15 -0
  13. package/dist/component/basic/BSPopup.vue.d.ts +9 -0
  14. package/dist/component/grid/BSDateRangeFilter.vue.d.ts +56 -0
  15. package/dist/component/grid/BSDateRangeFilters.vue.d.ts +23 -0
  16. package/dist/component/grid/BSGrid.vue.d.ts +80 -0
  17. package/dist/component/grid/BSGridCell.vue.d.ts +47 -0
  18. package/dist/component/grid/BSGridCheckboxCell.vue.d.ts +19 -0
  19. package/dist/component/grid/BSGridCheckboxHeaderCell.vue.d.ts +19 -0
  20. package/dist/component/grid/BSGridControl.vue.d.ts +53 -0
  21. package/dist/component/grid/BSGridHeaderCell.vue.d.ts +20 -0
  22. package/dist/component/grid/BSGridLookup.vue.d.ts +21 -0
  23. package/dist/component/grid/BSGridPageNavigation.vue.d.ts +51 -0
  24. package/dist/component/grid/BSTextFilter.vue.d.ts +41 -0
  25. package/dist/component/grid/DateFilterModel.d.ts +4 -0
  26. package/dist/component/grid/GridLib.d.ts +3 -0
  27. package/dist/component/grid/GridModel.d.ts +35 -0
  28. package/dist/component/input/BSCheckbox.vue.d.ts +50 -0
  29. package/dist/component/input/BSCheckboxGroup.vue.d.ts +43 -0
  30. package/dist/component/input/BSDateInput.vue.d.ts +56 -0
  31. package/dist/component/input/BSMultiSelect.vue.d.ts +43 -0
  32. package/dist/component/input/BSNumberInput.vue.d.ts +49 -0
  33. package/dist/component/input/BSRadioButton.vue.d.ts +61 -0
  34. package/dist/component/input/BSRadioButtonGroup.vue.d.ts +43 -0
  35. package/dist/component/input/BSSelect.vue.d.ts +43 -0
  36. package/dist/component/input/BSSelectModel.d.ts +0 -0
  37. package/dist/component/input/BSSelectPopup.vue.d.ts +55 -0
  38. package/dist/component/input/BSTextArea.vue.d.ts +49 -0
  39. package/dist/component/input/BSTextInput.vue.d.ts +49 -0
  40. package/dist/component/input/BSTreeSelect.vue.d.ts +43 -0
  41. package/dist/component/input/InternalDateInput.vue.d.ts +36 -0
  42. package/dist/component/layout/BSTabSheet.vue.d.ts +37 -0
  43. package/dist/component/layout/TabSheetModel.d.ts +5 -0
  44. package/dist/component/tree/BSTree.vue.d.ts +63 -0
  45. package/dist/component/tree/BSTreeRow.vue.d.ts +54 -0
  46. package/dist/component/tree/TreeLib.d.ts +5 -0
  47. package/dist/component/tree/TreeModel.d.ts +2 -0
  48. package/dist/directive/vClickOutside.d.ts +11 -0
  49. package/dist/frame/FrameModel.d.ts +23 -0
  50. package/dist/frame/default/DefaultBody.vue.d.ts +2 -0
  51. package/dist/frame/default/DefaultFrameModel.d.ts +35 -0
  52. package/dist/frame/default/DefaultHeader.vue.d.ts +2 -0
  53. package/dist/frame/default/HeaderLogo.vue.d.ts +2 -0
  54. package/dist/frame/default/HeaderTab.vue.d.ts +16 -0
  55. package/dist/frame/default/HeaderTabs.vue.d.ts +2 -0
  56. package/dist/frame/default/SidebarMenu.vue.d.ts +2 -0
  57. package/dist/frame/default/SidebarMenuItem.vue.d.ts +16 -0
  58. package/dist/frame/default/SidebarMenuLink.vue.d.ts +20 -0
  59. package/dist/index.d.ts +35 -0
  60. package/dist/model/CommonTypes.d.ts +8 -0
  61. package/dist/model/FilterModel.d.ts +69 -0
  62. package/dist/model/SearchModel.d.ts +16 -0
  63. package/dist/style.css +3665 -0
  64. package/dist/util/componentUtil.d.ts +7 -0
  65. package/dist/util/formatUtil.d.ts +61 -0
  66. package/dist/util/routeUtil.d.ts +2 -0
  67. package/dist/util/typeUtil.d.ts +18 -0
  68. package/dist/util/waitUtil.d.ts +19 -0
  69. package/package.json +48 -0
package/dist/style.css ADDED
@@ -0,0 +1,3665 @@
1
+ :root {
2
+ --font-size: 13px;
3
+ --font-size-input: 12px;
4
+ }
5
+ body {
6
+ font-size: var(--font-size);
7
+ }
8
+ input {
9
+ font-size: var(--font-size-input);
10
+ padding-top: 2px;
11
+ }
12
+ textarea {
13
+ font-size: var(--font-size-input);
14
+ }
15
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap, .bs-text-input {
16
+ display: inline-flex;
17
+ flex-direction: column;
18
+ align-items: flex-start;
19
+ justify-content: left;
20
+ }
21
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message, .bs-text-input .message {
22
+ margin-top: 4px;
23
+ font-size: 0.9em;
24
+ }
25
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base, .bs-text-input .input-area {
26
+ border: 1px solid #DBE0EF;
27
+ border-radius: 4px;
28
+ height: 28px;
29
+ display: inline-flex;
30
+ align-items: center;
31
+ justify-content: left;
32
+ }
33
+ .bs-input-base input, .bs-text-input .input-area input {
34
+ border: 0;
35
+ outline: 0;
36
+ align-self: stretch;
37
+ flex-grow: 1;
38
+ padding: 0 8px;
39
+ background-color: transparent;
40
+ }
41
+ .bs-input-base textarea, .bs-text-input .input-area textarea {
42
+ border: 0;
43
+ border-radius: 4px;
44
+ outline: 0;
45
+ align-self: stretch;
46
+ flex-grow: 1;
47
+ padding: 8px;
48
+ line-height: 1.4;
49
+ font-family: sans-serif;
50
+ }
51
+ .bs-input-base:has(:focus), .bs-text-input .input-area:has(:focus) {
52
+ border-color: #2A52BE;
53
+ }
54
+ .bs-checkbox-base {
55
+ display: inline-block;
56
+ color: #555;
57
+ }
58
+ .bs-checkbox-base input {
59
+ appearance: none;
60
+ margin: 0;
61
+ outline: 0;
62
+ }
63
+ .bs-checkbox-base input::before {
64
+ font-family: "Material Symbols Outlined", monospace;
65
+ font-size: 20px;
66
+ vertical-align: middle;
67
+ cursor: pointer;
68
+ color: #555;
69
+ }
70
+ .bs-checkbox-base input:focus::before {
71
+ color: #2A52BE;
72
+ }
73
+ .bs-checkbox-base label {
74
+ display: inline-block;
75
+ vertical-align: middle;
76
+ padding: 4px 2px;
77
+ cursor: pointer;
78
+ }
79
+ .bs-select-wrap {
80
+ position: relative;
81
+ outline: 0;
82
+ }
83
+ .bs-select-wrap:focus > .selected {
84
+ border-color: #2A52BE;
85
+ }
86
+ .bs-select-wrap .selected {
87
+ padding: 0 8px;
88
+ min-width: 50px;
89
+ cursor: pointer;
90
+ display: flex;
91
+ }
92
+ .bs-select-wrap .selected .label {
93
+ flex-grow: 1;
94
+ white-space: nowrap;
95
+ }
96
+ .bs-select-wrap .selected .dropdown-btn {
97
+ font-family: "Material Symbols Outlined", monospace;
98
+ margin-right: -4px;
99
+ margin-left: 4px;
100
+ user-select: none;
101
+ transition: transform 0.2s linear;
102
+ }
103
+ .bs-select-wrap.popup-open .dropdown-btn {
104
+ transform: rotate(180deg);
105
+ }
106
+ .bs-clickable {
107
+ user-select: none;
108
+ cursor: pointer;
109
+ }
110
+ .bs-clickable:hover {
111
+ filter: opacity(75%);
112
+ }
113
+ .bs-clickable:active {
114
+ filter: opacity(50%);
115
+ }
116
+ .bs-clickable.disabled {
117
+ filter: opacity(40%);
118
+ }
119
+ .component-shadow-base {
120
+ box-shadow: 2px 2px 8px #eee;
121
+ }
122
+ .font-icon {
123
+ font-family: "Material Symbols Outlined", monospace;
124
+ font-size: 1rem;
125
+ }
126
+ .fade-enter-active,
127
+ .fade-leave-active {
128
+ transition: opacity 0.3s;
129
+ }
130
+ .fade-enter,
131
+ .fade-leave-to {
132
+ opacity: 0;
133
+ }
134
+ .bs-text-input .input-area {
135
+ width: 100%;
136
+ }:root {
137
+ --font-size: 13px;
138
+ --font-size-input: 12px;
139
+ }
140
+ body {
141
+ font-size: var(--font-size);
142
+ }
143
+ input {
144
+ font-size: var(--font-size-input);
145
+ padding-top: 2px;
146
+ }
147
+ textarea {
148
+ font-size: var(--font-size-input);
149
+ }
150
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap, .bs-number-input {
151
+ display: inline-flex;
152
+ flex-direction: column;
153
+ align-items: flex-start;
154
+ justify-content: left;
155
+ }
156
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message, .bs-number-input .message {
157
+ margin-top: 4px;
158
+ font-size: 0.9em;
159
+ }
160
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base, .bs-number-input .input-area {
161
+ border: 1px solid #DBE0EF;
162
+ border-radius: 4px;
163
+ height: 28px;
164
+ display: inline-flex;
165
+ align-items: center;
166
+ justify-content: left;
167
+ }
168
+ .bs-input-base input, .bs-number-input .input-area input {
169
+ border: 0;
170
+ outline: 0;
171
+ align-self: stretch;
172
+ flex-grow: 1;
173
+ padding: 0 8px;
174
+ background-color: transparent;
175
+ }
176
+ .bs-input-base textarea, .bs-number-input .input-area textarea {
177
+ border: 0;
178
+ border-radius: 4px;
179
+ outline: 0;
180
+ align-self: stretch;
181
+ flex-grow: 1;
182
+ padding: 8px;
183
+ line-height: 1.4;
184
+ font-family: sans-serif;
185
+ }
186
+ .bs-input-base:has(:focus), .bs-number-input .input-area:has(:focus) {
187
+ border-color: #2A52BE;
188
+ }
189
+ .bs-checkbox-base {
190
+ display: inline-block;
191
+ color: #555;
192
+ }
193
+ .bs-checkbox-base input {
194
+ appearance: none;
195
+ margin: 0;
196
+ outline: 0;
197
+ }
198
+ .bs-checkbox-base input::before {
199
+ font-family: "Material Symbols Outlined", monospace;
200
+ font-size: 20px;
201
+ vertical-align: middle;
202
+ cursor: pointer;
203
+ color: #555;
204
+ }
205
+ .bs-checkbox-base input:focus::before {
206
+ color: #2A52BE;
207
+ }
208
+ .bs-checkbox-base label {
209
+ display: inline-block;
210
+ vertical-align: middle;
211
+ padding: 4px 2px;
212
+ cursor: pointer;
213
+ }
214
+ .bs-select-wrap {
215
+ position: relative;
216
+ outline: 0;
217
+ }
218
+ .bs-select-wrap:focus > .selected {
219
+ border-color: #2A52BE;
220
+ }
221
+ .bs-select-wrap .selected {
222
+ padding: 0 8px;
223
+ min-width: 50px;
224
+ cursor: pointer;
225
+ display: flex;
226
+ }
227
+ .bs-select-wrap .selected .label {
228
+ flex-grow: 1;
229
+ white-space: nowrap;
230
+ }
231
+ .bs-select-wrap .selected .dropdown-btn {
232
+ font-family: "Material Symbols Outlined", monospace;
233
+ margin-right: -4px;
234
+ margin-left: 4px;
235
+ user-select: none;
236
+ transition: transform 0.2s linear;
237
+ }
238
+ .bs-select-wrap.popup-open .dropdown-btn {
239
+ transform: rotate(180deg);
240
+ }
241
+ .bs-clickable {
242
+ user-select: none;
243
+ cursor: pointer;
244
+ }
245
+ .bs-clickable:hover {
246
+ filter: opacity(75%);
247
+ }
248
+ .bs-clickable:active {
249
+ filter: opacity(50%);
250
+ }
251
+ .bs-clickable.disabled {
252
+ filter: opacity(40%);
253
+ }
254
+ .component-shadow-base {
255
+ box-shadow: 2px 2px 8px #eee;
256
+ }
257
+ .font-icon {
258
+ font-family: "Material Symbols Outlined", monospace;
259
+ font-size: 1rem;
260
+ }
261
+ .fade-enter-active,
262
+ .fade-leave-active {
263
+ transition: opacity 0.3s;
264
+ }
265
+ .fade-enter,
266
+ .fade-leave-to {
267
+ opacity: 0;
268
+ }
269
+ .bs-number-input .input-area {
270
+ width: 100%;
271
+ }:root {
272
+ --font-size: 13px;
273
+ --font-size-input: 12px;
274
+ }
275
+ body {
276
+ font-size: var(--font-size);
277
+ }
278
+ input {
279
+ font-size: var(--font-size-input);
280
+ padding-top: 2px;
281
+ }
282
+ textarea {
283
+ font-size: var(--font-size-input);
284
+ }
285
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap, .bs-date-input {
286
+ display: inline-flex;
287
+ flex-direction: column;
288
+ align-items: flex-start;
289
+ justify-content: left;
290
+ }
291
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message, .bs-date-input .message {
292
+ margin-top: 4px;
293
+ font-size: 0.9em;
294
+ }
295
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base, .bs-date-input .input-area {
296
+ border: 1px solid #DBE0EF;
297
+ border-radius: 4px;
298
+ height: 28px;
299
+ display: inline-flex;
300
+ align-items: center;
301
+ justify-content: left;
302
+ }
303
+ .bs-input-base input, .bs-date-input .input-area input {
304
+ border: 0;
305
+ outline: 0;
306
+ align-self: stretch;
307
+ flex-grow: 1;
308
+ padding: 0 8px;
309
+ background-color: transparent;
310
+ }
311
+ .bs-input-base textarea, .bs-date-input .input-area textarea {
312
+ border: 0;
313
+ border-radius: 4px;
314
+ outline: 0;
315
+ align-self: stretch;
316
+ flex-grow: 1;
317
+ padding: 8px;
318
+ line-height: 1.4;
319
+ font-family: sans-serif;
320
+ }
321
+ .bs-input-base:has(:focus), .bs-date-input .input-area:has(:focus) {
322
+ border-color: #2A52BE;
323
+ }
324
+ .bs-checkbox-base {
325
+ display: inline-block;
326
+ color: #555;
327
+ }
328
+ .bs-checkbox-base input {
329
+ appearance: none;
330
+ margin: 0;
331
+ outline: 0;
332
+ }
333
+ .bs-checkbox-base input::before {
334
+ font-family: "Material Symbols Outlined", monospace;
335
+ font-size: 20px;
336
+ vertical-align: middle;
337
+ cursor: pointer;
338
+ color: #555;
339
+ }
340
+ .bs-checkbox-base input:focus::before {
341
+ color: #2A52BE;
342
+ }
343
+ .bs-checkbox-base label {
344
+ display: inline-block;
345
+ vertical-align: middle;
346
+ padding: 4px 2px;
347
+ cursor: pointer;
348
+ }
349
+ .bs-select-wrap {
350
+ position: relative;
351
+ outline: 0;
352
+ }
353
+ .bs-select-wrap:focus > .selected {
354
+ border-color: #2A52BE;
355
+ }
356
+ .bs-select-wrap .selected {
357
+ padding: 0 8px;
358
+ min-width: 50px;
359
+ cursor: pointer;
360
+ display: flex;
361
+ }
362
+ .bs-select-wrap .selected .label {
363
+ flex-grow: 1;
364
+ white-space: nowrap;
365
+ }
366
+ .bs-select-wrap .selected .dropdown-btn {
367
+ font-family: "Material Symbols Outlined", monospace;
368
+ margin-right: -4px;
369
+ margin-left: 4px;
370
+ user-select: none;
371
+ transition: transform 0.2s linear;
372
+ }
373
+ .bs-select-wrap.popup-open .dropdown-btn {
374
+ transform: rotate(180deg);
375
+ }
376
+ .bs-clickable {
377
+ user-select: none;
378
+ cursor: pointer;
379
+ }
380
+ .bs-clickable:hover {
381
+ filter: opacity(75%);
382
+ }
383
+ .bs-clickable:active {
384
+ filter: opacity(50%);
385
+ }
386
+ .bs-clickable.disabled {
387
+ filter: opacity(40%);
388
+ }
389
+ .component-shadow-base {
390
+ box-shadow: 2px 2px 8px #eee;
391
+ }
392
+ .font-icon {
393
+ font-family: "Material Symbols Outlined", monospace;
394
+ font-size: 1rem;
395
+ }
396
+ .fade-enter-active,
397
+ .fade-leave-active {
398
+ transition: opacity 0.3s;
399
+ }
400
+ .fade-enter,
401
+ .fade-leave-to {
402
+ opacity: 0;
403
+ }
404
+ .bs-date-input {
405
+ width: 200px;
406
+ }
407
+ .bs-date-input .input-area {
408
+ width: 100%;
409
+ display: flex;
410
+ align-items: center;
411
+ }
412
+ .bs-date-input .input-area .icon {
413
+ margin: 0 6px;
414
+ font-family: "Material Symbols Outlined", monospace;
415
+ font-size: 14px;
416
+ }
417
+ .bs-date-input .input-area input {
418
+ padding-left: 0;
419
+ }:root {
420
+ --font-size: 13px;
421
+ --font-size-input: 12px;
422
+ }
423
+ body {
424
+ font-size: var(--font-size);
425
+ }
426
+ input {
427
+ font-size: var(--font-size-input);
428
+ padding-top: 2px;
429
+ }
430
+ textarea {
431
+ font-size: var(--font-size-input);
432
+ }
433
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap {
434
+ display: inline-flex;
435
+ flex-direction: column;
436
+ align-items: flex-start;
437
+ justify-content: left;
438
+ }
439
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message {
440
+ margin-top: 4px;
441
+ font-size: 0.9em;
442
+ }
443
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base {
444
+ border: 1px solid #DBE0EF;
445
+ border-radius: 4px;
446
+ height: 28px;
447
+ display: inline-flex;
448
+ align-items: center;
449
+ justify-content: left;
450
+ }
451
+ .bs-input-base input {
452
+ border: 0;
453
+ outline: 0;
454
+ align-self: stretch;
455
+ flex-grow: 1;
456
+ padding: 0 8px;
457
+ background-color: transparent;
458
+ }
459
+ .bs-input-base textarea {
460
+ border: 0;
461
+ border-radius: 4px;
462
+ outline: 0;
463
+ align-self: stretch;
464
+ flex-grow: 1;
465
+ padding: 8px;
466
+ line-height: 1.4;
467
+ font-family: sans-serif;
468
+ }
469
+ .bs-input-base:has(:focus) {
470
+ border-color: #2A52BE;
471
+ }
472
+ .bs-checkbox-base, .bs-checkbox {
473
+ display: inline-block;
474
+ color: #555;
475
+ }
476
+ .bs-checkbox-base input, .bs-checkbox input {
477
+ appearance: none;
478
+ margin: 0;
479
+ outline: 0;
480
+ }
481
+ .bs-checkbox-base input::before, .bs-checkbox input::before {
482
+ font-family: "Material Symbols Outlined", monospace;
483
+ font-size: 20px;
484
+ vertical-align: middle;
485
+ cursor: pointer;
486
+ color: #555;
487
+ }
488
+ .bs-checkbox-base input:focus::before, .bs-checkbox input:focus::before {
489
+ color: #2A52BE;
490
+ }
491
+ .bs-checkbox-base label, .bs-checkbox label {
492
+ display: inline-block;
493
+ vertical-align: middle;
494
+ padding: 4px 2px;
495
+ cursor: pointer;
496
+ }
497
+ .bs-select-wrap {
498
+ position: relative;
499
+ outline: 0;
500
+ }
501
+ .bs-select-wrap:focus > .selected {
502
+ border-color: #2A52BE;
503
+ }
504
+ .bs-select-wrap .selected {
505
+ padding: 0 8px;
506
+ min-width: 50px;
507
+ cursor: pointer;
508
+ display: flex;
509
+ }
510
+ .bs-select-wrap .selected .label {
511
+ flex-grow: 1;
512
+ white-space: nowrap;
513
+ }
514
+ .bs-select-wrap .selected .dropdown-btn {
515
+ font-family: "Material Symbols Outlined", monospace;
516
+ margin-right: -4px;
517
+ margin-left: 4px;
518
+ user-select: none;
519
+ transition: transform 0.2s linear;
520
+ }
521
+ .bs-select-wrap.popup-open .dropdown-btn {
522
+ transform: rotate(180deg);
523
+ }
524
+ .bs-clickable {
525
+ user-select: none;
526
+ cursor: pointer;
527
+ }
528
+ .bs-clickable:hover {
529
+ filter: opacity(75%);
530
+ }
531
+ .bs-clickable:active {
532
+ filter: opacity(50%);
533
+ }
534
+ .bs-clickable.disabled {
535
+ filter: opacity(40%);
536
+ }
537
+ .component-shadow-base {
538
+ box-shadow: 2px 2px 8px #eee;
539
+ }
540
+ .font-icon {
541
+ font-family: "Material Symbols Outlined", monospace;
542
+ font-size: 1rem;
543
+ }
544
+ .fade-enter-active,
545
+ .fade-leave-active {
546
+ transition: opacity 0.3s;
547
+ }
548
+ .fade-enter,
549
+ .fade-leave-to {
550
+ opacity: 0;
551
+ }
552
+ .bs-checkbox input::before {
553
+ content: "check_box_outline_blank";
554
+ }
555
+ .bs-checkbox.checked input::before {
556
+ content: "check_box";
557
+ }:root {
558
+ --font-size: 13px;
559
+ --font-size-input: 12px;
560
+ }
561
+ body {
562
+ font-size: var(--font-size);
563
+ }
564
+ input {
565
+ font-size: var(--font-size-input);
566
+ padding-top: 2px;
567
+ }
568
+ textarea {
569
+ font-size: var(--font-size-input);
570
+ }
571
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap {
572
+ display: inline-flex;
573
+ flex-direction: column;
574
+ align-items: flex-start;
575
+ justify-content: left;
576
+ }
577
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message {
578
+ margin-top: 4px;
579
+ font-size: 0.9em;
580
+ }
581
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base {
582
+ border: 1px solid #DBE0EF;
583
+ border-radius: 4px;
584
+ height: 28px;
585
+ display: inline-flex;
586
+ align-items: center;
587
+ justify-content: left;
588
+ }
589
+ .bs-input-base input {
590
+ border: 0;
591
+ outline: 0;
592
+ align-self: stretch;
593
+ flex-grow: 1;
594
+ padding: 0 8px;
595
+ background-color: transparent;
596
+ }
597
+ .bs-input-base textarea {
598
+ border: 0;
599
+ border-radius: 4px;
600
+ outline: 0;
601
+ align-self: stretch;
602
+ flex-grow: 1;
603
+ padding: 8px;
604
+ line-height: 1.4;
605
+ font-family: sans-serif;
606
+ }
607
+ .bs-input-base:has(:focus) {
608
+ border-color: #2A52BE;
609
+ }
610
+ .bs-checkbox-base {
611
+ display: inline-block;
612
+ color: #555;
613
+ }
614
+ .bs-checkbox-base input {
615
+ appearance: none;
616
+ margin: 0;
617
+ outline: 0;
618
+ }
619
+ .bs-checkbox-base input::before {
620
+ font-family: "Material Symbols Outlined", monospace;
621
+ font-size: 20px;
622
+ vertical-align: middle;
623
+ cursor: pointer;
624
+ color: #555;
625
+ }
626
+ .bs-checkbox-base input:focus::before {
627
+ color: #2A52BE;
628
+ }
629
+ .bs-checkbox-base label {
630
+ display: inline-block;
631
+ vertical-align: middle;
632
+ padding: 4px 2px;
633
+ cursor: pointer;
634
+ }
635
+ .bs-select-wrap {
636
+ position: relative;
637
+ outline: 0;
638
+ }
639
+ .bs-select-wrap:focus > .selected {
640
+ border-color: #2A52BE;
641
+ }
642
+ .bs-select-wrap .selected {
643
+ padding: 0 8px;
644
+ min-width: 50px;
645
+ cursor: pointer;
646
+ display: flex;
647
+ }
648
+ .bs-select-wrap .selected .label {
649
+ flex-grow: 1;
650
+ white-space: nowrap;
651
+ }
652
+ .bs-select-wrap .selected .dropdown-btn {
653
+ font-family: "Material Symbols Outlined", monospace;
654
+ margin-right: -4px;
655
+ margin-left: 4px;
656
+ user-select: none;
657
+ transition: transform 0.2s linear;
658
+ }
659
+ .bs-select-wrap.popup-open .dropdown-btn {
660
+ transform: rotate(180deg);
661
+ }
662
+ .bs-clickable {
663
+ user-select: none;
664
+ cursor: pointer;
665
+ }
666
+ .bs-clickable:hover {
667
+ filter: opacity(75%);
668
+ }
669
+ .bs-clickable:active {
670
+ filter: opacity(50%);
671
+ }
672
+ .bs-clickable.disabled {
673
+ filter: opacity(40%);
674
+ }
675
+ .component-shadow-base {
676
+ box-shadow: 2px 2px 8px #eee;
677
+ }
678
+ .font-icon {
679
+ font-family: "Material Symbols Outlined", monospace;
680
+ font-size: 1rem;
681
+ }
682
+ .fade-enter-active,
683
+ .fade-leave-active {
684
+ transition: opacity 0.3s;
685
+ }
686
+ .fade-enter,
687
+ .fade-leave-to {
688
+ opacity: 0;
689
+ }
690
+ .bs-checkbox-group {
691
+ display: inline-flex;
692
+ gap: 8px;
693
+ }:root {
694
+ --font-size: 13px;
695
+ --font-size-input: 12px;
696
+ }
697
+ body {
698
+ font-size: var(--font-size);
699
+ }
700
+ input {
701
+ font-size: var(--font-size-input);
702
+ padding-top: 2px;
703
+ }
704
+ textarea {
705
+ font-size: var(--font-size-input);
706
+ }
707
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap {
708
+ display: inline-flex;
709
+ flex-direction: column;
710
+ align-items: flex-start;
711
+ justify-content: left;
712
+ }
713
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message {
714
+ margin-top: 4px;
715
+ font-size: 0.9em;
716
+ }
717
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base {
718
+ border: 1px solid #DBE0EF;
719
+ border-radius: 4px;
720
+ height: 28px;
721
+ display: inline-flex;
722
+ align-items: center;
723
+ justify-content: left;
724
+ }
725
+ .bs-input-base input {
726
+ border: 0;
727
+ outline: 0;
728
+ align-self: stretch;
729
+ flex-grow: 1;
730
+ padding: 0 8px;
731
+ background-color: transparent;
732
+ }
733
+ .bs-input-base textarea {
734
+ border: 0;
735
+ border-radius: 4px;
736
+ outline: 0;
737
+ align-self: stretch;
738
+ flex-grow: 1;
739
+ padding: 8px;
740
+ line-height: 1.4;
741
+ font-family: sans-serif;
742
+ }
743
+ .bs-input-base:has(:focus) {
744
+ border-color: #2A52BE;
745
+ }
746
+ .bs-checkbox-base, .bs-radio-button {
747
+ display: inline-block;
748
+ color: #555;
749
+ }
750
+ .bs-checkbox-base input, .bs-radio-button input {
751
+ appearance: none;
752
+ margin: 0;
753
+ outline: 0;
754
+ }
755
+ .bs-checkbox-base input::before, .bs-radio-button input::before {
756
+ font-family: "Material Symbols Outlined", monospace;
757
+ font-size: 20px;
758
+ vertical-align: middle;
759
+ cursor: pointer;
760
+ color: #555;
761
+ }
762
+ .bs-checkbox-base input:focus::before, .bs-radio-button input:focus::before {
763
+ color: #2A52BE;
764
+ }
765
+ .bs-checkbox-base label, .bs-radio-button label {
766
+ display: inline-block;
767
+ vertical-align: middle;
768
+ padding: 4px 2px;
769
+ cursor: pointer;
770
+ }
771
+ .bs-select-wrap {
772
+ position: relative;
773
+ outline: 0;
774
+ }
775
+ .bs-select-wrap:focus > .selected {
776
+ border-color: #2A52BE;
777
+ }
778
+ .bs-select-wrap .selected {
779
+ padding: 0 8px;
780
+ min-width: 50px;
781
+ cursor: pointer;
782
+ display: flex;
783
+ }
784
+ .bs-select-wrap .selected .label {
785
+ flex-grow: 1;
786
+ white-space: nowrap;
787
+ }
788
+ .bs-select-wrap .selected .dropdown-btn {
789
+ font-family: "Material Symbols Outlined", monospace;
790
+ margin-right: -4px;
791
+ margin-left: 4px;
792
+ user-select: none;
793
+ transition: transform 0.2s linear;
794
+ }
795
+ .bs-select-wrap.popup-open .dropdown-btn {
796
+ transform: rotate(180deg);
797
+ }
798
+ .bs-clickable {
799
+ user-select: none;
800
+ cursor: pointer;
801
+ }
802
+ .bs-clickable:hover {
803
+ filter: opacity(75%);
804
+ }
805
+ .bs-clickable:active {
806
+ filter: opacity(50%);
807
+ }
808
+ .bs-clickable.disabled {
809
+ filter: opacity(40%);
810
+ }
811
+ .component-shadow-base {
812
+ box-shadow: 2px 2px 8px #eee;
813
+ }
814
+ .font-icon {
815
+ font-family: "Material Symbols Outlined", monospace;
816
+ font-size: 1rem;
817
+ }
818
+ .fade-enter-active,
819
+ .fade-leave-active {
820
+ transition: opacity 0.3s;
821
+ }
822
+ .fade-enter,
823
+ .fade-leave-to {
824
+ opacity: 0;
825
+ }
826
+ .bs-radio-button input::before {
827
+ content: "radio_button_unchecked";
828
+ }
829
+ .bs-radio-button.checked input::before {
830
+ content: "radio_button_checked";
831
+ }:root {
832
+ --font-size: 13px;
833
+ --font-size-input: 12px;
834
+ }
835
+ body {
836
+ font-size: var(--font-size);
837
+ }
838
+ input {
839
+ font-size: var(--font-size-input);
840
+ padding-top: 2px;
841
+ }
842
+ textarea {
843
+ font-size: var(--font-size-input);
844
+ }
845
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap {
846
+ display: inline-flex;
847
+ flex-direction: column;
848
+ align-items: flex-start;
849
+ justify-content: left;
850
+ }
851
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message {
852
+ margin-top: 4px;
853
+ font-size: 0.9em;
854
+ }
855
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base {
856
+ border: 1px solid #DBE0EF;
857
+ border-radius: 4px;
858
+ height: 28px;
859
+ display: inline-flex;
860
+ align-items: center;
861
+ justify-content: left;
862
+ }
863
+ .bs-input-base input {
864
+ border: 0;
865
+ outline: 0;
866
+ align-self: stretch;
867
+ flex-grow: 1;
868
+ padding: 0 8px;
869
+ background-color: transparent;
870
+ }
871
+ .bs-input-base textarea {
872
+ border: 0;
873
+ border-radius: 4px;
874
+ outline: 0;
875
+ align-self: stretch;
876
+ flex-grow: 1;
877
+ padding: 8px;
878
+ line-height: 1.4;
879
+ font-family: sans-serif;
880
+ }
881
+ .bs-input-base:has(:focus) {
882
+ border-color: #2A52BE;
883
+ }
884
+ .bs-checkbox-base {
885
+ display: inline-block;
886
+ color: #555;
887
+ }
888
+ .bs-checkbox-base input {
889
+ appearance: none;
890
+ margin: 0;
891
+ outline: 0;
892
+ }
893
+ .bs-checkbox-base input::before {
894
+ font-family: "Material Symbols Outlined", monospace;
895
+ font-size: 20px;
896
+ vertical-align: middle;
897
+ cursor: pointer;
898
+ color: #555;
899
+ }
900
+ .bs-checkbox-base input:focus::before {
901
+ color: #2A52BE;
902
+ }
903
+ .bs-checkbox-base label {
904
+ display: inline-block;
905
+ vertical-align: middle;
906
+ padding: 4px 2px;
907
+ cursor: pointer;
908
+ }
909
+ .bs-select-wrap {
910
+ position: relative;
911
+ outline: 0;
912
+ }
913
+ .bs-select-wrap:focus > .selected {
914
+ border-color: #2A52BE;
915
+ }
916
+ .bs-select-wrap .selected {
917
+ padding: 0 8px;
918
+ min-width: 50px;
919
+ cursor: pointer;
920
+ display: flex;
921
+ }
922
+ .bs-select-wrap .selected .label {
923
+ flex-grow: 1;
924
+ white-space: nowrap;
925
+ }
926
+ .bs-select-wrap .selected .dropdown-btn {
927
+ font-family: "Material Symbols Outlined", monospace;
928
+ margin-right: -4px;
929
+ margin-left: 4px;
930
+ user-select: none;
931
+ transition: transform 0.2s linear;
932
+ }
933
+ .bs-select-wrap.popup-open .dropdown-btn {
934
+ transform: rotate(180deg);
935
+ }
936
+ .bs-clickable {
937
+ user-select: none;
938
+ cursor: pointer;
939
+ }
940
+ .bs-clickable:hover {
941
+ filter: opacity(75%);
942
+ }
943
+ .bs-clickable:active {
944
+ filter: opacity(50%);
945
+ }
946
+ .bs-clickable.disabled {
947
+ filter: opacity(40%);
948
+ }
949
+ .component-shadow-base {
950
+ box-shadow: 2px 2px 8px #eee;
951
+ }
952
+ .font-icon {
953
+ font-family: "Material Symbols Outlined", monospace;
954
+ font-size: 1rem;
955
+ }
956
+ .fade-enter-active,
957
+ .fade-leave-active {
958
+ transition: opacity 0.3s;
959
+ }
960
+ .fade-enter,
961
+ .fade-leave-to {
962
+ opacity: 0;
963
+ }
964
+ .bs-radio-button-group {
965
+ display: inline-flex;
966
+ gap: 8px;
967
+ }:root {
968
+ --font-size: 13px;
969
+ --font-size-input: 12px;
970
+ }
971
+ body {
972
+ font-size: var(--font-size);
973
+ }
974
+ input {
975
+ font-size: var(--font-size-input);
976
+ padding-top: 2px;
977
+ }
978
+ textarea {
979
+ font-size: var(--font-size-input);
980
+ }
981
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap {
982
+ display: inline-flex;
983
+ flex-direction: column;
984
+ align-items: flex-start;
985
+ justify-content: left;
986
+ }
987
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message {
988
+ margin-top: 4px;
989
+ font-size: 0.9em;
990
+ }
991
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base {
992
+ border: 1px solid #DBE0EF;
993
+ border-radius: 4px;
994
+ height: 28px;
995
+ display: inline-flex;
996
+ align-items: center;
997
+ justify-content: left;
998
+ }
999
+ .bs-input-base input {
1000
+ border: 0;
1001
+ outline: 0;
1002
+ align-self: stretch;
1003
+ flex-grow: 1;
1004
+ padding: 0 8px;
1005
+ background-color: transparent;
1006
+ }
1007
+ .bs-input-base textarea {
1008
+ border: 0;
1009
+ border-radius: 4px;
1010
+ outline: 0;
1011
+ align-self: stretch;
1012
+ flex-grow: 1;
1013
+ padding: 8px;
1014
+ line-height: 1.4;
1015
+ font-family: sans-serif;
1016
+ }
1017
+ .bs-input-base:has(:focus) {
1018
+ border-color: #2A52BE;
1019
+ }
1020
+ .bs-checkbox-base {
1021
+ display: inline-block;
1022
+ color: #555;
1023
+ }
1024
+ .bs-checkbox-base input {
1025
+ appearance: none;
1026
+ margin: 0;
1027
+ outline: 0;
1028
+ }
1029
+ .bs-checkbox-base input::before {
1030
+ font-family: "Material Symbols Outlined", monospace;
1031
+ font-size: 20px;
1032
+ vertical-align: middle;
1033
+ cursor: pointer;
1034
+ color: #555;
1035
+ }
1036
+ .bs-checkbox-base input:focus::before {
1037
+ color: #2A52BE;
1038
+ }
1039
+ .bs-checkbox-base label {
1040
+ display: inline-block;
1041
+ vertical-align: middle;
1042
+ padding: 4px 2px;
1043
+ cursor: pointer;
1044
+ }
1045
+ .bs-select-wrap {
1046
+ position: relative;
1047
+ outline: 0;
1048
+ }
1049
+ .bs-select-wrap:focus > .selected {
1050
+ border-color: #2A52BE;
1051
+ }
1052
+ .bs-select-wrap .selected {
1053
+ padding: 0 8px;
1054
+ min-width: 50px;
1055
+ cursor: pointer;
1056
+ display: flex;
1057
+ }
1058
+ .bs-select-wrap .selected .label {
1059
+ flex-grow: 1;
1060
+ white-space: nowrap;
1061
+ }
1062
+ .bs-select-wrap .selected .dropdown-btn {
1063
+ font-family: "Material Symbols Outlined", monospace;
1064
+ margin-right: -4px;
1065
+ margin-left: 4px;
1066
+ user-select: none;
1067
+ transition: transform 0.2s linear;
1068
+ }
1069
+ .bs-select-wrap.popup-open .dropdown-btn {
1070
+ transform: rotate(180deg);
1071
+ }
1072
+ .bs-clickable {
1073
+ user-select: none;
1074
+ cursor: pointer;
1075
+ }
1076
+ .bs-clickable:hover {
1077
+ filter: opacity(75%);
1078
+ }
1079
+ .bs-clickable:active {
1080
+ filter: opacity(50%);
1081
+ }
1082
+ .bs-clickable.disabled {
1083
+ filter: opacity(40%);
1084
+ }
1085
+ .component-shadow-base, .bs-popup {
1086
+ box-shadow: 2px 2px 8px #eee;
1087
+ }
1088
+ .font-icon {
1089
+ font-family: "Material Symbols Outlined", monospace;
1090
+ font-size: 1rem;
1091
+ }
1092
+ .fade-enter-active,
1093
+ .fade-leave-active {
1094
+ transition: opacity 0.3s;
1095
+ }
1096
+ .fade-enter,
1097
+ .fade-leave-to {
1098
+ opacity: 0;
1099
+ }
1100
+ .bs-popup {
1101
+ position: absolute;
1102
+ border: 1px solid #DBE0EF;
1103
+ border-radius: 4px;
1104
+ background-color: white;
1105
+ z-index: 100;
1106
+ top: calc(100% + 4px);
1107
+ min-width: 50px;
1108
+ min-height: 50px;
1109
+ }:root {
1110
+ --font-size: 13px;
1111
+ --font-size-input: 12px;
1112
+ }
1113
+ body {
1114
+ font-size: var(--font-size);
1115
+ }
1116
+ input {
1117
+ font-size: var(--font-size-input);
1118
+ padding-top: 2px;
1119
+ }
1120
+ textarea {
1121
+ font-size: var(--font-size-input);
1122
+ }
1123
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap {
1124
+ display: inline-flex;
1125
+ flex-direction: column;
1126
+ align-items: flex-start;
1127
+ justify-content: left;
1128
+ }
1129
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message {
1130
+ margin-top: 4px;
1131
+ font-size: 0.9em;
1132
+ }
1133
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base {
1134
+ border: 1px solid #DBE0EF;
1135
+ border-radius: 4px;
1136
+ height: 28px;
1137
+ display: inline-flex;
1138
+ align-items: center;
1139
+ justify-content: left;
1140
+ }
1141
+ .bs-input-base input {
1142
+ border: 0;
1143
+ outline: 0;
1144
+ align-self: stretch;
1145
+ flex-grow: 1;
1146
+ padding: 0 8px;
1147
+ background-color: transparent;
1148
+ }
1149
+ .bs-input-base textarea {
1150
+ border: 0;
1151
+ border-radius: 4px;
1152
+ outline: 0;
1153
+ align-self: stretch;
1154
+ flex-grow: 1;
1155
+ padding: 8px;
1156
+ line-height: 1.4;
1157
+ font-family: sans-serif;
1158
+ }
1159
+ .bs-input-base:has(:focus) {
1160
+ border-color: #2A52BE;
1161
+ }
1162
+ .bs-checkbox-base {
1163
+ display: inline-block;
1164
+ color: #555;
1165
+ }
1166
+ .bs-checkbox-base input {
1167
+ appearance: none;
1168
+ margin: 0;
1169
+ outline: 0;
1170
+ }
1171
+ .bs-checkbox-base input::before {
1172
+ font-family: "Material Symbols Outlined", monospace;
1173
+ font-size: 20px;
1174
+ vertical-align: middle;
1175
+ cursor: pointer;
1176
+ color: #555;
1177
+ }
1178
+ .bs-checkbox-base input:focus::before {
1179
+ color: #2A52BE;
1180
+ }
1181
+ .bs-checkbox-base label {
1182
+ display: inline-block;
1183
+ vertical-align: middle;
1184
+ padding: 4px 2px;
1185
+ cursor: pointer;
1186
+ }
1187
+ .bs-select-wrap {
1188
+ position: relative;
1189
+ outline: 0;
1190
+ }
1191
+ .bs-select-wrap:focus > .selected {
1192
+ border-color: #2A52BE;
1193
+ }
1194
+ .bs-select-wrap .selected {
1195
+ padding: 0 8px;
1196
+ min-width: 50px;
1197
+ cursor: pointer;
1198
+ display: flex;
1199
+ }
1200
+ .bs-select-wrap .selected .label {
1201
+ flex-grow: 1;
1202
+ white-space: nowrap;
1203
+ }
1204
+ .bs-select-wrap .selected .dropdown-btn {
1205
+ font-family: "Material Symbols Outlined", monospace;
1206
+ margin-right: -4px;
1207
+ margin-left: 4px;
1208
+ user-select: none;
1209
+ transition: transform 0.2s linear;
1210
+ }
1211
+ .bs-select-wrap.popup-open .dropdown-btn {
1212
+ transform: rotate(180deg);
1213
+ }
1214
+ .bs-clickable {
1215
+ user-select: none;
1216
+ cursor: pointer;
1217
+ }
1218
+ .bs-clickable:hover {
1219
+ filter: opacity(75%);
1220
+ }
1221
+ .bs-clickable:active {
1222
+ filter: opacity(50%);
1223
+ }
1224
+ .bs-clickable.disabled {
1225
+ filter: opacity(40%);
1226
+ }
1227
+ .component-shadow-base {
1228
+ box-shadow: 2px 2px 8px #eee;
1229
+ }
1230
+ .font-icon {
1231
+ font-family: "Material Symbols Outlined", monospace;
1232
+ font-size: 1rem;
1233
+ }
1234
+ .fade-enter-active,
1235
+ .fade-leave-active {
1236
+ transition: opacity 0.3s;
1237
+ }
1238
+ .fade-enter,
1239
+ .fade-leave-to {
1240
+ opacity: 0;
1241
+ }
1242
+ .bs-select-popup {
1243
+ padding: 4px 0;
1244
+ min-width: 120px;
1245
+ max-height: 500px;
1246
+ overflow: auto;
1247
+ }
1248
+ .bs-select-popup .popup-item {
1249
+ padding: 6px 16px;
1250
+ cursor: pointer;
1251
+ display: flex;
1252
+ align-items: flex-start;
1253
+ }
1254
+ .bs-select-popup .popup-item .checkbox {
1255
+ width: 20px;
1256
+ margin-left: -10px;
1257
+ }
1258
+ .bs-select-popup .popup-item .checkbox::before {
1259
+ font-family: "Material Symbols Outlined", monospace;
1260
+ content: "";
1261
+ font-size: 16px;
1262
+ color: #555;
1263
+ margin-right: 2px;
1264
+ }
1265
+ .bs-select-popup .popup-item .label {
1266
+ flex-grow: 1;
1267
+ white-space: nowrap;
1268
+ }
1269
+ .bs-select-popup .popup-item .sub-items {
1270
+ margin-right: -8px;
1271
+ }
1272
+ .bs-select-popup .popup-item .sub-items::before {
1273
+ font-family: "Material Symbols Outlined", monospace;
1274
+ font-size: 14px;
1275
+ content: "arrow_right";
1276
+ color: #555;
1277
+ margin-left: 2px;
1278
+ }
1279
+ .bs-select-popup .popup-item.hovered {
1280
+ background-color: #E8EEFC;
1281
+ }
1282
+ .bs-select-popup .popup-item.selected-item .checkbox::before {
1283
+ content: "check";
1284
+ }:root {
1285
+ --font-size: 13px;
1286
+ --font-size-input: 12px;
1287
+ }
1288
+ body {
1289
+ font-size: var(--font-size);
1290
+ }
1291
+ input {
1292
+ font-size: var(--font-size-input);
1293
+ padding-top: 2px;
1294
+ }
1295
+ textarea {
1296
+ font-size: var(--font-size-input);
1297
+ }
1298
+ .bs-box-component-wrap, .bs-select-wrap, .bs-select, .bs-input-wrap {
1299
+ display: inline-flex;
1300
+ flex-direction: column;
1301
+ align-items: flex-start;
1302
+ justify-content: left;
1303
+ }
1304
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-select .message, .bs-input-wrap .message {
1305
+ margin-top: 4px;
1306
+ font-size: 0.9em;
1307
+ }
1308
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-select .selected, .bs-input-base {
1309
+ border: 1px solid #DBE0EF;
1310
+ border-radius: 4px;
1311
+ height: 28px;
1312
+ display: inline-flex;
1313
+ align-items: center;
1314
+ justify-content: left;
1315
+ }
1316
+ .bs-input-base input {
1317
+ border: 0;
1318
+ outline: 0;
1319
+ align-self: stretch;
1320
+ flex-grow: 1;
1321
+ padding: 0 8px;
1322
+ background-color: transparent;
1323
+ }
1324
+ .bs-input-base textarea {
1325
+ border: 0;
1326
+ border-radius: 4px;
1327
+ outline: 0;
1328
+ align-self: stretch;
1329
+ flex-grow: 1;
1330
+ padding: 8px;
1331
+ line-height: 1.4;
1332
+ font-family: sans-serif;
1333
+ }
1334
+ .bs-input-base:has(:focus) {
1335
+ border-color: #2A52BE;
1336
+ }
1337
+ .bs-checkbox-base {
1338
+ display: inline-block;
1339
+ color: #555;
1340
+ }
1341
+ .bs-checkbox-base input {
1342
+ appearance: none;
1343
+ margin: 0;
1344
+ outline: 0;
1345
+ }
1346
+ .bs-checkbox-base input::before {
1347
+ font-family: "Material Symbols Outlined", monospace;
1348
+ font-size: 20px;
1349
+ vertical-align: middle;
1350
+ cursor: pointer;
1351
+ color: #555;
1352
+ }
1353
+ .bs-checkbox-base input:focus::before {
1354
+ color: #2A52BE;
1355
+ }
1356
+ .bs-checkbox-base label {
1357
+ display: inline-block;
1358
+ vertical-align: middle;
1359
+ padding: 4px 2px;
1360
+ cursor: pointer;
1361
+ }
1362
+ .bs-select-wrap, .bs-select {
1363
+ position: relative;
1364
+ outline: 0;
1365
+ }
1366
+ .bs-select-wrap:focus > .selected, .bs-select:focus > .selected {
1367
+ border-color: #2A52BE;
1368
+ }
1369
+ .bs-select-wrap .selected, .bs-select .selected {
1370
+ padding: 0 8px;
1371
+ min-width: 50px;
1372
+ cursor: pointer;
1373
+ display: flex;
1374
+ }
1375
+ .bs-select-wrap .selected .label, .bs-select .selected .label {
1376
+ flex-grow: 1;
1377
+ white-space: nowrap;
1378
+ }
1379
+ .bs-select-wrap .selected .dropdown-btn, .bs-select .selected .dropdown-btn {
1380
+ font-family: "Material Symbols Outlined", monospace;
1381
+ margin-right: -4px;
1382
+ margin-left: 4px;
1383
+ user-select: none;
1384
+ transition: transform 0.2s linear;
1385
+ }
1386
+ .bs-select-wrap.popup-open .dropdown-btn, .popup-open.bs-select .dropdown-btn {
1387
+ transform: rotate(180deg);
1388
+ }
1389
+ .bs-clickable {
1390
+ user-select: none;
1391
+ cursor: pointer;
1392
+ }
1393
+ .bs-clickable:hover {
1394
+ filter: opacity(75%);
1395
+ }
1396
+ .bs-clickable:active {
1397
+ filter: opacity(50%);
1398
+ }
1399
+ .bs-clickable.disabled {
1400
+ filter: opacity(40%);
1401
+ }
1402
+ .component-shadow-base {
1403
+ box-shadow: 2px 2px 8px #eee;
1404
+ }
1405
+ .font-icon {
1406
+ font-family: "Material Symbols Outlined", monospace;
1407
+ font-size: 1rem;
1408
+ }
1409
+ .fade-enter-active,
1410
+ .fade-leave-active {
1411
+ transition: opacity 0.3s;
1412
+ }
1413
+ .fade-enter,
1414
+ .fade-leave-to {
1415
+ opacity: 0;
1416
+ }:root {
1417
+ --font-size: 13px;
1418
+ --font-size-input: 12px;
1419
+ }
1420
+ body {
1421
+ font-size: var(--font-size);
1422
+ }
1423
+ input {
1424
+ font-size: var(--font-size-input);
1425
+ padding-top: 2px;
1426
+ }
1427
+ textarea {
1428
+ font-size: var(--font-size-input);
1429
+ }
1430
+ .bs-box-component-wrap, .bs-select-wrap, .bs-multi-select, .bs-input-wrap {
1431
+ display: inline-flex;
1432
+ flex-direction: column;
1433
+ align-items: flex-start;
1434
+ justify-content: left;
1435
+ }
1436
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-multi-select .message, .bs-input-wrap .message {
1437
+ margin-top: 4px;
1438
+ font-size: 0.9em;
1439
+ }
1440
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-multi-select .selected, .bs-input-base {
1441
+ border: 1px solid #DBE0EF;
1442
+ border-radius: 4px;
1443
+ height: 28px;
1444
+ display: inline-flex;
1445
+ align-items: center;
1446
+ justify-content: left;
1447
+ }
1448
+ .bs-input-base input {
1449
+ border: 0;
1450
+ outline: 0;
1451
+ align-self: stretch;
1452
+ flex-grow: 1;
1453
+ padding: 0 8px;
1454
+ background-color: transparent;
1455
+ }
1456
+ .bs-input-base textarea {
1457
+ border: 0;
1458
+ border-radius: 4px;
1459
+ outline: 0;
1460
+ align-self: stretch;
1461
+ flex-grow: 1;
1462
+ padding: 8px;
1463
+ line-height: 1.4;
1464
+ font-family: sans-serif;
1465
+ }
1466
+ .bs-input-base:has(:focus) {
1467
+ border-color: #2A52BE;
1468
+ }
1469
+ .bs-checkbox-base {
1470
+ display: inline-block;
1471
+ color: #555;
1472
+ }
1473
+ .bs-checkbox-base input {
1474
+ appearance: none;
1475
+ margin: 0;
1476
+ outline: 0;
1477
+ }
1478
+ .bs-checkbox-base input::before {
1479
+ font-family: "Material Symbols Outlined", monospace;
1480
+ font-size: 20px;
1481
+ vertical-align: middle;
1482
+ cursor: pointer;
1483
+ color: #555;
1484
+ }
1485
+ .bs-checkbox-base input:focus::before {
1486
+ color: #2A52BE;
1487
+ }
1488
+ .bs-checkbox-base label {
1489
+ display: inline-block;
1490
+ vertical-align: middle;
1491
+ padding: 4px 2px;
1492
+ cursor: pointer;
1493
+ }
1494
+ .bs-select-wrap, .bs-multi-select {
1495
+ position: relative;
1496
+ outline: 0;
1497
+ }
1498
+ .bs-select-wrap:focus > .selected, .bs-multi-select:focus > .selected {
1499
+ border-color: #2A52BE;
1500
+ }
1501
+ .bs-select-wrap .selected, .bs-multi-select .selected {
1502
+ padding: 0 8px;
1503
+ min-width: 50px;
1504
+ cursor: pointer;
1505
+ display: flex;
1506
+ }
1507
+ .bs-select-wrap .selected .label, .bs-multi-select .selected .label {
1508
+ flex-grow: 1;
1509
+ white-space: nowrap;
1510
+ }
1511
+ .bs-select-wrap .selected .dropdown-btn, .bs-multi-select .selected .dropdown-btn {
1512
+ font-family: "Material Symbols Outlined", monospace;
1513
+ margin-right: -4px;
1514
+ margin-left: 4px;
1515
+ user-select: none;
1516
+ transition: transform 0.2s linear;
1517
+ }
1518
+ .bs-select-wrap.popup-open .dropdown-btn, .popup-open.bs-multi-select .dropdown-btn {
1519
+ transform: rotate(180deg);
1520
+ }
1521
+ .bs-clickable {
1522
+ user-select: none;
1523
+ cursor: pointer;
1524
+ }
1525
+ .bs-clickable:hover {
1526
+ filter: opacity(75%);
1527
+ }
1528
+ .bs-clickable:active {
1529
+ filter: opacity(50%);
1530
+ }
1531
+ .bs-clickable.disabled {
1532
+ filter: opacity(40%);
1533
+ }
1534
+ .component-shadow-base {
1535
+ box-shadow: 2px 2px 8px #eee;
1536
+ }
1537
+ .font-icon {
1538
+ font-family: "Material Symbols Outlined", monospace;
1539
+ font-size: 1rem;
1540
+ }
1541
+ .fade-enter-active,
1542
+ .fade-leave-active {
1543
+ transition: opacity 0.3s;
1544
+ }
1545
+ .fade-enter,
1546
+ .fade-leave-to {
1547
+ opacity: 0;
1548
+ }:root {
1549
+ --font-size: 13px;
1550
+ --font-size-input: 12px;
1551
+ }
1552
+ body {
1553
+ font-size: var(--font-size);
1554
+ }
1555
+ input {
1556
+ font-size: var(--font-size-input);
1557
+ padding-top: 2px;
1558
+ }
1559
+ textarea {
1560
+ font-size: var(--font-size-input);
1561
+ }
1562
+ .bs-box-component-wrap, .bs-select-wrap, .bs-tree-select, .bs-input-wrap {
1563
+ display: inline-flex;
1564
+ flex-direction: column;
1565
+ align-items: flex-start;
1566
+ justify-content: left;
1567
+ }
1568
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-tree-select .message, .bs-input-wrap .message {
1569
+ margin-top: 4px;
1570
+ font-size: 0.9em;
1571
+ }
1572
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-tree-select .selected, .bs-input-base {
1573
+ border: 1px solid #DBE0EF;
1574
+ border-radius: 4px;
1575
+ height: 28px;
1576
+ display: inline-flex;
1577
+ align-items: center;
1578
+ justify-content: left;
1579
+ }
1580
+ .bs-input-base input {
1581
+ border: 0;
1582
+ outline: 0;
1583
+ align-self: stretch;
1584
+ flex-grow: 1;
1585
+ padding: 0 8px;
1586
+ background-color: transparent;
1587
+ }
1588
+ .bs-input-base textarea {
1589
+ border: 0;
1590
+ border-radius: 4px;
1591
+ outline: 0;
1592
+ align-self: stretch;
1593
+ flex-grow: 1;
1594
+ padding: 8px;
1595
+ line-height: 1.4;
1596
+ font-family: sans-serif;
1597
+ }
1598
+ .bs-input-base:has(:focus) {
1599
+ border-color: #2A52BE;
1600
+ }
1601
+ .bs-checkbox-base {
1602
+ display: inline-block;
1603
+ color: #555;
1604
+ }
1605
+ .bs-checkbox-base input {
1606
+ appearance: none;
1607
+ margin: 0;
1608
+ outline: 0;
1609
+ }
1610
+ .bs-checkbox-base input::before {
1611
+ font-family: "Material Symbols Outlined", monospace;
1612
+ font-size: 20px;
1613
+ vertical-align: middle;
1614
+ cursor: pointer;
1615
+ color: #555;
1616
+ }
1617
+ .bs-checkbox-base input:focus::before {
1618
+ color: #2A52BE;
1619
+ }
1620
+ .bs-checkbox-base label {
1621
+ display: inline-block;
1622
+ vertical-align: middle;
1623
+ padding: 4px 2px;
1624
+ cursor: pointer;
1625
+ }
1626
+ .bs-select-wrap, .bs-tree-select {
1627
+ position: relative;
1628
+ outline: 0;
1629
+ }
1630
+ .bs-select-wrap:focus > .selected, .bs-tree-select:focus > .selected {
1631
+ border-color: #2A52BE;
1632
+ }
1633
+ .bs-select-wrap .selected, .bs-tree-select .selected {
1634
+ padding: 0 8px;
1635
+ min-width: 50px;
1636
+ cursor: pointer;
1637
+ display: flex;
1638
+ }
1639
+ .bs-select-wrap .selected .label, .bs-tree-select .selected .label {
1640
+ flex-grow: 1;
1641
+ white-space: nowrap;
1642
+ }
1643
+ .bs-select-wrap .selected .dropdown-btn, .bs-tree-select .selected .dropdown-btn {
1644
+ font-family: "Material Symbols Outlined", monospace;
1645
+ margin-right: -4px;
1646
+ margin-left: 4px;
1647
+ user-select: none;
1648
+ transition: transform 0.2s linear;
1649
+ }
1650
+ .bs-select-wrap.popup-open .dropdown-btn, .popup-open.bs-tree-select .dropdown-btn {
1651
+ transform: rotate(180deg);
1652
+ }
1653
+ .bs-clickable {
1654
+ user-select: none;
1655
+ cursor: pointer;
1656
+ }
1657
+ .bs-clickable:hover {
1658
+ filter: opacity(75%);
1659
+ }
1660
+ .bs-clickable:active {
1661
+ filter: opacity(50%);
1662
+ }
1663
+ .bs-clickable.disabled {
1664
+ filter: opacity(40%);
1665
+ }
1666
+ .component-shadow-base {
1667
+ box-shadow: 2px 2px 8px #eee;
1668
+ }
1669
+ .font-icon {
1670
+ font-family: "Material Symbols Outlined", monospace;
1671
+ font-size: 1rem;
1672
+ }
1673
+ .fade-enter-active,
1674
+ .fade-leave-active {
1675
+ transition: opacity 0.3s;
1676
+ }
1677
+ .fade-enter,
1678
+ .fade-leave-to {
1679
+ opacity: 0;
1680
+ }:root {
1681
+ --font-size: 13px;
1682
+ --font-size-input: 12px;
1683
+ }
1684
+ body {
1685
+ font-size: var(--font-size);
1686
+ }
1687
+ input {
1688
+ font-size: var(--font-size-input);
1689
+ padding-top: 2px;
1690
+ }
1691
+ textarea {
1692
+ font-size: var(--font-size-input);
1693
+ }
1694
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap, .bs-text-area {
1695
+ display: inline-flex;
1696
+ flex-direction: column;
1697
+ align-items: flex-start;
1698
+ justify-content: left;
1699
+ }
1700
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message, .bs-text-area .message {
1701
+ margin-top: 4px;
1702
+ font-size: 0.9em;
1703
+ }
1704
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base, .bs-text-area .input-area {
1705
+ border: 1px solid #DBE0EF;
1706
+ border-radius: 4px;
1707
+ height: 28px;
1708
+ display: inline-flex;
1709
+ align-items: center;
1710
+ justify-content: left;
1711
+ }
1712
+ .bs-input-base input, .bs-text-area .input-area input {
1713
+ border: 0;
1714
+ outline: 0;
1715
+ align-self: stretch;
1716
+ flex-grow: 1;
1717
+ padding: 0 8px;
1718
+ background-color: transparent;
1719
+ }
1720
+ .bs-input-base textarea, .bs-text-area .input-area textarea {
1721
+ border: 0;
1722
+ border-radius: 4px;
1723
+ outline: 0;
1724
+ align-self: stretch;
1725
+ flex-grow: 1;
1726
+ padding: 8px;
1727
+ line-height: 1.4;
1728
+ font-family: sans-serif;
1729
+ }
1730
+ .bs-input-base:has(:focus), .bs-text-area .input-area:has(:focus) {
1731
+ border-color: #2A52BE;
1732
+ }
1733
+ .bs-checkbox-base {
1734
+ display: inline-block;
1735
+ color: #555;
1736
+ }
1737
+ .bs-checkbox-base input {
1738
+ appearance: none;
1739
+ margin: 0;
1740
+ outline: 0;
1741
+ }
1742
+ .bs-checkbox-base input::before {
1743
+ font-family: "Material Symbols Outlined", monospace;
1744
+ font-size: 20px;
1745
+ vertical-align: middle;
1746
+ cursor: pointer;
1747
+ color: #555;
1748
+ }
1749
+ .bs-checkbox-base input:focus::before {
1750
+ color: #2A52BE;
1751
+ }
1752
+ .bs-checkbox-base label {
1753
+ display: inline-block;
1754
+ vertical-align: middle;
1755
+ padding: 4px 2px;
1756
+ cursor: pointer;
1757
+ }
1758
+ .bs-select-wrap {
1759
+ position: relative;
1760
+ outline: 0;
1761
+ }
1762
+ .bs-select-wrap:focus > .selected {
1763
+ border-color: #2A52BE;
1764
+ }
1765
+ .bs-select-wrap .selected {
1766
+ padding: 0 8px;
1767
+ min-width: 50px;
1768
+ cursor: pointer;
1769
+ display: flex;
1770
+ }
1771
+ .bs-select-wrap .selected .label {
1772
+ flex-grow: 1;
1773
+ white-space: nowrap;
1774
+ }
1775
+ .bs-select-wrap .selected .dropdown-btn {
1776
+ font-family: "Material Symbols Outlined", monospace;
1777
+ margin-right: -4px;
1778
+ margin-left: 4px;
1779
+ user-select: none;
1780
+ transition: transform 0.2s linear;
1781
+ }
1782
+ .bs-select-wrap.popup-open .dropdown-btn {
1783
+ transform: rotate(180deg);
1784
+ }
1785
+ .bs-clickable {
1786
+ user-select: none;
1787
+ cursor: pointer;
1788
+ }
1789
+ .bs-clickable:hover {
1790
+ filter: opacity(75%);
1791
+ }
1792
+ .bs-clickable:active {
1793
+ filter: opacity(50%);
1794
+ }
1795
+ .bs-clickable.disabled {
1796
+ filter: opacity(40%);
1797
+ }
1798
+ .component-shadow-base {
1799
+ box-shadow: 2px 2px 8px #eee;
1800
+ }
1801
+ .font-icon {
1802
+ font-family: "Material Symbols Outlined", monospace;
1803
+ font-size: 1rem;
1804
+ }
1805
+ .fade-enter-active,
1806
+ .fade-leave-active {
1807
+ transition: opacity 0.3s;
1808
+ }
1809
+ .fade-enter,
1810
+ .fade-leave-to {
1811
+ opacity: 0;
1812
+ }
1813
+ .bs-text-area .input-area {
1814
+ width: 100%;
1815
+ height: 100%;
1816
+ }:root {
1817
+ --font-size: 13px;
1818
+ --font-size-input: 12px;
1819
+ }
1820
+ body {
1821
+ font-size: var(--font-size);
1822
+ }
1823
+ input {
1824
+ font-size: var(--font-size-input);
1825
+ padding-top: 2px;
1826
+ }
1827
+ textarea {
1828
+ font-size: var(--font-size-input);
1829
+ }
1830
+ :root {
1831
+ --font-size: 13px;
1832
+ --font-size-input: 12px;
1833
+ }
1834
+ body {
1835
+ font-size: var(--font-size);
1836
+ }
1837
+ input {
1838
+ font-size: var(--font-size-input);
1839
+ padding-top: 2px;
1840
+ }
1841
+ textarea {
1842
+ font-size: var(--font-size-input);
1843
+ }
1844
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap {
1845
+ display: inline-flex;
1846
+ flex-direction: column;
1847
+ align-items: flex-start;
1848
+ justify-content: left;
1849
+ }
1850
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message {
1851
+ margin-top: 4px;
1852
+ font-size: 0.9em;
1853
+ }
1854
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base {
1855
+ border: 1px solid #DBE0EF;
1856
+ border-radius: 4px;
1857
+ height: 28px;
1858
+ display: inline-flex;
1859
+ align-items: center;
1860
+ justify-content: left;
1861
+ }
1862
+ .bs-input-base input {
1863
+ border: 0;
1864
+ outline: 0;
1865
+ align-self: stretch;
1866
+ flex-grow: 1;
1867
+ padding: 0 8px;
1868
+ background-color: transparent;
1869
+ }
1870
+ .bs-input-base textarea {
1871
+ border: 0;
1872
+ border-radius: 4px;
1873
+ outline: 0;
1874
+ align-self: stretch;
1875
+ flex-grow: 1;
1876
+ padding: 8px;
1877
+ line-height: 1.4;
1878
+ font-family: sans-serif;
1879
+ }
1880
+ .bs-input-base:has(:focus) {
1881
+ border-color: #2A52BE;
1882
+ }
1883
+ .bs-checkbox-base {
1884
+ display: inline-block;
1885
+ color: #555;
1886
+ }
1887
+ .bs-checkbox-base input {
1888
+ appearance: none;
1889
+ margin: 0;
1890
+ outline: 0;
1891
+ }
1892
+ .bs-checkbox-base input::before {
1893
+ font-family: "Material Symbols Outlined", monospace;
1894
+ font-size: 20px;
1895
+ vertical-align: middle;
1896
+ cursor: pointer;
1897
+ color: #555;
1898
+ }
1899
+ .bs-checkbox-base input:focus::before {
1900
+ color: #2A52BE;
1901
+ }
1902
+ .bs-checkbox-base label {
1903
+ display: inline-block;
1904
+ vertical-align: middle;
1905
+ padding: 4px 2px;
1906
+ cursor: pointer;
1907
+ }
1908
+ .bs-select-wrap {
1909
+ position: relative;
1910
+ outline: 0;
1911
+ }
1912
+ .bs-select-wrap:focus > .selected {
1913
+ border-color: #2A52BE;
1914
+ }
1915
+ .bs-select-wrap .selected {
1916
+ padding: 0 8px;
1917
+ min-width: 50px;
1918
+ cursor: pointer;
1919
+ display: flex;
1920
+ }
1921
+ .bs-select-wrap .selected .label {
1922
+ flex-grow: 1;
1923
+ white-space: nowrap;
1924
+ }
1925
+ .bs-select-wrap .selected .dropdown-btn {
1926
+ font-family: "Material Symbols Outlined", monospace;
1927
+ margin-right: -4px;
1928
+ margin-left: 4px;
1929
+ user-select: none;
1930
+ transition: transform 0.2s linear;
1931
+ }
1932
+ .bs-select-wrap.popup-open .dropdown-btn {
1933
+ transform: rotate(180deg);
1934
+ }
1935
+ .bs-clickable, .page-navigation > span {
1936
+ user-select: none;
1937
+ cursor: pointer;
1938
+ }
1939
+ .bs-clickable:hover, .page-navigation > span:hover {
1940
+ filter: opacity(75%);
1941
+ }
1942
+ .bs-clickable:active, .page-navigation > span:active {
1943
+ filter: opacity(50%);
1944
+ }
1945
+ .bs-clickable.disabled, .page-navigation > span.disabled {
1946
+ filter: opacity(40%);
1947
+ }
1948
+ .component-shadow-base {
1949
+ box-shadow: 2px 2px 8px #eee;
1950
+ }
1951
+ .font-icon {
1952
+ font-family: "Material Symbols Outlined", monospace;
1953
+ font-size: 1rem;
1954
+ }
1955
+ .fade-enter-active,
1956
+ .fade-leave-active {
1957
+ transition: opacity 0.3s;
1958
+ }
1959
+ .fade-enter,
1960
+ .fade-leave-to {
1961
+ opacity: 0;
1962
+ }
1963
+ .page-navigation {
1964
+ padding: 8px;
1965
+ display: flex;
1966
+ align-items: center;
1967
+ justify-content: center;
1968
+ color: #A7B0C7;
1969
+ }
1970
+ .page-navigation > span {
1971
+ padding: 6px;
1972
+ vertical-align: center;
1973
+ }
1974
+ .page-navigation > span.on {
1975
+ color: #2A52BE;
1976
+ }
1977
+ .page-navigation > span:not(.page) {
1978
+ padding: 3px;
1979
+ font-size: 1.4em;
1980
+ }
1981
+ .page-navigation > span.disabled {
1982
+ color: #C1CBE4;
1983
+ }
1984
+ .page-navigation > span:hover {
1985
+ background-color: #FEFEFE;
1986
+ border-radius: 4px;
1987
+ }:root {
1988
+ --font-size: 13px;
1989
+ --font-size-input: 12px;
1990
+ }
1991
+ body {
1992
+ font-size: var(--font-size);
1993
+ }
1994
+ input {
1995
+ font-size: var(--font-size-input);
1996
+ padding-top: 2px;
1997
+ }
1998
+ textarea {
1999
+ font-size: var(--font-size-input);
2000
+ }
2001
+ :root {
2002
+ --font-size: 13px;
2003
+ --font-size-input: 12px;
2004
+ }
2005
+ body {
2006
+ font-size: var(--font-size);
2007
+ }
2008
+ input {
2009
+ font-size: var(--font-size-input);
2010
+ padding-top: 2px;
2011
+ }
2012
+ textarea {
2013
+ font-size: var(--font-size-input);
2014
+ }
2015
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap {
2016
+ display: inline-flex;
2017
+ flex-direction: column;
2018
+ align-items: flex-start;
2019
+ justify-content: left;
2020
+ }
2021
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message {
2022
+ margin-top: 4px;
2023
+ font-size: 0.9em;
2024
+ }
2025
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base {
2026
+ border: 1px solid #DBE0EF;
2027
+ border-radius: 4px;
2028
+ height: 28px;
2029
+ display: inline-flex;
2030
+ align-items: center;
2031
+ justify-content: left;
2032
+ }
2033
+ .bs-input-base input {
2034
+ border: 0;
2035
+ outline: 0;
2036
+ align-self: stretch;
2037
+ flex-grow: 1;
2038
+ padding: 0 8px;
2039
+ background-color: transparent;
2040
+ }
2041
+ .bs-input-base textarea {
2042
+ border: 0;
2043
+ border-radius: 4px;
2044
+ outline: 0;
2045
+ align-self: stretch;
2046
+ flex-grow: 1;
2047
+ padding: 8px;
2048
+ line-height: 1.4;
2049
+ font-family: sans-serif;
2050
+ }
2051
+ .bs-input-base:has(:focus) {
2052
+ border-color: #2A52BE;
2053
+ }
2054
+ .bs-checkbox-base {
2055
+ display: inline-block;
2056
+ color: #555;
2057
+ }
2058
+ .bs-checkbox-base input {
2059
+ appearance: none;
2060
+ margin: 0;
2061
+ outline: 0;
2062
+ }
2063
+ .bs-checkbox-base input::before {
2064
+ font-family: "Material Symbols Outlined", monospace;
2065
+ font-size: 20px;
2066
+ vertical-align: middle;
2067
+ cursor: pointer;
2068
+ color: #555;
2069
+ }
2070
+ .bs-checkbox-base input:focus::before {
2071
+ color: #2A52BE;
2072
+ }
2073
+ .bs-checkbox-base label {
2074
+ display: inline-block;
2075
+ vertical-align: middle;
2076
+ padding: 4px 2px;
2077
+ cursor: pointer;
2078
+ }
2079
+ .bs-select-wrap {
2080
+ position: relative;
2081
+ outline: 0;
2082
+ }
2083
+ .bs-select-wrap:focus > .selected {
2084
+ border-color: #2A52BE;
2085
+ }
2086
+ .bs-select-wrap .selected {
2087
+ padding: 0 8px;
2088
+ min-width: 50px;
2089
+ cursor: pointer;
2090
+ display: flex;
2091
+ }
2092
+ .bs-select-wrap .selected .label {
2093
+ flex-grow: 1;
2094
+ white-space: nowrap;
2095
+ }
2096
+ .bs-select-wrap .selected .dropdown-btn {
2097
+ font-family: "Material Symbols Outlined", monospace;
2098
+ margin-right: -4px;
2099
+ margin-left: 4px;
2100
+ user-select: none;
2101
+ transition: transform 0.2s linear;
2102
+ }
2103
+ .bs-select-wrap.popup-open .dropdown-btn {
2104
+ transform: rotate(180deg);
2105
+ }
2106
+ .bs-clickable {
2107
+ user-select: none;
2108
+ cursor: pointer;
2109
+ }
2110
+ .bs-clickable:hover {
2111
+ filter: opacity(75%);
2112
+ }
2113
+ .bs-clickable:active {
2114
+ filter: opacity(50%);
2115
+ }
2116
+ .bs-clickable.disabled {
2117
+ filter: opacity(40%);
2118
+ }
2119
+ .component-shadow-base {
2120
+ box-shadow: 2px 2px 8px #eee;
2121
+ }
2122
+ .font-icon {
2123
+ font-family: "Material Symbols Outlined", monospace;
2124
+ font-size: 1rem;
2125
+ }
2126
+ .fade-enter-active,
2127
+ .fade-leave-active {
2128
+ transition: opacity 0.3s;
2129
+ }
2130
+ .fade-enter,
2131
+ .fade-leave-to {
2132
+ opacity: 0;
2133
+ }
2134
+ .bs-grid {
2135
+ position: relative;
2136
+ display: flex;
2137
+ flex-direction: column;
2138
+ }
2139
+ .bs-grid > .table-wrap {
2140
+ overflow: auto;
2141
+ flex-grow: 1;
2142
+ }
2143
+ .bs-grid > .table-wrap > table {
2144
+ flex-grow: 1;
2145
+ table-layout: fixed;
2146
+ border-collapse: collapse;
2147
+ }
2148
+ .bs-grid > .table-wrap > table > thead > tr > td, .bs-grid > .table-wrap > table > thead > tr > th, .bs-grid > .table-wrap > table tbody > tr > td, .bs-grid > .table-wrap > table tbody > tr > th {
2149
+ vertical-align: middle;
2150
+ }
2151
+ .bs-grid > .table-wrap > table > thead > tr > td > div, .bs-grid > .table-wrap > table > thead > tr > th > div, .bs-grid > .table-wrap > table tbody > tr > td > div, .bs-grid > .table-wrap > table tbody > tr > th > div {
2152
+ padding: 6px;
2153
+ overflow: hidden;
2154
+ min-height: 1em;
2155
+ }
2156
+ .bs-grid > .table-wrap > table > thead > tr.header-row > .func-cell > div {
2157
+ border-right: 1px solid #DBE0EF;
2158
+ border-bottom: 1px solid #DBE0EF;
2159
+ }
2160
+ .bs-grid > .table-wrap > table > thead > tr.header-row > .func-cell.checkbox {
2161
+ color: #B0B1BA;
2162
+ }
2163
+ .bs-grid > .table-wrap > table > thead > tr.header-row > .func-cell.checkbox.checked {
2164
+ color: #555;
2165
+ }
2166
+ .bs-grid > .table-wrap > table > thead > tr.header-row > th {
2167
+ position: sticky;
2168
+ top: 0;
2169
+ z-index: 1;
2170
+ white-space: nowrap;
2171
+ vertical-align: middle;
2172
+ background-color: #F7F8FA;
2173
+ }
2174
+ .bs-grid > .table-wrap > table > thead > tr.header-row > th > div {
2175
+ border-right: 1px solid #DBE0EF;
2176
+ border-bottom: 1px solid #DBE0EF;
2177
+ height: 35px;
2178
+ text-align: left;
2179
+ }
2180
+ .bs-grid > .table-wrap > table > thead > tr.header-row > th.fixed {
2181
+ z-index: 3;
2182
+ }
2183
+ .bs-grid > .table-wrap > table > tbody > tr > td.fixed {
2184
+ position: sticky;
2185
+ left: 0;
2186
+ z-index: 2;
2187
+ white-space: nowrap;
2188
+ }
2189
+ .bs-grid > .table-wrap > table > tbody > tr.data-row:nth-child(odd) {
2190
+ border-color: #F7F8FA;
2191
+ }
2192
+ .bs-grid > .table-wrap > table > tbody > tr.data-row:nth-child(odd) > td {
2193
+ background-color: #F7F8FA;
2194
+ }
2195
+ .bs-grid > .table-wrap > table > tbody > tr.data-row:nth-child(even) {
2196
+ border-color: white;
2197
+ }
2198
+ .bs-grid > .table-wrap > table > tbody > tr.data-row:nth-child(even) > td {
2199
+ background-color: white;
2200
+ }
2201
+ .bs-grid > .table-wrap > table > tbody > tr > td.func-cell.serial-no {
2202
+ text-align: right;
2203
+ }
2204
+ .bs-grid > .table-wrap > table > tbody > tr > td.func-cell.checkbox {
2205
+ min-width: 30px;
2206
+ color: #B0B1BA;
2207
+ }
2208
+ .bs-grid > .table-wrap > table > tbody > tr > td.func-cell.checkbox.checked {
2209
+ color: #555;
2210
+ }
2211
+ .bs-grid > .table-wrap > table > tbody > tr.data-row.selected > td {
2212
+ background-color: #E8EEFC;
2213
+ }
2214
+ .bs-grid > .table-wrap > table > tbody > tr:not(.selected) + tr.data-row.selected {
2215
+ border-top: 1px solid #91A2D2;
2216
+ border-top-left-radius: 4px;
2217
+ border-top-right-radius: 4px;
2218
+ }
2219
+ .bs-grid > .table-wrap > table > tbody > tr:not(.selected) + tr.data-row.selected > td > div {
2220
+ padding-top: 5px;
2221
+ }
2222
+ .bs-grid > .table-wrap > table > tbody > tr.data-row.selected:has(+ tr.data-row:not(.selected)) {
2223
+ border-bottom: 1px solid #91A2D2;
2224
+ border-bottom-left-radius: 4px;
2225
+ border-bottom-right-radius: 4px;
2226
+ }
2227
+ .bs-grid > .table-wrap > table > tbody > tr.data-row.selected:has(+ tr.data-row:not(.selected)) > td > div {
2228
+ padding-bottom: 5px;
2229
+ }:root {
2230
+ --font-size: 13px;
2231
+ --font-size-input: 12px;
2232
+ }
2233
+ body {
2234
+ font-size: var(--font-size);
2235
+ }
2236
+ input {
2237
+ font-size: var(--font-size-input);
2238
+ padding-top: 2px;
2239
+ }
2240
+ textarea {
2241
+ font-size: var(--font-size-input);
2242
+ }
2243
+ :root {
2244
+ --font-size: 13px;
2245
+ --font-size-input: 12px;
2246
+ }
2247
+ body {
2248
+ font-size: var(--font-size);
2249
+ }
2250
+ input {
2251
+ font-size: var(--font-size-input);
2252
+ padding-top: 2px;
2253
+ }
2254
+ textarea {
2255
+ font-size: var(--font-size-input);
2256
+ }
2257
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap {
2258
+ display: inline-flex;
2259
+ flex-direction: column;
2260
+ align-items: flex-start;
2261
+ justify-content: left;
2262
+ }
2263
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message {
2264
+ margin-top: 4px;
2265
+ font-size: 0.9em;
2266
+ }
2267
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base, .bs-text-filter .input-wrap {
2268
+ border: 1px solid #DBE0EF;
2269
+ border-radius: 4px;
2270
+ height: 28px;
2271
+ display: inline-flex;
2272
+ align-items: center;
2273
+ justify-content: left;
2274
+ }
2275
+ .bs-input-base input, .bs-text-filter .input-wrap input {
2276
+ border: 0;
2277
+ outline: 0;
2278
+ align-self: stretch;
2279
+ flex-grow: 1;
2280
+ padding: 0 8px;
2281
+ background-color: transparent;
2282
+ }
2283
+ .bs-input-base textarea, .bs-text-filter .input-wrap textarea {
2284
+ border: 0;
2285
+ border-radius: 4px;
2286
+ outline: 0;
2287
+ align-self: stretch;
2288
+ flex-grow: 1;
2289
+ padding: 8px;
2290
+ line-height: 1.4;
2291
+ font-family: sans-serif;
2292
+ }
2293
+ .bs-input-base:has(:focus), .bs-text-filter .input-wrap:has(:focus) {
2294
+ border-color: #2A52BE;
2295
+ }
2296
+ .bs-checkbox-base {
2297
+ display: inline-block;
2298
+ color: #555;
2299
+ }
2300
+ .bs-checkbox-base input {
2301
+ appearance: none;
2302
+ margin: 0;
2303
+ outline: 0;
2304
+ }
2305
+ .bs-checkbox-base input::before {
2306
+ font-family: "Material Symbols Outlined", monospace;
2307
+ font-size: 20px;
2308
+ vertical-align: middle;
2309
+ cursor: pointer;
2310
+ color: #555;
2311
+ }
2312
+ .bs-checkbox-base input:focus::before {
2313
+ color: #2A52BE;
2314
+ }
2315
+ .bs-checkbox-base label {
2316
+ display: inline-block;
2317
+ vertical-align: middle;
2318
+ padding: 4px 2px;
2319
+ cursor: pointer;
2320
+ }
2321
+ .bs-select-wrap {
2322
+ position: relative;
2323
+ outline: 0;
2324
+ }
2325
+ .bs-select-wrap:focus > .selected {
2326
+ border-color: #2A52BE;
2327
+ }
2328
+ .bs-select-wrap .selected {
2329
+ padding: 0 8px;
2330
+ min-width: 50px;
2331
+ cursor: pointer;
2332
+ display: flex;
2333
+ }
2334
+ .bs-select-wrap .selected .label {
2335
+ flex-grow: 1;
2336
+ white-space: nowrap;
2337
+ }
2338
+ .bs-select-wrap .selected .dropdown-btn {
2339
+ font-family: "Material Symbols Outlined", monospace;
2340
+ margin-right: -4px;
2341
+ margin-left: 4px;
2342
+ user-select: none;
2343
+ transition: transform 0.2s linear;
2344
+ }
2345
+ .bs-select-wrap.popup-open .dropdown-btn {
2346
+ transform: rotate(180deg);
2347
+ }
2348
+ .bs-clickable {
2349
+ user-select: none;
2350
+ cursor: pointer;
2351
+ }
2352
+ .bs-clickable:hover {
2353
+ filter: opacity(75%);
2354
+ }
2355
+ .bs-clickable:active {
2356
+ filter: opacity(50%);
2357
+ }
2358
+ .bs-clickable.disabled {
2359
+ filter: opacity(40%);
2360
+ }
2361
+ .component-shadow-base {
2362
+ box-shadow: 2px 2px 8px #eee;
2363
+ }
2364
+ .font-icon {
2365
+ font-family: "Material Symbols Outlined", monospace;
2366
+ font-size: 1rem;
2367
+ }
2368
+ .fade-enter-active,
2369
+ .fade-leave-active {
2370
+ transition: opacity 0.3s;
2371
+ }
2372
+ .fade-enter,
2373
+ .fade-leave-to {
2374
+ opacity: 0;
2375
+ }
2376
+ .bs-text-filter {
2377
+ position: relative;
2378
+ display: inline-flex;
2379
+ align-items: center;
2380
+ width: 300px;
2381
+ }
2382
+ .bs-text-filter .filter-items-popup {
2383
+ padding: 4px 0;
2384
+ min-width: 120px;
2385
+ }
2386
+ .bs-text-filter .input-wrap {
2387
+ flex-grow: 1;
2388
+ }
2389
+ .bs-text-filter .input-wrap textarea {
2390
+ resize: none;
2391
+ }:root {
2392
+ --font-size: 13px;
2393
+ --font-size-input: 12px;
2394
+ }
2395
+ body {
2396
+ font-size: var(--font-size);
2397
+ }
2398
+ input {
2399
+ font-size: var(--font-size-input);
2400
+ padding-top: 2px;
2401
+ }
2402
+ textarea {
2403
+ font-size: var(--font-size-input);
2404
+ }
2405
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap, .bs-date-range-filter {
2406
+ display: inline-flex;
2407
+ flex-direction: column;
2408
+ align-items: flex-start;
2409
+ justify-content: left;
2410
+ }
2411
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message, .bs-date-range-filter .message {
2412
+ margin-top: 4px;
2413
+ font-size: 0.9em;
2414
+ }
2415
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base, .bs-date-range-filter .input-area {
2416
+ border: 1px solid #DBE0EF;
2417
+ border-radius: 4px;
2418
+ height: 28px;
2419
+ display: inline-flex;
2420
+ align-items: center;
2421
+ justify-content: left;
2422
+ }
2423
+ .bs-input-base input, .bs-date-range-filter .input-area input {
2424
+ border: 0;
2425
+ outline: 0;
2426
+ align-self: stretch;
2427
+ flex-grow: 1;
2428
+ padding: 0 8px;
2429
+ background-color: transparent;
2430
+ }
2431
+ .bs-input-base textarea, .bs-date-range-filter .input-area textarea {
2432
+ border: 0;
2433
+ border-radius: 4px;
2434
+ outline: 0;
2435
+ align-self: stretch;
2436
+ flex-grow: 1;
2437
+ padding: 8px;
2438
+ line-height: 1.4;
2439
+ font-family: sans-serif;
2440
+ }
2441
+ .bs-input-base:has(:focus), .bs-date-range-filter .input-area:has(:focus) {
2442
+ border-color: #2A52BE;
2443
+ }
2444
+ .bs-checkbox-base {
2445
+ display: inline-block;
2446
+ color: #555;
2447
+ }
2448
+ .bs-checkbox-base input {
2449
+ appearance: none;
2450
+ margin: 0;
2451
+ outline: 0;
2452
+ }
2453
+ .bs-checkbox-base input::before {
2454
+ font-family: "Material Symbols Outlined", monospace;
2455
+ font-size: 20px;
2456
+ vertical-align: middle;
2457
+ cursor: pointer;
2458
+ color: #555;
2459
+ }
2460
+ .bs-checkbox-base input:focus::before {
2461
+ color: #2A52BE;
2462
+ }
2463
+ .bs-checkbox-base label {
2464
+ display: inline-block;
2465
+ vertical-align: middle;
2466
+ padding: 4px 2px;
2467
+ cursor: pointer;
2468
+ }
2469
+ .bs-select-wrap {
2470
+ position: relative;
2471
+ outline: 0;
2472
+ }
2473
+ .bs-select-wrap:focus > .selected {
2474
+ border-color: #2A52BE;
2475
+ }
2476
+ .bs-select-wrap .selected {
2477
+ padding: 0 8px;
2478
+ min-width: 50px;
2479
+ cursor: pointer;
2480
+ display: flex;
2481
+ }
2482
+ .bs-select-wrap .selected .label {
2483
+ flex-grow: 1;
2484
+ white-space: nowrap;
2485
+ }
2486
+ .bs-select-wrap .selected .dropdown-btn {
2487
+ font-family: "Material Symbols Outlined", monospace;
2488
+ margin-right: -4px;
2489
+ margin-left: 4px;
2490
+ user-select: none;
2491
+ transition: transform 0.2s linear;
2492
+ }
2493
+ .bs-select-wrap.popup-open .dropdown-btn {
2494
+ transform: rotate(180deg);
2495
+ }
2496
+ .bs-clickable {
2497
+ user-select: none;
2498
+ cursor: pointer;
2499
+ }
2500
+ .bs-clickable:hover {
2501
+ filter: opacity(75%);
2502
+ }
2503
+ .bs-clickable:active {
2504
+ filter: opacity(50%);
2505
+ }
2506
+ .bs-clickable.disabled {
2507
+ filter: opacity(40%);
2508
+ }
2509
+ .component-shadow-base {
2510
+ box-shadow: 2px 2px 8px #eee;
2511
+ }
2512
+ .font-icon {
2513
+ font-family: "Material Symbols Outlined", monospace;
2514
+ font-size: 1rem;
2515
+ }
2516
+ .fade-enter-active,
2517
+ .fade-leave-active {
2518
+ transition: opacity 0.3s;
2519
+ }
2520
+ .fade-enter,
2521
+ .fade-leave-to {
2522
+ opacity: 0;
2523
+ }
2524
+ .bs-date-range-filter .input-area {
2525
+ width: 100%;
2526
+ display: flex;
2527
+ align-items: center;
2528
+ padding-right: 8px;
2529
+ }
2530
+ .bs-date-range-filter .input-area .font-icon {
2531
+ margin: 0 6px;
2532
+ font-size: 14px;
2533
+ }
2534
+ .bs-date-range-filter .input-area input {
2535
+ padding-left: 0;
2536
+ padding-right: 0;
2537
+ width: 9em;
2538
+ }:root {
2539
+ --font-size: 13px;
2540
+ --font-size-input: 12px;
2541
+ }
2542
+ body {
2543
+ font-size: var(--font-size);
2544
+ }
2545
+ input {
2546
+ font-size: var(--font-size-input);
2547
+ padding-top: 2px;
2548
+ }
2549
+ textarea {
2550
+ font-size: var(--font-size-input);
2551
+ }
2552
+ :root {
2553
+ --font-size: 13px;
2554
+ --font-size-input: 12px;
2555
+ }
2556
+ body {
2557
+ font-size: var(--font-size);
2558
+ }
2559
+ input {
2560
+ font-size: var(--font-size-input);
2561
+ padding-top: 2px;
2562
+ }
2563
+ textarea {
2564
+ font-size: var(--font-size-input);
2565
+ }
2566
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap {
2567
+ display: inline-flex;
2568
+ flex-direction: column;
2569
+ align-items: flex-start;
2570
+ justify-content: left;
2571
+ }
2572
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message {
2573
+ margin-top: 4px;
2574
+ font-size: 0.9em;
2575
+ }
2576
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base {
2577
+ border: 1px solid #DBE0EF;
2578
+ border-radius: 4px;
2579
+ height: 28px;
2580
+ display: inline-flex;
2581
+ align-items: center;
2582
+ justify-content: left;
2583
+ }
2584
+ .bs-input-base input {
2585
+ border: 0;
2586
+ outline: 0;
2587
+ align-self: stretch;
2588
+ flex-grow: 1;
2589
+ padding: 0 8px;
2590
+ background-color: transparent;
2591
+ }
2592
+ .bs-input-base textarea {
2593
+ border: 0;
2594
+ border-radius: 4px;
2595
+ outline: 0;
2596
+ align-self: stretch;
2597
+ flex-grow: 1;
2598
+ padding: 8px;
2599
+ line-height: 1.4;
2600
+ font-family: sans-serif;
2601
+ }
2602
+ .bs-input-base:has(:focus) {
2603
+ border-color: #2A52BE;
2604
+ }
2605
+ .bs-checkbox-base {
2606
+ display: inline-block;
2607
+ color: #555;
2608
+ }
2609
+ .bs-checkbox-base input {
2610
+ appearance: none;
2611
+ margin: 0;
2612
+ outline: 0;
2613
+ }
2614
+ .bs-checkbox-base input::before {
2615
+ font-family: "Material Symbols Outlined", monospace;
2616
+ font-size: 20px;
2617
+ vertical-align: middle;
2618
+ cursor: pointer;
2619
+ color: #555;
2620
+ }
2621
+ .bs-checkbox-base input:focus::before {
2622
+ color: #2A52BE;
2623
+ }
2624
+ .bs-checkbox-base label {
2625
+ display: inline-block;
2626
+ vertical-align: middle;
2627
+ padding: 4px 2px;
2628
+ cursor: pointer;
2629
+ }
2630
+ .bs-select-wrap {
2631
+ position: relative;
2632
+ outline: 0;
2633
+ }
2634
+ .bs-select-wrap:focus > .selected {
2635
+ border-color: #2A52BE;
2636
+ }
2637
+ .bs-select-wrap .selected {
2638
+ padding: 0 8px;
2639
+ min-width: 50px;
2640
+ cursor: pointer;
2641
+ display: flex;
2642
+ }
2643
+ .bs-select-wrap .selected .label {
2644
+ flex-grow: 1;
2645
+ white-space: nowrap;
2646
+ }
2647
+ .bs-select-wrap .selected .dropdown-btn {
2648
+ font-family: "Material Symbols Outlined", monospace;
2649
+ margin-right: -4px;
2650
+ margin-left: 4px;
2651
+ user-select: none;
2652
+ transition: transform 0.2s linear;
2653
+ }
2654
+ .bs-select-wrap.popup-open .dropdown-btn {
2655
+ transform: rotate(180deg);
2656
+ }
2657
+ .bs-clickable {
2658
+ user-select: none;
2659
+ cursor: pointer;
2660
+ }
2661
+ .bs-clickable:hover {
2662
+ filter: opacity(75%);
2663
+ }
2664
+ .bs-clickable:active {
2665
+ filter: opacity(50%);
2666
+ }
2667
+ .bs-clickable.disabled {
2668
+ filter: opacity(40%);
2669
+ }
2670
+ .component-shadow-base {
2671
+ box-shadow: 2px 2px 8px #eee;
2672
+ }
2673
+ .font-icon {
2674
+ font-family: "Material Symbols Outlined", monospace;
2675
+ font-size: 1rem;
2676
+ }
2677
+ .fade-enter-active,
2678
+ .fade-leave-active {
2679
+ transition: opacity 0.3s;
2680
+ }
2681
+ .fade-enter,
2682
+ .fade-leave-to {
2683
+ opacity: 0;
2684
+ }
2685
+ .bs-grid-control {
2686
+ display: flex;
2687
+ align-items: center;
2688
+ color: #8993A4;
2689
+ }
2690
+ .bs-grid-control > div {
2691
+ padding-right: 8px;
2692
+ }
2693
+ .bs-grid-control .bs-select.page-length .selected {
2694
+ height: 18px;
2695
+ border: 0;
2696
+ }:root {
2697
+ --font-size: 13px;
2698
+ --font-size-input: 12px;
2699
+ }
2700
+ body {
2701
+ font-size: var(--font-size);
2702
+ }
2703
+ input {
2704
+ font-size: var(--font-size-input);
2705
+ padding-top: 2px;
2706
+ }
2707
+ textarea {
2708
+ font-size: var(--font-size-input);
2709
+ }
2710
+ :root {
2711
+ --font-size: 13px;
2712
+ --font-size-input: 12px;
2713
+ }
2714
+ body {
2715
+ font-size: var(--font-size);
2716
+ }
2717
+ input {
2718
+ font-size: var(--font-size-input);
2719
+ padding-top: 2px;
2720
+ }
2721
+ textarea {
2722
+ font-size: var(--font-size-input);
2723
+ }
2724
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap {
2725
+ display: inline-flex;
2726
+ flex-direction: column;
2727
+ align-items: flex-start;
2728
+ justify-content: left;
2729
+ }
2730
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message {
2731
+ margin-top: 4px;
2732
+ font-size: 0.9em;
2733
+ }
2734
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base {
2735
+ border: 1px solid #DBE0EF;
2736
+ border-radius: 4px;
2737
+ height: 28px;
2738
+ display: inline-flex;
2739
+ align-items: center;
2740
+ justify-content: left;
2741
+ }
2742
+ .bs-input-base input {
2743
+ border: 0;
2744
+ outline: 0;
2745
+ align-self: stretch;
2746
+ flex-grow: 1;
2747
+ padding: 0 8px;
2748
+ background-color: transparent;
2749
+ }
2750
+ .bs-input-base textarea {
2751
+ border: 0;
2752
+ border-radius: 4px;
2753
+ outline: 0;
2754
+ align-self: stretch;
2755
+ flex-grow: 1;
2756
+ padding: 8px;
2757
+ line-height: 1.4;
2758
+ font-family: sans-serif;
2759
+ }
2760
+ .bs-input-base:has(:focus) {
2761
+ border-color: #2A52BE;
2762
+ }
2763
+ .bs-checkbox-base {
2764
+ display: inline-block;
2765
+ color: #555;
2766
+ }
2767
+ .bs-checkbox-base input {
2768
+ appearance: none;
2769
+ margin: 0;
2770
+ outline: 0;
2771
+ }
2772
+ .bs-checkbox-base input::before {
2773
+ font-family: "Material Symbols Outlined", monospace;
2774
+ font-size: 20px;
2775
+ vertical-align: middle;
2776
+ cursor: pointer;
2777
+ color: #555;
2778
+ }
2779
+ .bs-checkbox-base input:focus::before {
2780
+ color: #2A52BE;
2781
+ }
2782
+ .bs-checkbox-base label {
2783
+ display: inline-block;
2784
+ vertical-align: middle;
2785
+ padding: 4px 2px;
2786
+ cursor: pointer;
2787
+ }
2788
+ .bs-select-wrap {
2789
+ position: relative;
2790
+ outline: 0;
2791
+ }
2792
+ .bs-select-wrap:focus > .selected {
2793
+ border-color: #2A52BE;
2794
+ }
2795
+ .bs-select-wrap .selected {
2796
+ padding: 0 8px;
2797
+ min-width: 50px;
2798
+ cursor: pointer;
2799
+ display: flex;
2800
+ }
2801
+ .bs-select-wrap .selected .label {
2802
+ flex-grow: 1;
2803
+ white-space: nowrap;
2804
+ }
2805
+ .bs-select-wrap .selected .dropdown-btn {
2806
+ font-family: "Material Symbols Outlined", monospace;
2807
+ margin-right: -4px;
2808
+ margin-left: 4px;
2809
+ user-select: none;
2810
+ transition: transform 0.2s linear;
2811
+ }
2812
+ .bs-select-wrap.popup-open .dropdown-btn {
2813
+ transform: rotate(180deg);
2814
+ }
2815
+ .bs-clickable {
2816
+ user-select: none;
2817
+ cursor: pointer;
2818
+ }
2819
+ .bs-clickable:hover {
2820
+ filter: opacity(75%);
2821
+ }
2822
+ .bs-clickable:active {
2823
+ filter: opacity(50%);
2824
+ }
2825
+ .bs-clickable.disabled {
2826
+ filter: opacity(40%);
2827
+ }
2828
+ .component-shadow-base {
2829
+ box-shadow: 2px 2px 8px #eee;
2830
+ }
2831
+ .font-icon {
2832
+ font-family: "Material Symbols Outlined", monospace;
2833
+ font-size: 1rem;
2834
+ }
2835
+ .fade-enter-active,
2836
+ .fade-leave-active {
2837
+ transition: opacity 0.3s;
2838
+ }
2839
+ .fade-enter,
2840
+ .fade-leave-to {
2841
+ opacity: 0;
2842
+ }
2843
+ :root {
2844
+ --font-size: 13px;
2845
+ --font-size-input: 12px;
2846
+ }
2847
+ body {
2848
+ font-size: var(--font-size);
2849
+ }
2850
+ input {
2851
+ font-size: var(--font-size-input);
2852
+ padding-top: 2px;
2853
+ }
2854
+ textarea {
2855
+ font-size: var(--font-size-input);
2856
+ }
2857
+
2858
+ /* Layout Utility */
2859
+ .flex-row, .bs-layout-horizontal, .bs-layout-horizontal-wrap, .bs-tab-sheet .tab-bar .tabs {
2860
+ display: flex;
2861
+ flex-direction: row;
2862
+ }
2863
+ .flex-column, .bs-layout-vertical, .bs-layout-vertical-wrap {
2864
+ display: flex;
2865
+ flex-direction: column;
2866
+ }
2867
+ .flex-wrap, .bs-layout-vertical-wrap, .bs-layout-horizontal-wrap, .bs-tab-sheet .tab-bar .tabs {
2868
+ flex-wrap: wrap;
2869
+ }
2870
+ .flex-grow-0 {
2871
+ flex-grow: 0;
2872
+ }
2873
+ .flex-shrink-0 {
2874
+ flex-shrink: 0;
2875
+ }
2876
+ .flex-grow-1 {
2877
+ flex-grow: 1;
2878
+ }
2879
+ .flex-shrink-1 {
2880
+ flex-shrink: 1;
2881
+ }
2882
+ .flex-grow-2 {
2883
+ flex-grow: 2;
2884
+ }
2885
+ .flex-shrink-2 {
2886
+ flex-shrink: 2;
2887
+ }
2888
+ .flex-grow-3 {
2889
+ flex-grow: 3;
2890
+ }
2891
+ .flex-shrink-3 {
2892
+ flex-shrink: 3;
2893
+ }
2894
+ .flex-grow-4 {
2895
+ flex-grow: 4;
2896
+ }
2897
+ .flex-shrink-4 {
2898
+ flex-shrink: 4;
2899
+ }
2900
+ .flex-grow-5 {
2901
+ flex-grow: 5;
2902
+ }
2903
+ .flex-shrink-5 {
2904
+ flex-shrink: 5;
2905
+ }
2906
+ .flex-grow-6 {
2907
+ flex-grow: 6;
2908
+ }
2909
+ .flex-shrink-6 {
2910
+ flex-shrink: 6;
2911
+ }
2912
+ .flex-grow-7 {
2913
+ flex-grow: 7;
2914
+ }
2915
+ .flex-shrink-7 {
2916
+ flex-shrink: 7;
2917
+ }
2918
+ .flex-grow-8 {
2919
+ flex-grow: 8;
2920
+ }
2921
+ .flex-shrink-8 {
2922
+ flex-shrink: 8;
2923
+ }
2924
+ .gap-0 {
2925
+ gap: 0px;
2926
+ }
2927
+ .gap-1 {
2928
+ gap: 1px;
2929
+ }
2930
+ .gap-2 {
2931
+ gap: 2px;
2932
+ }
2933
+ .gap-3 {
2934
+ gap: 3px;
2935
+ }
2936
+ .gap-4 {
2937
+ gap: 4px;
2938
+ }
2939
+ .gap-5 {
2940
+ gap: 5px;
2941
+ }
2942
+ .gap-6 {
2943
+ gap: 6px;
2944
+ }
2945
+ .gap-7 {
2946
+ gap: 7px;
2947
+ }
2948
+ .gap-8 {
2949
+ gap: 8px;
2950
+ }
2951
+ .gap-9 {
2952
+ gap: 9px;
2953
+ }
2954
+ .gap-10 {
2955
+ gap: 10px;
2956
+ }
2957
+ .gap-11 {
2958
+ gap: 11px;
2959
+ }
2960
+ .gap-12 {
2961
+ gap: 12px;
2962
+ }
2963
+ .gap-13 {
2964
+ gap: 13px;
2965
+ }
2966
+ .gap-14 {
2967
+ gap: 14px;
2968
+ }
2969
+ .gap-15 {
2970
+ gap: 15px;
2971
+ }
2972
+ .gap-16 {
2973
+ gap: 16px;
2974
+ }
2975
+ .gap-17 {
2976
+ gap: 17px;
2977
+ }
2978
+ .gap-18 {
2979
+ gap: 18px;
2980
+ }
2981
+ .gap-19 {
2982
+ gap: 19px;
2983
+ }
2984
+ .gap-20 {
2985
+ gap: 20px;
2986
+ }
2987
+ .gap-21 {
2988
+ gap: 21px;
2989
+ }
2990
+ .gap-22 {
2991
+ gap: 22px;
2992
+ }
2993
+ .gap-23 {
2994
+ gap: 23px;
2995
+ }
2996
+ .gap-24 {
2997
+ gap: 24px;
2998
+ }
2999
+ .gap-25 {
3000
+ gap: 25px;
3001
+ }
3002
+ .gap-26 {
3003
+ gap: 26px;
3004
+ }
3005
+ .gap-27 {
3006
+ gap: 27px;
3007
+ }
3008
+ .gap-28 {
3009
+ gap: 28px;
3010
+ }
3011
+ .gap-29 {
3012
+ gap: 29px;
3013
+ }
3014
+ .gap-30 {
3015
+ gap: 30px;
3016
+ }
3017
+ .gap-31 {
3018
+ gap: 31px;
3019
+ }
3020
+ .gap-32 {
3021
+ gap: 32px;
3022
+ }
3023
+ .gap-33 {
3024
+ gap: 33px;
3025
+ }
3026
+ .gap-34 {
3027
+ gap: 34px;
3028
+ }
3029
+ .gap-35 {
3030
+ gap: 35px;
3031
+ }
3032
+ .gap-36 {
3033
+ gap: 36px;
3034
+ }
3035
+ .gap-37 {
3036
+ gap: 37px;
3037
+ }
3038
+ .gap-38 {
3039
+ gap: 38px;
3040
+ }
3041
+ .gap-39 {
3042
+ gap: 39px;
3043
+ }
3044
+ .gap-40 {
3045
+ gap: 40px;
3046
+ }
3047
+ .gap-41 {
3048
+ gap: 41px;
3049
+ }
3050
+ .gap-42 {
3051
+ gap: 42px;
3052
+ }
3053
+ .gap-43 {
3054
+ gap: 43px;
3055
+ }
3056
+ .gap-44 {
3057
+ gap: 44px;
3058
+ }
3059
+ .gap-45 {
3060
+ gap: 45px;
3061
+ }
3062
+ .gap-46 {
3063
+ gap: 46px;
3064
+ }
3065
+ .gap-47 {
3066
+ gap: 47px;
3067
+ }
3068
+ .gap-48 {
3069
+ gap: 48px;
3070
+ }
3071
+ .gap-49 {
3072
+ gap: 49px;
3073
+ }
3074
+ .gap-50 {
3075
+ gap: 50px;
3076
+ }
3077
+ .gap-51 {
3078
+ gap: 51px;
3079
+ }
3080
+ .gap-52 {
3081
+ gap: 52px;
3082
+ }
3083
+ .gap-53 {
3084
+ gap: 53px;
3085
+ }
3086
+ .gap-54 {
3087
+ gap: 54px;
3088
+ }
3089
+ .gap-55 {
3090
+ gap: 55px;
3091
+ }
3092
+ .gap-56 {
3093
+ gap: 56px;
3094
+ }
3095
+ .gap-57 {
3096
+ gap: 57px;
3097
+ }
3098
+ .gap-58 {
3099
+ gap: 58px;
3100
+ }
3101
+ .gap-59 {
3102
+ gap: 59px;
3103
+ }
3104
+ .gap-60 {
3105
+ gap: 60px;
3106
+ }
3107
+ .gap-61 {
3108
+ gap: 61px;
3109
+ }
3110
+ .gap-62 {
3111
+ gap: 62px;
3112
+ }
3113
+ .gap-63 {
3114
+ gap: 63px;
3115
+ }
3116
+ .gap-64 {
3117
+ gap: 64px;
3118
+ }
3119
+ .flex-align-start {
3120
+ align-items: flex-start;
3121
+ }
3122
+ .flex-align-center {
3123
+ align-items: center;
3124
+ }
3125
+ .flex-align-end {
3126
+ align-items: flex-end;
3127
+ }
3128
+ .flex-content-start {
3129
+ justify-content: flex-start;
3130
+ }
3131
+ .flex-content-center {
3132
+ justify-content: center;
3133
+ }
3134
+ .flex-content-end {
3135
+ justify-content: flex-end;
3136
+ }
3137
+
3138
+ /* Bluesea Layout */
3139
+ .bs-layout-form > div {
3140
+ display: flex;
3141
+ align-items: center;
3142
+ border-bottom: 0.8px solid #DBE0EF;
3143
+ }
3144
+ .bs-layout-form > div > .title {
3145
+ padding: 8px 8px 8px 0;
3146
+ width: 10em;
3147
+ font-weight: 500;
3148
+ line-height: 1.2em;
3149
+ }
3150
+ .bs-layout-form > div > :not(.title) {
3151
+ padding: 8px;
3152
+ width: 10em;
3153
+ flex-grow: 1;
3154
+ }
3155
+ .bs-layout-card > .card-title {
3156
+ padding: 16px 0;
3157
+ border-bottom: 0.8px solid #00234D;
3158
+ font-size: 1.2em;
3159
+ font-weight: 500;
3160
+ }
3161
+ .bs-tab-sheet .tab-bar {
3162
+ width: 100%;
3163
+ border-bottom: 1px solid #DBE0EF;
3164
+ padding: 8px 12px 0 12px;
3165
+ background-color: white;
3166
+ }
3167
+ .bs-tab-sheet .tab-bar .tabs .tab {
3168
+ padding: 8px;
3169
+ color: #B0B1BA;
3170
+ border-bottom: 2px solid transparent;
3171
+ margin-bottom: -1px;
3172
+ white-space: nowrap;
3173
+ }
3174
+ .bs-tab-sheet .tab-bar .tabs .tab.selected {
3175
+ color: #2A52BE;
3176
+ border-color: #2A52BE;
3177
+ }
3178
+ .bs-tab-sheet.fixed-tab .tab-bar {
3179
+ position: fixed;
3180
+ z-index: 5;
3181
+ }:root {
3182
+ --font-size: 13px;
3183
+ --font-size-input: 12px;
3184
+ }
3185
+ body {
3186
+ font-size: var(--font-size);
3187
+ }
3188
+ input {
3189
+ font-size: var(--font-size-input);
3190
+ padding-top: 2px;
3191
+ }
3192
+ textarea {
3193
+ font-size: var(--font-size-input);
3194
+ }
3195
+
3196
+ /* Layout Utility */
3197
+ .flex-row, .bs-layout-horizontal, .bs-tree-row .row-caption, .bs-layout-horizontal-wrap {
3198
+ display: flex;
3199
+ flex-direction: row;
3200
+ }
3201
+ .flex-column, .bs-layout-vertical, .bs-layout-vertical-wrap {
3202
+ display: flex;
3203
+ flex-direction: column;
3204
+ }
3205
+ .flex-wrap, .bs-layout-vertical-wrap, .bs-layout-horizontal-wrap {
3206
+ flex-wrap: wrap;
3207
+ }
3208
+ .flex-grow-0 {
3209
+ flex-grow: 0;
3210
+ }
3211
+ .flex-shrink-0 {
3212
+ flex-shrink: 0;
3213
+ }
3214
+ .flex-grow-1 {
3215
+ flex-grow: 1;
3216
+ }
3217
+ .flex-shrink-1 {
3218
+ flex-shrink: 1;
3219
+ }
3220
+ .flex-grow-2 {
3221
+ flex-grow: 2;
3222
+ }
3223
+ .flex-shrink-2 {
3224
+ flex-shrink: 2;
3225
+ }
3226
+ .flex-grow-3 {
3227
+ flex-grow: 3;
3228
+ }
3229
+ .flex-shrink-3 {
3230
+ flex-shrink: 3;
3231
+ }
3232
+ .flex-grow-4 {
3233
+ flex-grow: 4;
3234
+ }
3235
+ .flex-shrink-4 {
3236
+ flex-shrink: 4;
3237
+ }
3238
+ .flex-grow-5 {
3239
+ flex-grow: 5;
3240
+ }
3241
+ .flex-shrink-5 {
3242
+ flex-shrink: 5;
3243
+ }
3244
+ .flex-grow-6 {
3245
+ flex-grow: 6;
3246
+ }
3247
+ .flex-shrink-6 {
3248
+ flex-shrink: 6;
3249
+ }
3250
+ .flex-grow-7 {
3251
+ flex-grow: 7;
3252
+ }
3253
+ .flex-shrink-7 {
3254
+ flex-shrink: 7;
3255
+ }
3256
+ .flex-grow-8 {
3257
+ flex-grow: 8;
3258
+ }
3259
+ .flex-shrink-8 {
3260
+ flex-shrink: 8;
3261
+ }
3262
+ .gap-0 {
3263
+ gap: 0px;
3264
+ }
3265
+ .gap-1 {
3266
+ gap: 1px;
3267
+ }
3268
+ .gap-2 {
3269
+ gap: 2px;
3270
+ }
3271
+ .gap-3 {
3272
+ gap: 3px;
3273
+ }
3274
+ .gap-4 {
3275
+ gap: 4px;
3276
+ }
3277
+ .gap-5 {
3278
+ gap: 5px;
3279
+ }
3280
+ .gap-6 {
3281
+ gap: 6px;
3282
+ }
3283
+ .gap-7 {
3284
+ gap: 7px;
3285
+ }
3286
+ .gap-8 {
3287
+ gap: 8px;
3288
+ }
3289
+ .gap-9 {
3290
+ gap: 9px;
3291
+ }
3292
+ .gap-10 {
3293
+ gap: 10px;
3294
+ }
3295
+ .gap-11 {
3296
+ gap: 11px;
3297
+ }
3298
+ .gap-12 {
3299
+ gap: 12px;
3300
+ }
3301
+ .gap-13 {
3302
+ gap: 13px;
3303
+ }
3304
+ .gap-14 {
3305
+ gap: 14px;
3306
+ }
3307
+ .gap-15 {
3308
+ gap: 15px;
3309
+ }
3310
+ .gap-16 {
3311
+ gap: 16px;
3312
+ }
3313
+ .gap-17 {
3314
+ gap: 17px;
3315
+ }
3316
+ .gap-18 {
3317
+ gap: 18px;
3318
+ }
3319
+ .gap-19 {
3320
+ gap: 19px;
3321
+ }
3322
+ .gap-20 {
3323
+ gap: 20px;
3324
+ }
3325
+ .gap-21 {
3326
+ gap: 21px;
3327
+ }
3328
+ .gap-22 {
3329
+ gap: 22px;
3330
+ }
3331
+ .gap-23 {
3332
+ gap: 23px;
3333
+ }
3334
+ .gap-24 {
3335
+ gap: 24px;
3336
+ }
3337
+ .gap-25 {
3338
+ gap: 25px;
3339
+ }
3340
+ .gap-26 {
3341
+ gap: 26px;
3342
+ }
3343
+ .gap-27 {
3344
+ gap: 27px;
3345
+ }
3346
+ .gap-28 {
3347
+ gap: 28px;
3348
+ }
3349
+ .gap-29 {
3350
+ gap: 29px;
3351
+ }
3352
+ .gap-30 {
3353
+ gap: 30px;
3354
+ }
3355
+ .gap-31 {
3356
+ gap: 31px;
3357
+ }
3358
+ .gap-32 {
3359
+ gap: 32px;
3360
+ }
3361
+ .gap-33 {
3362
+ gap: 33px;
3363
+ }
3364
+ .gap-34 {
3365
+ gap: 34px;
3366
+ }
3367
+ .gap-35 {
3368
+ gap: 35px;
3369
+ }
3370
+ .gap-36 {
3371
+ gap: 36px;
3372
+ }
3373
+ .gap-37 {
3374
+ gap: 37px;
3375
+ }
3376
+ .gap-38 {
3377
+ gap: 38px;
3378
+ }
3379
+ .gap-39 {
3380
+ gap: 39px;
3381
+ }
3382
+ .gap-40 {
3383
+ gap: 40px;
3384
+ }
3385
+ .gap-41 {
3386
+ gap: 41px;
3387
+ }
3388
+ .gap-42 {
3389
+ gap: 42px;
3390
+ }
3391
+ .gap-43 {
3392
+ gap: 43px;
3393
+ }
3394
+ .gap-44 {
3395
+ gap: 44px;
3396
+ }
3397
+ .gap-45 {
3398
+ gap: 45px;
3399
+ }
3400
+ .gap-46 {
3401
+ gap: 46px;
3402
+ }
3403
+ .gap-47 {
3404
+ gap: 47px;
3405
+ }
3406
+ .gap-48 {
3407
+ gap: 48px;
3408
+ }
3409
+ .gap-49 {
3410
+ gap: 49px;
3411
+ }
3412
+ .gap-50 {
3413
+ gap: 50px;
3414
+ }
3415
+ .gap-51 {
3416
+ gap: 51px;
3417
+ }
3418
+ .gap-52 {
3419
+ gap: 52px;
3420
+ }
3421
+ .gap-53 {
3422
+ gap: 53px;
3423
+ }
3424
+ .gap-54 {
3425
+ gap: 54px;
3426
+ }
3427
+ .gap-55 {
3428
+ gap: 55px;
3429
+ }
3430
+ .gap-56 {
3431
+ gap: 56px;
3432
+ }
3433
+ .gap-57 {
3434
+ gap: 57px;
3435
+ }
3436
+ .gap-58 {
3437
+ gap: 58px;
3438
+ }
3439
+ .gap-59 {
3440
+ gap: 59px;
3441
+ }
3442
+ .gap-60 {
3443
+ gap: 60px;
3444
+ }
3445
+ .gap-61 {
3446
+ gap: 61px;
3447
+ }
3448
+ .gap-62 {
3449
+ gap: 62px;
3450
+ }
3451
+ .gap-63 {
3452
+ gap: 63px;
3453
+ }
3454
+ .gap-64 {
3455
+ gap: 64px;
3456
+ }
3457
+ .flex-align-start {
3458
+ align-items: flex-start;
3459
+ }
3460
+ .flex-align-center {
3461
+ align-items: center;
3462
+ }
3463
+ .flex-align-end {
3464
+ align-items: flex-end;
3465
+ }
3466
+ .flex-content-start {
3467
+ justify-content: flex-start;
3468
+ }
3469
+ .flex-content-center {
3470
+ justify-content: center;
3471
+ }
3472
+ .flex-content-end {
3473
+ justify-content: flex-end;
3474
+ }
3475
+
3476
+ /* Bluesea Layout */
3477
+ .bs-layout-form > div {
3478
+ display: flex;
3479
+ align-items: center;
3480
+ border-bottom: 0.8px solid #DBE0EF;
3481
+ }
3482
+ .bs-layout-form > div > .title {
3483
+ padding: 8px 8px 8px 0;
3484
+ width: 10em;
3485
+ font-weight: 500;
3486
+ line-height: 1.2em;
3487
+ }
3488
+ .bs-layout-form > div > :not(.title) {
3489
+ padding: 8px;
3490
+ width: 10em;
3491
+ flex-grow: 1;
3492
+ }
3493
+ .bs-layout-card > .card-title {
3494
+ padding: 16px 0;
3495
+ border-bottom: 0.8px solid #00234D;
3496
+ font-size: 1.2em;
3497
+ font-weight: 500;
3498
+ }
3499
+ .bs-tree-row {
3500
+ padding: 4px 0;
3501
+ }
3502
+ .bs-tree-row .row-caption {
3503
+ align-items: center;
3504
+ }
3505
+ .bs-tree-row .row-caption .caption {
3506
+ padding: 2px 4px 2px 0;
3507
+ cursor: pointer;
3508
+ user-select: none;
3509
+ }
3510
+ .bs-tree-row .row-caption .caption.selected {
3511
+ color: #2A52BE;
3512
+ font-weight: bold;
3513
+ }
3514
+ .bs-tree-row .child-rows {
3515
+ margin-left: 20px;
3516
+ }:root {
3517
+ --font-size: 13px;
3518
+ --font-size-input: 12px;
3519
+ }
3520
+ body {
3521
+ font-size: var(--font-size);
3522
+ }
3523
+ input {
3524
+ font-size: var(--font-size-input);
3525
+ padding-top: 2px;
3526
+ }
3527
+ textarea {
3528
+ font-size: var(--font-size-input);
3529
+ }
3530
+ :root {
3531
+ --font-size: 13px;
3532
+ --font-size-input: 12px;
3533
+ }
3534
+ body {
3535
+ font-size: var(--font-size);
3536
+ }
3537
+ input {
3538
+ font-size: var(--font-size-input);
3539
+ padding-top: 2px;
3540
+ }
3541
+ textarea {
3542
+ font-size: var(--font-size-input);
3543
+ }
3544
+ .bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap {
3545
+ display: inline-flex;
3546
+ flex-direction: column;
3547
+ align-items: flex-start;
3548
+ justify-content: left;
3549
+ }
3550
+ .bs-box-component-wrap .message, .bs-select-wrap .message, .bs-input-wrap .message {
3551
+ margin-top: 4px;
3552
+ font-size: 0.9em;
3553
+ }
3554
+ .bs-box-component-base, .bs-select-wrap .selected, .bs-input-base {
3555
+ border: 1px solid #DBE0EF;
3556
+ border-radius: 4px;
3557
+ height: 28px;
3558
+ display: inline-flex;
3559
+ align-items: center;
3560
+ justify-content: left;
3561
+ }
3562
+ .bs-input-base input {
3563
+ border: 0;
3564
+ outline: 0;
3565
+ align-self: stretch;
3566
+ flex-grow: 1;
3567
+ padding: 0 8px;
3568
+ background-color: transparent;
3569
+ }
3570
+ .bs-input-base textarea {
3571
+ border: 0;
3572
+ border-radius: 4px;
3573
+ outline: 0;
3574
+ align-self: stretch;
3575
+ flex-grow: 1;
3576
+ padding: 8px;
3577
+ line-height: 1.4;
3578
+ font-family: sans-serif;
3579
+ }
3580
+ .bs-input-base:has(:focus) {
3581
+ border-color: #2A52BE;
3582
+ }
3583
+ .bs-checkbox-base {
3584
+ display: inline-block;
3585
+ color: #555;
3586
+ }
3587
+ .bs-checkbox-base input {
3588
+ appearance: none;
3589
+ margin: 0;
3590
+ outline: 0;
3591
+ }
3592
+ .bs-checkbox-base input::before {
3593
+ font-family: "Material Symbols Outlined", monospace;
3594
+ font-size: 20px;
3595
+ vertical-align: middle;
3596
+ cursor: pointer;
3597
+ color: #555;
3598
+ }
3599
+ .bs-checkbox-base input:focus::before {
3600
+ color: #2A52BE;
3601
+ }
3602
+ .bs-checkbox-base label {
3603
+ display: inline-block;
3604
+ vertical-align: middle;
3605
+ padding: 4px 2px;
3606
+ cursor: pointer;
3607
+ }
3608
+ .bs-select-wrap {
3609
+ position: relative;
3610
+ outline: 0;
3611
+ }
3612
+ .bs-select-wrap:focus > .selected {
3613
+ border-color: #2A52BE;
3614
+ }
3615
+ .bs-select-wrap .selected {
3616
+ padding: 0 8px;
3617
+ min-width: 50px;
3618
+ cursor: pointer;
3619
+ display: flex;
3620
+ }
3621
+ .bs-select-wrap .selected .label {
3622
+ flex-grow: 1;
3623
+ white-space: nowrap;
3624
+ }
3625
+ .bs-select-wrap .selected .dropdown-btn {
3626
+ font-family: "Material Symbols Outlined", monospace;
3627
+ margin-right: -4px;
3628
+ margin-left: 4px;
3629
+ user-select: none;
3630
+ transition: transform 0.2s linear;
3631
+ }
3632
+ .bs-select-wrap.popup-open .dropdown-btn {
3633
+ transform: rotate(180deg);
3634
+ }
3635
+ .bs-clickable {
3636
+ user-select: none;
3637
+ cursor: pointer;
3638
+ }
3639
+ .bs-clickable:hover {
3640
+ filter: opacity(75%);
3641
+ }
3642
+ .bs-clickable:active {
3643
+ filter: opacity(50%);
3644
+ }
3645
+ .bs-clickable.disabled {
3646
+ filter: opacity(40%);
3647
+ }
3648
+ .component-shadow-base {
3649
+ box-shadow: 2px 2px 8px #eee;
3650
+ }
3651
+ .font-icon {
3652
+ font-family: "Material Symbols Outlined", monospace;
3653
+ font-size: 1rem;
3654
+ }
3655
+ .fade-enter-active,
3656
+ .fade-leave-active {
3657
+ transition: opacity 0.3s;
3658
+ }
3659
+ .fade-enter,
3660
+ .fade-leave-to {
3661
+ opacity: 0;
3662
+ }
3663
+ .bs-tree {
3664
+ overflow: auto;
3665
+ }