@bagelink/vue 0.0.439 → 0.0.447
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/AccordionItem.vue.d.ts.map +1 -1
- package/dist/components/DataPreview.vue.d.ts +6 -0
- package/dist/components/DataPreview.vue.d.ts.map +1 -1
- package/dist/components/Flag.vue.d.ts +16 -0
- package/dist/components/Flag.vue.d.ts.map +1 -0
- package/dist/components/Modal.vue.d.ts.map +1 -1
- package/dist/components/TableSchema.vue.d.ts +6 -5
- package/dist/components/TableSchema.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/FileUpload.vue.d.ts +166 -2
- package/dist/components/form/inputs/FileUpload.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/TelInput.vue.d.ts +165 -0
- package/dist/components/form/inputs/TelInput.vue.d.ts.map +1 -0
- package/dist/components/form/inputs/TextInput.vue.d.ts +2 -5
- package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/index.d.ts +1 -0
- package/dist/components/form/inputs/index.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/layout/Tabs.vue.d.ts.map +1 -1
- package/dist/index.cjs +6513 -1544
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +6513 -1544
- package/dist/style.css +1877 -93
- package/dist/utils/BagelFormUtils.d.ts.map +1 -1
- package/dist/utils/allCountries.d.ts +11 -0
- package/dist/utils/allCountries.d.ts.map +1 -0
- package/package.json +3 -4
- package/src/components/AccordionItem.vue +8 -5
- package/src/components/DataPreview.vue +14 -4
- package/src/components/Flag.vue +1349 -0
- package/src/components/Modal.vue +26 -9
- package/src/components/ModalForm.vue +1 -1
- package/src/components/PageTitle.vue +8 -1
- package/src/components/TableSchema.vue +34 -2
- package/src/components/form/inputs/FileUpload.vue +74 -61
- package/src/components/form/inputs/SelectInput.vue +6 -0
- package/src/components/form/inputs/TelInput.vue +401 -0
- package/src/components/form/inputs/TextInput.vue +16 -53
- package/src/components/form/inputs/index.ts +1 -0
- package/src/components/index.ts +1 -0
- package/src/components/layout/Tabs.vue +1 -0
- package/src/index.ts +1 -0
- package/src/styles/appearance.css +610 -0
- package/src/styles/buttons.css +8 -0
- package/src/styles/layout.css +46 -1
- package/src/styles/mobilLayout.css +37 -0
- package/src/styles/modal.css +5 -2
- package/src/styles/text.css +39 -0
- package/src/utils/BagelFormUtils.ts +11 -1
- package/src/utils/allCountries.ts +337 -0
- package/src/components/whatsapp/form/MsgTemplate.vue +0 -224
- package/src/components/whatsapp/form/TextVariableExamples.vue +0 -79
- package/src/components/whatsapp/index.ts +0 -2
- package/src/components/whatsapp/interfaces.ts +0 -58
|
@@ -86,6 +86,311 @@
|
|
|
86
86
|
pointer-events: all;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
+
.bg-white {
|
|
90
|
+
background: var(--bgl-white) !important;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.color-white {
|
|
94
|
+
color: var(--bgl-white) !important;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.bg-primary {
|
|
98
|
+
background: var(--bgl-primary) !important;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.color-primary {
|
|
102
|
+
color: var(--bgl-primary) !important;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.bg-primary-tint {
|
|
106
|
+
background: var(--bgl-primary-tint) !important;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.color-primary-tint {
|
|
110
|
+
color: var(--bgl-primary-tint) !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.bg-primary-light {
|
|
114
|
+
background: var(--bgl-primary-light) !important;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.color-primary-light {
|
|
118
|
+
color: var(--bgl-primary-light) !important;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.bg-blue-20 {
|
|
122
|
+
background: var(--bgl-blue-20) !important;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.color-blue-20 {
|
|
126
|
+
color: var(--bgl-blue-20) !important;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.bg-blue-dark {
|
|
130
|
+
background: var(--bgl-blue-dark) !important;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.color-blue-dark {
|
|
134
|
+
color: var(--bgl-blue-dark) !important;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.bg-blue-light {
|
|
138
|
+
background: var(--bgl-blue-light) !important;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.color-blue-light {
|
|
142
|
+
color: var(--bgl-blue-light) !important;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.bg-black {
|
|
146
|
+
background: var(--bgl-black) !important;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.color-black {
|
|
150
|
+
color: var(--bgl-black) !important;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.bg-black-tint {
|
|
154
|
+
background: var(--bgl-black-tint) !important;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.color-black-tint {
|
|
158
|
+
color: var(--bgl-black-tint) !important;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.bg-gray {
|
|
162
|
+
background: var(--bgl-gray) !important;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.color-gray {
|
|
166
|
+
color: var(--bgl-gray) !important;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.bg-gray-light {
|
|
170
|
+
background: var(--bgl-gray-light) !important;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.color-gray-light {
|
|
174
|
+
color: var(--bgl-gray-light) !important;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.bg-gray-80 {
|
|
178
|
+
background: var(--bgl-gray-80) !important;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.color-gray-80 {
|
|
182
|
+
color: var(--bgl-gray-80) !important;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.bg-gray-20 {
|
|
186
|
+
background: var(--bgl-gray-20) !important;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.color-gray-20 {
|
|
190
|
+
color: var(--bgl-gray-20) !important;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.bg-pink {
|
|
194
|
+
background: var(--bgl-pink) !important;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.color-pink {
|
|
198
|
+
color: var(--bgl-pink) !important;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.bg-red {
|
|
202
|
+
background: var(--bgl-red) !important;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.color-red {
|
|
206
|
+
color: var(--bgl-red) !important;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.bg-red-tint {
|
|
210
|
+
background: var(--bgl-red-tint) !important;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.color-red-tint {
|
|
214
|
+
color: var(--bgl-red-tint) !important;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.bg-yellow {
|
|
218
|
+
background: var(--bgl-yellow) !important;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.color-yellow {
|
|
222
|
+
color: var(--bgl-yellow) !important;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.bg-yellow-light {
|
|
226
|
+
background: var(--bgl-yellow-light) !important;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.color-yellow-light {
|
|
230
|
+
color: var(--bgl-yellow-light) !important;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.bg-green {
|
|
234
|
+
background: var(--bgl-green) !important;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.color-green {
|
|
238
|
+
color: var(--bgl-green) !important;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.bg-input-white input {
|
|
242
|
+
background: var(--bgl-white) !important;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.color-input-white input {
|
|
246
|
+
color: var(--bgl-white) !important;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.bg-input-primary input {
|
|
250
|
+
background: var(--bgl-primary) !important;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.color-input-primary input {
|
|
254
|
+
color: var(--bgl-primary) !important;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.bg-input-primary-tint input {
|
|
258
|
+
background: var(--bgl-primary-tint) !important;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.color-input-primary-tint input {
|
|
262
|
+
color: var(--bgl-primary-tint) !important;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.bg-input-primary-light input {
|
|
266
|
+
background: var(--bgl-primary-light) !important;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.color-input-primary-light input {
|
|
270
|
+
color: var(--bgl-primary-light) !important;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.bg-input-blue-20 input {
|
|
274
|
+
background: var(--bgl-blue-20) !important;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.color-input-blue-20 input {
|
|
278
|
+
color: var(--bgl-blue-20) !important;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.bg-input-blue-dark input {
|
|
282
|
+
background: var(--bgl-blue-dark) !important;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.color-input-blue-dark input {
|
|
286
|
+
color: var(--bgl-blue-dark) !important;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.bg-input-blue-light input {
|
|
290
|
+
background: var(--bgl-blue-light) !important;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.color-input-blue-light input {
|
|
294
|
+
color: var(--bgl-blue-light) !important;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.bg-input-black input {
|
|
298
|
+
background: var(--bgl-black) !important;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.color-input-black input {
|
|
302
|
+
color: var(--bgl-black) !important;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.bg-input-black-tint input {
|
|
306
|
+
background: var(--bgl-black-tint) !important;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.color-input-black-tint input {
|
|
310
|
+
color: var(--bgl-black-tint) !important;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.bg-input-gray input {
|
|
314
|
+
background: var(--bgl-gray) !important;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.color-input-gray input {
|
|
318
|
+
color: var(--bgl-gray) !important;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.bg-input-gray-light input {
|
|
322
|
+
background: var(--bgl-gray-light) !important;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.color-input-gray-light input {
|
|
326
|
+
color: var(--bgl-gray-light) !important;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.bg-input-gray-80 input {
|
|
330
|
+
background: var(--bgl-gray-80) !important;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.color-input-gray-80 input {
|
|
334
|
+
color: var(--bgl-gray-80) !important;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.bg-input-gray-20 input {
|
|
338
|
+
background: var(--bgl-gray-20) !important;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.color-input-gray-20 input {
|
|
342
|
+
color: var(--bgl-gray-20) !important;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.bg-input-pink input {
|
|
346
|
+
background: var(--bgl-pink) !important;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.color-input-pink input {
|
|
350
|
+
color: var(--bgl-pink) !important;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.bg-input-red input {
|
|
354
|
+
background: var(--bgl-red) !important;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.color-input-red input {
|
|
358
|
+
color: var(--bgl-red) !important;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.bg-input-red-tint input {
|
|
362
|
+
background: var(--bgl-red-tint) !important;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.color-input-red-tint input {
|
|
366
|
+
color: var(--bgl-red-tint) !important;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.bg-input-yellow input {
|
|
370
|
+
background: var(--bgl-yellow) !important;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.color-input-yellow input {
|
|
374
|
+
color: var(--bgl-yellow) !important;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.bg-input-yellow-light input {
|
|
378
|
+
background: var(--bgl-yellow-light) !important;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.color-input-yellow-light input {
|
|
382
|
+
color: var(--bgl-yellow-light) !important;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.bg-input-green input {
|
|
386
|
+
background: var(--bgl-green) !important;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.color-input-green input {
|
|
390
|
+
color: var(--bgl-green) !important;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
|
|
89
394
|
|
|
90
395
|
@media screen and (max-width: 910px) {
|
|
91
396
|
.m_opacity-1 {
|
|
@@ -171,4 +476,309 @@
|
|
|
171
476
|
.m_pointer-events-all {
|
|
172
477
|
pointer-events: all;
|
|
173
478
|
}
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
.m_bg-white {
|
|
482
|
+
background: var(--bgl-white) !important;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.m_color-white {
|
|
486
|
+
color: var(--bgl-white) !important;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.m_bg-primary {
|
|
490
|
+
background: var(--bgl-primary) !important;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.m_color-primary {
|
|
494
|
+
color: var(--bgl-primary) !important;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.m_bg-primary-tint {
|
|
498
|
+
background: var(--bgl-primary-tint) !important;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.m_color-primary-tint {
|
|
502
|
+
color: var(--bgl-primary-tint) !important;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.m_bg-primary-light {
|
|
506
|
+
background: var(--bgl-primary-light) !important;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.m_color-primary-light {
|
|
510
|
+
color: var(--bgl-primary-light) !important;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.m_bg-blue-20 {
|
|
514
|
+
background: var(--bgl-blue-20) !important;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.m_color-blue-20 {
|
|
518
|
+
color: var(--bgl-blue-20) !important;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.m_bg-blue-dark {
|
|
522
|
+
background: var(--bgl-blue-dark) !important;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.m_color-blue-dark {
|
|
526
|
+
color: var(--bgl-blue-dark) !important;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.m_bg-blue-light {
|
|
530
|
+
background: var(--bgl-blue-light) !important;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.m_color-blue-light {
|
|
534
|
+
color: var(--bgl-blue-light) !important;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.m_bg-black {
|
|
538
|
+
background: var(--bgl-black) !important;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.m_color-black {
|
|
542
|
+
color: var(--bgl-black) !important;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.m_bg-black-tint {
|
|
546
|
+
background: var(--bgl-black-tint) !important;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.m_color-black-tint {
|
|
550
|
+
color: var(--bgl-black-tint) !important;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.m_bg-gray {
|
|
554
|
+
background: var(--bgl-gray) !important;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.m_color-gray {
|
|
558
|
+
color: var(--bgl-gray) !important;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.m_bg-gray-light {
|
|
562
|
+
background: var(--bgl-gray-light) !important;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.m_color-gray-light {
|
|
566
|
+
color: var(--bgl-gray-light) !important;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.m_bg-gray-80 {
|
|
570
|
+
background: var(--bgl-gray-80) !important;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.m_color-gray-80 {
|
|
574
|
+
color: var(--bgl-gray-80) !important;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.m_bg-gray-20 {
|
|
578
|
+
background: var(--bgl-gray-20) !important;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
.m_color-gray-20 {
|
|
582
|
+
color: var(--bgl-gray-20) !important;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.m_bg-pink {
|
|
586
|
+
background: var(--bgl-pink) !important;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.m_color-pink {
|
|
590
|
+
color: var(--bgl-pink) !important;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.m_bg-red {
|
|
594
|
+
background: var(--bgl-red) !important;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
.m_color-red {
|
|
598
|
+
color: var(--bgl-red) !important;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.m_bg-red-tint {
|
|
602
|
+
background: var(--bgl-red-tint) !important;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.m_color-red-tint {
|
|
606
|
+
color: var(--bgl-red-tint) !important;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.m_bg-yellow {
|
|
610
|
+
background: var(--bgl-yellow) !important;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.m_color-yellow {
|
|
614
|
+
color: var(--bgl-yellow) !important;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.m_bg-yellow-light {
|
|
618
|
+
background: var(--bgl-yellow-light) !important;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.m_color-yellow-light {
|
|
622
|
+
color: var(--bgl-yellow-light) !important;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.m_bg-green {
|
|
626
|
+
background: var(--bgl-green) !important;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.m_color-green {
|
|
630
|
+
color: var(--bgl-green) !important;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.m_bg-input-white input {
|
|
634
|
+
background: var(--bgl-white) !important;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.m_color-input-white input {
|
|
638
|
+
color: var(--bgl-white) !important;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.m_bg-input-primary input {
|
|
642
|
+
background: var(--bgl-primary) !important;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.m_color-input-primary input {
|
|
646
|
+
color: var(--bgl-primary) !important;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.m_bg-input-primary-tint input {
|
|
650
|
+
background: var(--bgl-primary-tint) !important;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.m_color-input-primary-tint input {
|
|
654
|
+
color: var(--bgl-primary-tint) !important;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.m_bg-input-primary-light input {
|
|
658
|
+
background: var(--bgl-primary-light) !important;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.m_color-input-primary-light input {
|
|
662
|
+
color: var(--bgl-primary-light) !important;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.m_bg-input-blue-20 input {
|
|
666
|
+
background: var(--bgl-blue-20) !important;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.m_color-input-blue-20 input {
|
|
670
|
+
color: var(--bgl-blue-20) !important;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.m_bg-input-blue-dark input {
|
|
674
|
+
background: var(--bgl-blue-dark) !important;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.m_color-input-blue-dark input {
|
|
678
|
+
color: var(--bgl-blue-dark) !important;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.m_bg-input-blue-light input {
|
|
682
|
+
background: var(--bgl-blue-light) !important;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.m_color-input-blue-light input {
|
|
686
|
+
color: var(--bgl-blue-light) !important;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.m_bg-input-black input {
|
|
690
|
+
background: var(--bgl-black) !important;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.m_color-input-black input {
|
|
694
|
+
color: var(--bgl-black) !important;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.m_bg-input-black-tint input {
|
|
698
|
+
background: var(--bgl-black-tint) !important;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.m_color-input-black-tint input {
|
|
702
|
+
color: var(--bgl-black-tint) !important;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.m_bg-input-gray input {
|
|
706
|
+
background: var(--bgl-gray) !important;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.m_color-input-gray input {
|
|
710
|
+
color: var(--bgl-gray) !important;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.m_bg-input-gray-light input {
|
|
714
|
+
background: var(--bgl-gray-light) !important;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.m_color-input-gray-light input {
|
|
718
|
+
color: var(--bgl-gray-light) !important;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.m_bg-input-gray-80 input {
|
|
722
|
+
background: var(--bgl-gray-80) !important;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.m_color-input-gray-80 input {
|
|
726
|
+
color: var(--bgl-gray-80) !important;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.m_bg-input-gray-20 input {
|
|
730
|
+
background: var(--bgl-gray-20) !important;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.m_color-input-gray-20 input {
|
|
734
|
+
color: var(--bgl-gray-20) !important;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.m_bg-input-pink input {
|
|
738
|
+
background: var(--bgl-pink) !important;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.m_color-input-pink input {
|
|
742
|
+
color: var(--bgl-pink) !important;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.m_bg-input-red input {
|
|
746
|
+
background: var(--bgl-red) !important;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.m_color-input-red input {
|
|
750
|
+
color: var(--bgl-red) !important;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.m_bg-input-red-tint input {
|
|
754
|
+
background: var(--bgl-red-tint) !important;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.m_color-input-red-tint input {
|
|
758
|
+
color: var(--bgl-red-tint) !important;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.m_bg-input-yellow input {
|
|
762
|
+
background: var(--bgl-yellow) !important;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.m_color-input-yellow input {
|
|
766
|
+
color: var(--bgl-yellow) !important;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
.m_bg-input-yellow-light input {
|
|
770
|
+
background: var(--bgl-yellow-light) !important;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
.m_color-input-yellow-light input {
|
|
774
|
+
color: var(--bgl-yellow-light) !important;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.m_bg-input-green input {
|
|
778
|
+
background: var(--bgl-green) !important;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.m_color-input-green input {
|
|
782
|
+
color: var(--bgl-green) !important;
|
|
783
|
+
}
|
|
174
784
|
}
|
package/src/styles/buttons.css
CHANGED
|
@@ -69,6 +69,10 @@
|
|
|
69
69
|
border: 1px solid var(--border-color);
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
+
.rotate-180 {
|
|
73
|
+
transform: rotate(180deg);
|
|
74
|
+
}
|
|
75
|
+
|
|
72
76
|
@media screen and (max-width: 910px) {
|
|
73
77
|
.bgl_btn {
|
|
74
78
|
padding: 0 20px;
|
|
@@ -77,4 +81,8 @@
|
|
|
77
81
|
.m_border {
|
|
78
82
|
border: 1px solid var(--border-color);
|
|
79
83
|
}
|
|
84
|
+
|
|
85
|
+
.m_rotate-180 {
|
|
86
|
+
transform: rotate(180deg);
|
|
87
|
+
}
|
|
80
88
|
}
|
package/src/styles/layout.css
CHANGED
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
height: 100vh;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
.round {
|
|
15
|
+
border-radius: var(--btn-border-radius);
|
|
16
|
+
}
|
|
17
|
+
|
|
14
18
|
.justify-items-center {
|
|
15
19
|
justify-items: center;
|
|
16
20
|
}
|
|
@@ -503,6 +507,7 @@
|
|
|
503
507
|
.column-reverse {
|
|
504
508
|
flex-direction: column-reverse;
|
|
505
509
|
}
|
|
510
|
+
|
|
506
511
|
.row {
|
|
507
512
|
flex-direction: row;
|
|
508
513
|
}
|
|
@@ -1205,6 +1210,9 @@
|
|
|
1205
1210
|
.sticky,
|
|
1206
1211
|
.position-sticky {
|
|
1207
1212
|
position: sticky !important;
|
|
1213
|
+
top: 0;
|
|
1214
|
+
align-self: start;
|
|
1215
|
+
|
|
1208
1216
|
}
|
|
1209
1217
|
|
|
1210
1218
|
.flex {
|
|
@@ -1574,7 +1582,6 @@
|
|
|
1574
1582
|
.grid-wrap-4 {
|
|
1575
1583
|
grid-template-columns: repeat(4, 1fr);
|
|
1576
1584
|
height: max-content;
|
|
1577
|
-
|
|
1578
1585
|
}
|
|
1579
1586
|
|
|
1580
1587
|
.grid-wrap-5 {
|
|
@@ -1597,10 +1604,42 @@
|
|
|
1597
1604
|
height: max-content;
|
|
1598
1605
|
}
|
|
1599
1606
|
|
|
1607
|
+
.grid-span-1 {
|
|
1608
|
+
grid-column: span 1;
|
|
1609
|
+
}
|
|
1610
|
+
|
|
1611
|
+
.grid-span-2 {
|
|
1612
|
+
grid-column: span 2;
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
.grid-span-3 {
|
|
1616
|
+
grid-column: span 3;
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
.grid-span-4 {
|
|
1620
|
+
grid-column: span 4;
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
.grid-span-5 {
|
|
1624
|
+
grid-column: span 5;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
.grid-span-6 {
|
|
1628
|
+
grid-column: span 6;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1600
1631
|
.overflow-hidden {
|
|
1601
1632
|
overflow: hidden;
|
|
1602
1633
|
}
|
|
1603
1634
|
|
|
1635
|
+
.overflow {
|
|
1636
|
+
overflow: auto;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
.overflow-unset {
|
|
1640
|
+
overflow: unset;
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1604
1643
|
.overflow-x {
|
|
1605
1644
|
overflow-x: auto;
|
|
1606
1645
|
}
|
|
@@ -1623,6 +1662,12 @@
|
|
|
1623
1662
|
width: 100%;
|
|
1624
1663
|
}
|
|
1625
1664
|
|
|
1665
|
+
.var-line {
|
|
1666
|
+
background: var(--border-color);
|
|
1667
|
+
width: 1px;
|
|
1668
|
+
height: 100%;
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1626
1671
|
.ltr,
|
|
1627
1672
|
.direction-ltr {
|
|
1628
1673
|
direction: ltr;
|