@khanacademy/wonder-blocks-icon-button 5.1.4 → 5.1.6
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/CHANGELOG.md +14 -0
- package/dist/components/icon-button-core.d.ts +10 -0
- package/dist/es/index.js +26 -1
- package/dist/index.js +26 -1
- package/package.json +2 -2
- package/src/__tests__/__snapshots__/custom-snapshot.test.tsx.snap +864 -0
- package/src/components/__tests__/icon-button.test.tsx +106 -1
- package/src/components/icon-button-core.tsx +22 -0
- package/src/components/icon-button.tsx +21 -0
- package/tsconfig-build.tsbuildinfo +1 -1
|
@@ -48,6 +48,15 @@ exports[`IconButtonCore kind:primary color:default size:medium light:false disab
|
|
|
48
48
|
"outline": "none",
|
|
49
49
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
50
50
|
},
|
|
51
|
+
"@media not (hover: hover)": {
|
|
52
|
+
":hover": {
|
|
53
|
+
"backgroundColor": "transparent",
|
|
54
|
+
"borderRadius": 4,
|
|
55
|
+
"boxShadow": "none",
|
|
56
|
+
"color": "#1865f2",
|
|
57
|
+
"outline": "none",
|
|
58
|
+
},
|
|
59
|
+
},
|
|
51
60
|
"alignItems": "center",
|
|
52
61
|
"background": "none",
|
|
53
62
|
"border": "none",
|
|
@@ -151,6 +160,15 @@ exports[`IconButtonCore kind:primary color:default size:medium light:false focus
|
|
|
151
160
|
"outlineStyle": "solid",
|
|
152
161
|
"outlineWidth": 2,
|
|
153
162
|
},
|
|
163
|
+
"@media not (hover: hover)": {
|
|
164
|
+
":hover": {
|
|
165
|
+
"backgroundColor": "transparent",
|
|
166
|
+
"borderRadius": 4,
|
|
167
|
+
"boxShadow": "none",
|
|
168
|
+
"color": "#1865f2",
|
|
169
|
+
"outline": "none",
|
|
170
|
+
},
|
|
171
|
+
},
|
|
154
172
|
"alignItems": "center",
|
|
155
173
|
"background": "none",
|
|
156
174
|
"border": "none",
|
|
@@ -254,6 +272,15 @@ exports[`IconButtonCore kind:primary color:default size:medium light:false hover
|
|
|
254
272
|
"outlineStyle": "solid",
|
|
255
273
|
"outlineWidth": 2,
|
|
256
274
|
},
|
|
275
|
+
"@media not (hover: hover)": {
|
|
276
|
+
":hover": {
|
|
277
|
+
"backgroundColor": "transparent",
|
|
278
|
+
"borderRadius": 4,
|
|
279
|
+
"boxShadow": "none",
|
|
280
|
+
"color": "#1865f2",
|
|
281
|
+
"outline": "none",
|
|
282
|
+
},
|
|
283
|
+
},
|
|
257
284
|
"alignItems": "center",
|
|
258
285
|
"background": "none",
|
|
259
286
|
"border": "none",
|
|
@@ -357,6 +384,15 @@ exports[`IconButtonCore kind:primary color:default size:medium light:false press
|
|
|
357
384
|
"outlineStyle": "solid",
|
|
358
385
|
"outlineWidth": 2,
|
|
359
386
|
},
|
|
387
|
+
"@media not (hover: hover)": {
|
|
388
|
+
":hover": {
|
|
389
|
+
"backgroundColor": "transparent",
|
|
390
|
+
"borderRadius": 4,
|
|
391
|
+
"boxShadow": "none",
|
|
392
|
+
"color": "#1865f2",
|
|
393
|
+
"outline": "none",
|
|
394
|
+
},
|
|
395
|
+
},
|
|
360
396
|
"alignItems": "center",
|
|
361
397
|
"background": "none",
|
|
362
398
|
"border": "none",
|
|
@@ -449,6 +485,15 @@ exports[`IconButtonCore kind:primary color:default size:medium light:true disabl
|
|
|
449
485
|
"outline": "none",
|
|
450
486
|
"outlineColor": "rgba(255,255,255,0.50)",
|
|
451
487
|
},
|
|
488
|
+
"@media not (hover: hover)": {
|
|
489
|
+
":hover": {
|
|
490
|
+
"backgroundColor": "transparent",
|
|
491
|
+
"borderRadius": 4,
|
|
492
|
+
"boxShadow": "none",
|
|
493
|
+
"color": "#ffffff",
|
|
494
|
+
"outline": "none",
|
|
495
|
+
},
|
|
496
|
+
},
|
|
452
497
|
"alignItems": "center",
|
|
453
498
|
"background": "none",
|
|
454
499
|
"border": "none",
|
|
@@ -552,6 +597,15 @@ exports[`IconButtonCore kind:primary color:default size:medium light:true focuse
|
|
|
552
597
|
"outlineStyle": "solid",
|
|
553
598
|
"outlineWidth": 2,
|
|
554
599
|
},
|
|
600
|
+
"@media not (hover: hover)": {
|
|
601
|
+
":hover": {
|
|
602
|
+
"backgroundColor": "transparent",
|
|
603
|
+
"borderRadius": 4,
|
|
604
|
+
"boxShadow": "none",
|
|
605
|
+
"color": "#ffffff",
|
|
606
|
+
"outline": "none",
|
|
607
|
+
},
|
|
608
|
+
},
|
|
555
609
|
"alignItems": "center",
|
|
556
610
|
"background": "none",
|
|
557
611
|
"border": "none",
|
|
@@ -655,6 +709,15 @@ exports[`IconButtonCore kind:primary color:default size:medium light:true hovere
|
|
|
655
709
|
"outlineStyle": "solid",
|
|
656
710
|
"outlineWidth": 2,
|
|
657
711
|
},
|
|
712
|
+
"@media not (hover: hover)": {
|
|
713
|
+
":hover": {
|
|
714
|
+
"backgroundColor": "transparent",
|
|
715
|
+
"borderRadius": 4,
|
|
716
|
+
"boxShadow": "none",
|
|
717
|
+
"color": "#ffffff",
|
|
718
|
+
"outline": "none",
|
|
719
|
+
},
|
|
720
|
+
},
|
|
658
721
|
"alignItems": "center",
|
|
659
722
|
"background": "none",
|
|
660
723
|
"border": "none",
|
|
@@ -758,6 +821,15 @@ exports[`IconButtonCore kind:primary color:default size:medium light:true presse
|
|
|
758
821
|
"outlineStyle": "solid",
|
|
759
822
|
"outlineWidth": 2,
|
|
760
823
|
},
|
|
824
|
+
"@media not (hover: hover)": {
|
|
825
|
+
":hover": {
|
|
826
|
+
"backgroundColor": "transparent",
|
|
827
|
+
"borderRadius": 4,
|
|
828
|
+
"boxShadow": "none",
|
|
829
|
+
"color": "#ffffff",
|
|
830
|
+
"outline": "none",
|
|
831
|
+
},
|
|
832
|
+
},
|
|
761
833
|
"alignItems": "center",
|
|
762
834
|
"background": "none",
|
|
763
835
|
"border": "none",
|
|
@@ -850,6 +922,15 @@ exports[`IconButtonCore kind:primary color:default size:small light:false disabl
|
|
|
850
922
|
"outline": "none",
|
|
851
923
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
852
924
|
},
|
|
925
|
+
"@media not (hover: hover)": {
|
|
926
|
+
":hover": {
|
|
927
|
+
"backgroundColor": "transparent",
|
|
928
|
+
"borderRadius": 4,
|
|
929
|
+
"boxShadow": "none",
|
|
930
|
+
"color": "#1865f2",
|
|
931
|
+
"outline": "none",
|
|
932
|
+
},
|
|
933
|
+
},
|
|
853
934
|
"alignItems": "center",
|
|
854
935
|
"background": "none",
|
|
855
936
|
"border": "none",
|
|
@@ -953,6 +1034,15 @@ exports[`IconButtonCore kind:primary color:default size:small light:false focuse
|
|
|
953
1034
|
"outlineStyle": "solid",
|
|
954
1035
|
"outlineWidth": 2,
|
|
955
1036
|
},
|
|
1037
|
+
"@media not (hover: hover)": {
|
|
1038
|
+
":hover": {
|
|
1039
|
+
"backgroundColor": "transparent",
|
|
1040
|
+
"borderRadius": 4,
|
|
1041
|
+
"boxShadow": "none",
|
|
1042
|
+
"color": "#1865f2",
|
|
1043
|
+
"outline": "none",
|
|
1044
|
+
},
|
|
1045
|
+
},
|
|
956
1046
|
"alignItems": "center",
|
|
957
1047
|
"background": "none",
|
|
958
1048
|
"border": "none",
|
|
@@ -1056,6 +1146,15 @@ exports[`IconButtonCore kind:primary color:default size:small light:false hovere
|
|
|
1056
1146
|
"outlineStyle": "solid",
|
|
1057
1147
|
"outlineWidth": 2,
|
|
1058
1148
|
},
|
|
1149
|
+
"@media not (hover: hover)": {
|
|
1150
|
+
":hover": {
|
|
1151
|
+
"backgroundColor": "transparent",
|
|
1152
|
+
"borderRadius": 4,
|
|
1153
|
+
"boxShadow": "none",
|
|
1154
|
+
"color": "#1865f2",
|
|
1155
|
+
"outline": "none",
|
|
1156
|
+
},
|
|
1157
|
+
},
|
|
1059
1158
|
"alignItems": "center",
|
|
1060
1159
|
"background": "none",
|
|
1061
1160
|
"border": "none",
|
|
@@ -1159,6 +1258,15 @@ exports[`IconButtonCore kind:primary color:default size:small light:false presse
|
|
|
1159
1258
|
"outlineStyle": "solid",
|
|
1160
1259
|
"outlineWidth": 2,
|
|
1161
1260
|
},
|
|
1261
|
+
"@media not (hover: hover)": {
|
|
1262
|
+
":hover": {
|
|
1263
|
+
"backgroundColor": "transparent",
|
|
1264
|
+
"borderRadius": 4,
|
|
1265
|
+
"boxShadow": "none",
|
|
1266
|
+
"color": "#1865f2",
|
|
1267
|
+
"outline": "none",
|
|
1268
|
+
},
|
|
1269
|
+
},
|
|
1162
1270
|
"alignItems": "center",
|
|
1163
1271
|
"background": "none",
|
|
1164
1272
|
"border": "none",
|
|
@@ -1251,6 +1359,15 @@ exports[`IconButtonCore kind:primary color:default size:small light:true disable
|
|
|
1251
1359
|
"outline": "none",
|
|
1252
1360
|
"outlineColor": "rgba(255,255,255,0.50)",
|
|
1253
1361
|
},
|
|
1362
|
+
"@media not (hover: hover)": {
|
|
1363
|
+
":hover": {
|
|
1364
|
+
"backgroundColor": "transparent",
|
|
1365
|
+
"borderRadius": 4,
|
|
1366
|
+
"boxShadow": "none",
|
|
1367
|
+
"color": "#ffffff",
|
|
1368
|
+
"outline": "none",
|
|
1369
|
+
},
|
|
1370
|
+
},
|
|
1254
1371
|
"alignItems": "center",
|
|
1255
1372
|
"background": "none",
|
|
1256
1373
|
"border": "none",
|
|
@@ -1354,6 +1471,15 @@ exports[`IconButtonCore kind:primary color:default size:small light:true focused
|
|
|
1354
1471
|
"outlineStyle": "solid",
|
|
1355
1472
|
"outlineWidth": 2,
|
|
1356
1473
|
},
|
|
1474
|
+
"@media not (hover: hover)": {
|
|
1475
|
+
":hover": {
|
|
1476
|
+
"backgroundColor": "transparent",
|
|
1477
|
+
"borderRadius": 4,
|
|
1478
|
+
"boxShadow": "none",
|
|
1479
|
+
"color": "#ffffff",
|
|
1480
|
+
"outline": "none",
|
|
1481
|
+
},
|
|
1482
|
+
},
|
|
1357
1483
|
"alignItems": "center",
|
|
1358
1484
|
"background": "none",
|
|
1359
1485
|
"border": "none",
|
|
@@ -1457,6 +1583,15 @@ exports[`IconButtonCore kind:primary color:default size:small light:true hovered
|
|
|
1457
1583
|
"outlineStyle": "solid",
|
|
1458
1584
|
"outlineWidth": 2,
|
|
1459
1585
|
},
|
|
1586
|
+
"@media not (hover: hover)": {
|
|
1587
|
+
":hover": {
|
|
1588
|
+
"backgroundColor": "transparent",
|
|
1589
|
+
"borderRadius": 4,
|
|
1590
|
+
"boxShadow": "none",
|
|
1591
|
+
"color": "#ffffff",
|
|
1592
|
+
"outline": "none",
|
|
1593
|
+
},
|
|
1594
|
+
},
|
|
1460
1595
|
"alignItems": "center",
|
|
1461
1596
|
"background": "none",
|
|
1462
1597
|
"border": "none",
|
|
@@ -1560,6 +1695,15 @@ exports[`IconButtonCore kind:primary color:default size:small light:true pressed
|
|
|
1560
1695
|
"outlineStyle": "solid",
|
|
1561
1696
|
"outlineWidth": 2,
|
|
1562
1697
|
},
|
|
1698
|
+
"@media not (hover: hover)": {
|
|
1699
|
+
":hover": {
|
|
1700
|
+
"backgroundColor": "transparent",
|
|
1701
|
+
"borderRadius": 4,
|
|
1702
|
+
"boxShadow": "none",
|
|
1703
|
+
"color": "#ffffff",
|
|
1704
|
+
"outline": "none",
|
|
1705
|
+
},
|
|
1706
|
+
},
|
|
1563
1707
|
"alignItems": "center",
|
|
1564
1708
|
"background": "none",
|
|
1565
1709
|
"border": "none",
|
|
@@ -1652,6 +1796,15 @@ exports[`IconButtonCore kind:primary color:default size:xsmall light:false disab
|
|
|
1652
1796
|
"outline": "none",
|
|
1653
1797
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
1654
1798
|
},
|
|
1799
|
+
"@media not (hover: hover)": {
|
|
1800
|
+
":hover": {
|
|
1801
|
+
"backgroundColor": "transparent",
|
|
1802
|
+
"borderRadius": 4,
|
|
1803
|
+
"boxShadow": "none",
|
|
1804
|
+
"color": "#1865f2",
|
|
1805
|
+
"outline": "none",
|
|
1806
|
+
},
|
|
1807
|
+
},
|
|
1655
1808
|
"alignItems": "center",
|
|
1656
1809
|
"background": "none",
|
|
1657
1810
|
"border": "none",
|
|
@@ -1755,6 +1908,15 @@ exports[`IconButtonCore kind:primary color:default size:xsmall light:false focus
|
|
|
1755
1908
|
"outlineStyle": "solid",
|
|
1756
1909
|
"outlineWidth": 2,
|
|
1757
1910
|
},
|
|
1911
|
+
"@media not (hover: hover)": {
|
|
1912
|
+
":hover": {
|
|
1913
|
+
"backgroundColor": "transparent",
|
|
1914
|
+
"borderRadius": 4,
|
|
1915
|
+
"boxShadow": "none",
|
|
1916
|
+
"color": "#1865f2",
|
|
1917
|
+
"outline": "none",
|
|
1918
|
+
},
|
|
1919
|
+
},
|
|
1758
1920
|
"alignItems": "center",
|
|
1759
1921
|
"background": "none",
|
|
1760
1922
|
"border": "none",
|
|
@@ -1858,6 +2020,15 @@ exports[`IconButtonCore kind:primary color:default size:xsmall light:false hover
|
|
|
1858
2020
|
"outlineStyle": "solid",
|
|
1859
2021
|
"outlineWidth": 2,
|
|
1860
2022
|
},
|
|
2023
|
+
"@media not (hover: hover)": {
|
|
2024
|
+
":hover": {
|
|
2025
|
+
"backgroundColor": "transparent",
|
|
2026
|
+
"borderRadius": 4,
|
|
2027
|
+
"boxShadow": "none",
|
|
2028
|
+
"color": "#1865f2",
|
|
2029
|
+
"outline": "none",
|
|
2030
|
+
},
|
|
2031
|
+
},
|
|
1861
2032
|
"alignItems": "center",
|
|
1862
2033
|
"background": "none",
|
|
1863
2034
|
"border": "none",
|
|
@@ -1961,6 +2132,15 @@ exports[`IconButtonCore kind:primary color:default size:xsmall light:false press
|
|
|
1961
2132
|
"outlineStyle": "solid",
|
|
1962
2133
|
"outlineWidth": 2,
|
|
1963
2134
|
},
|
|
2135
|
+
"@media not (hover: hover)": {
|
|
2136
|
+
":hover": {
|
|
2137
|
+
"backgroundColor": "transparent",
|
|
2138
|
+
"borderRadius": 4,
|
|
2139
|
+
"boxShadow": "none",
|
|
2140
|
+
"color": "#1865f2",
|
|
2141
|
+
"outline": "none",
|
|
2142
|
+
},
|
|
2143
|
+
},
|
|
1964
2144
|
"alignItems": "center",
|
|
1965
2145
|
"background": "none",
|
|
1966
2146
|
"border": "none",
|
|
@@ -2053,6 +2233,15 @@ exports[`IconButtonCore kind:primary color:default size:xsmall light:true disabl
|
|
|
2053
2233
|
"outline": "none",
|
|
2054
2234
|
"outlineColor": "rgba(255,255,255,0.50)",
|
|
2055
2235
|
},
|
|
2236
|
+
"@media not (hover: hover)": {
|
|
2237
|
+
":hover": {
|
|
2238
|
+
"backgroundColor": "transparent",
|
|
2239
|
+
"borderRadius": 4,
|
|
2240
|
+
"boxShadow": "none",
|
|
2241
|
+
"color": "#ffffff",
|
|
2242
|
+
"outline": "none",
|
|
2243
|
+
},
|
|
2244
|
+
},
|
|
2056
2245
|
"alignItems": "center",
|
|
2057
2246
|
"background": "none",
|
|
2058
2247
|
"border": "none",
|
|
@@ -2156,6 +2345,15 @@ exports[`IconButtonCore kind:primary color:default size:xsmall light:true focuse
|
|
|
2156
2345
|
"outlineStyle": "solid",
|
|
2157
2346
|
"outlineWidth": 2,
|
|
2158
2347
|
},
|
|
2348
|
+
"@media not (hover: hover)": {
|
|
2349
|
+
":hover": {
|
|
2350
|
+
"backgroundColor": "transparent",
|
|
2351
|
+
"borderRadius": 4,
|
|
2352
|
+
"boxShadow": "none",
|
|
2353
|
+
"color": "#ffffff",
|
|
2354
|
+
"outline": "none",
|
|
2355
|
+
},
|
|
2356
|
+
},
|
|
2159
2357
|
"alignItems": "center",
|
|
2160
2358
|
"background": "none",
|
|
2161
2359
|
"border": "none",
|
|
@@ -2259,6 +2457,15 @@ exports[`IconButtonCore kind:primary color:default size:xsmall light:true hovere
|
|
|
2259
2457
|
"outlineStyle": "solid",
|
|
2260
2458
|
"outlineWidth": 2,
|
|
2261
2459
|
},
|
|
2460
|
+
"@media not (hover: hover)": {
|
|
2461
|
+
":hover": {
|
|
2462
|
+
"backgroundColor": "transparent",
|
|
2463
|
+
"borderRadius": 4,
|
|
2464
|
+
"boxShadow": "none",
|
|
2465
|
+
"color": "#ffffff",
|
|
2466
|
+
"outline": "none",
|
|
2467
|
+
},
|
|
2468
|
+
},
|
|
2262
2469
|
"alignItems": "center",
|
|
2263
2470
|
"background": "none",
|
|
2264
2471
|
"border": "none",
|
|
@@ -2362,6 +2569,15 @@ exports[`IconButtonCore kind:primary color:default size:xsmall light:true presse
|
|
|
2362
2569
|
"outlineStyle": "solid",
|
|
2363
2570
|
"outlineWidth": 2,
|
|
2364
2571
|
},
|
|
2572
|
+
"@media not (hover: hover)": {
|
|
2573
|
+
":hover": {
|
|
2574
|
+
"backgroundColor": "transparent",
|
|
2575
|
+
"borderRadius": 4,
|
|
2576
|
+
"boxShadow": "none",
|
|
2577
|
+
"color": "#ffffff",
|
|
2578
|
+
"outline": "none",
|
|
2579
|
+
},
|
|
2580
|
+
},
|
|
2365
2581
|
"alignItems": "center",
|
|
2366
2582
|
"background": "none",
|
|
2367
2583
|
"border": "none",
|
|
@@ -2454,6 +2670,15 @@ exports[`IconButtonCore kind:primary color:destructive size:medium light:false d
|
|
|
2454
2670
|
"outline": "none",
|
|
2455
2671
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
2456
2672
|
},
|
|
2673
|
+
"@media not (hover: hover)": {
|
|
2674
|
+
":hover": {
|
|
2675
|
+
"backgroundColor": "transparent",
|
|
2676
|
+
"borderRadius": 4,
|
|
2677
|
+
"boxShadow": "none",
|
|
2678
|
+
"color": "#d92916",
|
|
2679
|
+
"outline": "none",
|
|
2680
|
+
},
|
|
2681
|
+
},
|
|
2457
2682
|
"alignItems": "center",
|
|
2458
2683
|
"background": "none",
|
|
2459
2684
|
"border": "none",
|
|
@@ -2557,6 +2782,15 @@ exports[`IconButtonCore kind:primary color:destructive size:medium light:false f
|
|
|
2557
2782
|
"outlineStyle": "solid",
|
|
2558
2783
|
"outlineWidth": 2,
|
|
2559
2784
|
},
|
|
2785
|
+
"@media not (hover: hover)": {
|
|
2786
|
+
":hover": {
|
|
2787
|
+
"backgroundColor": "transparent",
|
|
2788
|
+
"borderRadius": 4,
|
|
2789
|
+
"boxShadow": "none",
|
|
2790
|
+
"color": "#d92916",
|
|
2791
|
+
"outline": "none",
|
|
2792
|
+
},
|
|
2793
|
+
},
|
|
2560
2794
|
"alignItems": "center",
|
|
2561
2795
|
"background": "none",
|
|
2562
2796
|
"border": "none",
|
|
@@ -2660,6 +2894,15 @@ exports[`IconButtonCore kind:primary color:destructive size:medium light:false h
|
|
|
2660
2894
|
"outlineStyle": "solid",
|
|
2661
2895
|
"outlineWidth": 2,
|
|
2662
2896
|
},
|
|
2897
|
+
"@media not (hover: hover)": {
|
|
2898
|
+
":hover": {
|
|
2899
|
+
"backgroundColor": "transparent",
|
|
2900
|
+
"borderRadius": 4,
|
|
2901
|
+
"boxShadow": "none",
|
|
2902
|
+
"color": "#d92916",
|
|
2903
|
+
"outline": "none",
|
|
2904
|
+
},
|
|
2905
|
+
},
|
|
2663
2906
|
"alignItems": "center",
|
|
2664
2907
|
"background": "none",
|
|
2665
2908
|
"border": "none",
|
|
@@ -2763,6 +3006,15 @@ exports[`IconButtonCore kind:primary color:destructive size:medium light:false p
|
|
|
2763
3006
|
"outlineStyle": "solid",
|
|
2764
3007
|
"outlineWidth": 2,
|
|
2765
3008
|
},
|
|
3009
|
+
"@media not (hover: hover)": {
|
|
3010
|
+
":hover": {
|
|
3011
|
+
"backgroundColor": "transparent",
|
|
3012
|
+
"borderRadius": 4,
|
|
3013
|
+
"boxShadow": "none",
|
|
3014
|
+
"color": "#d92916",
|
|
3015
|
+
"outline": "none",
|
|
3016
|
+
},
|
|
3017
|
+
},
|
|
2766
3018
|
"alignItems": "center",
|
|
2767
3019
|
"background": "none",
|
|
2768
3020
|
"border": "none",
|
|
@@ -2855,6 +3107,15 @@ exports[`IconButtonCore kind:primary color:destructive size:medium light:true di
|
|
|
2855
3107
|
"outline": "none",
|
|
2856
3108
|
"outlineColor": "rgba(255,255,255,0.50)",
|
|
2857
3109
|
},
|
|
3110
|
+
"@media not (hover: hover)": {
|
|
3111
|
+
":hover": {
|
|
3112
|
+
"backgroundColor": "transparent",
|
|
3113
|
+
"borderRadius": 4,
|
|
3114
|
+
"boxShadow": "none",
|
|
3115
|
+
"color": "#ffffff",
|
|
3116
|
+
"outline": "none",
|
|
3117
|
+
},
|
|
3118
|
+
},
|
|
2858
3119
|
"alignItems": "center",
|
|
2859
3120
|
"background": "none",
|
|
2860
3121
|
"border": "none",
|
|
@@ -2958,6 +3219,15 @@ exports[`IconButtonCore kind:primary color:destructive size:medium light:true fo
|
|
|
2958
3219
|
"outlineStyle": "solid",
|
|
2959
3220
|
"outlineWidth": 2,
|
|
2960
3221
|
},
|
|
3222
|
+
"@media not (hover: hover)": {
|
|
3223
|
+
":hover": {
|
|
3224
|
+
"backgroundColor": "transparent",
|
|
3225
|
+
"borderRadius": 4,
|
|
3226
|
+
"boxShadow": "none",
|
|
3227
|
+
"color": "#ffffff",
|
|
3228
|
+
"outline": "none",
|
|
3229
|
+
},
|
|
3230
|
+
},
|
|
2961
3231
|
"alignItems": "center",
|
|
2962
3232
|
"background": "none",
|
|
2963
3233
|
"border": "none",
|
|
@@ -3061,6 +3331,15 @@ exports[`IconButtonCore kind:primary color:destructive size:medium light:true ho
|
|
|
3061
3331
|
"outlineStyle": "solid",
|
|
3062
3332
|
"outlineWidth": 2,
|
|
3063
3333
|
},
|
|
3334
|
+
"@media not (hover: hover)": {
|
|
3335
|
+
":hover": {
|
|
3336
|
+
"backgroundColor": "transparent",
|
|
3337
|
+
"borderRadius": 4,
|
|
3338
|
+
"boxShadow": "none",
|
|
3339
|
+
"color": "#ffffff",
|
|
3340
|
+
"outline": "none",
|
|
3341
|
+
},
|
|
3342
|
+
},
|
|
3064
3343
|
"alignItems": "center",
|
|
3065
3344
|
"background": "none",
|
|
3066
3345
|
"border": "none",
|
|
@@ -3164,6 +3443,15 @@ exports[`IconButtonCore kind:primary color:destructive size:medium light:true pr
|
|
|
3164
3443
|
"outlineStyle": "solid",
|
|
3165
3444
|
"outlineWidth": 2,
|
|
3166
3445
|
},
|
|
3446
|
+
"@media not (hover: hover)": {
|
|
3447
|
+
":hover": {
|
|
3448
|
+
"backgroundColor": "transparent",
|
|
3449
|
+
"borderRadius": 4,
|
|
3450
|
+
"boxShadow": "none",
|
|
3451
|
+
"color": "#ffffff",
|
|
3452
|
+
"outline": "none",
|
|
3453
|
+
},
|
|
3454
|
+
},
|
|
3167
3455
|
"alignItems": "center",
|
|
3168
3456
|
"background": "none",
|
|
3169
3457
|
"border": "none",
|
|
@@ -3256,6 +3544,15 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:false di
|
|
|
3256
3544
|
"outline": "none",
|
|
3257
3545
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
3258
3546
|
},
|
|
3547
|
+
"@media not (hover: hover)": {
|
|
3548
|
+
":hover": {
|
|
3549
|
+
"backgroundColor": "transparent",
|
|
3550
|
+
"borderRadius": 4,
|
|
3551
|
+
"boxShadow": "none",
|
|
3552
|
+
"color": "#d92916",
|
|
3553
|
+
"outline": "none",
|
|
3554
|
+
},
|
|
3555
|
+
},
|
|
3259
3556
|
"alignItems": "center",
|
|
3260
3557
|
"background": "none",
|
|
3261
3558
|
"border": "none",
|
|
@@ -3359,6 +3656,15 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:false fo
|
|
|
3359
3656
|
"outlineStyle": "solid",
|
|
3360
3657
|
"outlineWidth": 2,
|
|
3361
3658
|
},
|
|
3659
|
+
"@media not (hover: hover)": {
|
|
3660
|
+
":hover": {
|
|
3661
|
+
"backgroundColor": "transparent",
|
|
3662
|
+
"borderRadius": 4,
|
|
3663
|
+
"boxShadow": "none",
|
|
3664
|
+
"color": "#d92916",
|
|
3665
|
+
"outline": "none",
|
|
3666
|
+
},
|
|
3667
|
+
},
|
|
3362
3668
|
"alignItems": "center",
|
|
3363
3669
|
"background": "none",
|
|
3364
3670
|
"border": "none",
|
|
@@ -3462,6 +3768,15 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:false ho
|
|
|
3462
3768
|
"outlineStyle": "solid",
|
|
3463
3769
|
"outlineWidth": 2,
|
|
3464
3770
|
},
|
|
3771
|
+
"@media not (hover: hover)": {
|
|
3772
|
+
":hover": {
|
|
3773
|
+
"backgroundColor": "transparent",
|
|
3774
|
+
"borderRadius": 4,
|
|
3775
|
+
"boxShadow": "none",
|
|
3776
|
+
"color": "#d92916",
|
|
3777
|
+
"outline": "none",
|
|
3778
|
+
},
|
|
3779
|
+
},
|
|
3465
3780
|
"alignItems": "center",
|
|
3466
3781
|
"background": "none",
|
|
3467
3782
|
"border": "none",
|
|
@@ -3565,6 +3880,15 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:false pr
|
|
|
3565
3880
|
"outlineStyle": "solid",
|
|
3566
3881
|
"outlineWidth": 2,
|
|
3567
3882
|
},
|
|
3883
|
+
"@media not (hover: hover)": {
|
|
3884
|
+
":hover": {
|
|
3885
|
+
"backgroundColor": "transparent",
|
|
3886
|
+
"borderRadius": 4,
|
|
3887
|
+
"boxShadow": "none",
|
|
3888
|
+
"color": "#d92916",
|
|
3889
|
+
"outline": "none",
|
|
3890
|
+
},
|
|
3891
|
+
},
|
|
3568
3892
|
"alignItems": "center",
|
|
3569
3893
|
"background": "none",
|
|
3570
3894
|
"border": "none",
|
|
@@ -3657,6 +3981,15 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:true dis
|
|
|
3657
3981
|
"outline": "none",
|
|
3658
3982
|
"outlineColor": "rgba(255,255,255,0.50)",
|
|
3659
3983
|
},
|
|
3984
|
+
"@media not (hover: hover)": {
|
|
3985
|
+
":hover": {
|
|
3986
|
+
"backgroundColor": "transparent",
|
|
3987
|
+
"borderRadius": 4,
|
|
3988
|
+
"boxShadow": "none",
|
|
3989
|
+
"color": "#ffffff",
|
|
3990
|
+
"outline": "none",
|
|
3991
|
+
},
|
|
3992
|
+
},
|
|
3660
3993
|
"alignItems": "center",
|
|
3661
3994
|
"background": "none",
|
|
3662
3995
|
"border": "none",
|
|
@@ -3760,6 +4093,15 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:true foc
|
|
|
3760
4093
|
"outlineStyle": "solid",
|
|
3761
4094
|
"outlineWidth": 2,
|
|
3762
4095
|
},
|
|
4096
|
+
"@media not (hover: hover)": {
|
|
4097
|
+
":hover": {
|
|
4098
|
+
"backgroundColor": "transparent",
|
|
4099
|
+
"borderRadius": 4,
|
|
4100
|
+
"boxShadow": "none",
|
|
4101
|
+
"color": "#ffffff",
|
|
4102
|
+
"outline": "none",
|
|
4103
|
+
},
|
|
4104
|
+
},
|
|
3763
4105
|
"alignItems": "center",
|
|
3764
4106
|
"background": "none",
|
|
3765
4107
|
"border": "none",
|
|
@@ -3863,6 +4205,15 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:true hov
|
|
|
3863
4205
|
"outlineStyle": "solid",
|
|
3864
4206
|
"outlineWidth": 2,
|
|
3865
4207
|
},
|
|
4208
|
+
"@media not (hover: hover)": {
|
|
4209
|
+
":hover": {
|
|
4210
|
+
"backgroundColor": "transparent",
|
|
4211
|
+
"borderRadius": 4,
|
|
4212
|
+
"boxShadow": "none",
|
|
4213
|
+
"color": "#ffffff",
|
|
4214
|
+
"outline": "none",
|
|
4215
|
+
},
|
|
4216
|
+
},
|
|
3866
4217
|
"alignItems": "center",
|
|
3867
4218
|
"background": "none",
|
|
3868
4219
|
"border": "none",
|
|
@@ -3966,6 +4317,15 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:true pre
|
|
|
3966
4317
|
"outlineStyle": "solid",
|
|
3967
4318
|
"outlineWidth": 2,
|
|
3968
4319
|
},
|
|
4320
|
+
"@media not (hover: hover)": {
|
|
4321
|
+
":hover": {
|
|
4322
|
+
"backgroundColor": "transparent",
|
|
4323
|
+
"borderRadius": 4,
|
|
4324
|
+
"boxShadow": "none",
|
|
4325
|
+
"color": "#ffffff",
|
|
4326
|
+
"outline": "none",
|
|
4327
|
+
},
|
|
4328
|
+
},
|
|
3969
4329
|
"alignItems": "center",
|
|
3970
4330
|
"background": "none",
|
|
3971
4331
|
"border": "none",
|
|
@@ -4058,6 +4418,15 @@ exports[`IconButtonCore kind:primary color:destructive size:xsmall light:false d
|
|
|
4058
4418
|
"outline": "none",
|
|
4059
4419
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
4060
4420
|
},
|
|
4421
|
+
"@media not (hover: hover)": {
|
|
4422
|
+
":hover": {
|
|
4423
|
+
"backgroundColor": "transparent",
|
|
4424
|
+
"borderRadius": 4,
|
|
4425
|
+
"boxShadow": "none",
|
|
4426
|
+
"color": "#d92916",
|
|
4427
|
+
"outline": "none",
|
|
4428
|
+
},
|
|
4429
|
+
},
|
|
4061
4430
|
"alignItems": "center",
|
|
4062
4431
|
"background": "none",
|
|
4063
4432
|
"border": "none",
|
|
@@ -4161,6 +4530,15 @@ exports[`IconButtonCore kind:primary color:destructive size:xsmall light:false f
|
|
|
4161
4530
|
"outlineStyle": "solid",
|
|
4162
4531
|
"outlineWidth": 2,
|
|
4163
4532
|
},
|
|
4533
|
+
"@media not (hover: hover)": {
|
|
4534
|
+
":hover": {
|
|
4535
|
+
"backgroundColor": "transparent",
|
|
4536
|
+
"borderRadius": 4,
|
|
4537
|
+
"boxShadow": "none",
|
|
4538
|
+
"color": "#d92916",
|
|
4539
|
+
"outline": "none",
|
|
4540
|
+
},
|
|
4541
|
+
},
|
|
4164
4542
|
"alignItems": "center",
|
|
4165
4543
|
"background": "none",
|
|
4166
4544
|
"border": "none",
|
|
@@ -4264,6 +4642,15 @@ exports[`IconButtonCore kind:primary color:destructive size:xsmall light:false h
|
|
|
4264
4642
|
"outlineStyle": "solid",
|
|
4265
4643
|
"outlineWidth": 2,
|
|
4266
4644
|
},
|
|
4645
|
+
"@media not (hover: hover)": {
|
|
4646
|
+
":hover": {
|
|
4647
|
+
"backgroundColor": "transparent",
|
|
4648
|
+
"borderRadius": 4,
|
|
4649
|
+
"boxShadow": "none",
|
|
4650
|
+
"color": "#d92916",
|
|
4651
|
+
"outline": "none",
|
|
4652
|
+
},
|
|
4653
|
+
},
|
|
4267
4654
|
"alignItems": "center",
|
|
4268
4655
|
"background": "none",
|
|
4269
4656
|
"border": "none",
|
|
@@ -4367,6 +4754,15 @@ exports[`IconButtonCore kind:primary color:destructive size:xsmall light:false p
|
|
|
4367
4754
|
"outlineStyle": "solid",
|
|
4368
4755
|
"outlineWidth": 2,
|
|
4369
4756
|
},
|
|
4757
|
+
"@media not (hover: hover)": {
|
|
4758
|
+
":hover": {
|
|
4759
|
+
"backgroundColor": "transparent",
|
|
4760
|
+
"borderRadius": 4,
|
|
4761
|
+
"boxShadow": "none",
|
|
4762
|
+
"color": "#d92916",
|
|
4763
|
+
"outline": "none",
|
|
4764
|
+
},
|
|
4765
|
+
},
|
|
4370
4766
|
"alignItems": "center",
|
|
4371
4767
|
"background": "none",
|
|
4372
4768
|
"border": "none",
|
|
@@ -4459,6 +4855,15 @@ exports[`IconButtonCore kind:primary color:destructive size:xsmall light:true di
|
|
|
4459
4855
|
"outline": "none",
|
|
4460
4856
|
"outlineColor": "rgba(255,255,255,0.50)",
|
|
4461
4857
|
},
|
|
4858
|
+
"@media not (hover: hover)": {
|
|
4859
|
+
":hover": {
|
|
4860
|
+
"backgroundColor": "transparent",
|
|
4861
|
+
"borderRadius": 4,
|
|
4862
|
+
"boxShadow": "none",
|
|
4863
|
+
"color": "#ffffff",
|
|
4864
|
+
"outline": "none",
|
|
4865
|
+
},
|
|
4866
|
+
},
|
|
4462
4867
|
"alignItems": "center",
|
|
4463
4868
|
"background": "none",
|
|
4464
4869
|
"border": "none",
|
|
@@ -4562,6 +4967,15 @@ exports[`IconButtonCore kind:primary color:destructive size:xsmall light:true fo
|
|
|
4562
4967
|
"outlineStyle": "solid",
|
|
4563
4968
|
"outlineWidth": 2,
|
|
4564
4969
|
},
|
|
4970
|
+
"@media not (hover: hover)": {
|
|
4971
|
+
":hover": {
|
|
4972
|
+
"backgroundColor": "transparent",
|
|
4973
|
+
"borderRadius": 4,
|
|
4974
|
+
"boxShadow": "none",
|
|
4975
|
+
"color": "#ffffff",
|
|
4976
|
+
"outline": "none",
|
|
4977
|
+
},
|
|
4978
|
+
},
|
|
4565
4979
|
"alignItems": "center",
|
|
4566
4980
|
"background": "none",
|
|
4567
4981
|
"border": "none",
|
|
@@ -4665,6 +5079,15 @@ exports[`IconButtonCore kind:primary color:destructive size:xsmall light:true ho
|
|
|
4665
5079
|
"outlineStyle": "solid",
|
|
4666
5080
|
"outlineWidth": 2,
|
|
4667
5081
|
},
|
|
5082
|
+
"@media not (hover: hover)": {
|
|
5083
|
+
":hover": {
|
|
5084
|
+
"backgroundColor": "transparent",
|
|
5085
|
+
"borderRadius": 4,
|
|
5086
|
+
"boxShadow": "none",
|
|
5087
|
+
"color": "#ffffff",
|
|
5088
|
+
"outline": "none",
|
|
5089
|
+
},
|
|
5090
|
+
},
|
|
4668
5091
|
"alignItems": "center",
|
|
4669
5092
|
"background": "none",
|
|
4670
5093
|
"border": "none",
|
|
@@ -4768,6 +5191,15 @@ exports[`IconButtonCore kind:primary color:destructive size:xsmall light:true pr
|
|
|
4768
5191
|
"outlineStyle": "solid",
|
|
4769
5192
|
"outlineWidth": 2,
|
|
4770
5193
|
},
|
|
5194
|
+
"@media not (hover: hover)": {
|
|
5195
|
+
":hover": {
|
|
5196
|
+
"backgroundColor": "transparent",
|
|
5197
|
+
"borderRadius": 4,
|
|
5198
|
+
"boxShadow": "none",
|
|
5199
|
+
"color": "#ffffff",
|
|
5200
|
+
"outline": "none",
|
|
5201
|
+
},
|
|
5202
|
+
},
|
|
4771
5203
|
"alignItems": "center",
|
|
4772
5204
|
"background": "none",
|
|
4773
5205
|
"border": "none",
|
|
@@ -4860,6 +5292,15 @@ exports[`IconButtonCore kind:secondary color:default size:medium light:false dis
|
|
|
4860
5292
|
"outline": "none",
|
|
4861
5293
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
4862
5294
|
},
|
|
5295
|
+
"@media not (hover: hover)": {
|
|
5296
|
+
":hover": {
|
|
5297
|
+
"backgroundColor": "transparent",
|
|
5298
|
+
"borderRadius": 4,
|
|
5299
|
+
"boxShadow": "none",
|
|
5300
|
+
"color": "#21242c",
|
|
5301
|
+
"outline": "none",
|
|
5302
|
+
},
|
|
5303
|
+
},
|
|
4863
5304
|
"alignItems": "center",
|
|
4864
5305
|
"background": "none",
|
|
4865
5306
|
"border": "none",
|
|
@@ -4960,6 +5401,15 @@ exports[`IconButtonCore kind:secondary color:default size:medium light:false foc
|
|
|
4960
5401
|
"color": "#1865f2",
|
|
4961
5402
|
"outlineWidth": 0,
|
|
4962
5403
|
},
|
|
5404
|
+
"@media not (hover: hover)": {
|
|
5405
|
+
":hover": {
|
|
5406
|
+
"backgroundColor": "transparent",
|
|
5407
|
+
"borderRadius": 4,
|
|
5408
|
+
"boxShadow": "none",
|
|
5409
|
+
"color": "#21242c",
|
|
5410
|
+
"outline": "none",
|
|
5411
|
+
},
|
|
5412
|
+
},
|
|
4963
5413
|
"alignItems": "center",
|
|
4964
5414
|
"background": "none",
|
|
4965
5415
|
"border": "none",
|
|
@@ -5060,6 +5510,15 @@ exports[`IconButtonCore kind:secondary color:default size:medium light:false hov
|
|
|
5060
5510
|
"color": "#1865f2",
|
|
5061
5511
|
"outlineWidth": 0,
|
|
5062
5512
|
},
|
|
5513
|
+
"@media not (hover: hover)": {
|
|
5514
|
+
":hover": {
|
|
5515
|
+
"backgroundColor": "transparent",
|
|
5516
|
+
"borderRadius": 4,
|
|
5517
|
+
"boxShadow": "none",
|
|
5518
|
+
"color": "#21242c",
|
|
5519
|
+
"outline": "none",
|
|
5520
|
+
},
|
|
5521
|
+
},
|
|
5063
5522
|
"alignItems": "center",
|
|
5064
5523
|
"background": "none",
|
|
5065
5524
|
"border": "none",
|
|
@@ -5160,6 +5619,15 @@ exports[`IconButtonCore kind:secondary color:default size:medium light:false pre
|
|
|
5160
5619
|
"color": "#1865f2",
|
|
5161
5620
|
"outlineWidth": 0,
|
|
5162
5621
|
},
|
|
5622
|
+
"@media not (hover: hover)": {
|
|
5623
|
+
":hover": {
|
|
5624
|
+
"backgroundColor": "transparent",
|
|
5625
|
+
"borderRadius": 4,
|
|
5626
|
+
"boxShadow": "none",
|
|
5627
|
+
"color": "#21242c",
|
|
5628
|
+
"outline": "none",
|
|
5629
|
+
},
|
|
5630
|
+
},
|
|
5163
5631
|
"alignItems": "center",
|
|
5164
5632
|
"background": "none",
|
|
5165
5633
|
"border": "none",
|
|
@@ -5252,6 +5720,15 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false disa
|
|
|
5252
5720
|
"outline": "none",
|
|
5253
5721
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
5254
5722
|
},
|
|
5723
|
+
"@media not (hover: hover)": {
|
|
5724
|
+
":hover": {
|
|
5725
|
+
"backgroundColor": "transparent",
|
|
5726
|
+
"borderRadius": 4,
|
|
5727
|
+
"boxShadow": "none",
|
|
5728
|
+
"color": "#21242c",
|
|
5729
|
+
"outline": "none",
|
|
5730
|
+
},
|
|
5731
|
+
},
|
|
5255
5732
|
"alignItems": "center",
|
|
5256
5733
|
"background": "none",
|
|
5257
5734
|
"border": "none",
|
|
@@ -5352,6 +5829,15 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false focu
|
|
|
5352
5829
|
"color": "#1865f2",
|
|
5353
5830
|
"outlineWidth": 0,
|
|
5354
5831
|
},
|
|
5832
|
+
"@media not (hover: hover)": {
|
|
5833
|
+
":hover": {
|
|
5834
|
+
"backgroundColor": "transparent",
|
|
5835
|
+
"borderRadius": 4,
|
|
5836
|
+
"boxShadow": "none",
|
|
5837
|
+
"color": "#21242c",
|
|
5838
|
+
"outline": "none",
|
|
5839
|
+
},
|
|
5840
|
+
},
|
|
5355
5841
|
"alignItems": "center",
|
|
5356
5842
|
"background": "none",
|
|
5357
5843
|
"border": "none",
|
|
@@ -5452,6 +5938,15 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false hove
|
|
|
5452
5938
|
"color": "#1865f2",
|
|
5453
5939
|
"outlineWidth": 0,
|
|
5454
5940
|
},
|
|
5941
|
+
"@media not (hover: hover)": {
|
|
5942
|
+
":hover": {
|
|
5943
|
+
"backgroundColor": "transparent",
|
|
5944
|
+
"borderRadius": 4,
|
|
5945
|
+
"boxShadow": "none",
|
|
5946
|
+
"color": "#21242c",
|
|
5947
|
+
"outline": "none",
|
|
5948
|
+
},
|
|
5949
|
+
},
|
|
5455
5950
|
"alignItems": "center",
|
|
5456
5951
|
"background": "none",
|
|
5457
5952
|
"border": "none",
|
|
@@ -5552,6 +6047,15 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false pres
|
|
|
5552
6047
|
"color": "#1865f2",
|
|
5553
6048
|
"outlineWidth": 0,
|
|
5554
6049
|
},
|
|
6050
|
+
"@media not (hover: hover)": {
|
|
6051
|
+
":hover": {
|
|
6052
|
+
"backgroundColor": "transparent",
|
|
6053
|
+
"borderRadius": 4,
|
|
6054
|
+
"boxShadow": "none",
|
|
6055
|
+
"color": "#21242c",
|
|
6056
|
+
"outline": "none",
|
|
6057
|
+
},
|
|
6058
|
+
},
|
|
5555
6059
|
"alignItems": "center",
|
|
5556
6060
|
"background": "none",
|
|
5557
6061
|
"border": "none",
|
|
@@ -5644,6 +6148,15 @@ exports[`IconButtonCore kind:secondary color:default size:xsmall light:false dis
|
|
|
5644
6148
|
"outline": "none",
|
|
5645
6149
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
5646
6150
|
},
|
|
6151
|
+
"@media not (hover: hover)": {
|
|
6152
|
+
":hover": {
|
|
6153
|
+
"backgroundColor": "transparent",
|
|
6154
|
+
"borderRadius": 4,
|
|
6155
|
+
"boxShadow": "none",
|
|
6156
|
+
"color": "#21242c",
|
|
6157
|
+
"outline": "none",
|
|
6158
|
+
},
|
|
6159
|
+
},
|
|
5647
6160
|
"alignItems": "center",
|
|
5648
6161
|
"background": "none",
|
|
5649
6162
|
"border": "none",
|
|
@@ -5744,6 +6257,15 @@ exports[`IconButtonCore kind:secondary color:default size:xsmall light:false foc
|
|
|
5744
6257
|
"color": "#1865f2",
|
|
5745
6258
|
"outlineWidth": 0,
|
|
5746
6259
|
},
|
|
6260
|
+
"@media not (hover: hover)": {
|
|
6261
|
+
":hover": {
|
|
6262
|
+
"backgroundColor": "transparent",
|
|
6263
|
+
"borderRadius": 4,
|
|
6264
|
+
"boxShadow": "none",
|
|
6265
|
+
"color": "#21242c",
|
|
6266
|
+
"outline": "none",
|
|
6267
|
+
},
|
|
6268
|
+
},
|
|
5747
6269
|
"alignItems": "center",
|
|
5748
6270
|
"background": "none",
|
|
5749
6271
|
"border": "none",
|
|
@@ -5844,6 +6366,15 @@ exports[`IconButtonCore kind:secondary color:default size:xsmall light:false hov
|
|
|
5844
6366
|
"color": "#1865f2",
|
|
5845
6367
|
"outlineWidth": 0,
|
|
5846
6368
|
},
|
|
6369
|
+
"@media not (hover: hover)": {
|
|
6370
|
+
":hover": {
|
|
6371
|
+
"backgroundColor": "transparent",
|
|
6372
|
+
"borderRadius": 4,
|
|
6373
|
+
"boxShadow": "none",
|
|
6374
|
+
"color": "#21242c",
|
|
6375
|
+
"outline": "none",
|
|
6376
|
+
},
|
|
6377
|
+
},
|
|
5847
6378
|
"alignItems": "center",
|
|
5848
6379
|
"background": "none",
|
|
5849
6380
|
"border": "none",
|
|
@@ -5944,6 +6475,15 @@ exports[`IconButtonCore kind:secondary color:default size:xsmall light:false pre
|
|
|
5944
6475
|
"color": "#1865f2",
|
|
5945
6476
|
"outlineWidth": 0,
|
|
5946
6477
|
},
|
|
6478
|
+
"@media not (hover: hover)": {
|
|
6479
|
+
":hover": {
|
|
6480
|
+
"backgroundColor": "transparent",
|
|
6481
|
+
"borderRadius": 4,
|
|
6482
|
+
"boxShadow": "none",
|
|
6483
|
+
"color": "#21242c",
|
|
6484
|
+
"outline": "none",
|
|
6485
|
+
},
|
|
6486
|
+
},
|
|
5947
6487
|
"alignItems": "center",
|
|
5948
6488
|
"background": "none",
|
|
5949
6489
|
"border": "none",
|
|
@@ -6036,6 +6576,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:medium light:false
|
|
|
6036
6576
|
"outline": "none",
|
|
6037
6577
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
6038
6578
|
},
|
|
6579
|
+
"@media not (hover: hover)": {
|
|
6580
|
+
":hover": {
|
|
6581
|
+
"backgroundColor": "transparent",
|
|
6582
|
+
"borderRadius": 4,
|
|
6583
|
+
"boxShadow": "none",
|
|
6584
|
+
"color": "#21242c",
|
|
6585
|
+
"outline": "none",
|
|
6586
|
+
},
|
|
6587
|
+
},
|
|
6039
6588
|
"alignItems": "center",
|
|
6040
6589
|
"background": "none",
|
|
6041
6590
|
"border": "none",
|
|
@@ -6136,6 +6685,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:medium light:false
|
|
|
6136
6685
|
"color": "#d92916",
|
|
6137
6686
|
"outlineWidth": 0,
|
|
6138
6687
|
},
|
|
6688
|
+
"@media not (hover: hover)": {
|
|
6689
|
+
":hover": {
|
|
6690
|
+
"backgroundColor": "transparent",
|
|
6691
|
+
"borderRadius": 4,
|
|
6692
|
+
"boxShadow": "none",
|
|
6693
|
+
"color": "#21242c",
|
|
6694
|
+
"outline": "none",
|
|
6695
|
+
},
|
|
6696
|
+
},
|
|
6139
6697
|
"alignItems": "center",
|
|
6140
6698
|
"background": "none",
|
|
6141
6699
|
"border": "none",
|
|
@@ -6236,6 +6794,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:medium light:false
|
|
|
6236
6794
|
"color": "#d92916",
|
|
6237
6795
|
"outlineWidth": 0,
|
|
6238
6796
|
},
|
|
6797
|
+
"@media not (hover: hover)": {
|
|
6798
|
+
":hover": {
|
|
6799
|
+
"backgroundColor": "transparent",
|
|
6800
|
+
"borderRadius": 4,
|
|
6801
|
+
"boxShadow": "none",
|
|
6802
|
+
"color": "#21242c",
|
|
6803
|
+
"outline": "none",
|
|
6804
|
+
},
|
|
6805
|
+
},
|
|
6239
6806
|
"alignItems": "center",
|
|
6240
6807
|
"background": "none",
|
|
6241
6808
|
"border": "none",
|
|
@@ -6336,6 +6903,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:medium light:false
|
|
|
6336
6903
|
"color": "#d92916",
|
|
6337
6904
|
"outlineWidth": 0,
|
|
6338
6905
|
},
|
|
6906
|
+
"@media not (hover: hover)": {
|
|
6907
|
+
":hover": {
|
|
6908
|
+
"backgroundColor": "transparent",
|
|
6909
|
+
"borderRadius": 4,
|
|
6910
|
+
"boxShadow": "none",
|
|
6911
|
+
"color": "#21242c",
|
|
6912
|
+
"outline": "none",
|
|
6913
|
+
},
|
|
6914
|
+
},
|
|
6339
6915
|
"alignItems": "center",
|
|
6340
6916
|
"background": "none",
|
|
6341
6917
|
"border": "none",
|
|
@@ -6428,6 +7004,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
6428
7004
|
"outline": "none",
|
|
6429
7005
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
6430
7006
|
},
|
|
7007
|
+
"@media not (hover: hover)": {
|
|
7008
|
+
":hover": {
|
|
7009
|
+
"backgroundColor": "transparent",
|
|
7010
|
+
"borderRadius": 4,
|
|
7011
|
+
"boxShadow": "none",
|
|
7012
|
+
"color": "#21242c",
|
|
7013
|
+
"outline": "none",
|
|
7014
|
+
},
|
|
7015
|
+
},
|
|
6431
7016
|
"alignItems": "center",
|
|
6432
7017
|
"background": "none",
|
|
6433
7018
|
"border": "none",
|
|
@@ -6528,6 +7113,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
6528
7113
|
"color": "#d92916",
|
|
6529
7114
|
"outlineWidth": 0,
|
|
6530
7115
|
},
|
|
7116
|
+
"@media not (hover: hover)": {
|
|
7117
|
+
":hover": {
|
|
7118
|
+
"backgroundColor": "transparent",
|
|
7119
|
+
"borderRadius": 4,
|
|
7120
|
+
"boxShadow": "none",
|
|
7121
|
+
"color": "#21242c",
|
|
7122
|
+
"outline": "none",
|
|
7123
|
+
},
|
|
7124
|
+
},
|
|
6531
7125
|
"alignItems": "center",
|
|
6532
7126
|
"background": "none",
|
|
6533
7127
|
"border": "none",
|
|
@@ -6628,6 +7222,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
6628
7222
|
"color": "#d92916",
|
|
6629
7223
|
"outlineWidth": 0,
|
|
6630
7224
|
},
|
|
7225
|
+
"@media not (hover: hover)": {
|
|
7226
|
+
":hover": {
|
|
7227
|
+
"backgroundColor": "transparent",
|
|
7228
|
+
"borderRadius": 4,
|
|
7229
|
+
"boxShadow": "none",
|
|
7230
|
+
"color": "#21242c",
|
|
7231
|
+
"outline": "none",
|
|
7232
|
+
},
|
|
7233
|
+
},
|
|
6631
7234
|
"alignItems": "center",
|
|
6632
7235
|
"background": "none",
|
|
6633
7236
|
"border": "none",
|
|
@@ -6728,6 +7331,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
6728
7331
|
"color": "#d92916",
|
|
6729
7332
|
"outlineWidth": 0,
|
|
6730
7333
|
},
|
|
7334
|
+
"@media not (hover: hover)": {
|
|
7335
|
+
":hover": {
|
|
7336
|
+
"backgroundColor": "transparent",
|
|
7337
|
+
"borderRadius": 4,
|
|
7338
|
+
"boxShadow": "none",
|
|
7339
|
+
"color": "#21242c",
|
|
7340
|
+
"outline": "none",
|
|
7341
|
+
},
|
|
7342
|
+
},
|
|
6731
7343
|
"alignItems": "center",
|
|
6732
7344
|
"background": "none",
|
|
6733
7345
|
"border": "none",
|
|
@@ -6820,6 +7432,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:xsmall light:false
|
|
|
6820
7432
|
"outline": "none",
|
|
6821
7433
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
6822
7434
|
},
|
|
7435
|
+
"@media not (hover: hover)": {
|
|
7436
|
+
":hover": {
|
|
7437
|
+
"backgroundColor": "transparent",
|
|
7438
|
+
"borderRadius": 4,
|
|
7439
|
+
"boxShadow": "none",
|
|
7440
|
+
"color": "#21242c",
|
|
7441
|
+
"outline": "none",
|
|
7442
|
+
},
|
|
7443
|
+
},
|
|
6823
7444
|
"alignItems": "center",
|
|
6824
7445
|
"background": "none",
|
|
6825
7446
|
"border": "none",
|
|
@@ -6920,6 +7541,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:xsmall light:false
|
|
|
6920
7541
|
"color": "#d92916",
|
|
6921
7542
|
"outlineWidth": 0,
|
|
6922
7543
|
},
|
|
7544
|
+
"@media not (hover: hover)": {
|
|
7545
|
+
":hover": {
|
|
7546
|
+
"backgroundColor": "transparent",
|
|
7547
|
+
"borderRadius": 4,
|
|
7548
|
+
"boxShadow": "none",
|
|
7549
|
+
"color": "#21242c",
|
|
7550
|
+
"outline": "none",
|
|
7551
|
+
},
|
|
7552
|
+
},
|
|
6923
7553
|
"alignItems": "center",
|
|
6924
7554
|
"background": "none",
|
|
6925
7555
|
"border": "none",
|
|
@@ -7020,6 +7650,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:xsmall light:false
|
|
|
7020
7650
|
"color": "#d92916",
|
|
7021
7651
|
"outlineWidth": 0,
|
|
7022
7652
|
},
|
|
7653
|
+
"@media not (hover: hover)": {
|
|
7654
|
+
":hover": {
|
|
7655
|
+
"backgroundColor": "transparent",
|
|
7656
|
+
"borderRadius": 4,
|
|
7657
|
+
"boxShadow": "none",
|
|
7658
|
+
"color": "#21242c",
|
|
7659
|
+
"outline": "none",
|
|
7660
|
+
},
|
|
7661
|
+
},
|
|
7023
7662
|
"alignItems": "center",
|
|
7024
7663
|
"background": "none",
|
|
7025
7664
|
"border": "none",
|
|
@@ -7120,6 +7759,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:xsmall light:false
|
|
|
7120
7759
|
"color": "#d92916",
|
|
7121
7760
|
"outlineWidth": 0,
|
|
7122
7761
|
},
|
|
7762
|
+
"@media not (hover: hover)": {
|
|
7763
|
+
":hover": {
|
|
7764
|
+
"backgroundColor": "transparent",
|
|
7765
|
+
"borderRadius": 4,
|
|
7766
|
+
"boxShadow": "none",
|
|
7767
|
+
"color": "#21242c",
|
|
7768
|
+
"outline": "none",
|
|
7769
|
+
},
|
|
7770
|
+
},
|
|
7123
7771
|
"alignItems": "center",
|
|
7124
7772
|
"background": "none",
|
|
7125
7773
|
"border": "none",
|
|
@@ -7212,6 +7860,15 @@ exports[`IconButtonCore kind:tertiary color:default size:medium light:false disa
|
|
|
7212
7860
|
"outline": "none",
|
|
7213
7861
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
7214
7862
|
},
|
|
7863
|
+
"@media not (hover: hover)": {
|
|
7864
|
+
":hover": {
|
|
7865
|
+
"backgroundColor": "transparent",
|
|
7866
|
+
"borderRadius": 4,
|
|
7867
|
+
"boxShadow": "none",
|
|
7868
|
+
"color": "rgba(33,36,44,0.64)",
|
|
7869
|
+
"outline": "none",
|
|
7870
|
+
},
|
|
7871
|
+
},
|
|
7215
7872
|
"alignItems": "center",
|
|
7216
7873
|
"background": "none",
|
|
7217
7874
|
"border": "none",
|
|
@@ -7312,6 +7969,15 @@ exports[`IconButtonCore kind:tertiary color:default size:medium light:false focu
|
|
|
7312
7969
|
"color": "#1865f2",
|
|
7313
7970
|
"outlineWidth": 0,
|
|
7314
7971
|
},
|
|
7972
|
+
"@media not (hover: hover)": {
|
|
7973
|
+
":hover": {
|
|
7974
|
+
"backgroundColor": "transparent",
|
|
7975
|
+
"borderRadius": 4,
|
|
7976
|
+
"boxShadow": "none",
|
|
7977
|
+
"color": "rgba(33,36,44,0.64)",
|
|
7978
|
+
"outline": "none",
|
|
7979
|
+
},
|
|
7980
|
+
},
|
|
7315
7981
|
"alignItems": "center",
|
|
7316
7982
|
"background": "none",
|
|
7317
7983
|
"border": "none",
|
|
@@ -7412,6 +8078,15 @@ exports[`IconButtonCore kind:tertiary color:default size:medium light:false hove
|
|
|
7412
8078
|
"color": "#1865f2",
|
|
7413
8079
|
"outlineWidth": 0,
|
|
7414
8080
|
},
|
|
8081
|
+
"@media not (hover: hover)": {
|
|
8082
|
+
":hover": {
|
|
8083
|
+
"backgroundColor": "transparent",
|
|
8084
|
+
"borderRadius": 4,
|
|
8085
|
+
"boxShadow": "none",
|
|
8086
|
+
"color": "rgba(33,36,44,0.64)",
|
|
8087
|
+
"outline": "none",
|
|
8088
|
+
},
|
|
8089
|
+
},
|
|
7415
8090
|
"alignItems": "center",
|
|
7416
8091
|
"background": "none",
|
|
7417
8092
|
"border": "none",
|
|
@@ -7512,6 +8187,15 @@ exports[`IconButtonCore kind:tertiary color:default size:medium light:false pres
|
|
|
7512
8187
|
"color": "#1865f2",
|
|
7513
8188
|
"outlineWidth": 0,
|
|
7514
8189
|
},
|
|
8190
|
+
"@media not (hover: hover)": {
|
|
8191
|
+
":hover": {
|
|
8192
|
+
"backgroundColor": "transparent",
|
|
8193
|
+
"borderRadius": 4,
|
|
8194
|
+
"boxShadow": "none",
|
|
8195
|
+
"color": "rgba(33,36,44,0.64)",
|
|
8196
|
+
"outline": "none",
|
|
8197
|
+
},
|
|
8198
|
+
},
|
|
7515
8199
|
"alignItems": "center",
|
|
7516
8200
|
"background": "none",
|
|
7517
8201
|
"border": "none",
|
|
@@ -7604,6 +8288,15 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false disab
|
|
|
7604
8288
|
"outline": "none",
|
|
7605
8289
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
7606
8290
|
},
|
|
8291
|
+
"@media not (hover: hover)": {
|
|
8292
|
+
":hover": {
|
|
8293
|
+
"backgroundColor": "transparent",
|
|
8294
|
+
"borderRadius": 4,
|
|
8295
|
+
"boxShadow": "none",
|
|
8296
|
+
"color": "rgba(33,36,44,0.64)",
|
|
8297
|
+
"outline": "none",
|
|
8298
|
+
},
|
|
8299
|
+
},
|
|
7607
8300
|
"alignItems": "center",
|
|
7608
8301
|
"background": "none",
|
|
7609
8302
|
"border": "none",
|
|
@@ -7704,6 +8397,15 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false focus
|
|
|
7704
8397
|
"color": "#1865f2",
|
|
7705
8398
|
"outlineWidth": 0,
|
|
7706
8399
|
},
|
|
8400
|
+
"@media not (hover: hover)": {
|
|
8401
|
+
":hover": {
|
|
8402
|
+
"backgroundColor": "transparent",
|
|
8403
|
+
"borderRadius": 4,
|
|
8404
|
+
"boxShadow": "none",
|
|
8405
|
+
"color": "rgba(33,36,44,0.64)",
|
|
8406
|
+
"outline": "none",
|
|
8407
|
+
},
|
|
8408
|
+
},
|
|
7707
8409
|
"alignItems": "center",
|
|
7708
8410
|
"background": "none",
|
|
7709
8411
|
"border": "none",
|
|
@@ -7804,6 +8506,15 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false hover
|
|
|
7804
8506
|
"color": "#1865f2",
|
|
7805
8507
|
"outlineWidth": 0,
|
|
7806
8508
|
},
|
|
8509
|
+
"@media not (hover: hover)": {
|
|
8510
|
+
":hover": {
|
|
8511
|
+
"backgroundColor": "transparent",
|
|
8512
|
+
"borderRadius": 4,
|
|
8513
|
+
"boxShadow": "none",
|
|
8514
|
+
"color": "rgba(33,36,44,0.64)",
|
|
8515
|
+
"outline": "none",
|
|
8516
|
+
},
|
|
8517
|
+
},
|
|
7807
8518
|
"alignItems": "center",
|
|
7808
8519
|
"background": "none",
|
|
7809
8520
|
"border": "none",
|
|
@@ -7904,6 +8615,15 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false press
|
|
|
7904
8615
|
"color": "#1865f2",
|
|
7905
8616
|
"outlineWidth": 0,
|
|
7906
8617
|
},
|
|
8618
|
+
"@media not (hover: hover)": {
|
|
8619
|
+
":hover": {
|
|
8620
|
+
"backgroundColor": "transparent",
|
|
8621
|
+
"borderRadius": 4,
|
|
8622
|
+
"boxShadow": "none",
|
|
8623
|
+
"color": "rgba(33,36,44,0.64)",
|
|
8624
|
+
"outline": "none",
|
|
8625
|
+
},
|
|
8626
|
+
},
|
|
7907
8627
|
"alignItems": "center",
|
|
7908
8628
|
"background": "none",
|
|
7909
8629
|
"border": "none",
|
|
@@ -7996,6 +8716,15 @@ exports[`IconButtonCore kind:tertiary color:default size:xsmall light:false disa
|
|
|
7996
8716
|
"outline": "none",
|
|
7997
8717
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
7998
8718
|
},
|
|
8719
|
+
"@media not (hover: hover)": {
|
|
8720
|
+
":hover": {
|
|
8721
|
+
"backgroundColor": "transparent",
|
|
8722
|
+
"borderRadius": 4,
|
|
8723
|
+
"boxShadow": "none",
|
|
8724
|
+
"color": "rgba(33,36,44,0.64)",
|
|
8725
|
+
"outline": "none",
|
|
8726
|
+
},
|
|
8727
|
+
},
|
|
7999
8728
|
"alignItems": "center",
|
|
8000
8729
|
"background": "none",
|
|
8001
8730
|
"border": "none",
|
|
@@ -8096,6 +8825,15 @@ exports[`IconButtonCore kind:tertiary color:default size:xsmall light:false focu
|
|
|
8096
8825
|
"color": "#1865f2",
|
|
8097
8826
|
"outlineWidth": 0,
|
|
8098
8827
|
},
|
|
8828
|
+
"@media not (hover: hover)": {
|
|
8829
|
+
":hover": {
|
|
8830
|
+
"backgroundColor": "transparent",
|
|
8831
|
+
"borderRadius": 4,
|
|
8832
|
+
"boxShadow": "none",
|
|
8833
|
+
"color": "rgba(33,36,44,0.64)",
|
|
8834
|
+
"outline": "none",
|
|
8835
|
+
},
|
|
8836
|
+
},
|
|
8099
8837
|
"alignItems": "center",
|
|
8100
8838
|
"background": "none",
|
|
8101
8839
|
"border": "none",
|
|
@@ -8196,6 +8934,15 @@ exports[`IconButtonCore kind:tertiary color:default size:xsmall light:false hove
|
|
|
8196
8934
|
"color": "#1865f2",
|
|
8197
8935
|
"outlineWidth": 0,
|
|
8198
8936
|
},
|
|
8937
|
+
"@media not (hover: hover)": {
|
|
8938
|
+
":hover": {
|
|
8939
|
+
"backgroundColor": "transparent",
|
|
8940
|
+
"borderRadius": 4,
|
|
8941
|
+
"boxShadow": "none",
|
|
8942
|
+
"color": "rgba(33,36,44,0.64)",
|
|
8943
|
+
"outline": "none",
|
|
8944
|
+
},
|
|
8945
|
+
},
|
|
8199
8946
|
"alignItems": "center",
|
|
8200
8947
|
"background": "none",
|
|
8201
8948
|
"border": "none",
|
|
@@ -8296,6 +9043,15 @@ exports[`IconButtonCore kind:tertiary color:default size:xsmall light:false pres
|
|
|
8296
9043
|
"color": "#1865f2",
|
|
8297
9044
|
"outlineWidth": 0,
|
|
8298
9045
|
},
|
|
9046
|
+
"@media not (hover: hover)": {
|
|
9047
|
+
":hover": {
|
|
9048
|
+
"backgroundColor": "transparent",
|
|
9049
|
+
"borderRadius": 4,
|
|
9050
|
+
"boxShadow": "none",
|
|
9051
|
+
"color": "rgba(33,36,44,0.64)",
|
|
9052
|
+
"outline": "none",
|
|
9053
|
+
},
|
|
9054
|
+
},
|
|
8299
9055
|
"alignItems": "center",
|
|
8300
9056
|
"background": "none",
|
|
8301
9057
|
"border": "none",
|
|
@@ -8388,6 +9144,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:medium light:false
|
|
|
8388
9144
|
"outline": "none",
|
|
8389
9145
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
8390
9146
|
},
|
|
9147
|
+
"@media not (hover: hover)": {
|
|
9148
|
+
":hover": {
|
|
9149
|
+
"backgroundColor": "transparent",
|
|
9150
|
+
"borderRadius": 4,
|
|
9151
|
+
"boxShadow": "none",
|
|
9152
|
+
"color": "rgba(33,36,44,0.64)",
|
|
9153
|
+
"outline": "none",
|
|
9154
|
+
},
|
|
9155
|
+
},
|
|
8391
9156
|
"alignItems": "center",
|
|
8392
9157
|
"background": "none",
|
|
8393
9158
|
"border": "none",
|
|
@@ -8488,6 +9253,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:medium light:false
|
|
|
8488
9253
|
"color": "#d92916",
|
|
8489
9254
|
"outlineWidth": 0,
|
|
8490
9255
|
},
|
|
9256
|
+
"@media not (hover: hover)": {
|
|
9257
|
+
":hover": {
|
|
9258
|
+
"backgroundColor": "transparent",
|
|
9259
|
+
"borderRadius": 4,
|
|
9260
|
+
"boxShadow": "none",
|
|
9261
|
+
"color": "rgba(33,36,44,0.64)",
|
|
9262
|
+
"outline": "none",
|
|
9263
|
+
},
|
|
9264
|
+
},
|
|
8491
9265
|
"alignItems": "center",
|
|
8492
9266
|
"background": "none",
|
|
8493
9267
|
"border": "none",
|
|
@@ -8588,6 +9362,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:medium light:false
|
|
|
8588
9362
|
"color": "#d92916",
|
|
8589
9363
|
"outlineWidth": 0,
|
|
8590
9364
|
},
|
|
9365
|
+
"@media not (hover: hover)": {
|
|
9366
|
+
":hover": {
|
|
9367
|
+
"backgroundColor": "transparent",
|
|
9368
|
+
"borderRadius": 4,
|
|
9369
|
+
"boxShadow": "none",
|
|
9370
|
+
"color": "rgba(33,36,44,0.64)",
|
|
9371
|
+
"outline": "none",
|
|
9372
|
+
},
|
|
9373
|
+
},
|
|
8591
9374
|
"alignItems": "center",
|
|
8592
9375
|
"background": "none",
|
|
8593
9376
|
"border": "none",
|
|
@@ -8688,6 +9471,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:medium light:false
|
|
|
8688
9471
|
"color": "#d92916",
|
|
8689
9472
|
"outlineWidth": 0,
|
|
8690
9473
|
},
|
|
9474
|
+
"@media not (hover: hover)": {
|
|
9475
|
+
":hover": {
|
|
9476
|
+
"backgroundColor": "transparent",
|
|
9477
|
+
"borderRadius": 4,
|
|
9478
|
+
"boxShadow": "none",
|
|
9479
|
+
"color": "rgba(33,36,44,0.64)",
|
|
9480
|
+
"outline": "none",
|
|
9481
|
+
},
|
|
9482
|
+
},
|
|
8691
9483
|
"alignItems": "center",
|
|
8692
9484
|
"background": "none",
|
|
8693
9485
|
"border": "none",
|
|
@@ -8780,6 +9572,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:small light:false d
|
|
|
8780
9572
|
"outline": "none",
|
|
8781
9573
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
8782
9574
|
},
|
|
9575
|
+
"@media not (hover: hover)": {
|
|
9576
|
+
":hover": {
|
|
9577
|
+
"backgroundColor": "transparent",
|
|
9578
|
+
"borderRadius": 4,
|
|
9579
|
+
"boxShadow": "none",
|
|
9580
|
+
"color": "rgba(33,36,44,0.64)",
|
|
9581
|
+
"outline": "none",
|
|
9582
|
+
},
|
|
9583
|
+
},
|
|
8783
9584
|
"alignItems": "center",
|
|
8784
9585
|
"background": "none",
|
|
8785
9586
|
"border": "none",
|
|
@@ -8880,6 +9681,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:small light:false f
|
|
|
8880
9681
|
"color": "#d92916",
|
|
8881
9682
|
"outlineWidth": 0,
|
|
8882
9683
|
},
|
|
9684
|
+
"@media not (hover: hover)": {
|
|
9685
|
+
":hover": {
|
|
9686
|
+
"backgroundColor": "transparent",
|
|
9687
|
+
"borderRadius": 4,
|
|
9688
|
+
"boxShadow": "none",
|
|
9689
|
+
"color": "rgba(33,36,44,0.64)",
|
|
9690
|
+
"outline": "none",
|
|
9691
|
+
},
|
|
9692
|
+
},
|
|
8883
9693
|
"alignItems": "center",
|
|
8884
9694
|
"background": "none",
|
|
8885
9695
|
"border": "none",
|
|
@@ -8980,6 +9790,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:small light:false h
|
|
|
8980
9790
|
"color": "#d92916",
|
|
8981
9791
|
"outlineWidth": 0,
|
|
8982
9792
|
},
|
|
9793
|
+
"@media not (hover: hover)": {
|
|
9794
|
+
":hover": {
|
|
9795
|
+
"backgroundColor": "transparent",
|
|
9796
|
+
"borderRadius": 4,
|
|
9797
|
+
"boxShadow": "none",
|
|
9798
|
+
"color": "rgba(33,36,44,0.64)",
|
|
9799
|
+
"outline": "none",
|
|
9800
|
+
},
|
|
9801
|
+
},
|
|
8983
9802
|
"alignItems": "center",
|
|
8984
9803
|
"background": "none",
|
|
8985
9804
|
"border": "none",
|
|
@@ -9080,6 +9899,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:small light:false p
|
|
|
9080
9899
|
"color": "#d92916",
|
|
9081
9900
|
"outlineWidth": 0,
|
|
9082
9901
|
},
|
|
9902
|
+
"@media not (hover: hover)": {
|
|
9903
|
+
":hover": {
|
|
9904
|
+
"backgroundColor": "transparent",
|
|
9905
|
+
"borderRadius": 4,
|
|
9906
|
+
"boxShadow": "none",
|
|
9907
|
+
"color": "rgba(33,36,44,0.64)",
|
|
9908
|
+
"outline": "none",
|
|
9909
|
+
},
|
|
9910
|
+
},
|
|
9083
9911
|
"alignItems": "center",
|
|
9084
9912
|
"background": "none",
|
|
9085
9913
|
"border": "none",
|
|
@@ -9172,6 +10000,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:xsmall light:false
|
|
|
9172
10000
|
"outline": "none",
|
|
9173
10001
|
"outlineColor": "rgba(33,36,44,0.32)",
|
|
9174
10002
|
},
|
|
10003
|
+
"@media not (hover: hover)": {
|
|
10004
|
+
":hover": {
|
|
10005
|
+
"backgroundColor": "transparent",
|
|
10006
|
+
"borderRadius": 4,
|
|
10007
|
+
"boxShadow": "none",
|
|
10008
|
+
"color": "rgba(33,36,44,0.64)",
|
|
10009
|
+
"outline": "none",
|
|
10010
|
+
},
|
|
10011
|
+
},
|
|
9175
10012
|
"alignItems": "center",
|
|
9176
10013
|
"background": "none",
|
|
9177
10014
|
"border": "none",
|
|
@@ -9272,6 +10109,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:xsmall light:false
|
|
|
9272
10109
|
"color": "#d92916",
|
|
9273
10110
|
"outlineWidth": 0,
|
|
9274
10111
|
},
|
|
10112
|
+
"@media not (hover: hover)": {
|
|
10113
|
+
":hover": {
|
|
10114
|
+
"backgroundColor": "transparent",
|
|
10115
|
+
"borderRadius": 4,
|
|
10116
|
+
"boxShadow": "none",
|
|
10117
|
+
"color": "rgba(33,36,44,0.64)",
|
|
10118
|
+
"outline": "none",
|
|
10119
|
+
},
|
|
10120
|
+
},
|
|
9275
10121
|
"alignItems": "center",
|
|
9276
10122
|
"background": "none",
|
|
9277
10123
|
"border": "none",
|
|
@@ -9372,6 +10218,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:xsmall light:false
|
|
|
9372
10218
|
"color": "#d92916",
|
|
9373
10219
|
"outlineWidth": 0,
|
|
9374
10220
|
},
|
|
10221
|
+
"@media not (hover: hover)": {
|
|
10222
|
+
":hover": {
|
|
10223
|
+
"backgroundColor": "transparent",
|
|
10224
|
+
"borderRadius": 4,
|
|
10225
|
+
"boxShadow": "none",
|
|
10226
|
+
"color": "rgba(33,36,44,0.64)",
|
|
10227
|
+
"outline": "none",
|
|
10228
|
+
},
|
|
10229
|
+
},
|
|
9375
10230
|
"alignItems": "center",
|
|
9376
10231
|
"background": "none",
|
|
9377
10232
|
"border": "none",
|
|
@@ -9472,6 +10327,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:xsmall light:false
|
|
|
9472
10327
|
"color": "#d92916",
|
|
9473
10328
|
"outlineWidth": 0,
|
|
9474
10329
|
},
|
|
10330
|
+
"@media not (hover: hover)": {
|
|
10331
|
+
":hover": {
|
|
10332
|
+
"backgroundColor": "transparent",
|
|
10333
|
+
"borderRadius": 4,
|
|
10334
|
+
"boxShadow": "none",
|
|
10335
|
+
"color": "rgba(33,36,44,0.64)",
|
|
10336
|
+
"outline": "none",
|
|
10337
|
+
},
|
|
10338
|
+
},
|
|
9475
10339
|
"alignItems": "center",
|
|
9476
10340
|
"background": "none",
|
|
9477
10341
|
"border": "none",
|