igniteui-theming 6.0.0-beta.14 → 6.0.0-beta.15
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/package.json +1 -1
- package/sass/themes/schemas/components/dark/_calendar.scss +76 -59
- package/sass/themes/schemas/components/dark/_slider.scss +80 -5
- package/sass/themes/schemas/components/dark/_splitter.scss +25 -4
- package/sass/themes/schemas/components/light/_calendar.scss +93 -24
- package/sass/themes/schemas/components/light/_slider.scss +137 -34
- package/sass/themes/schemas/components/light/_splitter.scss +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-theming",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.15",
|
|
4
4
|
"description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -341,6 +341,8 @@ $dark-fluent-calendar: extend(
|
|
|
341
341
|
/// @prop {Map} month-current-hover-background [color: ('gray', 100)] - The :hover background color of the current month in months view.
|
|
342
342
|
/// @prop {Map} date-special-hover-background [color: ('gray', 100)] - The background color of a special date.
|
|
343
343
|
/// @prop {Map} date-special-focus-background [color: ('gray', 100)] - The background color of a special date.
|
|
344
|
+
/// @prop {Map} date-special-range-hover-background [color: ('gray', 100)] - The :hover background color of a special date in range selection.
|
|
345
|
+
/// @prop {Map} date-special-range-focus-background [color: ('gray', 100)] - The :focus background color of a special date in range selection.
|
|
344
346
|
/// @prop {Map} date-hover-background [color: 'gray', 100] - The :hover background color of a date.
|
|
345
347
|
/// @prop {Map} date-focus-background [color: 'gray', 100] - The :focus background color of a date.
|
|
346
348
|
/// @prop {Map} picker-hover-foreground [color: ('secondary', 200)]- The :hover foreground color of the month and year pickers.
|
|
@@ -396,6 +398,18 @@ $dark-bootstrap-calendar: extend(
|
|
|
396
398
|
100,
|
|
397
399
|
),
|
|
398
400
|
),
|
|
401
|
+
date-special-range-hover-background: (
|
|
402
|
+
color: (
|
|
403
|
+
'gray',
|
|
404
|
+
100,
|
|
405
|
+
),
|
|
406
|
+
),
|
|
407
|
+
date-special-range-focus-background: (
|
|
408
|
+
color: (
|
|
409
|
+
'gray',
|
|
410
|
+
100,
|
|
411
|
+
),
|
|
412
|
+
),
|
|
399
413
|
date-hover-background: (
|
|
400
414
|
color: (
|
|
401
415
|
'gray',
|
|
@@ -508,7 +522,9 @@ $dark-bootstrap-calendar: extend(
|
|
|
508
522
|
/// @prop {Map} content-background [(color: 'gray', 50)] - The background color of the days, months and years views.
|
|
509
523
|
/// @prop {Map} picker-background [(color: 'gray', 50)] - The background color of the month and year pickers.
|
|
510
524
|
/// @prop {Map} border-color [color: ('gray', 100)] - The calendar border color.
|
|
525
|
+
/// @prop {Map} date-hover-foreground [contrast-color: 'gray', 50] - The :hover foreground color of a date.
|
|
511
526
|
/// @prop {Map} date-hover-background [contrast-color: ('gray', 900, .1)] - The :hover background color of a date.
|
|
527
|
+
/// @prop {Map} date-focus-foreground [contrast-color: 'gray', 50] - The :focus foreground color of a date.
|
|
512
528
|
/// @prop {Map} date-focus-background [contrast-color: ('gray', 900, .1)] - The :focus background color of date.
|
|
513
529
|
/// @prop {Map} date-current-foreground [color: ('gray', 900)] - The foreground color of the current date.
|
|
514
530
|
/// @prop {Map} date-disabled-foreground [color: ('gray', 500, .5)] - The foreground color of disabled dates.
|
|
@@ -521,9 +537,11 @@ $dark-bootstrap-calendar: extend(
|
|
|
521
537
|
/// @prop {Map} date-special-foreground [color: ('primary', 50)] - The foreground color of a special date.
|
|
522
538
|
/// @prop {Map} date-special-background [color: ('primary', 600, .4)] - The background color of a special date.
|
|
523
539
|
/// @prop {Map} date-special-hover-foreground [contrast-color: ('primary', 600)] - The foreground color of a special date.
|
|
524
|
-
/// @prop {Map} date-special-hover-background [color: ('primary',
|
|
540
|
+
/// @prop {Map} date-special-hover-background [color: ('primary', 600, .7)] - The background color of a special date.
|
|
525
541
|
/// @prop {Map} date-special-focus-foreground [contrast-color: ('primary', 600)] - The foreground color of a special date.
|
|
526
|
-
/// @prop {Map} date-special-focus-background [color: ('primary', 600)] - The background color of a special date.
|
|
542
|
+
/// @prop {Map} date-special-focus-background [color: ('primary', 600, .7)] - The background color of a special date.
|
|
543
|
+
/// @prop {Map} date-special-range-hover-background [color: ('primary', 600, .7)] - The :hover background color of a special date in range selection.
|
|
544
|
+
/// @prop {Map} date-special-range-focus-background [color: ('primary', 600, .7)] - The :focus background color of a special date in range selection.
|
|
527
545
|
/// @prop {Map} navigation-hover-color [color: ('primary', 300)] - The :hover color of the icon button responsible for month navigation.
|
|
528
546
|
/// @prop {Map} navigation-focus-color [color: ('primary', 300)] - The :focus color of the icon button responsible for month navigation.
|
|
529
547
|
/// @prop {Мап} actions-divider-color [color: ('gray', 100)] - The border color used for the date-picker actions divider.
|
|
@@ -532,10 +550,12 @@ $dark-bootstrap-calendar: extend(
|
|
|
532
550
|
/// @prop {Map} week-number-foreground [color: ('gray', 500)] - The foreground color of the week number column.
|
|
533
551
|
/// @prop {Map} week-number-background [color: ('gray', 900, .05)] - The background color of the week number column.
|
|
534
552
|
/// @prop {Map} date-selected-range-background [color: ('primary', 400, .2)] - The background color of the selected range.
|
|
553
|
+
/// @prop {Map} current-outline-hover-color [color: ('primary', 300)] - The :hover outline color of the current year/month in year/month views.
|
|
554
|
+
/// @prop {Map} current-outline-focus-color [color: ('primary', 300)] - The :focus outline color of the current year/month in year/month views.
|
|
535
555
|
/// @prop {Map} selected-current-outline-color [contrast-color: ('gray', 50, .6)] - The outline color of the selected current year/month in year/month views.
|
|
536
556
|
/// @prop {Map} selected-current-hover-outline-color [contrast-color: ('gray', 50, .6)] - The :hover outline color of the selected current year/month in year/month views.
|
|
537
557
|
/// @prop {Map} selected-current-focus-outline-color [contrast-color: ('gray', 50, .6)] - The :focus outline color of the selected current year/month in year/month views.
|
|
538
|
-
|
|
558
|
+
/// @prop {Map} date-current-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the current date.
|
|
539
559
|
/// @requires $indigo-calendar
|
|
540
560
|
$dark-indigo-calendar: extend(
|
|
541
561
|
$indigo-calendar,
|
|
@@ -543,25 +563,14 @@ $dark-indigo-calendar: extend(
|
|
|
543
563
|
content-foreground: (
|
|
544
564
|
color: (
|
|
545
565
|
'gray',
|
|
546
|
-
|
|
547
|
-
),
|
|
548
|
-
),
|
|
549
|
-
date-hover-foreground: (
|
|
550
|
-
contrast-color: (
|
|
551
|
-
'gray',
|
|
552
|
-
50,
|
|
553
|
-
),
|
|
554
|
-
),
|
|
555
|
-
date-focus-foreground: (
|
|
556
|
-
contrast-color: (
|
|
557
|
-
'gray',
|
|
558
|
-
50,
|
|
566
|
+
900,
|
|
559
567
|
),
|
|
560
568
|
),
|
|
561
|
-
date-current-hover-
|
|
569
|
+
date-current-hover-background: (
|
|
562
570
|
contrast-color: (
|
|
563
571
|
'gray',
|
|
564
572
|
50,
|
|
573
|
+
0.1,
|
|
565
574
|
),
|
|
566
575
|
),
|
|
567
576
|
date-current-focus-foreground: (
|
|
@@ -570,12 +579,6 @@ $dark-indigo-calendar: extend(
|
|
|
570
579
|
50,
|
|
571
580
|
),
|
|
572
581
|
),
|
|
573
|
-
month-hover-foreground: (
|
|
574
|
-
contrast-color: (
|
|
575
|
-
'gray',
|
|
576
|
-
50,
|
|
577
|
-
),
|
|
578
|
-
),
|
|
579
582
|
month-hover-background: (
|
|
580
583
|
contrast-color: (
|
|
581
584
|
'gray',
|
|
@@ -583,25 +586,6 @@ $dark-indigo-calendar: extend(
|
|
|
583
586
|
0.1,
|
|
584
587
|
),
|
|
585
588
|
),
|
|
586
|
-
month-current-hover-foreground: (
|
|
587
|
-
contrast-color: (
|
|
588
|
-
'gray',
|
|
589
|
-
50,
|
|
590
|
-
),
|
|
591
|
-
),
|
|
592
|
-
month-current-hover-background: (
|
|
593
|
-
contrast-color: (
|
|
594
|
-
'gray',
|
|
595
|
-
50,
|
|
596
|
-
0.1,
|
|
597
|
-
),
|
|
598
|
-
),
|
|
599
|
-
year-hover-foreground: (
|
|
600
|
-
contrast-color: (
|
|
601
|
-
'gray',
|
|
602
|
-
50,
|
|
603
|
-
),
|
|
604
|
-
),
|
|
605
589
|
year-hover-background: (
|
|
606
590
|
contrast-color: (
|
|
607
591
|
'gray',
|
|
@@ -609,12 +593,6 @@ $dark-indigo-calendar: extend(
|
|
|
609
593
|
0.1,
|
|
610
594
|
),
|
|
611
595
|
),
|
|
612
|
-
year-current-hover-foreground: (
|
|
613
|
-
contrast-color: (
|
|
614
|
-
'gray',
|
|
615
|
-
50,
|
|
616
|
-
),
|
|
617
|
-
),
|
|
618
596
|
date-selected-current-range-hover-background: (
|
|
619
597
|
contrast-color: (
|
|
620
598
|
'gray',
|
|
@@ -646,6 +624,12 @@ $dark-indigo-calendar: extend(
|
|
|
646
624
|
100,
|
|
647
625
|
),
|
|
648
626
|
),
|
|
627
|
+
date-hover-foreground: (
|
|
628
|
+
contrast-color: (
|
|
629
|
+
'gray',
|
|
630
|
+
50,
|
|
631
|
+
),
|
|
632
|
+
),
|
|
649
633
|
date-hover-background: (
|
|
650
634
|
contrast-color: (
|
|
651
635
|
'gray',
|
|
@@ -653,6 +637,12 @@ $dark-indigo-calendar: extend(
|
|
|
653
637
|
0.1,
|
|
654
638
|
),
|
|
655
639
|
),
|
|
640
|
+
date-focus-foreground: (
|
|
641
|
+
contrast-color: (
|
|
642
|
+
'gray',
|
|
643
|
+
50,
|
|
644
|
+
),
|
|
645
|
+
),
|
|
656
646
|
date-focus-background: (
|
|
657
647
|
contrast-color: (
|
|
658
648
|
'gray',
|
|
@@ -697,42 +687,57 @@ $dark-indigo-calendar: extend(
|
|
|
697
687
|
0.4,
|
|
698
688
|
),
|
|
699
689
|
),
|
|
700
|
-
date-special-
|
|
701
|
-
color: (
|
|
690
|
+
date-special-hover-foreground: (
|
|
691
|
+
contrast-color: (
|
|
702
692
|
'primary',
|
|
703
|
-
|
|
693
|
+
600,
|
|
704
694
|
),
|
|
705
695
|
),
|
|
706
|
-
date-special-
|
|
696
|
+
date-special-hover-background: (
|
|
707
697
|
color: (
|
|
708
698
|
'primary',
|
|
709
699
|
600,
|
|
710
|
-
0.
|
|
700
|
+
0.7,
|
|
711
701
|
),
|
|
712
702
|
),
|
|
713
|
-
date-special-
|
|
703
|
+
date-special-focus-foreground: (
|
|
714
704
|
contrast-color: (
|
|
715
705
|
'primary',
|
|
716
706
|
600,
|
|
717
707
|
),
|
|
718
708
|
),
|
|
719
|
-
date-special-
|
|
709
|
+
date-special-focus-background: (
|
|
720
710
|
color: (
|
|
721
711
|
'primary',
|
|
722
|
-
|
|
712
|
+
600,
|
|
723
713
|
0.7,
|
|
724
714
|
),
|
|
725
715
|
),
|
|
726
|
-
date-special-
|
|
727
|
-
|
|
716
|
+
date-special-range-foreground: (
|
|
717
|
+
color: (
|
|
718
|
+
'primary',
|
|
719
|
+
50,
|
|
720
|
+
),
|
|
721
|
+
),
|
|
722
|
+
date-special-range-background: (
|
|
723
|
+
color: (
|
|
728
724
|
'primary',
|
|
729
725
|
600,
|
|
726
|
+
0.4,
|
|
730
727
|
),
|
|
731
728
|
),
|
|
732
|
-
date-special-
|
|
729
|
+
date-special-range-hover-background: (
|
|
730
|
+
color: (
|
|
731
|
+
'primary',
|
|
732
|
+
600,
|
|
733
|
+
0.7,
|
|
734
|
+
),
|
|
735
|
+
),
|
|
736
|
+
date-special-range-focus-background: (
|
|
733
737
|
color: (
|
|
734
738
|
'primary',
|
|
735
739
|
600,
|
|
740
|
+
0.7,
|
|
736
741
|
),
|
|
737
742
|
),
|
|
738
743
|
navigation-hover-color: (
|
|
@@ -792,6 +797,18 @@ $dark-indigo-calendar: extend(
|
|
|
792
797
|
0.6,
|
|
793
798
|
),
|
|
794
799
|
),
|
|
800
|
+
current-outline-hover-color: (
|
|
801
|
+
color: (
|
|
802
|
+
'primary',
|
|
803
|
+
300,
|
|
804
|
+
),
|
|
805
|
+
),
|
|
806
|
+
current-outline-focus-color: (
|
|
807
|
+
color: (
|
|
808
|
+
'primary',
|
|
809
|
+
300,
|
|
810
|
+
),
|
|
811
|
+
),
|
|
795
812
|
selected-current-outline-hover-color: (
|
|
796
813
|
contrast-color: (
|
|
797
814
|
'gray',
|
|
@@ -22,6 +22,7 @@ $dark-material-slider: $material-slider;
|
|
|
22
22
|
/// @prop {Map} track-color [color: ('gray', 600)] - The color of the track.
|
|
23
23
|
/// @prop {Map} track-hover-color [color: ('primary', 300)] - The color of the track on hover.
|
|
24
24
|
/// @prop {Map} thumb-border-color [color: ('gray', 400)] - The thumb border color.
|
|
25
|
+
/// @prop {Map} thumb-border-hover-color [color: ('gray', 400)] - The thumb border color.
|
|
25
26
|
/// @prop {Map} thumb-focus-color [color: ('primary', 100)] - The focus outline color of the thumb.
|
|
26
27
|
/// @prop {Map} thumb-disabled-border-color [color: ('gray', 200)] - The thumb border color when it's disabled.
|
|
27
28
|
/// @prop {Map} disabled-base-track-color [color: ('gray', 100)] - The base background color of the track when is disabled.
|
|
@@ -60,6 +61,12 @@ $dark-fluent-slider: extend(
|
|
|
60
61
|
400,
|
|
61
62
|
),
|
|
62
63
|
),
|
|
64
|
+
thumb-border-hover-color: (
|
|
65
|
+
color: (
|
|
66
|
+
'gray',
|
|
67
|
+
400,
|
|
68
|
+
),
|
|
69
|
+
),
|
|
63
70
|
thumb-focus-color: (
|
|
64
71
|
color: (
|
|
65
72
|
'primary',
|
|
@@ -114,23 +121,91 @@ $dark-bootstrap-slider: extend(
|
|
|
114
121
|
|
|
115
122
|
/// Generates a dark indigo slider schema.
|
|
116
123
|
/// @type {Map}
|
|
117
|
-
/// @prop {Map}
|
|
118
|
-
/// @prop {Map} base-track-
|
|
124
|
+
/// @prop {Map} track-step-color [contrast-color: ('gray', 50, 0.3)] - The color of the track steps.
|
|
125
|
+
/// @prop {Map} base-track-color [contrast-color: ('gray', 50, 0.3)] - The base background color of the track.
|
|
126
|
+
/// @prop {Map} base-track-hover-color [contrast-color: ('gray', 50, 0.4)] - The base background color of the track on hover.
|
|
127
|
+
/// @prop {Map} track-color [color: ('primary', 400)] - The color of the track.
|
|
128
|
+
/// @prop {Map} track-hover-color [color: ('primary', 300)] - The color of the track on hover.
|
|
129
|
+
/// @prop {Map} thumb-color [color: 'surface'] - The color of the thumb.
|
|
130
|
+
/// @prop {Map} thumb-border-color [color: ('primary', 400)] - The thumb border color.
|
|
131
|
+
/// @prop {Map} thumb-border-hover-color [color: ('primary', 300)] - The thumb border color when hovered.
|
|
132
|
+
/// @prop {Map} disabled-thumb-color [color: 'surface'] - The thumb color when its disabled.
|
|
133
|
+
/// @prop {Map} thumb-disabled-border-color [color: ('primary', 800)] - The thumb border color when it's disabled.
|
|
134
|
+
/// @prop {Map} disabled-base-track-color [contrast-color: ('gray', 50, 0.15)] - The base background color of the track when is disabled.
|
|
135
|
+
/// @prop {Map} disabled-fill-track-color [color: ('primary', 800)] - The background color of the fill track when is disabled.
|
|
119
136
|
/// @requires $indigo-slider
|
|
120
137
|
$dark-indigo-slider: extend(
|
|
121
138
|
$indigo-slider,
|
|
122
139
|
(
|
|
140
|
+
track-step-color: (
|
|
141
|
+
contrast-color: (
|
|
142
|
+
'gray',
|
|
143
|
+
50,
|
|
144
|
+
0.3,
|
|
145
|
+
),
|
|
146
|
+
),
|
|
123
147
|
base-track-color: (
|
|
124
|
-
color: (
|
|
148
|
+
contrast-color: (
|
|
125
149
|
'gray',
|
|
126
|
-
|
|
150
|
+
50,
|
|
151
|
+
0.3,
|
|
127
152
|
),
|
|
128
153
|
),
|
|
129
154
|
base-track-hover-color: (
|
|
130
|
-
color: (
|
|
155
|
+
contrast-color: (
|
|
131
156
|
'gray',
|
|
157
|
+
50,
|
|
158
|
+
0.4,
|
|
159
|
+
),
|
|
160
|
+
),
|
|
161
|
+
track-color: (
|
|
162
|
+
color: (
|
|
163
|
+
'primary',
|
|
164
|
+
400,
|
|
165
|
+
),
|
|
166
|
+
),
|
|
167
|
+
track-hover-color: (
|
|
168
|
+
color: (
|
|
169
|
+
'primary',
|
|
170
|
+
300,
|
|
171
|
+
),
|
|
172
|
+
),
|
|
173
|
+
thumb-color: (
|
|
174
|
+
color: 'surface',
|
|
175
|
+
),
|
|
176
|
+
thumb-border-color: (
|
|
177
|
+
color: (
|
|
178
|
+
'primary',
|
|
132
179
|
400,
|
|
133
180
|
),
|
|
134
181
|
),
|
|
182
|
+
thumb-border-hover-color: (
|
|
183
|
+
color: (
|
|
184
|
+
'primary',
|
|
185
|
+
300,
|
|
186
|
+
),
|
|
187
|
+
),
|
|
188
|
+
disabled-thumb-color: (
|
|
189
|
+
color: 'surface',
|
|
190
|
+
),
|
|
191
|
+
thumb-disabled-border-color: (
|
|
192
|
+
color: (
|
|
193
|
+
'primary',
|
|
194
|
+
800,
|
|
195
|
+
),
|
|
196
|
+
),
|
|
197
|
+
disabled-base-track-color: (
|
|
198
|
+
contrast-color: (
|
|
199
|
+
'gray',
|
|
200
|
+
50,
|
|
201
|
+
0.15,
|
|
202
|
+
),
|
|
203
|
+
),
|
|
204
|
+
disabled-fill-track-color: (
|
|
205
|
+
color: (
|
|
206
|
+
'primary',
|
|
207
|
+
800,
|
|
208
|
+
),
|
|
209
|
+
),
|
|
135
210
|
)
|
|
136
211
|
);
|
|
@@ -51,18 +51,39 @@ $dark-bootstrap-splitter: $bootstrap-splitter;
|
|
|
51
51
|
|
|
52
52
|
/// Generates a dark indigo splitter schema.
|
|
53
53
|
/// @type {Map}
|
|
54
|
-
/// @prop {Map}
|
|
55
|
-
/// @prop {Map}
|
|
54
|
+
/// @prop {Map} bar-color [color: ('gray', 200)] - The background color of the bar.
|
|
55
|
+
/// @prop {Map} focus-color [color: ('gray', 300)] - The color used for focused splitter bar.
|
|
56
|
+
/// @prop {Map} handle-color [color: ('gray', 600)] - The color for the bar drag handle.
|
|
57
|
+
/// @prop {Map} expander-color [color: ('gray', 600)] - The color for the bar drag handle.
|
|
56
58
|
/// @requires $indigo-splitter
|
|
57
59
|
$dark-indigo-splitter: extend(
|
|
58
60
|
$indigo-splitter,
|
|
59
61
|
(
|
|
62
|
+
bar-color: (
|
|
63
|
+
color: (
|
|
64
|
+
'gray',
|
|
65
|
+
200,
|
|
66
|
+
),
|
|
67
|
+
),
|
|
68
|
+
|
|
69
|
+
focus-color: (
|
|
70
|
+
color: (
|
|
71
|
+
'gray',
|
|
72
|
+
300,
|
|
73
|
+
),
|
|
74
|
+
),
|
|
60
75
|
handle-color: (
|
|
61
|
-
color:
|
|
76
|
+
color: (
|
|
77
|
+
'gray',
|
|
78
|
+
600,
|
|
79
|
+
),
|
|
62
80
|
),
|
|
63
81
|
|
|
64
82
|
expander-color: (
|
|
65
|
-
color:
|
|
83
|
+
color: (
|
|
84
|
+
'gray',
|
|
85
|
+
600,
|
|
86
|
+
),
|
|
66
87
|
),
|
|
67
88
|
)
|
|
68
89
|
);
|
|
@@ -39,9 +39,7 @@
|
|
|
39
39
|
/// @prop {Map} date-selected-current-range-hover-foreground [color: ('gray', 900)] - The :hover foreground color of the current date in the selected range.
|
|
40
40
|
/// @prop {Map} date-selected-current-range-focus-foreground [color: ('gray', 900)] - The :focus foreground color of the current date in the selected range.
|
|
41
41
|
/// @prop {Color} date-special-background [transparent] - The background color of a special date.
|
|
42
|
-
/// @prop {Map} date-special-
|
|
43
|
-
/// @prop {Map} date-special-focus-background [color: ('gray', 100)] - The background color of a special date.
|
|
44
|
-
/// @prop {Color} date-special-range-background [transparent] - The background color of a special date in range selection.
|
|
42
|
+
/// @prop {Map} date-special-range-focus-background [color: ('gray', 100)] - The :focus background color of a special date in range selection.
|
|
45
43
|
/// @prop {Map} date-special-range-border-color [color: ('secondary', 900)] - The outline color around a special date in range selection.
|
|
46
44
|
/// @prop {Color} date-selected-current-outline [transparent] - The outline color of the current selected date.
|
|
47
45
|
/// @prop {Color} date-selected-current-hover-outline [transparent] - The :hover outline color of the current selected date.
|
|
@@ -255,18 +253,6 @@ $light-calendar: (
|
|
|
255
253
|
),
|
|
256
254
|
),
|
|
257
255
|
date-special-background: transparent,
|
|
258
|
-
date-special-hover-background: (
|
|
259
|
-
color: (
|
|
260
|
-
'gray',
|
|
261
|
-
100,
|
|
262
|
-
),
|
|
263
|
-
),
|
|
264
|
-
date-special-focus-background: (
|
|
265
|
-
color: (
|
|
266
|
-
'gray',
|
|
267
|
-
100,
|
|
268
|
-
),
|
|
269
|
-
),
|
|
270
256
|
date-special-range-background: transparent,
|
|
271
257
|
date-special-range-border-color: (
|
|
272
258
|
color: (
|
|
@@ -432,6 +418,10 @@ $light-calendar: (
|
|
|
432
418
|
/// @prop {Map} date-special-foreground [color: ('secondary', 500)] - The foreground color of a special date.
|
|
433
419
|
/// @prop {Map} date-special-hover-foreground [color: ('secondary', 700)] - The foreground color of a special date.
|
|
434
420
|
/// @prop {Map} date-special-focus-foreground [color: ('secondary', 700)] - The foreground color of a special date.
|
|
421
|
+
/// @prop {Map} date-special-hover-background [color: ('gray', 100)] - The background color of a special date.
|
|
422
|
+
/// @prop {Map} date-special-focus-background [color: ('gray', 100)] - The background color of a special date.
|
|
423
|
+
/// @prop {Color} date-special-range-hover-background [color: ('gray', 100)] - The :hover background color of a special date in range selection.
|
|
424
|
+
/// @prop {Color} date-special-range-focus-background [color: ('gray', 100)] - The :focus background color of a special date in range selection.
|
|
435
425
|
/// @prop {Map} date-special-border-color [color: ('secondary', 500)] - The outline color around a special date.
|
|
436
426
|
/// @prop {Map} date-special-hover-border-color [color: ('secondary', 700)] - The outline color around a special date.
|
|
437
427
|
/// @prop {Map} current-outline-color [color: ('gray', 900)] - The outline color of the current year/month in year/month views.
|
|
@@ -775,6 +765,33 @@ $material-calendar: extend(
|
|
|
775
765
|
700,
|
|
776
766
|
),
|
|
777
767
|
),
|
|
768
|
+
|
|
769
|
+
date-special-hover-background: (
|
|
770
|
+
color: (
|
|
771
|
+
'gray',
|
|
772
|
+
100,
|
|
773
|
+
),
|
|
774
|
+
),
|
|
775
|
+
date-special-focus-background: (
|
|
776
|
+
color: (
|
|
777
|
+
'gray',
|
|
778
|
+
100,
|
|
779
|
+
),
|
|
780
|
+
),
|
|
781
|
+
|
|
782
|
+
date-special-range-hover-background: (
|
|
783
|
+
color: (
|
|
784
|
+
'gray',
|
|
785
|
+
100,
|
|
786
|
+
),
|
|
787
|
+
),
|
|
788
|
+
date-special-range-focus-background: (
|
|
789
|
+
color: (
|
|
790
|
+
'gray',
|
|
791
|
+
100,
|
|
792
|
+
),
|
|
793
|
+
),
|
|
794
|
+
|
|
778
795
|
date-special-border-color: (
|
|
779
796
|
color: (
|
|
780
797
|
'secondary',
|
|
@@ -862,6 +879,9 @@ $material-calendar: extend(
|
|
|
862
879
|
/// @prop {Map} date-special-focus-foreground [color: ('gray', 900)] - The foreground color of a special date.
|
|
863
880
|
/// @prop {Map} date-special-hover-background [color: ('gray', 200)] - The background color of a special date.
|
|
864
881
|
/// @prop {Map} date-special-focus-background [color: ('gray', 200)] - The background color of a special date.
|
|
882
|
+
/// @prop {Color} date-special-range-hover-background [color: ('gray', 200)] - The :hover background color of a special date in range selection.
|
|
883
|
+
/// @prop {Color} date-special-range-focus-background [color: ('gray', 200)] - The :focus background color of a special date in range selection.
|
|
884
|
+
/// @prop {map} date-special-range-focus-background [color: ('gray', 200)] - The :focus background color of a special date in range selection.
|
|
865
885
|
/// @prop {Map} date-selected-current-border-color [color: ('gray', 700)] - The border color of the selected current date.
|
|
866
886
|
/// @prop {Map} date-selected-current-hover-border-color [color: ('gray', 700)] - The :hover border color of the selected current date.
|
|
867
887
|
/// @prop {Map} date-selected-current-focus-border-color [color: ('gray', 700)] - The :focus border color of the selected current date.
|
|
@@ -1065,6 +1085,18 @@ $fluent-calendar: extend(
|
|
|
1065
1085
|
200,
|
|
1066
1086
|
),
|
|
1067
1087
|
),
|
|
1088
|
+
date-special-range-hover-background: (
|
|
1089
|
+
color: (
|
|
1090
|
+
'gray',
|
|
1091
|
+
200,
|
|
1092
|
+
),
|
|
1093
|
+
),
|
|
1094
|
+
date-special-range-focus-background: (
|
|
1095
|
+
color: (
|
|
1096
|
+
'gray',
|
|
1097
|
+
200,
|
|
1098
|
+
),
|
|
1099
|
+
),
|
|
1068
1100
|
header-foreground: (
|
|
1069
1101
|
contrast-color: (
|
|
1070
1102
|
'primary',
|
|
@@ -1550,6 +1582,8 @@ $fluent-calendar: extend(
|
|
|
1550
1582
|
/// @type {Map}
|
|
1551
1583
|
/// @prop {Map} date-special-hover-background [color: ('gray', 200)] - The background color of a special date.
|
|
1552
1584
|
/// @prop {Map} date-special-focus-background [color: ('gray', 200)] - The background color of a special date.
|
|
1585
|
+
/// @prop {Map} date-special-range-hover-background [color: ('gray', 200)] - The :hover background color of a special date in range selection.
|
|
1586
|
+
/// @prop {Map} date-special-range-focus-background [color: ('gray', 200)] - The :focus background color of a special date in range selection.
|
|
1553
1587
|
/// @prop {Map} date-special-foreground [color: ('gray', 900)] - The foreground color of a special date.
|
|
1554
1588
|
/// @prop {Map} date-special-focus-foreground [color: ('gray', 900)] - The foreground color of a special date.
|
|
1555
1589
|
/// @prop {Map} date-special-hover-foreground [color: ('gray', 900)] - The foreground color of a special date.
|
|
@@ -1650,7 +1684,6 @@ $fluent-calendar: extend(
|
|
|
1650
1684
|
/// @prop {Map} date-selected-current-focus-border-color [color: ('gray', 900)] - The :focus border color of the selected current date.
|
|
1651
1685
|
/// @prop {Map} actions-divider-color [color: ('gray', 300)] - The border color used for the date-picker actions divider.
|
|
1652
1686
|
/// @prop {Map} date-special-range-foreground [color: ('gray', 900)] - The foreground color of a special date in rage selection.
|
|
1653
|
-
|
|
1654
1687
|
/// @requires {Map} $light-calendar
|
|
1655
1688
|
$bootstrap-calendar: extend(
|
|
1656
1689
|
$light-calendar,
|
|
@@ -1667,6 +1700,18 @@ $bootstrap-calendar: extend(
|
|
|
1667
1700
|
200,
|
|
1668
1701
|
),
|
|
1669
1702
|
),
|
|
1703
|
+
date-special-range-hover-background: (
|
|
1704
|
+
color: (
|
|
1705
|
+
'gray',
|
|
1706
|
+
200,
|
|
1707
|
+
),
|
|
1708
|
+
),
|
|
1709
|
+
date-special-range-focus-background: (
|
|
1710
|
+
color: (
|
|
1711
|
+
'gray',
|
|
1712
|
+
200,
|
|
1713
|
+
),
|
|
1714
|
+
),
|
|
1670
1715
|
date-special-foreground: (
|
|
1671
1716
|
color: (
|
|
1672
1717
|
'gray',
|
|
@@ -2247,13 +2292,13 @@ $bootstrap-calendar: extend(
|
|
|
2247
2292
|
/// @prop {Map} navigation-focus-color [color: ('primary', 500)] - The :focus color of the icon button responsible for month navigation.
|
|
2248
2293
|
/// @prop {Map} week-number-foreground [color: ('gray', 600)] - The foreground color of the week number column.
|
|
2249
2294
|
/// @prop {Map} week-number-background [color: ('gray', 900, .05)] - The background color of the week number column.
|
|
2250
|
-
/// @prop {List} week-number-border-radius [(rem(4px), rem(0), rem(8px))] - The border radius used for the week numbers column.
|
|
2251
2295
|
/// @prop {Map} date-hover-background [color: ('gray', 900, .05)] - The :hover background color of a date.
|
|
2252
2296
|
/// @prop {Map} date-focus-background [color: ('gray', 900, .05)] - The :focus background color of date.
|
|
2253
2297
|
/// @prop {Map} date-current-foreground [color: ('gray', 800)] - The foreground color of the current date.
|
|
2254
2298
|
/// @prop {Map} date-disabled-foreground [color: ('gray', 900, .2)] - The foreground color of disabled dates.
|
|
2255
|
-
/// @prop {Map} date-disabled-range-foreground [color: ('gray',
|
|
2256
|
-
/// @prop {Map} date-current-
|
|
2299
|
+
/// @prop {Map} date-disabled-range-foreground [color: ('gray', 800, .38)] - The foreground color of disabled dates in range selection.
|
|
2300
|
+
/// @prop {Map} date-current-hover-background [color: ('gray', 900, .05)] - The :hover background color of the current date.
|
|
2301
|
+
/// @prop {Map} date-current-border-color [color: ('primary', 400)] - The border color of the current date.
|
|
2257
2302
|
/// @prop {Map} date-current-hover-border-color [color: ('primary', 400)] - The :hover border color of the current date.
|
|
2258
2303
|
/// @prop {Map} date-current-focus-border-color [color: ('primary', 400)] - The :focus border color of the current date.
|
|
2259
2304
|
/// @prop {Map} date-special-foreground [color: ('primary', 500)] - The foreground color of a special date.
|
|
@@ -2262,6 +2307,8 @@ $bootstrap-calendar: extend(
|
|
|
2262
2307
|
/// @prop {Map} date-special-hover-background [color: ('primary', 50)] - The background color of a special date.
|
|
2263
2308
|
/// @prop {Map} date-special-focus-foreground [color: ('primary', 700)] - The foreground color of a special date.
|
|
2264
2309
|
/// @prop {Map} date-special-focus-background [color: ('primary', 50)] - The background color of a special date.
|
|
2310
|
+
/// @prop {Map} date-special-range-hover-background [color: ('primary', 50)] - The :hover background color of a special date in range selection.
|
|
2311
|
+
/// @prop {Map} date-special-range-focus-background [color: ('primary', 50)] - The :focus background color of a special date in range selection.
|
|
2265
2312
|
/// @prop {Map} date-selected-foreground [contrast-color: ('primary', 500)] - The foreground color of the selected date.
|
|
2266
2313
|
/// @prop {Map} date-selected-background [color: ('primary', 500)] - The background color of the selected date.
|
|
2267
2314
|
/// @prop {Map} date-selected-hover-foreground [contrast-color: ('primary', 900)] - The :hover foreground color of the selected date.
|
|
@@ -2322,10 +2369,13 @@ $bootstrap-calendar: extend(
|
|
|
2322
2369
|
/// @prop {Map} selected-current-hover-outline-color [contrast-color: ('gray', 900, .6)] - The :hover outline color of the selected current year/month in year/month views.
|
|
2323
2370
|
/// @prop {Map} selected-current-focus-outline-color [contrast-color: ('gray', 900, .6)] - The :focus outline color of the selected current year/month in year/month views.
|
|
2324
2371
|
/// @prop {List} inner-size [(rem(24px), rem(28px), rem(32px))] - The size of the inner element of a date(often used to outline the special date)
|
|
2325
|
-
/// @prop {List} border-radius [(rem(
|
|
2372
|
+
/// @prop {List} border-radius [(rem(6px), rem(0), rem(6px))] - The border radius used for calendar.
|
|
2373
|
+
/// @prop {List} week-number-border-radius [(rem(4px), rem(0), rem(4px))] - The border radius used for the week numbers column.
|
|
2326
2374
|
/// @prop {Map} actions-divider-color [color: ('gray', 400)] - The border color used for the date-picker actions divider.
|
|
2327
2375
|
/// @prop {Map} date-special-range-foreground [color: ('primary', 500)] - The foreground color of a special date in rage selection.
|
|
2328
2376
|
/// @prop {Map} date-special-range-background [(color: 'primary', 50, .7)] - The background color of a special date in range selection.
|
|
2377
|
+
/// @prop {Map} date-special-range-hover-background [color: ('primary', 50)] - The :hover background color of a special date in range selection.
|
|
2378
|
+
/// @prop {Map} date-special-range-focus-background [color: ('primary', 50)] - The :focus background color of a special date in range selection.
|
|
2329
2379
|
/// @requires {Map} $light-calendar
|
|
2330
2380
|
$indigo-calendar: extend(
|
|
2331
2381
|
$light-calendar,
|
|
@@ -2343,6 +2393,13 @@ $indigo-calendar: extend(
|
|
|
2343
2393
|
800,
|
|
2344
2394
|
),
|
|
2345
2395
|
),
|
|
2396
|
+
date-current-hover-background: (
|
|
2397
|
+
color: (
|
|
2398
|
+
'gray',
|
|
2399
|
+
900,
|
|
2400
|
+
0.05,
|
|
2401
|
+
),
|
|
2402
|
+
),
|
|
2346
2403
|
weekend-color: (
|
|
2347
2404
|
color: (
|
|
2348
2405
|
'gray',
|
|
@@ -2426,7 +2483,7 @@ $indigo-calendar: extend(
|
|
|
2426
2483
|
border-radius: (
|
|
2427
2484
|
rem(4px),
|
|
2428
2485
|
rem(0),
|
|
2429
|
-
rem(
|
|
2486
|
+
rem(4px),
|
|
2430
2487
|
),
|
|
2431
2488
|
),
|
|
2432
2489
|
border-radius: (
|
|
@@ -2466,8 +2523,8 @@ $indigo-calendar: extend(
|
|
|
2466
2523
|
date-disabled-range-foreground: (
|
|
2467
2524
|
color: (
|
|
2468
2525
|
'gray',
|
|
2469
|
-
|
|
2470
|
-
0.
|
|
2526
|
+
800,
|
|
2527
|
+
0.38,
|
|
2471
2528
|
),
|
|
2472
2529
|
),
|
|
2473
2530
|
date-current-border-color: (
|
|
@@ -2538,6 +2595,18 @@ $indigo-calendar: extend(
|
|
|
2538
2595
|
50,
|
|
2539
2596
|
),
|
|
2540
2597
|
),
|
|
2598
|
+
date-special-range-hover-background: (
|
|
2599
|
+
color: (
|
|
2600
|
+
'primary',
|
|
2601
|
+
50,
|
|
2602
|
+
),
|
|
2603
|
+
),
|
|
2604
|
+
date-special-range-focus-background: (
|
|
2605
|
+
color: (
|
|
2606
|
+
'primary',
|
|
2607
|
+
50,
|
|
2608
|
+
),
|
|
2609
|
+
),
|
|
2541
2610
|
date-special-border-color: transparent,
|
|
2542
2611
|
date-special-hover-border-color: transparent,
|
|
2543
2612
|
date-selected-foreground: (
|
|
@@ -2636,7 +2705,7 @@ $indigo-calendar: extend(
|
|
|
2636
2705
|
date-selected-range-foreground: (
|
|
2637
2706
|
color: (
|
|
2638
2707
|
'gray',
|
|
2639
|
-
|
|
2708
|
+
800,
|
|
2640
2709
|
),
|
|
2641
2710
|
),
|
|
2642
2711
|
date-selected-range-background: (
|
|
@@ -14,9 +14,6 @@
|
|
|
14
14
|
/// @prop {Map} track-color [color: ('secondary', 500)] - The color of the track.
|
|
15
15
|
/// @prop {Color} track-step-color [white] - The color of the track steps.
|
|
16
16
|
/// @prop {Number} track-step-size [rem(3px)] - The size of the track steps.
|
|
17
|
-
/// @prop {Map} thumb-color [color: ('secondary', 500)] - The color of the thumb.
|
|
18
|
-
/// @prop {Map} thumb-border-color [color: ('secondary', 500)] - The thumb border color.
|
|
19
|
-
/// @prop {Map} thumb-border-focus-color [color: ('secondary', 500)] - The thumb border color when focused.
|
|
20
17
|
/// @prop {Map} thumb-disabled-border-color [color: ('gray', 400)] - The thumb border color when it's disabled.
|
|
21
18
|
/// @prop {Map} label-background-color [color: ('gray', 700)] - The background color of the bubble label.
|
|
22
19
|
/// @prop {Map} label-text-color [contrast-color: ('gray', 700)] - The text color of the bubble label.
|
|
@@ -31,24 +28,6 @@ $light-slider: (
|
|
|
31
28
|
),
|
|
32
29
|
track-step-color: white,
|
|
33
30
|
track-step-size: rem(3px),
|
|
34
|
-
thumb-color: (
|
|
35
|
-
color: (
|
|
36
|
-
'secondary',
|
|
37
|
-
500,
|
|
38
|
-
),
|
|
39
|
-
),
|
|
40
|
-
thumb-border-color: (
|
|
41
|
-
color: (
|
|
42
|
-
'secondary',
|
|
43
|
-
500,
|
|
44
|
-
),
|
|
45
|
-
),
|
|
46
|
-
thumb-border-focus-color: (
|
|
47
|
-
color: (
|
|
48
|
-
'secondary',
|
|
49
|
-
500,
|
|
50
|
-
),
|
|
51
|
-
),
|
|
52
31
|
thumb-disabled-border-color: (
|
|
53
32
|
color: (
|
|
54
33
|
'gray',
|
|
@@ -83,6 +62,10 @@ $light-slider: (
|
|
|
83
62
|
|
|
84
63
|
/// Generates a material slider schema.
|
|
85
64
|
/// @type {Map}
|
|
65
|
+
/// @prop {Map} thumb-color [color: ('secondary', 500)] - The color of the thumb.
|
|
66
|
+
/// @prop {Map} thumb-border-color [color: ('secondary', 500)] - The thumb border color.
|
|
67
|
+
/// @prop {Map} thumb-border-hover-color [color: ('secondary', 500)] - The thumb border color when hovered.
|
|
68
|
+
/// @prop {Map} thumb-border-focus-color [color: ('secondary', 500)] - The thumb border color when focused.
|
|
86
69
|
/// @prop {Color} thumb-focus-color [transparent] - The focus outline color of the thumb.
|
|
87
70
|
/// @prop {Map} track-step-color [color: ('secondary', 200)] - The color of the track steps.
|
|
88
71
|
/// @prop {Map} track-hover-color [color: ('secondary', 400)] - The color of the track on hover.
|
|
@@ -95,6 +78,30 @@ $light-slider: (
|
|
|
95
78
|
$material-slider: extend(
|
|
96
79
|
$light-slider,
|
|
97
80
|
(
|
|
81
|
+
thumb-color: (
|
|
82
|
+
color: (
|
|
83
|
+
'secondary',
|
|
84
|
+
500,
|
|
85
|
+
),
|
|
86
|
+
),
|
|
87
|
+
thumb-border-color: (
|
|
88
|
+
color: (
|
|
89
|
+
'secondary',
|
|
90
|
+
500,
|
|
91
|
+
),
|
|
92
|
+
),
|
|
93
|
+
thumb-border-hover-color: (
|
|
94
|
+
color: (
|
|
95
|
+
'secondary',
|
|
96
|
+
500,
|
|
97
|
+
),
|
|
98
|
+
),
|
|
99
|
+
thumb-border-focus-color: (
|
|
100
|
+
color: (
|
|
101
|
+
'secondary',
|
|
102
|
+
500,
|
|
103
|
+
),
|
|
104
|
+
),
|
|
98
105
|
track-step-color: (
|
|
99
106
|
color: (
|
|
100
107
|
'secondary',
|
|
@@ -149,6 +156,7 @@ $material-slider: extend(
|
|
|
149
156
|
/// @prop {Map} track-hover-color [color: ('primary', 500)] - The color of the track on hover.
|
|
150
157
|
/// @prop {Map} thumb-color [color: ('surface', 500)] - The color of the thumb.
|
|
151
158
|
/// @prop {Map} thumb-border-color [color: ('gray', 700)] - The thumb border color.
|
|
159
|
+
/// @prop {Map} thumb-border-hover-color [color: ('gray', 700)] - The thumb border color when hovered.
|
|
152
160
|
/// @prop {Map} thumb-border-focus-color [color: ('gray', 700)] - The thumb border color when focused.
|
|
153
161
|
/// @prop {Map} thumb-focus-color [color: ('primary', 700)] - The focus outline color of the thumb.
|
|
154
162
|
/// @prop {Map} disabled-thumb-color [color: ('surface', 500)] - The thumb color when its disabled.
|
|
@@ -185,6 +193,12 @@ $fluent-slider: extend(
|
|
|
185
193
|
700,
|
|
186
194
|
),
|
|
187
195
|
),
|
|
196
|
+
thumb-border-hover-color: (
|
|
197
|
+
color: (
|
|
198
|
+
'gray',
|
|
199
|
+
700,
|
|
200
|
+
),
|
|
201
|
+
),
|
|
188
202
|
thumb-border-focus-color: (
|
|
189
203
|
color: (
|
|
190
204
|
'gray',
|
|
@@ -242,6 +256,7 @@ $fluent-slider: extend(
|
|
|
242
256
|
/// @prop {Map} base-track-hover-color [color: ('secondary', 500, .24)] - The base background color of the track on hover.
|
|
243
257
|
/// @prop {Map} thumb-color [color: ('primary', 500)] - The color of the thumb.
|
|
244
258
|
/// @prop {Map} thumb-border-color [color: ('primary', 500)] - The thumb border color.
|
|
259
|
+
/// @prop {Map} thumb-border-hover-color [color: ('primary', 500)] - The thumb border color when hovered.
|
|
245
260
|
/// @prop {Map} thumb-border-focus-color [color: ('surface', 500)] - The thumb border color when focused.
|
|
246
261
|
/// @prop {Map} thumb-focus-color [color: ('primary', 200)] - The focus outline color of the thumb.
|
|
247
262
|
/// @prop {Map} disabled-thumb-color [color: ('gray', 400)] - The thumb color when its disabled.
|
|
@@ -275,6 +290,12 @@ $bootstrap-slider: extend(
|
|
|
275
290
|
500,
|
|
276
291
|
),
|
|
277
292
|
),
|
|
293
|
+
thumb-border-hover-color: (
|
|
294
|
+
color: (
|
|
295
|
+
'primary',
|
|
296
|
+
500,
|
|
297
|
+
),
|
|
298
|
+
),
|
|
278
299
|
thumb-border-focus-color: (
|
|
279
300
|
color: (
|
|
280
301
|
'surface',
|
|
@@ -298,23 +319,37 @@ $bootstrap-slider: extend(
|
|
|
298
319
|
|
|
299
320
|
/// Generates an indigo slider schema.
|
|
300
321
|
/// @type {Map}
|
|
301
|
-
/// @prop {Map} track-
|
|
322
|
+
/// @prop {Map} track-step-color [color: ('gray', 900, 0.4)] - The color of the track steps.
|
|
323
|
+
/// @prop {Number} track-step-size [rem(2px)] - The size of the track steps.
|
|
302
324
|
/// @prop {Map} base-track-color [color: ('gray', 400)] - The base background color of the track.
|
|
303
325
|
/// @prop {Map} base-track-hover-color [color: ('gray', 500)] - The base background color of the track on hover.
|
|
304
|
-
/// @prop {Map}
|
|
305
|
-
/// @prop {Map}
|
|
306
|
-
/// @prop {Map}
|
|
307
|
-
/// @prop {Map}
|
|
326
|
+
/// @prop {Map} track-color [color: ('primary', 500)] - The color of the track.
|
|
327
|
+
/// @prop {Map} track-hover-color [color: ('primary', 400)] - The color of the track on hover.
|
|
328
|
+
/// @prop {Map} thumb-color [color: ('gray', 50)] - The color of the thumb.
|
|
329
|
+
/// @prop {Map} thumb-border-color [color: ('primary', 500)] - The thumb border color.
|
|
330
|
+
/// @prop {Map} thumb-border-hover-color [color: ('primary', 400)] - The thumb border color when hovered.
|
|
331
|
+
/// @prop {Map} thumb-border-focus-color [color: ('primary', 500)] - The thumb border color when focused.
|
|
332
|
+
/// @prop {Map} thumb-focus-color [color: ('primary', 400, 0.5)] - The focus outline color of the thumb.
|
|
333
|
+
/// @prop {Map} tick-color [color: ('gray', 300)] - The background-color of the tick.
|
|
334
|
+
/// @prop {Map} tick-label-color [color: ('gray', 600)] - The color of the tick label.
|
|
335
|
+
/// @prop {Map} label-background-color [color: ('gray', 600)] - The background color of the bubble label.
|
|
336
|
+
/// @prop {Map} label-text-color [contrast-color: ('gray', 600)] - The text color of the bubble label.
|
|
337
|
+
/// @prop {Map} disabled-thumb-color [color: ('gray', 50)] - The thumb color when its disabled.
|
|
338
|
+
/// @prop {Map} thumb-disabled-border-color [color: ('primary', 50)] - The thumb border color when it's disabled.
|
|
339
|
+
/// @prop {Map} disabled-base-track-color [color: ('gray', 900, 0.15)] - The base background color of the track when is disabled.
|
|
340
|
+
/// @prop {Map} disabled-fill-track-color [color: ('primary', 50)] - The background color of the fill track when is disabled.
|
|
308
341
|
/// @requires {Map} $light-slider
|
|
309
342
|
$indigo-slider: extend(
|
|
310
343
|
$light-slider,
|
|
311
344
|
(
|
|
312
|
-
track-
|
|
345
|
+
track-step-color: (
|
|
313
346
|
color: (
|
|
314
|
-
'
|
|
315
|
-
|
|
347
|
+
'gray',
|
|
348
|
+
900,
|
|
349
|
+
0.4,
|
|
316
350
|
),
|
|
317
351
|
),
|
|
352
|
+
track-step-size: rem(2px),
|
|
318
353
|
base-track-color: (
|
|
319
354
|
color: (
|
|
320
355
|
'gray',
|
|
@@ -327,28 +362,96 @@ $indigo-slider: extend(
|
|
|
327
362
|
500,
|
|
328
363
|
),
|
|
329
364
|
),
|
|
365
|
+
track-color: (
|
|
366
|
+
color: (
|
|
367
|
+
'primary',
|
|
368
|
+
500,
|
|
369
|
+
),
|
|
370
|
+
),
|
|
371
|
+
track-hover-color: (
|
|
372
|
+
color: (
|
|
373
|
+
'primary',
|
|
374
|
+
400,
|
|
375
|
+
),
|
|
376
|
+
),
|
|
377
|
+
thumb-color: (
|
|
378
|
+
color: (
|
|
379
|
+
'gray',
|
|
380
|
+
50,
|
|
381
|
+
),
|
|
382
|
+
),
|
|
383
|
+
thumb-border-color: (
|
|
384
|
+
color: (
|
|
385
|
+
'primary',
|
|
386
|
+
500,
|
|
387
|
+
),
|
|
388
|
+
),
|
|
389
|
+
thumb-border-hover-color: (
|
|
390
|
+
color: (
|
|
391
|
+
'primary',
|
|
392
|
+
400,
|
|
393
|
+
),
|
|
394
|
+
),
|
|
395
|
+
thumb-border-focus-color: (
|
|
396
|
+
color: (
|
|
397
|
+
'primary',
|
|
398
|
+
500,
|
|
399
|
+
),
|
|
400
|
+
),
|
|
330
401
|
thumb-focus-color: (
|
|
331
402
|
color: (
|
|
332
403
|
'primary',
|
|
333
|
-
|
|
404
|
+
400,
|
|
405
|
+
0.5,
|
|
334
406
|
),
|
|
335
407
|
),
|
|
336
|
-
|
|
408
|
+
tick-color: (
|
|
337
409
|
color: (
|
|
338
410
|
'gray',
|
|
339
411
|
300,
|
|
340
412
|
),
|
|
341
413
|
),
|
|
414
|
+
tick-label-color: (
|
|
415
|
+
color: (
|
|
416
|
+
'gray',
|
|
417
|
+
600,
|
|
418
|
+
),
|
|
419
|
+
),
|
|
420
|
+
label-background-color: (
|
|
421
|
+
color: (
|
|
422
|
+
'gray',
|
|
423
|
+
600,
|
|
424
|
+
),
|
|
425
|
+
),
|
|
426
|
+
label-text-color: (
|
|
427
|
+
contrast-color: (
|
|
428
|
+
'gray',
|
|
429
|
+
600,
|
|
430
|
+
),
|
|
431
|
+
),
|
|
432
|
+
disabled-thumb-color: (
|
|
433
|
+
color: (
|
|
434
|
+
'gray',
|
|
435
|
+
50,
|
|
436
|
+
),
|
|
437
|
+
),
|
|
438
|
+
thumb-disabled-border-color: (
|
|
439
|
+
color: (
|
|
440
|
+
'primary',
|
|
441
|
+
50,
|
|
442
|
+
),
|
|
443
|
+
),
|
|
342
444
|
disabled-base-track-color: (
|
|
343
445
|
color: (
|
|
344
446
|
'gray',
|
|
345
|
-
|
|
447
|
+
900,
|
|
448
|
+
0.15,
|
|
346
449
|
),
|
|
347
450
|
),
|
|
348
451
|
disabled-fill-track-color: (
|
|
349
452
|
color: (
|
|
350
|
-
'
|
|
351
|
-
|
|
453
|
+
'primary',
|
|
454
|
+
50,
|
|
352
455
|
),
|
|
353
456
|
),
|
|
354
457
|
)
|
|
@@ -73,9 +73,9 @@ $bootstrap-splitter: $light-splitter;
|
|
|
73
73
|
/// Generates an indigo splitter schema.
|
|
74
74
|
/// @type {Map}
|
|
75
75
|
/// @prop {Map} bar-color [color: ('gray', 400)] - The background color of the bar.
|
|
76
|
-
/// @prop {Map}
|
|
77
|
-
/// @prop {Map}
|
|
78
|
-
/// @prop {Map}
|
|
76
|
+
/// @prop {Map} focus-color [color: ('gray', 500)] - The color used for focused splitter bar.
|
|
77
|
+
/// @prop {Map} handle-color [color: ('gray', 700)] - The color for the bar drag handle.
|
|
78
|
+
/// @prop {Map} expander-color [color: ('gray', 700)] - The color for the bar drag handle.
|
|
79
79
|
/// @requires {Map} $light-splitter
|
|
80
80
|
$indigo-splitter: extend(
|
|
81
81
|
$light-splitter,
|
|
@@ -89,20 +89,22 @@ $indigo-splitter: extend(
|
|
|
89
89
|
|
|
90
90
|
focus-color: (
|
|
91
91
|
color: (
|
|
92
|
-
'
|
|
92
|
+
'gray',
|
|
93
93
|
500,
|
|
94
94
|
),
|
|
95
95
|
),
|
|
96
96
|
|
|
97
97
|
handle-color: (
|
|
98
98
|
color: (
|
|
99
|
-
'
|
|
99
|
+
'gray',
|
|
100
|
+
700,
|
|
100
101
|
),
|
|
101
102
|
),
|
|
102
103
|
|
|
103
104
|
expander-color: (
|
|
104
105
|
color: (
|
|
105
|
-
'
|
|
106
|
+
'gray',
|
|
107
|
+
700,
|
|
106
108
|
),
|
|
107
109
|
),
|
|
108
110
|
)
|