@bagelink/vue 1.15.34 → 1.15.38
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/style.css +1 -1
- package/package.json +1 -1
- package/src/styles/appearance.css +115 -115
- package/src/styles/buttons.css +16 -0
- package/src/styles/layout.css +971 -977
- package/src/styles/mobilLayout.css +754 -754
- package/src/styles/text.css +630 -630
package/package.json
CHANGED
|
@@ -1,135 +1,135 @@
|
|
|
1
1
|
.opacity-0 {
|
|
2
|
-
opacity: 0
|
|
2
|
+
opacity: 0;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.opacity-1 {
|
|
6
|
-
opacity: 0.1
|
|
6
|
+
opacity: 0.1;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.opacity-2 {
|
|
10
|
-
opacity: 0.2
|
|
10
|
+
opacity: 0.2;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.opacity-3 {
|
|
14
|
-
opacity: 0.3
|
|
14
|
+
opacity: 0.3;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.opacity-4 {
|
|
18
|
-
opacity: 0.4
|
|
18
|
+
opacity: 0.4;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
.opacity-5 {
|
|
22
|
-
opacity: 0.5
|
|
22
|
+
opacity: 0.5;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
.opacity-6 {
|
|
26
|
-
opacity: 0.6
|
|
26
|
+
opacity: 0.6;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
.opacity-7 {
|
|
30
|
-
opacity: 0.7
|
|
30
|
+
opacity: 0.7;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.opacity-8 {
|
|
34
|
-
opacity: 0.8
|
|
34
|
+
opacity: 0.8;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.opacity-9 {
|
|
38
|
-
opacity: 0.9
|
|
38
|
+
opacity: 0.9;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
.opacity-10 {
|
|
42
|
-
opacity: 1
|
|
42
|
+
opacity: 1;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
.-z-index-1,
|
|
46
46
|
.-z-1 {
|
|
47
|
-
z-index: -1
|
|
47
|
+
z-index: -1;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
.z-index-0,
|
|
51
51
|
.z-0 {
|
|
52
|
-
z-index: 0
|
|
52
|
+
z-index: 0;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
.z-index-1,
|
|
56
56
|
.z-1 {
|
|
57
|
-
z-index: 1
|
|
57
|
+
z-index: 1;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
.z-index-2,
|
|
61
61
|
.z-2 {
|
|
62
|
-
z-index: 2
|
|
62
|
+
z-index: 2;
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
.z-index-3,
|
|
66
66
|
.z-3 {
|
|
67
|
-
z-index: 3
|
|
67
|
+
z-index: 3;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
.z-index-4,
|
|
71
71
|
.z-4 {
|
|
72
|
-
z-index: 4
|
|
72
|
+
z-index: 4;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
.z-index-5,
|
|
76
76
|
.z-5 {
|
|
77
|
-
z-index: 5
|
|
77
|
+
z-index: 5;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
.z-index-9,
|
|
81
81
|
.z-9 {
|
|
82
|
-
z-index: 9
|
|
82
|
+
z-index: 9;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
.z-index-99,
|
|
86
86
|
.z-99 {
|
|
87
|
-
z-index: 99
|
|
87
|
+
z-index: 99;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
.z-index-999,
|
|
91
91
|
.z-999 {
|
|
92
|
-
z-index: 999
|
|
92
|
+
z-index: 999;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
.z-index-9999,
|
|
96
96
|
.z-9999 {
|
|
97
|
-
z-index: 9999
|
|
97
|
+
z-index: 9999;
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
.pointer-events-none {
|
|
101
|
-
pointer-events: none
|
|
101
|
+
pointer-events: none;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
.pointer-events-all {
|
|
105
|
-
pointer-events: all
|
|
105
|
+
pointer-events: all;
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
.cover,
|
|
109
109
|
.object-fit-cover {
|
|
110
|
-
object-fit: cover
|
|
110
|
+
object-fit: cover;
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
.contain,
|
|
114
114
|
.object-fit-contain {
|
|
115
|
-
object-fit: contain
|
|
115
|
+
object-fit: contain;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
.scale-down,
|
|
119
119
|
.object-fit-scale-down {
|
|
120
|
-
object-fit: scale-down
|
|
120
|
+
object-fit: scale-down;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
.object-position-top {
|
|
124
|
-
object-position: top
|
|
124
|
+
object-position: top;
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
.object-position-center {
|
|
128
|
-
object-position: center
|
|
128
|
+
object-position: center;
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
.object-position-bottom {
|
|
132
|
-
object-position: bottom
|
|
132
|
+
object-position: bottom;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
.shadow-10 {
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
.shadow-txt {
|
|
157
|
-
filter: drop-shadow(0 0 10px var(--bgl-black-tint))
|
|
157
|
+
filter: drop-shadow(0 0 10px var(--bgl-black-tint));
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
.border-color-unset {
|
|
@@ -212,51 +212,51 @@
|
|
|
212
212
|
}
|
|
213
213
|
|
|
214
214
|
.border-top-none {
|
|
215
|
-
border-top: none
|
|
215
|
+
border-top: none !important
|
|
216
216
|
}
|
|
217
217
|
|
|
218
218
|
.border-start-none {
|
|
219
|
-
border-inline-start: none
|
|
219
|
+
border-inline-start: none !important
|
|
220
220
|
}
|
|
221
221
|
|
|
222
222
|
.border-end-none {
|
|
223
|
-
border-inline-end: none
|
|
223
|
+
border-inline-end: none !important
|
|
224
224
|
}
|
|
225
225
|
|
|
226
226
|
.border-none {
|
|
227
|
-
border: none
|
|
227
|
+
border: none !important
|
|
228
228
|
}
|
|
229
229
|
|
|
230
230
|
.last-border-none:last-child {
|
|
231
|
-
border-bottom: none
|
|
231
|
+
border-bottom: none;
|
|
232
232
|
}
|
|
233
233
|
|
|
234
234
|
.border-inner-bottom-none>* {
|
|
235
|
-
border-bottom: none
|
|
235
|
+
border-bottom: none !important
|
|
236
236
|
}
|
|
237
237
|
|
|
238
238
|
.border-inner-top-none>* {
|
|
239
|
-
border-top: none
|
|
239
|
+
border-top: none !important
|
|
240
240
|
}
|
|
241
241
|
|
|
242
242
|
.border-inner-start-none>* {
|
|
243
|
-
border-inline-start: none
|
|
243
|
+
border-inline-start: none !important
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
.border-inner-end-none>* {
|
|
247
|
-
border-inline-end: none
|
|
247
|
+
border-inline-end: none !important
|
|
248
248
|
}
|
|
249
249
|
|
|
250
250
|
.border-inner-none>* {
|
|
251
|
-
border: none
|
|
251
|
+
border: none !important
|
|
252
252
|
}
|
|
253
253
|
|
|
254
254
|
.user-select-none {
|
|
255
|
-
user-select: none
|
|
255
|
+
user-select: none;
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
.user-select-all {
|
|
259
|
-
user-select: all
|
|
259
|
+
user-select: all;
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
.rotateY-180 {
|
|
@@ -268,65 +268,65 @@
|
|
|
268
268
|
}
|
|
269
269
|
|
|
270
270
|
.scrollbar-gutter {
|
|
271
|
-
scrollbar-gutter: stable
|
|
271
|
+
scrollbar-gutter: stable;
|
|
272
272
|
}
|
|
273
273
|
|
|
274
274
|
.scrollbar-gutter-auto {
|
|
275
|
-
scrollbar-gutter: auto
|
|
275
|
+
scrollbar-gutter: auto;
|
|
276
276
|
}
|
|
277
277
|
|
|
278
278
|
.scrollbar-gutter-stable-both,
|
|
279
279
|
.scrollbar-gutter-both {
|
|
280
|
-
scrollbar-gutter: stable both-edges
|
|
280
|
+
scrollbar-gutter: stable both-edges;
|
|
281
281
|
}
|
|
282
282
|
|
|
283
283
|
.mix-blend-mode-multiply {
|
|
284
|
-
mix-blend-mode: multiply
|
|
284
|
+
mix-blend-mode: multiply;
|
|
285
285
|
}
|
|
286
286
|
|
|
287
287
|
.mix-blend-mode-screen {
|
|
288
|
-
mix-blend-mode: screen
|
|
288
|
+
mix-blend-mode: screen;
|
|
289
289
|
}
|
|
290
290
|
|
|
291
291
|
.mix-blend-mode-overlay {
|
|
292
|
-
mix-blend-mode: overlay
|
|
292
|
+
mix-blend-mode: overlay;
|
|
293
293
|
}
|
|
294
294
|
|
|
295
295
|
.mix-blend-mode-darken {
|
|
296
|
-
mix-blend-mode: darken
|
|
296
|
+
mix-blend-mode: darken;
|
|
297
297
|
}
|
|
298
298
|
|
|
299
299
|
.mix-blend-mode-lighten {
|
|
300
|
-
mix-blend-mode: lighten
|
|
300
|
+
mix-blend-mode: lighten;
|
|
301
301
|
}
|
|
302
302
|
|
|
303
303
|
.mix-blend-mode-color-dodge {
|
|
304
|
-
mix-blend-mode: color-dodge
|
|
304
|
+
mix-blend-mode: color-dodge;
|
|
305
305
|
}
|
|
306
306
|
|
|
307
307
|
.mix-blend-mode-color-burn {
|
|
308
|
-
mix-blend-mode: color-burn
|
|
308
|
+
mix-blend-mode: color-burn;
|
|
309
309
|
}
|
|
310
310
|
|
|
311
311
|
.mix-blend-mode-hard-light {
|
|
312
|
-
mix-blend-mode: hard-light
|
|
312
|
+
mix-blend-mode: hard-light;
|
|
313
313
|
}
|
|
314
314
|
|
|
315
315
|
.mix-blend-mode-soft-light {
|
|
316
|
-
mix-blend-mode: soft-light
|
|
316
|
+
mix-blend-mode: soft-light;
|
|
317
317
|
}
|
|
318
318
|
|
|
319
319
|
.mix-blend-mode-none,
|
|
320
320
|
.mix-blend-mode-normal {
|
|
321
|
-
mix-blend-mode: normal
|
|
321
|
+
mix-blend-mode: normal;
|
|
322
322
|
}
|
|
323
323
|
|
|
324
324
|
.v-popper--theme-tooltip .v-popper__inner {
|
|
325
325
|
background: var(--bgl-tooltip-bg) !important;
|
|
326
326
|
color: var(--bgl-tooltip-color) !important;
|
|
327
|
-
font-size: var(--bgl-tooltip-font-size)
|
|
328
|
-
padding: var(--bgl-tooltip-padding)
|
|
329
|
-
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
|
|
327
|
+
font-size: var(--bgl-tooltip-font-size);
|
|
328
|
+
padding: var(--bgl-tooltip-padding);
|
|
329
|
+
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
|
|
330
330
|
}
|
|
331
331
|
|
|
332
332
|
.v-popper--theme-tooltip .v-popper__arrow-outer {
|
|
@@ -335,144 +335,144 @@
|
|
|
335
335
|
|
|
336
336
|
@media screen and (max-width: 910px) {
|
|
337
337
|
.m_scrollbar-gutter {
|
|
338
|
-
scrollbar-gutter: stable
|
|
338
|
+
scrollbar-gutter: stable;
|
|
339
339
|
}
|
|
340
340
|
|
|
341
341
|
.m_scrollbar-gutter-auto {
|
|
342
|
-
scrollbar-gutter: auto
|
|
342
|
+
scrollbar-gutter: auto;
|
|
343
343
|
}
|
|
344
344
|
|
|
345
345
|
.m_scrollbar-gutter-stable-both {
|
|
346
|
-
scrollbar-gutter: stable both-edges
|
|
346
|
+
scrollbar-gutter: stable both-edges;
|
|
347
347
|
}
|
|
348
348
|
|
|
349
349
|
.m_opacity-0 {
|
|
350
|
-
opacity: 0
|
|
350
|
+
opacity: 0;
|
|
351
351
|
}
|
|
352
352
|
|
|
353
353
|
.m_opacity-1 {
|
|
354
|
-
opacity: 0.1
|
|
354
|
+
opacity: 0.1;
|
|
355
355
|
}
|
|
356
356
|
|
|
357
357
|
.m_opacity-2 {
|
|
358
|
-
opacity: 0.2
|
|
358
|
+
opacity: 0.2;
|
|
359
359
|
}
|
|
360
360
|
|
|
361
361
|
.m_opacity-3 {
|
|
362
|
-
opacity: 0.3
|
|
362
|
+
opacity: 0.3;
|
|
363
363
|
}
|
|
364
364
|
|
|
365
365
|
.m_opacity-4 {
|
|
366
|
-
opacity: 0.4
|
|
366
|
+
opacity: 0.4;
|
|
367
367
|
}
|
|
368
368
|
|
|
369
369
|
.m_opacity-5 {
|
|
370
|
-
opacity: 0.5
|
|
370
|
+
opacity: 0.5;
|
|
371
371
|
}
|
|
372
372
|
|
|
373
373
|
.m_opacity-6 {
|
|
374
|
-
opacity: 0.6
|
|
374
|
+
opacity: 0.6;
|
|
375
375
|
}
|
|
376
376
|
|
|
377
377
|
.m_opacity-7 {
|
|
378
|
-
opacity: 0.7
|
|
378
|
+
opacity: 0.7;
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
.m_opacity-8 {
|
|
382
|
-
opacity: 0.8
|
|
382
|
+
opacity: 0.8;
|
|
383
383
|
}
|
|
384
384
|
|
|
385
385
|
.m_opacity-9 {
|
|
386
|
-
opacity: 0.9
|
|
386
|
+
opacity: 0.9;
|
|
387
387
|
}
|
|
388
388
|
|
|
389
389
|
.m_opacity-10 {
|
|
390
|
-
opacity: 1
|
|
390
|
+
opacity: 1;
|
|
391
391
|
}
|
|
392
392
|
|
|
393
393
|
.m_-z-index-1,
|
|
394
394
|
.m_-z-1 {
|
|
395
|
-
z-index: -1
|
|
395
|
+
z-index: -1;
|
|
396
396
|
}
|
|
397
397
|
|
|
398
398
|
.m_z-index-0,
|
|
399
399
|
.m_z-0 {
|
|
400
|
-
z-index: 0
|
|
400
|
+
z-index: 0;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
.m_z-index-1,
|
|
404
404
|
.m_z-1 {
|
|
405
|
-
z-index: 1
|
|
405
|
+
z-index: 1;
|
|
406
406
|
}
|
|
407
407
|
|
|
408
408
|
.m_z-index-2,
|
|
409
409
|
.m_z-2 {
|
|
410
|
-
z-index: 2
|
|
410
|
+
z-index: 2;
|
|
411
411
|
}
|
|
412
412
|
|
|
413
413
|
.m_z-index-3,
|
|
414
414
|
.m_z-3 {
|
|
415
|
-
z-index: 3
|
|
415
|
+
z-index: 3;
|
|
416
416
|
}
|
|
417
417
|
|
|
418
418
|
.m_z-index-4,
|
|
419
419
|
.m_z-4 {
|
|
420
|
-
z-index: 4
|
|
420
|
+
z-index: 4;
|
|
421
421
|
}
|
|
422
422
|
|
|
423
423
|
.m_z-index-5,
|
|
424
424
|
.m_z-5 {
|
|
425
|
-
z-index: 5
|
|
425
|
+
z-index: 5;
|
|
426
426
|
}
|
|
427
427
|
|
|
428
428
|
.m_z-index-9,
|
|
429
429
|
.m_z-9 {
|
|
430
|
-
z-index: 9
|
|
430
|
+
z-index: 9;
|
|
431
431
|
}
|
|
432
432
|
|
|
433
433
|
.m_z-index-99,
|
|
434
434
|
.m_z-99 {
|
|
435
|
-
z-index: 99
|
|
435
|
+
z-index: 99;
|
|
436
436
|
}
|
|
437
437
|
|
|
438
438
|
.m_z-index-999,
|
|
439
439
|
.m_z-999 {
|
|
440
|
-
z-index: 999
|
|
440
|
+
z-index: 999;
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
.m_pointer-events-none {
|
|
444
|
-
pointer-events: none
|
|
444
|
+
pointer-events: none;
|
|
445
445
|
}
|
|
446
446
|
|
|
447
447
|
.m_pointer-events-all {
|
|
448
|
-
pointer-events: all
|
|
448
|
+
pointer-events: all;
|
|
449
449
|
}
|
|
450
450
|
|
|
451
451
|
.m_cover,
|
|
452
452
|
.m_object-fit-cover {
|
|
453
|
-
object-fit: cover
|
|
453
|
+
object-fit: cover;
|
|
454
454
|
}
|
|
455
455
|
|
|
456
456
|
.m_contain,
|
|
457
457
|
.m_object-fit-contain {
|
|
458
|
-
object-fit: contain
|
|
458
|
+
object-fit: contain;
|
|
459
459
|
}
|
|
460
460
|
|
|
461
461
|
.m_scale-down,
|
|
462
462
|
.m_object-fit-scale-down {
|
|
463
|
-
object-fit: scale-down
|
|
463
|
+
object-fit: scale-down;
|
|
464
464
|
}
|
|
465
465
|
|
|
466
466
|
.m_object-position-top {
|
|
467
|
-
object-position: top
|
|
467
|
+
object-position: top;
|
|
468
468
|
}
|
|
469
469
|
|
|
470
470
|
.m_object-position-center {
|
|
471
|
-
object-position: center
|
|
471
|
+
object-position: center;
|
|
472
472
|
}
|
|
473
473
|
|
|
474
474
|
.m_object-position-bottom {
|
|
475
|
-
object-position: bottom
|
|
475
|
+
object-position: bottom;
|
|
476
476
|
}
|
|
477
477
|
|
|
478
478
|
.m_shadow-light {
|
|
@@ -501,11 +501,11 @@
|
|
|
501
501
|
}
|
|
502
502
|
|
|
503
503
|
.m_border-none {
|
|
504
|
-
border: none
|
|
504
|
+
border: none !important
|
|
505
505
|
}
|
|
506
506
|
|
|
507
507
|
.m_last-border-none:last-child {
|
|
508
|
-
border-bottom: none
|
|
508
|
+
border-bottom: none;
|
|
509
509
|
}
|
|
510
510
|
|
|
511
511
|
.m_border-inner-bottom>* {
|
|
@@ -525,48 +525,48 @@
|
|
|
525
525
|
}
|
|
526
526
|
|
|
527
527
|
.m_border-inner-none>* {
|
|
528
|
-
border: none
|
|
528
|
+
border: none !important
|
|
529
529
|
}
|
|
530
530
|
|
|
531
531
|
|
|
532
532
|
.m_border-bottom-none {
|
|
533
|
-
border-bottom: none
|
|
533
|
+
border-bottom: none !important
|
|
534
534
|
}
|
|
535
535
|
|
|
536
536
|
.m_border-top-none {
|
|
537
|
-
border-top: none
|
|
537
|
+
border-top: none !important
|
|
538
538
|
}
|
|
539
539
|
|
|
540
540
|
.m_border-start-none {
|
|
541
|
-
border-inline-start: none
|
|
541
|
+
border-inline-start: none !important
|
|
542
542
|
}
|
|
543
543
|
|
|
544
544
|
.m_border-end-none {
|
|
545
|
-
border-inline-end: none
|
|
545
|
+
border-inline-end: none !important
|
|
546
546
|
}
|
|
547
547
|
|
|
548
548
|
.m_border-inner-bottom-none>* {
|
|
549
|
-
border-bottom: none
|
|
549
|
+
border-bottom: none !important
|
|
550
550
|
}
|
|
551
551
|
|
|
552
552
|
.m_border-inner-top-none>* {
|
|
553
|
-
border-top: none
|
|
553
|
+
border-top: none !important
|
|
554
554
|
}
|
|
555
555
|
|
|
556
556
|
.m_border-inner-start-none>* {
|
|
557
|
-
border-inline-start: none
|
|
557
|
+
border-inline-start: none !important
|
|
558
558
|
}
|
|
559
559
|
|
|
560
560
|
.m_border-inner-end-none>* {
|
|
561
|
-
border-inline-end: none
|
|
561
|
+
border-inline-end: none !important
|
|
562
562
|
}
|
|
563
563
|
|
|
564
564
|
.m_user-select-none {
|
|
565
|
-
user-select: none
|
|
565
|
+
user-select: none;
|
|
566
566
|
}
|
|
567
567
|
|
|
568
568
|
.m_user-select-all {
|
|
569
|
-
user-select: all
|
|
569
|
+
user-select: all;
|
|
570
570
|
}
|
|
571
571
|
|
|
572
572
|
.m_shadow-10 {
|
|
@@ -589,7 +589,7 @@
|
|
|
589
589
|
/* .m_shadow-light already defined above (line 478) */
|
|
590
590
|
|
|
591
591
|
.m_shadow-txt {
|
|
592
|
-
filter: drop-shadow(0 0 10px var(--bgl-black-tint))
|
|
592
|
+
filter: drop-shadow(0 0 10px var(--bgl-black-tint));
|
|
593
593
|
}
|
|
594
594
|
|
|
595
595
|
.m_rotateY-180 {
|
|
@@ -601,44 +601,44 @@
|
|
|
601
601
|
}
|
|
602
602
|
|
|
603
603
|
.m_mix-blend-mode-multiply {
|
|
604
|
-
mix-blend-mode: multiply
|
|
604
|
+
mix-blend-mode: multiply;
|
|
605
605
|
}
|
|
606
606
|
|
|
607
607
|
.m_mix-blend-mode-screen {
|
|
608
|
-
mix-blend-mode: screen
|
|
608
|
+
mix-blend-mode: screen;
|
|
609
609
|
}
|
|
610
610
|
|
|
611
611
|
.m_mix-blend-mode-overlay {
|
|
612
|
-
mix-blend-mode: overlay
|
|
612
|
+
mix-blend-mode: overlay;
|
|
613
613
|
}
|
|
614
614
|
|
|
615
615
|
.m_mix-blend-mode-darken {
|
|
616
|
-
mix-blend-mode: darken
|
|
616
|
+
mix-blend-mode: darken;
|
|
617
617
|
}
|
|
618
618
|
|
|
619
619
|
.m_mix-blend-mode-lighten {
|
|
620
|
-
mix-blend-mode: lighten
|
|
620
|
+
mix-blend-mode: lighten;
|
|
621
621
|
}
|
|
622
622
|
|
|
623
623
|
.m_mix-blend-mode-color-dodge {
|
|
624
|
-
mix-blend-mode: color-dodge
|
|
624
|
+
mix-blend-mode: color-dodge;
|
|
625
625
|
}
|
|
626
626
|
|
|
627
627
|
.m_mix-blend-mode-color-burn {
|
|
628
|
-
mix-blend-mode: color-burn
|
|
628
|
+
mix-blend-mode: color-burn;
|
|
629
629
|
}
|
|
630
630
|
|
|
631
631
|
.m_mix-blend-mode-hard-light {
|
|
632
|
-
mix-blend-mode: hard-light
|
|
632
|
+
mix-blend-mode: hard-light;
|
|
633
633
|
}
|
|
634
634
|
|
|
635
635
|
.m_mix-blend-mode-soft-light {
|
|
636
|
-
mix-blend-mode: soft-light
|
|
636
|
+
mix-blend-mode: soft-light;
|
|
637
637
|
}
|
|
638
638
|
|
|
639
639
|
.m_mix-blend-mode-none,
|
|
640
640
|
.m_mix-blend-mode-normal {
|
|
641
|
-
mix-blend-mode: normal
|
|
641
|
+
mix-blend-mode: normal;
|
|
642
642
|
}
|
|
643
643
|
|
|
644
644
|
.m_border-input input,
|
package/src/styles/buttons.css
CHANGED
|
@@ -16,6 +16,22 @@
|
|
|
16
16
|
padding: 0;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
/*
|
|
20
|
+
* Remove the lingering focus ring after a MOUSE click, while preserving it for
|
|
21
|
+
* KEYBOARD navigation (accessibility). Without this, clicking a button leaves a
|
|
22
|
+
* visible focus outline that "sticks" until the user clicks elsewhere — most
|
|
23
|
+
* noticeable on dropdown menu items and the dialog close button.
|
|
24
|
+
*
|
|
25
|
+
* :focus-visible is set by the browser only for keyboard/programmatic focus,
|
|
26
|
+
* so :focus:not(:focus-visible) targets pointer focus exclusively.
|
|
27
|
+
*/
|
|
28
|
+
.bgl_btn:focus:not(:focus-visible),
|
|
29
|
+
.bgl_flatBtn:focus:not(:focus-visible),
|
|
30
|
+
.bgl_btn-icon:focus:not(:focus-visible),
|
|
31
|
+
.btn-close:focus:not(:focus-visible) {
|
|
32
|
+
outline: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
19
35
|
.btn-close {
|
|
20
36
|
margin-top: -20px;
|
|
21
37
|
margin-inline-end: -20px;
|