fontdue-js 2.19.0 → 2.19.1
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 +5 -0
- package/dist/__tests__/collectionBundleSelection.test.d.ts +1 -0
- package/dist/__tests__/collectionBundleSelection.test.js +1181 -0
- package/dist/fontdue.css +190 -126
- package/dist/reducer.js +4 -0
- package/dist/utils.js +2 -2
- package/package.json +5 -2
- package/vitest.config.ts +10 -0
package/dist/fontdue.css
CHANGED
|
@@ -39,11 +39,6 @@
|
|
|
39
39
|
margin: 0;
|
|
40
40
|
appearance: none;
|
|
41
41
|
text-transform: inherit;
|
|
42
|
-
padding: 15px 30px;
|
|
43
|
-
color: var(--button_text_color);
|
|
44
|
-
background: var(--button_background_color);
|
|
45
|
-
border: 1px solid var(--button_border_color);
|
|
46
|
-
font-size: 1rem;
|
|
47
42
|
}
|
|
48
43
|
.buy-button:active, .buy-button:focus {
|
|
49
44
|
outline: none;
|
|
@@ -51,6 +46,13 @@
|
|
|
51
46
|
.buy-button:not(:disabled) {
|
|
52
47
|
cursor: pointer;
|
|
53
48
|
}
|
|
49
|
+
.buy-button {
|
|
50
|
+
padding: 15px 30px;
|
|
51
|
+
color: var(--button_text_color);
|
|
52
|
+
background: var(--button_background_color);
|
|
53
|
+
border: 1px solid var(--button_border_color);
|
|
54
|
+
font-size: 1rem;
|
|
55
|
+
}
|
|
54
56
|
.buy-button:hover {
|
|
55
57
|
color: var(--button_hover_text_color);
|
|
56
58
|
background: var(--button_hover_background_color);
|
|
@@ -102,7 +104,7 @@
|
|
|
102
104
|
}
|
|
103
105
|
|
|
104
106
|
.login-form__errors {
|
|
105
|
-
color:
|
|
107
|
+
color: red;
|
|
106
108
|
margin-top: 30px;
|
|
107
109
|
margin-bottom: 30px;
|
|
108
110
|
}
|
|
@@ -135,7 +137,7 @@
|
|
|
135
137
|
margin-bottom: 30px;
|
|
136
138
|
}
|
|
137
139
|
.test-fonts__errors {
|
|
138
|
-
color:
|
|
140
|
+
color: red;
|
|
139
141
|
margin-top: 30px;
|
|
140
142
|
margin-bottom: 30px;
|
|
141
143
|
}
|
|
@@ -154,7 +156,7 @@
|
|
|
154
156
|
margin: 0;
|
|
155
157
|
}
|
|
156
158
|
.test-fonts__agreement[data-highlighted=true] {
|
|
157
|
-
color:
|
|
159
|
+
color: red;
|
|
158
160
|
}
|
|
159
161
|
.test-fonts__downloading {
|
|
160
162
|
grid-template-columns: 30px 1fr;
|
|
@@ -422,7 +424,6 @@ div[data-component=TypeTesters] {
|
|
|
422
424
|
margin: 0;
|
|
423
425
|
appearance: none;
|
|
424
426
|
text-transform: inherit;
|
|
425
|
-
white-space: nowrap;
|
|
426
427
|
}
|
|
427
428
|
.type-tester__edit-all:active, .type-tester__edit-all:focus {
|
|
428
429
|
outline: none;
|
|
@@ -430,6 +431,9 @@ div[data-component=TypeTesters] {
|
|
|
430
431
|
.type-tester__edit-all:not(:disabled) {
|
|
431
432
|
cursor: pointer;
|
|
432
433
|
}
|
|
434
|
+
.type-tester__edit-all {
|
|
435
|
+
white-space: nowrap;
|
|
436
|
+
}
|
|
433
437
|
.type-tester__edit-all:not(:last-child) {
|
|
434
438
|
margin-right: 20px;
|
|
435
439
|
}
|
|
@@ -520,15 +524,17 @@ div[data-component=TypeTesters] {
|
|
|
520
524
|
margin: 0;
|
|
521
525
|
appearance: none;
|
|
522
526
|
text-transform: inherit;
|
|
527
|
+
}
|
|
528
|
+
.type-tester__toolbar__input:active, .type-tester__toolbar__input:focus {
|
|
529
|
+
outline: none;
|
|
530
|
+
}
|
|
531
|
+
.type-tester__toolbar__input {
|
|
523
532
|
border: 0 !important;
|
|
524
533
|
color: inherit !important;
|
|
525
534
|
background: transparent !important;
|
|
526
535
|
width: 3em;
|
|
527
536
|
text-align: right;
|
|
528
537
|
}
|
|
529
|
-
.type-tester__toolbar__input:active, .type-tester__toolbar__input:focus {
|
|
530
|
-
outline: none;
|
|
531
|
-
}
|
|
532
538
|
.type-tester__price {
|
|
533
539
|
display: none;
|
|
534
540
|
}
|
|
@@ -572,6 +578,14 @@ div[data-component=TypeTesters] {
|
|
|
572
578
|
margin: 0;
|
|
573
579
|
appearance: none;
|
|
574
580
|
text-transform: inherit;
|
|
581
|
+
}
|
|
582
|
+
.type-tester__slider__handle:active, .type-tester__slider__handle:focus {
|
|
583
|
+
outline: none;
|
|
584
|
+
}
|
|
585
|
+
.type-tester__slider__handle:not(:disabled) {
|
|
586
|
+
cursor: pointer;
|
|
587
|
+
}
|
|
588
|
+
.type-tester__slider__handle {
|
|
575
589
|
background-color: var(--primary_background_color);
|
|
576
590
|
border: 1px solid currentcolor;
|
|
577
591
|
border-radius: 50%;
|
|
@@ -582,12 +596,6 @@ div[data-component=TypeTesters] {
|
|
|
582
596
|
outline: none;
|
|
583
597
|
transform: translateX(-50%);
|
|
584
598
|
}
|
|
585
|
-
.type-tester__slider__handle:active, .type-tester__slider__handle:focus {
|
|
586
|
-
outline: none;
|
|
587
|
-
}
|
|
588
|
-
.type-tester__slider__handle:not(:disabled) {
|
|
589
|
-
cursor: pointer;
|
|
590
|
-
}
|
|
591
599
|
.type-tester__slider__handle:hover {
|
|
592
600
|
background-color: currentcolor;
|
|
593
601
|
}
|
|
@@ -668,9 +676,6 @@ div[data-component=TypeTesters] {
|
|
|
668
676
|
margin: 0;
|
|
669
677
|
appearance: none;
|
|
670
678
|
text-transform: inherit;
|
|
671
|
-
display: flex;
|
|
672
|
-
--checkbox-size: 20px;
|
|
673
|
-
--checkbox-margin: 10px;
|
|
674
679
|
}
|
|
675
680
|
.type-tester__features__button:active, .type-tester__features__button:focus {
|
|
676
681
|
outline: none;
|
|
@@ -678,6 +683,11 @@ div[data-component=TypeTesters] {
|
|
|
678
683
|
.type-tester__features__button:not(:disabled) {
|
|
679
684
|
cursor: pointer;
|
|
680
685
|
}
|
|
686
|
+
.type-tester__features__button {
|
|
687
|
+
display: flex;
|
|
688
|
+
--checkbox-size: 20px;
|
|
689
|
+
--checkbox-margin: 10px;
|
|
690
|
+
}
|
|
681
691
|
.type-tester__features[data-selection-style=checkbox] .type-tester__features__button {
|
|
682
692
|
margin-bottom: 5px;
|
|
683
693
|
}
|
|
@@ -841,10 +851,6 @@ div[data-component=TypeTesters] {
|
|
|
841
851
|
margin: 0;
|
|
842
852
|
appearance: none;
|
|
843
853
|
text-transform: inherit;
|
|
844
|
-
padding: 15px 30px;
|
|
845
|
-
color: var(--button_text_color);
|
|
846
|
-
background: var(--button_background_color);
|
|
847
|
-
border: 1px solid var(--button_border_color);
|
|
848
854
|
}
|
|
849
855
|
.submit-button:active, .submit-button:focus {
|
|
850
856
|
outline: none;
|
|
@@ -852,6 +858,12 @@ div[data-component=TypeTesters] {
|
|
|
852
858
|
.submit-button:not(:disabled) {
|
|
853
859
|
cursor: pointer;
|
|
854
860
|
}
|
|
861
|
+
.submit-button {
|
|
862
|
+
padding: 15px 30px;
|
|
863
|
+
color: var(--button_text_color);
|
|
864
|
+
background: var(--button_background_color);
|
|
865
|
+
border: 1px solid var(--button_border_color);
|
|
866
|
+
}
|
|
855
867
|
.submit-button:hover:not(:disabled) {
|
|
856
868
|
color: var(--button_hover_text_color);
|
|
857
869
|
background: var(--button_hover_background_color);
|
|
@@ -1068,11 +1080,6 @@ div[data-component=TypeTesters] {
|
|
|
1068
1080
|
margin: 0;
|
|
1069
1081
|
appearance: none;
|
|
1070
1082
|
text-transform: inherit;
|
|
1071
|
-
-webkit-appearance: none;
|
|
1072
|
-
vertical-align: top;
|
|
1073
|
-
width: var(--checkbox-size, 40px);
|
|
1074
|
-
height: var(--checkbox-size, 40px);
|
|
1075
|
-
border: 1px solid var(--checkbox-color, currentcolor);
|
|
1076
1083
|
}
|
|
1077
1084
|
.checkbox input:active, .checkbox input:focus {
|
|
1078
1085
|
outline: none;
|
|
@@ -1080,6 +1087,13 @@ div[data-component=TypeTesters] {
|
|
|
1080
1087
|
.checkbox input:not(:disabled) {
|
|
1081
1088
|
cursor: pointer;
|
|
1082
1089
|
}
|
|
1090
|
+
.checkbox input {
|
|
1091
|
+
-webkit-appearance: none;
|
|
1092
|
+
vertical-align: top;
|
|
1093
|
+
width: var(--checkbox-size, 40px);
|
|
1094
|
+
height: var(--checkbox-size, 40px);
|
|
1095
|
+
border: 1px solid var(--checkbox-color, currentcolor);
|
|
1096
|
+
}
|
|
1083
1097
|
.checkbox__icon {
|
|
1084
1098
|
position: absolute;
|
|
1085
1099
|
top: 0;
|
|
@@ -1146,10 +1160,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1146
1160
|
margin: 0;
|
|
1147
1161
|
appearance: none;
|
|
1148
1162
|
text-transform: inherit;
|
|
1149
|
-
padding: 15px 30px;
|
|
1150
|
-
color: var(--button_text_color);
|
|
1151
|
-
background: var(--button_background_color);
|
|
1152
|
-
border: 1px solid var(--button_border_color);
|
|
1153
1163
|
}
|
|
1154
1164
|
.button:active, .button:focus {
|
|
1155
1165
|
outline: none;
|
|
@@ -1157,6 +1167,12 @@ body[data-fontdue-store-modal=open] {
|
|
|
1157
1167
|
.button:not(:disabled) {
|
|
1158
1168
|
cursor: pointer;
|
|
1159
1169
|
}
|
|
1170
|
+
.button {
|
|
1171
|
+
padding: 15px 30px;
|
|
1172
|
+
color: var(--button_text_color);
|
|
1173
|
+
background: var(--button_background_color);
|
|
1174
|
+
border: 1px solid var(--button_border_color);
|
|
1175
|
+
}
|
|
1160
1176
|
.button:hover {
|
|
1161
1177
|
color: var(--button_hover_text_color);
|
|
1162
1178
|
background: var(--button_hover_background_color);
|
|
@@ -1206,12 +1222,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1206
1222
|
margin: 0;
|
|
1207
1223
|
appearance: none;
|
|
1208
1224
|
text-transform: inherit;
|
|
1209
|
-
width: 100%;
|
|
1210
|
-
padding: 20px;
|
|
1211
|
-
text-align: center;
|
|
1212
|
-
background: var(--checkout_button_background_color);
|
|
1213
|
-
border: 1px solid var(--checkout_button_border_color);
|
|
1214
|
-
color: var(--checkout_button_text_color);
|
|
1215
1225
|
}
|
|
1216
1226
|
.store-modal__cart__button:active, .store-modal__cart__button:focus {
|
|
1217
1227
|
outline: none;
|
|
@@ -1219,6 +1229,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
1219
1229
|
.store-modal__cart__button:not(:disabled) {
|
|
1220
1230
|
cursor: pointer;
|
|
1221
1231
|
}
|
|
1232
|
+
.store-modal__cart__button {
|
|
1233
|
+
width: 100%;
|
|
1234
|
+
padding: 20px;
|
|
1235
|
+
text-align: center;
|
|
1236
|
+
background: var(--checkout_button_background_color);
|
|
1237
|
+
border: 1px solid var(--checkout_button_border_color);
|
|
1238
|
+
color: var(--checkout_button_text_color);
|
|
1239
|
+
}
|
|
1222
1240
|
.store-modal__cart__button:hover:not(:disabled) {
|
|
1223
1241
|
background: var(--checkout_button_hover_background_color);
|
|
1224
1242
|
border-color: var(--checkout_button_hover_border_color);
|
|
@@ -1288,8 +1306,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1288
1306
|
margin: 0;
|
|
1289
1307
|
appearance: none;
|
|
1290
1308
|
text-transform: inherit;
|
|
1291
|
-
color: var(--link_color);
|
|
1292
|
-
border-bottom: 1px solid;
|
|
1293
1309
|
}
|
|
1294
1310
|
.store-modal__cart__edit-button:active, .store-modal__cart__edit-button:focus {
|
|
1295
1311
|
outline: none;
|
|
@@ -1297,6 +1313,10 @@ body[data-fontdue-store-modal=open] {
|
|
|
1297
1313
|
.store-modal__cart__edit-button:not(:disabled) {
|
|
1298
1314
|
cursor: pointer;
|
|
1299
1315
|
}
|
|
1316
|
+
.store-modal__cart__edit-button {
|
|
1317
|
+
color: var(--link_color);
|
|
1318
|
+
border-bottom: 1px solid;
|
|
1319
|
+
}
|
|
1300
1320
|
.store-modal__cart__edit-button:hover {
|
|
1301
1321
|
color: var(--link_hover_color);
|
|
1302
1322
|
}
|
|
@@ -1426,7 +1446,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1426
1446
|
margin: 0;
|
|
1427
1447
|
appearance: none;
|
|
1428
1448
|
text-transform: inherit;
|
|
1429
|
-
white-space: nowrap;
|
|
1430
1449
|
}
|
|
1431
1450
|
.store-modal__container__back-button:active, .store-modal__container__back-button:focus {
|
|
1432
1451
|
outline: none;
|
|
@@ -1434,6 +1453,9 @@ body[data-fontdue-store-modal=open] {
|
|
|
1434
1453
|
.store-modal__container__back-button:not(:disabled) {
|
|
1435
1454
|
cursor: pointer;
|
|
1436
1455
|
}
|
|
1456
|
+
.store-modal__container__back-button {
|
|
1457
|
+
white-space: nowrap;
|
|
1458
|
+
}
|
|
1437
1459
|
|
|
1438
1460
|
.store-modal__container__close-button {
|
|
1439
1461
|
background: none;
|
|
@@ -1474,7 +1496,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1474
1496
|
margin: 0;
|
|
1475
1497
|
appearance: none;
|
|
1476
1498
|
text-transform: inherit;
|
|
1477
|
-
margin-right: 15px;
|
|
1478
1499
|
}
|
|
1479
1500
|
.store-modal__container__cart-button:active, .store-modal__container__cart-button:focus {
|
|
1480
1501
|
outline: none;
|
|
@@ -1482,6 +1503,9 @@ body[data-fontdue-store-modal=open] {
|
|
|
1482
1503
|
.store-modal__container__cart-button:not(:disabled) {
|
|
1483
1504
|
cursor: pointer;
|
|
1484
1505
|
}
|
|
1506
|
+
.store-modal__container__cart-button {
|
|
1507
|
+
margin-right: 15px;
|
|
1508
|
+
}
|
|
1485
1509
|
.store-modal__container__cart-button [data-label="Cart Active Indicator"] {
|
|
1486
1510
|
fill: var(--cart_indicator_color);
|
|
1487
1511
|
}
|
|
@@ -1502,6 +1526,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
1502
1526
|
margin: 0;
|
|
1503
1527
|
appearance: none;
|
|
1504
1528
|
text-transform: inherit;
|
|
1529
|
+
}
|
|
1530
|
+
.store-modal__download__button:active, .store-modal__download__button:focus {
|
|
1531
|
+
outline: none;
|
|
1532
|
+
}
|
|
1533
|
+
.store-modal__download__button:not(:disabled) {
|
|
1534
|
+
cursor: pointer;
|
|
1535
|
+
}
|
|
1536
|
+
.store-modal__download__button {
|
|
1505
1537
|
padding: 20px;
|
|
1506
1538
|
padding-right: 40px;
|
|
1507
1539
|
display: inline-block;
|
|
@@ -1510,12 +1542,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1510
1542
|
border: 1px solid var(--download_button_border_color);
|
|
1511
1543
|
color: var(--download_button_text_color);
|
|
1512
1544
|
}
|
|
1513
|
-
.store-modal__download__button:active, .store-modal__download__button:focus {
|
|
1514
|
-
outline: none;
|
|
1515
|
-
}
|
|
1516
|
-
.store-modal__download__button:not(:disabled) {
|
|
1517
|
-
cursor: pointer;
|
|
1518
|
-
}
|
|
1519
1545
|
.store-modal__download__button:hover {
|
|
1520
1546
|
background: var(--download_button_hover_background_color);
|
|
1521
1547
|
border-color: var(--download_button_hover_border_color);
|
|
@@ -1565,18 +1591,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1565
1591
|
margin: 0;
|
|
1566
1592
|
appearance: none;
|
|
1567
1593
|
text-transform: inherit;
|
|
1568
|
-
flex: 1;
|
|
1569
|
-
--border-color: var(--button_border_color);
|
|
1570
|
-
padding: 15px 20px 20px;
|
|
1571
|
-
background: var(--button_background_color);
|
|
1572
|
-
color: var(--button_text_color);
|
|
1573
|
-
overflow: hidden;
|
|
1574
|
-
box-sizing: border-box;
|
|
1575
|
-
z-index: 0;
|
|
1576
|
-
box-shadow: 0 0 0 1px var(--border-color);
|
|
1577
|
-
padding-bottom: 15px;
|
|
1578
|
-
margin-bottom: 1px;
|
|
1579
|
-
margin-right: 1px;
|
|
1580
1594
|
}
|
|
1581
1595
|
.store-modal__family__style-button:active, .store-modal__family__style-button:focus,
|
|
1582
1596
|
.store-modal__family__family-button:active,
|
|
@@ -1590,6 +1604,22 @@ body[data-fontdue-store-modal=open] {
|
|
|
1590
1604
|
.store-modal__family__bundle-button:not(:disabled) {
|
|
1591
1605
|
cursor: pointer;
|
|
1592
1606
|
}
|
|
1607
|
+
.store-modal__family__style-button,
|
|
1608
|
+
.store-modal__family__family-button,
|
|
1609
|
+
.store-modal__family__bundle-button {
|
|
1610
|
+
flex: 1;
|
|
1611
|
+
--border-color: var(--button_border_color);
|
|
1612
|
+
padding: 15px 20px 20px;
|
|
1613
|
+
background: var(--button_background_color);
|
|
1614
|
+
color: var(--button_text_color);
|
|
1615
|
+
overflow: hidden;
|
|
1616
|
+
box-sizing: border-box;
|
|
1617
|
+
z-index: 0;
|
|
1618
|
+
box-shadow: 0 0 0 1px var(--border-color);
|
|
1619
|
+
padding-bottom: 15px;
|
|
1620
|
+
margin-bottom: 1px;
|
|
1621
|
+
margin-right: 1px;
|
|
1622
|
+
}
|
|
1593
1623
|
.store-modal__family__style-button:disabled,
|
|
1594
1624
|
.store-modal__family__family-button:disabled,
|
|
1595
1625
|
.store-modal__family__bundle-button:disabled {
|
|
@@ -1681,12 +1711,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1681
1711
|
margin: 0;
|
|
1682
1712
|
appearance: none;
|
|
1683
1713
|
text-transform: inherit;
|
|
1684
|
-
width: 100%;
|
|
1685
|
-
border: 1px solid var(--secondary_text_color);
|
|
1686
|
-
padding: 20px;
|
|
1687
|
-
display: flex;
|
|
1688
|
-
align-items: center;
|
|
1689
|
-
margin-bottom: 20px;
|
|
1690
1714
|
}
|
|
1691
1715
|
.store-modal__index-item__button:active, .store-modal__index-item__button:focus {
|
|
1692
1716
|
outline: none;
|
|
@@ -1694,6 +1718,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
1694
1718
|
.store-modal__index-item__button:not(:disabled) {
|
|
1695
1719
|
cursor: pointer;
|
|
1696
1720
|
}
|
|
1721
|
+
.store-modal__index-item__button {
|
|
1722
|
+
width: 100%;
|
|
1723
|
+
border: 1px solid var(--secondary_text_color);
|
|
1724
|
+
padding: 20px;
|
|
1725
|
+
display: flex;
|
|
1726
|
+
align-items: center;
|
|
1727
|
+
margin-bottom: 20px;
|
|
1728
|
+
}
|
|
1697
1729
|
|
|
1698
1730
|
.store-modal__index-item__text-container {
|
|
1699
1731
|
display: block;
|
|
@@ -1753,6 +1785,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
1753
1785
|
margin: 0;
|
|
1754
1786
|
appearance: none;
|
|
1755
1787
|
text-transform: inherit;
|
|
1788
|
+
}
|
|
1789
|
+
.store-modal__license-selection__license-button:active, .store-modal__license-selection__license-button:focus {
|
|
1790
|
+
outline: none;
|
|
1791
|
+
}
|
|
1792
|
+
.store-modal__license-selection__license-button:not(:disabled) {
|
|
1793
|
+
cursor: pointer;
|
|
1794
|
+
}
|
|
1795
|
+
.store-modal__license-selection__license-button {
|
|
1756
1796
|
border: 1px solid var(--button_border_color);
|
|
1757
1797
|
background: var(--button_background_color);
|
|
1758
1798
|
color: var(--button_text_color);
|
|
@@ -1763,12 +1803,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1763
1803
|
display: flex;
|
|
1764
1804
|
align-items: stretch;
|
|
1765
1805
|
}
|
|
1766
|
-
.store-modal__license-selection__license-button:active, .store-modal__license-selection__license-button:focus {
|
|
1767
|
-
outline: none;
|
|
1768
|
-
}
|
|
1769
|
-
.store-modal__license-selection__license-button:not(:disabled) {
|
|
1770
|
-
cursor: pointer;
|
|
1771
|
-
}
|
|
1772
1806
|
.store-modal__license-selection__license-button:hover:not(:disabled) {
|
|
1773
1807
|
border-color: var(--button_hover_border_color);
|
|
1774
1808
|
background: var(--button_hover_background_color);
|
|
@@ -1934,6 +1968,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
1934
1968
|
margin: 0;
|
|
1935
1969
|
appearance: none;
|
|
1936
1970
|
text-transform: inherit;
|
|
1971
|
+
}
|
|
1972
|
+
.store-modal__order-variable-selection__button:active, .store-modal__order-variable-selection__button:focus {
|
|
1973
|
+
outline: none;
|
|
1974
|
+
}
|
|
1975
|
+
.store-modal__order-variable-selection__button:not(:disabled) {
|
|
1976
|
+
cursor: pointer;
|
|
1977
|
+
}
|
|
1978
|
+
.store-modal__order-variable-selection__button {
|
|
1937
1979
|
border: 1px solid var(--button_border_color);
|
|
1938
1980
|
background: var(--button_background_color);
|
|
1939
1981
|
color: var(--button_text_color);
|
|
@@ -1944,12 +1986,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1944
1986
|
display: flex;
|
|
1945
1987
|
align-items: stretch;
|
|
1946
1988
|
}
|
|
1947
|
-
.store-modal__order-variable-selection__button:active, .store-modal__order-variable-selection__button:focus {
|
|
1948
|
-
outline: none;
|
|
1949
|
-
}
|
|
1950
|
-
.store-modal__order-variable-selection__button:not(:disabled) {
|
|
1951
|
-
cursor: pointer;
|
|
1952
|
-
}
|
|
1953
1989
|
.store-modal__order-variable-selection__button:hover:not(:disabled) {
|
|
1954
1990
|
border-color: var(--button_hover_border_color);
|
|
1955
1991
|
background: var(--button_hover_background_color);
|
|
@@ -2037,8 +2073,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2037
2073
|
margin: 0;
|
|
2038
2074
|
appearance: none;
|
|
2039
2075
|
text-transform: inherit;
|
|
2040
|
-
color: var(--link_color);
|
|
2041
|
-
border-bottom: 1px solid var(--link_color);
|
|
2042
2076
|
}
|
|
2043
2077
|
.store-modal__order-variable-selection__ghost-remove:active, .store-modal__order-variable-selection__ghost-remove:focus {
|
|
2044
2078
|
outline: none;
|
|
@@ -2046,6 +2080,10 @@ body[data-fontdue-store-modal=open] {
|
|
|
2046
2080
|
.store-modal__order-variable-selection__ghost-remove:not(:disabled) {
|
|
2047
2081
|
cursor: pointer;
|
|
2048
2082
|
}
|
|
2083
|
+
.store-modal__order-variable-selection__ghost-remove {
|
|
2084
|
+
color: var(--link_color);
|
|
2085
|
+
border-bottom: 1px solid var(--link_color);
|
|
2086
|
+
}
|
|
2049
2087
|
.store-modal__order-variable-selection__ghost-remove:hover {
|
|
2050
2088
|
color: var(--link_hover_color);
|
|
2051
2089
|
border-bottom-color: var(--link_hover_color);
|
|
@@ -2122,7 +2160,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2122
2160
|
margin: 0;
|
|
2123
2161
|
appearance: none;
|
|
2124
2162
|
text-transform: inherit;
|
|
2125
|
-
text-decoration: underline;
|
|
2126
2163
|
}
|
|
2127
2164
|
.store-modal__product-summary__error-button:active, .store-modal__product-summary__error-button:focus {
|
|
2128
2165
|
outline: none;
|
|
@@ -2130,6 +2167,9 @@ body[data-fontdue-store-modal=open] {
|
|
|
2130
2167
|
.store-modal__product-summary__error-button:not(:disabled) {
|
|
2131
2168
|
cursor: pointer;
|
|
2132
2169
|
}
|
|
2170
|
+
.store-modal__product-summary__error-button {
|
|
2171
|
+
text-decoration: underline;
|
|
2172
|
+
}
|
|
2133
2173
|
|
|
2134
2174
|
.store-modal__product-summary__add-to-cart-button {
|
|
2135
2175
|
background: none;
|
|
@@ -2143,12 +2183,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2143
2183
|
margin: 0;
|
|
2144
2184
|
appearance: none;
|
|
2145
2185
|
text-transform: inherit;
|
|
2146
|
-
padding: 10px 20px;
|
|
2147
|
-
white-space: nowrap;
|
|
2148
|
-
background: var(--add_to_cart_button_background_color);
|
|
2149
|
-
border: 1px solid var(--add_to_cart_button_border_color);
|
|
2150
|
-
color: var(--add_to_cart_button_text_color);
|
|
2151
|
-
text-align: center;
|
|
2152
2186
|
}
|
|
2153
2187
|
.store-modal__product-summary__add-to-cart-button:active, .store-modal__product-summary__add-to-cart-button:focus {
|
|
2154
2188
|
outline: none;
|
|
@@ -2156,6 +2190,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
2156
2190
|
.store-modal__product-summary__add-to-cart-button:not(:disabled) {
|
|
2157
2191
|
cursor: pointer;
|
|
2158
2192
|
}
|
|
2193
|
+
.store-modal__product-summary__add-to-cart-button {
|
|
2194
|
+
padding: 10px 20px;
|
|
2195
|
+
white-space: nowrap;
|
|
2196
|
+
background: var(--add_to_cart_button_background_color);
|
|
2197
|
+
border: 1px solid var(--add_to_cart_button_border_color);
|
|
2198
|
+
color: var(--add_to_cart_button_text_color);
|
|
2199
|
+
text-align: center;
|
|
2200
|
+
}
|
|
2159
2201
|
.store-modal__product-summary__add-to-cart-button:hover:not(:disabled) {
|
|
2160
2202
|
background: var(--add_to_cart_button_hover_background_color);
|
|
2161
2203
|
border: 1px solid var(--add_to_cart_button_hover_border_color);
|
|
@@ -2227,12 +2269,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2227
2269
|
margin: 0;
|
|
2228
2270
|
appearance: none;
|
|
2229
2271
|
text-transform: inherit;
|
|
2230
|
-
background: var(--button_background_color);
|
|
2231
|
-
border: 1px solid var(--button_border_color);
|
|
2232
|
-
color: var(--button_text_color);
|
|
2233
|
-
padding: 10px 20px;
|
|
2234
|
-
width: 100%;
|
|
2235
|
-
text-align: center;
|
|
2236
2272
|
}
|
|
2237
2273
|
.cart-additions__expand-button:active, .cart-additions__expand-button:focus {
|
|
2238
2274
|
outline: none;
|
|
@@ -2240,6 +2276,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
2240
2276
|
.cart-additions__expand-button:not(:disabled) {
|
|
2241
2277
|
cursor: pointer;
|
|
2242
2278
|
}
|
|
2279
|
+
.cart-additions__expand-button {
|
|
2280
|
+
background: var(--button_background_color);
|
|
2281
|
+
border: 1px solid var(--button_border_color);
|
|
2282
|
+
color: var(--button_text_color);
|
|
2283
|
+
padding: 10px 20px;
|
|
2284
|
+
width: 100%;
|
|
2285
|
+
text-align: center;
|
|
2286
|
+
}
|
|
2243
2287
|
.cart-additions__expand-button:hover {
|
|
2244
2288
|
background: var(--button_hover_background_color);
|
|
2245
2289
|
border-color: var(--button_hover_border_color);
|
|
@@ -2280,7 +2324,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2280
2324
|
margin: 0;
|
|
2281
2325
|
appearance: none;
|
|
2282
2326
|
text-transform: inherit;
|
|
2283
|
-
z-index: 2;
|
|
2284
2327
|
}
|
|
2285
2328
|
.cart-additions__button:active, .cart-additions__button:focus {
|
|
2286
2329
|
outline: none;
|
|
@@ -2288,6 +2331,9 @@ body[data-fontdue-store-modal=open] {
|
|
|
2288
2331
|
.cart-additions__button:not(:disabled) {
|
|
2289
2332
|
cursor: pointer;
|
|
2290
2333
|
}
|
|
2334
|
+
.cart-additions__button {
|
|
2335
|
+
z-index: 2;
|
|
2336
|
+
}
|
|
2291
2337
|
.cart-additions__button:disabled {
|
|
2292
2338
|
z-index: 0;
|
|
2293
2339
|
opacity: 0.5;
|
|
@@ -2520,7 +2566,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2520
2566
|
margin: 0;
|
|
2521
2567
|
appearance: none;
|
|
2522
2568
|
text-transform: inherit;
|
|
2523
|
-
padding: 10px;
|
|
2524
2569
|
}
|
|
2525
2570
|
.cart-item__license-variable__text-input-button:active, .cart-item__license-variable__text-input-button:focus {
|
|
2526
2571
|
outline: none;
|
|
@@ -2528,6 +2573,9 @@ body[data-fontdue-store-modal=open] {
|
|
|
2528
2573
|
.cart-item__license-variable__text-input-button:not(:disabled) {
|
|
2529
2574
|
cursor: pointer;
|
|
2530
2575
|
}
|
|
2576
|
+
.cart-item__license-variable__text-input-button {
|
|
2577
|
+
padding: 10px;
|
|
2578
|
+
}
|
|
2531
2579
|
.cart-item__license-variable__text-input-button span {
|
|
2532
2580
|
margin-left: 0.5em;
|
|
2533
2581
|
color: var(--text-input-edit-color, var(--secondary_text_color));
|
|
@@ -2574,9 +2622,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2574
2622
|
margin: 0;
|
|
2575
2623
|
appearance: none;
|
|
2576
2624
|
text-transform: inherit;
|
|
2577
|
-
color: var(--additional-license-color, var(--link_color));
|
|
2578
|
-
border-bottom: 1px solid var(--additional-license-border-color, var(--link_color));
|
|
2579
|
-
margin: 0 5px;
|
|
2580
2625
|
}
|
|
2581
2626
|
.cart-item__additional-licenses__item:active, .cart-item__additional-licenses__item:focus {
|
|
2582
2627
|
outline: none;
|
|
@@ -2584,6 +2629,11 @@ body[data-fontdue-store-modal=open] {
|
|
|
2584
2629
|
.cart-item__additional-licenses__item:not(:disabled) {
|
|
2585
2630
|
cursor: pointer;
|
|
2586
2631
|
}
|
|
2632
|
+
.cart-item__additional-licenses__item {
|
|
2633
|
+
color: var(--additional-license-color, var(--link_color));
|
|
2634
|
+
border-bottom: 1px solid var(--additional-license-border-color, var(--link_color));
|
|
2635
|
+
margin: 0 5px;
|
|
2636
|
+
}
|
|
2587
2637
|
.cart-item__additional-licenses__item:hover {
|
|
2588
2638
|
color: var(--link_hover_color);
|
|
2589
2639
|
border-color: var(--link_hover_color);
|
|
@@ -2619,9 +2669,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2619
2669
|
margin: 0;
|
|
2620
2670
|
appearance: none;
|
|
2621
2671
|
text-transform: inherit;
|
|
2622
|
-
margin-left: 10px;
|
|
2623
|
-
margin-right: -3px;
|
|
2624
|
-
vertical-align: middle;
|
|
2625
2672
|
}
|
|
2626
2673
|
.cart__remove-discount-button:active, .cart__remove-discount-button:focus {
|
|
2627
2674
|
outline: none;
|
|
@@ -2629,6 +2676,11 @@ body[data-fontdue-store-modal=open] {
|
|
|
2629
2676
|
.cart__remove-discount-button:not(:disabled) {
|
|
2630
2677
|
cursor: pointer;
|
|
2631
2678
|
}
|
|
2679
|
+
.cart__remove-discount-button {
|
|
2680
|
+
margin-left: 10px;
|
|
2681
|
+
margin-right: -3px;
|
|
2682
|
+
vertical-align: middle;
|
|
2683
|
+
}
|
|
2632
2684
|
.cart__remove-discount-button .icon {
|
|
2633
2685
|
width: 16px;
|
|
2634
2686
|
height: 16px;
|
|
@@ -2668,6 +2720,11 @@ body[data-fontdue-store-modal=open] {
|
|
|
2668
2720
|
margin: 0;
|
|
2669
2721
|
appearance: none;
|
|
2670
2722
|
text-transform: inherit;
|
|
2723
|
+
}
|
|
2724
|
+
.cart__share-url-input:active, .cart__share-url-input:focus {
|
|
2725
|
+
outline: none;
|
|
2726
|
+
}
|
|
2727
|
+
.cart__share-url-input {
|
|
2671
2728
|
min-width: 0;
|
|
2672
2729
|
flex: 1 1 0;
|
|
2673
2730
|
color: currentcolor;
|
|
@@ -2676,9 +2733,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2676
2733
|
border: 1px solid var(--secondary_background_color);
|
|
2677
2734
|
border-right: none;
|
|
2678
2735
|
}
|
|
2679
|
-
.cart__share-url-input:active, .cart__share-url-input:focus {
|
|
2680
|
-
outline: none;
|
|
2681
|
-
}
|
|
2682
2736
|
.cart__share-url-input:focus {
|
|
2683
2737
|
border-color: var(--primary_text_color);
|
|
2684
2738
|
}
|
|
@@ -2703,11 +2757,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2703
2757
|
margin: 0;
|
|
2704
2758
|
appearance: none;
|
|
2705
2759
|
text-transform: inherit;
|
|
2706
|
-
text-align: center;
|
|
2707
|
-
background: var(--button_background_color);
|
|
2708
|
-
border: 1px solid var(--button_border_color);
|
|
2709
|
-
color: var(--button_text_color);
|
|
2710
|
-
padding: 10px 20px;
|
|
2711
2760
|
}
|
|
2712
2761
|
.cart__share__button:active, .cart__share__button:focus {
|
|
2713
2762
|
outline: none;
|
|
@@ -2715,6 +2764,13 @@ body[data-fontdue-store-modal=open] {
|
|
|
2715
2764
|
.cart__share__button:not(:disabled) {
|
|
2716
2765
|
cursor: pointer;
|
|
2717
2766
|
}
|
|
2767
|
+
.cart__share__button {
|
|
2768
|
+
text-align: center;
|
|
2769
|
+
background: var(--button_background_color);
|
|
2770
|
+
border: 1px solid var(--button_border_color);
|
|
2771
|
+
color: var(--button_text_color);
|
|
2772
|
+
padding: 10px 20px;
|
|
2773
|
+
}
|
|
2718
2774
|
.cart__share__button:hover {
|
|
2719
2775
|
background: var(--button_hover_background_color);
|
|
2720
2776
|
border-color: var(--button_hover_border_color);
|
|
@@ -2803,9 +2859,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2803
2859
|
margin: 0;
|
|
2804
2860
|
appearance: none;
|
|
2805
2861
|
text-transform: inherit;
|
|
2806
|
-
width: 100%;
|
|
2807
|
-
display: flex;
|
|
2808
|
-
align-items: center;
|
|
2809
2862
|
}
|
|
2810
2863
|
.checkout-modal__customer-info__button:active, .checkout-modal__customer-info__button:focus {
|
|
2811
2864
|
outline: none;
|
|
@@ -2813,6 +2866,11 @@ body[data-fontdue-store-modal=open] {
|
|
|
2813
2866
|
.checkout-modal__customer-info__button:not(:disabled) {
|
|
2814
2867
|
cursor: pointer;
|
|
2815
2868
|
}
|
|
2869
|
+
.checkout-modal__customer-info__button {
|
|
2870
|
+
width: 100%;
|
|
2871
|
+
display: flex;
|
|
2872
|
+
align-items: center;
|
|
2873
|
+
}
|
|
2816
2874
|
.checkout-modal__customer-info__button .icon {
|
|
2817
2875
|
display: none;
|
|
2818
2876
|
}
|
|
@@ -2864,6 +2922,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
2864
2922
|
margin: 0;
|
|
2865
2923
|
appearance: none;
|
|
2866
2924
|
text-transform: inherit;
|
|
2925
|
+
}
|
|
2926
|
+
.checkout-modal__button:active, .checkout-modal__button:focus {
|
|
2927
|
+
outline: none;
|
|
2928
|
+
}
|
|
2929
|
+
.checkout-modal__button:not(:disabled) {
|
|
2930
|
+
cursor: pointer;
|
|
2931
|
+
}
|
|
2932
|
+
.checkout-modal__button {
|
|
2867
2933
|
padding: 20px;
|
|
2868
2934
|
border: 1px solid;
|
|
2869
2935
|
text-align: right;
|
|
@@ -2873,12 +2939,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2873
2939
|
border-color: var(--checkout_button_border_color);
|
|
2874
2940
|
color: var(--checkout_button_text_color);
|
|
2875
2941
|
}
|
|
2876
|
-
.checkout-modal__button:active, .checkout-modal__button:focus {
|
|
2877
|
-
outline: none;
|
|
2878
|
-
}
|
|
2879
|
-
.checkout-modal__button:not(:disabled) {
|
|
2880
|
-
cursor: pointer;
|
|
2881
|
-
}
|
|
2882
2942
|
.checkout-modal__button[disabled] {
|
|
2883
2943
|
opacity: 0.5;
|
|
2884
2944
|
pointer-events: none;
|
|
@@ -2915,11 +2975,13 @@ body[data-fontdue-store-modal=open] {
|
|
|
2915
2975
|
|
|
2916
2976
|
.react-select {
|
|
2917
2977
|
margin-top: 5px;
|
|
2918
|
-
/* specificity to override defaults */
|
|
2919
2978
|
}
|
|
2920
2979
|
.react-select__label-wrapper {
|
|
2921
2980
|
color: var(--secondary_text_color);
|
|
2922
2981
|
}
|
|
2982
|
+
.react-select {
|
|
2983
|
+
/* specificity to override defaults */
|
|
2984
|
+
}
|
|
2923
2985
|
.react-select .react-select__control {
|
|
2924
2986
|
font-size: 20px;
|
|
2925
2987
|
border-radius: 0;
|
|
@@ -2942,7 +3004,7 @@ body[data-fontdue-store-modal=open] {
|
|
|
2942
3004
|
color: var(--primary_text_color);
|
|
2943
3005
|
}
|
|
2944
3006
|
.react-select .react-select__option--is-selected, .react-select .react-select__option--is-focused, .react-select .react-select__option:hover, .react-select .react-select__option:active {
|
|
2945
|
-
background: var(--secondary_background_color,
|
|
3007
|
+
background: var(--secondary_background_color, grey);
|
|
2946
3008
|
color: var(--primary_text_color);
|
|
2947
3009
|
}
|
|
2948
3010
|
.react-select .react-select__input {
|
|
@@ -2956,7 +3018,7 @@ body[data-fontdue-store-modal=open] {
|
|
|
2956
3018
|
transition: none;
|
|
2957
3019
|
}
|
|
2958
3020
|
.react-select__errors {
|
|
2959
|
-
color:
|
|
3021
|
+
color: red;
|
|
2960
3022
|
margin-top: 10px;
|
|
2961
3023
|
}
|
|
2962
3024
|
|
|
@@ -2986,14 +3048,16 @@ textarea.text-field__input {
|
|
|
2986
3048
|
margin: 0;
|
|
2987
3049
|
appearance: none;
|
|
2988
3050
|
text-transform: inherit;
|
|
3051
|
+
}
|
|
3052
|
+
.text-field__input:active, .text-field__input:focus {
|
|
3053
|
+
outline: none;
|
|
3054
|
+
}
|
|
3055
|
+
.text-field__input {
|
|
2989
3056
|
flex: 1;
|
|
2990
3057
|
color: currentcolor;
|
|
2991
3058
|
padding: 12px;
|
|
2992
3059
|
background: var(--secondary_background_color);
|
|
2993
3060
|
}
|
|
2994
|
-
.text-field__input:active, .text-field__input:focus {
|
|
2995
|
-
outline: none;
|
|
2996
|
-
}
|
|
2997
3061
|
.text-field__input::placeholder {
|
|
2998
3062
|
color: var(--secondary_text_color);
|
|
2999
3063
|
}
|