igniteui-theming 6.2.0-beta.2 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/sass/themes/schemas/components/dark/_bottom-nav.scss +11 -44
- package/sass/themes/schemas/components/dark/_button-group.scss +46 -7
- package/sass/themes/schemas/components/dark/_button.scss +80 -42
- package/sass/themes/schemas/components/dark/_icon-button.scss +16 -0
- package/sass/themes/schemas/components/dark/_navdrawer.scss +19 -48
- package/sass/themes/schemas/components/dark/_switch.scss +38 -85
- package/sass/themes/schemas/components/elevation/_bottom-nav.scss +2 -2
- package/sass/themes/schemas/components/elevation/_navbar.scss +6 -0
- package/sass/themes/schemas/components/light/_bottom-nav.scss +8 -82
- package/sass/themes/schemas/components/light/_button-group.scss +146 -22
- package/sass/themes/schemas/components/light/_button.scss +167 -158
- package/sass/themes/schemas/components/light/_icon-button.scss +37 -10
- package/sass/themes/schemas/components/light/_navbar.scss +2 -1
- package/sass/themes/schemas/components/light/_navdrawer.scss +33 -34
- package/sass/themes/schemas/components/light/_switch.scss +28 -91
|
@@ -136,124 +136,77 @@ $dark-bootstrap-switch: extend(
|
|
|
136
136
|
|
|
137
137
|
/// Generates a dark indigo switch schema.
|
|
138
138
|
/// @type {Map}
|
|
139
|
-
/// @prop {
|
|
140
|
-
/// @prop {Map}
|
|
141
|
-
/// @prop {Map}
|
|
142
|
-
/// @prop {
|
|
143
|
-
/// @prop {Map}
|
|
144
|
-
/// @prop {Map}
|
|
145
|
-
/// @prop {Map}
|
|
146
|
-
/// @prop {Map}
|
|
147
|
-
/// @prop {Map}
|
|
148
|
-
/// @prop {Map}
|
|
149
|
-
/// @prop {Map}
|
|
150
|
-
/// @prop {Map} border-disabled-color [contrast-color: ('gray', 50, .2)] - The border color of the disabled switch.
|
|
151
|
-
/// @prop {Map} border-on-hover-color [color: ('primary', 300)] - The border color of the on-switch.
|
|
152
|
-
/// @prop {Map} error-color [contrast-color: ('gray', 50, .6)] - The border and thumb color in invalid state.
|
|
153
|
-
/// @prop {Map} focus-outline-color [contrast-color: ('gray', 50, .2)] - The focus outlined color.
|
|
139
|
+
/// @prop {Color} thumb-on-color [color: 'surface'] - The color of the thumb when the switch is on.
|
|
140
|
+
/// @prop {Map} track-on-color [color: ('gray', 900)] - The color of the track when the switch is on.
|
|
141
|
+
/// @prop {Map} thumb-off-color [color: ('gray', 700)] - The color of the thumb when the switch is off.
|
|
142
|
+
/// @prop {Color} track-off-color [transparent] - The color of the track when the switch is off.
|
|
143
|
+
/// @prop {Map} border-color [color: ('gray', 700)] - The border color of the switch.
|
|
144
|
+
/// @prop {Map} border-hover-color [color: ('gray', 700)] - The border color of the switch on hover.
|
|
145
|
+
/// @prop {Map} border-disabled-color [color: ('gray', 400)] - The border color of the disabled switch.
|
|
146
|
+
/// @prop {Map} border-on-color [color: ('gray', 900)] - The border color of the on-switch.
|
|
147
|
+
/// @prop {Map} border-on-hover-color [color: ('gray', 900)] - The border color of the on-switch.
|
|
148
|
+
/// @prop {Map} label-disabled-color [color: ('gray', 400)] - The color of the switch label when the switch is disabled
|
|
149
|
+
/// @prop {Map} error-color [color: ('gray', 700)] - The border and thumb color in invalid state.
|
|
154
150
|
/// @requires $indigo-switch
|
|
155
151
|
$dark-indigo-switch: extend(
|
|
156
152
|
$indigo-switch,
|
|
157
153
|
(
|
|
158
|
-
|
|
159
|
-
|
|
154
|
+
border-color: (
|
|
155
|
+
color: (
|
|
160
156
|
'gray',
|
|
161
|
-
|
|
162
|
-
0.8,
|
|
157
|
+
700,
|
|
163
158
|
),
|
|
164
159
|
),
|
|
165
|
-
|
|
166
|
-
|
|
160
|
+
border-hover-color: (
|
|
161
|
+
color: (
|
|
167
162
|
'gray',
|
|
168
|
-
|
|
169
|
-
0.8,
|
|
163
|
+
700,
|
|
170
164
|
),
|
|
171
165
|
),
|
|
172
|
-
|
|
173
|
-
|
|
166
|
+
border-disabled-color: (
|
|
167
|
+
color: (
|
|
174
168
|
'gray',
|
|
175
|
-
|
|
169
|
+
400,
|
|
176
170
|
),
|
|
177
171
|
),
|
|
178
|
-
|
|
179
|
-
|
|
172
|
+
border-on-color: (
|
|
173
|
+
color: (
|
|
180
174
|
'gray',
|
|
181
|
-
|
|
182
|
-
0.2,
|
|
175
|
+
900,
|
|
183
176
|
),
|
|
184
177
|
),
|
|
185
|
-
|
|
186
|
-
|
|
178
|
+
border-on-hover-color: (
|
|
179
|
+
color: (
|
|
187
180
|
'gray',
|
|
188
|
-
|
|
189
|
-
0.6,
|
|
181
|
+
900,
|
|
190
182
|
),
|
|
191
183
|
),
|
|
192
184
|
thumb-on-color: (
|
|
193
|
-
|
|
194
|
-
'gray',
|
|
195
|
-
50,
|
|
196
|
-
),
|
|
197
|
-
),
|
|
198
|
-
thumb-disabled-color: (
|
|
199
|
-
contrast-color: (
|
|
200
|
-
'gray',
|
|
201
|
-
50,
|
|
202
|
-
0.2,
|
|
203
|
-
),
|
|
204
|
-
),
|
|
205
|
-
thumb-on-disabled-color: (
|
|
206
|
-
contrast-color: (
|
|
207
|
-
'gray',
|
|
208
|
-
50,
|
|
209
|
-
0.2,
|
|
210
|
-
),
|
|
185
|
+
color: 'surface',
|
|
211
186
|
),
|
|
212
|
-
|
|
187
|
+
thumb-off-color: (
|
|
213
188
|
color: (
|
|
214
|
-
'primary',
|
|
215
|
-
300,
|
|
216
|
-
),
|
|
217
|
-
),
|
|
218
|
-
border-color: (
|
|
219
|
-
contrast-color: (
|
|
220
189
|
'gray',
|
|
221
|
-
|
|
222
|
-
0.6,
|
|
190
|
+
700,
|
|
223
191
|
),
|
|
224
192
|
),
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
'gray',
|
|
228
|
-
50,
|
|
229
|
-
0.8,
|
|
230
|
-
),
|
|
231
|
-
),
|
|
232
|
-
border-disabled-color: (
|
|
233
|
-
contrast-color: (
|
|
193
|
+
track-on-color: (
|
|
194
|
+
color: (
|
|
234
195
|
'gray',
|
|
235
|
-
|
|
236
|
-
0.2,
|
|
196
|
+
900,
|
|
237
197
|
),
|
|
238
198
|
),
|
|
239
|
-
|
|
199
|
+
track-off-color: transparent,
|
|
200
|
+
label-disabled-color: (
|
|
240
201
|
color: (
|
|
241
|
-
'primary',
|
|
242
|
-
300,
|
|
243
|
-
),
|
|
244
|
-
),
|
|
245
|
-
error-color: (
|
|
246
|
-
contrast-color: (
|
|
247
202
|
'gray',
|
|
248
|
-
|
|
249
|
-
0.6,
|
|
203
|
+
400,
|
|
250
204
|
),
|
|
251
205
|
),
|
|
252
|
-
|
|
253
|
-
|
|
206
|
+
error-color: (
|
|
207
|
+
color: (
|
|
254
208
|
'gray',
|
|
255
|
-
|
|
256
|
-
0.2,
|
|
209
|
+
700,
|
|
257
210
|
),
|
|
258
211
|
),
|
|
259
212
|
)
|
|
@@ -17,7 +17,7 @@ $fluent-elevation-bottom-nav: (
|
|
|
17
17
|
);
|
|
18
18
|
|
|
19
19
|
/// @type Map
|
|
20
|
-
/// @prop {Number} elevation [
|
|
20
|
+
/// @prop {Number} elevation [4] - The elevation level, between 0-24, to be used for the bottom nav.
|
|
21
21
|
$indigo-elevation-bottom-nav: (
|
|
22
|
-
elevation:
|
|
22
|
+
elevation: 4,
|
|
23
23
|
);
|
|
@@ -10,14 +10,9 @@
|
|
|
10
10
|
|
|
11
11
|
/// Generates a light bottom navigation scheme.
|
|
12
12
|
/// @type {Map}
|
|
13
|
-
/// @prop {
|
|
14
|
-
/// @prop {Map}
|
|
15
|
-
/// @prop {Map}
|
|
16
|
-
/// @prop {Map} label-color [color: ('gray', 700)] - The label color used in idle state.
|
|
17
|
-
/// @prop {Map} icon-disabled-color [color: ('gray', 700)] - The disabled color of the icon.
|
|
18
|
-
/// @prop {Map} label-disabled-color [color: ('gray', 700)] - The disabled color of the label.
|
|
19
|
-
/// @prop {Map} label-selected-color [color: ('primary', 500)] - The label color used for the selected item.
|
|
20
|
-
/// @prop {Color} border-color [transparent] - The border color of the bottom navigation.
|
|
13
|
+
/// @prop {Color} background [color: ('gray', 50))] - The background color used for the toast.
|
|
14
|
+
/// @prop {Map} idle-item-color [color: ('gray', 700)] - The text-color used for the idle color.
|
|
15
|
+
/// @prop {Map} active-item-color [color: ('primary', 500)] - The text-color used for the active color.
|
|
21
16
|
/// @prop {Number} elevation [8] - The elevation level, between 0-24, to be used for the bottom nav.
|
|
22
17
|
/// @requires {Map} $default-elevation-bottom-nav
|
|
23
18
|
$light-bottom-nav: extend(
|
|
@@ -29,43 +24,20 @@ $light-bottom-nav: extend(
|
|
|
29
24
|
50,
|
|
30
25
|
),
|
|
31
26
|
),
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
'gray',
|
|
35
|
-
700,
|
|
36
|
-
),
|
|
37
|
-
),
|
|
38
|
-
icon-selected-color: (
|
|
39
|
-
color: (
|
|
40
|
-
'primary',
|
|
41
|
-
500,
|
|
42
|
-
),
|
|
43
|
-
),
|
|
44
|
-
label-color: (
|
|
27
|
+
|
|
28
|
+
idle-item-color: (
|
|
45
29
|
color: (
|
|
46
30
|
'gray',
|
|
47
31
|
700,
|
|
48
32
|
),
|
|
49
33
|
),
|
|
50
|
-
|
|
34
|
+
|
|
35
|
+
active-item-color: (
|
|
51
36
|
color: (
|
|
52
37
|
'primary',
|
|
53
38
|
500,
|
|
54
39
|
),
|
|
55
40
|
),
|
|
56
|
-
icon-disabled-color: (
|
|
57
|
-
color: (
|
|
58
|
-
'gray',
|
|
59
|
-
700,
|
|
60
|
-
),
|
|
61
|
-
),
|
|
62
|
-
label-disabled-color: (
|
|
63
|
-
color: (
|
|
64
|
-
'gray',
|
|
65
|
-
700,
|
|
66
|
-
),
|
|
67
|
-
),
|
|
68
|
-
border-color: transparent,
|
|
69
41
|
)
|
|
70
42
|
);
|
|
71
43
|
|
|
@@ -88,53 +60,7 @@ $bootstrap-bottom-nav: $light-bottom-nav;
|
|
|
88
60
|
|
|
89
61
|
/// Generates an indigo bottom navigation schema.
|
|
90
62
|
/// @type {Map}
|
|
91
|
-
/// @prop {Map} border-color [color: ('gray', 300)] - The border color of the bottom navigation.
|
|
92
|
-
/// @prop {Map} background [color: 'surface'] - The background color used for the bottom nav.
|
|
93
|
-
/// @prop {Map} icon-color [color: ('gray', 600)] - The icon color used in idle state.
|
|
94
|
-
/// @prop {Map} label-color [color: ('gray', 800)] - The label color used in idle state.
|
|
95
|
-
/// @prop {Map} icon-disabled-color [color: ('gray', 900, .2)] - The disabled color of the icon.
|
|
96
|
-
/// @prop {Map} label-disabled-color [color: ('gray', 900, .2)] - The disabled color of the label.
|
|
97
63
|
/// @prop {Number} elevation [4] - The elevation level, between 0-24, to be used for the bottom nav.
|
|
98
64
|
/// @requires {Map} $light-bottom-nav
|
|
99
65
|
/// @requires {Map} $indigo-elevation-bottom-nav
|
|
100
|
-
$indigo-bottom-nav: extend(
|
|
101
|
-
$light-bottom-nav,
|
|
102
|
-
$indigo-elevation-bottom-nav,
|
|
103
|
-
(
|
|
104
|
-
border-color: (
|
|
105
|
-
color: (
|
|
106
|
-
'gray',
|
|
107
|
-
300,
|
|
108
|
-
),
|
|
109
|
-
),
|
|
110
|
-
background: (
|
|
111
|
-
color: 'surface',
|
|
112
|
-
),
|
|
113
|
-
icon-color: (
|
|
114
|
-
color: (
|
|
115
|
-
'gray',
|
|
116
|
-
600,
|
|
117
|
-
),
|
|
118
|
-
),
|
|
119
|
-
label-color: (
|
|
120
|
-
color: (
|
|
121
|
-
'gray',
|
|
122
|
-
800,
|
|
123
|
-
),
|
|
124
|
-
),
|
|
125
|
-
icon-disabled-color: (
|
|
126
|
-
color: (
|
|
127
|
-
'gray',
|
|
128
|
-
900,
|
|
129
|
-
0.2,
|
|
130
|
-
),
|
|
131
|
-
),
|
|
132
|
-
label-disabled-color: (
|
|
133
|
-
color: (
|
|
134
|
-
'gray',
|
|
135
|
-
900,
|
|
136
|
-
0.2,
|
|
137
|
-
),
|
|
138
|
-
),
|
|
139
|
-
)
|
|
140
|
-
);
|
|
66
|
+
$indigo-bottom-nav: extend($light-bottom-nav, $indigo-elevation-bottom-nav);
|
|
@@ -19,9 +19,8 @@
|
|
|
19
19
|
/// @prop {Map} item-hover-text-color [color: ('gray', 900)] - The hover text color for button group items.
|
|
20
20
|
/// @prop {Map} item-focused-text-color [color: ('gray', 800)] - The focused text color for button group items.
|
|
21
21
|
/// @prop {Map} item-focused-border-color [color: ('gray', 400)] - The focused border color for an item from the button group.
|
|
22
|
-
/// @prop {Map} item-focused-background [color: ('gray', 300)] - The focused background color for button group items.
|
|
23
22
|
/// @prop {Map} disabled-background-color [color: ('gray', 50)] - The background color for a disabled item in the button group.
|
|
24
|
-
/// @prop {Map} disabled-selected-background [color: ('gray',
|
|
23
|
+
/// @prop {Map} disabled-selected-background [color: ('gray', 500, .12)] - The disabled background color for a selected item in the button group.
|
|
25
24
|
/// @prop {Number} elevation [2] - The elevation level, between 0-24, to be used for the button group shadow.
|
|
26
25
|
/// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for button-group component.
|
|
27
26
|
/// @prop {Number} default-size [2] - The default size used for the button-group component.
|
|
@@ -81,13 +80,6 @@ $light-button-group: extend(
|
|
|
81
80
|
),
|
|
82
81
|
),
|
|
83
82
|
|
|
84
|
-
item-focused-background: (
|
|
85
|
-
color: (
|
|
86
|
-
'gray',
|
|
87
|
-
300,
|
|
88
|
-
),
|
|
89
|
-
),
|
|
90
|
-
|
|
91
83
|
disabled-background-color: (
|
|
92
84
|
color: (
|
|
93
85
|
'gray',
|
|
@@ -98,7 +90,8 @@ $light-button-group: extend(
|
|
|
98
90
|
disabled-selected-background: (
|
|
99
91
|
color: (
|
|
100
92
|
'gray',
|
|
101
|
-
|
|
93
|
+
500,
|
|
94
|
+
0.12,
|
|
102
95
|
),
|
|
103
96
|
),
|
|
104
97
|
|
|
@@ -120,12 +113,16 @@ $light-button-group: extend(
|
|
|
120
113
|
/// @prop {Map} item-hover-text-color [color: ('gray', 800)] - The hover text color for button group items.
|
|
121
114
|
/// @prop {Map} item-hover-icon-color [color: ('gray', 800)] - The hover icon color for button group items.
|
|
122
115
|
/// @prop {Map} item-hover-border-color [color: ('gray', 400)] - The hover border color between button group items.
|
|
123
|
-
/// @prop {Map} item-hover-background [color: ('gray', 300)] - The hover background color for button group items.
|
|
116
|
+
/// @prop {Map} item-hover-background [color: ('gray', 300, .8)] - The hover background color for button group items.
|
|
117
|
+
/// @prop {Map} item-focused-background [color: ('gray', 700, .4)] - The focused background color for button group items.
|
|
118
|
+
/// @prop {Map} item-focused-hover-background [color: ('gray', 500, .5)] - The focused & hover background color for button group items.
|
|
124
119
|
/// @prop {Map} item-selected-background [color: ('gray', 400)] - The background color for a selected item in the button group.
|
|
125
120
|
/// @prop {Map} item-selected-text-color [color: ('gray', 800)] - The text color for a selected item in the button group.
|
|
126
121
|
/// @prop {Map} item-selected-icon-color [color: ('gray', 800)] - The icon color for a selected item in the button group.
|
|
127
122
|
/// @prop {Map} item-selected-border-color [color: ('gray', 500)] - The border color for a selected item from the button group.
|
|
128
|
-
/// @prop {Map} item-selected-hover-background [color: ('gray', 500, .8)] - The background color for a selected item in hover
|
|
123
|
+
/// @prop {Map} item-selected-hover-background [color: ('gray', 500, .8)] - The background color for a selected item in hover state in the button group.
|
|
124
|
+
/// @prop {Map} item-selected-focus-background [color: ('gray', 700, .5)] - The background color for a selected item in focus state in the button group.
|
|
125
|
+
/// @prop {Map} item-selected-focus-hover-background [color: ('gray', 600, .7)] - The background color for a selected item in focused & hover state in the button group.
|
|
129
126
|
/// @prop {Map} item-selected-hover-border-color [color: ('gray', 500)] - The border color for a selected item in hover state in the button group.
|
|
130
127
|
/// @prop {Map} item-selected-hover-text-color [color: ('gray', 800)] - The text color for a selected item in hover state in the button group.
|
|
131
128
|
/// @prop {Map} item-selected-hover-icon-color [color: ('gray', 800)] - The icon color for a selected item in hover state in the button group.
|
|
@@ -173,6 +170,23 @@ $material-button-group: extend(
|
|
|
173
170
|
color: (
|
|
174
171
|
'gray',
|
|
175
172
|
300,
|
|
173
|
+
0.8,
|
|
174
|
+
),
|
|
175
|
+
),
|
|
176
|
+
|
|
177
|
+
item-focused-background: (
|
|
178
|
+
color: (
|
|
179
|
+
'gray',
|
|
180
|
+
700,
|
|
181
|
+
0.4,
|
|
182
|
+
),
|
|
183
|
+
),
|
|
184
|
+
|
|
185
|
+
item-focused-hover-background: (
|
|
186
|
+
color: (
|
|
187
|
+
'gray',
|
|
188
|
+
500,
|
|
189
|
+
0.5,
|
|
176
190
|
),
|
|
177
191
|
),
|
|
178
192
|
|
|
@@ -233,6 +247,22 @@ $material-button-group: extend(
|
|
|
233
247
|
),
|
|
234
248
|
),
|
|
235
249
|
|
|
250
|
+
item-selected-focus-background: (
|
|
251
|
+
color: (
|
|
252
|
+
'gray',
|
|
253
|
+
700,
|
|
254
|
+
0.5,
|
|
255
|
+
),
|
|
256
|
+
),
|
|
257
|
+
|
|
258
|
+
item-selected-focus-hover-background: (
|
|
259
|
+
color: (
|
|
260
|
+
'gray',
|
|
261
|
+
600,
|
|
262
|
+
0.7,
|
|
263
|
+
),
|
|
264
|
+
),
|
|
265
|
+
|
|
236
266
|
disabled-text-color: (
|
|
237
267
|
color: (
|
|
238
268
|
'gray',
|
|
@@ -280,14 +310,18 @@ $material-button-group: extend(
|
|
|
280
310
|
/// @prop {Map} item-hover-border-color [color: ('gray', 600)] - The hover border color between button group items.
|
|
281
311
|
/// @prop {Map} item-focused-text-color [color: ('gray', 900)] - The focused text color for button group items.
|
|
282
312
|
/// @prop {Map} item-focused-border-color [color: ('gray', 700)] - The focused border color for an item from the button group.
|
|
313
|
+
/// @prop {Map} item-focused-background [color: ('gray', 300)] - The focused background color for button group items.
|
|
314
|
+
/// @prop {Map} item-focused-hover-background [color: ('gray', 200)] - The focused & hover background color for button group items.
|
|
283
315
|
/// @prop {Map} item-selected-background [color: ('gray', 300)] - The background color for a selected item in the button group.
|
|
284
316
|
/// @prop {Map} item-selected-text-color [color: ('gray', 900)] - The text color for a selected item in the button group.
|
|
285
317
|
/// @prop {Map} item-selected-icon-color [color: ('gray', 900)] - The icon color for a selected item in the button group.
|
|
286
318
|
/// @prop {Map} item-selected-border-color [color: ('gray', 600)] - The border color for a selected item from the button group.
|
|
287
|
-
/// @prop {Map} item-selected-hover-background [color: ('gray', 400)] - The background color for a selected item in hover
|
|
319
|
+
/// @prop {Map} item-selected-hover-background [color: ('gray', 400, .3)] - The background color for a selected item in hover state in the button group.
|
|
288
320
|
/// @prop {Map} item-selected-hover-border-color [color: ('gray', 600)] - The border color for a selected item in hover state in the button group.
|
|
289
321
|
/// @prop {Map} item-selected-hover-text-color [color: ('gray', 900)] - The text color for a selected item in hover state in the button group.
|
|
290
322
|
/// @prop {Map} item-selected-hover-icon-color [color: ('gray', 900)] - The icon color for a selected item in hover state in the button group.
|
|
323
|
+
/// @prop {Map} item-selected-focus-background [color: ('gray', 400)] - The background color for a selected item in focus state in the button group.
|
|
324
|
+
/// @prop {Map} item-selected-focus-hover-background [color: ('gray', 400, .3)] - The background color for a selected item in focused & hover state in the button group.
|
|
291
325
|
/// @prop {Map} disabled-text-color [color: ('gray', 500)] - The text/icon color for a disabled item in the button group.
|
|
292
326
|
/// @prop {Map} item-disabled-border [color: ('gray', 600)] - The border color for a disabled item in the button group.
|
|
293
327
|
/// @prop {Map} disabled-selected-text-color [color: ('gray', 500)] - The disabled text color for a selected item in the button group.
|
|
@@ -343,6 +377,20 @@ $fluent-button-group: extend(
|
|
|
343
377
|
),
|
|
344
378
|
),
|
|
345
379
|
|
|
380
|
+
item-focused-background: (
|
|
381
|
+
color: (
|
|
382
|
+
'gray',
|
|
383
|
+
300,
|
|
384
|
+
),
|
|
385
|
+
),
|
|
386
|
+
|
|
387
|
+
item-focused-hover-background: (
|
|
388
|
+
color: (
|
|
389
|
+
'gray',
|
|
390
|
+
200,
|
|
391
|
+
),
|
|
392
|
+
),
|
|
393
|
+
|
|
346
394
|
item-hover-icon-color: (
|
|
347
395
|
color: (
|
|
348
396
|
'gray',
|
|
@@ -389,6 +437,7 @@ $fluent-button-group: extend(
|
|
|
389
437
|
color: (
|
|
390
438
|
'gray',
|
|
391
439
|
400,
|
|
440
|
+
0.3,
|
|
392
441
|
),
|
|
393
442
|
),
|
|
394
443
|
|
|
@@ -413,6 +462,21 @@ $fluent-button-group: extend(
|
|
|
413
462
|
),
|
|
414
463
|
),
|
|
415
464
|
|
|
465
|
+
item-selected-focus-background: (
|
|
466
|
+
color: (
|
|
467
|
+
'gray',
|
|
468
|
+
400,
|
|
469
|
+
),
|
|
470
|
+
),
|
|
471
|
+
|
|
472
|
+
item-selected-focus-hover-background: (
|
|
473
|
+
color: (
|
|
474
|
+
'gray',
|
|
475
|
+
400,
|
|
476
|
+
0.3,
|
|
477
|
+
),
|
|
478
|
+
),
|
|
479
|
+
|
|
416
480
|
disabled-text-color: (
|
|
417
481
|
color: (
|
|
418
482
|
'gray',
|
|
@@ -460,6 +524,8 @@ $fluent-button-group: extend(
|
|
|
460
524
|
|
|
461
525
|
/// Generates a bootstrap button group schema.
|
|
462
526
|
/// @type {Map}
|
|
527
|
+
/// @prop {Map} idle-shadow-color [color: ('primary', 600, .5)] - The outline color of button group items.
|
|
528
|
+
/// @prop {Map} selected-shadow-color [color: ('primary', 600, .5)] - The outline color of selected button group items.
|
|
463
529
|
/// @prop {Map} item-background [color: ('primary', 500)] - The background color for button group items.
|
|
464
530
|
/// @prop {Map} item-text-color [contrast-color: ('primary', 600)] - The text color for button group items.
|
|
465
531
|
/// @prop {Map} item-icon-color [contrast-color: ('primary', 600)] - The icon color for button group items.
|
|
@@ -468,8 +534,9 @@ $fluent-button-group: extend(
|
|
|
468
534
|
/// @prop {Map} item-hover-text-color [contrast-color: ('primary', 600)] - The hover text color for button group items.
|
|
469
535
|
/// @prop {Map} item-hover-icon-color [contrast-color: ('primary', 600)] - The hover icon color for button group items.
|
|
470
536
|
/// @prop {Map} item-hover-border-color [color: ('primary', 500)] - The hover border color between button group items.
|
|
471
|
-
/// @prop {Map} item-focused-background [color: ('primary', 600)] - The focused background color for button group items.
|
|
472
537
|
/// @prop {Map} item-focused-text-color [contrast-color: ('primary', 600)] - The focused text color for button group items.
|
|
538
|
+
/// @prop {Map} item-focused-background [color: ('primary', 900, .6)] - The focused background color for button group items.
|
|
539
|
+
/// @prop {Map} item-focused-hover-background [color: ('primary', 600, .5)] - The focused & hover background color for button group items.
|
|
473
540
|
/// @prop {Map} item-selected-background [color: ('primary', 700)] - The background color for a selected item in the button group.
|
|
474
541
|
/// @prop {Map} item-selected-text-color [contrast-color: ('primary', 700)] - The text color for a selected item in the button group.
|
|
475
542
|
/// @prop {Map} item-selected-icon-color [contrast-color: ('primary', 700)] - The icon color for a selected item in the button group.
|
|
@@ -478,10 +545,11 @@ $fluent-button-group: extend(
|
|
|
478
545
|
/// @prop {Map} item-selected-hover-border-color [color: ('primary', 700)] - The border color for a selected item in hover state in the button group.
|
|
479
546
|
/// @prop {Map} item-selected-hover-text-color [contrast-color: ('primary', 700)] - The text color for a selected item in hover state in the button group.
|
|
480
547
|
/// @prop {Map} item-selected-hover-icon-color [contrast-color: ('primary', 700)] - The icon color for a selected item in hover state in the button group.
|
|
548
|
+
/// @prop {Map} item-selected-focus-background [color: ('primary', 900, .9)] - The background color for a selected item in focus state in the button group.
|
|
549
|
+
/// @prop {Map} item-selected-focus-hover-background [color: ('primary', 600, .5)] - The background color for a selected item in focused & hover state in the button group.
|
|
481
550
|
/// @prop {Map} disabled-background-color [color: ('primary', 100)] - The background color for a disabled item in the button group.
|
|
482
551
|
/// @prop {Map} disabled-text-color [color: ('primary', 200)] - The text/icon color for a disabled item in the button group.
|
|
483
552
|
/// @prop {Map} item-disabled-border [color: ('primary', 100)] - The border color for a disabled item in the button group.
|
|
484
|
-
/// @prop {Map} disabled-selected-background [color: ('primary', 100)] - The disabled background color for a selected item in the button group.
|
|
485
553
|
/// @prop {Map} disabled-selected-text-color [color: ('primary', 200)] - The disabled text color for a selected item in the button group.
|
|
486
554
|
/// @prop {Map} disabled-selected-icon-color [color: ('primary', 200)] - The disabled icon color for a selected item in the button group.
|
|
487
555
|
/// @prop {Map} disabled-selected-border-color [color: ('primary', 100)] - The disabled border color for a selected item from the button group.
|
|
@@ -492,6 +560,20 @@ $bootstrap-button-group: extend(
|
|
|
492
560
|
$light-button-group,
|
|
493
561
|
$bootstrap-elevation-button-group,
|
|
494
562
|
(
|
|
563
|
+
idle-shadow-color: (
|
|
564
|
+
color: (
|
|
565
|
+
'primary',
|
|
566
|
+
600,
|
|
567
|
+
0.5,
|
|
568
|
+
),
|
|
569
|
+
),
|
|
570
|
+
selected-shadow-color: (
|
|
571
|
+
color: (
|
|
572
|
+
'primary',
|
|
573
|
+
600,
|
|
574
|
+
0.5,
|
|
575
|
+
),
|
|
576
|
+
),
|
|
495
577
|
item-background: (
|
|
496
578
|
color: (
|
|
497
579
|
'primary',
|
|
@@ -556,9 +638,18 @@ $bootstrap-button-group: extend(
|
|
|
556
638
|
),
|
|
557
639
|
|
|
558
640
|
item-focused-background: (
|
|
641
|
+
color: (
|
|
642
|
+
'primary',
|
|
643
|
+
900,
|
|
644
|
+
0.6,
|
|
645
|
+
),
|
|
646
|
+
),
|
|
647
|
+
|
|
648
|
+
item-focused-hover-background: (
|
|
559
649
|
color: (
|
|
560
650
|
'primary',
|
|
561
651
|
600,
|
|
652
|
+
0.5,
|
|
562
653
|
),
|
|
563
654
|
),
|
|
564
655
|
|
|
@@ -618,6 +709,22 @@ $bootstrap-button-group: extend(
|
|
|
618
709
|
),
|
|
619
710
|
),
|
|
620
711
|
|
|
712
|
+
item-selected-focus-background: (
|
|
713
|
+
color: (
|
|
714
|
+
'primary',
|
|
715
|
+
900,
|
|
716
|
+
0.9,
|
|
717
|
+
),
|
|
718
|
+
),
|
|
719
|
+
|
|
720
|
+
item-selected-focus-hover-background: (
|
|
721
|
+
color: (
|
|
722
|
+
'primary',
|
|
723
|
+
600,
|
|
724
|
+
0.5,
|
|
725
|
+
),
|
|
726
|
+
),
|
|
727
|
+
|
|
621
728
|
disabled-background-color: (
|
|
622
729
|
color: (
|
|
623
730
|
'primary',
|
|
@@ -653,13 +760,6 @@ $bootstrap-button-group: extend(
|
|
|
653
760
|
),
|
|
654
761
|
),
|
|
655
762
|
|
|
656
|
-
disabled-selected-background: (
|
|
657
|
-
color: (
|
|
658
|
-
'primary',
|
|
659
|
-
100,
|
|
660
|
-
),
|
|
661
|
-
),
|
|
662
|
-
|
|
663
763
|
disabled-selected-border-color: (
|
|
664
764
|
color: (
|
|
665
765
|
'primary',
|
|
@@ -677,6 +777,7 @@ $bootstrap-button-group: extend(
|
|
|
677
777
|
/// @prop {Map} item-hover-icon-color [color: ('gray', 700)] - The hover icon color for button group items.
|
|
678
778
|
/// @prop {Map} item-hover-border-color [color: ('gray', 500)] - The hover border color between button group items.
|
|
679
779
|
/// @prop {Map} item-focused-background [color: ('gray', 50)] - The focused background color for button group items.
|
|
780
|
+
/// @prop {Map} item-focused-hover-background [color: ('gray', 200)] - The focused & hover background color for button group items.
|
|
680
781
|
/// @prop {Map} item-selected-background [color: ('primary', 500)] - The background color for a selected item in the button group.
|
|
681
782
|
/// @prop {Map} item-selected-text-color [contrast-color: ('primary', 500)] - The text color for a selected item in the button group.
|
|
682
783
|
/// @prop {Map} item-selected-icon-color [contrast-color: ('primary', 500, .8)] - The icon color for a selected item in the button group.
|
|
@@ -685,6 +786,8 @@ $bootstrap-button-group: extend(
|
|
|
685
786
|
/// @prop {Map} item-selected-hover-border-color [color: ('primary', 400)] - The border color for a selected item in hover state in the button group.
|
|
686
787
|
/// @prop {Map} item-selected-hover-text-color [contrast-color: ('primary', 500)] - The text color for a selected item in hover state in the button group.
|
|
687
788
|
/// @prop {Map} item-selected-hover-icon-color [contrast-color: ('primary', 500)] - The icon color for a selected item in hover state in the button group.
|
|
789
|
+
/// @prop {Map} item-selected-focus-background [color: ('primary', 500)] - The background color for a selected item in focus state in the button group.
|
|
790
|
+
/// @prop {Map} item-selected-focus-hover-background [color: ('primary', 400)] - The background color for a selected item in focused & hover state in the button group.
|
|
688
791
|
/// @prop {Map} disabled-background-color [contrast-color: ('gray', 900)] - The background color for a disabled item in the button group.
|
|
689
792
|
/// @prop {Map} disabled-text-color [color: ('gray', 900, .2)] - The text/icon color for a disabled item in the button group.
|
|
690
793
|
/// @prop {Map} item-disabled-border [color: ('gray', 300)] - The border color for a disabled item in the button group.
|
|
@@ -743,6 +846,13 @@ $indigo-button-group: extend(
|
|
|
743
846
|
),
|
|
744
847
|
),
|
|
745
848
|
|
|
849
|
+
item-focused-hover-background: (
|
|
850
|
+
color: (
|
|
851
|
+
'gray',
|
|
852
|
+
200,
|
|
853
|
+
),
|
|
854
|
+
),
|
|
855
|
+
|
|
746
856
|
item-selected-background: (
|
|
747
857
|
color: (
|
|
748
858
|
'primary',
|
|
@@ -800,6 +910,20 @@ $indigo-button-group: extend(
|
|
|
800
910
|
),
|
|
801
911
|
),
|
|
802
912
|
|
|
913
|
+
item-selected-focus-background: (
|
|
914
|
+
color: (
|
|
915
|
+
'primary',
|
|
916
|
+
500,
|
|
917
|
+
),
|
|
918
|
+
),
|
|
919
|
+
|
|
920
|
+
item-selected-focus-hover-background: (
|
|
921
|
+
color: (
|
|
922
|
+
'primary',
|
|
923
|
+
400,
|
|
924
|
+
),
|
|
925
|
+
),
|
|
926
|
+
|
|
803
927
|
disabled-background-color: (
|
|
804
928
|
contrast-color: (
|
|
805
929
|
'gray',
|