igniteui-theming 4.3.0 → 4.4.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/json/typography/presets/typescales.json +1 -1
- package/package.json +1 -1
- package/sass/themes/schemas/components/dark/_button.scss +220 -139
- package/sass/themes/schemas/components/dark/_icon-button.scss +124 -23
- package/sass/themes/schemas/components/light/_button.scss +257 -322
- package/sass/themes/schemas/components/light/_icon-button.scss +131 -52
- package/sass/typography/presets/_fluent.scss +1 -1
|
@@ -17,6 +17,8 @@
|
|
|
17
17
|
/// @prop {Map} hover-foreground [color: ('gray', 900)] - The hover text color of the material icon button.
|
|
18
18
|
/// @prop {Map} focus-background [color: ('gray', 200)] - The focus background color of the material icon button.
|
|
19
19
|
/// @prop {Map} focus-foreground [color: ('gray', 900)] - The focus text color of the material icon button.
|
|
20
|
+
/// @prop {Map} focus-hover-background [color: ('gray', 200)] - The background color on focus hovered state of the icon button.
|
|
21
|
+
/// @prop {Map} focus-hover-foreground [color: ('gray', 900)] - The foreground color on focus hovered state of the icon button.
|
|
20
22
|
/// @prop {Map} active-background [color: ('gray', 200)] - The active background color of the material icon button.
|
|
21
23
|
/// @prop {Map} active-foreground [color: ('gray', 900)] - The active text color of the material icon button.
|
|
22
24
|
/// @prop {Color} border-color [transparent] - The border color of the material icon button.
|
|
@@ -54,6 +56,18 @@ $material-base-icon-button: (
|
|
|
54
56
|
900,
|
|
55
57
|
),
|
|
56
58
|
),
|
|
59
|
+
focus-hover-background: (
|
|
60
|
+
color: (
|
|
61
|
+
'gray',
|
|
62
|
+
200,
|
|
63
|
+
),
|
|
64
|
+
),
|
|
65
|
+
focus-hover-foreground: (
|
|
66
|
+
color: (
|
|
67
|
+
'gray',
|
|
68
|
+
900,
|
|
69
|
+
),
|
|
70
|
+
),
|
|
57
71
|
active-background: (
|
|
58
72
|
color: (
|
|
59
73
|
'gray',
|
|
@@ -110,6 +124,7 @@ $material-base-icon-button: (
|
|
|
110
124
|
|
|
111
125
|
/// Generates a material flat icon button schema.
|
|
112
126
|
/// @type {Map}
|
|
127
|
+
/// @prop {Map} hover-background [color: ('gray', 100)] - The hover background color of the material icon button.
|
|
113
128
|
/// @prop {Color} disabled-background [transparent] - The disabled background color the material flat icon button.
|
|
114
129
|
/// @prop {Color} disabled-border-color [transparent] - The disabled border color of the material flat icon button.
|
|
115
130
|
/// @requires {Map} $material-base-icon-button
|
|
@@ -117,6 +132,12 @@ $material-flat-icon-button: extend(
|
|
|
117
132
|
$material-base-icon-button,
|
|
118
133
|
(
|
|
119
134
|
selector: '[igxIconButton="flat"], .igx-icon-button--flat',
|
|
135
|
+
hover-background: (
|
|
136
|
+
color: (
|
|
137
|
+
'gray',
|
|
138
|
+
100,
|
|
139
|
+
),
|
|
140
|
+
),
|
|
120
141
|
disabled-background: transparent,
|
|
121
142
|
disabled-border-color: transparent,
|
|
122
143
|
)
|
|
@@ -202,17 +223,19 @@ $material-icon-button: (
|
|
|
202
223
|
/// @prop {Color} background [transparent] - The background color of the fluent icon button.
|
|
203
224
|
/// @prop {Map} foreground [color: ('primary', 500)] - The idle text color of the fluent icon button.
|
|
204
225
|
/// @prop {Map} hover-background [color: ('gray', 200)] - The hover background color of the fluent icon button.
|
|
205
|
-
/// @prop {Map} hover-foreground [color: ('primary',
|
|
206
|
-
/// @prop {
|
|
226
|
+
/// @prop {Map} hover-foreground [color: ('primary', 600)] - The hover text color of the fluent icon button.
|
|
227
|
+
/// @prop {Color} focus-background [transparent] - The focus background color of the fluent icon button.
|
|
207
228
|
/// @prop {Map} focus-foreground [color: ('primary', 500)] - The focus text color of the fluent icon button.
|
|
229
|
+
/// @prop {Map} focus-hover-background [color: ('gray', 200)] - The background color on focus hovered state of the icon button.
|
|
230
|
+
/// @prop {Map} focus-hover-foreground [color: ('primary', 600)] - The foreground color on focus hovered state of the icon button.
|
|
208
231
|
/// @prop {Map} active-background [color: ('gray', 300)] - The active background color of the fluent icon button.
|
|
209
232
|
/// @prop {Map} active-foreground [color: ('primary', 500)] - The active text color of the fluent icon button.
|
|
210
233
|
/// @prop {Color} border-color [transparent] - The border color of the fluent icon button.
|
|
211
|
-
/// @prop {Map} focus-border-color [color: ('gray',
|
|
234
|
+
/// @prop {Map} focus-border-color [color: ('gray', 700)] - The focus border color of the fluent icon button.
|
|
212
235
|
/// @prop {Map} disabled-background [color: ('gray', 100)] - The disabled background color of the fluent icon button.
|
|
213
|
-
/// @prop {Map} disabled-foreground [color: ('gray',
|
|
236
|
+
/// @prop {Map} disabled-foreground [color: ('gray', 500)] - The disabled foreground color of the fluent icon button.
|
|
214
237
|
/// @prop {Color} disabled-border-color [transparent] - The disabled border color of the fluent icon button.
|
|
215
|
-
/// @prop {List} border-radius [(rem(
|
|
238
|
+
/// @prop {List} border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for the fluent flat icon button.
|
|
216
239
|
/// @prop {List} size [(rem(24px), rem(32px), rem(38px))] - The size used for the fluent icon button.
|
|
217
240
|
/// @prop {Number} default-size [2] - The default size used for the icon button.
|
|
218
241
|
$fluent-base-icon-button: (
|
|
@@ -230,21 +253,28 @@ $fluent-base-icon-button: (
|
|
|
230
253
|
),
|
|
231
254
|
),
|
|
232
255
|
hover-foreground: (
|
|
256
|
+
color: (
|
|
257
|
+
'primary',
|
|
258
|
+
600,
|
|
259
|
+
),
|
|
260
|
+
),
|
|
261
|
+
focus-background: transparent,
|
|
262
|
+
focus-foreground: (
|
|
233
263
|
color: (
|
|
234
264
|
'primary',
|
|
235
265
|
500,
|
|
236
266
|
),
|
|
237
267
|
),
|
|
238
|
-
focus-background: (
|
|
268
|
+
focus-hover-background: (
|
|
239
269
|
color: (
|
|
240
270
|
'gray',
|
|
241
271
|
200,
|
|
242
272
|
),
|
|
243
273
|
),
|
|
244
|
-
focus-foreground: (
|
|
274
|
+
focus-hover-foreground: (
|
|
245
275
|
color: (
|
|
246
276
|
'primary',
|
|
247
|
-
|
|
277
|
+
600,
|
|
248
278
|
),
|
|
249
279
|
),
|
|
250
280
|
active-background: (
|
|
@@ -263,7 +293,7 @@ $fluent-base-icon-button: (
|
|
|
263
293
|
focus-border-color: (
|
|
264
294
|
color: (
|
|
265
295
|
'gray',
|
|
266
|
-
|
|
296
|
+
700,
|
|
267
297
|
),
|
|
268
298
|
),
|
|
269
299
|
disabled-background: (
|
|
@@ -275,13 +305,13 @@ $fluent-base-icon-button: (
|
|
|
275
305
|
disabled-foreground: (
|
|
276
306
|
color: (
|
|
277
307
|
'gray',
|
|
278
|
-
|
|
308
|
+
500,
|
|
279
309
|
),
|
|
280
310
|
),
|
|
281
311
|
disabled-border-color: transparent,
|
|
282
312
|
border-radius: (
|
|
283
313
|
border-radius: (
|
|
284
|
-
rem(
|
|
314
|
+
rem(2px),
|
|
285
315
|
rem(0),
|
|
286
316
|
rem(20px),
|
|
287
317
|
),
|
|
@@ -312,8 +342,10 @@ $fluent-flat-icon-button: extend(
|
|
|
312
342
|
/// @prop {Map} foreground [contrast-color: ('primary', 600)] - The idle text color of the fluent contained icon button.
|
|
313
343
|
/// @prop {Map} hover-background [color: ('primary', 600)] - The hover background color of the fluent contained icon button.
|
|
314
344
|
/// @prop {Map} hover-foreground [contrast-color: ('primary', 600)] - The hover text color of the fluent contained icon button.
|
|
315
|
-
/// @prop {Map} focus-background [color: ('primary',
|
|
345
|
+
/// @prop {Map} focus-background [color: ('primary', 500)] - The focus background color of the fluent contained icon button.
|
|
316
346
|
/// @prop {Map} focus-foreground [contrast-color: ('primary', 600)] - The focus text color of the fluent contained icon button.
|
|
347
|
+
/// @prop {Map} focus-hover-background [color: ('primary', 600)] - The background color on focus hovered state of the icon button.
|
|
348
|
+
/// @prop {Map} focus-hover-foreground [contrast-color: ('primary', 600)] - The foreground color on focus hovered state of the icon button.
|
|
317
349
|
/// @prop {Map} active-background [color: ('primary', 800)] - The active background color of the fluent contained icon button.
|
|
318
350
|
/// @prop {Map} active-foreground [contrast-color: ('primary', 800)] - The active text color of the fluent contained icon button.
|
|
319
351
|
/// @prop {Map} focus-border-color [contrast-color: ('primary', 600)] - The focus border color of the fluent contained icon button.
|
|
@@ -349,7 +381,7 @@ $fluent-contained-icon-button: extend(
|
|
|
349
381
|
focus-background: (
|
|
350
382
|
color: (
|
|
351
383
|
'primary',
|
|
352
|
-
|
|
384
|
+
500,
|
|
353
385
|
),
|
|
354
386
|
),
|
|
355
387
|
focus-foreground: (
|
|
@@ -358,6 +390,18 @@ $fluent-contained-icon-button: extend(
|
|
|
358
390
|
600,
|
|
359
391
|
),
|
|
360
392
|
),
|
|
393
|
+
focus-hover-background: (
|
|
394
|
+
color: (
|
|
395
|
+
'primary',
|
|
396
|
+
600,
|
|
397
|
+
),
|
|
398
|
+
),
|
|
399
|
+
focus-hover-foreground: (
|
|
400
|
+
contrast-color: (
|
|
401
|
+
'primary',
|
|
402
|
+
600,
|
|
403
|
+
),
|
|
404
|
+
),
|
|
361
405
|
active-background: (
|
|
362
406
|
color: (
|
|
363
407
|
'primary',
|
|
@@ -386,10 +430,11 @@ $fluent-contained-icon-button: extend(
|
|
|
386
430
|
/// @prop {Map} hover-foreground [color: ('gray', 900)] - The hover text color of the fluent outlined icon button.
|
|
387
431
|
/// @prop {Color} focus-background [transparent] - The focus background color of the fluent outlined icon button.
|
|
388
432
|
/// @prop {Map} focus-foreground [color: ('gray', 900)] - The focus text color of the fluent outlined icon button.
|
|
433
|
+
/// @prop {Map} focus-hover-foreground [color: ('gray', 900)] - The foreground color on focus hovered state of the icon button.
|
|
389
434
|
/// @prop {Map} active-background [color: ('gray', 200)] - The active background color of the fluent outlined icon button.
|
|
390
435
|
/// @prop {Map} active-foreground [color: ('gray', 900)] - The active text color of the fluent outlined icon button.
|
|
391
436
|
/// @prop {Map} focus-border-color [color: ('gray', 700)] - The focus border color of the fluent outlined icon button.
|
|
392
|
-
/// @prop {Map} disabled-border-color [color: ('gray',
|
|
437
|
+
/// @prop {Map} disabled-border-color [color: ('gray', 300)] - The disabled border color of the fluent outlined icon button.
|
|
393
438
|
/// @requires {Map} $fluent-base-icon-button
|
|
394
439
|
$fluent-outlined-icon-button: extend(
|
|
395
440
|
$fluent-base-icon-button,
|
|
@@ -404,7 +449,7 @@ $fluent-outlined-icon-button: extend(
|
|
|
404
449
|
border-color: (
|
|
405
450
|
color: (
|
|
406
451
|
'gray',
|
|
407
|
-
|
|
452
|
+
600,
|
|
408
453
|
),
|
|
409
454
|
),
|
|
410
455
|
hover-foreground: (
|
|
@@ -420,6 +465,12 @@ $fluent-outlined-icon-button: extend(
|
|
|
420
465
|
900,
|
|
421
466
|
),
|
|
422
467
|
),
|
|
468
|
+
focus-hover-foreground: (
|
|
469
|
+
color: (
|
|
470
|
+
'gray',
|
|
471
|
+
900,
|
|
472
|
+
),
|
|
473
|
+
),
|
|
423
474
|
active-background: (
|
|
424
475
|
color: (
|
|
425
476
|
'gray',
|
|
@@ -441,7 +492,7 @@ $fluent-outlined-icon-button: extend(
|
|
|
441
492
|
disabled-border-color: (
|
|
442
493
|
color: (
|
|
443
494
|
'gray',
|
|
444
|
-
|
|
495
|
+
300,
|
|
445
496
|
),
|
|
446
497
|
),
|
|
447
498
|
)
|
|
@@ -466,14 +517,16 @@ $fluent-icon-button: (
|
|
|
466
517
|
/// @prop {Map} foreground [color: ('primary', 500)] - The idle text color of the bootstrap icon button.
|
|
467
518
|
/// @prop {Map} hover-background [color: ('primary', 600)] - The hover background color of the bootstrap icon button.
|
|
468
519
|
/// @prop {Map} hover-foreground [contrast-color: ('primary', 600)] - The hover text color of the bootstrap icon button.
|
|
469
|
-
/// @prop {
|
|
520
|
+
/// @prop {Color} focus-background [transparent] - The focus background color of the bootstrap icon button.
|
|
470
521
|
/// @prop {Map} focus-foreground [contrast-color: ('primary', 600)] - The focus text color of the bootstrap icon button.
|
|
522
|
+
/// @prop {Map} focus-hover-background [color: ('primary', 600)] - The background color on focus hovered state of the icon button.
|
|
523
|
+
/// @prop {Map} focus-hover-foreground [contrast-color: ('primary', 600)] - The foreground color on focus hovered state of the icon button.
|
|
471
524
|
/// @prop {Map} active-background [color: ('primary', 600)] - The active background color of the bootstrap icon button.
|
|
472
525
|
/// @prop {Map} active-foreground [contrast-color: ('primary', 600)] - The active text color of the bootstrap icon button.
|
|
473
526
|
/// @prop {Color} border-color [transparent] - The border color of the bootstrap icon button.
|
|
474
|
-
/// @prop {
|
|
527
|
+
/// @prop {Map} focus-border-color [color:('primary', 200, 0.5)] - The focus border color of the bootstrap icon button.
|
|
475
528
|
/// @prop {Color} disabled-background [transparent] - The disabled background color of the bootstrap icon button.
|
|
476
|
-
/// @prop {Map} disabled-foreground [color: ('primary',
|
|
529
|
+
/// @prop {Map} disabled-foreground [color: ('primary', 200)] - The disabled foreground color of the bootstrap icon button.
|
|
477
530
|
/// @prop {Color} disabled-border-color [transparent] - The disabled border color of the bootstrap icon button.
|
|
478
531
|
/// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for the bootstrap icon button.
|
|
479
532
|
/// @prop {List} size [(rem(31px), rem(38px), rem(48px))] - The size used for the bootstrap icon button.
|
|
@@ -498,13 +551,20 @@ $bootstrap-base-icon-button: (
|
|
|
498
551
|
600,
|
|
499
552
|
),
|
|
500
553
|
),
|
|
501
|
-
focus-background:
|
|
554
|
+
focus-background: transparent,
|
|
555
|
+
focus-foreground: (
|
|
556
|
+
contrast-color: (
|
|
557
|
+
'primary',
|
|
558
|
+
600,
|
|
559
|
+
),
|
|
560
|
+
),
|
|
561
|
+
focus-hover-background: (
|
|
502
562
|
color: (
|
|
503
563
|
'primary',
|
|
504
564
|
600,
|
|
505
565
|
),
|
|
506
566
|
),
|
|
507
|
-
focus-foreground: (
|
|
567
|
+
focus-hover-foreground: (
|
|
508
568
|
contrast-color: (
|
|
509
569
|
'primary',
|
|
510
570
|
600,
|
|
@@ -523,12 +583,18 @@ $bootstrap-base-icon-button: (
|
|
|
523
583
|
),
|
|
524
584
|
),
|
|
525
585
|
border-color: transparent,
|
|
526
|
-
focus-border-color:
|
|
586
|
+
focus-border-color: (
|
|
587
|
+
color: (
|
|
588
|
+
'primary',
|
|
589
|
+
200,
|
|
590
|
+
0.5,
|
|
591
|
+
),
|
|
592
|
+
),
|
|
527
593
|
disabled-background: transparent,
|
|
528
594
|
disabled-foreground: (
|
|
529
595
|
color: (
|
|
530
596
|
'primary',
|
|
531
|
-
|
|
597
|
+
200,
|
|
532
598
|
),
|
|
533
599
|
),
|
|
534
600
|
disabled-border-color: transparent,
|
|
@@ -541,7 +607,7 @@ $bootstrap-base-icon-button: (
|
|
|
541
607
|
),
|
|
542
608
|
size: (
|
|
543
609
|
sizable: (
|
|
544
|
-
rem(
|
|
610
|
+
rem(32px),
|
|
545
611
|
rem(38px),
|
|
546
612
|
rem(48px),
|
|
547
613
|
),
|
|
@@ -554,7 +620,9 @@ $bootstrap-base-icon-button: (
|
|
|
554
620
|
/// @prop {Color} hover-background [transparent] - The hover background color of the bootstrap flat icon button.
|
|
555
621
|
/// @prop {Map} hover-foreground [color: ('primary', 800)] - The hover text color of the bootstrap flat icon button.
|
|
556
622
|
/// @prop {Map} focus-background [color: ('gray', 100)] - The focus background color of the bootstrap flat icon button.
|
|
557
|
-
/// @prop {Map} focus-foreground [color: ('primary',
|
|
623
|
+
/// @prop {Map} focus-foreground [color: ('primary', 500)] - The focus text color of the bootstrap flat icon button.
|
|
624
|
+
/// @prop {Color} focus-hover-background [transparent] - The background color on focus hovered state of the icon button.
|
|
625
|
+
/// @prop {Map} focus-hover-foreground [color: ('primary', 800)] - The foreground color on focus hovered state of the icon button.
|
|
558
626
|
/// @prop {Map} active-background [color: ('gray', 100)] - The active background color of the bootstrap flat icon button.
|
|
559
627
|
/// @prop {Map} active-foreground [color: ('primary', 600)] - The active text color of the bootstrap flat icon button.
|
|
560
628
|
/// @requires {Map} $bootstrap-base-icon-button
|
|
@@ -569,16 +637,17 @@ $bootstrap-flat-icon-button: extend(
|
|
|
569
637
|
800,
|
|
570
638
|
),
|
|
571
639
|
),
|
|
572
|
-
focus-
|
|
640
|
+
focus-foreground: (
|
|
573
641
|
color: (
|
|
574
|
-
'
|
|
575
|
-
|
|
642
|
+
'primary',
|
|
643
|
+
500,
|
|
576
644
|
),
|
|
577
645
|
),
|
|
578
|
-
focus-
|
|
646
|
+
focus-hover-background: transparent,
|
|
647
|
+
focus-hover-foreground: (
|
|
579
648
|
color: (
|
|
580
649
|
'primary',
|
|
581
|
-
|
|
650
|
+
800,
|
|
582
651
|
),
|
|
583
652
|
),
|
|
584
653
|
active-background: (
|
|
@@ -600,9 +669,10 @@ $bootstrap-flat-icon-button: extend(
|
|
|
600
669
|
/// @type {Map}
|
|
601
670
|
/// @prop {Map} background [color: ('primary', 500)] - The background color of the bootstrap contained icon button.
|
|
602
671
|
/// @prop {Map} foreground [contrast-color: ('primary', 600)] - The idle text color of the bootstrap contained icon button.
|
|
672
|
+
/// @prop {Map} focus-background [color: ('primary', 500)] - The focus background color of the bootstrap flat icon button.
|
|
603
673
|
/// @prop {Map} focus-border-color [color: ('primary', 200, .5)] - The focus border color of the bootstrap contained icon button.
|
|
604
|
-
/// @prop {Map} disabled-background [color: ('primary',
|
|
605
|
-
/// @prop {Map} disabled-foreground [color: ('primary',
|
|
674
|
+
/// @prop {Map} disabled-background [color: ('primary', 50)] - The disabled background color of the bootstrap contained icon button.
|
|
675
|
+
/// @prop {Map} disabled-foreground [color: ('primary', 200)] - The disabled foreground color of the bootstrap contained icon button.
|
|
606
676
|
/// @requires {Map} $bootstrap-base-icon-button
|
|
607
677
|
$bootstrap-contained-icon-button: extend(
|
|
608
678
|
$bootstrap-base-icon-button,
|
|
@@ -620,23 +690,22 @@ $bootstrap-contained-icon-button: extend(
|
|
|
620
690
|
600,
|
|
621
691
|
),
|
|
622
692
|
),
|
|
623
|
-
focus-
|
|
693
|
+
focus-background: (
|
|
624
694
|
color: (
|
|
625
695
|
'primary',
|
|
626
|
-
|
|
627
|
-
0.5,
|
|
696
|
+
500,
|
|
628
697
|
),
|
|
629
698
|
),
|
|
630
699
|
disabled-background: (
|
|
631
700
|
color: (
|
|
632
701
|
'primary',
|
|
633
|
-
|
|
702
|
+
50,
|
|
634
703
|
),
|
|
635
704
|
),
|
|
636
705
|
disabled-foreground: (
|
|
637
706
|
color: (
|
|
638
707
|
'primary',
|
|
639
|
-
|
|
708
|
+
200,
|
|
640
709
|
),
|
|
641
710
|
),
|
|
642
711
|
)
|
|
@@ -647,7 +716,7 @@ $bootstrap-contained-icon-button: extend(
|
|
|
647
716
|
/// @prop {Map} border-color [color: ('primary', 500)] - The border color of the bootstrap outlined icon button.
|
|
648
717
|
/// @prop {Map} focus-background [color: ('primary', 600)] - The focus background color of the bootstrap outlined icon button.
|
|
649
718
|
/// @prop {Map} hover-foreground [contrast-color: ('primary', 600)] - The hover text color of the bootstrap outlined icon button.
|
|
650
|
-
/// @prop {Map} focus-foreground [contrast-color: ('primary',
|
|
719
|
+
/// @prop {Map} focus-foreground [contrast-color: ('primary', 500)] - The focus text color of the bootstrap outlined icon button.
|
|
651
720
|
/// @prop {Map} focus-border-color [color: ('primary', 200, .5)] - The focus border color of the bootstrap outlined icon button.
|
|
652
721
|
/// @prop {Map} disabled-border-color [color: ('primary', 100)] - The disabled border color of the bootstrap outlined icon button.
|
|
653
722
|
/// @requires {Map} $bootstrap-base-icon-button
|
|
@@ -668,22 +737,9 @@ $bootstrap-outlined-icon-button: extend(
|
|
|
668
737
|
),
|
|
669
738
|
),
|
|
670
739
|
focus-foreground: (
|
|
671
|
-
contrast-color: (
|
|
672
|
-
'primary',
|
|
673
|
-
600,
|
|
674
|
-
),
|
|
675
|
-
),
|
|
676
|
-
focus-background: (
|
|
677
740
|
color: (
|
|
678
741
|
'primary',
|
|
679
|
-
|
|
680
|
-
),
|
|
681
|
-
),
|
|
682
|
-
focus-border-color: (
|
|
683
|
-
color: (
|
|
684
|
-
'primary',
|
|
685
|
-
200,
|
|
686
|
-
0.5,
|
|
742
|
+
500,
|
|
687
743
|
),
|
|
688
744
|
),
|
|
689
745
|
disabled-border-color: (
|
|
@@ -716,6 +772,8 @@ $bootstrap-icon-button: (
|
|
|
716
772
|
/// @prop {Map} hover-foreground [color: ('gray', 900)] - The hover text color of the indigo icon button.
|
|
717
773
|
/// @prop {Color} focus-background [transparent] - The focus background color of the indigo icon button.
|
|
718
774
|
/// @prop {Map} focus-foreground [color: ('gray', 900)] - The focus text color of the indigo icon button.
|
|
775
|
+
/// @prop {Color} focus-hover-background [transparent] - The background color on focus hovered state of the icon button.
|
|
776
|
+
/// @prop {Map} focus-hover-foreground [color: ('gray', 900)] - The foreground color on focus hovered state of the icon button.
|
|
719
777
|
/// @prop {Color} active-background [transparent] - The active background color of the indigo icon button.
|
|
720
778
|
/// @prop {Map} active-foreground [color: ('gray', 900)] - The active text color of the indigo icon button.
|
|
721
779
|
/// @prop {Color} border-color [transparent] - The border color of the indigo icon button.
|
|
@@ -748,6 +806,13 @@ $indigo-base-icon-button: (
|
|
|
748
806
|
900,
|
|
749
807
|
),
|
|
750
808
|
),
|
|
809
|
+
focus-hover-background: transparent,
|
|
810
|
+
focus-hover-foreground: (
|
|
811
|
+
color: (
|
|
812
|
+
'gray',
|
|
813
|
+
900,
|
|
814
|
+
),
|
|
815
|
+
),
|
|
751
816
|
active-background: transparent,
|
|
752
817
|
active-foreground: (
|
|
753
818
|
color: (
|
|
@@ -812,6 +877,8 @@ $indigo-flat-icon-button: extend(
|
|
|
812
877
|
/// @prop {Map} hover-foreground [contrast-color: ('primary', 600)] - The hover text color of the indigo contained icon button.
|
|
813
878
|
/// @prop {Map} focus-background [color: ('primary', 400)] - The focus background color of the indigo contained icon button.
|
|
814
879
|
/// @prop {Map} focus-foreground [contrast-color: ('primary', 600)] - The focus background color of the indigo contained icon button.
|
|
880
|
+
/// @prop {Map} focus-hover-background [color: ('primary', 400)] - The background color on focus hovered state of the icon button.
|
|
881
|
+
/// @prop {Map} focus-hover-foreground [color: ('primary', 800)] - The foreground color on focus hovered state of the icon button.
|
|
815
882
|
/// @prop {Map} active-background [color: ('primary', 400)] - The active background color of the indigo contained icon button.
|
|
816
883
|
/// @prop {Map} active-foreground [contrast-color: ('primary', 600)] - The active background color of the indigo contained icon button.
|
|
817
884
|
/// @prop {Map} focus-border-color [color: ('primary', 200, .5)] - The focus border color of the indigo contained icon button.
|
|
@@ -857,6 +924,18 @@ $indigo-contained-icon-button: extend(
|
|
|
857
924
|
600,
|
|
858
925
|
),
|
|
859
926
|
),
|
|
927
|
+
focus-hover-background: (
|
|
928
|
+
color: (
|
|
929
|
+
'primary',
|
|
930
|
+
400,
|
|
931
|
+
),
|
|
932
|
+
),
|
|
933
|
+
focus-hover-foreground: (
|
|
934
|
+
color: (
|
|
935
|
+
'primary',
|
|
936
|
+
600,
|
|
937
|
+
),
|
|
938
|
+
),
|
|
860
939
|
active-background: (
|
|
861
940
|
color: (
|
|
862
941
|
'primary',
|