igniteui-theming 8.2.0-beta.1 → 9.0.0-beta.2
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 +85 -28
- package/sass/themes/schemas/components/dark/_rating.scss +52 -1
- package/sass/themes/schemas/components/dark/_stepper.scss +185 -13
- package/sass/themes/schemas/components/dark/_toast.scss +23 -2
- package/sass/themes/schemas/components/dark/_tooltip.scss +14 -7
- package/sass/themes/schemas/components/elevation/_toast.scss +14 -2
- package/sass/themes/schemas/components/elevation/_tooltip.scss +23 -0
- package/sass/themes/schemas/components/light/_calendar.scss +536 -178
- package/sass/themes/schemas/components/light/_rating.scss +68 -3
- package/sass/themes/schemas/components/light/_stepper.scss +163 -20
- package/sass/themes/schemas/components/light/_toast.scss +24 -4
- package/sass/themes/schemas/components/light/_tooltip.scss +37 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-theming",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0-beta.2",
|
|
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": {
|
|
@@ -106,11 +106,14 @@ $dark-material-calendar: extend(
|
|
|
106
106
|
/// @prop {Map} picker-focus-foreground [color: ('primary', 200)] - The :focus foreground color of the month and year pickers.
|
|
107
107
|
/// @prop {Map} navigation-hover-color [color: ('primary', 200)] - The :hover color of the buttons responsible for navigation.
|
|
108
108
|
/// @prop {Map} navigation-focus-color [color: ('primary', 200)] - The :focus color of the buttons responsible for navigation.
|
|
109
|
-
/// @prop {Map}
|
|
110
|
-
/// @prop {Map}
|
|
111
|
-
/// @prop {Map}
|
|
112
|
-
/// @prop {Map}
|
|
113
|
-
/// @prop {Map}
|
|
109
|
+
/// @prop {Map} year-selected-background [color: ('primary', 800)]- The background color of the selected year in years view.
|
|
110
|
+
/// @prop {Map} year-selected-hover-background [color: ('primary', 600)] - The :hover background color of the selected year in years view.
|
|
111
|
+
/// @prop {Map} year-selected-current-background [color: ('primary', 800)] - The foreground color of the current/selected year.
|
|
112
|
+
/// @prop {Map} year-selected-current-hover-background [color: ('primary', 600)] - The :hover background color of the current/selected year.
|
|
113
|
+
/// @prop {Map} month-selected-background [color: ('primary', 800)] - The background color of the selected month in month view.
|
|
114
|
+
/// @prop {Map} month-selected-hover-background [color: ('primary', 600)]- The :hover background color of the selected month in month view.
|
|
115
|
+
/// @prop {Map} month-selected-current-background [color: ('primary', 800)]- The background color of the current/selected month in month view.
|
|
116
|
+
/// @prop {Map} month-selected-current-hover-background [color: ('primary', 600)] - The :hover background color of the current/selected month in month view.
|
|
114
117
|
/// @prop {Map} date-current-foreground [contrast-color: ('gray', 900)] - The foreground color of the current date.
|
|
115
118
|
/// @prop {Map} date-current-background [color: ('primary', 200)] - The background color of the current date.
|
|
116
119
|
/// @prop {Map} date-current-hover-foreground [contrast-color: ('gray', 900)] - The :hover foreground color of the current date.
|
|
@@ -167,30 +170,54 @@ $dark-fluent-calendar: extend(
|
|
|
167
170
|
200,
|
|
168
171
|
),
|
|
169
172
|
),
|
|
170
|
-
|
|
173
|
+
year-selected-background: (
|
|
174
|
+
color: (
|
|
175
|
+
'primary',
|
|
176
|
+
800,
|
|
177
|
+
),
|
|
178
|
+
),
|
|
179
|
+
year-selected-hover-background: (
|
|
171
180
|
color: (
|
|
172
181
|
'primary',
|
|
173
182
|
600,
|
|
174
183
|
),
|
|
175
184
|
),
|
|
176
|
-
|
|
185
|
+
year-selected-current-background: (
|
|
177
186
|
color: (
|
|
178
187
|
'primary',
|
|
179
188
|
800,
|
|
180
189
|
),
|
|
181
190
|
),
|
|
182
|
-
|
|
191
|
+
year-selected-current-hover-background: (
|
|
183
192
|
color: (
|
|
184
193
|
'primary',
|
|
185
194
|
600,
|
|
186
195
|
),
|
|
187
196
|
),
|
|
188
|
-
|
|
197
|
+
month-selected-background: (
|
|
189
198
|
color: (
|
|
190
199
|
'primary',
|
|
191
200
|
800,
|
|
192
201
|
),
|
|
193
202
|
),
|
|
203
|
+
month-selected-hover-background: (
|
|
204
|
+
color: (
|
|
205
|
+
'primary',
|
|
206
|
+
600,
|
|
207
|
+
),
|
|
208
|
+
),
|
|
209
|
+
month-selected-current-background: (
|
|
210
|
+
color: (
|
|
211
|
+
'primary',
|
|
212
|
+
800,
|
|
213
|
+
),
|
|
214
|
+
),
|
|
215
|
+
month-selected-current-hover-background: (
|
|
216
|
+
color: (
|
|
217
|
+
'primary',
|
|
218
|
+
600,
|
|
219
|
+
),
|
|
220
|
+
),
|
|
194
221
|
date-special-border-color: (
|
|
195
222
|
color: (
|
|
196
223
|
'primary',
|
|
@@ -280,8 +307,10 @@ $dark-fluent-calendar: extend(
|
|
|
280
307
|
|
|
281
308
|
/// Generates a dark bootstrap calendar schema.
|
|
282
309
|
/// @type {Map}
|
|
283
|
-
/// @prop {Map}
|
|
284
|
-
/// @prop {Map}
|
|
310
|
+
/// @prop {Map} year-hover-background [color: ('gray', 100)] - The :hover background color of the year in years view.
|
|
311
|
+
/// @prop {Map} year-current-hover-background [color: ('gray', 100)] - The :hover background color of the current year in years view.
|
|
312
|
+
/// @prop {Map} month-hover-background [color: ('gray', 100)] - The :hover background color of the month in months view.
|
|
313
|
+
/// @prop {Map} month-current-hover-background [color: ('gray', 100)] - The :hover background color of the current month in months view.
|
|
285
314
|
/// @prop {Map} date-special-hover-background [color: ('gray', 100)] - The background color of a special date.
|
|
286
315
|
/// @prop {Map} date-special-focus-background [color: ('gray', 100)] - The background color of a special date.
|
|
287
316
|
/// @prop {Map} date-special-range-hover-background [color: ('gray', 100)] - The :hover background color of a special date in range selection.
|
|
@@ -311,13 +340,25 @@ $dark-bootstrap-calendar: extend(
|
|
|
311
340
|
900,
|
|
312
341
|
),
|
|
313
342
|
),
|
|
314
|
-
|
|
343
|
+
year-hover-background: (
|
|
344
|
+
color: (
|
|
345
|
+
'gray',
|
|
346
|
+
100,
|
|
347
|
+
),
|
|
348
|
+
),
|
|
349
|
+
year-current-hover-background: (
|
|
315
350
|
color: (
|
|
316
351
|
'gray',
|
|
317
352
|
100,
|
|
318
353
|
),
|
|
319
354
|
),
|
|
320
|
-
|
|
355
|
+
month-hover-background: (
|
|
356
|
+
color: (
|
|
357
|
+
'gray',
|
|
358
|
+
100,
|
|
359
|
+
),
|
|
360
|
+
),
|
|
361
|
+
month-current-hover-background: (
|
|
321
362
|
color: (
|
|
322
363
|
'gray',
|
|
323
364
|
100,
|
|
@@ -444,8 +485,9 @@ $dark-bootstrap-calendar: extend(
|
|
|
444
485
|
/// @type {Map}
|
|
445
486
|
/// @prop {Map} content-foreground [color: ('gray', 900)] - The foreground color of the days, months and years views.
|
|
446
487
|
/// @prop {Map} date-current-focus-foreground [contrast-color: ('gray', 50)] - The :focus foreground color of the current date.
|
|
447
|
-
/// @prop {Map}
|
|
448
|
-
/// @prop {Map}
|
|
488
|
+
/// @prop {Map} month-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the month inside the months view.
|
|
489
|
+
/// @prop {Map} month-current-hover-background [contrast-color: ('gray', 900, .1)] - The :hover background color of the current month in month view.
|
|
490
|
+
/// @prop {Map} year-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the year in years view.
|
|
449
491
|
/// @prop {Map} date-selected-current-range-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the current date in the selected range.
|
|
450
492
|
/// @prop {Map} header-background [color: ('gray', 50)] - The header background color.
|
|
451
493
|
/// @prop {Map} content-background [color: ('gray', 50)] - The background color of the days, months and years views.
|
|
@@ -479,12 +521,13 @@ $dark-bootstrap-calendar: extend(
|
|
|
479
521
|
/// @prop {Map} week-number-foreground [color: ('gray', 500)] - The foreground color of the week number column.
|
|
480
522
|
/// @prop {Map} week-number-background [contrast-color: ('gray', 50, .05)] - The background color of the week number column.
|
|
481
523
|
/// @prop {Map} date-selected-range-background [color: ('primary', 400, .2)] - The background color of the selected range.
|
|
482
|
-
/// @prop {Map}
|
|
483
|
-
/// @prop {Map}
|
|
484
|
-
/// @prop {Map}
|
|
485
|
-
/// @prop {Map}
|
|
486
|
-
/// @prop {Map}
|
|
487
|
-
/// @prop {Map}
|
|
524
|
+
/// @prop {Map} year-current-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the current year in years view.
|
|
525
|
+
/// @prop {Map} current-outline-hover-color [color: ('primary', 300)] - The :hover outline color of the current year/month in year/month views.
|
|
526
|
+
/// @prop {Map} current-outline-focus-color [color: ('primary', 300)] - The :focus outline color of the current year/month in year/month views.
|
|
527
|
+
/// @prop {Map} current-outline-color [color: ('primary', 400)] - The outline color of the current year/month in year/month views.
|
|
528
|
+
/// @prop {Map} selected-current-outline-color [contrast-color: ('gray', 50, .6)] - The outline color of the selected current year/month in year/month views.
|
|
529
|
+
/// @prop {Map} selected-current-outline-hover-color [contrast-color: ('gray', 50, .6)] - The :hover outline color of the selected current year/month in year/month views.
|
|
530
|
+
/// @prop {Map} selected-current-outline-focus-color [contrast-color: ('gray', 50, .6)] - The :focus outline color of the selected current year/month in year/month views.
|
|
488
531
|
/// @prop {Map} date-current-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the current date.
|
|
489
532
|
/// @prop {Map} date-selected-range-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the selected range.
|
|
490
533
|
/// @prop {Map} date-selected-range-focus-background [contrast-color: ('gray', 50, .1)] - The :focus background color of the selected range.
|
|
@@ -514,7 +557,14 @@ $dark-indigo-calendar: extend(
|
|
|
514
557
|
50,
|
|
515
558
|
),
|
|
516
559
|
),
|
|
517
|
-
|
|
560
|
+
month-hover-background: (
|
|
561
|
+
contrast-color: (
|
|
562
|
+
'gray',
|
|
563
|
+
50,
|
|
564
|
+
0.1,
|
|
565
|
+
),
|
|
566
|
+
),
|
|
567
|
+
year-hover-background: (
|
|
518
568
|
contrast-color: (
|
|
519
569
|
'gray',
|
|
520
570
|
50,
|
|
@@ -718,39 +768,46 @@ $dark-indigo-calendar: extend(
|
|
|
718
768
|
0.2,
|
|
719
769
|
),
|
|
720
770
|
),
|
|
721
|
-
|
|
771
|
+
current-outline-color: (
|
|
722
772
|
color: (
|
|
723
773
|
'primary',
|
|
724
774
|
400,
|
|
725
775
|
),
|
|
726
776
|
),
|
|
727
|
-
|
|
777
|
+
selected-current-outline-color: (
|
|
728
778
|
contrast-color: (
|
|
729
779
|
'gray',
|
|
730
780
|
50,
|
|
731
781
|
0.6,
|
|
732
782
|
),
|
|
733
783
|
),
|
|
734
|
-
|
|
784
|
+
year-current-hover-background: (
|
|
785
|
+
contrast-color: (
|
|
786
|
+
'gray',
|
|
787
|
+
50,
|
|
788
|
+
0.1,
|
|
789
|
+
),
|
|
790
|
+
),
|
|
791
|
+
current-outline-hover-color: (
|
|
735
792
|
color: (
|
|
736
793
|
'primary',
|
|
737
794
|
300,
|
|
738
795
|
),
|
|
739
796
|
),
|
|
740
|
-
|
|
797
|
+
current-outline-focus-color: (
|
|
741
798
|
color: (
|
|
742
799
|
'primary',
|
|
743
800
|
300,
|
|
744
801
|
),
|
|
745
802
|
),
|
|
746
|
-
|
|
803
|
+
selected-current-outline-hover-color: (
|
|
747
804
|
contrast-color: (
|
|
748
805
|
'gray',
|
|
749
806
|
50,
|
|
750
807
|
0.6,
|
|
751
808
|
),
|
|
752
809
|
),
|
|
753
|
-
|
|
810
|
+
selected-current-outline-focus-color: (
|
|
754
811
|
contrast-color: (
|
|
755
812
|
'gray',
|
|
756
813
|
50,
|
|
@@ -56,6 +56,57 @@ $dark-fluent-rating: extend(
|
|
|
56
56
|
$dark-bootstrap-rating: $bootstrap-rating;
|
|
57
57
|
|
|
58
58
|
/// Generates a dark indigo rating schema.
|
|
59
|
+
/// @prop {Map} label-color [contrast-color: ('gray', 50, .8)] - sets the color for the label.
|
|
60
|
+
/// @prop {Map} value-label [contrast-color: ('gray', 50, .8)] - sets the color for the value label.
|
|
61
|
+
/// @prop {Map} symbol-empty-color [color: ('gray', 300)] - sets the idle color for the symbol when it is a plane text.
|
|
62
|
+
/// @prop {Map} disabled-label-color [color: ('contrast-color', 50, .2)] - sets the color for the label in disabled state.
|
|
63
|
+
/// @prop {Map} disabled-value-label [color: ('contrast-color', 50, .2)] - sets the color for the value in disabled state.
|
|
64
|
+
/// @prop {Map} disabled-empty-symbol-color [color: ('gray', 300, .4)] - sets the idle color for the symbol in disabled state when it is a plane text.
|
|
59
65
|
/// @type {Map}
|
|
60
66
|
/// @requires $indigo-rating
|
|
61
|
-
$dark-indigo-rating:
|
|
67
|
+
$dark-indigo-rating: extend(
|
|
68
|
+
$indigo-rating,
|
|
69
|
+
(
|
|
70
|
+
label-color: (
|
|
71
|
+
contrast-color: (
|
|
72
|
+
'gray',
|
|
73
|
+
50,
|
|
74
|
+
0.8,
|
|
75
|
+
),
|
|
76
|
+
),
|
|
77
|
+
value-label: (
|
|
78
|
+
contrast-color: (
|
|
79
|
+
'gray',
|
|
80
|
+
50,
|
|
81
|
+
0.8,
|
|
82
|
+
),
|
|
83
|
+
),
|
|
84
|
+
symbol-empty-color: (
|
|
85
|
+
color: (
|
|
86
|
+
'gray',
|
|
87
|
+
300,
|
|
88
|
+
),
|
|
89
|
+
),
|
|
90
|
+
disabled-label-color: (
|
|
91
|
+
contrast-color: (
|
|
92
|
+
'gray',
|
|
93
|
+
50,
|
|
94
|
+
0.2,
|
|
95
|
+
),
|
|
96
|
+
),
|
|
97
|
+
disabled-value-label: (
|
|
98
|
+
contrast-color: (
|
|
99
|
+
'gray',
|
|
100
|
+
50,
|
|
101
|
+
0.2,
|
|
102
|
+
),
|
|
103
|
+
),
|
|
104
|
+
disabled-empty-symbol-color: (
|
|
105
|
+
color: (
|
|
106
|
+
'gray',
|
|
107
|
+
300,
|
|
108
|
+
0.4,
|
|
109
|
+
),
|
|
110
|
+
),
|
|
111
|
+
)
|
|
112
|
+
);
|
|
@@ -82,7 +82,6 @@ $base-stepper: (
|
|
|
82
82
|
900,
|
|
83
83
|
),
|
|
84
84
|
),
|
|
85
|
-
|
|
86
85
|
invalid-indicator-color: (
|
|
87
86
|
color: (
|
|
88
87
|
'gray',
|
|
@@ -151,33 +150,206 @@ $dark-bootstrap-stepper: extend(
|
|
|
151
150
|
|
|
152
151
|
/// Generates a dark indigo stepper schema.
|
|
153
152
|
/// @type {Map}
|
|
154
|
-
/// @prop {Map}
|
|
155
|
-
/// @prop {Map} indicator-
|
|
156
|
-
/// @prop {Map}
|
|
153
|
+
/// @prop {Map} content-foreground [contrast-color: ('gray', 50, .8)] - The foreground of the step content.
|
|
154
|
+
/// @prop {Map} indicator-color [color: ('gray', 50)] - The text color of the incomplete step indicator.
|
|
155
|
+
/// @prop {Map} indicator-background [contrast-color: ('gray', 50, .8)] - The background color of the incomplete step indicator.
|
|
156
|
+
/// @prop {Map} title-color [contrast-color: ('gray', 50)] - The text color of the step title.
|
|
157
|
+
/// @prop {Map} title-hover-color [contrast-color: ('gray', 50)] - The text color of the step title on hover.
|
|
158
|
+
/// @prop {Map} title-focus-color [contrast-color: ('gray', 50)] - The text color of the step title on focus.
|
|
159
|
+
/// @prop {Map} subtitle-color [contrast-color: ('gray', 50, .8)] - The text color of the step subtitle.
|
|
160
|
+
/// @prop {Map} subtitle-hover-color [contrast-color: ('gray', 50, .8)] - The text color of the step subtitle on hover.
|
|
161
|
+
/// @prop {Map} subtitle-focus-color [contrast-color: ('gray', 50, .8)] - The text color of the step subtitle on focus.
|
|
162
|
+
/// @prop {Map} step-hover-background [contrast-color: ('gray', 50, .15)] - The background of the step header on hover.
|
|
163
|
+
/// @prop {Map} step-focus-background [contrast-color: ('gray', 50, .15)] - The background of the step header on hover.
|
|
164
|
+
/// @prop {Map} current-step-hover-background [contrast-color: ('gray', 50, .15)] - The background of the current step header on hover.
|
|
165
|
+
/// @prop {Map} current-step-focus-background [contrast-color: ('gray', 50, .15)] - The background of the current step header on focus.
|
|
166
|
+
/// @prop {Map} complete-step-hover-background [contrast-color: ('gray', 50, .15)] - The background of the complete step header on hover.
|
|
167
|
+
/// @prop {Map} complete-step-focus-background [contrast-color: ('gray', 50, .15)] - The background of the complete step header on focus.
|
|
168
|
+
/// @prop {Map} invalid-step-hover-background [contrast-color: ('gray', 50, .15)] - The background of the invalid step header on hover.
|
|
169
|
+
/// @prop {Map} invalid-step-focus-background [contrast-color: ('gray', 50, .15)] - The background of the invalid step header on focus.
|
|
170
|
+
/// @prop {Map} complete-indicator-background [contrast-color: ('gray', 50, .15)] - The background color of the completed step indicator.
|
|
171
|
+
/// @prop {Map} complete-indicator-color [contrast-color: ('gray', 50, .8)] - The color of the completed step indicator.
|
|
172
|
+
/// @prop {Map} disabled-indicator-color [contrast-color: ('gray', 50, .2)] - The color of the disabled step indicator, title, and subtitle.
|
|
173
|
+
/// @prop {Map} disabled-indicator-background [contrast-color: ('gray', 50, .1)] - The background color of the disabled step indicator.
|
|
174
|
+
/// @prop {Map} disabled-title-color [contrast-color: ('gray', 50, .2)] - The title color of the disabled step.
|
|
175
|
+
/// @prop {Map} disabled-subtitle-color [contrast-color: ('gray', 50, .2)] - The subtitle color of the disabled step.
|
|
176
|
+
/// @prop {Map} step-separator-color [contrast-color: ('gray', 50, .3)] - The separator border-color of between the steps.
|
|
177
|
+
/// @prop {Map} complete-step-separator-color [contrast-color: ('gray', 50, .3)] - The separator border-color between the completed steps.
|
|
157
178
|
/// @requires $indigo-stepper
|
|
158
179
|
/// @requires $base-stepper
|
|
159
180
|
$dark-indigo-stepper: extend(
|
|
160
181
|
$indigo-stepper,
|
|
161
182
|
$base-stepper,
|
|
162
183
|
(
|
|
184
|
+
content-foreground: (
|
|
185
|
+
contrast-color: (
|
|
186
|
+
'gray',
|
|
187
|
+
50,
|
|
188
|
+
0.8,
|
|
189
|
+
),
|
|
190
|
+
),
|
|
163
191
|
indicator-color: (
|
|
164
192
|
color: (
|
|
165
193
|
'gray',
|
|
166
|
-
|
|
194
|
+
50,
|
|
167
195
|
),
|
|
168
196
|
),
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
color: (
|
|
197
|
+
indicator-background: (
|
|
198
|
+
contrast-color: (
|
|
172
199
|
'gray',
|
|
173
|
-
|
|
200
|
+
50,
|
|
201
|
+
0.8,
|
|
174
202
|
),
|
|
175
203
|
),
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
color: (
|
|
204
|
+
title-color: (
|
|
205
|
+
contrast-color: (
|
|
179
206
|
'gray',
|
|
180
|
-
|
|
207
|
+
50,
|
|
208
|
+
),
|
|
209
|
+
),
|
|
210
|
+
title-hover-color: (
|
|
211
|
+
contrast-color: (
|
|
212
|
+
'gray',
|
|
213
|
+
50,
|
|
214
|
+
),
|
|
215
|
+
),
|
|
216
|
+
title-focus-color: (
|
|
217
|
+
contrast-color: (
|
|
218
|
+
'gray',
|
|
219
|
+
50,
|
|
220
|
+
),
|
|
221
|
+
),
|
|
222
|
+
subtitle-color: (
|
|
223
|
+
contrast-color: (
|
|
224
|
+
'gray',
|
|
225
|
+
50,
|
|
226
|
+
0.8,
|
|
227
|
+
),
|
|
228
|
+
),
|
|
229
|
+
subtitle-hover-color: (
|
|
230
|
+
contrast-color: (
|
|
231
|
+
'gray',
|
|
232
|
+
50,
|
|
233
|
+
0.8,
|
|
234
|
+
),
|
|
235
|
+
),
|
|
236
|
+
subtitle-focus-color: (
|
|
237
|
+
contrast-color: (
|
|
238
|
+
'gray',
|
|
239
|
+
50,
|
|
240
|
+
0.8,
|
|
241
|
+
),
|
|
242
|
+
),
|
|
243
|
+
step-hover-background: (
|
|
244
|
+
contrast-color: (
|
|
245
|
+
'gray',
|
|
246
|
+
50,
|
|
247
|
+
0.15,
|
|
248
|
+
),
|
|
249
|
+
),
|
|
250
|
+
step-focus-background: (
|
|
251
|
+
contrast-color: (
|
|
252
|
+
'gray',
|
|
253
|
+
50,
|
|
254
|
+
0.15,
|
|
255
|
+
),
|
|
256
|
+
),
|
|
257
|
+
current-step-hover-background: (
|
|
258
|
+
contrast-color: (
|
|
259
|
+
'gray',
|
|
260
|
+
50,
|
|
261
|
+
0.15,
|
|
262
|
+
),
|
|
263
|
+
),
|
|
264
|
+
current-step-focus-background: (
|
|
265
|
+
contrast-color: (
|
|
266
|
+
'gray',
|
|
267
|
+
50,
|
|
268
|
+
0.15,
|
|
269
|
+
),
|
|
270
|
+
),
|
|
271
|
+
complete-step-hover-background: (
|
|
272
|
+
contrast-color: (
|
|
273
|
+
'gray',
|
|
274
|
+
50,
|
|
275
|
+
0.15,
|
|
276
|
+
),
|
|
277
|
+
),
|
|
278
|
+
complete-step-focus-background: (
|
|
279
|
+
contrast-color: (
|
|
280
|
+
'gray',
|
|
281
|
+
50,
|
|
282
|
+
0.15,
|
|
283
|
+
),
|
|
284
|
+
),
|
|
285
|
+
invalid-step-hover-background: (
|
|
286
|
+
contrast-color: (
|
|
287
|
+
'gray',
|
|
288
|
+
50,
|
|
289
|
+
0.15,
|
|
290
|
+
),
|
|
291
|
+
),
|
|
292
|
+
invalid-step-focus-background: (
|
|
293
|
+
contrast-color: (
|
|
294
|
+
'gray',
|
|
295
|
+
50,
|
|
296
|
+
0.15,
|
|
297
|
+
),
|
|
298
|
+
),
|
|
299
|
+
complete-indicator-background: (
|
|
300
|
+
contrast-color: (
|
|
301
|
+
'gray',
|
|
302
|
+
50,
|
|
303
|
+
0.15,
|
|
304
|
+
),
|
|
305
|
+
),
|
|
306
|
+
complete-indicator-color: (
|
|
307
|
+
contrast-color: (
|
|
308
|
+
'gray',
|
|
309
|
+
50,
|
|
310
|
+
0.8,
|
|
311
|
+
),
|
|
312
|
+
),
|
|
313
|
+
disabled-indicator-color: (
|
|
314
|
+
contrast-color: (
|
|
315
|
+
'gray',
|
|
316
|
+
50,
|
|
317
|
+
0.2,
|
|
318
|
+
),
|
|
319
|
+
),
|
|
320
|
+
disabled-indicator-background: (
|
|
321
|
+
contrast-color: (
|
|
322
|
+
'gray',
|
|
323
|
+
50,
|
|
324
|
+
0.1,
|
|
325
|
+
),
|
|
326
|
+
),
|
|
327
|
+
disabled-title-color: (
|
|
328
|
+
contrast-color: (
|
|
329
|
+
'gray',
|
|
330
|
+
50,
|
|
331
|
+
0.2,
|
|
332
|
+
),
|
|
333
|
+
),
|
|
334
|
+
disabled-subtitle-color: (
|
|
335
|
+
contrast-color: (
|
|
336
|
+
'gray',
|
|
337
|
+
50,
|
|
338
|
+
0.2,
|
|
339
|
+
),
|
|
340
|
+
),
|
|
341
|
+
step-separator-color: (
|
|
342
|
+
contrast-color: (
|
|
343
|
+
'gray',
|
|
344
|
+
50,
|
|
345
|
+
0.3,
|
|
346
|
+
),
|
|
347
|
+
),
|
|
348
|
+
complete-step-separator-color: (
|
|
349
|
+
contrast-color: (
|
|
350
|
+
'gray',
|
|
351
|
+
50,
|
|
352
|
+
0.3,
|
|
181
353
|
),
|
|
182
354
|
),
|
|
183
355
|
)
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use '../../../../utils/map' as *;
|
|
2
2
|
@use '../light/toast' as *;
|
|
3
|
+
@use '../elevation/toast' as *;
|
|
3
4
|
|
|
4
5
|
////
|
|
5
6
|
/// @package theming
|
|
@@ -72,6 +73,26 @@ $dark-bootstrap-toast: extend(
|
|
|
72
73
|
|
|
73
74
|
/// Generates a dark indigo toast schema.
|
|
74
75
|
/// @type {Map}
|
|
76
|
+
/// @prop {Map} background [color: ('gray', 300)] - The background color used for the toast.
|
|
77
|
+
/// @prop {Map} text-color [contrast-color: ('gray', 50)] - The text-color used for the toast.
|
|
75
78
|
/// @requires $indigo-toast
|
|
76
|
-
/// @requires $dark-
|
|
77
|
-
$dark-indigo-toast: extend(
|
|
79
|
+
/// @requires $dark-indigo-elevation-toast
|
|
80
|
+
$dark-indigo-toast: extend(
|
|
81
|
+
$indigo-toast,
|
|
82
|
+
$dark-indigo-elevation-toast,
|
|
83
|
+
(
|
|
84
|
+
background: (
|
|
85
|
+
color: (
|
|
86
|
+
'gray',
|
|
87
|
+
300,
|
|
88
|
+
),
|
|
89
|
+
),
|
|
90
|
+
|
|
91
|
+
text-color: (
|
|
92
|
+
contrast-color: (
|
|
93
|
+
'gray',
|
|
94
|
+
50,
|
|
95
|
+
),
|
|
96
|
+
),
|
|
97
|
+
)
|
|
98
|
+
);
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use '../../../../utils/map' as *;
|
|
2
2
|
@use '../light/tooltip' as *;
|
|
3
|
+
@use '../elevation/tooltip' as *;
|
|
3
4
|
|
|
4
5
|
////
|
|
5
6
|
/// @package theming
|
|
@@ -24,20 +25,26 @@ $dark-bootstrap-tooltip: $bootstrap-tooltip;
|
|
|
24
25
|
|
|
25
26
|
/// Generates a dark indigo tooltip schema.
|
|
26
27
|
/// @type {Map}
|
|
27
|
-
/// @prop {Map} background [
|
|
28
|
-
/// @prop {Map} text-color [
|
|
29
|
-
/// @
|
|
28
|
+
/// @prop {Map} background [color: ('gray', 300)] - The background color of the tooltip.
|
|
29
|
+
/// @prop {Map} text-color [contrast-color: ('gray', 50)] - The text color of the tooltip.
|
|
30
|
+
/// @prop {Number} elevation [9] - The elevation level, between 0-24, to be used for the tooltip.
|
|
31
|
+
/// @requires {Map} $indigo-tooltip
|
|
32
|
+
/// @requires {Map} $dark-indigo-elevation-tooltip
|
|
30
33
|
$dark-indigo-tooltip: extend(
|
|
31
34
|
$indigo-tooltip,
|
|
35
|
+
$dark-indigo-elevation-tooltip,
|
|
32
36
|
(
|
|
33
37
|
background: (
|
|
34
|
-
|
|
35
|
-
'
|
|
38
|
+
color: (
|
|
39
|
+
'gray',
|
|
40
|
+
300,
|
|
36
41
|
),
|
|
37
42
|
),
|
|
38
|
-
|
|
39
43
|
text-color: (
|
|
40
|
-
color:
|
|
44
|
+
contrast-color: (
|
|
45
|
+
'gray',
|
|
46
|
+
50,
|
|
47
|
+
),
|
|
41
48
|
),
|
|
42
49
|
)
|
|
43
50
|
);
|
|
@@ -5,13 +5,25 @@
|
|
|
5
5
|
////
|
|
6
6
|
|
|
7
7
|
/// @type Map
|
|
8
|
-
/// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the toast.
|
|
8
|
+
/// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the default toast.
|
|
9
9
|
$default-elevation-toast: (
|
|
10
10
|
elevation: 0,
|
|
11
11
|
);
|
|
12
12
|
|
|
13
13
|
/// @type Map
|
|
14
|
-
/// @prop {Number} elevation [10] - The elevation level, between 0-24, to be used for the toast.
|
|
14
|
+
/// @prop {Number} elevation [10] - The elevation level, between 0-24, to be used for the bootstrap toast.
|
|
15
15
|
$bootstrap-elevation-toast: (
|
|
16
16
|
elevation: 10,
|
|
17
17
|
);
|
|
18
|
+
|
|
19
|
+
/// @type Map
|
|
20
|
+
/// @prop {Number} elevation [10] - The elevation level, between 0-24, to be used for the indigo toast.
|
|
21
|
+
$indigo-elevation-toast: (
|
|
22
|
+
elevation: 10,
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
/// @type Map
|
|
26
|
+
/// @prop {Number} elevation [11] - The elevation level, between 0-24, to be used for the dark indigo toast.
|
|
27
|
+
$dark-indigo-elevation-toast: (
|
|
28
|
+
elevation: 11,
|
|
29
|
+
);
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
////
|
|
2
|
+
/// @package theming
|
|
3
|
+
/// @group schemas
|
|
4
|
+
/// @access public
|
|
5
|
+
////
|
|
6
|
+
|
|
7
|
+
/// @type Map
|
|
8
|
+
/// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the tooltip.
|
|
9
|
+
$default-elevation-tooltip: (
|
|
10
|
+
elevation: 0,
|
|
11
|
+
);
|
|
12
|
+
|
|
13
|
+
/// @type Map
|
|
14
|
+
/// @prop {Number} elevation [8] - The elevation level, between 0-24, to be used for the tooltip.
|
|
15
|
+
$indigo-elevation-tooltip: (
|
|
16
|
+
elevation: 8,
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
/// @type Map
|
|
20
|
+
/// @prop {Number} elevation [9] - The elevation level, between 0-24, to be used for the tooltip.
|
|
21
|
+
$dark-indigo-elevation-tooltip: (
|
|
22
|
+
elevation: 9,
|
|
23
|
+
);
|