igniteui-theming 1.4.7 → 1.4.9
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/_functions.scss +5 -2
- package/sass/themes/schemas/components/light/_action-strip.scss +24 -8
- package/sass/themes/schemas/components/light/_avatar.scss +2 -2
- package/sass/themes/schemas/components/light/_badge.scss +2 -2
- package/sass/themes/schemas/components/light/_button-group.scss +18 -7
- package/sass/themes/schemas/components/light/_button.scss +90 -34
- package/sass/themes/schemas/components/light/_calendar.scss +60 -22
- package/sass/themes/schemas/components/light/_card.scss +18 -7
- package/sass/themes/schemas/components/light/_carousel.scss +12 -6
- package/sass/themes/schemas/components/light/_checkbox.scss +48 -16
- package/sass/themes/schemas/components/light/_chip.scss +12 -6
- package/sass/themes/schemas/components/light/_combo.scss +13 -18
- package/sass/themes/schemas/components/light/_dialog.scss +18 -7
- package/sass/themes/schemas/components/light/_drop-down.scss +30 -13
- package/sass/themes/schemas/components/light/_expansion-panel.scss +12 -5
- package/sass/themes/schemas/components/light/_grid.scss +20 -9
- package/sass/themes/schemas/components/light/_input-group.scss +54 -21
- package/sass/themes/schemas/components/light/_list.scss +24 -10
- package/sass/themes/schemas/components/light/_navdrawer.scss +18 -7
- package/sass/themes/schemas/components/light/_progress.scss +13 -7
- package/sass/themes/schemas/components/light/_select.scss +12 -24
- package/sass/themes/schemas/components/light/_snackbar.scss +18 -6
- package/sass/themes/schemas/components/light/_splitter.scss +6 -2
- package/sass/themes/schemas/components/light/_stepper.scss +28 -14
- package/sass/themes/schemas/components/light/_switch.scss +42 -15
- package/sass/themes/schemas/components/light/_tabs.scss +12 -4
- package/sass/themes/schemas/components/light/_time-picker.scss +42 -15
- package/sass/themes/schemas/components/light/_toast.scss +24 -8
- package/sass/themes/schemas/components/light/_tooltip.scss +18 -7
- package/sass/themes/schemas/components/light/_watermark.scss +24 -8
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
/// @prop {Map} border-color [color: ('gray', 300)] - The calendar border color.
|
|
55
55
|
/// @prop {Map} week-number-color [color: ('gray', 500)] - The text color of the week number column.
|
|
56
56
|
/// @prop {Map} week-number-background [color: ('gray', 200)] - The background color of the week number column.
|
|
57
|
-
/// @prop {
|
|
58
|
-
/// @prop {
|
|
59
|
-
/// @prop {
|
|
57
|
+
/// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for calendar.
|
|
58
|
+
/// @prop {List} date-border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for calendar date.
|
|
59
|
+
/// @prop {List} month-border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for calendar month.
|
|
60
60
|
$light-calendar: (
|
|
61
61
|
content-background: (
|
|
62
62
|
color: 'surface',
|
|
@@ -360,9 +360,21 @@ $light-calendar: (
|
|
|
360
360
|
),
|
|
361
361
|
),
|
|
362
362
|
|
|
363
|
-
border-radius:
|
|
364
|
-
|
|
365
|
-
|
|
363
|
+
border-radius: (
|
|
364
|
+
rem(4px),
|
|
365
|
+
rem(0),
|
|
366
|
+
rem(20px),
|
|
367
|
+
),
|
|
368
|
+
date-border-radius: (
|
|
369
|
+
rem(20px),
|
|
370
|
+
rem(0),
|
|
371
|
+
rem(20px),
|
|
372
|
+
),
|
|
373
|
+
month-border-radius: (
|
|
374
|
+
rem(20px),
|
|
375
|
+
rem(0),
|
|
376
|
+
rem(20px),
|
|
377
|
+
),
|
|
366
378
|
);
|
|
367
379
|
|
|
368
380
|
/// Generates a fluent calendar schema.
|
|
@@ -380,9 +392,9 @@ $light-calendar: (
|
|
|
380
392
|
/// @prop {Map} date-current-hover-foreground [color: ('primary', 600)] - The hover text color for the current date.
|
|
381
393
|
/// @prop {Map} date-current-focus-foreground [color: ('primary', 600)] - The focus text color for the current date.
|
|
382
394
|
/// @prop {Map} date-selected-current-foreground [contrast-color: ('primary', 600)] - The text color for the selected/current date.
|
|
383
|
-
/// @prop {
|
|
384
|
-
/// @prop {
|
|
385
|
-
/// @prop {
|
|
395
|
+
/// @prop {List} border-radius [(rem(0), rem(0), rem(20px))] - The border radius used for calendar.
|
|
396
|
+
/// @prop {List} date-border-radius [(rem(0), rem(0), rem(20px))] - The border radius used for calendar date.
|
|
397
|
+
/// @prop {List} month-border-radius [(rem(0), rem(0), rem(20px))] - The border radius used for calendar month.
|
|
386
398
|
/// @requires {Map} $light-calendar
|
|
387
399
|
$fluent-calendar: extend(
|
|
388
400
|
$light-calendar,
|
|
@@ -491,9 +503,21 @@ $fluent-calendar: extend(
|
|
|
491
503
|
),
|
|
492
504
|
),
|
|
493
505
|
|
|
494
|
-
border-radius:
|
|
495
|
-
|
|
496
|
-
|
|
506
|
+
border-radius: (
|
|
507
|
+
rem(0),
|
|
508
|
+
rem(0),
|
|
509
|
+
rem(20px),
|
|
510
|
+
),
|
|
511
|
+
date-border-radius: (
|
|
512
|
+
rem(0),
|
|
513
|
+
rem(0),
|
|
514
|
+
rem(20px),
|
|
515
|
+
),
|
|
516
|
+
month-border-radius: (
|
|
517
|
+
rem(0),
|
|
518
|
+
rem(0),
|
|
519
|
+
rem(20px),
|
|
520
|
+
),
|
|
497
521
|
)
|
|
498
522
|
);
|
|
499
523
|
|
|
@@ -530,9 +554,9 @@ $fluent-calendar: extend(
|
|
|
530
554
|
/// @prop {Map} date-selected-current-focus-background [color: ('primary', 700)] - The focus background color for the selected/current date.
|
|
531
555
|
/// @prop {Map} date-current-hover-foreground [color: ('surface')] - The hover text color for the current date.
|
|
532
556
|
/// @prop {Map} date-current-focus-foreground [color: ('surface')] - The focus text color for the current date.
|
|
533
|
-
/// @prop {
|
|
534
|
-
/// @prop {
|
|
535
|
-
/// @prop {
|
|
557
|
+
/// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for calendar.
|
|
558
|
+
/// @prop {List} date-border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for calendar date.
|
|
559
|
+
/// @prop {List} month-border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for calendar month.
|
|
536
560
|
/// @requires {Map} $light-calendar
|
|
537
561
|
$bootstrap-calendar: extend(
|
|
538
562
|
$light-calendar,
|
|
@@ -765,9 +789,21 @@ $bootstrap-calendar: extend(
|
|
|
765
789
|
),
|
|
766
790
|
),
|
|
767
791
|
|
|
768
|
-
border-radius:
|
|
769
|
-
|
|
770
|
-
|
|
792
|
+
border-radius: (
|
|
793
|
+
rem(4px),
|
|
794
|
+
rem(0),
|
|
795
|
+
rem(20px),
|
|
796
|
+
),
|
|
797
|
+
date-border-radius: (
|
|
798
|
+
rem(4px),
|
|
799
|
+
rem(0),
|
|
800
|
+
rem(20px),
|
|
801
|
+
),
|
|
802
|
+
month-border-radius: (
|
|
803
|
+
rem(4px),
|
|
804
|
+
rem(0),
|
|
805
|
+
rem(20px),
|
|
806
|
+
),
|
|
771
807
|
)
|
|
772
808
|
);
|
|
773
809
|
|
|
@@ -789,9 +825,7 @@ $bootstrap-calendar: extend(
|
|
|
789
825
|
/// @prop {Map} date-selected-current-focus-foreground [contrast-color: ('primary', 500)] - The focus text color for the selected/current date.
|
|
790
826
|
/// @prop {Map} date-current-hover-foreground [color: ('primary', 600)] - The hover text color for the current date.
|
|
791
827
|
/// @prop {Map} date-current-focus-foreground [color: ('primary', 600)] - The focus text color for the current date.
|
|
792
|
-
/// @prop {
|
|
793
|
-
/// @prop {Number} date-border-radius [20px] - The border radius used for calendar date. Can be a fraction between 0 and 1, pixels, or percent.
|
|
794
|
-
/// @prop {Number} month-border-radius [20px] - The border radius used for calendar month. Can be a fraction between 0 and 1, pixels, or percent.
|
|
828
|
+
/// @prop {List} border-radius [(rem(3px), rem(0), rem(20px))] - The border radius used for calendar.
|
|
795
829
|
/// @requires {Map} $light-calendar
|
|
796
830
|
$indigo-calendar: extend(
|
|
797
831
|
$light-calendar,
|
|
@@ -903,6 +937,10 @@ $indigo-calendar: extend(
|
|
|
903
937
|
),
|
|
904
938
|
),
|
|
905
939
|
|
|
906
|
-
border-radius:
|
|
940
|
+
border-radius: (
|
|
941
|
+
rem(3px),
|
|
942
|
+
rem(0),
|
|
943
|
+
rem(20px),
|
|
944
|
+
),
|
|
907
945
|
)
|
|
908
946
|
);
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
/// @prop {Map} outline-color [color: ('gray', 400, .54)] - The outline color of an outlined type card.
|
|
19
19
|
/// @prop {Number} resting-elevation [2] - The elevation level, between 0-24, to be used for the resting state.
|
|
20
20
|
/// @prop {Number} hover-elevation [8] - The elevation level, between 0-24, to be used for the hover state.
|
|
21
|
-
/// @prop {
|
|
21
|
+
/// @prop {List} border-radius [(rem(4px), rem(0), rem(24px))] - The border radius used for card.
|
|
22
22
|
/// @requires {Map} $default-elevation-card
|
|
23
23
|
$light-card: extend(
|
|
24
24
|
$default-elevation-card,
|
|
@@ -63,7 +63,11 @@ $light-card: extend(
|
|
|
63
63
|
),
|
|
64
64
|
),
|
|
65
65
|
|
|
66
|
-
border-radius:
|
|
66
|
+
border-radius: (
|
|
67
|
+
rem(4px),
|
|
68
|
+
rem(0),
|
|
69
|
+
rem(24px),
|
|
70
|
+
),
|
|
67
71
|
)
|
|
68
72
|
);
|
|
69
73
|
|
|
@@ -72,7 +76,7 @@ $light-card: extend(
|
|
|
72
76
|
/// @prop {Map} outline-color [color: ('gray', 200)] - The outline color of an outlined type card.
|
|
73
77
|
/// @prop {Number} resting-elevation [0] - The elevation level, between 0-24, to be used for the resting state.
|
|
74
78
|
/// @prop {Number} hover-elevation [0] - The elevation level, between 0-24, to be used for the hover state.
|
|
75
|
-
/// @prop {
|
|
79
|
+
/// @prop {List} border-radius [(rem(2px), rem(0), rem(24px))] - The border radius used for card.
|
|
76
80
|
/// @requires {Map} $light-card
|
|
77
81
|
/// @requires {Map} $fluent-elevation-card
|
|
78
82
|
$fluent-card: extend(
|
|
@@ -86,7 +90,11 @@ $fluent-card: extend(
|
|
|
86
90
|
),
|
|
87
91
|
),
|
|
88
92
|
|
|
89
|
-
border-radius:
|
|
93
|
+
border-radius: (
|
|
94
|
+
rem(2px),
|
|
95
|
+
rem(0),
|
|
96
|
+
rem(24px),
|
|
97
|
+
),
|
|
90
98
|
)
|
|
91
99
|
);
|
|
92
100
|
|
|
@@ -100,7 +108,6 @@ $fluent-card: extend(
|
|
|
100
108
|
/// @prop {Map} actions-text-color [color: ('gray', 900)] - The text color of the card buttons.
|
|
101
109
|
/// @prop {Number} resting-elevation [0] - The elevation level, between 0-24, to be used for the resting state.
|
|
102
110
|
/// @prop {Number} hover-elevation [0] - The elevation level, between 0-24, to be used for the hover state.
|
|
103
|
-
/// @prop {Number} border-radius [4px] - The border radius used for card. Can be a fraction between 0 and 1, pixels, or percent.
|
|
104
111
|
/// @requires {Map} $light-card
|
|
105
112
|
/// @requires {Map} $bootstrap-elevation-card
|
|
106
113
|
$bootstrap-card: extend(
|
|
@@ -160,7 +167,7 @@ $bootstrap-card: extend(
|
|
|
160
167
|
/// @prop {Map} actions-text-color [color: ('gray', 600)] - The text color of the card buttons.
|
|
161
168
|
/// @prop {Number} resting-elevation [4] - The elevation level, between 0-24, to be used for the resting state.
|
|
162
169
|
/// @prop {Number} hover-elevation [6] - The elevation level, between 0-24, to be used for the hover state.
|
|
163
|
-
/// @prop {
|
|
170
|
+
/// @prop {List} border-radius [(rem(3px), rem(0), rem(24px))] - The border radius used for card.
|
|
164
171
|
/// @requires {Map} $light-card
|
|
165
172
|
/// @requires {Map} $indigo-elevation-card
|
|
166
173
|
$indigo-card: extend(
|
|
@@ -202,6 +209,10 @@ $indigo-card: extend(
|
|
|
202
209
|
),
|
|
203
210
|
),
|
|
204
211
|
|
|
205
|
-
border-radius:
|
|
212
|
+
border-radius: (
|
|
213
|
+
rem(3px),
|
|
214
|
+
rem(0),
|
|
215
|
+
rem(24px),
|
|
216
|
+
),
|
|
206
217
|
)
|
|
207
218
|
);
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
/// @prop {Map} indicator-active-dot-color [color: ('gray', 50)] - The active indicator dot color.
|
|
23
23
|
/// @prop {Map} indicator-active-border-color [color: ('gray', 50)] - The active indicator border color.
|
|
24
24
|
/// @prop {Number} button-elevation [1] - The elevation level, between 0-24, to be used for the carousel buttons.
|
|
25
|
-
/// @prop {
|
|
25
|
+
/// @prop {List} border-radius [(rem(0), rem(0), rem(36px))] - The border radius used for carousel.
|
|
26
26
|
/// @requires {Map} $default-elevation-carousel
|
|
27
27
|
$light-carousel: extend(
|
|
28
28
|
$default-elevation-carousel,
|
|
@@ -98,13 +98,16 @@ $light-carousel: extend(
|
|
|
98
98
|
),
|
|
99
99
|
),
|
|
100
100
|
|
|
101
|
-
border-radius:
|
|
101
|
+
border-radius: (
|
|
102
|
+
rem(0),
|
|
103
|
+
rem(0),
|
|
104
|
+
rem(36px),
|
|
105
|
+
),
|
|
102
106
|
)
|
|
103
107
|
);
|
|
104
108
|
|
|
105
109
|
/// Generates a fluent carousel schema.
|
|
106
110
|
/// @type {Map}
|
|
107
|
-
/// @prop {Number} border-radius [0] - The border radius used for carousel. Can be a fraction between 0 and 1, pixels, or percent.
|
|
108
111
|
/// @prop {Number} button-elevation [0] - The elevation level, between 0-24, to be used for the carousel buttons.
|
|
109
112
|
/// @requires {Map} $light-carousel
|
|
110
113
|
/// @requires {Map} $fluent-elevation-carousel
|
|
@@ -112,7 +115,7 @@ $fluent-carousel: extend($light-carousel, $fluent-elevation-carousel);
|
|
|
112
115
|
|
|
113
116
|
/// Generates a bootstrap carousel schema.
|
|
114
117
|
/// @type {Map}
|
|
115
|
-
/// @prop {
|
|
118
|
+
/// @prop {List} border-radius [(rem(4px), rem(0), rem(36px))] - The border radius used for carousel.
|
|
116
119
|
/// @prop {Number} button-elevation [0] - The elevation level, between 0-24, to be used for the carousel buttons.
|
|
117
120
|
/// @requires {Map} $light-carousel
|
|
118
121
|
/// @requires {Map} $bootstrap-elevation-carousel
|
|
@@ -120,7 +123,11 @@ $bootstrap-carousel: extend(
|
|
|
120
123
|
$light-carousel,
|
|
121
124
|
$bootstrap-elevation-carousel,
|
|
122
125
|
(
|
|
123
|
-
border-radius:
|
|
126
|
+
border-radius: (
|
|
127
|
+
rem(4px),
|
|
128
|
+
rem(0),
|
|
129
|
+
rem(36px),
|
|
130
|
+
),
|
|
124
131
|
)
|
|
125
132
|
);
|
|
126
133
|
|
|
@@ -134,7 +141,6 @@ $bootstrap-carousel: extend(
|
|
|
134
141
|
/// @prop {Map} button-disabled-arrow-color [color: ('gray' 400)] - The previous/next buttons disabled color.
|
|
135
142
|
/// @prop {Map} indicator-dot-color [color: ('surface', 500, .6)] - The idle indicator dot color.
|
|
136
143
|
/// @prop {Map} indicator-active-dot-color [color: 'surface'] - The active indicator dot color.
|
|
137
|
-
/// @prop {Number} border-radius [0] - The border radius used for carousel. Can be a fraction between 0 and 1, pixels, or percent.
|
|
138
144
|
/// @prop {Number} button-elevation [0] - The elevation level, between 0-24, to be used for the carousel buttons.
|
|
139
145
|
/// @requires {Map} $light-carousel
|
|
140
146
|
/// @requires {Map} $indigo-elevation-carousel
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
/// @prop {Map} disabled-color-label [color: ('gray', 500)] - The disabled color of the label.
|
|
23
23
|
/// @prop {Map} error-color [color: ('error', 500)] - The border and fill colors in invalid state.
|
|
24
24
|
/// @prop {Map} error-color-hover [color: ('error', 500)] - The border and fill colors in invalid state on hover.
|
|
25
|
-
/// @prop {
|
|
26
|
-
/// @prop {
|
|
25
|
+
/// @prop {List} border-radius [(rem(2px), rem(0), rem(10px))] - The border radius used for checkbox.
|
|
26
|
+
/// @prop {List} border-radius-ripple [(rem(24px), rem(0), rem(24px))] - The border radius used for checkbox ripple.
|
|
27
27
|
$light-checkbox: (
|
|
28
28
|
tick-color: (
|
|
29
29
|
color: (
|
|
@@ -91,8 +91,16 @@ $light-checkbox: (
|
|
|
91
91
|
500,
|
|
92
92
|
),
|
|
93
93
|
),
|
|
94
|
-
border-radius:
|
|
95
|
-
|
|
94
|
+
border-radius: (
|
|
95
|
+
rem(2px),
|
|
96
|
+
rem(0),
|
|
97
|
+
rem(10px),
|
|
98
|
+
),
|
|
99
|
+
border-radius-ripple: (
|
|
100
|
+
rem(24px),
|
|
101
|
+
rem(0),
|
|
102
|
+
rem(24px),
|
|
103
|
+
),
|
|
96
104
|
);
|
|
97
105
|
|
|
98
106
|
/// Generates a fluent checkbox schema.
|
|
@@ -104,8 +112,8 @@ $light-checkbox: (
|
|
|
104
112
|
/// @prop {Map} disabled-color [color: ('gray', 400)] - The disabled border and fill colors.
|
|
105
113
|
/// @prop {Map} focus-outline-color [color: ('gray', 800)] - The focus outlined color.
|
|
106
114
|
/// @prop {Map} error-color-hover [color: ('error', 900)] - The border and fill colors in invalid state on hover.
|
|
107
|
-
/// @prop {
|
|
108
|
-
/// @prop {
|
|
115
|
+
/// @prop {List} border-radius [(rem(2px), rem(0), rem(10px))] - The border radius used for checkbox.
|
|
116
|
+
/// @prop {List} border-radius-ripple [(rem(2px), rem(0), rem(24px))] - The border radius used for checkbox ripple.
|
|
109
117
|
/// @requires {Map} $light-checkbox
|
|
110
118
|
$fluent-checkbox: extend(
|
|
111
119
|
$light-checkbox,
|
|
@@ -152,8 +160,16 @@ $fluent-checkbox: extend(
|
|
|
152
160
|
900,
|
|
153
161
|
),
|
|
154
162
|
),
|
|
155
|
-
border-radius:
|
|
156
|
-
|
|
163
|
+
border-radius: (
|
|
164
|
+
rem(2px),
|
|
165
|
+
rem(0),
|
|
166
|
+
rem(10px),
|
|
167
|
+
),
|
|
168
|
+
border-radius-ripple: (
|
|
169
|
+
rem(2px),
|
|
170
|
+
rem(0),
|
|
171
|
+
rem(24px),
|
|
172
|
+
),
|
|
157
173
|
)
|
|
158
174
|
);
|
|
159
175
|
|
|
@@ -165,8 +181,8 @@ $fluent-checkbox: extend(
|
|
|
165
181
|
/// @prop {Map} disabled-color-label [color: ('gray', 400)] - The disabled color of the label.
|
|
166
182
|
/// @prop {Map} focus-outline-color [color: ('primary', 200)] - The focus outlined color.
|
|
167
183
|
/// @prop {Map} error-color-hover [color: ('error', 100)] - The focus outlined color in invalid state.
|
|
168
|
-
/// @prop {
|
|
169
|
-
/// @prop {
|
|
184
|
+
/// @prop {List} border-radius [(rem(4px), rem(0), rem(10px))] - The border radius used for checkbox.
|
|
185
|
+
/// @prop {List} border-radius-ripple [(rem(4px), rem(0), rem(24px))] - The border radius used for checkbox ripple.
|
|
170
186
|
/// @requires {Map} $light-checkbox
|
|
171
187
|
$bootstrap-checkbox: extend(
|
|
172
188
|
$light-checkbox,
|
|
@@ -207,8 +223,16 @@ $bootstrap-checkbox: extend(
|
|
|
207
223
|
100,
|
|
208
224
|
),
|
|
209
225
|
),
|
|
210
|
-
border-radius:
|
|
211
|
-
|
|
226
|
+
border-radius: (
|
|
227
|
+
rem(4px),
|
|
228
|
+
rem(0),
|
|
229
|
+
rem(10px),
|
|
230
|
+
),
|
|
231
|
+
border-radius-ripple: (
|
|
232
|
+
rem(4px),
|
|
233
|
+
rem(0),
|
|
234
|
+
rem(24px),
|
|
235
|
+
),
|
|
212
236
|
)
|
|
213
237
|
);
|
|
214
238
|
|
|
@@ -223,8 +247,8 @@ $bootstrap-checkbox: extend(
|
|
|
223
247
|
/// @prop {Map} focus-outline-color [color: ('gray', 300)] - The focus outlined color.
|
|
224
248
|
/// @prop {Map} focus-outline-color-focused [color: ('primary', 200)] - The focus outlined color for focused state.
|
|
225
249
|
/// @prop {Map} error-color-hover [color: ('error', 200)] - The focus outlined color in invalid state.
|
|
226
|
-
/// @prop {
|
|
227
|
-
/// @prop {
|
|
250
|
+
/// @prop {List} border-radius [(rem(3px), rem(0), rem(10px))] - The border radius used for checkbox.
|
|
251
|
+
/// @prop {List} border-radius-ripple [(rem(3px), rem(0), rem(24px))] - The border radius used for checkbox ripple.
|
|
228
252
|
/// @requires {Map} $light-checkbox
|
|
229
253
|
$indigo-checkbox: extend(
|
|
230
254
|
$light-checkbox,
|
|
@@ -277,7 +301,15 @@ $indigo-checkbox: extend(
|
|
|
277
301
|
200,
|
|
278
302
|
),
|
|
279
303
|
),
|
|
280
|
-
border-radius:
|
|
281
|
-
|
|
304
|
+
border-radius: (
|
|
305
|
+
rem(3px),
|
|
306
|
+
rem(0),
|
|
307
|
+
rem(10px),
|
|
308
|
+
),
|
|
309
|
+
border-radius-ripple: (
|
|
310
|
+
rem(3px),
|
|
311
|
+
rem(0),
|
|
312
|
+
rem(24px),
|
|
313
|
+
),
|
|
282
314
|
)
|
|
283
315
|
);
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
/// Generates a light chip schema.
|
|
12
12
|
/// @type {Map}
|
|
13
|
-
/// @prop {
|
|
13
|
+
/// @prop {List} border-radius [(rem(16px), rem(0), rem(16px))] - The border radius used for chip.
|
|
14
14
|
/// @prop {Map} text-color [contrast-color: ('gray', 300)] - The chip text color.
|
|
15
15
|
/// @prop {Map} background [color: ('gray', 300)] - The chip background color.
|
|
16
16
|
/// @prop {Color} border-color [transparent] - The chip border color.
|
|
@@ -151,7 +151,11 @@ $light-chip: extend(
|
|
|
151
151
|
|
|
152
152
|
focus-selected-border-color: transparent,
|
|
153
153
|
|
|
154
|
-
border-radius:
|
|
154
|
+
border-radius: (
|
|
155
|
+
rem(16px),
|
|
156
|
+
rem(0),
|
|
157
|
+
rem(16px),
|
|
158
|
+
),
|
|
155
159
|
disabled-text-color: (
|
|
156
160
|
color: (
|
|
157
161
|
'gray',
|
|
@@ -191,7 +195,6 @@ $light-chip: extend(
|
|
|
191
195
|
/// @prop {Map} focus-selected-text-color [contrast-color: ('primary', 700)] - The selected chip text focus color.
|
|
192
196
|
/// @prop {Map} focus-selected-background [color: ('primary', 500)] - The selected chip focus background color.
|
|
193
197
|
/// @prop {Number} ghost-elevation [2] - The elevation level, between 0-24, to be used for the chip's ghost (dragging mode).
|
|
194
|
-
/// @prop {Number} border-radius [16px] - The border radius used for chip. Can be a fraction between 0 and 1, pixels, or percent.
|
|
195
198
|
/// @requires {Map} $light-chip
|
|
196
199
|
/// @requires {Map} $fluent-elevation-chip
|
|
197
200
|
$fluent-chip: extend(
|
|
@@ -302,7 +305,7 @@ $fluent-chip: extend(
|
|
|
302
305
|
/// @prop {Map} focus-selected-background [color: ('gray', 400)] - The selected chip focus background color.
|
|
303
306
|
/// @prop {Map} focus-selected-text-color [contrast-color: ('gray', 400)] - The selected chip text focus color.
|
|
304
307
|
/// @prop {Number} ghost-elevation [0] - The elevation level, between 0-24, to be used for the chip's ghost (dragging mode).
|
|
305
|
-
/// @prop {
|
|
308
|
+
/// @prop {List} border-radius [(rem(4px), rem(0), rem(16px))] - The border radius used for chip.
|
|
306
309
|
/// @prop {Map} focus-outline-color [color: ('gray', 200)] - The chip focus outline color.
|
|
307
310
|
/// @prop {Map} focus-selected-outline-color [color: ('primary', 200)] - The selected chip focus outline color.
|
|
308
311
|
/// @requires {Map} $light-chip
|
|
@@ -381,14 +384,17 @@ $bootstrap-chip: extend(
|
|
|
381
384
|
),
|
|
382
385
|
),
|
|
383
386
|
|
|
384
|
-
border-radius:
|
|
387
|
+
border-radius: (
|
|
388
|
+
rem(4px),
|
|
389
|
+
rem(0),
|
|
390
|
+
rem(16px),
|
|
391
|
+
),
|
|
385
392
|
)
|
|
386
393
|
);
|
|
387
394
|
|
|
388
395
|
/// Generates an indigo chip schema.
|
|
389
396
|
/// @type {Map}
|
|
390
397
|
/// @prop {Number} ghost-elevation [1] - The elevation level, between 0-24, to be used for the chip's ghost (dragging mode).
|
|
391
|
-
/// @prop {Number} border-radius [16px] - The border radius used for chip. Can be a fraction between 0 and 1, pixels, or percent.
|
|
392
398
|
/// @prop {Map} text-color [color: ('gray', 700)] - The chip text color.
|
|
393
399
|
/// @prop {Map} background [color: ('surface')] - The chip background color.
|
|
394
400
|
/// @prop {Map} ghost-background [color: ('surface')] - The chip ghost background color.
|
|
@@ -19,8 +19,9 @@
|
|
|
19
19
|
/// @prop {Map} toggle-button-foreground [color: ('gray', 700)] - The combo toggle button foreground color.
|
|
20
20
|
/// @prop {Map} toggle-button-foreground-focus [color: ('gray', 700)] - The combo toggle button foreground color when the combo is focused.
|
|
21
21
|
/// @prop {Map} toggle-button-foreground-filled [color: ('gray', 900)] - The combo toggle button foreground color when the combo is focused.
|
|
22
|
-
/// @prop {Map} toggle-button-background-disabled [color: ('gray',
|
|
23
|
-
/// @prop {Map} toggle-button-foreground-disabled [color: ('gray',
|
|
22
|
+
/// @prop {Map} toggle-button-background-disabled [color: ('gray', 100)] - The combo toggle button background color when the combo is disabled.
|
|
23
|
+
/// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 500)] - The combo toggle button foreground color when the combo is disabled.
|
|
24
|
+
/// @prop {Map} toggle-button-background-focus--border [color: ('gray', 300)] The combo toggle button background color when the combo is focused in material border variant.
|
|
24
25
|
/// @prop {Color} clear-button-background [transparent] - The combo clear button background color.
|
|
25
26
|
/// @prop {Color} clear-button-background-focus [transparent] - The combo clear button background color when the combo is focused.
|
|
26
27
|
/// @prop {Map} clear-button-foreground [contrast-color: ('gray', 100)] - The combo toggle clear foreground color.
|
|
@@ -28,6 +29,12 @@
|
|
|
28
29
|
/// @prop {Map} case-icon-color [color: ('gray', 400)] - The case sensitive icon color in inactive state for combo search input
|
|
29
30
|
/// @prop {Map} case-icon-color--active [color: ('primary', 500)] - The case sensitive icon color in active state for combo search input
|
|
30
31
|
$light-combo: (
|
|
32
|
+
toggle-button-background-focus--border: (
|
|
33
|
+
color: (
|
|
34
|
+
'gray',
|
|
35
|
+
300,
|
|
36
|
+
),
|
|
37
|
+
),
|
|
31
38
|
case-icon-color: (
|
|
32
39
|
color: (
|
|
33
40
|
'gray',
|
|
@@ -103,7 +110,7 @@ $light-combo: (
|
|
|
103
110
|
toggle-button-background-disabled: (
|
|
104
111
|
color: (
|
|
105
112
|
'gray',
|
|
106
|
-
|
|
113
|
+
100,
|
|
107
114
|
),
|
|
108
115
|
),
|
|
109
116
|
toggle-button-foreground-disabled: (
|
|
@@ -183,7 +190,6 @@ $fluent-combo: extend(
|
|
|
183
190
|
/// @prop {Map} clear-button-background-focus [color: ('gray', 300)] - The combo clear button background color when the combo is focused.
|
|
184
191
|
/// @prop {Map} clear-button-foreground [color: ('gray', 800)] - The combo toggle clear foreground color.
|
|
185
192
|
/// @prop {Map} clear-button-foreground-focus [color: ('gray', 800)] - The combo clear button foreground color when the combo is focused.
|
|
186
|
-
/// @prop {Map} toggle-button-background-disabled [color: ('gray', 300)] - The combo toggle button background color when the combo is disabled.
|
|
187
193
|
/// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 400)] - The combo toggle button foreground color when the combo is disabled.
|
|
188
194
|
/// @prop {Map} toggle-button-background-focus [color: ('gray', 300)] - The combo toggle button background color when the combo is focused.
|
|
189
195
|
/// @requires {Map} $light-combo
|
|
@@ -255,12 +261,6 @@ $bootstrap-combo: extend(
|
|
|
255
261
|
300,
|
|
256
262
|
),
|
|
257
263
|
),
|
|
258
|
-
toggle-button-background-disabled: (
|
|
259
|
-
color: (
|
|
260
|
-
'gray',
|
|
261
|
-
300,
|
|
262
|
-
),
|
|
263
|
-
),
|
|
264
264
|
toggle-button-foreground-disabled: (
|
|
265
265
|
color: (
|
|
266
266
|
'gray',
|
|
@@ -275,9 +275,9 @@ $bootstrap-combo: extend(
|
|
|
275
275
|
/// @prop {Color} clear-button-background-focus [transparent] - The combo clear button background color when the combo is focused.
|
|
276
276
|
/// @prop {Map} clear-button-foreground [color: ('gray', 600)] - The combo toggle clear foreground color.
|
|
277
277
|
/// @prop {Map} clear-button-foreground-focus [color: ('gray', 600)] - The combo clear button foreground color when the combo is focused.
|
|
278
|
-
/// @prop {Map} toggle-button-background-disabled [color: ('gray', 100)] - The combo toggle button background color when the combo is disabled.
|
|
279
278
|
/// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 300)] - The combo toggle button foreground color when the combo is disabled.
|
|
280
|
-
/// @prop {
|
|
279
|
+
/// @prop {Color} toggle-button-background-disabled [transparent] - The combo toggle button background color when the combo is disabled.
|
|
280
|
+
/// @prop {Color} toggle-button-background-focus [transparent] - The combo toggle button background color when the combo is focused.
|
|
281
281
|
/// @requires {Map} $light-combo
|
|
282
282
|
$indigo-combo: extend(
|
|
283
283
|
$light-combo,
|
|
@@ -301,17 +301,12 @@ $indigo-combo: extend(
|
|
|
301
301
|
600,
|
|
302
302
|
),
|
|
303
303
|
),
|
|
304
|
-
toggle-button-background-disabled: (
|
|
305
|
-
color: (
|
|
306
|
-
'gray',
|
|
307
|
-
100,
|
|
308
|
-
),
|
|
309
|
-
),
|
|
310
304
|
toggle-button-foreground-disabled: (
|
|
311
305
|
color: (
|
|
312
306
|
'gray',
|
|
313
307
|
300,
|
|
314
308
|
),
|
|
315
309
|
),
|
|
310
|
+
toggle-button-background-disabled: transparent,
|
|
316
311
|
)
|
|
317
312
|
);
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
/// @prop {Map} message-color [color: ('gray', 600)] - The dialog message text color.
|
|
16
16
|
/// @prop {Color} border-color [transparent] - The border color for dialog component.
|
|
17
17
|
/// @prop {Number} elevation [24] - The elevation level, between 0-24, to be used for the dialog.
|
|
18
|
-
/// @prop {
|
|
18
|
+
/// @prop {List} border-radius [(rem(4px), rem(0), rem(36px))] - The border radius used for dialog.
|
|
19
19
|
/// @requires {Map} $default-elevation-dialog
|
|
20
20
|
$light-dialog: extend(
|
|
21
21
|
$default-elevation-dialog,
|
|
@@ -40,19 +40,27 @@ $light-dialog: extend(
|
|
|
40
40
|
|
|
41
41
|
border-color: transparent,
|
|
42
42
|
|
|
43
|
-
border-radius:
|
|
43
|
+
border-radius: (
|
|
44
|
+
rem(4px),
|
|
45
|
+
rem(0),
|
|
46
|
+
rem(36px),
|
|
47
|
+
),
|
|
44
48
|
)
|
|
45
49
|
);
|
|
46
50
|
|
|
47
51
|
/// Generates a fluent dialog schema.
|
|
48
52
|
/// @type {Map}
|
|
49
|
-
/// @prop {
|
|
53
|
+
/// @prop {List} border-radius [(rem(2px), rem(0), rem(36px))] - The border radius used for dialog.
|
|
50
54
|
/// @prop {Map} message-color [color: ('gray', 700)] - The dialog message text color.
|
|
51
55
|
/// @requires {Map} $light-dialog
|
|
52
56
|
$fluent-dialog: extend(
|
|
53
57
|
$light-dialog,
|
|
54
58
|
(
|
|
55
|
-
border-radius:
|
|
59
|
+
border-radius: (
|
|
60
|
+
rem(2px),
|
|
61
|
+
rem(0),
|
|
62
|
+
rem(36px),
|
|
63
|
+
),
|
|
56
64
|
message-color: (
|
|
57
65
|
color: (
|
|
58
66
|
'gray',
|
|
@@ -66,7 +74,6 @@ $fluent-dialog: extend(
|
|
|
66
74
|
/// @type {Map}
|
|
67
75
|
/// @prop {Map} border-color [color: ('gray', 300)] - The border color for dialog component.
|
|
68
76
|
/// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the dialog.
|
|
69
|
-
/// @prop {Number} border-radius [4px] - The border radius used for dialog. Can be a fraction between 0 and 1, pixels, or percent.
|
|
70
77
|
/// @requires {Map} $light-dialog
|
|
71
78
|
/// @requires {Map} $bootstrap-elevation-dialog
|
|
72
79
|
$bootstrap-dialog: extend(
|
|
@@ -85,7 +92,7 @@ $bootstrap-dialog: extend(
|
|
|
85
92
|
/// Generates an indigo dialog schema.
|
|
86
93
|
/// @type {Map}
|
|
87
94
|
/// @prop {Map} message-color [color: ('gray', 700)] - The dialog message text color.
|
|
88
|
-
/// @prop {
|
|
95
|
+
/// @prop {List} border-radius [(rem(2px), rem(0), rem(36px))] - The border radius used for dialog.
|
|
89
96
|
/// @requires {Map} $light-dialog
|
|
90
97
|
$indigo-dialog: extend(
|
|
91
98
|
$light-dialog,
|
|
@@ -97,6 +104,10 @@ $indigo-dialog: extend(
|
|
|
97
104
|
),
|
|
98
105
|
),
|
|
99
106
|
|
|
100
|
-
border-radius:
|
|
107
|
+
border-radius: (
|
|
108
|
+
rem(2px),
|
|
109
|
+
rem(0),
|
|
110
|
+
rem(36px),
|
|
111
|
+
),
|
|
101
112
|
)
|
|
102
113
|
);
|