@bagelink/vue 1.2.115 → 1.2.121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ImportData.vue.d.ts.map +1 -1
- package/dist/components/Spreadsheet/Index.vue.d.ts.map +1 -1
- package/dist/components/Spreadsheet/SpreadsheetTable.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/CodeEditor/CodeTypes.d.ts +12 -3
- package/dist/components/form/inputs/CodeEditor/CodeTypes.d.ts.map +1 -1
- package/dist/components/form/inputs/CodeEditor/Index.vue.d.ts +2 -16
- package/dist/components/form/inputs/CodeEditor/Index.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/CodeEditor/useHighlight.d.ts +31 -0
- package/dist/components/form/inputs/CodeEditor/useHighlight.d.ts.map +1 -0
- package/dist/index.cjs +234 -190
- package/dist/index.mjs +234 -190
- package/dist/style.css +221 -184
- package/package.json +1 -1
- package/src/components/ImportData.vue +97 -71
- package/src/components/Spreadsheet/Index.vue +6 -1
- package/src/components/Spreadsheet/SpreadsheetTable.vue +29 -3
- package/src/components/form/inputs/CodeEditor/CodeTypes.ts +14 -8
- package/src/components/form/inputs/CodeEditor/Index.vue +11 -66
- package/src/components/form/inputs/CodeEditor/useHighlight.ts +76 -0
- package/src/components/layout/Layout.vue +1 -1
- package/src/components/lightbox/index.ts +3 -3
- package/src/styles/inputs.css +148 -137
package/dist/style.css
CHANGED
|
@@ -1412,16 +1412,16 @@ pre code.hljs {
|
|
|
1412
1412
|
background: transparent !important;
|
|
1413
1413
|
}
|
|
1414
1414
|
|
|
1415
|
-
.code-editor-container[data-v-
|
|
1415
|
+
.code-editor-container[data-v-de01e351] {
|
|
1416
1416
|
margin-bottom: 0.5rem;
|
|
1417
1417
|
height: 100%;
|
|
1418
1418
|
}
|
|
1419
|
-
.label[data-v-
|
|
1419
|
+
.label[data-v-de01e351] {
|
|
1420
1420
|
display: block;
|
|
1421
1421
|
text-align: left;
|
|
1422
1422
|
margin-bottom: 0.25rem;
|
|
1423
1423
|
}
|
|
1424
|
-
.code-editor-grandpa[data-v-
|
|
1424
|
+
.code-editor-grandpa[data-v-de01e351] {
|
|
1425
1425
|
background: #22252A;
|
|
1426
1426
|
border-radius: 0.25rem;
|
|
1427
1427
|
width: 100%;
|
|
@@ -1430,17 +1430,17 @@ pre code.hljs {
|
|
|
1430
1430
|
padding: 1ch;
|
|
1431
1431
|
padding-inline-start: 2ch;
|
|
1432
1432
|
}
|
|
1433
|
-
.code-editor-grandpa[data-v-
|
|
1433
|
+
.code-editor-grandpa[data-v-de01e351]:focus-within {
|
|
1434
1434
|
outline: solid 1px var(--border-color, #4f575f);
|
|
1435
1435
|
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.13);
|
|
1436
1436
|
}
|
|
1437
|
-
.editor-content-papa[data-v-
|
|
1437
|
+
.editor-content-papa[data-v-de01e351] {
|
|
1438
1438
|
position: relative;
|
|
1439
1439
|
width: 100%;
|
|
1440
1440
|
padding-bottom: calc(100% - 5lh);
|
|
1441
1441
|
}
|
|
1442
|
-
.code-display[data-v-
|
|
1443
|
-
.code-input[data-v-
|
|
1442
|
+
.code-display[data-v-de01e351],
|
|
1443
|
+
.code-input[data-v-de01e351] {
|
|
1444
1444
|
inset: 0;
|
|
1445
1445
|
margin: 0;
|
|
1446
1446
|
padding: 0;
|
|
@@ -1454,18 +1454,18 @@ pre code.hljs {
|
|
|
1454
1454
|
word-break: keep-all;
|
|
1455
1455
|
text-align: left;
|
|
1456
1456
|
}
|
|
1457
|
-
.code-display[data-v-
|
|
1457
|
+
.code-display[data-v-de01e351] {
|
|
1458
1458
|
position: relative;
|
|
1459
1459
|
color: #fff;
|
|
1460
1460
|
pointer-events: none;
|
|
1461
1461
|
z-index: 1;
|
|
1462
1462
|
}
|
|
1463
|
-
.code-display code[data-v-
|
|
1463
|
+
.code-display code[data-v-de01e351] {
|
|
1464
1464
|
display: block;
|
|
1465
1465
|
background: transparent !important;
|
|
1466
1466
|
padding: 0 !important;
|
|
1467
1467
|
}
|
|
1468
|
-
.code-input[data-v-
|
|
1468
|
+
.code-input[data-v-de01e351] {
|
|
1469
1469
|
position: absolute;
|
|
1470
1470
|
background: transparent;
|
|
1471
1471
|
color: transparent;
|
|
@@ -1475,7 +1475,7 @@ pre code.hljs {
|
|
|
1475
1475
|
outline: none;
|
|
1476
1476
|
z-index: 2;
|
|
1477
1477
|
}
|
|
1478
|
-
.code-input[data-v-
|
|
1478
|
+
.code-input[data-v-de01e351]::selection {
|
|
1479
1479
|
background-color: rgba(36, 102, 188, 0.3);
|
|
1480
1480
|
color: transparent;
|
|
1481
1481
|
}
|
|
@@ -2819,7 +2819,7 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
2819
2819
|
color: var(--bgl-green);
|
|
2820
2820
|
line-height: 0;
|
|
2821
2821
|
}
|
|
2822
|
-
.hideLabel label{
|
|
2822
|
+
.hideLabel label, .hideLabel .label{
|
|
2823
2823
|
font-size: 0 !important;
|
|
2824
2824
|
}
|
|
2825
2825
|
.mapping-table .selectinput-btn:disabled{
|
|
@@ -2829,6 +2829,11 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
2829
2829
|
.field-label{
|
|
2830
2830
|
--pill-height: 20px;
|
|
2831
2831
|
}
|
|
2832
|
+
.popupPreviewSpreadsheet .spreadsheet{
|
|
2833
|
+
width: 100%;
|
|
2834
|
+
overflow: auto;
|
|
2835
|
+
height: calc(100vh - 300px);
|
|
2836
|
+
}
|
|
2832
2837
|
|
|
2833
2838
|
.bgl_bottombar .bgl_btn-flex{
|
|
2834
2839
|
flex-direction: column;
|
|
@@ -2859,18 +2864,18 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
2859
2864
|
color: var(--bgl-primary) !important;
|
|
2860
2865
|
}
|
|
2861
2866
|
|
|
2862
|
-
.layout[data-v-
|
|
2867
|
+
.layout[data-v-7835674f] {
|
|
2863
2868
|
min-height: 100px;
|
|
2864
2869
|
display: grid;
|
|
2865
|
-
gap: var(--
|
|
2866
|
-
grid-template-rows: var(--
|
|
2867
|
-
grid-template-columns: var(--
|
|
2870
|
+
gap: var(--3438906a);
|
|
2871
|
+
grid-template-rows: var(--32967a85);
|
|
2872
|
+
grid-template-columns: var(--4974609e);
|
|
2868
2873
|
}
|
|
2869
2874
|
@media screen and (max-width: 910px) {
|
|
2870
|
-
.layout[data-v-
|
|
2871
|
-
gap: var(--
|
|
2872
|
-
grid-template-rows: var(--
|
|
2873
|
-
grid-template-columns: var(--
|
|
2875
|
+
.layout[data-v-7835674f] {
|
|
2876
|
+
gap: var(--6323f514);
|
|
2877
|
+
grid-template-rows: var(--ed3d458c);
|
|
2878
|
+
grid-template-columns: var(--016c1648);
|
|
2874
2879
|
}
|
|
2875
2880
|
}
|
|
2876
2881
|
|
|
@@ -4531,53 +4536,74 @@ body:has(.bg-dark.is-active) {
|
|
|
4531
4536
|
width: 26px;
|
|
4532
4537
|
}
|
|
4533
4538
|
|
|
4534
|
-
.
|
|
4539
|
+
.row-number[data-v-72033517]{
|
|
4535
4540
|
position: sticky;
|
|
4536
|
-
|
|
4541
|
+
inset-inline-start: 0;
|
|
4542
|
+
background: var(--bgl-gray-80);
|
|
4537
4543
|
z-index: 1;
|
|
4538
4544
|
}
|
|
4539
|
-
.
|
|
4545
|
+
.row-number[data-v-72033517]:before{
|
|
4546
|
+
content: '';
|
|
4547
|
+
position: absolute;
|
|
4548
|
+
inset: -1px;
|
|
4549
|
+
border: 1px solid var(--border-color);
|
|
4550
|
+
}
|
|
4551
|
+
.stickyTop[data-v-72033517]{
|
|
4552
|
+
position: sticky;
|
|
4553
|
+
top: 0px;
|
|
4554
|
+
z-index: 2;
|
|
4555
|
+
}
|
|
4556
|
+
.stickyTop[data-v-72033517]:before{
|
|
4557
|
+
content: '1';
|
|
4558
|
+
position: absolute;
|
|
4559
|
+
display: block;
|
|
4560
|
+
inset: 0;
|
|
4561
|
+
border-bottom: 1px solid var(--border-color);
|
|
4562
|
+
}
|
|
4563
|
+
.fixed-columns[data-v-72033517] {
|
|
4540
4564
|
border-right: 2px solid var(--border-color);
|
|
4541
4565
|
}
|
|
4542
|
-
table[data-v-
|
|
4566
|
+
table[data-v-72033517] {
|
|
4543
4567
|
border-collapse: collapse;
|
|
4544
4568
|
}
|
|
4545
|
-
th[data-v-
|
|
4546
|
-
border: 1px solid var(--border-color);
|
|
4569
|
+
th[data-v-72033517], td[data-v-72033517] {
|
|
4547
4570
|
padding: 0.1rem 0.5rem;
|
|
4548
4571
|
min-width: 80px;
|
|
4549
4572
|
background: var(--bgl-white);
|
|
4550
4573
|
user-select: none;
|
|
4551
4574
|
}
|
|
4552
|
-
th[data-v-
|
|
4575
|
+
th[data-v-72033517] {
|
|
4553
4576
|
background: var(--input-bg);
|
|
4554
4577
|
white-space: nowrap;
|
|
4555
4578
|
position: relative;
|
|
4556
4579
|
padding: 0.25rem 0.5rem;
|
|
4557
4580
|
font-weight: 500;
|
|
4558
4581
|
text-align: start;
|
|
4582
|
+
border-bottom: 1px solid var(--border-color);
|
|
4583
|
+
border-inline-start: 1px solid var(--border-color);
|
|
4559
4584
|
}
|
|
4560
|
-
th .bgl_icon-font[data-v-
|
|
4585
|
+
th .bgl_icon-font[data-v-72033517]{
|
|
4561
4586
|
vertical-align: middle;
|
|
4562
4587
|
}
|
|
4563
|
-
td.selected[data-v-
|
|
4588
|
+
td.selected[data-v-72033517] {
|
|
4564
4589
|
background: var(--bgl-primary-light);
|
|
4565
4590
|
}
|
|
4566
|
-
td.locked[data-v-
|
|
4591
|
+
td.locked[data-v-72033517] {
|
|
4567
4592
|
background: var(--bgl-gray-light);
|
|
4568
4593
|
cursor: default;
|
|
4569
4594
|
}
|
|
4570
|
-
td.locked.selected[data-v-
|
|
4595
|
+
td.locked.selected[data-v-72033517] {
|
|
4571
4596
|
background: var(--bgl-primary-light);
|
|
4572
4597
|
}
|
|
4573
|
-
td[data-v-
|
|
4598
|
+
td[data-v-72033517] {
|
|
4599
|
+
border: 1px solid var(--border-color);
|
|
4574
4600
|
height: 40px;
|
|
4575
4601
|
vertical-align: middle;
|
|
4576
4602
|
}
|
|
4577
|
-
td[data-v-
|
|
4603
|
+
td[data-v-72033517]:has(img){
|
|
4578
4604
|
padding: 0;
|
|
4579
4605
|
}
|
|
4580
|
-
td span[data-v-
|
|
4606
|
+
td span[data-v-72033517]{
|
|
4581
4607
|
display: block;
|
|
4582
4608
|
display: -webkit-box;
|
|
4583
4609
|
max-width: 100%;
|
|
@@ -4587,16 +4613,16 @@ td span[data-v-857ccb8b]{
|
|
|
4587
4613
|
-webkit-line-clamp: 1;
|
|
4588
4614
|
word-break: break-all;
|
|
4589
4615
|
}
|
|
4590
|
-
td.wrap-text[data-v-
|
|
4616
|
+
td.wrap-text[data-v-72033517] {
|
|
4591
4617
|
height: auto;
|
|
4592
4618
|
min-height: 40px;
|
|
4593
4619
|
}
|
|
4594
|
-
td.wrap-text span[data-v-
|
|
4620
|
+
td.wrap-text span[data-v-72033517] {
|
|
4595
4621
|
white-space: normal;
|
|
4596
4622
|
-webkit-line-clamp: unset;
|
|
4597
4623
|
word-break: break-word;
|
|
4598
4624
|
}
|
|
4599
|
-
input[data-v-
|
|
4625
|
+
input[data-v-72033517] {
|
|
4600
4626
|
width: 100%;
|
|
4601
4627
|
border: none;
|
|
4602
4628
|
background: transparent;
|
|
@@ -4605,45 +4631,45 @@ input[data-v-857ccb8b] {
|
|
|
4605
4631
|
min-height: 0;
|
|
4606
4632
|
min-width: 0;
|
|
4607
4633
|
}
|
|
4608
|
-
input[data-v-
|
|
4634
|
+
input[data-v-72033517]:focus {
|
|
4609
4635
|
outline: 2px solid var(--bgl-primary);
|
|
4610
4636
|
outline-offset: 6px;
|
|
4611
4637
|
}
|
|
4612
|
-
th.sortable[data-v-
|
|
4638
|
+
th.sortable[data-v-72033517] {
|
|
4613
4639
|
cursor: pointer;
|
|
4614
4640
|
}
|
|
4615
|
-
.row-number-header[data-v-
|
|
4641
|
+
.row-number-header[data-v-72033517], .row-number[data-v-72033517] {
|
|
4616
4642
|
width: fit-content;
|
|
4617
4643
|
min-width: fit-content !important;
|
|
4618
4644
|
padding: 0.1rem 0.7rem !important;
|
|
4619
4645
|
}
|
|
4620
|
-
td .bgl-checkbox[data-v-
|
|
4646
|
+
td .bgl-checkbox[data-v-72033517]{
|
|
4621
4647
|
margin: 0;
|
|
4622
4648
|
text-align: center;
|
|
4623
4649
|
justify-content: center;
|
|
4624
4650
|
}
|
|
4625
|
-
td[data-v-
|
|
4651
|
+
td[data-v-72033517]:has(.bgl-checkbox){
|
|
4626
4652
|
text-align: center;
|
|
4627
4653
|
background: var(--input-bg);
|
|
4628
4654
|
}
|
|
4629
|
-
td[data-v-
|
|
4655
|
+
td[data-v-72033517]:has(:checked){
|
|
4630
4656
|
background: var(--bgl-primary-light);
|
|
4631
4657
|
}
|
|
4632
|
-
.spreadsheetCellPlaceHolder[data-v-
|
|
4658
|
+
.spreadsheetCellPlaceHolder[data-v-72033517]{
|
|
4633
4659
|
height: 0px;
|
|
4634
4660
|
overflow: hidden;
|
|
4635
4661
|
opacity: 0;
|
|
4636
4662
|
pointer-events: none;
|
|
4637
4663
|
user-select: none;
|
|
4638
4664
|
}
|
|
4639
|
-
.th-content[data-v-
|
|
4665
|
+
.th-content[data-v-72033517] {
|
|
4640
4666
|
position: relative;
|
|
4641
4667
|
display: flex;
|
|
4642
4668
|
align-items: center;
|
|
4643
4669
|
width: 100%;
|
|
4644
4670
|
height: 100%;
|
|
4645
4671
|
}
|
|
4646
|
-
.resize-handle[data-v-
|
|
4672
|
+
.resize-handle[data-v-72033517] {
|
|
4647
4673
|
position: absolute;
|
|
4648
4674
|
right: -8px;
|
|
4649
4675
|
top: 0;
|
|
@@ -4654,13 +4680,17 @@ td[data-v-857ccb8b]:has(:checked){
|
|
|
4654
4680
|
background: transparent;
|
|
4655
4681
|
transition: background 0.2s;
|
|
4656
4682
|
}
|
|
4657
|
-
.resize-handle[data-v-
|
|
4683
|
+
.resize-handle[data-v-72033517]:hover {
|
|
4658
4684
|
background: var(--bgl-primary);
|
|
4659
4685
|
}
|
|
4660
4686
|
|
|
4661
4687
|
/* Spreadsheet container styles */
|
|
4662
|
-
.spreadsheet
|
|
4688
|
+
.spreadsheet {
|
|
4663
4689
|
user-select: none;
|
|
4690
|
+
outline: 1px solid var(--border-color);
|
|
4691
|
+
}
|
|
4692
|
+
body>div:has(.spreadsheet) ::-webkit-scrollbar-track {
|
|
4693
|
+
background: var(--input-bg) !important;
|
|
4664
4694
|
}
|
|
4665
4695
|
|
|
4666
4696
|
.zoomer-debug[data-v-379819e1] {
|
|
@@ -15203,156 +15233,163 @@ to {
|
|
|
15203
15233
|
}input,
|
|
15204
15234
|
textarea,
|
|
15205
15235
|
select {
|
|
15206
|
-
|
|
15207
|
-
|
|
15236
|
+
font-family: inherit;
|
|
15237
|
+
width: 100%;
|
|
15208
15238
|
}.bagel-input-error input,
|
|
15209
15239
|
.bagel-input-error button,
|
|
15210
15240
|
.bagel-input-error textarea {
|
|
15211
|
-
|
|
15241
|
+
outline: 1px solid var(--bgl-red);
|
|
15212
15242
|
}.bagel-input {
|
|
15213
|
-
|
|
15214
|
-
|
|
15215
|
-
|
|
15216
|
-
|
|
15217
|
-
|
|
15218
|
-
|
|
15219
|
-
|
|
15243
|
+
position: relative;
|
|
15244
|
+
display: flex;
|
|
15245
|
+
flex-direction: column;
|
|
15246
|
+
text-align: start;
|
|
15247
|
+
margin-bottom: 0.5rem;
|
|
15248
|
+
width: 100%;
|
|
15249
|
+
color: var(--bgl-text-color);
|
|
15220
15250
|
}.bagel-input::-webkit-input-placeholder .bagel-input label {
|
|
15221
|
-
|
|
15222
|
-
|
|
15223
|
-
|
|
15224
|
-
|
|
15251
|
+
display: block;
|
|
15252
|
+
font-size: var(--label-font-size);
|
|
15253
|
+
margin-bottom: 2px;
|
|
15254
|
+
line-height: 1.3;
|
|
15225
15255
|
}.bagel-input::-moz-placeholder .bagel-input label {
|
|
15226
|
-
|
|
15227
|
-
|
|
15228
|
-
|
|
15229
|
-
|
|
15256
|
+
display: block;
|
|
15257
|
+
font-size: var(--label-font-size);
|
|
15258
|
+
margin-bottom: 2px;
|
|
15259
|
+
line-height: 1.3;
|
|
15230
15260
|
}.bagel-input:-ms-input-placeholder .bagel-input label {
|
|
15231
|
-
|
|
15232
|
-
|
|
15233
|
-
|
|
15234
|
-
|
|
15261
|
+
display: block;
|
|
15262
|
+
font-size: var(--label-font-size);
|
|
15263
|
+
margin-bottom: 2px;
|
|
15264
|
+
line-height: 1.3;
|
|
15235
15265
|
}.bagel-input::-ms-input-placeholder .bagel-input label {
|
|
15236
|
-
|
|
15237
|
-
|
|
15238
|
-
|
|
15239
|
-
|
|
15266
|
+
display: block;
|
|
15267
|
+
font-size: var(--label-font-size);
|
|
15268
|
+
margin-bottom: 2px;
|
|
15269
|
+
line-height: 1.3;
|
|
15240
15270
|
}.bagel-input::placeholder .bagel-input label {
|
|
15241
|
-
|
|
15242
|
-
|
|
15243
|
-
|
|
15244
|
-
|
|
15271
|
+
display: block;
|
|
15272
|
+
font-size: var(--label-font-size);
|
|
15273
|
+
margin-bottom: 2px;
|
|
15274
|
+
line-height: 1.3;
|
|
15245
15275
|
}.bagel-input::-webkit-input-placeholder {
|
|
15246
|
-
|
|
15276
|
+
color: var(--placeholder-color);
|
|
15247
15277
|
}.bagel-input::-moz-placeholder {
|
|
15248
|
-
|
|
15278
|
+
color: var(--placeholder-color);
|
|
15249
15279
|
}.bagel-input:-ms-input-placeholder {
|
|
15250
|
-
|
|
15280
|
+
color: var(--placeholder-color);
|
|
15251
15281
|
}.bagel-input::-ms-input-placeholder {
|
|
15252
|
-
|
|
15282
|
+
color: var(--placeholder-color);
|
|
15253
15283
|
}.bagel-input::placeholder {
|
|
15254
|
-
|
|
15284
|
+
color: var(--placeholder-color);
|
|
15255
15285
|
}.bagel-input label {
|
|
15256
|
-
|
|
15286
|
+
color: var(--label-color);
|
|
15257
15287
|
}.bagel-input input,
|
|
15258
15288
|
.bagel-input select,
|
|
15259
15289
|
.custom-select .input {
|
|
15260
|
-
|
|
15261
|
-
|
|
15290
|
+
height: var(--input-height);
|
|
15291
|
+
font-size: var(--input-font-size);
|
|
15262
15292
|
}.bagel-input input,
|
|
15263
15293
|
.bagel-input textarea,
|
|
15264
15294
|
.bagel-input select,
|
|
15265
15295
|
.custom-select .input {
|
|
15266
|
-
|
|
15267
|
-
|
|
15268
|
-
|
|
15269
|
-
|
|
15270
|
-
|
|
15271
|
-
|
|
15272
|
-
|
|
15296
|
+
background: var(--input-bg);
|
|
15297
|
+
border: none;
|
|
15298
|
+
padding: 0.7rem;
|
|
15299
|
+
border-radius: var(--input-border-radius);
|
|
15300
|
+
color: var(--input-color);
|
|
15301
|
+
min-width: calc(var(--input-height) * 3);
|
|
15302
|
+
width: 100%;
|
|
15273
15303
|
}.bagel-input input::-webkit-input-placeholder,
|
|
15274
15304
|
.bagel-input textarea::-webkit-input-placeholder,
|
|
15275
15305
|
.bagel-input select::-webkit-input-placeholder,
|
|
15276
15306
|
.custom-select .input::-webkit-input-placeholder {
|
|
15277
|
-
|
|
15307
|
+
color: var(--placeholder-color);
|
|
15278
15308
|
}.bagel-input input::-moz-placeholder,
|
|
15279
15309
|
.bagel-input textarea::-moz-placeholder,
|
|
15280
15310
|
.bagel-input select::-moz-placeholder,
|
|
15281
15311
|
.custom-select .input::-moz-placeholder {
|
|
15282
|
-
|
|
15312
|
+
color: var(--placeholder-color);
|
|
15283
15313
|
}.bagel-input input:-ms-input-placeholder,
|
|
15284
15314
|
.bagel-input textarea:-ms-input-placeholder,
|
|
15285
15315
|
.bagel-input select:-ms-input-placeholder,
|
|
15286
15316
|
.custom-select .input:-ms-input-placeholder {
|
|
15287
|
-
|
|
15317
|
+
color: var(--placeholder-color);
|
|
15288
15318
|
}.bagel-input input::-ms-input-placeholder,
|
|
15289
15319
|
.bagel-input textarea::-ms-input-placeholder,
|
|
15290
15320
|
.bagel-input select::-ms-input-placeholder,
|
|
15291
15321
|
.custom-select .input::-ms-input-placeholder {
|
|
15292
|
-
|
|
15322
|
+
color: var(--placeholder-color);
|
|
15293
15323
|
}.bagel-input input::placeholder,
|
|
15294
15324
|
.bagel-input textarea::placeholder,
|
|
15295
15325
|
.bagel-input select::placeholder,
|
|
15296
15326
|
.custom-select .input::placeholder {
|
|
15297
|
-
|
|
15327
|
+
color: var(--placeholder-color);
|
|
15298
15328
|
}.bagel-input.search-wrap {
|
|
15299
|
-
|
|
15300
|
-
|
|
15301
|
-
|
|
15329
|
+
display: flex;
|
|
15330
|
+
flex-direction: row;
|
|
15331
|
+
align-items: center;
|
|
15302
15332
|
}.bagel-input.search-wrap input {
|
|
15303
|
-
|
|
15304
|
-
|
|
15333
|
+
-webkit-padding-end: 2rem;
|
|
15334
|
+
padding-inline-end: 2rem;
|
|
15305
15335
|
}.bagel-input.search-wrap .bgl_icon-font {
|
|
15306
|
-
|
|
15307
|
-
|
|
15336
|
+
-webkit-margin-start: -1.75rem;
|
|
15337
|
+
margin-inline-start: -1.75rem;
|
|
15308
15338
|
}.bagel-input select {
|
|
15309
|
-
|
|
15339
|
+
height: var(--input-height);
|
|
15310
15340
|
}.bagel-input textarea {
|
|
15311
|
-
|
|
15312
|
-
|
|
15313
|
-
|
|
15341
|
+
resize: vertical;
|
|
15342
|
+
min-height: calc(var(--input-height) * 3);
|
|
15343
|
+
line-height: 1.5;
|
|
15314
15344
|
}.bagel-input.wider input {
|
|
15315
|
-
|
|
15345
|
+
min-width: 320px;
|
|
15316
15346
|
}.bagel-input input[type='radio'] {
|
|
15317
|
-
|
|
15318
|
-
|
|
15319
|
-
|
|
15320
|
-
|
|
15347
|
+
padding: 0;
|
|
15348
|
+
width: -webkit-fit-content;
|
|
15349
|
+
width: -moz-fit-content;
|
|
15350
|
+
width: fit-content;
|
|
15321
15351
|
}.bagel-input:focus-within label {
|
|
15322
|
-
|
|
15352
|
+
color: var(--bgl-primary);
|
|
15323
15353
|
}.bagel-input select.no-edit,
|
|
15324
15354
|
.bagel-input input.no-edit,
|
|
15325
15355
|
.bagel-input textarea.no-edit,
|
|
15326
15356
|
.bagel-input .switch.no-edit {
|
|
15327
|
-
|
|
15328
|
-
|
|
15329
|
-
|
|
15357
|
+
pointer-events: none;
|
|
15358
|
+
outline: none;
|
|
15359
|
+
opacity: 0.7;
|
|
15330
15360
|
}.bagel-input label.active {
|
|
15331
|
-
|
|
15361
|
+
color: var(--bgl-primary);
|
|
15332
15362
|
}.inline-80 {
|
|
15333
|
-
|
|
15334
|
-
|
|
15363
|
+
display: inline-block;
|
|
15364
|
+
width: 80%;
|
|
15335
15365
|
}.inline-20 {
|
|
15336
|
-
|
|
15337
|
-
|
|
15366
|
+
display: inline-block;
|
|
15367
|
+
width: 20%;
|
|
15338
15368
|
}.inline-10 {
|
|
15339
|
-
|
|
15340
|
-
|
|
15369
|
+
display: inline-block;
|
|
15370
|
+
width: 20%;
|
|
15341
15371
|
}.inline-50 {
|
|
15342
|
-
|
|
15343
|
-
|
|
15344
|
-
|
|
15372
|
+
display: inline-block;
|
|
15373
|
+
width: 49%;
|
|
15374
|
+
margin: 0 0.5%;
|
|
15345
15375
|
}.custom-select .input {
|
|
15346
|
-
|
|
15347
|
-
|
|
15376
|
+
height: var(--input-height);
|
|
15377
|
+
font-size: var(--input-font-size);
|
|
15348
15378
|
}.custom-select .input {
|
|
15349
|
-
|
|
15350
|
-
|
|
15351
|
-
|
|
15352
|
-
|
|
15353
|
-
|
|
15354
|
-
|
|
15355
|
-
|
|
15379
|
+
background: var(--input-bg);
|
|
15380
|
+
border: none;
|
|
15381
|
+
padding: 0.7rem;
|
|
15382
|
+
border-radius: var(--input-border-radius);
|
|
15383
|
+
color: var(--input-color);
|
|
15384
|
+
min-width: calc(var(--input-height) * 3);
|
|
15385
|
+
width: 100%;
|
|
15386
|
+
}.input-height {
|
|
15387
|
+
height: var(--input-height);
|
|
15388
|
+
}.input-size {
|
|
15389
|
+
height: var(--input-height);
|
|
15390
|
+
min-width: calc(var(--input-height) * 3);
|
|
15391
|
+
margin-bottom: 0.5rem;
|
|
15392
|
+
padding: 0.7rem;
|
|
15356
15393
|
}/* [dir='rtl'] .bagel-input input[type='email'],
|
|
15357
15394
|
[dir='rtl'] .tel-input input[type='tel'] {
|
|
15358
15395
|
direction: ltr;
|
|
@@ -15362,79 +15399,79 @@ select {
|
|
|
15362
15399
|
.bagel-input textarea:focus-visible,
|
|
15363
15400
|
.bagel-input button:focus-visible,
|
|
15364
15401
|
.bgl_btn:focus-visible {
|
|
15365
|
-
|
|
15366
|
-
|
|
15402
|
+
outline-color: var(--bgl-primary-tint);
|
|
15403
|
+
box-shadow: inset 0 0 10px #00000012;
|
|
15367
15404
|
}.bagel-input input:focus,
|
|
15368
15405
|
.bagel-input select:focus,
|
|
15369
15406
|
.bagel-input textarea:focus {
|
|
15370
|
-
|
|
15371
|
-
|
|
15372
|
-
|
|
15407
|
+
outline-color: rgba(0, 0, 0, 0.05);
|
|
15408
|
+
box-shadow: inset 0 0 8px #00000018;
|
|
15409
|
+
outline-color: var(--input-bg);
|
|
15373
15410
|
}.bagel-input .bgl_btn:focus,
|
|
15374
15411
|
.bagel-input button:focus {
|
|
15375
|
-
|
|
15376
|
-
|
|
15412
|
+
outline-color: rgba(0, 0, 0, 0.05);
|
|
15413
|
+
outline-color: var(--input-bg);
|
|
15377
15414
|
}.bagel-input.light-input input,
|
|
15378
15415
|
.bagel-input.light-input textarea,
|
|
15379
15416
|
.bagel-input.light-input select,
|
|
15380
15417
|
.custom-select.light-input .input,
|
|
15381
15418
|
.light-input .selectinput-btn {
|
|
15382
|
-
|
|
15383
|
-
|
|
15384
|
-
|
|
15385
|
-
|
|
15386
|
-
|
|
15419
|
+
background: var(--bgl-popup-bg) !important;
|
|
15420
|
+
box-shadow:
|
|
15421
|
+
0 1px 5px 0 rgba(0, 0, 0, 0.1),
|
|
15422
|
+
0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
|
|
15423
|
+
outline: 1px solid var(--border-color) !important;
|
|
15387
15424
|
}.input.active.light-input,
|
|
15388
15425
|
.bagel-input.light-input input:focus-visible,
|
|
15389
15426
|
.bagel-input.light-input select:focus-visible,
|
|
15390
15427
|
.bagel-input.light-input textarea:focus-visible {
|
|
15391
|
-
|
|
15428
|
+
box-shadow: inset 0 0 2px var(--bgl-popup-text) !important;
|
|
15392
15429
|
}.bagel-input input[type='number']-webkit-inner-spin-button,
|
|
15393
15430
|
.bagel-input input[type='number']::-webkit-outer-spin-button {
|
|
15394
|
-
|
|
15431
|
+
-webkit-appearance: none;
|
|
15395
15432
|
}.label-count-0 label {
|
|
15396
|
-
|
|
15433
|
+
display: none;
|
|
15397
15434
|
}.label-count-0 button.bgl_btn.bgl_flatBtn {
|
|
15398
|
-
|
|
15435
|
+
margin-right: 5px;
|
|
15399
15436
|
}.label-count-0 button.bgl_btn.bgl_flatBtn:hover {
|
|
15400
|
-
|
|
15437
|
+
background: var(--bgl-hover-filter);
|
|
15401
15438
|
}.bagel-input input[type='color'] {
|
|
15402
|
-
|
|
15403
|
-
|
|
15404
|
-
|
|
15405
|
-
|
|
15406
|
-
|
|
15407
|
-
|
|
15408
|
-
|
|
15409
|
-
|
|
15410
|
-
|
|
15411
|
-
|
|
15439
|
+
padding: 0.025rem 0.05rem;
|
|
15440
|
+
display: block;
|
|
15441
|
+
width: var(--input-height);
|
|
15442
|
+
min-width: var(--input-height);
|
|
15443
|
+
height: var(--input-height);
|
|
15444
|
+
border: none;
|
|
15445
|
+
-webkit-appearance: none;
|
|
15446
|
+
-moz-appearance: none;
|
|
15447
|
+
appearance: none;
|
|
15448
|
+
cursor: pointer;
|
|
15412
15449
|
}.bagel-input input[type='color']::-webkit-color-swatch {
|
|
15413
|
-
|
|
15414
|
-
|
|
15415
|
-
|
|
15416
|
-
|
|
15450
|
+
border-radius: var(--input-border-radius);
|
|
15451
|
+
border: none;
|
|
15452
|
+
-webkit-transition: box-shadow 200ms ease;
|
|
15453
|
+
transition: box-shadow 200ms ease;
|
|
15417
15454
|
}.bagel-input input[type='color']::-moz-color-swatch {
|
|
15418
|
-
|
|
15419
|
-
|
|
15420
|
-
|
|
15421
|
-
|
|
15455
|
+
border-radius: var(--input-border-radius);
|
|
15456
|
+
border: none;
|
|
15457
|
+
-moz-transition: box-shadow 200ms ease;
|
|
15458
|
+
transition: box-shadow 200ms ease;
|
|
15422
15459
|
}.bagel-input input[type='color']::-webkit-color-swatch:hover {
|
|
15423
|
-
|
|
15460
|
+
box-shadow: inset 0 0 10px #00000050;
|
|
15424
15461
|
}.bagel-input input[type='color']::-moz-color-swatch:hover {
|
|
15425
|
-
|
|
15462
|
+
box-shadow: inset 0 0 10px #00000050;
|
|
15426
15463
|
}@media screen and (max-width: 910px) {
|
|
15427
|
-
|
|
15428
|
-
|
|
15429
|
-
|
|
15464
|
+
.bagel-input.wider input {
|
|
15465
|
+
min-width: 120px;
|
|
15466
|
+
}
|
|
15430
15467
|
}.pixel {
|
|
15431
|
-
|
|
15432
|
-
|
|
15433
|
-
|
|
15434
|
-
|
|
15435
|
-
|
|
15436
|
-
|
|
15437
|
-
|
|
15468
|
+
width: 0 !important;
|
|
15469
|
+
height: 0 !important;
|
|
15470
|
+
overflow: hidden !important;
|
|
15471
|
+
outline: none !important;
|
|
15472
|
+
position: absolute !important;
|
|
15473
|
+
bottom: 0 !important;
|
|
15474
|
+
left: 50% !important;
|
|
15438
15475
|
}.bgl_btn,
|
|
15439
15476
|
.bgl_flatBtn,
|
|
15440
15477
|
.bgl_btn-icon {
|