igniteui-theming 1.4.11 → 1.4.13
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 +2 -5
- package/sass/themes/_mixins.scss +1 -4
- package/sass/themes/schemas/components/light/_action-strip.scss +8 -24
- 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 +7 -18
- package/sass/themes/schemas/components/light/_button.scss +34 -90
- package/sass/themes/schemas/components/light/_calendar.scss +22 -60
- package/sass/themes/schemas/components/light/_card.scss +7 -18
- package/sass/themes/schemas/components/light/_carousel.scss +6 -12
- package/sass/themes/schemas/components/light/_checkbox.scss +16 -48
- package/sass/themes/schemas/components/light/_chip.scss +6 -12
- package/sass/themes/schemas/components/light/_combo.scss +16 -10
- package/sass/themes/schemas/components/light/_dialog.scss +7 -18
- package/sass/themes/schemas/components/light/_drop-down.scss +13 -30
- package/sass/themes/schemas/components/light/_expansion-panel.scss +5 -12
- package/sass/themes/schemas/components/light/_grid.scss +9 -20
- package/sass/themes/schemas/components/light/_input-group.scss +21 -54
- package/sass/themes/schemas/components/light/_list.scss +10 -24
- package/sass/themes/schemas/components/light/_navdrawer.scss +7 -18
- package/sass/themes/schemas/components/light/_progress.scss +7 -13
- package/sass/themes/schemas/components/light/_select.scss +24 -11
- package/sass/themes/schemas/components/light/_snackbar.scss +6 -18
- package/sass/themes/schemas/components/light/_splitter.scss +2 -6
- package/sass/themes/schemas/components/light/_stepper.scss +14 -28
- package/sass/themes/schemas/components/light/_switch.scss +15 -42
- package/sass/themes/schemas/components/light/_tabs.scss +4 -12
- package/sass/themes/schemas/components/light/_time-picker.scss +15 -42
- package/sass/themes/schemas/components/light/_toast.scss +8 -24
- package/sass/themes/schemas/components/light/_tooltip.scss +7 -18
- package/sass/themes/schemas/components/light/_watermark.scss +8 -24
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
/// @prop {Number} elevation [8] - The elevation level, between 0-24, to be used for the drop-down shadow.
|
|
31
31
|
/// @prop {Number} border-width [0] - The border width used for drop-down component.
|
|
32
32
|
/// @prop {Map} border-color [color: ('gray', 300)] - The border color used for drop-down component.
|
|
33
|
-
/// @prop {
|
|
34
|
-
/// @prop {
|
|
33
|
+
/// @prop {Number} border-radius [4px] - The border radius used for drop-down component. Can be a fraction between 0 and 1, pixels, or percent.
|
|
34
|
+
/// @prop {Number} item-border-radius [0] - The border radius used for the drop-down items. Can be a fraction between 0 and 1, pixels, or percent.
|
|
35
35
|
/// @requires {Map} $default-elevation-drop-down
|
|
36
36
|
$light-drop-down: extend(
|
|
37
37
|
$default-elevation-drop-down,
|
|
@@ -133,16 +133,8 @@ $light-drop-down: extend(
|
|
|
133
133
|
),
|
|
134
134
|
),
|
|
135
135
|
border-width: 0,
|
|
136
|
-
border-radius: (
|
|
137
|
-
|
|
138
|
-
rem(0),
|
|
139
|
-
rem(20px),
|
|
140
|
-
),
|
|
141
|
-
item-border-radius: (
|
|
142
|
-
rem(0),
|
|
143
|
-
rem(0),
|
|
144
|
-
rem(20px),
|
|
145
|
-
),
|
|
136
|
+
border-radius: rem(4px),
|
|
137
|
+
item-border-radius: rem(0),
|
|
146
138
|
)
|
|
147
139
|
);
|
|
148
140
|
|
|
@@ -155,7 +147,8 @@ $light-drop-down: extend(
|
|
|
155
147
|
/// @prop {Map} selected-focus-item-background [color: ('gray', 200)] - The drop-down selected item focus background color.
|
|
156
148
|
/// @prop {Map} selected-focus-item-text-color [contrast-color: ('gray', 200)] - The drop-down selected item focus text color.
|
|
157
149
|
/// @prop {Number} elevation [4] - The elevation level, between 0-24, to be used for the drop-down shadow.
|
|
158
|
-
/// @prop {
|
|
150
|
+
/// @prop {Number} border-radius [2px] - The border radius used for drop-down component. Can be a fraction between 0 and 1, pixels, or percent.
|
|
151
|
+
/// @prop {Number} item-border-radius [0] - The border radius used for the drop-down items. Can be a fraction between 0 and 1, pixels, or percent.
|
|
159
152
|
/// @requires {Map} $light-drop-down
|
|
160
153
|
/// @requires {Map} $fluent-elevation-drop-down
|
|
161
154
|
$fluent-drop-down: extend(
|
|
@@ -198,11 +191,7 @@ $fluent-drop-down: extend(
|
|
|
198
191
|
200,
|
|
199
192
|
),
|
|
200
193
|
),
|
|
201
|
-
border-radius: (
|
|
202
|
-
rem(2px),
|
|
203
|
-
rem(0),
|
|
204
|
-
rem(20px),
|
|
205
|
-
),
|
|
194
|
+
border-radius: rem(2px),
|
|
206
195
|
)
|
|
207
196
|
);
|
|
208
197
|
|
|
@@ -219,6 +208,8 @@ $fluent-drop-down: extend(
|
|
|
219
208
|
/// @prop {Map} selected-focus-item-background [color: ('primary', 600)] - The drop-down selected item focus background color.
|
|
220
209
|
/// @prop {Map} selected-focus-item-text-color [contrast-color('primary', 600)] - The drop-down selected item focus text color.
|
|
221
210
|
/// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the drop-down shadow.
|
|
211
|
+
/// @prop {Number} border-radius [4px] - The border radius used for drop-down component. Can be a fraction between 0 and 1, pixels, or percent.
|
|
212
|
+
/// @prop {Number} item-border-radius [0] - The border radius used for the drop-down items. Can be a fraction between 0 and 1, pixels, or percent.
|
|
222
213
|
/// @prop {Number} border-width [1px] - The border width used for drop-down component.
|
|
223
214
|
/// @requires {Map} $light-drop-down
|
|
224
215
|
/// @requires {Map} $bootstrap-elevation-drop-down
|
|
@@ -309,8 +300,8 @@ $bootstrap-drop-down: extend(
|
|
|
309
300
|
/// @prop {Map} selected-focus-item-background [color: ('primary', 400)] - The drop-down selected item focus background color.
|
|
310
301
|
/// @prop {Color} selected-focus-item-text-color [#fff] - The drop-down selected item focus text color.
|
|
311
302
|
/// @prop {Number} elevation [3] - The elevation level, between 0-24, to be used for the badge shadow.
|
|
312
|
-
/// @prop {
|
|
313
|
-
/// @prop {
|
|
303
|
+
/// @prop {Number} border-radius [2px] - The border radius used for drop-down component. Can be a fraction between 0 and 1, pixels, or percent.
|
|
304
|
+
/// @prop {Number} item-border-radius [2px] - The border radius used for the drop-down items. Can be a fraction between 0 and 1, pixels, or percent.
|
|
314
305
|
/// @requires {Map} $light-drop-down
|
|
315
306
|
/// @requires {Map} $indigo-elevation-drop-down
|
|
316
307
|
$indigo-drop-down: extend(
|
|
@@ -379,15 +370,7 @@ $indigo-drop-down: extend(
|
|
|
379
370
|
400,
|
|
380
371
|
),
|
|
381
372
|
),
|
|
382
|
-
border-radius: (
|
|
383
|
-
|
|
384
|
-
rem(0),
|
|
385
|
-
rem(20px),
|
|
386
|
-
),
|
|
387
|
-
item-border-radius: (
|
|
388
|
-
rem(2px),
|
|
389
|
-
rem(0),
|
|
390
|
-
rem(20px),
|
|
391
|
-
),
|
|
373
|
+
border-radius: rem(2px),
|
|
374
|
+
item-border-radius: rem(2px),
|
|
392
375
|
)
|
|
393
376
|
);
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
/// @prop {Map} header-icon-color [color: ('gray', 800)] - The panel header icon color.
|
|
18
18
|
/// @prop {Map} body-color [color: ('gray', 900)] - The panel body text color.
|
|
19
19
|
/// @prop {Map} disabled-color [color: ('gray', 500)] - The panel disabled text color.
|
|
20
|
-
/// @prop {
|
|
20
|
+
/// @prop {Number} border-radius [0] - The border radius used for expansion-panel. Can be a fraction between 0 and 1, pixels, or percent.
|
|
21
21
|
/// @prop {Number} expanded-margin [8px] - The expansion panel margin in expanded state when positioned inside accordion.
|
|
22
22
|
$light-expansion-panel: (
|
|
23
23
|
header-background: (
|
|
@@ -75,11 +75,7 @@ $light-expansion-panel: (
|
|
|
75
75
|
),
|
|
76
76
|
|
|
77
77
|
expanded-margin: rem(8px),
|
|
78
|
-
border-radius: (
|
|
79
|
-
rem(0),
|
|
80
|
-
rem(0),
|
|
81
|
-
rem(16px),
|
|
82
|
-
),
|
|
78
|
+
border-radius: rem(0),
|
|
83
79
|
);
|
|
84
80
|
|
|
85
81
|
/// Generates a fluent expansion panel schema.
|
|
@@ -110,6 +106,7 @@ $fluent-expansion-panel: extend(
|
|
|
110
106
|
/// @type {Map}
|
|
111
107
|
/// @prop {Map} header-title-color [color: ('gray', 800)] - The panel header title text color.
|
|
112
108
|
/// @prop {Map} header-description-color [color: ('gray', 600)] - The panel header description text color.
|
|
109
|
+
/// @prop {Number} border-radius [0] - The border radius used for expansion-panel. Can be a fraction between 0 and 1, pixels, or percent.
|
|
113
110
|
/// @requires {Map} $light-expansion-panel
|
|
114
111
|
$bootstrap-expansion-panel: extend(
|
|
115
112
|
$light-expansion-panel,
|
|
@@ -136,7 +133,7 @@ $bootstrap-expansion-panel: extend(
|
|
|
136
133
|
/// @prop {Map} header-description-color [color: ('gray', 500)] - The panel header description text color.
|
|
137
134
|
/// @prop {Map} header-icon-color [color: ('gray', 600)] - The panel header icon color.
|
|
138
135
|
/// @prop {Map} disabled-color [color: ('gray', 400)] - The panel disabled text color.
|
|
139
|
-
/// @prop {
|
|
136
|
+
/// @prop {Number} border-radius [3px] - The border radius used for expansion-panel. Can be a fraction between 0 and 1, pixels, or percent.
|
|
140
137
|
/// @requires {Map} $light-expansion-panel
|
|
141
138
|
$indigo-expansion-panel: extend(
|
|
142
139
|
$light-expansion-panel,
|
|
@@ -170,10 +167,6 @@ $indigo-expansion-panel: extend(
|
|
|
170
167
|
),
|
|
171
168
|
),
|
|
172
169
|
|
|
173
|
-
border-radius: (
|
|
174
|
-
rem(3px),
|
|
175
|
-
rem(0),
|
|
176
|
-
rem(16px),
|
|
177
|
-
),
|
|
170
|
+
border-radius: rem(3px),
|
|
178
171
|
)
|
|
179
172
|
);
|
|
@@ -89,9 +89,9 @@
|
|
|
89
89
|
/// @prop {Map} root-summaries-text-color [contrast-color: ('gray', 300)] - The text color of the summary groups located the footer.
|
|
90
90
|
/// @prop {Map} row-drag-color [color: ('gray', 200))] - The color of the drag handle.
|
|
91
91
|
/// @prop {Map} row-ghost-background [color: ('primary', 50))] - The background color of the dragged row.
|
|
92
|
-
/// @prop {
|
|
93
|
-
/// @prop {
|
|
94
|
-
/// @prop {
|
|
92
|
+
/// @prop {number} grid-elevation [2] - The elevation level, between 0-24, to be used for the grid.
|
|
93
|
+
/// @prop {number} drag-elevation [5] - The elevation level, between 0-24, to be used for movable elements (ex. column header).
|
|
94
|
+
/// @prop {Number} drop-area-border-radius [16px] - The border radius used for drop-area. Can be a fraction between 0 and 1, pixels, or percent.
|
|
95
95
|
/// @requires {Map} $default-elevation-grid
|
|
96
96
|
$light-grid: extend(
|
|
97
97
|
$default-elevation-grid,
|
|
@@ -626,11 +626,7 @@ $light-grid: extend(
|
|
|
626
626
|
),
|
|
627
627
|
),
|
|
628
628
|
|
|
629
|
-
drop-area-border-radius: (
|
|
630
|
-
rem(16px),
|
|
631
|
-
rem(0),
|
|
632
|
-
rem(16px),
|
|
633
|
-
),
|
|
629
|
+
drop-area-border-radius: rem(16px),
|
|
634
630
|
)
|
|
635
631
|
);
|
|
636
632
|
|
|
@@ -657,7 +653,7 @@ $light-grid: extend(
|
|
|
657
653
|
/// @prop {Map} row-ghost-background [color: 'surface'] - The background color of the dragged row.
|
|
658
654
|
/// @prop {number} grid-elevation [0] - The elevation level, between 0-24, to be used for the grid.
|
|
659
655
|
/// @prop {number} drag-elevation [1] - The elevation level, between 0-24, to be used for movable elements (ex. column header).
|
|
660
|
-
/// @prop {
|
|
656
|
+
/// @prop {Number} drop-area-border-radius [2px] - The border radius used for drop-area. Can be a fraction between 0 and 1, pixels, or percent.
|
|
661
657
|
/// @prop {Map} filtering-background-or [color: ('error', .5)] - The background color of advanced filtering "OR" condition.
|
|
662
658
|
/// @prop {Map} filtering-background-or--focus [color: ('error')] - The background color on focus/selected of advanced filtering "OR" condition.
|
|
663
659
|
/// @prop {Map} cell-selected-within-background [color: ('gray', 300)] - The background of the selected cell inside a selected row/column.
|
|
@@ -832,11 +828,7 @@ $fluent-grid: extend(
|
|
|
832
828
|
color: 'surface',
|
|
833
829
|
),
|
|
834
830
|
|
|
835
|
-
drop-area-border-radius: (
|
|
836
|
-
rem(2px),
|
|
837
|
-
rem(0),
|
|
838
|
-
rem(16px),
|
|
839
|
-
),
|
|
831
|
+
drop-area-border-radius: rem(2px),
|
|
840
832
|
)
|
|
841
833
|
);
|
|
842
834
|
|
|
@@ -853,7 +845,7 @@ $fluent-grid: extend(
|
|
|
853
845
|
/// @prop {Map} row-selected-hover-background [color: ('primary', 100)] - The selected row hover background.
|
|
854
846
|
/// @prop {Map} pinned-border-color [color: ('gray', 400)] - The color of the pinned border.
|
|
855
847
|
/// @prop {Map} resize-line-color [color: ('primary', 500)] - The table header resize line color.
|
|
856
|
-
/// @prop {
|
|
848
|
+
/// @prop {Number} drop-area-border-radius [4px] - The border radius used for drop-area. Can be a fraction between 0 and 1, pixels, or percent.
|
|
857
849
|
/// @prop {Map} cell-selected-within-background [color: ('primary', 100)] - The background of the selected cell inside a selected row/column.
|
|
858
850
|
/// @prop {Map} cell-selected-within-text-color [contrast-color: ('primary', 100)] - The color of the selected cell inside a selected row/column.
|
|
859
851
|
/// @prop {Map} row-selected-hover-text-color [contrast-color: ('primary', 100)] - The selected row hover text color.
|
|
@@ -992,11 +984,7 @@ $bootstrap-grid: extend(
|
|
|
992
984
|
),
|
|
993
985
|
),
|
|
994
986
|
|
|
995
|
-
drop-area-border-radius: (
|
|
996
|
-
rem(4px),
|
|
997
|
-
rem(0),
|
|
998
|
-
rem(16px),
|
|
999
|
-
),
|
|
987
|
+
drop-area-border-radius: rem(4px),
|
|
1000
988
|
)
|
|
1001
989
|
);
|
|
1002
990
|
|
|
@@ -1033,6 +1021,7 @@ $bootstrap-grid: extend(
|
|
|
1033
1021
|
/// @prop {Map} drop-area-background [color: ('gray', 200)] - The drop area background color.
|
|
1034
1022
|
/// @prop {Map} drop-area-text-color [contrast-color: ('gray', 200)] - The drop area text color.
|
|
1035
1023
|
/// @prop {Map} drop-area-icon-color [contrast-color: ('gray', 200)] - The drop area icon color.
|
|
1024
|
+
/// @prop {Number} drop-area-border-radius [16px] - The border radius used for drop-area. Can be a fraction between 0 and 1, pixels, or percent.
|
|
1036
1025
|
/// @prop {Map} root-summaries-background [color: ('gray', 100)] - The background color of the summary groups located the footer.
|
|
1037
1026
|
/// @prop {Map} body-summaries-background [color: ('gray', 100)] - The background color of the summary groups located the body.
|
|
1038
1027
|
/// @prop {Map} group-row-background [color: ('gray', 100)] - The grid group row background color.
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
/// @prop {Map} error-shadow-color [color: ('error', 500, .38)] - The shadow/border color for error state for bootstrap input group.
|
|
52
52
|
/// @prop {Map} placeholder-color [color: ('gray', 700)] - The placeholder color of an input group.
|
|
53
53
|
/// @prop {Map} disabled-placeholder-color [color: ('gray', 500)] - The disabled placeholder color of an input group.
|
|
54
|
-
/// @prop {
|
|
55
|
-
/// @prop {
|
|
56
|
-
/// @prop {
|
|
54
|
+
/// @prop {Number} box-border-radius [4px 4px 0 0] - The border radius used for box input. Can be a fraction between 0 and 1, pixels, or percent.
|
|
55
|
+
/// @prop {Number} border-border-radius [4px] - The border radius used for border input. Can be a fraction between 0 and 1, pixels, or percent.
|
|
56
|
+
/// @prop {Number} search-border-radius [4px] - The border radius used for search input. Can be a fraction between 0 and 1, pixels, or percent.
|
|
57
57
|
/// @prop {Map} input-prefix-color--filled [color: ('gray', 900)] - The input prefix color in the filled state.
|
|
58
58
|
/// @prop {Color} input-prefix-background--filled [inherit] - The background color of an input prefix in the filled state.
|
|
59
59
|
/// @prop {Map} input-prefix-color--focused [color: ('gray', 900)] - The input prefix color in the focused state.
|
|
@@ -280,21 +280,9 @@ $light-input-group: extend(
|
|
|
280
280
|
100,
|
|
281
281
|
),
|
|
282
282
|
),
|
|
283
|
-
box-border-radius: (
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
rem(20px),
|
|
287
|
-
),
|
|
288
|
-
border-border-radius: (
|
|
289
|
-
rem(4px),
|
|
290
|
-
rem(0),
|
|
291
|
-
rem(20px),
|
|
292
|
-
),
|
|
293
|
-
search-border-radius: (
|
|
294
|
-
rem(4px),
|
|
295
|
-
rem(0),
|
|
296
|
-
rem(20px),
|
|
297
|
-
),
|
|
283
|
+
box-border-radius: rem(4px),
|
|
284
|
+
border-border-radius: rem(4px),
|
|
285
|
+
search-border-radius: rem(4px),
|
|
298
286
|
success-shadow-color: (
|
|
299
287
|
color: (
|
|
300
288
|
'success',
|
|
@@ -326,9 +314,9 @@ $light-input-group: extend(
|
|
|
326
314
|
/// @prop {Number} search-resting-elevation [0] - The elevation level, between 0-24, to be used for the resting state of the search input.
|
|
327
315
|
/// @prop {Number} search-hover-elevation [0] - The elevation level, between 0-24, to be used for the hover state of the search input.
|
|
328
316
|
/// @prop {Number} search-disabled-elevation [0] - The elevation level, between 0-24, to be used for the disabled state of the search input.
|
|
329
|
-
/// @prop {
|
|
330
|
-
/// @prop {
|
|
331
|
-
/// @prop {
|
|
317
|
+
/// @prop {Number} box-border-radius [2px] - The border radius used for box input. Can be a fraction between 0 and 1, pixels, or percent.
|
|
318
|
+
/// @prop {Number} border-border-radius [2px] - The border radius used for border input. Can be a fraction between 0 and 1, pixels, or percent.
|
|
319
|
+
/// @prop {Number} search-border-radius [2px] - The border radius used for search input. Can be a fraction between 0 and 1, pixels, or percent.
|
|
332
320
|
/// @prop {Map} input-prefix-color [color: ('gray', 700)] - The text color of an input prefix of type line, box and border.
|
|
333
321
|
/// @prop {Map} input-prefix-color--filled [color: ('gray', 700)] - The input prefix color in the filled state.
|
|
334
322
|
/// @prop {Map} input-prefix-color--focused [color: ('gray', 700)] - The input prefix color in the focused state.
|
|
@@ -473,21 +461,9 @@ $fluent-input-group: extend(
|
|
|
473
461
|
100,
|
|
474
462
|
),
|
|
475
463
|
),
|
|
476
|
-
box-border-radius: (
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
rem(20px),
|
|
480
|
-
),
|
|
481
|
-
border-border-radius: (
|
|
482
|
-
rem(2px),
|
|
483
|
-
rem(0),
|
|
484
|
-
rem(20px),
|
|
485
|
-
),
|
|
486
|
-
search-border-radius: (
|
|
487
|
-
rem(2px),
|
|
488
|
-
rem(0),
|
|
489
|
-
rem(20px),
|
|
490
|
-
),
|
|
464
|
+
box-border-radius: rem(2px),
|
|
465
|
+
border-border-radius: rem(2px),
|
|
466
|
+
search-border-radius: rem(2px),
|
|
491
467
|
)
|
|
492
468
|
);
|
|
493
469
|
|
|
@@ -502,6 +478,9 @@ $fluent-input-group: extend(
|
|
|
502
478
|
/// @prop {Map} warning-secondary-color [color: ('warn', 500)] - The warning color used in the warning state.
|
|
503
479
|
/// @prop {Map} error-secondary-color [color: ('error')] - The error color used in the error state.
|
|
504
480
|
/// @prop {Map} disabled-text-color [color: ('gray', 400)] - The input text color in the disabled state.
|
|
481
|
+
/// @prop {Number} box-border-radius [4px] - The border radius used for box input. Can be a fraction between 0 and 1, pixels, or percent.
|
|
482
|
+
/// @prop {Number} border-border-radius [4px] - The border radius used for border input. Can be a fraction between 0 and 1, pixels, or percent.
|
|
483
|
+
/// @prop {Number} search-border-radius [4px] - The border radius used for search input. Can be a fraction between 0 and 1, pixels, or percent.
|
|
505
484
|
/// @prop {Map} interim-bottom-line-color [color: ('primary', 500)] - The bottom line and border colors during the to-focused transition.
|
|
506
485
|
/// @prop {Map} disabled-placeholder-color [color: ('gray', 400)] - The disabled placeholder color of an input group.
|
|
507
486
|
/// @prop {Map} input-prefix-color [color: ('gray', 800)] - The input prefix color in the idle state.
|
|
@@ -665,9 +644,9 @@ $bootstrap-input-group: extend(
|
|
|
665
644
|
/// @prop {Number} search-resting-elevation [1] - The elevation level, between 0-24, to be used for the resting state of the search input.
|
|
666
645
|
/// @prop {Number} search-hover-elevation [1] - The elevation level, between 0-24, to be used for the hover state of the search input.
|
|
667
646
|
/// @prop {Number} search-disabled-elevation [1] - The elevation level, between 0-24, to be used for the disabled state of the search input.
|
|
668
|
-
/// @prop {
|
|
669
|
-
/// @prop {
|
|
670
|
-
/// @prop {
|
|
647
|
+
/// @prop {Number} box-border-radius [0] - The border radius used for box input. Can be a fraction between 0 and 1, pixels, or percent.
|
|
648
|
+
/// @prop {Number} border-border-radius [0] - The border radius used for border input. Can be a fraction between 0 and 1, pixels, or percent.
|
|
649
|
+
/// @prop {Number} search-border-radius [2px] - The border radius used for search input. Can be a fraction between 0 and 1, pixels, or percent.
|
|
671
650
|
/// @prop {Map} placeholder-color [color: ('gray', 300)] - The placeholder color of an input group.
|
|
672
651
|
/// @prop {Map} disabled-placeholder-color [color: ('gray', 300)] - The disabled placeholder color of an input group.
|
|
673
652
|
/// @prop {Map} input-prefix-color--filled [color: ('gray', 600)] - The input prefix color in the filled state.
|
|
@@ -802,21 +781,9 @@ $indigo-input-group: extend(
|
|
|
802
781
|
300,
|
|
803
782
|
),
|
|
804
783
|
),
|
|
805
|
-
box-border-radius: (
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
rem(20px),
|
|
809
|
-
),
|
|
810
|
-
border-border-radius: (
|
|
811
|
-
rem(0),
|
|
812
|
-
rem(0),
|
|
813
|
-
rem(20px),
|
|
814
|
-
),
|
|
815
|
-
search-border-radius: (
|
|
816
|
-
rem(2px),
|
|
817
|
-
rem(0),
|
|
818
|
-
rem(20px),
|
|
819
|
-
),
|
|
784
|
+
box-border-radius: rem(0),
|
|
785
|
+
border-border-radius: rem(0),
|
|
786
|
+
search-border-radius: rem(2px),
|
|
820
787
|
idle-secondary-color: (
|
|
821
788
|
color: (
|
|
822
789
|
'gray',
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
/// @prop {Color} item-thumbnail-color ["'currentColor'"] - The list item thumbnail color.
|
|
31
31
|
/// @prop {Color} item-thumbnail-color-hover ["'currentColor'"] - The list item thumbnail hover color.
|
|
32
32
|
/// @prop {Color} item-thumbnail-color-active ["'currentColor'"] - The list item thumbnail active color.
|
|
33
|
-
/// @prop {
|
|
34
|
-
/// @prop {
|
|
33
|
+
/// @prop {Number} border-radius [0] - The border radius used for list component. Can be a fraction between 0 and 1, pixels, or percent.
|
|
34
|
+
/// @prop {Number} item-border-radius [0] - The border radius used for list item. Can be a fraction between 0 and 1, pixels, or percent.
|
|
35
35
|
/// @prop {Number} border-color [transparent] - The list border color.
|
|
36
36
|
/// @prop {Color} border-width [0] - The list border width.
|
|
37
37
|
$light-list: (
|
|
@@ -117,16 +117,8 @@ $light-list: (
|
|
|
117
117
|
|
|
118
118
|
border-width: 0,
|
|
119
119
|
|
|
120
|
-
border-radius: (
|
|
121
|
-
|
|
122
|
-
rem(0),
|
|
123
|
-
rem(24px),
|
|
124
|
-
),
|
|
125
|
-
item-border-radius: (
|
|
126
|
-
rem(0),
|
|
127
|
-
rem(0),
|
|
128
|
-
rem(24px),
|
|
129
|
-
),
|
|
120
|
+
border-radius: rem(0),
|
|
121
|
+
item-border-radius: rem(0),
|
|
130
122
|
);
|
|
131
123
|
|
|
132
124
|
/// Generates a fluent list schema.
|
|
@@ -141,7 +133,8 @@ $fluent-list: $light-list;
|
|
|
141
133
|
/// @prop {Map} item-text-color [color: ('gray', 900)] - The list item text color.
|
|
142
134
|
/// @prop {Map} item-text-color-hover [color: ('gray', 900)] - The list item text color.
|
|
143
135
|
/// @prop {Map} item-text-color-active [color: ('gray', 900)] - The active list item text color.
|
|
144
|
-
/// @prop {
|
|
136
|
+
/// @prop {Number} border-radius [4px] - The border radius used for list component. Can be a fraction between 0 and 1, pixels, or percent.
|
|
137
|
+
/// @prop {Number} item-border-radius [0] - The border radius used for list item. Can be a fraction between 0 and 1, pixels, or percent.
|
|
145
138
|
/// @prop {Number} border-color [color: ('gray', 300)] - The list border color.
|
|
146
139
|
/// @prop {Color} border-width [rem(1px)] - The list border width.
|
|
147
140
|
/// @requires {Map} $light-list
|
|
@@ -191,11 +184,7 @@ $bootstrap-list: extend(
|
|
|
191
184
|
),
|
|
192
185
|
),
|
|
193
186
|
|
|
194
|
-
border-radius: (
|
|
195
|
-
rem(4px),
|
|
196
|
-
rem(0),
|
|
197
|
-
rem(24px),
|
|
198
|
-
),
|
|
187
|
+
border-radius: rem(4px),
|
|
199
188
|
)
|
|
200
189
|
);
|
|
201
190
|
|
|
@@ -216,7 +205,8 @@ $bootstrap-list: extend(
|
|
|
216
205
|
/// @prop {Color} item-thumbnail-color [color: ('gray', 600)] - The list item thumbnail color.
|
|
217
206
|
/// @prop {Color} item-thumbnail-color-hover [color: ('gray', 600)] - The list item thumbnail hover color.
|
|
218
207
|
/// @prop {Color} item-thumbnail-color-active [color: ('gray', 600)] - The list item thumbnail active color.
|
|
219
|
-
/// @prop {
|
|
208
|
+
/// @prop {Number} border-radius [0] - The border radius used for list component. Can be a fraction between 0 and 1, pixels, or percent.
|
|
209
|
+
/// @prop {Number} item-border-radius [2px] - The border radius used for list item. Can be a fraction between 0 and 1, pixels, or percent.
|
|
220
210
|
/// @requires {Map} $light-list
|
|
221
211
|
$indigo-list: extend(
|
|
222
212
|
$light-list,
|
|
@@ -326,10 +316,6 @@ $indigo-list: extend(
|
|
|
326
316
|
),
|
|
327
317
|
),
|
|
328
318
|
|
|
329
|
-
item-border-radius: (
|
|
330
|
-
rem(2px),
|
|
331
|
-
rem(0),
|
|
332
|
-
rem(24px),
|
|
333
|
-
),
|
|
319
|
+
item-border-radius: rem(2px),
|
|
334
320
|
)
|
|
335
321
|
);
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
/// @prop {Map} item-hover-text-color [color: ('gray', 900)] - The item's hover text color.
|
|
23
23
|
/// @prop {Map} item-hover-icon-color [color: ('gray', 900)] - The item's hover icon color.
|
|
24
24
|
/// @prop {Map} elevation [16] - The elevation level, between 0-24, to be used for the drawer.
|
|
25
|
-
/// @prop {
|
|
26
|
-
/// @prop {
|
|
25
|
+
/// @prop {Number} border-radius [0] - The border radius used for the navdrawer component. Can be a fraction between 0 and 1, pixels, or percent.
|
|
26
|
+
/// @prop {Number} item-border-radius [4px] - The border radius used for the navdrawer items. Can be a fraction between 0 and 1, pixels, or percent.
|
|
27
27
|
/// @requires {Map} $default-elevation-navdrawer
|
|
28
28
|
$light-navdrawer: extend(
|
|
29
29
|
$default-elevation-navdrawer,
|
|
@@ -105,16 +105,8 @@ $light-navdrawer: extend(
|
|
|
105
105
|
),
|
|
106
106
|
),
|
|
107
107
|
|
|
108
|
-
border-radius: (
|
|
109
|
-
|
|
110
|
-
rem(0),
|
|
111
|
-
rem(36px),
|
|
112
|
-
),
|
|
113
|
-
item-border-radius: (
|
|
114
|
-
rem(4px),
|
|
115
|
-
rem(0),
|
|
116
|
-
rem(24px),
|
|
117
|
-
),
|
|
108
|
+
border-radius: rem(0),
|
|
109
|
+
item-border-radius: rem(4px),
|
|
118
110
|
)
|
|
119
111
|
);
|
|
120
112
|
|
|
@@ -141,7 +133,8 @@ $bootstrap-navdrawer: $light-navdrawer;
|
|
|
141
133
|
/// @prop {Map} item-hover-text-color [contrast-color: ('gray', 700)] - The item's hover text color.
|
|
142
134
|
/// @prop {Map} item-hover-icon-color [contrast-color: ('gray', 700)] - The item's hover icon color.
|
|
143
135
|
/// @prop {Map} elevation [0] - The elevation level, between 0-24, to be used for the drawer.
|
|
144
|
-
/// @prop {
|
|
136
|
+
/// @prop {Number} border-radius [0] - The border radius used for the navdrawer component. Can be a fraction between 0 and 1, pixels, or percent.
|
|
137
|
+
/// @prop {Number} item-border-radius [24px] - The border radius used for the navdrawer items. Can be a fraction between 0 and 1, pixels, or percent.
|
|
145
138
|
/// @requires {Map} $light-navdrawer
|
|
146
139
|
/// @requires {Map} $indigo-elevation-navdrawer
|
|
147
140
|
$indigo-navdrawer: extend(
|
|
@@ -216,10 +209,6 @@ $indigo-navdrawer: extend(
|
|
|
216
209
|
),
|
|
217
210
|
),
|
|
218
211
|
|
|
219
|
-
item-border-radius: (
|
|
220
|
-
rem(24px),
|
|
221
|
-
rem(0),
|
|
222
|
-
rem(24px),
|
|
223
|
-
),
|
|
212
|
+
item-border-radius: rem(24px),
|
|
224
213
|
)
|
|
225
214
|
);
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
/// @prop {Map} fill-color-success [color: ('success')] - The track success fill color.
|
|
18
18
|
/// @prop {Map} stripes-color [color: ('gray', 50, .7)] - The track stripes color.
|
|
19
19
|
/// @prop {Map} text-color [color: ('gray', 700)] - The track value text color.
|
|
20
|
-
/// @prop {
|
|
20
|
+
/// @prop {Number} track-border-radius [0] - The border radius used for the progress bar track. Can be a fraction between 0 and 1, pixels, or percent.
|
|
21
21
|
$light-progress-linear: extend(
|
|
22
22
|
(
|
|
23
23
|
track-color: (
|
|
@@ -73,16 +73,13 @@ $light-progress-linear: extend(
|
|
|
73
73
|
),
|
|
74
74
|
),
|
|
75
75
|
|
|
76
|
-
track-border-radius: (
|
|
77
|
-
rem(0),
|
|
78
|
-
rem(0),
|
|
79
|
-
rem(8px),
|
|
80
|
-
),
|
|
76
|
+
track-border-radius: rem(0),
|
|
81
77
|
)
|
|
82
78
|
);
|
|
83
79
|
|
|
84
80
|
/// Generates a fluent progress-linear schema.
|
|
85
81
|
/// @type {Map}
|
|
82
|
+
/// @prop {Number} track-border-radius [0] - The border radius used for the progress bar track. Can be a fraction between 0 and 1, pixels, or percent.
|
|
86
83
|
/// @requires $light-progress-linear
|
|
87
84
|
$fluent-progress-linear: $light-progress-linear;
|
|
88
85
|
|
|
@@ -90,7 +87,7 @@ $fluent-progress-linear: $light-progress-linear;
|
|
|
90
87
|
/// @type {Map}
|
|
91
88
|
/// @prop {Map} track-color [color: ('gray', 200)] - The main track color.
|
|
92
89
|
/// @prop {Map} stripes-color [color: ('gray', 50, .15)] - The track stripes color.
|
|
93
|
-
/// @prop {
|
|
90
|
+
/// @prop {Number} track-border-radius [4px] - The border radius used for the progress bar track. Can be a fraction between 0 and 1, pixels, or percent.
|
|
94
91
|
/// @requires $light-progress-linear
|
|
95
92
|
$bootstrap-progress-linear: extend(
|
|
96
93
|
$light-progress-linear,
|
|
@@ -110,11 +107,7 @@ $bootstrap-progress-linear: extend(
|
|
|
110
107
|
),
|
|
111
108
|
),
|
|
112
109
|
|
|
113
|
-
track-border-radius: (
|
|
114
|
-
rem(4px),
|
|
115
|
-
rem(0),
|
|
116
|
-
rem(8px),
|
|
117
|
-
),
|
|
110
|
+
track-border-radius: rem(4px),
|
|
118
111
|
)
|
|
119
112
|
);
|
|
120
113
|
|
|
@@ -122,6 +115,7 @@ $bootstrap-progress-linear: extend(
|
|
|
122
115
|
/// @type {Map}
|
|
123
116
|
/// @prop {Map} track-color [color: ('gray', 300)] - The main track color.
|
|
124
117
|
/// @prop {Map} stripes-color [color: ('gray', 50, .45)] - The track stripes color.
|
|
118
|
+
/// @prop {Number} track-border-radius [0] - The border radius used for the progress bar track. Can be a fraction between 0 and 1, pixels, or percent.
|
|
125
119
|
/// @requires $light-progress-linear
|
|
126
120
|
$indigo-progress-linear: extend(
|
|
127
121
|
$light-progress-linear,
|
|
@@ -148,7 +142,7 @@ $indigo-progress-linear: extend(
|
|
|
148
142
|
/// @prop {Map} base-circle-color [color: ('gray', 300)] - The base circle fill color.
|
|
149
143
|
/// @prop {Map} progress-circle-color [color: ('primary', 500)] - The progress circle fill color.
|
|
150
144
|
/// @prop {Map} text-color [color: ('gray', 700)] - The value text color.
|
|
151
|
-
/// @prop {
|
|
145
|
+
/// @prop {Number} track-border-radius [0] - The border radius used for the progress bar track. Can be a fraction between 0 and 1, pixels, or percent.
|
|
152
146
|
$light-progress-circular: extend(
|
|
153
147
|
(
|
|
154
148
|
base-circle-color: (
|
|
@@ -15,17 +15,11 @@
|
|
|
15
15
|
/// @prop {Map} toggle-button-background-focus [color: ('gray', 400, .3)] - The select toggle button background color when the select is focused.
|
|
16
16
|
/// @prop {Map} toggle-button-foreground [color: ('gray', 700)] - The select toggle button foreground color.
|
|
17
17
|
/// @prop {Map} toggle-button-foreground-focus [color: ('gray', 700)] - The select toggle button foreground color when the select is focused.
|
|
18
|
-
/// @prop {Map} toggle-button-foreground-filled [color: ('gray', 900)] - The select toggle button foreground color when the select is
|
|
19
|
-
/// @prop {Map} toggle-button-background-disabled [color: ('gray',
|
|
18
|
+
/// @prop {Map} toggle-button-foreground-filled [color: ('gray', 900)] - The select toggle button foreground color when the select is focused.
|
|
19
|
+
/// @prop {Map} toggle-button-background-disabled [color: ('gray', 300] - The select toggle button background color when the select is disabled.
|
|
20
20
|
/// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 500)] - The select toggle button foreground color when the select is disabled.
|
|
21
21
|
/// @prop {Map} toggle-button-background-focus--border [color: ('gray', 300)] The select toggle button background color when the select is focused in material border and line variants.
|
|
22
22
|
$light-select: (
|
|
23
|
-
toggle-button-background-focus--border: (
|
|
24
|
-
color: (
|
|
25
|
-
'gray',
|
|
26
|
-
300,
|
|
27
|
-
),
|
|
28
|
-
),
|
|
29
23
|
toggle-button-background: (
|
|
30
24
|
color: (
|
|
31
25
|
'gray',
|
|
@@ -60,7 +54,7 @@ $light-select: (
|
|
|
60
54
|
toggle-button-background-disabled: (
|
|
61
55
|
color: (
|
|
62
56
|
'gray',
|
|
63
|
-
|
|
57
|
+
300,
|
|
64
58
|
),
|
|
65
59
|
),
|
|
66
60
|
toggle-button-foreground-disabled: (
|
|
@@ -76,6 +70,7 @@ $light-select: (
|
|
|
76
70
|
/// @prop {Map} toggle-button-background [color: ('gray', 100)] - The select toggle button background color.
|
|
77
71
|
/// @prop {Map} toggle-button-background-focus [color: ('gray', 100)] - The select toggle button background color when the select is focused.
|
|
78
72
|
/// @prop {Map} toggle-button-foreground-filled [color: ('gray', 700)] - The select toggle button foreground color when the select is focused.
|
|
73
|
+
/// @prop {Map} toggle-button-background-disabled [color: ('gray', 100] - The select toggle button background color when the select is disabled.
|
|
79
74
|
/// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 400)] - The select toggle button foreground color when the select is disabled.
|
|
80
75
|
/// @requires {Map} $light-select
|
|
81
76
|
$fluent-select: extend(
|
|
@@ -99,6 +94,12 @@ $fluent-select: extend(
|
|
|
99
94
|
700,
|
|
100
95
|
),
|
|
101
96
|
),
|
|
97
|
+
toggle-button-background-disabled: (
|
|
98
|
+
color: (
|
|
99
|
+
'gray',
|
|
100
|
+
100,
|
|
101
|
+
),
|
|
102
|
+
),
|
|
102
103
|
toggle-button-foreground-disabled: (
|
|
103
104
|
color: (
|
|
104
105
|
'gray',
|
|
@@ -110,6 +111,7 @@ $fluent-select: extend(
|
|
|
110
111
|
|
|
111
112
|
/// Generates a bootstrap select schema.
|
|
112
113
|
/// @type {Map}
|
|
114
|
+
/// @prop {Map} toggle-button-background-disabled [color: ('gray', 300] - The select toggle button background color when the select is disabled.
|
|
113
115
|
/// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 400)] - The select toggle button foreground color when the select is disabled.
|
|
114
116
|
/// @prop {Map} toggle-button-foreground [color: ('gray', 800)] - The select toggle button foreground color.
|
|
115
117
|
/// @prop {Map} toggle-button-foreground-focus [color: ('gray', 800)] - The select toggle button foreground color when the select is focused.
|
|
@@ -118,6 +120,12 @@ $fluent-select: extend(
|
|
|
118
120
|
$bootstrap-select: extend(
|
|
119
121
|
$light-select,
|
|
120
122
|
(
|
|
123
|
+
toggle-button-background-disabled: (
|
|
124
|
+
color: (
|
|
125
|
+
'gray',
|
|
126
|
+
300,
|
|
127
|
+
),
|
|
128
|
+
),
|
|
121
129
|
toggle-button-foreground-disabled: (
|
|
122
130
|
color: (
|
|
123
131
|
'gray',
|
|
@@ -147,13 +155,18 @@ $bootstrap-select: extend(
|
|
|
147
155
|
|
|
148
156
|
/// Generates an indigo select schema.
|
|
149
157
|
/// @type {Map}
|
|
150
|
-
/// @prop {
|
|
158
|
+
/// @prop {Map} toggle-button-background-disabled [color: ('gray', 100] - The select toggle button background color when the select is disabled.
|
|
151
159
|
/// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 300)] - The select toggle button foreground color when the select is disabled.
|
|
152
160
|
/// @requires {Map} $light-select
|
|
153
161
|
$indigo-select: extend(
|
|
154
162
|
$light-select,
|
|
155
163
|
(
|
|
156
|
-
toggle-button-background-disabled:
|
|
164
|
+
toggle-button-background-disabled: (
|
|
165
|
+
color: (
|
|
166
|
+
'gray',
|
|
167
|
+
100,
|
|
168
|
+
),
|
|
169
|
+
),
|
|
157
170
|
toggle-button-foreground-disabled: (
|
|
158
171
|
color: (
|
|
159
172
|
'gray',
|