@clayui/css 3.100.0 → 3.101.0
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/lib/css/atlas.css +241 -203
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +142 -123
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +394 -193
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_custom-forms.scss +1 -2
- package/src/scss/atlas/variables/_globals.scss +9 -1
- package/src/scss/cadmin/components/_modals.scss +11 -3
- package/src/scss/cadmin/variables/_custom-forms.scss +1 -3
- package/src/scss/cadmin/variables/_globals.scss +9 -0
- package/src/scss/cadmin/variables/_slideout.scss +1 -0
- package/src/scss/components/_modals.scss +4 -0
- package/src/scss/mixins/_buttons.scss +95 -56
- package/src/scss/mixins/_cards.scss +45 -17
- package/src/scss/mixins/_close.scss +33 -3
- package/src/scss/mixins/_custom-forms.scss +123 -73
- package/src/scss/mixins/_dropdown-menu.scss +41 -15
- package/src/scss/mixins/_forms.scss +166 -76
- package/src/scss/mixins/_links.scss +106 -59
- package/src/scss/mixins/_modals.scss +35 -4
- package/src/scss/mixins/_sidebar.scss +37 -7
- package/src/scss/mixins/_slideout.scss +32 -2
- package/src/scss/mixins/_toggle-switch.scss +114 -36
- package/src/scss/variables/_globals.scss +8 -0
|
@@ -67,6 +67,31 @@
|
|
|
67
67
|
@if (type-of($map) == 'map') {
|
|
68
68
|
$enabled: setter(map-get($map, enabled), true);
|
|
69
69
|
|
|
70
|
+
$_enable-focus-visible: if(
|
|
71
|
+
variable-exists(enable-focus-visible),
|
|
72
|
+
$enable-focus-visible,
|
|
73
|
+
if(
|
|
74
|
+
variable-exists(cadmin-enable-focus-visible),
|
|
75
|
+
$cadmin-enable-focus-visible,
|
|
76
|
+
true
|
|
77
|
+
)
|
|
78
|
+
);
|
|
79
|
+
|
|
80
|
+
$_c-prefers-focus-selector: if(
|
|
81
|
+
$_enable-focus-visible,
|
|
82
|
+
'.c-prefers-focus &:focus',
|
|
83
|
+
''
|
|
84
|
+
);
|
|
85
|
+
|
|
86
|
+
@if (variable-exists(cadmin-enable-focus-visible)) and
|
|
87
|
+
($_enable-focus-visible)
|
|
88
|
+
{
|
|
89
|
+
$_c-prefers-focus-selector: clay-insert-before(
|
|
90
|
+
'.cadmin',
|
|
91
|
+
'.c-prefers-focus '
|
|
92
|
+
);
|
|
93
|
+
}
|
|
94
|
+
|
|
70
95
|
$base: map-merge(
|
|
71
96
|
$map,
|
|
72
97
|
(
|
|
@@ -356,14 +381,19 @@
|
|
|
356
381
|
|
|
357
382
|
@at-root {
|
|
358
383
|
button#{&} {
|
|
359
|
-
|
|
384
|
+
#{$focus-visible-selector},
|
|
385
|
+
#{$_c-prefers-focus-selector} {
|
|
360
386
|
@include clay-css($btn-focus);
|
|
361
387
|
}
|
|
362
388
|
}
|
|
363
389
|
}
|
|
364
390
|
|
|
365
|
-
|
|
366
|
-
|
|
391
|
+
@at-root {
|
|
392
|
+
&.focus,
|
|
393
|
+
#{$focus-visible-selector},
|
|
394
|
+
#{$_c-prefers-focus-selector} {
|
|
395
|
+
@include clay-css($focus);
|
|
396
|
+
}
|
|
367
397
|
}
|
|
368
398
|
|
|
369
399
|
&:active {
|
|
@@ -103,6 +103,31 @@
|
|
|
103
103
|
@if (type-of($map) == 'map') {
|
|
104
104
|
$enabled: setter(map-get($map, enabled), true);
|
|
105
105
|
|
|
106
|
+
$_enable-focus-visible: if(
|
|
107
|
+
variable-exists(enable-focus-visible),
|
|
108
|
+
$enable-focus-visible,
|
|
109
|
+
if(
|
|
110
|
+
variable-exists(cadmin-enable-focus-visible),
|
|
111
|
+
$cadmin-enable-focus-visible,
|
|
112
|
+
true
|
|
113
|
+
)
|
|
114
|
+
);
|
|
115
|
+
|
|
116
|
+
$_c-prefers-focus-selector: if(
|
|
117
|
+
$_enable-focus-visible,
|
|
118
|
+
'.c-prefers-focus &:focus',
|
|
119
|
+
''
|
|
120
|
+
);
|
|
121
|
+
|
|
122
|
+
@if (variable-exists(cadmin-enable-focus-visible)) and
|
|
123
|
+
($_enable-focus-visible)
|
|
124
|
+
{
|
|
125
|
+
$_c-prefers-focus-selector: clay-insert-before(
|
|
126
|
+
'.cadmin',
|
|
127
|
+
'.c-prefers-focus '
|
|
128
|
+
);
|
|
129
|
+
}
|
|
130
|
+
|
|
106
131
|
@if ($enabled) {
|
|
107
132
|
@include clay-css($map);
|
|
108
133
|
|
|
@@ -140,21 +165,36 @@
|
|
|
140
165
|
}
|
|
141
166
|
}
|
|
142
167
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
168
|
+
@at-root {
|
|
169
|
+
#{$focus-visible-selector},
|
|
170
|
+
#{$_c-prefers-focus-selector} {
|
|
171
|
+
~ .custom-control-label::before {
|
|
172
|
+
@include clay-css(
|
|
173
|
+
map-deep-get(
|
|
174
|
+
$map,
|
|
175
|
+
focus,
|
|
176
|
+
custom-control-label,
|
|
177
|
+
before
|
|
178
|
+
)
|
|
179
|
+
);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
~ .custom-control-label::after {
|
|
183
|
+
@include clay-css(
|
|
184
|
+
map-deep-get(
|
|
185
|
+
$map,
|
|
186
|
+
focus,
|
|
187
|
+
custom-control-label,
|
|
188
|
+
after
|
|
189
|
+
)
|
|
190
|
+
);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
~ .card {
|
|
194
|
+
@include clay-card-variant(
|
|
195
|
+
map-deep-get($map, focus, card)
|
|
196
|
+
);
|
|
197
|
+
}
|
|
158
198
|
}
|
|
159
199
|
}
|
|
160
200
|
|
|
@@ -384,35 +424,40 @@
|
|
|
384
424
|
}
|
|
385
425
|
}
|
|
386
426
|
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
427
|
+
@at-root {
|
|
428
|
+
&:checked {
|
|
429
|
+
#{$focus-visible-selector},
|
|
430
|
+
#{$_c-prefers-focus-selector} {
|
|
431
|
+
~ .custom-control-label::before {
|
|
432
|
+
@include clay-css(
|
|
433
|
+
map-deep-get(
|
|
434
|
+
$map,
|
|
435
|
+
checked,
|
|
436
|
+
focus,
|
|
437
|
+
custom-control-label,
|
|
438
|
+
before
|
|
439
|
+
)
|
|
440
|
+
);
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
~ .custom-control-label::after {
|
|
444
|
+
@include clay-css(
|
|
445
|
+
map-deep-get(
|
|
446
|
+
$map,
|
|
447
|
+
checked,
|
|
448
|
+
focus,
|
|
449
|
+
custom-control-label,
|
|
450
|
+
after
|
|
451
|
+
)
|
|
452
|
+
);
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
~ .card {
|
|
456
|
+
@include clay-card-variant(
|
|
457
|
+
map-deep-get($map, checked, focus, card)
|
|
458
|
+
);
|
|
459
|
+
}
|
|
460
|
+
}
|
|
416
461
|
}
|
|
417
462
|
}
|
|
418
463
|
|
|
@@ -609,35 +654,40 @@
|
|
|
609
654
|
}
|
|
610
655
|
}
|
|
611
656
|
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
657
|
+
@at-root {
|
|
658
|
+
&:indeterminate {
|
|
659
|
+
#{$focus-visible-selector},
|
|
660
|
+
#{$_c-prefers-focus-selector} {
|
|
661
|
+
~ .custom-control-label::before {
|
|
662
|
+
@include clay-css(
|
|
663
|
+
map-deep-get(
|
|
664
|
+
$map,
|
|
665
|
+
indeterminate,
|
|
666
|
+
focus,
|
|
667
|
+
custom-control-label,
|
|
668
|
+
before
|
|
669
|
+
)
|
|
670
|
+
);
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
~ .custom-control-label::after {
|
|
674
|
+
@include clay-css(
|
|
675
|
+
map-deep-get(
|
|
676
|
+
$map,
|
|
677
|
+
indeterminate,
|
|
678
|
+
focus,
|
|
679
|
+
custom-control-label,
|
|
680
|
+
after
|
|
681
|
+
)
|
|
682
|
+
);
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
~ .card {
|
|
686
|
+
@include clay-card-variant(
|
|
687
|
+
map-deep-get($map, indeterminate, focus, card)
|
|
688
|
+
);
|
|
689
|
+
}
|
|
690
|
+
}
|
|
641
691
|
}
|
|
642
692
|
}
|
|
643
693
|
|
|
@@ -354,6 +354,26 @@
|
|
|
354
354
|
setter(map-get($map, hover-c-kbd-inline), ())
|
|
355
355
|
);
|
|
356
356
|
|
|
357
|
+
$_enable-focus-visible: if(
|
|
358
|
+
variable-exists(enable-focus-visible),
|
|
359
|
+
$enable-focus-visible,
|
|
360
|
+
if(
|
|
361
|
+
variable-exists(cadmin-enable-focus-visible),
|
|
362
|
+
$cadmin-enable-focus-visible,
|
|
363
|
+
true
|
|
364
|
+
)
|
|
365
|
+
);
|
|
366
|
+
$_focus-selector: if(
|
|
367
|
+
$_enable-focus-visible,
|
|
368
|
+
'&:focus-visible',
|
|
369
|
+
'&:focus'
|
|
370
|
+
);
|
|
371
|
+
$_prefers-focus-selector: if(
|
|
372
|
+
$_enable-focus-visible,
|
|
373
|
+
'.c-prefers-focus &:focus',
|
|
374
|
+
''
|
|
375
|
+
);
|
|
376
|
+
|
|
357
377
|
$focus: setter(map-get($map, focus), ());
|
|
358
378
|
$focus: map-deep-merge(
|
|
359
379
|
$focus,
|
|
@@ -624,20 +644,23 @@
|
|
|
624
644
|
}
|
|
625
645
|
}
|
|
626
646
|
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
647
|
+
@at-root {
|
|
648
|
+
&.focus,
|
|
649
|
+
#{$_focus-selector},
|
|
650
|
+
#{$_prefers-focus-selector} {
|
|
651
|
+
@include clay-css($focus);
|
|
630
652
|
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
653
|
+
&::before {
|
|
654
|
+
@include clay-css(map-get($focus, before));
|
|
655
|
+
}
|
|
634
656
|
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
657
|
+
&::after {
|
|
658
|
+
@include clay-css(map-get($focus, after));
|
|
659
|
+
}
|
|
638
660
|
|
|
639
|
-
|
|
640
|
-
|
|
661
|
+
.c-kbd-inline {
|
|
662
|
+
@include clay-css($focus-c-kbd-inline);
|
|
663
|
+
}
|
|
641
664
|
}
|
|
642
665
|
}
|
|
643
666
|
|
|
@@ -702,10 +725,13 @@
|
|
|
702
725
|
// Overwrite Bootstrap's Ensure active button styles are not applied to disabled buttons
|
|
703
726
|
// https://github.com/twbs/bootstrap/commit/de3973b5e74058e37fd15fecc4cb7b9fd3409def
|
|
704
727
|
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
728
|
+
@at-root {
|
|
729
|
+
&.btn:not([disabled]):not(.disabled):active,
|
|
730
|
+
&.btn:not([disabled]):not(.disabled).active {
|
|
731
|
+
#{$_focus-selector},
|
|
732
|
+
#{$_prefers-focus-selector} {
|
|
733
|
+
box-shadow: map-get($focus, box-shadow);
|
|
734
|
+
}
|
|
709
735
|
}
|
|
710
736
|
}
|
|
711
737
|
|
|
@@ -297,6 +297,31 @@
|
|
|
297
297
|
@if (type-of($map) == 'map') {
|
|
298
298
|
$enabled: setter(map-get($map, enabled), true);
|
|
299
299
|
|
|
300
|
+
$_enable-focus-visible: if(
|
|
301
|
+
variable-exists(enable-focus-visible),
|
|
302
|
+
$enable-focus-visible,
|
|
303
|
+
if(
|
|
304
|
+
variable-exists(cadmin-enable-focus-visible),
|
|
305
|
+
$cadmin-enable-focus-visible,
|
|
306
|
+
true
|
|
307
|
+
)
|
|
308
|
+
);
|
|
309
|
+
|
|
310
|
+
$_c-prefers-focus-selector: if(
|
|
311
|
+
$_enable-focus-visible,
|
|
312
|
+
'.c-prefers-focus &:focus',
|
|
313
|
+
''
|
|
314
|
+
);
|
|
315
|
+
|
|
316
|
+
@if (variable-exists(cadmin-enable-focus-visible)) and
|
|
317
|
+
($_enable-focus-visible)
|
|
318
|
+
{
|
|
319
|
+
$_c-prefers-focus-selector: clay-insert-before(
|
|
320
|
+
'.cadmin',
|
|
321
|
+
'.c-prefers-focus '
|
|
322
|
+
);
|
|
323
|
+
}
|
|
324
|
+
|
|
300
325
|
$base: setter($map, ());
|
|
301
326
|
$base: map-merge(
|
|
302
327
|
$map,
|
|
@@ -558,18 +583,21 @@
|
|
|
558
583
|
}
|
|
559
584
|
}
|
|
560
585
|
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
586
|
+
@at-root {
|
|
587
|
+
&.focus,
|
|
588
|
+
#{$focus-visible-selector},
|
|
589
|
+
#{$_c-prefers-focus-selector} {
|
|
590
|
+
@include clay-css($focus);
|
|
564
591
|
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
592
|
+
&::placeholder {
|
|
593
|
+
@include clay-css($focus-placeholder);
|
|
594
|
+
}
|
|
568
595
|
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
596
|
+
~ .input-group-inset-item {
|
|
597
|
+
@include clay-css(
|
|
598
|
+
map-deep-get($map, focus, input-group-inset-item)
|
|
599
|
+
);
|
|
600
|
+
}
|
|
573
601
|
}
|
|
574
602
|
}
|
|
575
603
|
|
|
@@ -713,6 +741,31 @@
|
|
|
713
741
|
@if (type-of($map) == 'map') {
|
|
714
742
|
$enabled: setter(map-get($map, enabled), true);
|
|
715
743
|
|
|
744
|
+
$_enable-focus-visible: if(
|
|
745
|
+
variable-exists(enable-focus-visible),
|
|
746
|
+
$enable-focus-visible,
|
|
747
|
+
if(
|
|
748
|
+
variable-exists(cadmin-enable-focus-visible),
|
|
749
|
+
$cadmin-enable-focus-visible,
|
|
750
|
+
true
|
|
751
|
+
)
|
|
752
|
+
);
|
|
753
|
+
|
|
754
|
+
$_c-prefers-focus-selector: if(
|
|
755
|
+
$_enable-focus-visible,
|
|
756
|
+
'.c-prefers-focus &:focus',
|
|
757
|
+
''
|
|
758
|
+
);
|
|
759
|
+
|
|
760
|
+
@if (variable-exists(cadmin-enable-focus-visible)) and
|
|
761
|
+
($_enable-focus-visible)
|
|
762
|
+
{
|
|
763
|
+
$_c-prefers-focus-selector: clay-insert-before(
|
|
764
|
+
'.cadmin',
|
|
765
|
+
'.c-prefers-focus '
|
|
766
|
+
);
|
|
767
|
+
}
|
|
768
|
+
|
|
716
769
|
$base: map-merge(
|
|
717
770
|
$map,
|
|
718
771
|
(
|
|
@@ -888,21 +941,24 @@
|
|
|
888
941
|
}
|
|
889
942
|
}
|
|
890
943
|
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
944
|
+
@at-root {
|
|
945
|
+
&.focus,
|
|
946
|
+
#{$focus-visible-selector},
|
|
947
|
+
#{$_c-prefers-focus-selector} {
|
|
948
|
+
@include clay-css($focus);
|
|
894
949
|
|
|
895
|
-
|
|
896
|
-
|
|
950
|
+
> option {
|
|
951
|
+
$focus-option: setter(map-get($focus, option), ());
|
|
897
952
|
|
|
898
|
-
|
|
953
|
+
@include clay-css($focus-option);
|
|
899
954
|
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
955
|
+
&:hover {
|
|
956
|
+
@include clay-css(map-get($focus-option, hover));
|
|
957
|
+
}
|
|
903
958
|
|
|
904
|
-
|
|
905
|
-
|
|
959
|
+
&:checked {
|
|
960
|
+
@include clay-css(map-get($focus-option, checked));
|
|
961
|
+
}
|
|
906
962
|
}
|
|
907
963
|
}
|
|
908
964
|
}
|
|
@@ -1020,30 +1076,36 @@
|
|
|
1020
1076
|
}
|
|
1021
1077
|
}
|
|
1022
1078
|
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
$
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
> option {
|
|
1030
|
-
$ff-only-focus-option: setter(
|
|
1031
|
-
map-get($ff-only-focus, option),
|
|
1079
|
+
@at-root {
|
|
1080
|
+
&.focus,
|
|
1081
|
+
#{$focus-visible-selector},
|
|
1082
|
+
#{$_c-prefers-focus-selector} {
|
|
1083
|
+
$ff-only-focus: setter(
|
|
1084
|
+
map-get($ff-only, focus),
|
|
1032
1085
|
()
|
|
1033
1086
|
);
|
|
1034
1087
|
|
|
1035
|
-
@include clay-css($ff-only-focus
|
|
1088
|
+
@include clay-css($ff-only-focus);
|
|
1036
1089
|
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
map-get($ff-only-focus
|
|
1090
|
+
> option {
|
|
1091
|
+
$ff-only-focus-option: setter(
|
|
1092
|
+
map-get($ff-only-focus, option),
|
|
1093
|
+
()
|
|
1040
1094
|
);
|
|
1041
|
-
}
|
|
1042
1095
|
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1096
|
+
@include clay-css($ff-only-focus-option);
|
|
1097
|
+
|
|
1098
|
+
&:hover {
|
|
1099
|
+
@include clay-css(
|
|
1100
|
+
map-get($ff-only-focus-option, hover)
|
|
1101
|
+
);
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
&:checked {
|
|
1105
|
+
@include clay-css(
|
|
1106
|
+
map-get($ff-only-focus-option, checked)
|
|
1107
|
+
);
|
|
1108
|
+
}
|
|
1047
1109
|
}
|
|
1048
1110
|
}
|
|
1049
1111
|
}
|
|
@@ -1553,6 +1615,31 @@
|
|
|
1553
1615
|
@if (type-of($map) == 'map') {
|
|
1554
1616
|
$enabled: setter(map-get($map, enabled), true);
|
|
1555
1617
|
|
|
1618
|
+
$_enable-focus-visible: if(
|
|
1619
|
+
variable-exists(enable-focus-visible),
|
|
1620
|
+
$enable-focus-visible,
|
|
1621
|
+
if(
|
|
1622
|
+
variable-exists(cadmin-enable-focus-visible),
|
|
1623
|
+
$cadmin-enable-focus-visible,
|
|
1624
|
+
true
|
|
1625
|
+
)
|
|
1626
|
+
);
|
|
1627
|
+
|
|
1628
|
+
$_c-prefers-focus-selector: if(
|
|
1629
|
+
$_enable-focus-visible,
|
|
1630
|
+
'.c-prefers-focus &:focus',
|
|
1631
|
+
''
|
|
1632
|
+
);
|
|
1633
|
+
|
|
1634
|
+
@if (variable-exists(cadmin-enable-focus-visible)) and
|
|
1635
|
+
($_enable-focus-visible)
|
|
1636
|
+
{
|
|
1637
|
+
$_c-prefers-focus-selector: clay-insert-before(
|
|
1638
|
+
'.cadmin',
|
|
1639
|
+
'.c-prefers-focus '
|
|
1640
|
+
);
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1556
1643
|
$clay-range-thumb: setter(map-get($map, clay-range-thumb), ());
|
|
1557
1644
|
$clay-range-thumb: map-merge(
|
|
1558
1645
|
$clay-range-thumb,
|
|
@@ -2432,51 +2519,54 @@
|
|
|
2432
2519
|
}
|
|
2433
2520
|
}
|
|
2434
2521
|
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2522
|
+
@at-root {
|
|
2523
|
+
&.focus,
|
|
2524
|
+
#{$focus-visible-selector},
|
|
2525
|
+
#{$_c-prefers-focus-selector} {
|
|
2526
|
+
@include clay-css($focus);
|
|
2438
2527
|
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2528
|
+
~ .clay-range-track {
|
|
2529
|
+
@include clay-css(
|
|
2530
|
+
map-deep-get(
|
|
2531
|
+
$map,
|
|
2532
|
+
form-control-range,
|
|
2533
|
+
focus,
|
|
2534
|
+
clay-range-track
|
|
2535
|
+
)
|
|
2536
|
+
);
|
|
2537
|
+
}
|
|
2449
2538
|
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2539
|
+
~ .clay-range-progress {
|
|
2540
|
+
@include clay-css(
|
|
2541
|
+
map-deep-get(
|
|
2542
|
+
$map,
|
|
2543
|
+
form-control-range,
|
|
2544
|
+
focus,
|
|
2545
|
+
clay-range-progress
|
|
2546
|
+
)
|
|
2547
|
+
);
|
|
2459
2548
|
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2549
|
+
.clay-range-thumb {
|
|
2550
|
+
@include clay-css($focus-clay-range-thumb);
|
|
2551
|
+
}
|
|
2463
2552
|
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2553
|
+
.tooltip {
|
|
2554
|
+
visibility: visible;
|
|
2555
|
+
opacity: 1;
|
|
2556
|
+
}
|
|
2467
2557
|
}
|
|
2468
|
-
}
|
|
2469
2558
|
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2559
|
+
&::-moz-range-thumb {
|
|
2560
|
+
@include clay-css($focus-clay-range-thumb);
|
|
2561
|
+
}
|
|
2473
2562
|
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2563
|
+
&::-ms-thumb {
|
|
2564
|
+
@include clay-css($focus-clay-range-thumb);
|
|
2565
|
+
}
|
|
2477
2566
|
|
|
2478
|
-
|
|
2479
|
-
|
|
2567
|
+
&::-webkit-slider-thumb {
|
|
2568
|
+
@include clay-css($focus-clay-range-thumb);
|
|
2569
|
+
}
|
|
2480
2570
|
}
|
|
2481
2571
|
}
|
|
2482
2572
|
|