@bagelink/vue 0.0.245 → 0.0.250
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/Btn.vue.d.ts.map +1 -1
- package/dist/components/Drop.vue.d.ts +34 -0
- package/dist/components/Drop.vue.d.ts.map +1 -0
- package/dist/components/FileUploader.vue.d.ts +60 -0
- package/dist/components/FileUploader.vue.d.ts.map +1 -0
- package/dist/components/form/BglField.vue.d.ts.map +1 -1
- package/dist/components/form/BglForm.vue.d.ts.map +1 -1
- package/dist/components/form/ItemRef.vue.d.ts +1 -0
- package/dist/components/form/ItemRef.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DateInput.vue.d.ts +3 -0
- package/dist/components/form/inputs/DateInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/FileUpload.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectField.vue.d.ts +1 -4
- package/dist/components/form/inputs/SelectField.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/TextInput.vue.d.ts +2 -0
- package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
- package/dist/index.cjs +1719 -1700
- package/dist/index.mjs +1719 -1700
- package/dist/style.css +389 -272
- package/package.json +1 -1
- package/src/components/Avatar.vue +1 -1
- package/src/components/Btn.vue +41 -39
- package/src/components/Comments.vue +4 -4
- package/src/components/MaterialIcon.vue +1 -1
- package/src/components/NavBar.vue +5 -5
- package/src/components/TableSchema.vue +2 -2
- package/src/components/form/BglField.vue +21 -6
- package/src/components/form/inputs/DateInput.vue +14 -3
- package/src/components/form/inputs/FileUpload.vue +69 -15
- package/src/components/form/inputs/SelectInput.vue +32 -22
- package/src/components/form/inputs/TableField.vue +4 -4
- package/src/components/form/inputs/TextInput.vue +26 -12
- package/src/components/formkit/FileUploader.vue +1 -1
- package/src/components/formkit/MiscFields.vue +2 -2
- package/src/styles/buttons.css +5 -5
- package/src/styles/dark.css +5 -5
- package/src/styles/inputs.css +4 -4
- package/src/styles/layout.css +170 -39
- package/src/styles/text.css +13 -1
- package/src/styles/theme.css +1 -1
package/dist/style.css
CHANGED
|
@@ -57,10 +57,10 @@
|
|
|
57
57
|
background-color: var(--bgl-bg);
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
-
[dir="rtl"] .top-arrow[data-v-
|
|
60
|
+
[dir="rtl"] .top-arrow[data-v-776ccc02] {
|
|
61
61
|
transform: rotate(180deg);
|
|
62
62
|
}
|
|
63
|
-
.nav-expend[data-v-
|
|
63
|
+
.nav-expend[data-v-776ccc02] {
|
|
64
64
|
text-align: center;
|
|
65
65
|
cursor: pointer;
|
|
66
66
|
background: var(--bgl-white);
|
|
@@ -86,17 +86,17 @@
|
|
|
86
86
|
margin-bottom: 30px;
|
|
87
87
|
}
|
|
88
88
|
*/
|
|
89
|
-
.nav-expend[data-v-
|
|
89
|
+
.nav-expend[data-v-776ccc02] {
|
|
90
90
|
background: var(--bgl-white);
|
|
91
91
|
}
|
|
92
|
-
.nav-expend[data-v-
|
|
92
|
+
.nav-expend[data-v-776ccc02]:hover {
|
|
93
93
|
filter: brightness(95%);
|
|
94
94
|
box-shadow: 0 0 20px 0 var(--bgl-primary-tint);
|
|
95
95
|
}
|
|
96
|
-
.nav-expend[data-v-
|
|
96
|
+
.nav-expend[data-v-776ccc02]:active {
|
|
97
97
|
filter: var(--bgl-active-filter);
|
|
98
98
|
}
|
|
99
|
-
.nav[data-v-
|
|
99
|
+
.nav[data-v-776ccc02] {
|
|
100
100
|
color: var(--bgl-white);
|
|
101
101
|
background: var(--bgl-primary);
|
|
102
102
|
z-index: 100;
|
|
@@ -105,10 +105,10 @@
|
|
|
105
105
|
display: flex;
|
|
106
106
|
flex-direction: column;
|
|
107
107
|
}
|
|
108
|
-
.nav *[data-v-
|
|
108
|
+
.nav *[data-v-776ccc02] {
|
|
109
109
|
user-select: none;
|
|
110
110
|
}
|
|
111
|
-
.nav-button[data-v-
|
|
111
|
+
.nav-button[data-v-776ccc02] {
|
|
112
112
|
text-decoration: none;
|
|
113
113
|
cursor: pointer;
|
|
114
114
|
display: flex;
|
|
@@ -119,11 +119,11 @@
|
|
|
119
119
|
transition: all 0.2s ease;
|
|
120
120
|
pointer-events: none;
|
|
121
121
|
}
|
|
122
|
-
.nav-button[data-v-
|
|
122
|
+
.nav-button[data-v-776ccc02]:hover {
|
|
123
123
|
width: fit-content;
|
|
124
124
|
pointer-events: all;
|
|
125
125
|
}
|
|
126
|
-
.nav-button .
|
|
126
|
+
.nav-button .bgl_icon-font[data-v-776ccc02] {
|
|
127
127
|
font-size: 22px;
|
|
128
128
|
margin: 0.25rem 10px;
|
|
129
129
|
padding: 10px;
|
|
@@ -136,16 +136,16 @@
|
|
|
136
136
|
transition: all 0.2s ease;
|
|
137
137
|
pointer-events: all;
|
|
138
138
|
}
|
|
139
|
-
.nav-button:hover .
|
|
140
|
-
.nav-button.router-link-active .
|
|
139
|
+
.nav-button:hover .bgl_icon-font[data-v-776ccc02],
|
|
140
|
+
.nav-button.router-link-active .bgl_icon-font[data-v-776ccc02] {
|
|
141
141
|
background: var(--bgl-white);
|
|
142
142
|
color: var(--bgl-primary);
|
|
143
143
|
}
|
|
144
|
-
.nav-button:hover .tooltip[data-v-
|
|
144
|
+
.nav-button:hover .tooltip[data-v-776ccc02] {
|
|
145
145
|
opacity: 1;
|
|
146
146
|
pointer-events: all;
|
|
147
147
|
}
|
|
148
|
-
.tooltip[data-v-
|
|
148
|
+
.tooltip[data-v-776ccc02] {
|
|
149
149
|
background-color: var(--bgl-white);
|
|
150
150
|
color: var(--bgl-primary);
|
|
151
151
|
line-height: 1;
|
|
@@ -159,23 +159,23 @@
|
|
|
159
159
|
opacity: 0;
|
|
160
160
|
margin-inline-start: 1rem;
|
|
161
161
|
}
|
|
162
|
-
.tooltip[data-v-
|
|
162
|
+
.tooltip[data-v-776ccc02]:hover {
|
|
163
163
|
filter: brightness(95%);
|
|
164
164
|
}
|
|
165
|
-
.tooltip[data-v-
|
|
165
|
+
.tooltip[data-v-776ccc02]:active {
|
|
166
166
|
filter: brightness(90%);
|
|
167
167
|
}
|
|
168
|
-
.bot-buttons-wrapper[data-v-
|
|
168
|
+
.bot-buttons-wrapper[data-v-776ccc02] {
|
|
169
169
|
margin-top: auto;
|
|
170
170
|
width: 100%;
|
|
171
171
|
}
|
|
172
|
-
.nav-links-wrapper[data-v-
|
|
172
|
+
.nav-links-wrapper[data-v-776ccc02] {
|
|
173
173
|
direction: ltr;
|
|
174
174
|
}
|
|
175
|
-
[dir="rtl"] .nav-links-wrapper[data-v-
|
|
175
|
+
[dir="rtl"] .nav-links-wrapper[data-v-776ccc02] {
|
|
176
176
|
direction: rtl;
|
|
177
177
|
}
|
|
178
|
-
.nav-scroll[data-v-
|
|
178
|
+
.nav-scroll[data-v-776ccc02] {
|
|
179
179
|
overflow-y: scroll;
|
|
180
180
|
width: 50vw;
|
|
181
181
|
direction: rtl;
|
|
@@ -185,30 +185,30 @@
|
|
|
185
185
|
display: flex;
|
|
186
186
|
flex-direction: column;
|
|
187
187
|
}
|
|
188
|
-
.nav[data-v-
|
|
188
|
+
.nav[data-v-776ccc02]::-webkit-scrollbar-thumb {
|
|
189
189
|
background-color: transparent;
|
|
190
190
|
}
|
|
191
|
-
.nav[data-v-
|
|
191
|
+
.nav[data-v-776ccc02]:hover::-webkit-scrollbar-thumb {
|
|
192
192
|
background-color: var(--bgl-gray);
|
|
193
193
|
}
|
|
194
|
-
[dir="rtl"] .nav-scroll[data-v-
|
|
194
|
+
[dir="rtl"] .nav-scroll[data-v-776ccc02] {
|
|
195
195
|
direction: ltr;
|
|
196
196
|
}
|
|
197
|
-
.full-nav[data-v-
|
|
197
|
+
.full-nav[data-v-776ccc02] {
|
|
198
198
|
height: 100%;
|
|
199
199
|
display: flex;
|
|
200
200
|
flex-direction: column;
|
|
201
201
|
}
|
|
202
202
|
@media screen and (min-width: 910px) {
|
|
203
|
-
.nav.open .nav-expend[data-v-
|
|
203
|
+
.nav.open .nav-expend[data-v-776ccc02] {
|
|
204
204
|
margin-inline-start: 189px;
|
|
205
205
|
transform: rotate(180deg);
|
|
206
206
|
}
|
|
207
|
-
.nav.open[data-v-
|
|
207
|
+
.nav.open[data-v-776ccc02] {
|
|
208
208
|
width: 200px;
|
|
209
209
|
text-align: start;
|
|
210
210
|
}
|
|
211
|
-
.nav.open .tooltip[data-v-
|
|
211
|
+
.nav.open .tooltip[data-v-776ccc02] {
|
|
212
212
|
background-color: transparent;
|
|
213
213
|
color: var(--bgl-white);
|
|
214
214
|
padding: 0;
|
|
@@ -217,30 +217,30 @@
|
|
|
217
217
|
opacity: 1;
|
|
218
218
|
margin-inline-start: 0rem;
|
|
219
219
|
}
|
|
220
|
-
.nav.open .nav-button .
|
|
220
|
+
.nav.open .nav-button .bgl_icon-font[data-v-776ccc02] {
|
|
221
221
|
margin: 0;
|
|
222
222
|
background: transparent;
|
|
223
223
|
}
|
|
224
|
-
.nav.open .nav-button[data-v-
|
|
224
|
+
.nav.open .nav-button[data-v-776ccc02] {
|
|
225
225
|
width: 180px;
|
|
226
226
|
border-radius: 10px;
|
|
227
227
|
margin-inline-start: 10px;
|
|
228
228
|
margin-top: 10px;
|
|
229
229
|
margin-bottom: 10px;
|
|
230
230
|
}
|
|
231
|
-
.nav.open .nav-button[data-v-
|
|
232
|
-
.nav.open .nav-button.router-link-active[data-v-
|
|
231
|
+
.nav.open .nav-button[data-v-776ccc02]:hover,
|
|
232
|
+
.nav.open .nav-button.router-link-active[data-v-776ccc02] {
|
|
233
233
|
background: var(--bgl-white);
|
|
234
234
|
color: var(--bgl-primary);
|
|
235
235
|
}
|
|
236
|
-
.nav.open .nav-button[data-v-
|
|
237
|
-
.nav.open .nav-button:hover .tooltip[data-v-
|
|
238
|
-
.nav.open .nav-button.router-link-active .tooltip[data-v-
|
|
236
|
+
.nav.open .nav-button[data-v-776ccc02]:hover,
|
|
237
|
+
.nav.open .nav-button:hover .tooltip[data-v-776ccc02],
|
|
238
|
+
.nav.open .nav-button.router-link-active .tooltip[data-v-776ccc02] {
|
|
239
239
|
color: var(--bgl-primary);
|
|
240
240
|
}
|
|
241
241
|
}
|
|
242
242
|
@media screen and (max-width: 910px) {
|
|
243
|
-
.full-nav[data-v-
|
|
243
|
+
.full-nav[data-v-776ccc02] {
|
|
244
244
|
height: auto;
|
|
245
245
|
display: flex;
|
|
246
246
|
flex-direction: row;
|
|
@@ -249,10 +249,10 @@
|
|
|
249
249
|
inset-inline-end: 0;
|
|
250
250
|
overflow-x: auto;
|
|
251
251
|
}
|
|
252
|
-
.nav.open[data-v-
|
|
252
|
+
.nav.open[data-v-776ccc02] {
|
|
253
253
|
width: initial;
|
|
254
254
|
}
|
|
255
|
-
.nav[data-v-
|
|
255
|
+
.nav[data-v-776ccc02] {
|
|
256
256
|
width: auto;
|
|
257
257
|
display: flex;
|
|
258
258
|
flex-direction: row;
|
|
@@ -260,7 +260,7 @@
|
|
|
260
260
|
overflow-x: auto;
|
|
261
261
|
justify-content: flex-start;
|
|
262
262
|
}
|
|
263
|
-
.tooltip[data-v-
|
|
263
|
+
.tooltip[data-v-776ccc02] {
|
|
264
264
|
opacity: 1;
|
|
265
265
|
background: transparent;
|
|
266
266
|
color: var(--bgl-white);
|
|
@@ -269,25 +269,25 @@
|
|
|
269
269
|
padding: 0;
|
|
270
270
|
margin: 0;
|
|
271
271
|
}
|
|
272
|
-
.nav-button[data-v-
|
|
272
|
+
.nav-button[data-v-776ccc02] {
|
|
273
273
|
flex-direction: column;
|
|
274
274
|
margin: 12px 0.25rem;
|
|
275
275
|
}
|
|
276
|
-
.nav-button .
|
|
276
|
+
.nav-button .bgl_icon-font[data-v-776ccc02] {
|
|
277
277
|
padding: 2px 0 0 0;
|
|
278
278
|
margin: 0;
|
|
279
279
|
height: 30px;
|
|
280
280
|
width: 30px;
|
|
281
281
|
}
|
|
282
|
-
.nav-links-wrapper[data-v-
|
|
282
|
+
.nav-links-wrapper[data-v-776ccc02] {
|
|
283
283
|
display: flex;
|
|
284
284
|
}
|
|
285
|
-
.bot-buttons-wrapper[data-v-
|
|
285
|
+
.bot-buttons-wrapper[data-v-776ccc02] {
|
|
286
286
|
margin-top: 0;
|
|
287
287
|
width: auto;
|
|
288
288
|
display: flex;
|
|
289
289
|
}
|
|
290
|
-
.nav-scroll[data-v-
|
|
290
|
+
.nav-scroll[data-v-776ccc02] {
|
|
291
291
|
overflow-y: visible;
|
|
292
292
|
width: auto;
|
|
293
293
|
direction: auto;
|
|
@@ -298,24 +298,24 @@
|
|
|
298
298
|
flex-direction: row;
|
|
299
299
|
margin-inline-end: auto;
|
|
300
300
|
}
|
|
301
|
-
.nav[data-v-
|
|
301
|
+
.nav[data-v-776ccc02]::-webkit-scrollbar {
|
|
302
302
|
display: none;
|
|
303
303
|
}
|
|
304
|
-
.nav-expend[data-v-
|
|
304
|
+
.nav-expend[data-v-776ccc02] {
|
|
305
305
|
display: none;
|
|
306
306
|
}
|
|
307
307
|
}
|
|
308
308
|
|
|
309
|
-
.loading[data-v-
|
|
309
|
+
.loading[data-v-7a7625e7] {
|
|
310
310
|
border: 1px solid var(--bgl-white);
|
|
311
311
|
border-bottom: 2px solid var(--bgl-white);
|
|
312
|
-
animation: spin-
|
|
312
|
+
animation: spin-7a7625e7 1s linear infinite;
|
|
313
313
|
border-radius: 100px;
|
|
314
314
|
width: 1rem;
|
|
315
315
|
height: 1rem;
|
|
316
316
|
margin: auto;
|
|
317
317
|
}
|
|
318
|
-
@keyframes spin-
|
|
318
|
+
@keyframes spin-7a7625e7 {
|
|
319
319
|
0% {
|
|
320
320
|
transform: rotate(0deg);
|
|
321
321
|
}
|
|
@@ -323,7 +323,7 @@
|
|
|
323
323
|
transform: rotate(360deg);
|
|
324
324
|
}
|
|
325
325
|
}
|
|
326
|
-
.
|
|
326
|
+
.bgl_btn-icon[data-v-7a7625e7] {
|
|
327
327
|
height: var(--btn-height);
|
|
328
328
|
width: var(--btn-height);
|
|
329
329
|
border-radius: 100%;
|
|
@@ -333,97 +333,97 @@
|
|
|
333
333
|
flex-shrink: 0;
|
|
334
334
|
transition: var(--bgl-transition);
|
|
335
335
|
}
|
|
336
|
-
.
|
|
336
|
+
.bgl_btn[data-v-7a7625e7] {
|
|
337
337
|
padding-left: var(--btn-padding);
|
|
338
338
|
padding-right: var(--btn-padding);
|
|
339
339
|
transition: var(--bgl-transition);
|
|
340
340
|
text-decoration: none;
|
|
341
341
|
}
|
|
342
|
-
.
|
|
342
|
+
.bgl_btn[disabled="true"][data-v-7a7625e7] {
|
|
343
343
|
opacity: 0.5;
|
|
344
344
|
cursor: not-allowed;
|
|
345
345
|
}
|
|
346
|
-
.
|
|
346
|
+
.bgl_btn-flex[data-v-7a7625e7] {
|
|
347
347
|
display: flex;
|
|
348
348
|
align-items: center;
|
|
349
349
|
gap: 0.5rem;
|
|
350
350
|
justify-content: center;
|
|
351
351
|
}
|
|
352
|
-
.
|
|
352
|
+
.bgl_btn .bgl_.bgl_icon-font[data-v-7a7625e7] {
|
|
353
353
|
font-size: calc(var(--input-font-size) * 1.3);
|
|
354
354
|
}
|
|
355
|
-
.
|
|
356
|
-
.
|
|
357
|
-
background-color: var(--
|
|
358
|
-
color: var(--
|
|
355
|
+
.bgl_btn[data-v-7a7625e7],
|
|
356
|
+
.bgl_btn-icon[data-v-7a7625e7] {
|
|
357
|
+
background-color: var(--76ea4ab4);
|
|
358
|
+
color: var(--e3fe6ee2);
|
|
359
359
|
}
|
|
360
|
-
.
|
|
361
|
-
.
|
|
360
|
+
.bgl_btn[data-v-7a7625e7]:hover,
|
|
361
|
+
.bgl_btn-icon[data-v-7a7625e7]:hover {
|
|
362
362
|
filter: var(--bgl-hover-filter);
|
|
363
363
|
}
|
|
364
|
-
.
|
|
365
|
-
.
|
|
364
|
+
.bgl_btn[data-v-7a7625e7]:active,
|
|
365
|
+
.bgl_btn-icon[data-v-7a7625e7]:active {
|
|
366
366
|
filter: var(--bgl-active-filter);
|
|
367
367
|
}
|
|
368
|
-
.
|
|
368
|
+
.bgl_btn.bgl_flatBtn[data-v-7a7625e7] {
|
|
369
369
|
padding-left: var(--btn-padding);
|
|
370
370
|
padding-right: var(--btn-padding);
|
|
371
371
|
background: transparent;
|
|
372
372
|
}
|
|
373
|
-
.
|
|
373
|
+
.bgl_btn-icon.bgl_flatBtn[data-v-7a7625e7] {
|
|
374
374
|
background: transparent;
|
|
375
375
|
}
|
|
376
|
-
.
|
|
377
|
-
.
|
|
376
|
+
.bgl_btn.bgl_flatBtn[data-v-7a7625e7]:hover,
|
|
377
|
+
.bgl_btn-icon.bgl_flatBtn[data-v-7a7625e7]:hover {
|
|
378
378
|
filter: var(--bgl-active-filter);
|
|
379
379
|
}
|
|
380
|
-
.
|
|
381
|
-
.
|
|
380
|
+
.bgl_btn.bgl_flatBtn[data-v-7a7625e7]:active,
|
|
381
|
+
.bgl_btn-icon.bgl_flatBtn[data-v-7a7625e7]:active {
|
|
382
382
|
background: var(--bgl-white);
|
|
383
383
|
filter: var(--bgl-hover-filter);
|
|
384
384
|
}
|
|
385
|
-
.
|
|
386
|
-
.
|
|
385
|
+
.bgl_btn.bgl_flatBtn.red[data-v-7a7625e7],
|
|
386
|
+
.bgl_btn-icon.bgl_flatBtn.red[data-v-7a7625e7] {
|
|
387
387
|
color: var(--bgl-red);
|
|
388
388
|
}
|
|
389
|
-
.
|
|
390
|
-
.
|
|
389
|
+
.bgl_btn.bgl_flatBtn.light[data-v-7a7625e7],
|
|
390
|
+
.bgl_btn-icon.bgl_flatBtn.light[data-v-7a7625e7] {
|
|
391
391
|
color: var(--bgl-primary-tint);
|
|
392
392
|
}
|
|
393
|
-
.
|
|
394
|
-
.
|
|
393
|
+
.bgl_btn.bgl_flatBtn.black[data-v-7a7625e7],
|
|
394
|
+
.bgl_btn-icon.bgl_flatBtn.black[data-v-7a7625e7] {
|
|
395
395
|
color: var(--bgl-black);
|
|
396
396
|
}
|
|
397
|
-
.
|
|
398
|
-
.
|
|
397
|
+
.bgl_btn.bgl_flatBtn.gray[data-v-7a7625e7],
|
|
398
|
+
.bgl_btn-icon.bgl_flatBtn.gray[data-v-7a7625e7] {
|
|
399
399
|
color: var(--bgl-gray);
|
|
400
400
|
}
|
|
401
|
-
.
|
|
401
|
+
.bgl_btn.thin[data-v-7a7625e7] {
|
|
402
402
|
padding-left: calc(var(--btn-padding) / 2);
|
|
403
403
|
padding-right: calc(var(--btn-padding) / 2);
|
|
404
404
|
}
|
|
405
|
-
.
|
|
405
|
+
.bgl_btn.round[data-v-7a7625e7] {
|
|
406
406
|
border-radius: calc(var(--btn-border-radius) * 2);
|
|
407
407
|
}
|
|
408
|
-
.
|
|
408
|
+
.bgl_btn-icon.thin[data-v-7a7625e7] {
|
|
409
409
|
height: calc(var(--btn-height) / 1.5);
|
|
410
410
|
width: calc(var(--btn-height) / 1.5);
|
|
411
411
|
line-height: 1;
|
|
412
412
|
}
|
|
413
|
-
[dir="rtl"] .
|
|
413
|
+
[dir="rtl"] .bgl_.bgl_icon-font[data-v-7a7625e7] {
|
|
414
414
|
transform: rotateY(180deg);
|
|
415
415
|
}
|
|
416
|
-
.
|
|
417
|
-
outline: 1px solid var(--
|
|
418
|
-
color: var(--
|
|
416
|
+
.bgl_btn-border[data-v-7a7625e7] {
|
|
417
|
+
outline: 1px solid var(--76ea4ab4);
|
|
418
|
+
color: var(--76ea4ab4);
|
|
419
419
|
background: transparent;
|
|
420
420
|
}
|
|
421
|
-
.
|
|
421
|
+
.bgl_btn-border[data-v-7a7625e7]:hover {
|
|
422
422
|
color: var(--bgl-white);
|
|
423
|
-
background: var(--
|
|
423
|
+
background: var(--76ea4ab4);
|
|
424
424
|
filter: brightness(100%);
|
|
425
425
|
}
|
|
426
|
-
.
|
|
426
|
+
.bgl_btn-border[data-v-7a7625e7]:active {
|
|
427
427
|
filter: brightness(80%);
|
|
428
428
|
}
|
|
429
429
|
.bg-dark {
|
|
@@ -612,17 +612,17 @@
|
|
|
612
612
|
border: none;
|
|
613
613
|
}
|
|
614
614
|
|
|
615
|
-
.comments-wrap[data-v-
|
|
615
|
+
.comments-wrap[data-v-c4b41dc0] {
|
|
616
616
|
display: grid;
|
|
617
617
|
grid-template-rows: 1fr 40px;
|
|
618
618
|
height: 100%;
|
|
619
619
|
position: relative;
|
|
620
620
|
gap: 0.5rem;
|
|
621
621
|
}
|
|
622
|
-
.comments-wrap p[data-v-
|
|
622
|
+
.comments-wrap p[data-v-c4b41dc0] {
|
|
623
623
|
margin: 0;
|
|
624
624
|
}
|
|
625
|
-
.comments-wrap[data-v-
|
|
625
|
+
.comments-wrap[data-v-c4b41dc0]::before {
|
|
626
626
|
content: "";
|
|
627
627
|
inset-inline-start: 10px;
|
|
628
628
|
top: 0px;
|
|
@@ -631,27 +631,27 @@
|
|
|
631
631
|
position: absolute;
|
|
632
632
|
bottom: 10px;
|
|
633
633
|
}
|
|
634
|
-
.comment-top[data-v-
|
|
634
|
+
.comment-top[data-v-c4b41dc0] {
|
|
635
635
|
display: flex;
|
|
636
636
|
align-items: baseline;
|
|
637
637
|
flex-wrap: wrap;
|
|
638
638
|
position: relative;
|
|
639
639
|
margin-inline-start: 1rem;
|
|
640
640
|
}
|
|
641
|
-
.comment-list[data-v-
|
|
641
|
+
.comment-list[data-v-c4b41dc0] {
|
|
642
642
|
padding: 0.5rem;
|
|
643
643
|
height: 100%;
|
|
644
644
|
overflow: auto;
|
|
645
645
|
}
|
|
646
|
-
.comment[data-v-
|
|
646
|
+
.comment[data-v-c4b41dc0] {
|
|
647
647
|
margin-bottom: 1rem;
|
|
648
648
|
}
|
|
649
|
-
.comment-owner[data-v-
|
|
649
|
+
.comment-owner[data-v-c4b41dc0] {
|
|
650
650
|
font-size: 14px;
|
|
651
651
|
margin-inline-end: 0.5rem;
|
|
652
652
|
color: var(--bgl-gray);
|
|
653
653
|
}
|
|
654
|
-
.comment-owner[data-v-
|
|
654
|
+
.comment-owner[data-v-c4b41dc0]::before {
|
|
655
655
|
content: "";
|
|
656
656
|
height: 12px;
|
|
657
657
|
width: 12px;
|
|
@@ -661,18 +661,18 @@
|
|
|
661
661
|
inset-inline-start: -1.2rem;
|
|
662
662
|
top: 0.2rem;
|
|
663
663
|
}
|
|
664
|
-
.me .comment-owner[data-v-
|
|
664
|
+
.me .comment-owner[data-v-c4b41dc0] {
|
|
665
665
|
color: var(--bgl-primary);
|
|
666
666
|
}
|
|
667
|
-
.me .comment-owner[data-v-
|
|
667
|
+
.me .comment-owner[data-v-c4b41dc0]::before {
|
|
668
668
|
background: var(--bgl-primary);
|
|
669
669
|
}
|
|
670
|
-
.comment-time[data-v-
|
|
670
|
+
.comment-time[data-v-c4b41dc0] {
|
|
671
671
|
color: var(--bgl-gray);
|
|
672
672
|
font-size: 10px;
|
|
673
673
|
white-space: nowrap;
|
|
674
674
|
}
|
|
675
|
-
.comment-actions[data-v-
|
|
675
|
+
.comment-actions[data-v-c4b41dc0] {
|
|
676
676
|
background: red;
|
|
677
677
|
line-height: 0;
|
|
678
678
|
display: flex;
|
|
@@ -680,35 +680,35 @@
|
|
|
680
680
|
flex-grow: 1;
|
|
681
681
|
gap: 0.25rem;
|
|
682
682
|
}
|
|
683
|
-
.comment .comment-actions .edit[data-v-
|
|
683
|
+
.comment .comment-actions .edit[data-v-c4b41dc0] {
|
|
684
684
|
opacity: 0;
|
|
685
685
|
}
|
|
686
|
-
.comment-actions .edit[data-v-
|
|
686
|
+
.comment-actions .edit[data-v-c4b41dc0] {
|
|
687
687
|
margin-inline-end: auto;
|
|
688
688
|
}
|
|
689
|
-
.comment.me:hover .comment-actions .edit[data-v-
|
|
689
|
+
.comment.me:hover .comment-actions .edit[data-v-c4b41dc0] {
|
|
690
690
|
opacity: 0.4;
|
|
691
691
|
}
|
|
692
|
-
.comment-actions > div[data-v-
|
|
692
|
+
.comment-actions > div[data-v-c4b41dc0] {
|
|
693
693
|
transition: all 200ms ease;
|
|
694
694
|
cursor: pointer;
|
|
695
695
|
opacity: 0.6;
|
|
696
696
|
}
|
|
697
|
-
.comment-actions > div[data-v-
|
|
697
|
+
.comment-actions > div[data-v-c4b41dc0]:hover {
|
|
698
698
|
color: var(--bgl-primary);
|
|
699
699
|
}
|
|
700
|
-
.comment-actions .delete[data-v-
|
|
700
|
+
.comment-actions .delete[data-v-c4b41dc0]:hover {
|
|
701
701
|
color: var(--bgl-red);
|
|
702
702
|
}
|
|
703
|
-
.comment-actions > div[data-v-
|
|
703
|
+
.comment-actions > div[data-v-c4b41dc0]:active {
|
|
704
704
|
filter: brightness(70%);
|
|
705
705
|
}
|
|
706
|
-
.
|
|
707
|
-
.
|
|
706
|
+
.bgl_icon-font.delete[data-v-c4b41dc0],
|
|
707
|
+
.bgl_icon-font.save[data-v-c4b41dc0] {
|
|
708
708
|
display: none;
|
|
709
709
|
}
|
|
710
|
-
.editable .
|
|
711
|
-
.editable .
|
|
710
|
+
.editable .bgl_icon-font.delete[data-v-c4b41dc0],
|
|
711
|
+
.editable .bgl_icon-font.save[data-v-c4b41dc0] {
|
|
712
712
|
display: block;
|
|
713
713
|
}
|
|
714
714
|
|
|
@@ -721,10 +721,10 @@
|
|
|
721
721
|
/* overflow: hidden; */
|
|
722
722
|
/* border-radius: 10px; */
|
|
723
723
|
/* } */
|
|
724
|
-
.editable .editor-wrapper[data-v-
|
|
724
|
+
.editable .editor-wrapper[data-v-c4b41dc0] {
|
|
725
725
|
background-color: var(--input-bg);
|
|
726
726
|
}
|
|
727
|
-
.new-comment[data-v-
|
|
727
|
+
.new-comment[data-v-c4b41dc0] {
|
|
728
728
|
display: flex;
|
|
729
729
|
align-items: flex-end;
|
|
730
730
|
position: relative;
|
|
@@ -734,44 +734,44 @@
|
|
|
734
734
|
color: var(--input-color);
|
|
735
735
|
line-height: 1.6;
|
|
736
736
|
}
|
|
737
|
-
.comment-input[data-v-
|
|
737
|
+
.comment-input[data-v-c4b41dc0] {
|
|
738
738
|
max-height: 100px;
|
|
739
739
|
overflow: auto;
|
|
740
740
|
flex-grow: 1;
|
|
741
741
|
border-radius: var(--btn-border-radius);
|
|
742
742
|
}
|
|
743
743
|
|
|
744
|
-
.list-arrows[data-v-
|
|
744
|
+
.list-arrows[data-v-555ad739] {
|
|
745
745
|
opacity: 0;
|
|
746
746
|
}
|
|
747
|
-
.list-arrows .
|
|
747
|
+
.list-arrows .bgl_icon-font[data-v-555ad739] {
|
|
748
748
|
transition: all ease-in-out 0.2s;
|
|
749
749
|
}
|
|
750
|
-
.list-arrows.sorted[data-v-
|
|
750
|
+
.list-arrows.sorted[data-v-555ad739] {
|
|
751
751
|
opacity: 1;
|
|
752
752
|
}
|
|
753
|
-
.col img[data-v-
|
|
753
|
+
.col img[data-v-555ad739] {
|
|
754
754
|
height: 35px;
|
|
755
755
|
margin-top: -14px;
|
|
756
756
|
margin-bottom: -14px;
|
|
757
757
|
border-radius: 5px;
|
|
758
758
|
}
|
|
759
|
-
.list-arrows.sorted .desc[data-v-
|
|
759
|
+
.list-arrows.sorted .desc[data-v-555ad739] {
|
|
760
760
|
transform: rotate(180deg);
|
|
761
761
|
}
|
|
762
|
-
table[data-v-
|
|
762
|
+
table[data-v-555ad739] {
|
|
763
763
|
border-collapse: separate;
|
|
764
764
|
border-spacing: 0 15px;
|
|
765
765
|
border-collapse: collapse;
|
|
766
766
|
}
|
|
767
|
-
th[data-v-
|
|
767
|
+
th[data-v-555ad739] {
|
|
768
768
|
font-weight: 400;
|
|
769
769
|
}
|
|
770
|
-
.row[data-v-
|
|
770
|
+
.row[data-v-555ad739] {
|
|
771
771
|
border-bottom: 1px solid var(--border-color);
|
|
772
772
|
cursor: pointer;
|
|
773
773
|
}
|
|
774
|
-
.row.first-row[data-v-
|
|
774
|
+
.row.first-row[data-v-555ad739] {
|
|
775
775
|
font-size: 0.8rem;
|
|
776
776
|
color: var(--bgl-black-tint);
|
|
777
777
|
position: sticky;
|
|
@@ -781,7 +781,7 @@ th[data-v-56ec9012] {
|
|
|
781
781
|
height: 50px;
|
|
782
782
|
vertical-align: bottom;
|
|
783
783
|
}
|
|
784
|
-
.row.first-row[data-v-
|
|
784
|
+
.row.first-row[data-v-555ad739]::after {
|
|
785
785
|
content: "";
|
|
786
786
|
border-bottom: 1px solid var(--border-color);
|
|
787
787
|
position: absolute;
|
|
@@ -789,11 +789,11 @@ th[data-v-56ec9012] {
|
|
|
789
789
|
right: 0;
|
|
790
790
|
bottom: -1px;
|
|
791
791
|
}
|
|
792
|
-
.first-row .col[data-v-
|
|
792
|
+
.first-row .col[data-v-555ad739] {
|
|
793
793
|
cursor: pointer;
|
|
794
794
|
background: var(--bgl-white);
|
|
795
795
|
}
|
|
796
|
-
.col[data-v-
|
|
796
|
+
.col[data-v-555ad739] {
|
|
797
797
|
white-space: nowrap;
|
|
798
798
|
padding: 14px;
|
|
799
799
|
transition: var(--bgl-transition);
|
|
@@ -802,16 +802,16 @@ th[data-v-56ec9012] {
|
|
|
802
802
|
padding-right: 1rem;
|
|
803
803
|
align-items: center;
|
|
804
804
|
}
|
|
805
|
-
.col>div[data-v-
|
|
805
|
+
.col>div[data-v-555ad739] {
|
|
806
806
|
display: flex;
|
|
807
807
|
gap: 0.5rem;
|
|
808
808
|
}
|
|
809
|
-
.max-col-width[data-v-
|
|
809
|
+
.max-col-width[data-v-555ad739] {
|
|
810
810
|
max-width: 30vw;
|
|
811
811
|
overflow: hidden;
|
|
812
812
|
text-overflow: ellipsis;
|
|
813
813
|
}
|
|
814
|
-
.col.check .
|
|
814
|
+
.col.check .bgl_icon-font[data-v-555ad739] {
|
|
815
815
|
border-radius: 100%;
|
|
816
816
|
background: var(--bgl-blue-20);
|
|
817
817
|
color: var(--bgl-primary);
|
|
@@ -822,27 +822,27 @@ th[data-v-56ec9012] {
|
|
|
822
822
|
justify-content: center;
|
|
823
823
|
margin-top: -2px;
|
|
824
824
|
}
|
|
825
|
-
.rows[data-v-
|
|
825
|
+
.rows[data-v-555ad739] {
|
|
826
826
|
font-size: 0.8125em;
|
|
827
827
|
}
|
|
828
|
-
.table-list[data-v-
|
|
828
|
+
.table-list[data-v-555ad739] {
|
|
829
829
|
height: 100%;
|
|
830
830
|
position: relative;
|
|
831
831
|
padding-left: 0 !important;
|
|
832
832
|
padding-right: 0 !important;
|
|
833
833
|
overflow: auto;
|
|
834
834
|
}
|
|
835
|
-
.BagelTable .table-list[data-v-
|
|
835
|
+
.BagelTable .table-list[data-v-555ad739] {
|
|
836
836
|
overflow: unset;
|
|
837
837
|
}
|
|
838
|
-
.row-item[data-v-
|
|
838
|
+
.row-item[data-v-555ad739] {
|
|
839
839
|
height: 50px;
|
|
840
840
|
transition: all 200ms ease;
|
|
841
841
|
}
|
|
842
|
-
.row-item[data-v-
|
|
842
|
+
.row-item[data-v-555ad739]:hover {
|
|
843
843
|
background: var(--bgl-gray-light);
|
|
844
844
|
}
|
|
845
|
-
.infinite-wrapper[data-v-
|
|
845
|
+
.infinite-wrapper[data-v-555ad739] {
|
|
846
846
|
overflow-y: auto;
|
|
847
847
|
width: 100%;
|
|
848
848
|
}
|
|
@@ -867,21 +867,22 @@ th[data-v-56ec9012] {
|
|
|
867
867
|
color: var(--input-color);
|
|
868
868
|
}
|
|
869
869
|
|
|
870
|
-
.avatar[data-v-
|
|
870
|
+
.avatar[data-v-0441b0b8] {
|
|
871
871
|
border-radius: 100%;
|
|
872
872
|
background-color: var(--bgl-gray-20);
|
|
873
873
|
border: 0.5px solid var(--border-color);
|
|
874
874
|
overflow: hidden;
|
|
875
875
|
text-align: center;
|
|
876
876
|
padding: none;
|
|
877
|
+
flex: 0 0 40px;
|
|
877
878
|
}
|
|
878
|
-
.avatar p[data-v-
|
|
879
|
+
.avatar p[data-v-0441b0b8] {
|
|
879
880
|
font-size: 1.5rem;
|
|
880
881
|
line-height: 50px;
|
|
881
882
|
margin: 0;
|
|
882
883
|
font-weight: 200;
|
|
883
884
|
}
|
|
884
|
-
.avatar img[data-v-
|
|
885
|
+
.avatar img[data-v-0441b0b8] {
|
|
885
886
|
width: 100%;
|
|
886
887
|
height: 100%;
|
|
887
888
|
object-fit: cover;
|
|
@@ -1181,7 +1182,7 @@ fieldset[disabled] .multiselect {
|
|
|
1181
1182
|
width: 100%;
|
|
1182
1183
|
min-height: var(--input-height);
|
|
1183
1184
|
text-align: left;
|
|
1184
|
-
color:
|
|
1185
|
+
color: var(--input-color);
|
|
1185
1186
|
}
|
|
1186
1187
|
.multiselect * {
|
|
1187
1188
|
box-sizing: border-box;
|
|
@@ -1219,20 +1220,20 @@ fieldset[disabled] .multiselect {
|
|
|
1219
1220
|
.multiselect__single {
|
|
1220
1221
|
position: relative;
|
|
1221
1222
|
display: inline-block;
|
|
1222
|
-
min-height: 20px;
|
|
1223
|
-
line-height: 20px;
|
|
1224
1223
|
border: none;
|
|
1225
|
-
border-radius: var(--input-border-radius);
|
|
1226
1224
|
background: var(--input-bg);
|
|
1227
|
-
padding: 0 0 0 5px;
|
|
1228
1225
|
width: calc(100%);
|
|
1229
1226
|
transition: border 0.1s ease;
|
|
1230
1227
|
box-sizing: border-box;
|
|
1231
|
-
margin-bottom: 8px;
|
|
1232
1228
|
vertical-align: top;
|
|
1229
|
+
font-size: var(--input-font-size);
|
|
1230
|
+
padding-inline-start: 0rem;
|
|
1231
|
+
}
|
|
1232
|
+
.multiselect--active .multiselect__input {
|
|
1233
|
+
margin-top: -0.5rem;
|
|
1233
1234
|
}
|
|
1234
1235
|
.multiselect__input::placeholder {
|
|
1235
|
-
color:
|
|
1236
|
+
color: var(--input-color);
|
|
1236
1237
|
}
|
|
1237
1238
|
.multiselect__tag~.multiselect__input,
|
|
1238
1239
|
.multiselect__tag~.multiselect__single {
|
|
@@ -1248,19 +1249,24 @@ fieldset[disabled] .multiselect {
|
|
|
1248
1249
|
outline: none;
|
|
1249
1250
|
}
|
|
1250
1251
|
.multiselect__single {
|
|
1251
|
-
padding-left: 5px;
|
|
1252
|
+
/* padding-left: 5px; */
|
|
1252
1253
|
margin-bottom: 8px;
|
|
1253
1254
|
}
|
|
1254
1255
|
.multiselect__tags-wrap {
|
|
1255
1256
|
display: inline;
|
|
1256
1257
|
}
|
|
1257
1258
|
.multiselect__tags {
|
|
1258
|
-
min-height: 40px;
|
|
1259
|
+
/* min-height: 40px; */
|
|
1259
1260
|
display: block;
|
|
1260
|
-
padding:
|
|
1261
|
+
/* padding: 0.7rem 40px 0.7rem 8px; */
|
|
1261
1262
|
border-radius: var(--input-border-radius);
|
|
1262
1263
|
background: var(--input-bg);
|
|
1263
1264
|
font-size: var(--input-font-size);
|
|
1265
|
+
height: var(--input-height);
|
|
1266
|
+
line-height: 0;
|
|
1267
|
+
padding: calc(var(--input-height) / 2);
|
|
1268
|
+
padding-inline-end: 40px;
|
|
1269
|
+
padding-inline-start: 0.7rem;
|
|
1264
1270
|
}
|
|
1265
1271
|
.multiselect__tag {
|
|
1266
1272
|
position: relative;
|
|
@@ -1327,8 +1333,8 @@ fieldset[disabled] .multiselect {
|
|
|
1327
1333
|
display: block;
|
|
1328
1334
|
position: absolute;
|
|
1329
1335
|
box-sizing: border-box;
|
|
1330
|
-
width: 40px;
|
|
1331
|
-
height: 38px;
|
|
1336
|
+
/* width: 40px; */
|
|
1337
|
+
/* height: 38px; */
|
|
1332
1338
|
right: 1px;
|
|
1333
1339
|
top: 1px;
|
|
1334
1340
|
padding: 4px 8px;
|
|
@@ -1337,20 +1343,19 @@ fieldset[disabled] .multiselect {
|
|
|
1337
1343
|
text-align: center;
|
|
1338
1344
|
cursor: pointer;
|
|
1339
1345
|
transition: transform 0.2s ease;
|
|
1346
|
+
padding-top: calc(var(--input-height) / 2 - 0.7rem);
|
|
1340
1347
|
}
|
|
1341
1348
|
.multiselect__select::before {
|
|
1342
1349
|
position: relative;
|
|
1343
1350
|
background-size: contain;
|
|
1344
1351
|
transform: scale(0.5);
|
|
1345
|
-
top: 4px;
|
|
1346
1352
|
color: var(--bgl-black);
|
|
1347
|
-
content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23b7b7b7' height='24' viewBox='0 -960 960 960' width='24'><path d='M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z'/></svg>")
|
|
1353
|
+
content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23b7b7b7' height='24' viewBox='0 -960 960 960' width='24'><path d='M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z'/></svg>");
|
|
1348
1354
|
}
|
|
1349
1355
|
.multiselect__placeholder {
|
|
1350
|
-
color:
|
|
1356
|
+
color: var(--placeholder-color);
|
|
1351
1357
|
display: inline-block;
|
|
1352
1358
|
margin-bottom: 10px;
|
|
1353
|
-
padding-top: 2px;
|
|
1354
1359
|
}
|
|
1355
1360
|
.multiselect--active .multiselect__placeholder {
|
|
1356
1361
|
display: none;
|
|
@@ -1444,14 +1449,14 @@ fieldset[disabled] .multiselect {
|
|
|
1444
1449
|
}
|
|
1445
1450
|
.multiselect__option--group {
|
|
1446
1451
|
background: #ededed;
|
|
1447
|
-
color:
|
|
1452
|
+
color: var(--input-color);
|
|
1448
1453
|
}
|
|
1449
1454
|
.multiselect__option--group.multiselect__option--highlight {
|
|
1450
|
-
background:
|
|
1455
|
+
background: var(--input-color);
|
|
1451
1456
|
color: #fff;
|
|
1452
1457
|
}
|
|
1453
1458
|
.multiselect__option--group.multiselect__option--highlight::after {
|
|
1454
|
-
background:
|
|
1459
|
+
background: var(--input-color);
|
|
1455
1460
|
}
|
|
1456
1461
|
.multiselect__option--disabled.multiselect__option--highlight {
|
|
1457
1462
|
background: #dedede;
|
|
@@ -1487,7 +1492,9 @@ fieldset[disabled] .multiselect {
|
|
|
1487
1492
|
left: 1px;
|
|
1488
1493
|
}
|
|
1489
1494
|
*[dir="rtl"] .multiselect__tags {
|
|
1490
|
-
padding:
|
|
1495
|
+
padding: calc(var(--input-height) / 2);
|
|
1496
|
+
padding-inline-end: 40px;
|
|
1497
|
+
padding-inline-start: 0.7rem;
|
|
1491
1498
|
}
|
|
1492
1499
|
*[dir="rtl"] .multiselect__content {
|
|
1493
1500
|
text-align: right;
|
|
@@ -1523,87 +1530,87 @@ to {
|
|
|
1523
1530
|
background: transparent;
|
|
1524
1531
|
}
|
|
1525
1532
|
|
|
1526
|
-
.table-side-scroll[data-v-
|
|
1533
|
+
.table-side-scroll[data-v-cdacf10e] {
|
|
1527
1534
|
overflow: auto;
|
|
1528
1535
|
margin-inline-start: -1rem;
|
|
1529
1536
|
padding-inline-start: 1rem;
|
|
1530
1537
|
padding-bottom: 1rem;
|
|
1531
1538
|
}
|
|
1532
|
-
.table-field-wrap[data-v-
|
|
1539
|
+
.table-field-wrap[data-v-cdacf10e] {
|
|
1533
1540
|
margin-bottom: -1rem;
|
|
1534
1541
|
}
|
|
1535
|
-
.table-cell[data-v-
|
|
1542
|
+
.table-cell[data-v-cdacf10e] {
|
|
1536
1543
|
border-inline-end: 1px solid var(--border-color);
|
|
1537
1544
|
border-bottom: 1px solid var(--border-color);
|
|
1538
1545
|
}
|
|
1539
|
-
.table-row[data-v-
|
|
1546
|
+
.table-row[data-v-cdacf10e] {
|
|
1540
1547
|
transition: var(--bgl-transition);
|
|
1541
1548
|
position: relative;
|
|
1542
1549
|
width: max-content;
|
|
1543
1550
|
}
|
|
1544
|
-
.table-row[data-v-
|
|
1551
|
+
.table-row[data-v-cdacf10e]:hover {
|
|
1545
1552
|
background: var(--bgl-gray-light);
|
|
1546
1553
|
}
|
|
1547
|
-
.table-reorder[data-v-
|
|
1554
|
+
.table-reorder[data-v-cdacf10e] {
|
|
1548
1555
|
opacity: 0;
|
|
1549
1556
|
width: 2rem;
|
|
1550
1557
|
text-align: center;
|
|
1551
1558
|
position: absolute;
|
|
1552
1559
|
margin-inline-start: -2rem;
|
|
1553
1560
|
}
|
|
1554
|
-
.table-row:hover .table-reorder[data-v-
|
|
1561
|
+
.table-row:hover .table-reorder[data-v-cdacf10e] {
|
|
1555
1562
|
opacity: 1;
|
|
1556
1563
|
cursor: grab;
|
|
1557
1564
|
}
|
|
1558
|
-
.table-reorder[data-v-
|
|
1565
|
+
.table-reorder[data-v-cdacf10e]:active {
|
|
1559
1566
|
opacity: 1;
|
|
1560
1567
|
cursor: grab;
|
|
1561
1568
|
}
|
|
1562
|
-
.
|
|
1569
|
+
.bgl_btn.thin.bgl_flatBtn[data-v-cdacf10e] {
|
|
1563
1570
|
margin-inline-start: -1rem;
|
|
1564
1571
|
margin-top: 1rem;
|
|
1565
1572
|
}
|
|
1566
|
-
.table-header[data-v-
|
|
1573
|
+
.table-header[data-v-cdacf10e] {
|
|
1567
1574
|
display: flex;
|
|
1568
1575
|
width: max-content;
|
|
1569
1576
|
}
|
|
1570
|
-
.header-col[data-v-
|
|
1577
|
+
.header-col[data-v-cdacf10e] {
|
|
1571
1578
|
min-width: calc(var(--input-height) * 3);
|
|
1572
1579
|
font-size: 13px;
|
|
1573
1580
|
color: var(--input-color);
|
|
1574
1581
|
padding: 10px 0;
|
|
1575
1582
|
border-bottom: 1px solid var(--border-color);
|
|
1576
1583
|
}
|
|
1577
|
-
.table-cell[data-v-
|
|
1578
|
-
.header-col[data-v-
|
|
1584
|
+
.table-cell[data-v-cdacf10e],
|
|
1585
|
+
.header-col[data-v-cdacf10e] {
|
|
1579
1586
|
width: 160px;
|
|
1580
1587
|
}
|
|
1581
|
-
.table-cell.check[data-v-
|
|
1582
|
-
.header-col.check[data-v-
|
|
1588
|
+
.table-cell.check[data-v-cdacf10e],
|
|
1589
|
+
.header-col.check[data-v-cdacf10e] {
|
|
1583
1590
|
width: 100px;
|
|
1584
1591
|
}
|
|
1585
|
-
.table-cell.date[data-v-
|
|
1586
|
-
.header-col.date[data-v-
|
|
1592
|
+
.table-cell.date[data-v-cdacf10e],
|
|
1593
|
+
.header-col.date[data-v-cdacf10e] {
|
|
1587
1594
|
width: 140px;
|
|
1588
1595
|
}
|
|
1589
|
-
.header-col.small-text[data-v-
|
|
1590
|
-
.header-col.text[data-v-
|
|
1591
|
-
.header-col.long-text[data-v-
|
|
1592
|
-
.header-col.json[data-v-
|
|
1593
|
-
.table-cell.small-text[data-v-
|
|
1594
|
-
.table-cell.text[data-v-
|
|
1595
|
-
.table-cell.long-text[data-v-
|
|
1596
|
-
.table-cell.json[data-v-
|
|
1596
|
+
.header-col.small-text[data-v-cdacf10e],
|
|
1597
|
+
.header-col.text[data-v-cdacf10e],
|
|
1598
|
+
.header-col.long-text[data-v-cdacf10e],
|
|
1599
|
+
.header-col.json[data-v-cdacf10e],
|
|
1600
|
+
.table-cell.small-text[data-v-cdacf10e],
|
|
1601
|
+
.table-cell.text[data-v-cdacf10e],
|
|
1602
|
+
.table-cell.long-text[data-v-cdacf10e],
|
|
1603
|
+
.table-cell.json[data-v-cdacf10e] {
|
|
1597
1604
|
width: 240px;
|
|
1598
1605
|
}
|
|
1599
|
-
.table-cell.small-text .bagel-input[data-v-
|
|
1600
|
-
.table-cell.text .bagel-input[data-v-
|
|
1601
|
-
.table-cell.long-text .bagel-input[data-v-
|
|
1602
|
-
.table-cell.json .bagel-input[data-v-
|
|
1606
|
+
.table-cell.small-text .bagel-input[data-v-cdacf10e],
|
|
1607
|
+
.table-cell.text .bagel-input[data-v-cdacf10e],
|
|
1608
|
+
.table-cell.long-text .bagel-input[data-v-cdacf10e],
|
|
1609
|
+
.table-cell.json .bagel-input[data-v-cdacf10e] {
|
|
1603
1610
|
height: 40px;
|
|
1604
1611
|
overflow: auto;
|
|
1605
1612
|
}
|
|
1606
|
-
.table-action[data-v-
|
|
1613
|
+
.table-action[data-v-cdacf10e] {
|
|
1607
1614
|
text-align: center;
|
|
1608
1615
|
position: sticky;
|
|
1609
1616
|
opacity: 0;
|
|
@@ -1613,19 +1620,19 @@ to {
|
|
|
1613
1620
|
margin-top: -1px;
|
|
1614
1621
|
background: var(--border-color);
|
|
1615
1622
|
}
|
|
1616
|
-
.table-action>.
|
|
1623
|
+
.table-action>.bgl_icon-font[data-v-cdacf10e] {
|
|
1617
1624
|
padding: 11.4px;
|
|
1618
1625
|
cursor: pointer;
|
|
1619
1626
|
transition: var(--bgl-transition);
|
|
1620
1627
|
}
|
|
1621
|
-
.table-action:hover>.
|
|
1628
|
+
.table-action:hover>.bgl_icon-font[data-v-cdacf10e] {
|
|
1622
1629
|
background: var(--bgl-red);
|
|
1623
1630
|
color: var(--bgl-white);
|
|
1624
1631
|
}
|
|
1625
|
-
.table-action:active>.
|
|
1632
|
+
.table-action:active>.bgl_icon-font[data-v-cdacf10e] {
|
|
1626
1633
|
filter: brightness(90%);
|
|
1627
1634
|
}
|
|
1628
|
-
.table-row:hover .table-action[data-v-
|
|
1635
|
+
.table-row:hover .table-action[data-v-cdacf10e] {
|
|
1629
1636
|
opacity: 1;
|
|
1630
1637
|
}
|
|
1631
1638
|
|
|
@@ -1669,55 +1676,60 @@ to {
|
|
|
1669
1676
|
/* width: auto; */
|
|
1670
1677
|
}
|
|
1671
1678
|
|
|
1672
|
-
.bagel-input textarea[data-v-
|
|
1679
|
+
.bagel-input textarea[data-v-c5f12e8d] {
|
|
1673
1680
|
min-height: unset;
|
|
1674
1681
|
}
|
|
1675
|
-
.bagel-input.text-input textarea[data-v-
|
|
1682
|
+
.bagel-input.text-input textarea[data-v-c5f12e8d] {
|
|
1676
1683
|
resize: none;
|
|
1677
1684
|
}
|
|
1678
|
-
.code textarea[data-v-
|
|
1685
|
+
.code textarea[data-v-c5f12e8d] {
|
|
1679
1686
|
font-family: 'Inconsolata', monospace;
|
|
1680
1687
|
background: var(--bgl-black) !important;
|
|
1681
1688
|
color: var(--bgl-white) !important;
|
|
1682
1689
|
}
|
|
1683
|
-
.bagel-input.toggleEdit[data-v-
|
|
1690
|
+
.bagel-input.toggleEdit[data-v-c5f12e8d]:hover {
|
|
1684
1691
|
background-color: var(--input-bg);
|
|
1685
1692
|
}
|
|
1686
|
-
.bagel-input.small[data-v-
|
|
1693
|
+
.bagel-input.small[data-v-c5f12e8d] {
|
|
1687
1694
|
margin-bottom: 0;
|
|
1688
1695
|
height: 30px;
|
|
1689
1696
|
}
|
|
1690
|
-
.
|
|
1697
|
+
.bagel-input.dense label[data-v-c5f12e8d]{
|
|
1698
|
+
display: flex;
|
|
1699
|
+
align-items: center;
|
|
1700
|
+
gap: 0.5rem;
|
|
1701
|
+
}
|
|
1702
|
+
.toggleEditBtn[data-v-c5f12e8d] {
|
|
1691
1703
|
position: absolute;
|
|
1692
1704
|
right: -24px;
|
|
1693
1705
|
top: 4;
|
|
1694
1706
|
opacity: 0;
|
|
1695
1707
|
}
|
|
1696
|
-
.textInputIconWrap[data-v-
|
|
1708
|
+
.textInputIconWrap[data-v-c5f12e8d] {
|
|
1697
1709
|
position: relative;
|
|
1698
1710
|
}
|
|
1699
|
-
.textInputIconWrap .
|
|
1711
|
+
.textInputIconWrap .bgl_icon-font[data-v-c5f12e8d] {
|
|
1700
1712
|
position: absolute;
|
|
1701
1713
|
inset-inline-end: 0.7rem;
|
|
1702
1714
|
bottom: 50%;
|
|
1703
1715
|
line-height: 0;
|
|
1704
1716
|
color: var(--bgl-gray);
|
|
1705
1717
|
}
|
|
1706
|
-
.txtInputIconStart .iconStart[data-v-
|
|
1718
|
+
.txtInputIconStart .iconStart[data-v-c5f12e8d] {
|
|
1707
1719
|
position: absolute;
|
|
1708
1720
|
inset-inline-start: 0.7rem;
|
|
1709
1721
|
top: 50%;
|
|
1710
1722
|
line-height: 0;
|
|
1711
1723
|
color: var(--bgl-gray);
|
|
1712
1724
|
}
|
|
1713
|
-
.txtInputIconStart textarea[data-v-
|
|
1725
|
+
.txtInputIconStart textarea[data-v-c5f12e8d] {
|
|
1714
1726
|
padding-inline-start: 2rem;
|
|
1715
1727
|
}
|
|
1716
|
-
.bagel-input:hover .toggleEditBtn[data-v-
|
|
1717
|
-
.bagel-input.editMode .toggleEditBtn[data-v-
|
|
1728
|
+
.bagel-input:hover .toggleEditBtn[data-v-c5f12e8d],
|
|
1729
|
+
.bagel-input.editMode .toggleEditBtn[data-v-c5f12e8d] {
|
|
1718
1730
|
opacity: 1;
|
|
1719
1731
|
}
|
|
1720
|
-
.bagel-input.small textarea[data-v-
|
|
1732
|
+
.bagel-input.small textarea[data-v-c5f12e8d] {
|
|
1721
1733
|
height: 30px;
|
|
1722
1734
|
}
|
|
1723
1735
|
|
|
@@ -1901,7 +1913,7 @@ to {
|
|
|
1901
1913
|
color: var(--bgl-white);
|
|
1902
1914
|
}
|
|
1903
1915
|
|
|
1904
|
-
.bagel-input .fileUploadWrap[data-v-
|
|
1916
|
+
.bagel-input .fileUploadWrap[data-v-7deb423e] {
|
|
1905
1917
|
outline: 1px solid var(--border-color);
|
|
1906
1918
|
border-radius: var(--input-border-radius);
|
|
1907
1919
|
text-align: center;
|
|
@@ -1911,7 +1923,7 @@ to {
|
|
|
1911
1923
|
height: 132px;
|
|
1912
1924
|
font-size: var(--input-font-size);
|
|
1913
1925
|
}
|
|
1914
|
-
.previewName[data-v-
|
|
1926
|
+
.previewName[data-v-7deb423e] {
|
|
1915
1927
|
padding: 0.5rem;
|
|
1916
1928
|
text-align: start;
|
|
1917
1929
|
color: var(--input-color);
|
|
@@ -1919,37 +1931,37 @@ to {
|
|
|
1919
1931
|
grid-template-columns: 1fr 22px;
|
|
1920
1932
|
align-items: center;
|
|
1921
1933
|
}
|
|
1922
|
-
.previewName p[data-v-
|
|
1934
|
+
.previewName p[data-v-7deb423e] {
|
|
1923
1935
|
overflow: hidden;
|
|
1924
1936
|
text-overflow: ellipsis;
|
|
1925
1937
|
white-space: nowrap;
|
|
1926
1938
|
}
|
|
1927
|
-
.imagePreviewWrap[data-v-
|
|
1939
|
+
.imagePreviewWrap[data-v-7deb423e] {
|
|
1928
1940
|
background: var(--input-bg);
|
|
1929
1941
|
border-radius: var(--input-border-radius);
|
|
1930
1942
|
height: 90px;
|
|
1931
1943
|
padding: 5px;
|
|
1932
1944
|
}
|
|
1933
|
-
img.preview[data-v-
|
|
1945
|
+
img.preview[data-v-7deb423e] {
|
|
1934
1946
|
height: 80px;
|
|
1935
1947
|
border-radius: var(--input-border-radius);
|
|
1936
1948
|
object-fit: contain;
|
|
1937
1949
|
}
|
|
1938
|
-
.fileUploadWrap.dragover[data-v-
|
|
1939
|
-
.fileUploadWrap[data-v-
|
|
1950
|
+
.fileUploadWrap.dragover[data-v-7deb423e],
|
|
1951
|
+
.fileUploadWrap[data-v-7deb423e]:hover {
|
|
1940
1952
|
box-shadow: inset 0 0 10px #00000012;
|
|
1941
1953
|
}
|
|
1942
|
-
.bagel-input .fileUploadWrap.fileDropZone[data-v-
|
|
1954
|
+
.bagel-input .fileUploadWrap.fileDropZone[data-v-7deb423e] {
|
|
1943
1955
|
background: var(--input-bg);
|
|
1944
1956
|
display: flex;
|
|
1945
1957
|
align-items: center;
|
|
1946
1958
|
justify-content: center;
|
|
1947
1959
|
color: var(--bgl-gray);
|
|
1948
1960
|
}
|
|
1949
|
-
.bagel-input .fileUploadWrap.fileDropZone[data-v-
|
|
1961
|
+
.bagel-input .fileUploadWrap.fileDropZone[data-v-7deb423e]:after {
|
|
1950
1962
|
content: "Drop files here or click to upload";
|
|
1951
1963
|
}
|
|
1952
|
-
.pie[data-v-
|
|
1964
|
+
.pie[data-v-7deb423e] {
|
|
1953
1965
|
width: 30px;
|
|
1954
1966
|
height: 30px;
|
|
1955
1967
|
position: relative;
|
|
@@ -1957,7 +1969,7 @@ img.preview[data-v-4144cc3e] {
|
|
|
1957
1969
|
align-items: center;
|
|
1958
1970
|
justify-content: center;
|
|
1959
1971
|
}
|
|
1960
|
-
.pie[data-v-
|
|
1972
|
+
.pie[data-v-7deb423e]:before {
|
|
1961
1973
|
content: "";
|
|
1962
1974
|
position: absolute;
|
|
1963
1975
|
border-radius: 50%;
|
|
@@ -1971,26 +1983,26 @@ img.preview[data-v-4144cc3e] {
|
|
|
1971
1983
|
#0000 calc(99% - var(--b)),
|
|
1972
1984
|
#000 calc(100% - var(--b)));
|
|
1973
1985
|
}
|
|
1974
|
-
.pie .success[data-v-
|
|
1986
|
+
.pie .success[data-v-7deb423e] {
|
|
1975
1987
|
transform: scale(0);
|
|
1976
1988
|
opacity: 0;
|
|
1977
1989
|
transition: all 0.3s ease-in-out;
|
|
1978
1990
|
}
|
|
1979
|
-
.pie .progress[data-v-
|
|
1991
|
+
.pie .progress[data-v-7deb423e] {
|
|
1980
1992
|
position: absolute;
|
|
1981
1993
|
font-size: 10px;
|
|
1982
1994
|
}
|
|
1983
|
-
.pie.complete .progress[data-v-
|
|
1995
|
+
.pie.complete .progress[data-v-7deb423e] {
|
|
1984
1996
|
display: none;
|
|
1985
1997
|
}
|
|
1986
|
-
.pie.complete .success[data-v-
|
|
1998
|
+
.pie.complete .success[data-v-7deb423e] {
|
|
1987
1999
|
transform: scale(1.3);
|
|
1988
2000
|
opacity: 1;
|
|
1989
2001
|
}
|
|
1990
|
-
.pie.complete[data-v-
|
|
2002
|
+
.pie.complete[data-v-7deb423e]:before {
|
|
1991
2003
|
background: conic-gradient(var(--bgl-green) calc(var(--p) * 1%), #0000 0);
|
|
1992
2004
|
}
|
|
1993
|
-
.pie.complete[data-v-
|
|
2005
|
+
.pie.complete[data-v-7deb423e] {
|
|
1994
2006
|
color: var(--bgl-green);
|
|
1995
2007
|
}
|
|
1996
2008
|
|
|
@@ -2380,6 +2392,21 @@ img.preview[data-v-4144cc3e] {
|
|
|
2380
2392
|
.flex-3-col {
|
|
2381
2393
|
flex: 1 1 33.33333%;
|
|
2382
2394
|
}
|
|
2395
|
+
.mb-auto {
|
|
2396
|
+
margin-bottom: auto !important;
|
|
2397
|
+
}
|
|
2398
|
+
.mb-0 {
|
|
2399
|
+
margin-bottom: 0rem !important;
|
|
2400
|
+
}
|
|
2401
|
+
.mb-025 {
|
|
2402
|
+
margin-bottom: 0.25rem !important;
|
|
2403
|
+
}
|
|
2404
|
+
.mb-05 {
|
|
2405
|
+
margin-bottom: 0.5rem !important;
|
|
2406
|
+
}
|
|
2407
|
+
.mb-075 {
|
|
2408
|
+
margin-bottom: 0.75rem !important;
|
|
2409
|
+
}
|
|
2383
2410
|
.mb-1 {
|
|
2384
2411
|
margin-bottom: 1rem !important;
|
|
2385
2412
|
}
|
|
@@ -2389,6 +2416,24 @@ img.preview[data-v-4144cc3e] {
|
|
|
2389
2416
|
.mb-3 {
|
|
2390
2417
|
margin-bottom: 3rem !important;
|
|
2391
2418
|
}
|
|
2419
|
+
.mb-4 {
|
|
2420
|
+
margin-bottom: 4rem !important;
|
|
2421
|
+
}
|
|
2422
|
+
.mt-auto {
|
|
2423
|
+
margin-top: auto !important;
|
|
2424
|
+
}
|
|
2425
|
+
.mt-0 {
|
|
2426
|
+
margin-top: 0rem !important;
|
|
2427
|
+
}
|
|
2428
|
+
.mt-025 {
|
|
2429
|
+
margin-top: 0.25rem !important;
|
|
2430
|
+
}
|
|
2431
|
+
.mt-05 {
|
|
2432
|
+
margin-top: 0.5rem !important;
|
|
2433
|
+
}
|
|
2434
|
+
.mt-075 {
|
|
2435
|
+
margin-top: 0.75rem !important;
|
|
2436
|
+
}
|
|
2392
2437
|
.mt-1 {
|
|
2393
2438
|
margin-top: 1rem !important;
|
|
2394
2439
|
}
|
|
@@ -2398,6 +2443,24 @@ img.preview[data-v-4144cc3e] {
|
|
|
2398
2443
|
.mt-3 {
|
|
2399
2444
|
margin-top: 3rem !important;
|
|
2400
2445
|
}
|
|
2446
|
+
.mt-4 {
|
|
2447
|
+
margin-top: 4rem !important;
|
|
2448
|
+
}
|
|
2449
|
+
.ms-auto {
|
|
2450
|
+
margin-inline-start: auto !important;
|
|
2451
|
+
}
|
|
2452
|
+
.ms-0 {
|
|
2453
|
+
margin-inline-start: 0rem !important;
|
|
2454
|
+
}
|
|
2455
|
+
.ms-025 {
|
|
2456
|
+
margin-inline-start: 0.25rem !important;
|
|
2457
|
+
}
|
|
2458
|
+
.ms-05 {
|
|
2459
|
+
margin-inline-start: 0.5rem !important;
|
|
2460
|
+
}
|
|
2461
|
+
.ms-075 {
|
|
2462
|
+
margin-inline-start: 0.75rem !important;
|
|
2463
|
+
}
|
|
2401
2464
|
.ms-1 {
|
|
2402
2465
|
margin-inline-start: 1rem !important;
|
|
2403
2466
|
}
|
|
@@ -2407,6 +2470,24 @@ img.preview[data-v-4144cc3e] {
|
|
|
2407
2470
|
.ms-3 {
|
|
2408
2471
|
margin-inline-start: 3rem !important;
|
|
2409
2472
|
}
|
|
2473
|
+
.ms-4 {
|
|
2474
|
+
margin-inline-start: 4rem !important;
|
|
2475
|
+
}
|
|
2476
|
+
.me-auto {
|
|
2477
|
+
margin-inline-end: auto !important;
|
|
2478
|
+
}
|
|
2479
|
+
.me-0 {
|
|
2480
|
+
margin-inline-end: 0rem !important;
|
|
2481
|
+
}
|
|
2482
|
+
.me-025 {
|
|
2483
|
+
margin-inline-end: 0.25rem !important;
|
|
2484
|
+
}
|
|
2485
|
+
.me-05 {
|
|
2486
|
+
margin-inline-end: 0.5rem !important;
|
|
2487
|
+
}
|
|
2488
|
+
.me-075 {
|
|
2489
|
+
margin-inline-end: 0.75rem !important;
|
|
2490
|
+
}
|
|
2410
2491
|
.me-1 {
|
|
2411
2492
|
margin-inline-end: 1rem !important;
|
|
2412
2493
|
}
|
|
@@ -2416,65 +2497,92 @@ img.preview[data-v-4144cc3e] {
|
|
|
2416
2497
|
.me-3 {
|
|
2417
2498
|
margin-inline-end: 3rem !important;
|
|
2418
2499
|
}
|
|
2419
|
-
.
|
|
2420
|
-
margin-
|
|
2500
|
+
.me-4 {
|
|
2501
|
+
margin-inline-end: 4rem !important;
|
|
2421
2502
|
}
|
|
2422
|
-
|
|
2423
|
-
margin-bottom:
|
|
2503
|
+
.-mb-025 {
|
|
2504
|
+
margin-bottom: -0.25rem !important;
|
|
2424
2505
|
}
|
|
2425
|
-
|
|
2426
|
-
margin-bottom: 0.
|
|
2506
|
+
.-mb-05 {
|
|
2507
|
+
margin-bottom: -0.5rem !important;
|
|
2427
2508
|
}
|
|
2428
|
-
|
|
2429
|
-
margin-bottom: 0.
|
|
2509
|
+
.-mb-075 {
|
|
2510
|
+
margin-bottom: -0.75rem !important;
|
|
2430
2511
|
}
|
|
2431
|
-
|
|
2432
|
-
margin-bottom:
|
|
2512
|
+
.-mb-1 {
|
|
2513
|
+
margin-bottom: -1rem !important;
|
|
2433
2514
|
}
|
|
2434
|
-
|
|
2435
|
-
margin-
|
|
2515
|
+
.-mb-2 {
|
|
2516
|
+
margin-bottom: -2rem !important;
|
|
2436
2517
|
}
|
|
2437
|
-
|
|
2438
|
-
margin-
|
|
2518
|
+
.-mb-3 {
|
|
2519
|
+
margin-bottom: -3rem !important;
|
|
2439
2520
|
}
|
|
2440
|
-
|
|
2521
|
+
.-mb-4 {
|
|
2522
|
+
margin-bottom: -4rem !important;
|
|
2523
|
+
}
|
|
2524
|
+
.-mt-025 {
|
|
2525
|
+
margin-top: -0.25rem !important;
|
|
2526
|
+
}
|
|
2527
|
+
.-mt-05 {
|
|
2528
|
+
margin-top: -0.5rem !important;
|
|
2529
|
+
}
|
|
2530
|
+
.-mt-075 {
|
|
2441
2531
|
margin-top: 0.75rem !important;
|
|
2442
2532
|
}
|
|
2443
|
-
|
|
2444
|
-
margin-top:
|
|
2533
|
+
.-mt-1 {
|
|
2534
|
+
margin-top: -1rem !important;
|
|
2445
2535
|
}
|
|
2446
|
-
|
|
2447
|
-
margin-top:
|
|
2536
|
+
.-mt-2 {
|
|
2537
|
+
margin-top: -2rem !important;
|
|
2448
2538
|
}
|
|
2449
|
-
|
|
2450
|
-
margin-
|
|
2539
|
+
.-mt-3 {
|
|
2540
|
+
margin-top: -3rem !important;
|
|
2451
2541
|
}
|
|
2452
|
-
|
|
2453
|
-
margin-
|
|
2542
|
+
.-mt-4 {
|
|
2543
|
+
margin-top: -4rem !important;
|
|
2454
2544
|
}
|
|
2455
|
-
|
|
2456
|
-
margin-inline-start: 0.
|
|
2545
|
+
.-ms-025 {
|
|
2546
|
+
margin-inline-start: -0.25rem !important;
|
|
2457
2547
|
}
|
|
2458
|
-
|
|
2459
|
-
margin-inline-start: 0.5rem !important;
|
|
2548
|
+
.-ms-05 {
|
|
2549
|
+
margin-inline-start: -0.5rem !important;
|
|
2460
2550
|
}
|
|
2461
|
-
|
|
2462
|
-
margin-inline-start: 0.
|
|
2551
|
+
.-ms-075 {
|
|
2552
|
+
margin-inline-start: -0.75rem !important;
|
|
2463
2553
|
}
|
|
2464
|
-
|
|
2465
|
-
margin-inline-
|
|
2554
|
+
.-ms-1 {
|
|
2555
|
+
margin-inline-start: -1rem !important;
|
|
2466
2556
|
}
|
|
2467
|
-
|
|
2468
|
-
margin-inline-
|
|
2557
|
+
.-ms-2 {
|
|
2558
|
+
margin-inline-start: -2rem !important;
|
|
2469
2559
|
}
|
|
2470
|
-
|
|
2471
|
-
margin-inline-
|
|
2560
|
+
.-ms-3 {
|
|
2561
|
+
margin-inline-start: -3rem !important;
|
|
2472
2562
|
}
|
|
2473
|
-
|
|
2474
|
-
margin-inline-
|
|
2563
|
+
.-ms-4 {
|
|
2564
|
+
margin-inline-start: -4rem !important;
|
|
2475
2565
|
}
|
|
2476
|
-
|
|
2477
|
-
margin-inline-end: 0.25rem !important;
|
|
2566
|
+
.-me-025 {
|
|
2567
|
+
margin-inline-end: -0.25rem !important;
|
|
2568
|
+
}
|
|
2569
|
+
.-me-05 {
|
|
2570
|
+
margin-inline-end: -0.5rem !important;
|
|
2571
|
+
}
|
|
2572
|
+
.-me-075 {
|
|
2573
|
+
margin-inline-end: -0.75rem !important;
|
|
2574
|
+
}
|
|
2575
|
+
.-me-1 {
|
|
2576
|
+
margin-inline-end: -1rem !important;
|
|
2577
|
+
}
|
|
2578
|
+
.-me-2 {
|
|
2579
|
+
margin-inline-end: -2rem !important;
|
|
2580
|
+
}
|
|
2581
|
+
.-me-3 {
|
|
2582
|
+
margin-inline-end: -3rem !important;
|
|
2583
|
+
}
|
|
2584
|
+
.-me-4 {
|
|
2585
|
+
margin-inline-end: -4rem !important;
|
|
2478
2586
|
}
|
|
2479
2587
|
.pb-0 {
|
|
2480
2588
|
padding-bottom: 0rem !important;
|
|
@@ -2656,7 +2764,7 @@ select {
|
|
|
2656
2764
|
.bagel-input.search-wrap input {
|
|
2657
2765
|
padding-inline-end: 2rem;
|
|
2658
2766
|
}
|
|
2659
|
-
.bagel-input.search-wrap .
|
|
2767
|
+
.bagel-input.search-wrap .bgl_icon-font {
|
|
2660
2768
|
margin-inline-start: -1.75rem;
|
|
2661
2769
|
}
|
|
2662
2770
|
.bagel-input select {
|
|
@@ -2738,11 +2846,11 @@ label.active {
|
|
|
2738
2846
|
.label-count-0 label {
|
|
2739
2847
|
display: none;
|
|
2740
2848
|
}
|
|
2741
|
-
.label-count-0 button.
|
|
2849
|
+
.label-count-0 button.bgl_btn.bgl_flatBtn {
|
|
2742
2850
|
/* background: var(--bgl-blue-light); */
|
|
2743
2851
|
margin-right: 5px;
|
|
2744
2852
|
}
|
|
2745
|
-
.label-count-0 button.
|
|
2853
|
+
.label-count-0 button.bgl_btn.bgl_flatBtn:hover {
|
|
2746
2854
|
background: var(--bgl-hover-filter);
|
|
2747
2855
|
}
|
|
2748
2856
|
input[type="color"] {
|
|
@@ -2783,9 +2891,9 @@ input[type="color"]::-moz-color-swatch:hover {
|
|
|
2783
2891
|
}
|
|
2784
2892
|
}
|
|
2785
2893
|
button,
|
|
2786
|
-
.
|
|
2787
|
-
.
|
|
2788
|
-
.
|
|
2894
|
+
.bgl_btn,
|
|
2895
|
+
.bgl_flatBtn,
|
|
2896
|
+
.bgl_btn-icon {
|
|
2789
2897
|
font-family: inherit;
|
|
2790
2898
|
white-space: nowrap;
|
|
2791
2899
|
cursor: pointer;
|
|
@@ -2827,12 +2935,12 @@ button,
|
|
|
2827
2935
|
content: "close";
|
|
2828
2936
|
font-family: "Material Symbols Outlined", serif;
|
|
2829
2937
|
}
|
|
2830
|
-
.
|
|
2938
|
+
.bgl_btn.thin {
|
|
2831
2939
|
height: calc(var(--btn-height) * 0.7);
|
|
2832
2940
|
line-height: calc(var(--btn-height) * 0.7);
|
|
2833
2941
|
}
|
|
2834
2942
|
@media screen and (max-width: 910px) {
|
|
2835
|
-
.
|
|
2943
|
+
.bgl_btn {
|
|
2836
2944
|
padding: 0 20px;
|
|
2837
2945
|
}
|
|
2838
2946
|
}
|
|
@@ -2853,6 +2961,12 @@ h6 {}
|
|
|
2853
2961
|
.txt-center {
|
|
2854
2962
|
text-align: center;
|
|
2855
2963
|
}
|
|
2964
|
+
.txt-start {
|
|
2965
|
+
text-align: start;
|
|
2966
|
+
}
|
|
2967
|
+
.txt-end {
|
|
2968
|
+
text-align: end;
|
|
2969
|
+
}
|
|
2856
2970
|
.smalltxt {
|
|
2857
2971
|
font-size: 12px;
|
|
2858
2972
|
}
|
|
@@ -2898,6 +3012,9 @@ h6 {}
|
|
|
2898
3012
|
.bold {
|
|
2899
3013
|
font-weight: 700;
|
|
2900
3014
|
}
|
|
3015
|
+
.line-height-1 {
|
|
3016
|
+
line-height: 1;
|
|
3017
|
+
}
|
|
2901
3018
|
.ellipsis {
|
|
2902
3019
|
overflow: hidden;
|
|
2903
3020
|
display: block;
|
|
@@ -2910,7 +3027,7 @@ h6 {}
|
|
|
2910
3027
|
.decoration-none {
|
|
2911
3028
|
text-decoration: none;
|
|
2912
3029
|
}
|
|
2913
|
-
.
|
|
3030
|
+
.bgl_icon-font {
|
|
2914
3031
|
font-family: "Material Symbols Outlined", serif;
|
|
2915
3032
|
}
|
|
2916
3033
|
@media screen and (max-width: 910px) {
|
|
@@ -3075,7 +3192,7 @@ h6 {}
|
|
|
3075
3192
|
width: 100%;
|
|
3076
3193
|
margin-top: 1rem;
|
|
3077
3194
|
}
|
|
3078
|
-
.login-card .
|
|
3195
|
+
.login-card .bgl_btn {
|
|
3079
3196
|
width: 100%;
|
|
3080
3197
|
background: var(--bgl-primary);
|
|
3081
3198
|
color: var(--bgl-white);
|
|
@@ -3544,10 +3661,10 @@ h6 {}
|
|
|
3544
3661
|
[theme="dark"] .whatsapp-msg {
|
|
3545
3662
|
color: var(--bgl-gray-light);
|
|
3546
3663
|
}
|
|
3547
|
-
[theme="dark"] .
|
|
3548
|
-
[theme="dark"] .
|
|
3549
|
-
[theme="dark"] .primary-checkbox input:checked
|
|
3550
|
-
[theme="dark"] .
|
|
3664
|
+
[theme="dark"] .bgl_btn,
|
|
3665
|
+
[theme="dark"] .bgl_btn-icon,
|
|
3666
|
+
[theme="dark"] .primary-checkbox input:checked+span,
|
|
3667
|
+
[theme="dark"] .bgl_btn.light {
|
|
3551
3668
|
color: var(--bgl-black);
|
|
3552
3669
|
}
|
|
3553
3670
|
[theme="dark"] .bagel-input.checkbox.check .slider:before {
|