@clayui/css 3.104.0 → 3.105.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 +351 -5
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +351 -5
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +310 -4
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/bookmarks-full.svg +9 -0
- package/lib/images/icons/bookmarks.svg +1 -2
- package/lib/images/icons/download.svg +2 -2
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/import-list.svg +2 -3
- package/lib/images/icons/import.svg +1 -2
- package/lib/images/icons/key.svg +9 -0
- package/lib/images/icons/upload-multiple.svg +2 -3
- package/lib/images/icons/upload.svg +1 -2
- package/package.json +2 -2
- package/src/images/icons/bookmarks-full.svg +9 -0
- package/src/images/icons/bookmarks.svg +1 -2
- package/src/images/icons/download.svg +2 -2
- package/src/images/icons/import-list.svg +2 -3
- package/src/images/icons/import.svg +1 -2
- package/src/images/icons/key.svg +9 -0
- package/src/images/icons/upload-multiple.svg +2 -3
- package/src/images/icons/upload.svg +1 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/cadmin/components/_clay-color.scss +42 -0
- package/src/scss/cadmin/components/_custom-forms.scss +1 -2
- package/src/scss/cadmin/components/_input-groups.scss +4 -0
- package/src/scss/cadmin/variables/_clay-color.scss +157 -1
- package/src/scss/cadmin/variables/_custom-forms.scss +19 -0
- package/src/scss/cadmin/variables/_forms.scss +23 -0
- package/src/scss/cadmin/variables/_globals.scss +6 -0
- package/src/scss/components/_clay-color.scss +42 -0
- package/src/scss/components/_custom-forms.scss +1 -2
- package/src/scss/components/_input-groups.scss +4 -0
- package/src/scss/components/_range.scss +2 -2
- package/src/scss/functions/_lx-icons-generated.scss +10 -6
- package/src/scss/mixins/_forms.scss +220 -5
- package/src/scss/mixins/_input-groups.scss +5 -1
- package/src/scss/variables/_clay-color.scss +157 -1
- package/src/scss/variables/_custom-forms.scss +19 -0
- package/src/scss/variables/_forms.scss +31 -0
- package/src/scss/variables/_globals.scss +6 -0
- package/src/scss/variables/_range.scss +33 -1
|
@@ -37,7 +37,7 @@ $cadmin-clay-color-input-group-inset-item-before: map-merge(
|
|
|
37
37
|
$cadmin-clay-color-dropdown-menu: () !default;
|
|
38
38
|
$cadmin-clay-color-dropdown-menu: map-deep-merge(
|
|
39
39
|
(
|
|
40
|
-
max-height:
|
|
40
|
+
max-height: 500px,
|
|
41
41
|
max-width: none,
|
|
42
42
|
padding-bottom: 0,
|
|
43
43
|
padding-left: 16px,
|
|
@@ -333,6 +333,162 @@ $cadmin-clay-color-range-pointer: map-deep-merge(
|
|
|
333
333
|
$cadmin-clay-color-range-pointer
|
|
334
334
|
);
|
|
335
335
|
|
|
336
|
+
// Clay Color Form Group
|
|
337
|
+
|
|
338
|
+
$cadmin-clay-color-form-group: () !default;
|
|
339
|
+
$cadmin-clay-color-form-group: map-deep-merge(
|
|
340
|
+
(
|
|
341
|
+
display: flex,
|
|
342
|
+
align-items: center,
|
|
343
|
+
margin-top: 4px,
|
|
344
|
+
margin-bottom: 16px,
|
|
345
|
+
clay-range: (
|
|
346
|
+
flex-grow: 1,
|
|
347
|
+
flex-shrink: 0,
|
|
348
|
+
margin-right: 16px,
|
|
349
|
+
width: 144px,
|
|
350
|
+
),
|
|
351
|
+
form-control: (
|
|
352
|
+
padding-left: 0,
|
|
353
|
+
padding-right: 10%,
|
|
354
|
+
text-align: right,
|
|
355
|
+
),
|
|
356
|
+
input-group: (
|
|
357
|
+
input-group-inset-item-before: (
|
|
358
|
+
font-weight: $cadmin-font-weight-semi-bold,
|
|
359
|
+
padding-left: 10%,
|
|
360
|
+
padding-right: 0,
|
|
361
|
+
min-width: 18px,
|
|
362
|
+
),
|
|
363
|
+
),
|
|
364
|
+
),
|
|
365
|
+
$cadmin-clay-color-form-group
|
|
366
|
+
);
|
|
367
|
+
|
|
368
|
+
// Clay Color Slider
|
|
369
|
+
|
|
370
|
+
$cadmin-clay-color-slider: () !default;
|
|
371
|
+
$cadmin-clay-color-slider: map-deep-merge(
|
|
372
|
+
(
|
|
373
|
+
clay-range-input: (
|
|
374
|
+
border-radius: 100px,
|
|
375
|
+
clay-range-track: (
|
|
376
|
+
border-radius: inherit,
|
|
377
|
+
height: 8px,
|
|
378
|
+
margin-top: -4px,
|
|
379
|
+
),
|
|
380
|
+
clay-range-progress: (
|
|
381
|
+
background-color: transparent,
|
|
382
|
+
border-radius: inherit,
|
|
383
|
+
height: 8px,
|
|
384
|
+
margin-top: -4px,
|
|
385
|
+
width: 100%,
|
|
386
|
+
),
|
|
387
|
+
ms-thumb: (
|
|
388
|
+
visibility: visible,
|
|
389
|
+
),
|
|
390
|
+
moz-range-thumb: (
|
|
391
|
+
visibility: visible,
|
|
392
|
+
),
|
|
393
|
+
webkit-slider-thumb: (
|
|
394
|
+
visibility: visible,
|
|
395
|
+
),
|
|
396
|
+
clay-range-thumb: (
|
|
397
|
+
background-color: currentColor,
|
|
398
|
+
border-width: 0,
|
|
399
|
+
box-shadow: 0 0 0 2px $cadmin-white,
|
|
400
|
+
height: 10px,
|
|
401
|
+
margin-top: -5px,
|
|
402
|
+
transition:
|
|
403
|
+
clay-enable-transitions(box-shadow 0.15s ease-in-out),
|
|
404
|
+
visibility: hidden,
|
|
405
|
+
width: 10px,
|
|
406
|
+
),
|
|
407
|
+
form-control-range: (
|
|
408
|
+
background-color: inherit,
|
|
409
|
+
border-radius: inherit,
|
|
410
|
+
color: inherit,
|
|
411
|
+
height: 8px,
|
|
412
|
+
webkit-slider-runnable-track: (
|
|
413
|
+
-webkit-appearance: none,
|
|
414
|
+
appearance: none,
|
|
415
|
+
),
|
|
416
|
+
),
|
|
417
|
+
focus: (
|
|
418
|
+
clay-range-thumb: (
|
|
419
|
+
box-shadow: #{0 0 0 2px $cadmin-white,
|
|
420
|
+
0 0 0 4px $cadmin-primary-l1},
|
|
421
|
+
),
|
|
422
|
+
),
|
|
423
|
+
),
|
|
424
|
+
),
|
|
425
|
+
$cadmin-clay-color-slider
|
|
426
|
+
);
|
|
427
|
+
|
|
428
|
+
$cadmin-clay-color-slider-hue: () !default;
|
|
429
|
+
$cadmin-clay-color-slider-hue: map-deep-merge(
|
|
430
|
+
(
|
|
431
|
+
clay-range-input: (
|
|
432
|
+
color: #26affd,
|
|
433
|
+
clay-range-track: (
|
|
434
|
+
background-image:
|
|
435
|
+
linear-gradient(
|
|
436
|
+
270deg,
|
|
437
|
+
#fc0d1b 0%,
|
|
438
|
+
#fc22d6 18.23%,
|
|
439
|
+
#1824fb 34.25%,
|
|
440
|
+
#2bf6fd 50.28%,
|
|
441
|
+
#2bfd2e 67.58%,
|
|
442
|
+
#fcfd37 81.22%,
|
|
443
|
+
#fc121b 100%
|
|
444
|
+
),
|
|
445
|
+
),
|
|
446
|
+
),
|
|
447
|
+
),
|
|
448
|
+
$cadmin-clay-color-slider-hue
|
|
449
|
+
);
|
|
450
|
+
|
|
451
|
+
$cadmin-clay-color-slider-alpha: () !default;
|
|
452
|
+
$cadmin-clay-color-slider-alpha: map-deep-merge(
|
|
453
|
+
(
|
|
454
|
+
clay-range-input: (
|
|
455
|
+
color: $cadmin-black,
|
|
456
|
+
clay-range-track: (
|
|
457
|
+
background-color: $cadmin-white,
|
|
458
|
+
background-image: #{linear-gradient(
|
|
459
|
+
45deg,
|
|
460
|
+
#e7e7ed 25%,
|
|
461
|
+
transparent 25%
|
|
462
|
+
),
|
|
463
|
+
linear-gradient(
|
|
464
|
+
-45deg,
|
|
465
|
+
#e7e7ed 25%,
|
|
466
|
+
transparent 25%,
|
|
467
|
+
),
|
|
468
|
+
linear-gradient(
|
|
469
|
+
45deg,
|
|
470
|
+
transparent 75%,
|
|
471
|
+
#e7e7ed 75%,
|
|
472
|
+
),
|
|
473
|
+
linear-gradient(-45deg, transparent 75%, #e7e7ed 75%)},
|
|
474
|
+
background-position: #{0 0,
|
|
475
|
+
0 4px,
|
|
476
|
+
4px -4px,
|
|
477
|
+
-4px 0px},
|
|
478
|
+
background-size: 8px 8px,
|
|
479
|
+
),
|
|
480
|
+
form-control-range: (
|
|
481
|
+
color: inherit,
|
|
482
|
+
),
|
|
483
|
+
clay-range-progress: (
|
|
484
|
+
background-image:
|
|
485
|
+
linear-gradient(90deg, transparent 0%, currentcolor 100%),
|
|
486
|
+
),
|
|
487
|
+
),
|
|
488
|
+
),
|
|
489
|
+
$cadmin-clay-color-slider-alpha
|
|
490
|
+
);
|
|
491
|
+
|
|
336
492
|
// Clay Color Sm
|
|
337
493
|
|
|
338
494
|
$cadmin-clay-color-sm-input-group-inset-item-before: () !default;
|
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
$cadmin-custom-forms-transition: background-color 0.15s ease-in-out,
|
|
2
2
|
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !default;
|
|
3
3
|
|
|
4
|
+
// Form File
|
|
5
|
+
|
|
6
|
+
$cadmin-form-file: () !default;
|
|
7
|
+
$cadmin-form-file: map-deep-merge(
|
|
8
|
+
(
|
|
9
|
+
border-radius: clay-enable-rounded($cadmin-input-border-radius),
|
|
10
|
+
display: flex,
|
|
11
|
+
position: relative,
|
|
12
|
+
transition: clay-enable-transitions($cadmin-input-transition),
|
|
13
|
+
focus-within: (
|
|
14
|
+
background-color: $cadmin-input-focus-bg,
|
|
15
|
+
box-shadow: $cadmin-input-focus-box-shadow,
|
|
16
|
+
outline: 0,
|
|
17
|
+
z-index: 1,
|
|
18
|
+
),
|
|
19
|
+
),
|
|
20
|
+
$cadmin-form-file
|
|
21
|
+
);
|
|
22
|
+
|
|
4
23
|
// Custom Control Indicator
|
|
5
24
|
|
|
6
25
|
$cadmin-custom-control-indicator-size: 16px !default;
|
|
@@ -99,6 +99,12 @@ $cadmin-input: map-deep-merge(
|
|
|
99
99
|
color: $cadmin-input-placeholder-focus-color,
|
|
100
100
|
),
|
|
101
101
|
),
|
|
102
|
+
focus-within: (
|
|
103
|
+
background-color: $cadmin-input-focus-bg,
|
|
104
|
+
border-color: $cadmin-input-focus-border-color,
|
|
105
|
+
box-shadow: $cadmin-input-focus-box-shadow,
|
|
106
|
+
color: $cadmin-input-focus-color,
|
|
107
|
+
),
|
|
102
108
|
disabled: (
|
|
103
109
|
background-color: $cadmin-input-disabled-bg,
|
|
104
110
|
border-color: $cadmin-input-disabled-border-color,
|
|
@@ -1524,6 +1530,23 @@ $cadmin-input-group-item-shrink: map-deep-merge(
|
|
|
1524
1530
|
$cadmin-input-group-item-shrink
|
|
1525
1531
|
);
|
|
1526
1532
|
|
|
1533
|
+
// .input-group-item-focusable
|
|
1534
|
+
|
|
1535
|
+
$cadmin-input-group-item-focusable: () !default;
|
|
1536
|
+
$cadmin-input-group-item-focusable: map-deep-merge(
|
|
1537
|
+
(
|
|
1538
|
+
border-radius: clay-enable-rounded($cadmin-input-border-radius),
|
|
1539
|
+
transition: clay-enable-transitions($cadmin-input-transition),
|
|
1540
|
+
focus-within: (
|
|
1541
|
+
background-color: $cadmin-input-focus-bg,
|
|
1542
|
+
box-shadow: $cadmin-input-focus-box-shadow,
|
|
1543
|
+
outline: 0,
|
|
1544
|
+
z-index: 1,
|
|
1545
|
+
),
|
|
1546
|
+
),
|
|
1547
|
+
$cadmin-input-group-item-focusable
|
|
1548
|
+
);
|
|
1549
|
+
|
|
1527
1550
|
// Input Group Inset
|
|
1528
1551
|
|
|
1529
1552
|
$cadmin-input-group-inset-item-color: $cadmin-input-group-addon-color !default;
|
|
@@ -704,14 +704,20 @@ $cadmin-link-hover-decoration: underline !default;
|
|
|
704
704
|
$cadmin-link: () !default;
|
|
705
705
|
$cadmin-link: map-deep-merge(
|
|
706
706
|
(
|
|
707
|
+
border-radius: 1px,
|
|
707
708
|
color: $cadmin-link-color,
|
|
708
709
|
cursor: $cadmin-link-cursor,
|
|
709
710
|
text-decoration: $cadmin-link-decoration,
|
|
710
711
|
text-underline-offset: 0.23em,
|
|
712
|
+
transition: clay-enable-transitions($cadmin-component-transition),
|
|
711
713
|
hover: (
|
|
712
714
|
color: $cadmin-link-hover-color,
|
|
713
715
|
text-decoration: $cadmin-link-hover-decoration,
|
|
714
716
|
),
|
|
717
|
+
focus: (
|
|
718
|
+
box-shadow: $cadmin-component-focus-box-shadow,
|
|
719
|
+
outline: 0,
|
|
720
|
+
),
|
|
715
721
|
),
|
|
716
722
|
$cadmin-link
|
|
717
723
|
);
|
|
@@ -151,6 +151,48 @@
|
|
|
151
151
|
@include clay-button-variant($clay-color-range-pointer);
|
|
152
152
|
}
|
|
153
153
|
|
|
154
|
+
// Clay Color Slider
|
|
155
|
+
|
|
156
|
+
.clay-color-slider {
|
|
157
|
+
@include clay-range-variant($clay-color-slider);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.clay-color-slider-hue {
|
|
161
|
+
@include clay-range-variant($clay-color-slider-hue);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.clay-color-slider-alpha {
|
|
165
|
+
@include clay-range-variant($clay-color-slider-alpha);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
// Clay Color Form Group
|
|
169
|
+
|
|
170
|
+
.clay-color-form-group {
|
|
171
|
+
@include clay-css($clay-color-form-group);
|
|
172
|
+
|
|
173
|
+
.clay-range {
|
|
174
|
+
@include clay-css(map-get($clay-color-form-group, clay-range));
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.form-control {
|
|
178
|
+
@include clay-form-control-variant(
|
|
179
|
+
map-get($clay-color-form-group, form-control)
|
|
180
|
+
);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.input-group {
|
|
184
|
+
$input-group: map-get($clay-color-form-group, input-group);
|
|
185
|
+
|
|
186
|
+
@include clay-input-group-variant($input-group);
|
|
187
|
+
|
|
188
|
+
.input-group-inset-item-before {
|
|
189
|
+
@include clay-css(
|
|
190
|
+
map-get($input-group, input-group-inset-item-before)
|
|
191
|
+
);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
154
196
|
// Clay Color Sm
|
|
155
197
|
|
|
156
198
|
%clay-color-sm-input-group-inset-item-before {
|
|
@@ -134,6 +134,10 @@
|
|
|
134
134
|
@include clay-input-group-item-variant($input-group-item-shrink);
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
.input-group-item-focusable {
|
|
138
|
+
@include clay-input-group-item-variant($input-group-item-focusable);
|
|
139
|
+
}
|
|
140
|
+
|
|
137
141
|
// Input Group Text
|
|
138
142
|
|
|
139
143
|
.input-group-text {
|
|
@@ -112,7 +112,9 @@
|
|
|
112
112
|
|
|
113
113
|
'book': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M480 352V32c0-16.6-14.3-32-32-32H128C75 0 32 46.3 32 96v352s0 64 80.2 63.7l351.8.3c21.6-1.3 20.9-30.7 0-31.9l-352-.1c-64.1-.1-63.9-96.1.2-96H448c17.7-.1 32-15.4 32-32zm-64-32H128V64h288v256z" fill="#{$color}"/><path class="lexicon-icon-outline" d="M111.8 416c-20.1.3-22.2 31 0 32H432c23.1-1.6 19.4-31.7 0-32H111.8z" fill="#{$color}"/></svg>',
|
|
114
114
|
|
|
115
|
-
'bookmarks': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-
|
|
115
|
+
'bookmarks-full': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" fill-rule="evenodd" clip-rule="evenodd" d="m191.945 404.937 113.237 95.557c31.255 26.375 78.706 4.569 78.706-36.63V63.981C383.888 28.2 355.243 0 319.907 0H63.982C28.646 0 0 28.199 0 63.981v399.883c0 41.198 47.452 63.005 78.707 36.63l113.238-95.557Z" fill="#{$color}"/></svg>',
|
|
116
|
+
|
|
117
|
+
'bookmarks': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" fill-rule="evenodd" clip-rule="evenodd" d="M171.307 338.015c11.92-10.059 29.355-10.059 41.275 0l107.325 90.567v-364.6H63.982v364.6l107.325-90.567Zm20.637 66.922 113.238 95.557c31.255 26.375 78.706 4.569 78.706-36.63V63.981C383.888 28.2 355.243 0 319.907 0H63.982C28.646 0 0 28.199 0 63.981v399.883c0 41.198 47.452 63.005 78.707 36.63l113.237-95.557Z" fill="#{$color}"/></svg>',
|
|
116
118
|
|
|
117
119
|
'books': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline books-1-spine-top" d="M96.1 32h-64C14.4 32 .1 46.3.1 64v32h128V64c0-17.7-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline books-1-spine-bottom" d="M.1 448c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-32H.1v32z" fill="#{$color}"/><path class="lexicon-icon-outline books-1-spine" fill="#{$color}" d="M.1 128h128v256H.1z"/><path class="lexicon-icon-outline books-2-spine-top" d="M256.1 32h-64c-17.7 0-32 14.3-32 32v32h128V64c0-17.7-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline books-2-spine-bottom" d="M160.1 448c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-32h-128v32z" fill="#{$color}"/><path class="lexicon-icon-outline books-2-spine" fill="#{$color}" d="M160.1 128h128v256h-128z"/><path class="lexicon-icon-outline books-3-spine-top" d="m359.2 35.2-31 8.1c-17.1 4.5-27.4 21.9-22.9 39l8.1 31 92.9-24.2-8.1-31c-4.5-17.1-21.9-27.4-39-22.9z" fill="#{$color}"/><path class="lexicon-icon-outline books-3-spine" fill="#{$color}" d="m321.422 144.212 92.909-24.172 64.46 247.756-92.908 24.173z"/><path class="lexicon-icon-outline books-3-spine-bottom" d="M402 453.9c4.5 17.1 21.9 27.4 39 22.9l31-8.1c17.1-4.5 27.4-21.9 22.9-39l-8.1-31-92.9 24.2 8.1 31z" fill="#{$color}"/></svg>',
|
|
118
120
|
|
|
@@ -280,7 +282,7 @@
|
|
|
280
282
|
|
|
281
283
|
'dollar-symbol': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M223 31c0-41.4 63.7-41.4 63.7 0v35.6c26.9 6 51 19.7 68.7 39.4 26.1 29.3-19.5 73.7-47.4 42.9-91-70.3-184.6 50.1-52.5 73.7h.3c138.4 8.9 187.8 175.2 30.9 225.1V480c0 42.7-63.7 42.5-63.7 0v-32.2c-27.1-6-69.6-23.1-87.3-42.9-25.6-28.8 20.2-73.5 47.6-42.7 91.6 77.6 235-48.8 44-81.7C74.7 252.4 118 85.1 223 66.7V31z" fill="#{$color}"/></svg>',
|
|
282
284
|
|
|
283
|
-
'download': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="download-arrow-down lexicon-icon-outline" d="
|
|
285
|
+
'download': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="download-arrow-down lexicon-icon-outline" d="M256 384a32.324 32.324 0 0 1-22.906-9.5L161.5 302.9c-12.719-12.599-12.719-33.099 0-45.8 12.594-12.7 33.094-12.7 45.781 0L224 273.801V32c0-17.7 14.281-32 32-32 17.688 0 32 14.3 32 32v241.801l16.688-16.701a32.352 32.352 0 0 1 22.906-9.5 32.365 32.365 0 0 1 22.906 9.5c12.688 12.599 12.688 33.099 0 45.8l-71.594 71.6c-6.125 6.1-14.312 9.5-22.906 9.5Z" fill="#{$color}"/><path class="download-border lexicon-icon-outline" d="M384 384c0-17.699 14.312-32 32-32 17.688 0 32 14.301 32 32v64c0 35.346-28.654 64-64 64H128c-35.346 0-64-28.654-64-64v-64c0-17.699 14.313-32 32-32 17.688 0 32 14.301 32 32v64h256v-64Z" fill="#{$color}"/></svg>',
|
|
284
286
|
|
|
285
287
|
'drag': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><circle class="lexicon-icon-outline drag-dot-1" cx="192" cy="128" r="32" fill="#{$color}"/><circle class="lexicon-icon-outline drag-dot-2" cx="192" cy="256" r="32" fill="#{$color}"/><circle class="lexicon-icon-outline drag-dot-3" cx="192" cy="384" r="32" fill="#{$color}"/><circle class="lexicon-icon-outline drag-dot-4" cx="320" cy="128" r="32" fill="#{$color}"/><circle class="lexicon-icon-outline drag-dot-5" cx="320" cy="256" r="32" fill="#{$color}"/><circle class="lexicon-icon-outline drag-dot-6" cx="320" cy="384" r="32" fill="#{$color}"/></svg>',
|
|
286
288
|
|
|
@@ -510,9 +512,9 @@
|
|
|
510
512
|
|
|
511
513
|
'import-export': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline import-export-arrow-up" d="M254.5 81.1 182.9 9.5C176.8 3.4 168.6 0 160 0c-8.6 0-16.8 3.4-22.9 9.5L65.5 81.1c-12.7 12.7-12.7 33.2 0 45.8 6.3 6.3 14.6 9.5 22.9 9.5s16.6-3.2 22.9-9.5l16.7-16.7V481c0 17.7 14.3 32 32 32s32-14.3 32-32V110.2l16.7 16.7c12.7 12.7 33.2 12.7 45.8 0 12.7-12.7 12.7-33.2 0-45.8z" fill="#{$color}"/><path class="lexicon-icon-outline import-export-arrow-down" d="M446.5 385.1c-6.3-6.3-14.6-9.5-22.9-9.5s-16.6 3.2-22.9 9.5L384 401.8V31c0-17.7-14.3-32-32-32s-32 14.3-32 32v370.8l-16.7-16.7c-12.7-12.7-33.2-12.7-45.8 0-12.7 12.7-12.7 33.2 0 45.8l71.6 71.6c6.1 6.1 14.3 9.5 22.9 9.5s16.8-3.4 22.9-9.5l71.6-71.6c12.7-12.7 12.7-33.2 0-45.8z" fill="#{$color}"/></svg>',
|
|
512
514
|
|
|
513
|
-
'import-list': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-import-list-
|
|
515
|
+
'import-list': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-import-list-bar" d="M448 256.002v192H64v-192c0-42.4-64-41.4-64 0v192c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64v-192c0-42.7-64-42.2-64 0ZM352 64H160c-43.5 0-43-64 0-64h192c43 0 43.5 64 0 64Z" fill="#{$color}"/><path class="lexicon-icon-outline lx-import-list-arrow-down" d="M352.001 96h-192c-42 0-43 64 0 64h64.2l.1 121.4-16.6-16.6c-27.3-23.8-65.2 18-38.6 44.8l64.3 65.2c6.1 6.1 25.5 17.2 45.5 0l64.3-65.2c27.1-29.4-14.1-67.2-38.6-44.8l-16.6 16.6-.2-121.4h64.2c42.5 0 42.5-64 0-64Z" fill="#{$color}"/></svg>',
|
|
514
516
|
|
|
515
|
-
'import': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline
|
|
517
|
+
'import': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" fill-rule="evenodd" clip-rule="evenodd" d="M160 32c0-17.673 14.327-32 32-32h128c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32H192c-17.673 0-32-14.327-32-32Zm288 415.99V255.989c0-42.2 64-42.7 64 0V447.99c0 35.299-28.7 64-64 64l-384-.001c-35.3 0-64-28.7-64-64v-192c0-41.4 64-42.4 64 0v192l384 .001Zm-169.319-73.139 64.3-65.2c27.1-29.4-14.1-67.2-38.6-44.8l-16.6 16.6-.1-121.8c0-42.7-63.6-41.7-63.6 0l.1 121.8-16.6-16.6c-27.3-23.8-65.2 18-38.6 44.8l64.3 65.2c5.9 6.1 25.3 17.2 45.4 0Z" fill="#{$color}"/></svg>',
|
|
516
518
|
|
|
517
519
|
'indent-less': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline indent-more-line-1" d="M64 96h384c17.7 0 32-14.3 32-32s-14.3-32-32-32H64c-17.7 0-32 14.3-32 32s14.3 32 32 32z" fill="#{$color}"/><path class="lexicon-icon-outline indent-more-line-4" d="M448 416H64c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline indent-more-line-3" d="M448 288H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h128c17.7 0 32-14.3 32-32s-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline indent-more-line-2" d="M448 160H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h128c17.7 0 32-14.3 32-32s-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline indent-more-arrow" d="M113.1 350.5c12.7 12.7 33.2 12.7 45.8 0 6.3-6.3 9.5-14.6 9.5-22.9s-3.2-16.6-9.5-22.9L142.2 288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32h-81.8l16.7-16.7c12.7-12.7 12.7-33.2 0-45.8-12.7-12.7-33.2-12.7-45.8 0l-71.6 71.6c-6.1 6.1-9.5 14.3-9.5 22.9s3.4 16.8 9.5 22.9l71.6 71.6z" fill="#{$color}"/></svg>',
|
|
518
520
|
|
|
@@ -534,6 +536,8 @@
|
|
|
534
536
|
|
|
535
537
|
'italic': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M320 448H128v-32h64l64-320h-64V64h192v32h-64l-64 320h64v32z" fill="#{$color}"/></svg>',
|
|
536
538
|
|
|
539
|
+
'key': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" fill-rule="evenodd" clip-rule="evenodd" d="M256 512c-17.673 0-32-14.327-32-32V251.968c-55.207-14.209-96-64.325-96-123.968C128 57.308 185.308 0 256 0c70.692 0 128 57.308 128 128 0 59.643-40.793 109.759-96 123.968V416h47.999c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H288c0 17.673-14.327 32-32 32Zm64-384c0 35.347-28.653 64-64 64s-64-28.653-64-64 28.653-64 64-64 64 28.653 64 64Z" fill="#{$color}"/></svg>',
|
|
540
|
+
|
|
537
541
|
'liferay-ac': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-liferay-ac-bar-1" d="M128 512H32c-17.7 0-32-14.3-32-32V288c0-17.7 14.3-32 32-32h96v256z" fill="#{$color}"/><path class="lexicon-icon-outline lx-liferay-ac-bar-2" d="M320 512H192c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v448c0 17.7-14.3 32-32 32z" fill="#{$color}"/><path class="lexicon-icon-outline lx-liferay-ac-bar-3" d="M480 512h-96V160h96c17.7 0 32 14.3 32 32v288c0 17.7-14.3 32-32 32z" fill="#{$color}"/></svg>',
|
|
538
542
|
|
|
539
543
|
'link': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M216.2 295.8c-23.4-23.4 11.6-58.3 35-35 18.1 18.1 47.5 18.1 65.6 0l122.5-122.5c43.4-43.4-22.2-109.1-65.6-65.6L273.1 173.3c-23.4 23.4-58.3-11.6-35-35L338.7 37.8C429-52.5 564.5 83 474.2 173.3L351.7 295.7c-41.3 41.4-102 33.7-135.5.1zm79.6-79.6c23.4 23.4-11.6 58.3-35 35-18.1-18.1-47.5-18.1-65.6 0L72.8 373.6C29.4 417 95 482.7 138.4 439.2l100.5-100.5c23.4-23.4 58.3 11.6 35 35L173.3 474.2C83 564.5-52.5 429 37.8 338.7l122.5-122.5c41.3-41.3 102-33.6 135.5 0z" fill="#{$color}"/></svg>',
|
|
@@ -890,9 +894,9 @@
|
|
|
890
894
|
|
|
891
895
|
'unpin': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline unpin-tack" fill="#{$color}" d="m0 512 140-216.5 77.6 77.4z"/><path class="lexicon-icon-outline unpin-body" d="m414.8 458.6-362-362C12 55 69-4 115 36.4l362 362c42 46.6-15 103.6-62.2 60.2z" fill="#{$color}"/><path class="lexicon-icon-outline unpin-head" d="m501.9 140.7-129.2-129c-35.4-32-76.7 8.8-58.1 41.9L247 87l180 174 31.6-63.2c35.9 18.9 71.3-24.5 43.3-57.1z" fill="#{$color}"/></svg>',
|
|
892
896
|
|
|
893
|
-
'upload-multiple': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline upload-multiple-arrow-up" d="M278.
|
|
897
|
+
'upload-multiple': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline upload-multiple-arrow-up" d="M278.914 9.9c-14.9-13.5-32.6-12.8-45.8 0l-71.5 71.5c-28.8 26.599 10.8 77.099 45.8 45.799l16.7-16.7v113.6c0 42.3 64 42 64 0v-113.6l16.7 16.7c28 29.1 76.5-13.6 45.8-45.8L278.914 9.9Z" fill="#{$color}"/><path class="lexicon-icon-outline upload-multiple-bracket" d="M383.925 256.098v64h-255.8v-64c0-43-64-41.7-64 0v63.9c0 35.347 28.654 64 64 64h255.7c35.346 0 64-28.653 64-64v-63.9c.1-42-63.9-42.3-63.9 0ZM64 480c0-17.673 14.327-32 32-32h320c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32H96c-17.673 0-32-14.327-32-32Z" fill="#{$color}"/></svg>',
|
|
894
898
|
|
|
895
|
-
'upload': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline
|
|
899
|
+
'upload': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" fill-rule="evenodd" clip-rule="evenodd" d="M233.094 10.48c13.187-12.775 30.906-13.475 45.781 0L350.5 81.939c30.781 32.139-17.812 74.754-45.812 45.711L288 110.984v241.328c0 41.918-64 42.217-64 0V110.984l-16.719 16.666c-35 31.34-74.593-19.162-45.781-45.711l71.594-71.459ZM384 448.125V384.25c0-42.219 64-41.918 64 0V448c0 35.346-28.654 64-64 64H128c-35.346 0-64-28.654-64-64v-63.75c0-41.62 64-42.916 64 0v63.875h256Z" fill="#{$color}"/></svg>',
|
|
896
900
|
|
|
897
901
|
'urgent': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm31.9 399.7c15.1-6.9 33.4-17.8 52.5-34 25.4 42.1-34.3 69.3-52.5 34zm-64.4-16.2c-37.1-26.1-4.1-45.4-50.9-90.5-16.9-16.2-70.6-60.6-30.6-127.6-21.1-19.9 1.4-45.8 23.6-23.6 66.5-38.9 111.1 13.9 127.5 30.5 48.8 49.6 65.3 13.1 91.5 49.9-8.6 81.7-94.4 155.4-161.1 161.3z"/></svg>',
|
|
898
902
|
|
|
@@ -601,6 +601,10 @@
|
|
|
601
601
|
}
|
|
602
602
|
}
|
|
603
603
|
|
|
604
|
+
&:focus-within:has(input:focus) {
|
|
605
|
+
@include clay-form-control-variant(map-get($map, focus-within));
|
|
606
|
+
}
|
|
607
|
+
|
|
604
608
|
&:active {
|
|
605
609
|
@include clay-css(map-get($map, active));
|
|
606
610
|
}
|
|
@@ -1699,8 +1703,6 @@
|
|
|
1699
1703
|
position:
|
|
1700
1704
|
setter(map-get($clay-range-thumb, position), absolute),
|
|
1701
1705
|
top: setter(map-get($clay-range-thumb, top), 50%),
|
|
1702
|
-
visibility:
|
|
1703
|
-
setter(map-get($clay-range-thumb, visibility), hidden),
|
|
1704
1706
|
width:
|
|
1705
1707
|
setter(
|
|
1706
1708
|
map-get($map, thumb-width),
|
|
@@ -2473,11 +2475,30 @@
|
|
|
2473
2475
|
}
|
|
2474
2476
|
|
|
2475
2477
|
// Webkit
|
|
2478
|
+
&::-webkit-slider-container {
|
|
2479
|
+
@include clay-css(
|
|
2480
|
+
map-deep-get(
|
|
2481
|
+
$map,
|
|
2482
|
+
form-control-range,
|
|
2483
|
+
webkit-slider-container
|
|
2484
|
+
)
|
|
2485
|
+
);
|
|
2486
|
+
}
|
|
2476
2487
|
|
|
2477
2488
|
&::-webkit-slider-runnable-track {
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2489
|
+
$webkit-slider-runnable-track: map-deep-get(
|
|
2490
|
+
$map,
|
|
2491
|
+
form-control-range,
|
|
2492
|
+
webkit-slider-runnable-track
|
|
2493
|
+
);
|
|
2494
|
+
|
|
2495
|
+
@if not($webkit-slider-runnable-track) {
|
|
2496
|
+
-webkit-appearance: none;
|
|
2497
|
+
appearance: none;
|
|
2498
|
+
height: 100%;
|
|
2499
|
+
} @else {
|
|
2500
|
+
@include clay-css($webkit-slider-runnable-track);
|
|
2501
|
+
}
|
|
2481
2502
|
}
|
|
2482
2503
|
|
|
2483
2504
|
&::-webkit-slider-thumb {
|
|
@@ -2631,3 +2652,197 @@
|
|
|
2631
2652
|
}
|
|
2632
2653
|
}
|
|
2633
2654
|
}
|
|
2655
|
+
|
|
2656
|
+
@mixin clay-range-variant($map) {
|
|
2657
|
+
@if (type-of($map) == 'map') {
|
|
2658
|
+
$enabled: setter(map-get($map, enabled), true);
|
|
2659
|
+
|
|
2660
|
+
$clay-range-input: setter(map-get($map, clay-range-input), ());
|
|
2661
|
+
|
|
2662
|
+
$clay-range-thumb: setter(
|
|
2663
|
+
map-get($clay-range-input, clay-range-thumb),
|
|
2664
|
+
()
|
|
2665
|
+
);
|
|
2666
|
+
$clay-range-thumb: map-merge(
|
|
2667
|
+
$clay-range-thumb,
|
|
2668
|
+
(
|
|
2669
|
+
margin-top:
|
|
2670
|
+
setter(map-get($clay-range-thumb, margin-top), c-unset),
|
|
2671
|
+
position: setter(map-get($clay-range-thumb, position), c-unset),
|
|
2672
|
+
right: setter(map-get($clay-range-thumb, right), c-unset),
|
|
2673
|
+
top: setter(map-get($clay-range-thumb, top), c-unset),
|
|
2674
|
+
)
|
|
2675
|
+
);
|
|
2676
|
+
|
|
2677
|
+
$moz-range-thumb: setter(
|
|
2678
|
+
map-get($clay-range-input, moz-range-thumb),
|
|
2679
|
+
()
|
|
2680
|
+
);
|
|
2681
|
+
$moz-range-thumb: map-merge(
|
|
2682
|
+
$moz-range-thumb,
|
|
2683
|
+
(
|
|
2684
|
+
appearance:
|
|
2685
|
+
setter(map-get($moz-range-thumb, appearance), c-unset),
|
|
2686
|
+
position: setter(map-get($moz-range-thumb, position), c-unset),
|
|
2687
|
+
)
|
|
2688
|
+
);
|
|
2689
|
+
|
|
2690
|
+
$ms-thumb: setter(map-get($clay-range-input, ms-thumb), ());
|
|
2691
|
+
$ms-thumb: map-merge(
|
|
2692
|
+
$ms-thumb,
|
|
2693
|
+
(
|
|
2694
|
+
appearance: setter(map-get($ms-thumb, appearance), c-unset),
|
|
2695
|
+
)
|
|
2696
|
+
);
|
|
2697
|
+
|
|
2698
|
+
$webkit-slider-thumb: setter(
|
|
2699
|
+
map-get($clay-range-input, webkit-slider-thumb),
|
|
2700
|
+
()
|
|
2701
|
+
);
|
|
2702
|
+
$webkit-slider-thumb: map-merge(
|
|
2703
|
+
$webkit-slider-thumb,
|
|
2704
|
+
(
|
|
2705
|
+
appearance:
|
|
2706
|
+
setter(map-get($webkit-slider-thumb, appearance), c-unset),
|
|
2707
|
+
position:
|
|
2708
|
+
setter(map-get($webkit-slider-thumb, position), c-unset),
|
|
2709
|
+
)
|
|
2710
|
+
);
|
|
2711
|
+
|
|
2712
|
+
$clay-range-track: setter(
|
|
2713
|
+
map-get($clay-range-input, clay-range-track),
|
|
2714
|
+
()
|
|
2715
|
+
);
|
|
2716
|
+
$clay-range-track: map-merge(
|
|
2717
|
+
$clay-range-track,
|
|
2718
|
+
(
|
|
2719
|
+
margin-top:
|
|
2720
|
+
setter(map-get($clay-range-track, margin-top), c-unset),
|
|
2721
|
+
)
|
|
2722
|
+
);
|
|
2723
|
+
|
|
2724
|
+
$clay-range-progress: setter(
|
|
2725
|
+
map-get($clay-range-input, clay-range-progress),
|
|
2726
|
+
()
|
|
2727
|
+
);
|
|
2728
|
+
$clay-range-progress: map-merge(
|
|
2729
|
+
$clay-range-progress,
|
|
2730
|
+
(
|
|
2731
|
+
margin-top:
|
|
2732
|
+
setter(map-get($clay-range-progress, margin-top), c-unset),
|
|
2733
|
+
)
|
|
2734
|
+
);
|
|
2735
|
+
|
|
2736
|
+
$tooltip: setter(map-get($clay-range-input, tooltip), ());
|
|
2737
|
+
$tooltip: map-merge(
|
|
2738
|
+
$tooltip,
|
|
2739
|
+
(
|
|
2740
|
+
margin-left: setter(map-get($tooltip, margin-left), c-unset),
|
|
2741
|
+
)
|
|
2742
|
+
);
|
|
2743
|
+
|
|
2744
|
+
$clay-tooltip-bottom: setter(
|
|
2745
|
+
map-get($clay-range-input, clay-tooltip-bottom),
|
|
2746
|
+
()
|
|
2747
|
+
);
|
|
2748
|
+
$clay-tooltip-bottom: map-merge(
|
|
2749
|
+
$clay-tooltip-bottom,
|
|
2750
|
+
(
|
|
2751
|
+
padding-top:
|
|
2752
|
+
setter(
|
|
2753
|
+
map-get($map, tooltip-arrow-offset),
|
|
2754
|
+
map-get($clay-tooltip-bottom, padding-top),
|
|
2755
|
+
c-unset
|
|
2756
|
+
),
|
|
2757
|
+
top: setter(map-get($clay-tooltip-bottom, top), c-unset),
|
|
2758
|
+
transform:
|
|
2759
|
+
setter(map-get($clay-tooltip-bottom, transform), c-unset),
|
|
2760
|
+
)
|
|
2761
|
+
);
|
|
2762
|
+
|
|
2763
|
+
$clay-tooltip-bottom-tooltip-arrow: setter(
|
|
2764
|
+
map-get($clay-tooltip-bottom, tooltip-arrow),
|
|
2765
|
+
()
|
|
2766
|
+
);
|
|
2767
|
+
$clay-tooltip-bottom-tooltip-arrow: map-merge(
|
|
2768
|
+
$clay-tooltip-bottom-tooltip-arrow,
|
|
2769
|
+
(
|
|
2770
|
+
margin-left:
|
|
2771
|
+
setter(
|
|
2772
|
+
map-get(
|
|
2773
|
+
$clay-tooltip-bottom-tooltip-arrow,
|
|
2774
|
+
margin-left
|
|
2775
|
+
),
|
|
2776
|
+
c-unset
|
|
2777
|
+
),
|
|
2778
|
+
)
|
|
2779
|
+
);
|
|
2780
|
+
|
|
2781
|
+
$clay-tooltip-bottom: map-deep-merge(
|
|
2782
|
+
$clay-tooltip-bottom,
|
|
2783
|
+
(
|
|
2784
|
+
tooltip-arrow: $clay-tooltip-bottom-tooltip-arrow,
|
|
2785
|
+
)
|
|
2786
|
+
);
|
|
2787
|
+
|
|
2788
|
+
$clay-tooltip-top: setter(
|
|
2789
|
+
map-get($clay-range-input, clay-tooltip-top),
|
|
2790
|
+
()
|
|
2791
|
+
);
|
|
2792
|
+
$clay-tooltip-top: map-merge(
|
|
2793
|
+
$clay-tooltip-top,
|
|
2794
|
+
(
|
|
2795
|
+
bottom: setter(map-get($clay-tooltip-top, bottom), c-unset),
|
|
2796
|
+
padding-bottom:
|
|
2797
|
+
setter(map-get($clay-tooltip-top, padding-bottom), c-unset),
|
|
2798
|
+
transform:
|
|
2799
|
+
setter(map-get($clay-tooltip-top, transform), c-unset),
|
|
2800
|
+
)
|
|
2801
|
+
);
|
|
2802
|
+
|
|
2803
|
+
$clay-tooltip-top-tooltip-arrow: setter(
|
|
2804
|
+
map-get($clay-tooltip-top, tooltip-arrow),
|
|
2805
|
+
()
|
|
2806
|
+
);
|
|
2807
|
+
$clay-tooltip-top-tooltip-arrow: map-merge(
|
|
2808
|
+
$clay-tooltip-top-tooltip-arrow,
|
|
2809
|
+
(
|
|
2810
|
+
margin-left:
|
|
2811
|
+
setter(
|
|
2812
|
+
map-get($clay-tooltip-top-tooltip-arrow, margin-left),
|
|
2813
|
+
c-unset
|
|
2814
|
+
),
|
|
2815
|
+
)
|
|
2816
|
+
);
|
|
2817
|
+
|
|
2818
|
+
$clay-tooltip-top: map-deep-merge(
|
|
2819
|
+
$clay-tooltip-top,
|
|
2820
|
+
(
|
|
2821
|
+
tooltip-arrow: $clay-tooltip-top-tooltip-arrow,
|
|
2822
|
+
)
|
|
2823
|
+
);
|
|
2824
|
+
|
|
2825
|
+
$clay-range-input: map-deep-merge(
|
|
2826
|
+
$clay-range-input,
|
|
2827
|
+
(
|
|
2828
|
+
clay-range-thumb: $clay-range-thumb,
|
|
2829
|
+
moz-range-thumb: $moz-range-thumb,
|
|
2830
|
+
ms-thumb: $ms-thumb,
|
|
2831
|
+
webkit-slider-thumb: $webkit-slider-thumb,
|
|
2832
|
+
clay-range-track: $clay-range-track,
|
|
2833
|
+
clay-range-progress: $clay-range-progress,
|
|
2834
|
+
tooltip: $tooltip,
|
|
2835
|
+
clay-tooltip-bottom: $clay-tooltip-bottom,
|
|
2836
|
+
clay-tooltip-top: $clay-tooltip-top,
|
|
2837
|
+
)
|
|
2838
|
+
);
|
|
2839
|
+
|
|
2840
|
+
@if ($enabled) {
|
|
2841
|
+
@include clay-css($map);
|
|
2842
|
+
|
|
2843
|
+
.clay-range-input {
|
|
2844
|
+
@include clay-range-input-variant($clay-range-input);
|
|
2845
|
+
}
|
|
2846
|
+
}
|
|
2847
|
+
}
|
|
2848
|
+
}
|