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
|
@@ -61,7 +61,7 @@ $light-base-button: (
|
|
|
61
61
|
|
|
62
62
|
/// @type {Map}
|
|
63
63
|
/// @prop {Color} background [transparent] - The background color of a flat button.
|
|
64
|
-
/// @prop {Map} focus-foreground [color: ('secondary', 500)] - The
|
|
64
|
+
/// @prop {Map} focus-foreground [color: ('secondary', 500)] - The text color of a flat button when focused with click and keyboard.
|
|
65
65
|
/// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for flat button.
|
|
66
66
|
/// @requires {Map} $light-base-button
|
|
67
67
|
/// @requires {Map} $flat-elevation-button
|
|
@@ -184,15 +184,15 @@ $material-base-button: $light-base-button;
|
|
|
184
184
|
/// @prop {Map} icon-color-hover [color: ('secondary', 500)] - The hover icon color of the button.
|
|
185
185
|
/// @prop {Map} hover-background [color: ('secondary', 500, .08)] - The hover background color of a flat button.
|
|
186
186
|
/// @prop {Map} hover-foreground [color: ('secondary', 500)] - The hover text color of a flat button.
|
|
187
|
-
/// @prop {Map} focus-background [color: ('secondary',
|
|
188
|
-
/// @prop {Map} focus-foreground [color: ('secondary', 500)] - The
|
|
189
|
-
/// @prop {Map} focus-hover-background [color: ('secondary',
|
|
187
|
+
/// @prop {Map} focus-background [color: ('secondary', 500, .32)] - The background color of a flat button when focused with click and keyboard.
|
|
188
|
+
/// @prop {Map} focus-foreground [color: ('secondary', 500)] - The text color of a flat button when focused with click and keyboard.
|
|
189
|
+
/// @prop {Map} focus-hover-background [color: ('secondary', 500, .24)] - The background color on focus hovered state of the button.
|
|
190
190
|
/// @prop {Map} focus-hover-foreground [color: ('secondary', 500)] - The text color on focus hovered state of the button.
|
|
191
|
-
/// @prop {Map} focus-visible-background ['secondary',
|
|
192
|
-
/// @prop {Map} focus-visible-foreground ['secondary', 500)] - The focus-visible text color of a flat button.
|
|
193
|
-
/// @prop {Map} active-background [color: ('secondary',
|
|
191
|
+
/// @prop {Map} focus-visible-background [color: ('secondary', 500, .16)] - The focus-visible background color of a flat button.
|
|
192
|
+
/// @prop {Map} focus-visible-foreground [color: ('secondary', 500)] - The focus-visible text color of a flat button.
|
|
193
|
+
/// @prop {Map} active-background [color: ('secondary', 500, .16)] - The active background color of a flat button.
|
|
194
194
|
/// @prop {Map} active-foreground [color: ('secondary', 500)] - The active text color of a flat button.
|
|
195
|
-
/// @prop {Color} disabled-background [transparent] - The disabled background color a flat button.
|
|
195
|
+
/// @prop {Color} disabled-background [transparent] - The disabled background color of a flat button.
|
|
196
196
|
/// @requires {Map} $material-base-button
|
|
197
197
|
/// @requires {Map} $light-flat-button
|
|
198
198
|
$material-flat-button: extend(
|
|
@@ -233,21 +233,21 @@ $material-flat-button: extend(
|
|
|
233
233
|
focus-background: (
|
|
234
234
|
color: (
|
|
235
235
|
'secondary',
|
|
236
|
-
|
|
237
|
-
0.
|
|
236
|
+
500,
|
|
237
|
+
0.32,
|
|
238
238
|
),
|
|
239
239
|
),
|
|
240
240
|
focus-visible-background: (
|
|
241
241
|
color: (
|
|
242
242
|
'secondary',
|
|
243
|
-
|
|
243
|
+
500,
|
|
244
244
|
0.16,
|
|
245
245
|
),
|
|
246
246
|
),
|
|
247
247
|
focus-hover-background: (
|
|
248
248
|
color: (
|
|
249
249
|
'secondary',
|
|
250
|
-
|
|
250
|
+
500,
|
|
251
251
|
0.24,
|
|
252
252
|
),
|
|
253
253
|
),
|
|
@@ -266,8 +266,8 @@ $material-flat-button: extend(
|
|
|
266
266
|
active-background: (
|
|
267
267
|
color: (
|
|
268
268
|
'secondary',
|
|
269
|
-
|
|
270
|
-
0.
|
|
269
|
+
500,
|
|
270
|
+
0.16,
|
|
271
271
|
),
|
|
272
272
|
),
|
|
273
273
|
active-foreground: (
|
|
@@ -327,18 +327,18 @@ $material-outlined-button: extend(
|
|
|
327
327
|
);
|
|
328
328
|
|
|
329
329
|
/// @type {Map}
|
|
330
|
-
/// @prop {Map} foreground [contrast-color: ('secondary',
|
|
331
|
-
/// @prop {Map} icon-color [color: ('secondary',
|
|
332
|
-
/// @prop {Map}
|
|
333
|
-
/// @prop {Map} hover-
|
|
334
|
-
/// @prop {Map} hover
|
|
335
|
-
/// @prop {Map} focus-background [color: ('secondary', 300)] - The
|
|
336
|
-
/// @prop {Map} focus-foreground [contrast-color: ('secondary',
|
|
330
|
+
/// @prop {Map} foreground [contrast-color: ('secondary', 400)] - The idle text color of a contained button.
|
|
331
|
+
/// @prop {Map} icon-color [contrast-color: ('secondary', 400)] - The idle icon color of the button.
|
|
332
|
+
/// @prop {Map} hover-background [color: ('secondary', 400)] - The hover background color of a contained button.
|
|
333
|
+
/// @prop {Map} hover-foreground [contrast-color: ('secondary', 400)] - The hover text color of a contained button.
|
|
334
|
+
/// @prop {Map} icon-color-hover [contrast-color: ('secondary', 400)] - The hover icon color of the button.
|
|
335
|
+
/// @prop {Map} focus-background [color: ('secondary', 300)] - The background color of a contained button when focused with click and keyboard.
|
|
336
|
+
/// @prop {Map} focus-foreground [contrast-color: ('secondary', 300)] - The text color of a contained button when focused with click and keyboard.
|
|
337
337
|
/// @prop {Map} focus-visible-background [color: ('secondary', 300)] - The focus-visible background color of a contained button.
|
|
338
|
+
/// @prop {Map} focus-visible-foreground [contrast-color: ('secondary', 300)] - The focus-visible text color of a contained button.
|
|
338
339
|
/// @prop {Map} focus-hover-background [color: ('secondary', 400)] - The background color on focus hovered state of the button.
|
|
339
|
-
/// @prop {Map} focus-hover-foreground [contrast-color: ('secondary',
|
|
340
|
-
/// @prop {Map}
|
|
341
|
-
/// @prop {Map} active-foreground [contrast-color: ('secondary', 500)] - The active text color of a contained button.
|
|
340
|
+
/// @prop {Map} focus-hover-foreground [contrast-color: ('secondary', 400)] - The text color on focus hovered state of the button.
|
|
341
|
+
/// @prop {Map} active-foreground [contrast-color: ('secondary', 300)] - The active text color of a contained button.
|
|
342
342
|
/// @prop {Map} disabled-background [color: ('gray', 100)] - The disabled background color of the button.
|
|
343
343
|
/// @requires {Map} $light-contained-button
|
|
344
344
|
/// @requires {Map} $material-base-button
|
|
@@ -349,13 +349,13 @@ $material-contained-button: extend(
|
|
|
349
349
|
foreground: (
|
|
350
350
|
contrast-color: (
|
|
351
351
|
'secondary',
|
|
352
|
-
|
|
352
|
+
400,
|
|
353
353
|
),
|
|
354
354
|
),
|
|
355
355
|
icon-color: (
|
|
356
356
|
contrast-color: (
|
|
357
357
|
'secondary',
|
|
358
|
-
|
|
358
|
+
400,
|
|
359
359
|
),
|
|
360
360
|
),
|
|
361
361
|
icon-color-hover: (
|
|
@@ -373,7 +373,7 @@ $material-contained-button: extend(
|
|
|
373
373
|
hover-foreground: (
|
|
374
374
|
contrast-color: (
|
|
375
375
|
'secondary',
|
|
376
|
-
|
|
376
|
+
400,
|
|
377
377
|
),
|
|
378
378
|
),
|
|
379
379
|
focus-background: (
|
|
@@ -385,7 +385,7 @@ $material-contained-button: extend(
|
|
|
385
385
|
focus-foreground: (
|
|
386
386
|
contrast-color: (
|
|
387
387
|
'secondary',
|
|
388
|
-
|
|
388
|
+
300,
|
|
389
389
|
),
|
|
390
390
|
),
|
|
391
391
|
focus-hover-background: (
|
|
@@ -397,7 +397,7 @@ $material-contained-button: extend(
|
|
|
397
397
|
focus-hover-foreground: (
|
|
398
398
|
contrast-color: (
|
|
399
399
|
'secondary',
|
|
400
|
-
|
|
400
|
+
400,
|
|
401
401
|
),
|
|
402
402
|
),
|
|
403
403
|
focus-visible-background: (
|
|
@@ -409,13 +409,13 @@ $material-contained-button: extend(
|
|
|
409
409
|
focus-visible-foreground: (
|
|
410
410
|
contrast-color: (
|
|
411
411
|
'secondary',
|
|
412
|
-
|
|
412
|
+
300,
|
|
413
413
|
),
|
|
414
414
|
),
|
|
415
415
|
active-foreground: (
|
|
416
416
|
contrast-color: (
|
|
417
417
|
'secondary',
|
|
418
|
-
|
|
418
|
+
300,
|
|
419
419
|
),
|
|
420
420
|
),
|
|
421
421
|
disabled-background: (
|
|
@@ -474,14 +474,17 @@ $material-button: (
|
|
|
474
474
|
/// @prop {Map} icon-color [color: ('gray', 900)] - The idle icon color of the button.
|
|
475
475
|
/// @prop {Map} icon-color-hover [color: ('gray', 900)] - The hover icon color of the button.
|
|
476
476
|
/// @prop {Map} focus-visible-border-color [color: ('gray', 700)] - The focus-visible border color of the button.
|
|
477
|
+
/// @prop {Map} hover-background [color: ('gray', 200)] - The hover background color of the button.
|
|
477
478
|
/// @prop {Map} hover-foreground [color: ('gray', 900)] - The hover text color of the button.
|
|
478
|
-
/// @prop {
|
|
479
|
-
/// @prop {Map} focus-foreground [color: ('gray', 900)] - The
|
|
479
|
+
/// @prop {Map} focus-background [color: ('gray', 300)] - The background color of the button when focused with click and keyboard.
|
|
480
|
+
/// @prop {Map} focus-foreground [color: ('gray', 900)] - The text color of the button when focused with click and keyboard.
|
|
481
|
+
/// @prop {Map} active-background [color: ('gray', 300)] - The active background color of the button.
|
|
482
|
+
/// @prop {Map} active-foreground [color: ('gray', 900)] - The active text color of the button.
|
|
480
483
|
/// @prop {Map} focus-hover-background [color: ('gray', 200)] - The background color on focus hovered state of the button.
|
|
481
484
|
/// @prop {Map} focus-hover-foreground [color: ('gray', 900)] - The focus-hover text color of the button.
|
|
482
485
|
/// @prop {Color} focus-visible-background [transparent] - The focus-visible text color of the button.
|
|
483
486
|
/// @prop {Map} disabled-background [color: ('gray', 100)] - The disabled background color of the button.
|
|
484
|
-
/// @prop {List} border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for
|
|
487
|
+
/// @prop {List} border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for the button.
|
|
485
488
|
/// @prop {List} size [(rem(24px), rem(32px), rem(38px))] - The size used for the button.
|
|
486
489
|
/// @prop {Number} default-size [2] - The default size used for the button component.
|
|
487
490
|
$fluent-base-button: extend(
|
|
@@ -512,19 +515,42 @@ $fluent-base-button: extend(
|
|
|
512
515
|
700,
|
|
513
516
|
),
|
|
514
517
|
),
|
|
518
|
+
hover-background: (
|
|
519
|
+
color: (
|
|
520
|
+
'gray',
|
|
521
|
+
200,
|
|
522
|
+
),
|
|
523
|
+
),
|
|
515
524
|
hover-foreground: (
|
|
516
525
|
color: (
|
|
517
526
|
'gray',
|
|
518
527
|
900,
|
|
519
528
|
),
|
|
520
529
|
),
|
|
521
|
-
focus-background:
|
|
530
|
+
focus-background: (
|
|
531
|
+
color: (
|
|
532
|
+
'gray',
|
|
533
|
+
300,
|
|
534
|
+
),
|
|
535
|
+
),
|
|
522
536
|
focus-foreground: (
|
|
523
537
|
color: (
|
|
524
538
|
'gray',
|
|
525
539
|
900,
|
|
526
540
|
),
|
|
527
541
|
),
|
|
542
|
+
active-background: (
|
|
543
|
+
color: (
|
|
544
|
+
'gray',
|
|
545
|
+
300,
|
|
546
|
+
),
|
|
547
|
+
),
|
|
548
|
+
active-foreground: (
|
|
549
|
+
color: (
|
|
550
|
+
'gray',
|
|
551
|
+
900,
|
|
552
|
+
),
|
|
553
|
+
),
|
|
528
554
|
focus-hover-background: (
|
|
529
555
|
color: (
|
|
530
556
|
'gray',
|
|
@@ -569,9 +595,6 @@ $fluent-base-button: extend(
|
|
|
569
595
|
);
|
|
570
596
|
|
|
571
597
|
/// @type {Map}
|
|
572
|
-
/// @prop {Map} hover-background [color: ('gray', 200)] - The hover background color of a flat button.
|
|
573
|
-
/// @prop {Color} active-background [transparent] - The active background color of a contained button.
|
|
574
|
-
/// @prop {Map} active-foreground [color: ('gray', 900)] - The active text color of a flat button.
|
|
575
598
|
/// @prop {Color} disabled-background [transparent] - The disabled background color of a flat button.
|
|
576
599
|
/// @requires {Map} $material-flat-button
|
|
577
600
|
/// @requires {Map} $light-flat-button
|
|
@@ -580,19 +603,6 @@ $fluent-flat-button: extend(
|
|
|
580
603
|
$light-flat-button,
|
|
581
604
|
$fluent-base-button,
|
|
582
605
|
(
|
|
583
|
-
hover-background: (
|
|
584
|
-
color: (
|
|
585
|
-
'gray',
|
|
586
|
-
200,
|
|
587
|
-
),
|
|
588
|
-
),
|
|
589
|
-
active-background: transparent,
|
|
590
|
-
active-foreground: (
|
|
591
|
-
color: (
|
|
592
|
-
'gray',
|
|
593
|
-
900,
|
|
594
|
-
),
|
|
595
|
-
),
|
|
596
606
|
disabled-background: transparent,
|
|
597
607
|
)
|
|
598
608
|
);
|
|
@@ -601,10 +611,7 @@ $fluent-flat-button: extend(
|
|
|
601
611
|
/// @prop {Map} border-color [color: ('gray', 600)] - The border color of an outlined button.
|
|
602
612
|
/// @prop {Map} hover-border-color [color: ('gray', 600)] - The hover border color of an outlined button.
|
|
603
613
|
/// @prop {Map} focus-border-color [color: ('gray', 600)] - The focus border color of the button.
|
|
604
|
-
/// @prop {Map} active-border-color [color: ('gray',
|
|
605
|
-
/// @prop {Map} hover-background [color: ('gray', 200)] - The hover background color of an outlined button.
|
|
606
|
-
/// @prop {Map} active-background [color: ('gray', 300)] - The active background color of an outlined button.
|
|
607
|
-
/// @prop {Map} active-foreground [contrast-color: ('gray', 300)] - The active text color of an outlined button.
|
|
614
|
+
/// @prop {Map} active-border-color [color: ('gray', 600)] - The active border color of an outlined button.
|
|
608
615
|
/// @prop {Map} disabled-border-color [color: ('gray', 300)] - The disabled focused border color of an outlined button.
|
|
609
616
|
/// @requires {Map} $light-outlined-button
|
|
610
617
|
/// @requires {Map} $fluent-base-button
|
|
@@ -624,36 +631,16 @@ $fluent-outlined-button: extend(
|
|
|
624
631
|
600,
|
|
625
632
|
),
|
|
626
633
|
),
|
|
627
|
-
|
|
628
634
|
focus-border-color: (
|
|
629
635
|
color: (
|
|
630
636
|
'gray',
|
|
631
637
|
600,
|
|
632
638
|
),
|
|
633
639
|
),
|
|
634
|
-
|
|
635
640
|
active-border-color: (
|
|
636
641
|
color: (
|
|
637
642
|
'gray',
|
|
638
|
-
|
|
639
|
-
),
|
|
640
|
-
),
|
|
641
|
-
hover-background: (
|
|
642
|
-
color: (
|
|
643
|
-
'gray',
|
|
644
|
-
200,
|
|
645
|
-
),
|
|
646
|
-
),
|
|
647
|
-
active-background: (
|
|
648
|
-
color: (
|
|
649
|
-
'gray',
|
|
650
|
-
300,
|
|
651
|
-
),
|
|
652
|
-
),
|
|
653
|
-
active-foreground: (
|
|
654
|
-
contrast-color: (
|
|
655
|
-
'gray',
|
|
656
|
-
300,
|
|
643
|
+
600,
|
|
657
644
|
),
|
|
658
645
|
),
|
|
659
646
|
disabled-border-color: (
|
|
@@ -680,8 +667,8 @@ $fluent-outlined-button: extend(
|
|
|
680
667
|
/// @prop {Map} icon-color-hover [contrast-color: ('primary', 900)] - The hover icon color of the button.
|
|
681
668
|
/// @prop {Map} hover-background [color: ('primary', 600)] - The hover background of a contained button.
|
|
682
669
|
/// @prop {Map} hover-foreground [contrast-color: ('primary', 900)] - The hover text color of a contained button.
|
|
683
|
-
/// @prop {Map} focus-background [color: ('primary',
|
|
684
|
-
/// @prop {Map} focus-foreground [contrast-color: ('primary', 900)] - The
|
|
670
|
+
/// @prop {Map} focus-background [color: ('primary', 800)] - The background color of a contained button when focused with click and keyboard.
|
|
671
|
+
/// @prop {Map} focus-foreground [contrast-color: ('primary', 900)] - The text color of a contained button when focused with click and keyboard.
|
|
685
672
|
/// @prop {Map} focus-hover-background [color: ('primary', 600)] - The background color on focus hovered state of the button.
|
|
686
673
|
/// @prop {Map} focus-hover-foreground [contrast-color: ('primary', 900)] - The text color on focus hovered state of the button.
|
|
687
674
|
/// @prop {Map} focus-visible-background [color: ('primary', 500)] - The focus-visible background color of a contained button.
|
|
@@ -744,7 +731,7 @@ $fluent-contained-button: extend(
|
|
|
744
731
|
focus-background: (
|
|
745
732
|
color: (
|
|
746
733
|
'primary',
|
|
747
|
-
|
|
734
|
+
800,
|
|
748
735
|
),
|
|
749
736
|
),
|
|
750
737
|
focus-foreground: (
|
|
@@ -846,7 +833,7 @@ $fluent-button: (
|
|
|
846
833
|
/// @prop {Map} disabled-background [color: ('primary', 50)] - The disabled background color of the button.
|
|
847
834
|
/// @prop {Map} disabled-foreground [color: ('primary', 200)] - The disabled foreground color of the button.
|
|
848
835
|
/// @prop {Map} disabled-icon-color [color: ('primary', 200)] - The disabled icon color of the button.
|
|
849
|
-
/// @prop {Map} shadow-color [color: ('primary',
|
|
836
|
+
/// @prop {Map} shadow-color [color: ('primary', 600, .5)] - The shadow color of the button.
|
|
850
837
|
/// @prop {List} size [(rem(31px), rem(38px), rem(48px))] - The size used for the button.
|
|
851
838
|
/// @prop {Number} default-size [2] - The default size used for the button component.
|
|
852
839
|
/// @requires {Map} $light-base-button
|
|
@@ -876,7 +863,7 @@ $bootstrap-base-button: extend(
|
|
|
876
863
|
shadow-color: (
|
|
877
864
|
color: (
|
|
878
865
|
'primary',
|
|
879
|
-
|
|
866
|
+
600,
|
|
880
867
|
0.5,
|
|
881
868
|
),
|
|
882
869
|
),
|
|
@@ -894,17 +881,17 @@ $bootstrap-base-button: extend(
|
|
|
894
881
|
/// @type {Map}
|
|
895
882
|
/// @prop {Map} foreground [color: ('primary', 500)] - The idle text color of a flat button.
|
|
896
883
|
/// @prop {Map} icon-color [color: ('primary', 500)] - The idle icon color of the button.
|
|
897
|
-
/// @prop {Map} icon-color-hover [color: ('primary', 800)] - The hover icon color of the button.
|
|
898
884
|
/// @prop {Color} hover-background [transparent] - The hover background color of a flat button.
|
|
899
|
-
/// @prop {Map} hover-foreground [color: ('primary',
|
|
900
|
-
/// @prop {
|
|
901
|
-
/// @prop {
|
|
885
|
+
/// @prop {Map} hover-foreground [color: ('primary', 600)] - The hover text color of a flat button.
|
|
886
|
+
/// @prop {Map} icon-color-hover [color: ('primary', 600)] - The hover icon color of the button.
|
|
887
|
+
/// @prop {Color} focus-background [transparent] - The background color of a flat button when focused with click and keyboard.
|
|
888
|
+
/// @prop {Map} focus-foreground [color: ('primary', 800)] - The text color of a flat button when focused with click and keyboard.
|
|
902
889
|
/// @prop {Color} focus-hover-background [transparent] - The background color on focus hovered state of the button.
|
|
903
|
-
/// @prop {Map} focus-hover-foreground [color: ('primary',
|
|
890
|
+
/// @prop {Map} focus-hover-foreground [color: ('primary', 600)] - The text color on focus hovered state of the button.
|
|
904
891
|
/// @prop {Color} focus-visible-background [transparent] - The focus-visible background color of a flat button.
|
|
905
892
|
/// @prop {Map} focus-visible-foreground [color: ('primary', 500)] - The focus-visible text color of a flat button.
|
|
906
893
|
/// @prop {Color} active-background [transparent] - The active background color of a flat button.
|
|
907
|
-
/// @prop {Map} active-foreground [color: ('primary',
|
|
894
|
+
/// @prop {Map} active-foreground [color: ('primary', 800)] - The active background color of a flat button.
|
|
908
895
|
/// @prop {Color} disabled-background [transparent] - The disabled background color of a flat button.
|
|
909
896
|
/// @requires {Map} $light-flat-button
|
|
910
897
|
/// @requires {Map} $bootstrap-base-button
|
|
@@ -924,31 +911,31 @@ $bootstrap-flat-button: extend(
|
|
|
924
911
|
500,
|
|
925
912
|
),
|
|
926
913
|
),
|
|
927
|
-
|
|
914
|
+
hover-background: transparent,
|
|
915
|
+
hover-foreground: (
|
|
928
916
|
color: (
|
|
929
917
|
'primary',
|
|
930
|
-
|
|
918
|
+
600,
|
|
931
919
|
),
|
|
932
920
|
),
|
|
933
|
-
hover
|
|
934
|
-
hover-foreground: (
|
|
921
|
+
icon-color-hover: (
|
|
935
922
|
color: (
|
|
936
923
|
'primary',
|
|
937
|
-
|
|
924
|
+
600,
|
|
938
925
|
),
|
|
939
926
|
),
|
|
940
927
|
focus-background: transparent,
|
|
941
928
|
focus-foreground: (
|
|
942
929
|
color: (
|
|
943
930
|
'primary',
|
|
944
|
-
|
|
931
|
+
800,
|
|
945
932
|
),
|
|
946
933
|
),
|
|
947
934
|
focus-hover-background: transparent,
|
|
948
935
|
focus-hover-foreground: (
|
|
949
936
|
color: (
|
|
950
937
|
'primary',
|
|
951
|
-
|
|
938
|
+
600,
|
|
952
939
|
),
|
|
953
940
|
),
|
|
954
941
|
focus-visible-background: transparent,
|
|
@@ -962,7 +949,7 @@ $bootstrap-flat-button: extend(
|
|
|
962
949
|
active-foreground: (
|
|
963
950
|
color: (
|
|
964
951
|
'primary',
|
|
965
|
-
|
|
952
|
+
800,
|
|
966
953
|
),
|
|
967
954
|
),
|
|
968
955
|
disabled-background: transparent,
|
|
@@ -971,23 +958,23 @@ $bootstrap-flat-button: extend(
|
|
|
971
958
|
|
|
972
959
|
/// @type {Map}
|
|
973
960
|
/// @prop {Map} foreground [color: ('primary', 500)] - The idle text color of an outlined button.
|
|
974
|
-
/// @prop {Map} icon-color [color: ('primary', 500)] - The idle icon color of
|
|
975
|
-
/// @prop {Map}
|
|
976
|
-
/// @prop {Map} hover-background [color: ('primary',
|
|
961
|
+
/// @prop {Map} icon-color [color: ('primary', 500)] - The idle icon color of an outlined button.
|
|
962
|
+
/// @prop {Map} border-color [color: ('primary', 500)] - The border color of an outlined button.
|
|
963
|
+
/// @prop {Map} hover-background [color: ('primary', 600)] - The hover background color of an outlined button.
|
|
977
964
|
/// @prop {Map} hover-foreground [contrast-color: ('primary', 600)] - The hover text color of an outlined button.
|
|
978
|
-
/// @prop {
|
|
979
|
-
/// @prop {Map}
|
|
980
|
-
/// @prop {
|
|
965
|
+
/// @prop {Map} icon-color-hover [contrast-color: ('primary', 600)] - The hover icon color of an outlined button.
|
|
966
|
+
/// @prop {Map} hover-border-color [color: ('primary', 600)] - The hover border color of an outlined button.
|
|
967
|
+
/// @prop {Map} focus-background [color: ('primary', 800)] - The background color of an outlined button when focused with click and keyboard.
|
|
968
|
+
/// @prop {Map} focus-foreground [contrast-color: ('primary', 800)] - The text color of an outlined button when focused with click and keyboard.
|
|
969
|
+
/// @prop {Map} focus-border-color [color: ('primary', 600)] - The focus border color of an outlined button.
|
|
970
|
+
/// @prop {Map} focus-hover-background [color: ('primary', 600)] - The background color on focus hovered state of the button.
|
|
981
971
|
/// @prop {Map} focus-hover-foreground [contrast-color: ('primary', 600)] - The text color on focus hovered state of the button.
|
|
982
|
-
/// @prop {
|
|
983
|
-
/// @prop {Map} focus-visible-foreground [color: ('primary',
|
|
984
|
-
/// @prop {Map} active-background [color: ('primary', 700)] - The active background color of an outlined button.
|
|
985
|
-
/// @prop {Map} active-foreground [contrast-color: ('primary', 700)] - The active text color of an outlined button.
|
|
986
|
-
/// @prop {Map} border-color [color: ('primary', 500)] - The border color of an outlined button.
|
|
987
|
-
/// @prop {Map} hover-border-color [color: ('primary', 500)] - The hover border color of an outlined button.
|
|
988
|
-
/// @prop {Map} focus-border-color [color: ('primary', 500, 0.5)] - The focus border color of an outlined button.
|
|
972
|
+
/// @prop {Map} focus-visible-background [color: ('primary', 500)] - The focus-visible background color of an outlined button.
|
|
973
|
+
/// @prop {Map} focus-visible-foreground [contrast-color: ('primary', 600)] - The focus-visible text color of an outlined button.
|
|
989
974
|
/// @prop {Map} focus-visible-border-color [color: ('primary', 500)] - The focus-visible border color of an outlined button.
|
|
990
|
-
/// @prop {Map} active-
|
|
975
|
+
/// @prop {Map} active-background [color: ('primary', 800)] - The active background color of an outlined button.
|
|
976
|
+
/// @prop {Map} active-foreground [contrast-color: ('primary', 800)] - The active text color of an outlined button.
|
|
977
|
+
/// @prop {Map} active-border-color [color: ('primary', 800)] - The active border color of an outlined button.
|
|
991
978
|
/// @prop {Map} disabled-border-color [color: ('primary', 50), lighten: 35%] - The disabled focused border color of an outlined button.
|
|
992
979
|
/// @prop {Color} disabled-background [transparent] - The disabled background color of an outlined button.
|
|
993
980
|
/// @requires {Map} $light-outlined-button
|
|
@@ -1008,16 +995,16 @@ $bootstrap-outlined-button: extend(
|
|
|
1008
995
|
500,
|
|
1009
996
|
),
|
|
1010
997
|
),
|
|
1011
|
-
|
|
1012
|
-
|
|
998
|
+
border-color: (
|
|
999
|
+
color: (
|
|
1013
1000
|
'primary',
|
|
1014
|
-
|
|
1001
|
+
500,
|
|
1015
1002
|
),
|
|
1016
1003
|
),
|
|
1017
1004
|
hover-background: (
|
|
1018
1005
|
color: (
|
|
1019
1006
|
'primary',
|
|
1020
|
-
|
|
1007
|
+
600,
|
|
1021
1008
|
),
|
|
1022
1009
|
),
|
|
1023
1010
|
hover-foreground: (
|
|
@@ -1026,72 +1013,82 @@ $bootstrap-outlined-button: extend(
|
|
|
1026
1013
|
600,
|
|
1027
1014
|
),
|
|
1028
1015
|
),
|
|
1029
|
-
|
|
1030
|
-
|
|
1016
|
+
icon-color-hover: (
|
|
1017
|
+
contrast-color: (
|
|
1018
|
+
'primary',
|
|
1019
|
+
600,
|
|
1020
|
+
),
|
|
1021
|
+
),
|
|
1022
|
+
hover-border-color: (
|
|
1031
1023
|
color: (
|
|
1032
1024
|
'primary',
|
|
1033
|
-
|
|
1025
|
+
600,
|
|
1034
1026
|
),
|
|
1035
1027
|
),
|
|
1036
|
-
focus-
|
|
1028
|
+
focus-background: (
|
|
1037
1029
|
color: (
|
|
1038
1030
|
'primary',
|
|
1039
|
-
|
|
1031
|
+
800,
|
|
1040
1032
|
),
|
|
1041
1033
|
),
|
|
1042
|
-
focus-
|
|
1034
|
+
focus-foreground: (
|
|
1043
1035
|
contrast-color: (
|
|
1044
1036
|
'primary',
|
|
1045
|
-
|
|
1037
|
+
800,
|
|
1046
1038
|
),
|
|
1047
1039
|
),
|
|
1048
|
-
focus-
|
|
1049
|
-
focus-visible-foreground: (
|
|
1040
|
+
focus-border-color: (
|
|
1050
1041
|
color: (
|
|
1051
1042
|
'primary',
|
|
1052
|
-
|
|
1043
|
+
600,
|
|
1053
1044
|
),
|
|
1054
1045
|
),
|
|
1055
|
-
|
|
1046
|
+
focus-hover-background: (
|
|
1056
1047
|
color: (
|
|
1057
1048
|
'primary',
|
|
1058
|
-
|
|
1049
|
+
600,
|
|
1059
1050
|
),
|
|
1060
1051
|
),
|
|
1061
|
-
|
|
1052
|
+
focus-hover-foreground: (
|
|
1062
1053
|
contrast-color: (
|
|
1063
1054
|
'primary',
|
|
1064
|
-
|
|
1055
|
+
600,
|
|
1065
1056
|
),
|
|
1066
1057
|
),
|
|
1067
|
-
|
|
1058
|
+
focus-visible-background: (
|
|
1068
1059
|
color: (
|
|
1069
1060
|
'primary',
|
|
1070
1061
|
500,
|
|
1071
1062
|
),
|
|
1072
1063
|
),
|
|
1073
|
-
|
|
1074
|
-
color: (
|
|
1064
|
+
focus-visible-foreground: (
|
|
1065
|
+
contrast-color: (
|
|
1075
1066
|
'primary',
|
|
1076
|
-
|
|
1067
|
+
600,
|
|
1077
1068
|
),
|
|
1078
1069
|
),
|
|
1079
|
-
focus-border-color: (
|
|
1070
|
+
focus-visible-border-color: (
|
|
1080
1071
|
color: (
|
|
1081
1072
|
'primary',
|
|
1082
1073
|
500,
|
|
1083
1074
|
),
|
|
1084
1075
|
),
|
|
1085
|
-
|
|
1076
|
+
active-background: (
|
|
1086
1077
|
color: (
|
|
1087
1078
|
'primary',
|
|
1088
|
-
|
|
1079
|
+
800,
|
|
1080
|
+
),
|
|
1081
|
+
),
|
|
1082
|
+
active-foreground: (
|
|
1083
|
+
contrast-color: (
|
|
1084
|
+
'primary',
|
|
1085
|
+
800,
|
|
1089
1086
|
),
|
|
1090
1087
|
),
|
|
1091
1088
|
active-border-color: (
|
|
1092
1089
|
color: (
|
|
1093
1090
|
'primary',
|
|
1094
|
-
|
|
1091
|
+
800,
|
|
1095
1092
|
),
|
|
1096
1093
|
),
|
|
1097
1094
|
disabled-border-color: (
|
|
@@ -1110,15 +1107,15 @@ $bootstrap-outlined-button: extend(
|
|
|
1110
1107
|
/// @prop {Map} icon-color [contrast-color: ('primary', 600)] - The idle icon color of the button.
|
|
1111
1108
|
/// @prop {Map} icon-color-hover [contrast-color: ('primary', 600)] - The hover icon color of the button.
|
|
1112
1109
|
/// @prop {Map} hover-background [color: ('primary', 600)] - The hover background color of an contained button.
|
|
1113
|
-
/// @prop {
|
|
1114
|
-
/// @prop {Map} focus-background [color: ('primary',
|
|
1115
|
-
/// @prop {
|
|
1110
|
+
/// @prop {Map} hover-foreground [contrast-color: ('primary', 600)] - The hover text color of an contained button.
|
|
1111
|
+
/// @prop {Map} focus-background [color: ('primary', 800)] - The background color of a contained button when focused with click and keyboard.
|
|
1112
|
+
/// @prop {Map} focus-hover-background [color: ('primary', 600)] - The background color on focus hovered state of the button.
|
|
1116
1113
|
/// @prop {Map} focus-hover-foreground [contrast-color: ('primary', 600)] - The text color on focus hovered state of the button.
|
|
1117
|
-
/// @prop {
|
|
1114
|
+
/// @prop {Map} focus-visible-foreground [contrast-color: ('primary', 600)] - The focus-visible text color of an contained button.
|
|
1118
1115
|
/// @prop {Map} focus-visible-background [color: ('primary', 600)] - The focus-visible background color of an contained button.
|
|
1119
|
-
/// @prop {
|
|
1120
|
-
/// @prop {Map} active-background [color: ('primary',
|
|
1121
|
-
/// @prop {Map} active-foreground [contrast-color: ('primary',
|
|
1116
|
+
/// @prop {Map} focus-foreground [contrast-color: ('primary', 800)] - The text color of a contained button when focused with click and keyboard.
|
|
1117
|
+
/// @prop {Map} active-background [color: ('primary', 800)] - The active background color of an contained button.
|
|
1118
|
+
/// @prop {Map} active-foreground [contrast-color: ('primary', 800)] - The active text color of an contained button.
|
|
1122
1119
|
/// @requires {Map} $light-contained-button
|
|
1123
1120
|
/// @requires {Map} $bootstrap-base-button
|
|
1124
1121
|
$bootstrap-contained-button: extend(
|
|
@@ -1164,7 +1161,7 @@ $bootstrap-contained-button: extend(
|
|
|
1164
1161
|
focus-background: (
|
|
1165
1162
|
color: (
|
|
1166
1163
|
'primary',
|
|
1167
|
-
|
|
1164
|
+
800,
|
|
1168
1165
|
),
|
|
1169
1166
|
),
|
|
1170
1167
|
focus-hover-background: (
|
|
@@ -1182,7 +1179,7 @@ $bootstrap-contained-button: extend(
|
|
|
1182
1179
|
focus-foreground: (
|
|
1183
1180
|
contrast-color: (
|
|
1184
1181
|
'primary',
|
|
1185
|
-
|
|
1182
|
+
800,
|
|
1186
1183
|
),
|
|
1187
1184
|
),
|
|
1188
1185
|
focus-visible-background: (
|
|
@@ -1200,13 +1197,13 @@ $bootstrap-contained-button: extend(
|
|
|
1200
1197
|
active-background: (
|
|
1201
1198
|
color: (
|
|
1202
1199
|
'primary',
|
|
1203
|
-
|
|
1200
|
+
800,
|
|
1204
1201
|
),
|
|
1205
1202
|
),
|
|
1206
1203
|
active-foreground: (
|
|
1207
1204
|
contrast-color: (
|
|
1208
1205
|
'primary',
|
|
1209
|
-
|
|
1206
|
+
800,
|
|
1210
1207
|
),
|
|
1211
1208
|
),
|
|
1212
1209
|
)
|
|
@@ -1252,11 +1249,11 @@ $bootstrap-button: (
|
|
|
1252
1249
|
/// @prop {Map} icon-color-hover [color: ('gray', 700)] - The hover icon color of the button.
|
|
1253
1250
|
/// @prop {Map} hover-background [color: ('gray', 900, 0.5)] - The hover background color of the button.
|
|
1254
1251
|
/// @prop {Map} hover-foreground [color: ('gray', 900)] - The hover text color of the button.
|
|
1255
|
-
/// @prop {
|
|
1256
|
-
/// @prop {Map} focus-foreground [color: ('gray',
|
|
1252
|
+
/// @prop {Map} focus-background [color: ('gray', 900, 0.5)] - The background color of the button when focused with click and keyboard.
|
|
1253
|
+
/// @prop {Map} focus-foreground [color: ('gray', 900)] - The text color of the button when focused with click and keyboard.
|
|
1257
1254
|
/// @prop {Map} focus-hover-background [color: ('gray', 900, 0.5)] - The background color on focus hovered state of the button.
|
|
1258
1255
|
/// @prop {Map} focus-hover-foreground [color: ('gray', 900)] - The text color on focus hovered state of the button.
|
|
1259
|
-
/// @prop {
|
|
1256
|
+
/// @prop {Map} active-background [color: ('gray', 900, 0.5)] - The active background color of the button.
|
|
1260
1257
|
/// @prop {Map} active-foreground [color: ('gray', 900)] - The active text color of the button.
|
|
1261
1258
|
/// @prop {Color} focus-visible-background [transparent] - The focus-visible background color of the button.
|
|
1262
1259
|
/// @prop {Map} focus-visible-foreground [color: ('gray', 700)] - The focus-visible text color of the button.
|
|
@@ -1304,11 +1301,17 @@ $indigo-base-button: extend(
|
|
|
1304
1301
|
900,
|
|
1305
1302
|
),
|
|
1306
1303
|
),
|
|
1307
|
-
focus-background:
|
|
1304
|
+
focus-background: (
|
|
1305
|
+
color: (
|
|
1306
|
+
'gray',
|
|
1307
|
+
900,
|
|
1308
|
+
0.05,
|
|
1309
|
+
),
|
|
1310
|
+
),
|
|
1308
1311
|
focus-foreground: (
|
|
1309
1312
|
color: (
|
|
1310
1313
|
'gray',
|
|
1311
|
-
|
|
1314
|
+
900,
|
|
1312
1315
|
),
|
|
1313
1316
|
),
|
|
1314
1317
|
focus-hover-background: (
|
|
@@ -1324,7 +1327,13 @@ $indigo-base-button: extend(
|
|
|
1324
1327
|
900,
|
|
1325
1328
|
),
|
|
1326
1329
|
),
|
|
1327
|
-
active-background:
|
|
1330
|
+
active-background: (
|
|
1331
|
+
color: (
|
|
1332
|
+
'gray',
|
|
1333
|
+
900,
|
|
1334
|
+
0.05,
|
|
1335
|
+
),
|
|
1336
|
+
),
|
|
1328
1337
|
active-foreground: (
|
|
1329
1338
|
color: (
|
|
1330
1339
|
'gray',
|
|
@@ -1443,18 +1452,18 @@ $indigo-outlined-button: extend(
|
|
|
1443
1452
|
/// @prop {Map} icon-color-hover [contrast-color: ('primary', 500)] - The hover icon color of the button.
|
|
1444
1453
|
/// @prop {Map} hover-background [color: ('primary', 400)] - The hover background color of a contained button.
|
|
1445
1454
|
/// @prop {Map} hover-foreground [contrast-color: ('primary', 500)] - The hover text color of a contained button.
|
|
1446
|
-
/// @prop {Map} focus-background [color: ('primary',
|
|
1447
|
-
/// @prop {Map} focus-foreground [contrast-color: ('primary', 500)] - The
|
|
1455
|
+
/// @prop {Map} focus-background [color: ('primary', 400)] - The background color of a contained button when focused with click and keyboard.
|
|
1456
|
+
/// @prop {Map} focus-foreground [contrast-color: ('primary', 500)] - The text color of a contained button when focused with click and keyboard.
|
|
1448
1457
|
/// @prop {Map} focus-hover-background [color: ('primary', 400)] - The background color on focus hovered state of the button.
|
|
1449
1458
|
/// @prop {Map} focus-hover-foreground [contrast-color: ('primary', 500)] - The text color on focus hovered state of the button.
|
|
1450
1459
|
/// @prop {Map} focus-visible-background [color: ('primary', 500)] - The focus-visible background color of a contained button.
|
|
1451
1460
|
/// @prop {Map} focus-visible-foreground [contrast-color: ('primary', 500)] - The focus-visible text color of a contained button.
|
|
1452
1461
|
/// @prop {Map} active-background [color: ('primary', 400)] - The active background color of a contained button.
|
|
1453
1462
|
/// @prop {Map} active-foreground [contrast-color: ('primary', 500)] - The active text color of a flat button.
|
|
1454
|
-
/// @prop {Map} shadow-color [color: ('primary', 400, 0.
|
|
1463
|
+
/// @prop {Map} shadow-color [color: ('primary', 400, 0.5)] - The shadow color of a contained button.
|
|
1455
1464
|
/// @prop {Map} disabled-background [color: ('primary', 400, 0.50)] - The disabled background color of a flat button.
|
|
1456
|
-
/// @prop {Map} disabled-foreground [contrast-color: ('primary', 500, 0.
|
|
1457
|
-
/// @prop {Map} disabled-icon-color [contrast-color: ('primary', 500, 0.
|
|
1465
|
+
/// @prop {Map} disabled-foreground [contrast-color: ('primary', 500, 0.4)] - The disabled foreground color of the button.
|
|
1466
|
+
/// @prop {Map} disabled-icon-color [contrast-color: ('primary', 500, 0.3)] - The disabled icon color of the button.
|
|
1458
1467
|
/// @requires {Map} $light-contained-button
|
|
1459
1468
|
/// @requires {Map} $indigo-base-button
|
|
1460
1469
|
$indigo-contained-button: extend(
|
|
@@ -1501,7 +1510,7 @@ $indigo-contained-button: extend(
|
|
|
1501
1510
|
focus-background: (
|
|
1502
1511
|
color: (
|
|
1503
1512
|
'primary',
|
|
1504
|
-
|
|
1513
|
+
400,
|
|
1505
1514
|
),
|
|
1506
1515
|
),
|
|
1507
1516
|
focus-foreground: (
|