fontdue-js 2.18.4 → 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 +16 -0
- package/dist/__generated__/AddToCartBannerQuery.graphql.d.ts +1 -1
- package/dist/__generated__/AddToCartBannerQuery.graphql.js +22 -7
- package/dist/__generated__/AddToCartBanner_item.graphql.d.ts +10 -1
- package/dist/__generated__/AddToCartBanner_item.graphql.js +19 -4
- package/dist/__generated__/AddToCartBanner_order.graphql.d.ts +10 -1
- package/dist/__generated__/AddToCartBanner_order.graphql.js +18 -3
- package/dist/__generated__/CartItemProduct_product.graphql.d.ts +4 -1
- package/dist/__generated__/CartItemProduct_product.graphql.js +15 -5
- package/dist/__generated__/CartOrderCompleteOrderMutation.graphql.d.ts +1 -1
- package/dist/__generated__/CartOrderCompleteOrderMutation.graphql.js +27 -5
- package/dist/__generated__/CartOrderRemoveDiscountMutation.graphql.d.ts +1 -1
- package/dist/__generated__/CartOrderRemoveDiscountMutation.graphql.js +27 -5
- package/dist/__generated__/CartOrderUpdateMutation.graphql.d.ts +1 -1
- package/dist/__generated__/CartOrderUpdateMutation.graphql.js +27 -5
- package/dist/__generated__/CartQuery.graphql.d.ts +1 -1
- package/dist/__generated__/CartQuery.graphql.js +27 -5
- package/dist/__generated__/CartStateRemoveDiscountMutation.graphql.d.ts +1 -1
- package/dist/__generated__/CartStateRemoveDiscountMutation.graphql.js +15 -3
- package/dist/__generated__/CartStateUpdateMutation.graphql.d.ts +1 -1
- package/dist/__generated__/CartStateUpdateMutation.graphql.js +27 -5
- package/dist/__generated__/CartTotals_order.graphql.d.ts +3 -1
- package/dist/__generated__/CartTotals_order.graphql.js +14 -2
- package/dist/__generated__/CheckoutUpdateCustomerMutation.graphql.d.ts +1 -1
- package/dist/__generated__/CheckoutUpdateCustomerMutation.graphql.js +27 -5
- package/dist/__generated__/CheckoutUpdateOrderMutation.graphql.d.ts +1 -1
- package/dist/__generated__/CheckoutUpdateOrderMutation.graphql.js +27 -5
- package/dist/__generated__/CouponCodeInputApplyCouponMutation.graphql.d.ts +1 -1
- package/dist/__generated__/CouponCodeInputApplyCouponMutation.graphql.js +15 -3
- package/dist/__generated__/PrecartAddToCartMutation.graphql.d.ts +1 -1
- package/dist/__generated__/PrecartAddToCartMutation.graphql.js +32 -10
- package/dist/__generated__/StoreModalCartQuery.graphql.d.ts +1 -1
- package/dist/__generated__/StoreModalCartQuery.graphql.js +38 -16
- package/dist/__generated__/StoreModalFamily_collection.graphql.d.ts +2 -1
- package/dist/__generated__/StoreModalFamily_collection.graphql.js +9 -3
- package/dist/__generated__/StoreModalProductQuery.graphql.d.ts +1 -1
- package/dist/__generated__/StoreModalProductQuery.graphql.js +10 -4
- package/dist/__generated__/StoreModalProductRefetchQuery.graphql.d.ts +1 -1
- package/dist/__generated__/StoreModalProductRefetchQuery.graphql.js +10 -4
- package/dist/__generated__/StoreModalUnifiedCheckoutUpdateOrderMutation.graphql.d.ts +1 -1
- package/dist/__generated__/StoreModalUnifiedCheckoutUpdateOrderMutation.graphql.js +15 -3
- package/dist/__generated__/TestFontsFormUpdateCustomerMutation.graphql.d.ts +1 -1
- package/dist/__generated__/TestFontsFormUpdateCustomerMutation.graphql.js +27 -5
- package/dist/__tests__/collectionBundleSelection.test.d.ts +1 -0
- package/dist/__tests__/collectionBundleSelection.test.js +1181 -0
- package/dist/components/AddToCartBanner/index.js +7 -1
- package/dist/components/Cart/CartItem/CartItemProduct.js +3 -2
- package/dist/components/Cart/CartTotals.js +7 -7
- package/dist/components/CharacterViewer/index.js +53 -37
- package/dist/components/CorsErrorModal.d.ts +1 -0
- package/dist/components/CorsErrorModal.js +99 -0
- package/dist/components/OrderVariableSelection/OrderVariableSelectionRedux.js +2 -1
- package/dist/components/StoreModal/StoreModalFamily.js +2 -2
- package/dist/corsError.d.ts +5 -0
- package/dist/corsError.js +55 -0
- package/dist/fontdue.css +194 -126
- package/dist/reducer.js +4 -0
- package/dist/relay/environment.js +33 -19
- 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);
|
|
@@ -868,6 +880,10 @@ div[data-component=TypeTesters] {
|
|
|
868
880
|
--section_spacing: 60px;
|
|
869
881
|
}
|
|
870
882
|
|
|
883
|
+
.price {
|
|
884
|
+
font-variant-numeric: tabular-nums;
|
|
885
|
+
}
|
|
886
|
+
|
|
871
887
|
.character-viewer {
|
|
872
888
|
--size: calc(var(--monitor-width) * 1 / 2);
|
|
873
889
|
--half-gap: calc(var(--line-gap) / 2);
|
|
@@ -1064,11 +1080,6 @@ div[data-component=TypeTesters] {
|
|
|
1064
1080
|
margin: 0;
|
|
1065
1081
|
appearance: none;
|
|
1066
1082
|
text-transform: inherit;
|
|
1067
|
-
-webkit-appearance: none;
|
|
1068
|
-
vertical-align: top;
|
|
1069
|
-
width: var(--checkbox-size, 40px);
|
|
1070
|
-
height: var(--checkbox-size, 40px);
|
|
1071
|
-
border: 1px solid var(--checkbox-color, currentcolor);
|
|
1072
1083
|
}
|
|
1073
1084
|
.checkbox input:active, .checkbox input:focus {
|
|
1074
1085
|
outline: none;
|
|
@@ -1076,6 +1087,13 @@ div[data-component=TypeTesters] {
|
|
|
1076
1087
|
.checkbox input:not(:disabled) {
|
|
1077
1088
|
cursor: pointer;
|
|
1078
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
|
+
}
|
|
1079
1097
|
.checkbox__icon {
|
|
1080
1098
|
position: absolute;
|
|
1081
1099
|
top: 0;
|
|
@@ -1142,10 +1160,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1142
1160
|
margin: 0;
|
|
1143
1161
|
appearance: none;
|
|
1144
1162
|
text-transform: inherit;
|
|
1145
|
-
padding: 15px 30px;
|
|
1146
|
-
color: var(--button_text_color);
|
|
1147
|
-
background: var(--button_background_color);
|
|
1148
|
-
border: 1px solid var(--button_border_color);
|
|
1149
1163
|
}
|
|
1150
1164
|
.button:active, .button:focus {
|
|
1151
1165
|
outline: none;
|
|
@@ -1153,6 +1167,12 @@ body[data-fontdue-store-modal=open] {
|
|
|
1153
1167
|
.button:not(:disabled) {
|
|
1154
1168
|
cursor: pointer;
|
|
1155
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
|
+
}
|
|
1156
1176
|
.button:hover {
|
|
1157
1177
|
color: var(--button_hover_text_color);
|
|
1158
1178
|
background: var(--button_hover_background_color);
|
|
@@ -1202,12 +1222,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1202
1222
|
margin: 0;
|
|
1203
1223
|
appearance: none;
|
|
1204
1224
|
text-transform: inherit;
|
|
1205
|
-
width: 100%;
|
|
1206
|
-
padding: 20px;
|
|
1207
|
-
text-align: center;
|
|
1208
|
-
background: var(--checkout_button_background_color);
|
|
1209
|
-
border: 1px solid var(--checkout_button_border_color);
|
|
1210
|
-
color: var(--checkout_button_text_color);
|
|
1211
1225
|
}
|
|
1212
1226
|
.store-modal__cart__button:active, .store-modal__cart__button:focus {
|
|
1213
1227
|
outline: none;
|
|
@@ -1215,6 +1229,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
1215
1229
|
.store-modal__cart__button:not(:disabled) {
|
|
1216
1230
|
cursor: pointer;
|
|
1217
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
|
+
}
|
|
1218
1240
|
.store-modal__cart__button:hover:not(:disabled) {
|
|
1219
1241
|
background: var(--checkout_button_hover_background_color);
|
|
1220
1242
|
border-color: var(--checkout_button_hover_border_color);
|
|
@@ -1284,8 +1306,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1284
1306
|
margin: 0;
|
|
1285
1307
|
appearance: none;
|
|
1286
1308
|
text-transform: inherit;
|
|
1287
|
-
color: var(--link_color);
|
|
1288
|
-
border-bottom: 1px solid;
|
|
1289
1309
|
}
|
|
1290
1310
|
.store-modal__cart__edit-button:active, .store-modal__cart__edit-button:focus {
|
|
1291
1311
|
outline: none;
|
|
@@ -1293,6 +1313,10 @@ body[data-fontdue-store-modal=open] {
|
|
|
1293
1313
|
.store-modal__cart__edit-button:not(:disabled) {
|
|
1294
1314
|
cursor: pointer;
|
|
1295
1315
|
}
|
|
1316
|
+
.store-modal__cart__edit-button {
|
|
1317
|
+
color: var(--link_color);
|
|
1318
|
+
border-bottom: 1px solid;
|
|
1319
|
+
}
|
|
1296
1320
|
.store-modal__cart__edit-button:hover {
|
|
1297
1321
|
color: var(--link_hover_color);
|
|
1298
1322
|
}
|
|
@@ -1422,7 +1446,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1422
1446
|
margin: 0;
|
|
1423
1447
|
appearance: none;
|
|
1424
1448
|
text-transform: inherit;
|
|
1425
|
-
white-space: nowrap;
|
|
1426
1449
|
}
|
|
1427
1450
|
.store-modal__container__back-button:active, .store-modal__container__back-button:focus {
|
|
1428
1451
|
outline: none;
|
|
@@ -1430,6 +1453,9 @@ body[data-fontdue-store-modal=open] {
|
|
|
1430
1453
|
.store-modal__container__back-button:not(:disabled) {
|
|
1431
1454
|
cursor: pointer;
|
|
1432
1455
|
}
|
|
1456
|
+
.store-modal__container__back-button {
|
|
1457
|
+
white-space: nowrap;
|
|
1458
|
+
}
|
|
1433
1459
|
|
|
1434
1460
|
.store-modal__container__close-button {
|
|
1435
1461
|
background: none;
|
|
@@ -1470,7 +1496,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1470
1496
|
margin: 0;
|
|
1471
1497
|
appearance: none;
|
|
1472
1498
|
text-transform: inherit;
|
|
1473
|
-
margin-right: 15px;
|
|
1474
1499
|
}
|
|
1475
1500
|
.store-modal__container__cart-button:active, .store-modal__container__cart-button:focus {
|
|
1476
1501
|
outline: none;
|
|
@@ -1478,6 +1503,9 @@ body[data-fontdue-store-modal=open] {
|
|
|
1478
1503
|
.store-modal__container__cart-button:not(:disabled) {
|
|
1479
1504
|
cursor: pointer;
|
|
1480
1505
|
}
|
|
1506
|
+
.store-modal__container__cart-button {
|
|
1507
|
+
margin-right: 15px;
|
|
1508
|
+
}
|
|
1481
1509
|
.store-modal__container__cart-button [data-label="Cart Active Indicator"] {
|
|
1482
1510
|
fill: var(--cart_indicator_color);
|
|
1483
1511
|
}
|
|
@@ -1498,6 +1526,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
1498
1526
|
margin: 0;
|
|
1499
1527
|
appearance: none;
|
|
1500
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 {
|
|
1501
1537
|
padding: 20px;
|
|
1502
1538
|
padding-right: 40px;
|
|
1503
1539
|
display: inline-block;
|
|
@@ -1506,12 +1542,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1506
1542
|
border: 1px solid var(--download_button_border_color);
|
|
1507
1543
|
color: var(--download_button_text_color);
|
|
1508
1544
|
}
|
|
1509
|
-
.store-modal__download__button:active, .store-modal__download__button:focus {
|
|
1510
|
-
outline: none;
|
|
1511
|
-
}
|
|
1512
|
-
.store-modal__download__button:not(:disabled) {
|
|
1513
|
-
cursor: pointer;
|
|
1514
|
-
}
|
|
1515
1545
|
.store-modal__download__button:hover {
|
|
1516
1546
|
background: var(--download_button_hover_background_color);
|
|
1517
1547
|
border-color: var(--download_button_hover_border_color);
|
|
@@ -1561,18 +1591,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1561
1591
|
margin: 0;
|
|
1562
1592
|
appearance: none;
|
|
1563
1593
|
text-transform: inherit;
|
|
1564
|
-
flex: 1;
|
|
1565
|
-
--border-color: var(--button_border_color);
|
|
1566
|
-
padding: 15px 20px 20px;
|
|
1567
|
-
background: var(--button_background_color);
|
|
1568
|
-
color: var(--button_text_color);
|
|
1569
|
-
overflow: hidden;
|
|
1570
|
-
box-sizing: border-box;
|
|
1571
|
-
z-index: 0;
|
|
1572
|
-
box-shadow: 0 0 0 1px var(--border-color);
|
|
1573
|
-
padding-bottom: 15px;
|
|
1574
|
-
margin-bottom: 1px;
|
|
1575
|
-
margin-right: 1px;
|
|
1576
1594
|
}
|
|
1577
1595
|
.store-modal__family__style-button:active, .store-modal__family__style-button:focus,
|
|
1578
1596
|
.store-modal__family__family-button:active,
|
|
@@ -1586,6 +1604,22 @@ body[data-fontdue-store-modal=open] {
|
|
|
1586
1604
|
.store-modal__family__bundle-button:not(:disabled) {
|
|
1587
1605
|
cursor: pointer;
|
|
1588
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
|
+
}
|
|
1589
1623
|
.store-modal__family__style-button:disabled,
|
|
1590
1624
|
.store-modal__family__family-button:disabled,
|
|
1591
1625
|
.store-modal__family__bundle-button:disabled {
|
|
@@ -1677,12 +1711,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1677
1711
|
margin: 0;
|
|
1678
1712
|
appearance: none;
|
|
1679
1713
|
text-transform: inherit;
|
|
1680
|
-
width: 100%;
|
|
1681
|
-
border: 1px solid var(--secondary_text_color);
|
|
1682
|
-
padding: 20px;
|
|
1683
|
-
display: flex;
|
|
1684
|
-
align-items: center;
|
|
1685
|
-
margin-bottom: 20px;
|
|
1686
1714
|
}
|
|
1687
1715
|
.store-modal__index-item__button:active, .store-modal__index-item__button:focus {
|
|
1688
1716
|
outline: none;
|
|
@@ -1690,6 +1718,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
1690
1718
|
.store-modal__index-item__button:not(:disabled) {
|
|
1691
1719
|
cursor: pointer;
|
|
1692
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
|
+
}
|
|
1693
1729
|
|
|
1694
1730
|
.store-modal__index-item__text-container {
|
|
1695
1731
|
display: block;
|
|
@@ -1749,6 +1785,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
1749
1785
|
margin: 0;
|
|
1750
1786
|
appearance: none;
|
|
1751
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 {
|
|
1752
1796
|
border: 1px solid var(--button_border_color);
|
|
1753
1797
|
background: var(--button_background_color);
|
|
1754
1798
|
color: var(--button_text_color);
|
|
@@ -1759,12 +1803,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1759
1803
|
display: flex;
|
|
1760
1804
|
align-items: stretch;
|
|
1761
1805
|
}
|
|
1762
|
-
.store-modal__license-selection__license-button:active, .store-modal__license-selection__license-button:focus {
|
|
1763
|
-
outline: none;
|
|
1764
|
-
}
|
|
1765
|
-
.store-modal__license-selection__license-button:not(:disabled) {
|
|
1766
|
-
cursor: pointer;
|
|
1767
|
-
}
|
|
1768
1806
|
.store-modal__license-selection__license-button:hover:not(:disabled) {
|
|
1769
1807
|
border-color: var(--button_hover_border_color);
|
|
1770
1808
|
background: var(--button_hover_background_color);
|
|
@@ -1930,6 +1968,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
1930
1968
|
margin: 0;
|
|
1931
1969
|
appearance: none;
|
|
1932
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 {
|
|
1933
1979
|
border: 1px solid var(--button_border_color);
|
|
1934
1980
|
background: var(--button_background_color);
|
|
1935
1981
|
color: var(--button_text_color);
|
|
@@ -1940,12 +1986,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
1940
1986
|
display: flex;
|
|
1941
1987
|
align-items: stretch;
|
|
1942
1988
|
}
|
|
1943
|
-
.store-modal__order-variable-selection__button:active, .store-modal__order-variable-selection__button:focus {
|
|
1944
|
-
outline: none;
|
|
1945
|
-
}
|
|
1946
|
-
.store-modal__order-variable-selection__button:not(:disabled) {
|
|
1947
|
-
cursor: pointer;
|
|
1948
|
-
}
|
|
1949
1989
|
.store-modal__order-variable-selection__button:hover:not(:disabled) {
|
|
1950
1990
|
border-color: var(--button_hover_border_color);
|
|
1951
1991
|
background: var(--button_hover_background_color);
|
|
@@ -2033,8 +2073,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2033
2073
|
margin: 0;
|
|
2034
2074
|
appearance: none;
|
|
2035
2075
|
text-transform: inherit;
|
|
2036
|
-
color: var(--link_color);
|
|
2037
|
-
border-bottom: 1px solid var(--link_color);
|
|
2038
2076
|
}
|
|
2039
2077
|
.store-modal__order-variable-selection__ghost-remove:active, .store-modal__order-variable-selection__ghost-remove:focus {
|
|
2040
2078
|
outline: none;
|
|
@@ -2042,6 +2080,10 @@ body[data-fontdue-store-modal=open] {
|
|
|
2042
2080
|
.store-modal__order-variable-selection__ghost-remove:not(:disabled) {
|
|
2043
2081
|
cursor: pointer;
|
|
2044
2082
|
}
|
|
2083
|
+
.store-modal__order-variable-selection__ghost-remove {
|
|
2084
|
+
color: var(--link_color);
|
|
2085
|
+
border-bottom: 1px solid var(--link_color);
|
|
2086
|
+
}
|
|
2045
2087
|
.store-modal__order-variable-selection__ghost-remove:hover {
|
|
2046
2088
|
color: var(--link_hover_color);
|
|
2047
2089
|
border-bottom-color: var(--link_hover_color);
|
|
@@ -2118,7 +2160,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2118
2160
|
margin: 0;
|
|
2119
2161
|
appearance: none;
|
|
2120
2162
|
text-transform: inherit;
|
|
2121
|
-
text-decoration: underline;
|
|
2122
2163
|
}
|
|
2123
2164
|
.store-modal__product-summary__error-button:active, .store-modal__product-summary__error-button:focus {
|
|
2124
2165
|
outline: none;
|
|
@@ -2126,6 +2167,9 @@ body[data-fontdue-store-modal=open] {
|
|
|
2126
2167
|
.store-modal__product-summary__error-button:not(:disabled) {
|
|
2127
2168
|
cursor: pointer;
|
|
2128
2169
|
}
|
|
2170
|
+
.store-modal__product-summary__error-button {
|
|
2171
|
+
text-decoration: underline;
|
|
2172
|
+
}
|
|
2129
2173
|
|
|
2130
2174
|
.store-modal__product-summary__add-to-cart-button {
|
|
2131
2175
|
background: none;
|
|
@@ -2139,12 +2183,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2139
2183
|
margin: 0;
|
|
2140
2184
|
appearance: none;
|
|
2141
2185
|
text-transform: inherit;
|
|
2142
|
-
padding: 10px 20px;
|
|
2143
|
-
white-space: nowrap;
|
|
2144
|
-
background: var(--add_to_cart_button_background_color);
|
|
2145
|
-
border: 1px solid var(--add_to_cart_button_border_color);
|
|
2146
|
-
color: var(--add_to_cart_button_text_color);
|
|
2147
|
-
text-align: center;
|
|
2148
2186
|
}
|
|
2149
2187
|
.store-modal__product-summary__add-to-cart-button:active, .store-modal__product-summary__add-to-cart-button:focus {
|
|
2150
2188
|
outline: none;
|
|
@@ -2152,6 +2190,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
2152
2190
|
.store-modal__product-summary__add-to-cart-button:not(:disabled) {
|
|
2153
2191
|
cursor: pointer;
|
|
2154
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
|
+
}
|
|
2155
2201
|
.store-modal__product-summary__add-to-cart-button:hover:not(:disabled) {
|
|
2156
2202
|
background: var(--add_to_cart_button_hover_background_color);
|
|
2157
2203
|
border: 1px solid var(--add_to_cart_button_hover_border_color);
|
|
@@ -2223,12 +2269,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2223
2269
|
margin: 0;
|
|
2224
2270
|
appearance: none;
|
|
2225
2271
|
text-transform: inherit;
|
|
2226
|
-
background: var(--button_background_color);
|
|
2227
|
-
border: 1px solid var(--button_border_color);
|
|
2228
|
-
color: var(--button_text_color);
|
|
2229
|
-
padding: 10px 20px;
|
|
2230
|
-
width: 100%;
|
|
2231
|
-
text-align: center;
|
|
2232
2272
|
}
|
|
2233
2273
|
.cart-additions__expand-button:active, .cart-additions__expand-button:focus {
|
|
2234
2274
|
outline: none;
|
|
@@ -2236,6 +2276,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
2236
2276
|
.cart-additions__expand-button:not(:disabled) {
|
|
2237
2277
|
cursor: pointer;
|
|
2238
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
|
+
}
|
|
2239
2287
|
.cart-additions__expand-button:hover {
|
|
2240
2288
|
background: var(--button_hover_background_color);
|
|
2241
2289
|
border-color: var(--button_hover_border_color);
|
|
@@ -2276,7 +2324,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2276
2324
|
margin: 0;
|
|
2277
2325
|
appearance: none;
|
|
2278
2326
|
text-transform: inherit;
|
|
2279
|
-
z-index: 2;
|
|
2280
2327
|
}
|
|
2281
2328
|
.cart-additions__button:active, .cart-additions__button:focus {
|
|
2282
2329
|
outline: none;
|
|
@@ -2284,6 +2331,9 @@ body[data-fontdue-store-modal=open] {
|
|
|
2284
2331
|
.cart-additions__button:not(:disabled) {
|
|
2285
2332
|
cursor: pointer;
|
|
2286
2333
|
}
|
|
2334
|
+
.cart-additions__button {
|
|
2335
|
+
z-index: 2;
|
|
2336
|
+
}
|
|
2287
2337
|
.cart-additions__button:disabled {
|
|
2288
2338
|
z-index: 0;
|
|
2289
2339
|
opacity: 0.5;
|
|
@@ -2516,7 +2566,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2516
2566
|
margin: 0;
|
|
2517
2567
|
appearance: none;
|
|
2518
2568
|
text-transform: inherit;
|
|
2519
|
-
padding: 10px;
|
|
2520
2569
|
}
|
|
2521
2570
|
.cart-item__license-variable__text-input-button:active, .cart-item__license-variable__text-input-button:focus {
|
|
2522
2571
|
outline: none;
|
|
@@ -2524,6 +2573,9 @@ body[data-fontdue-store-modal=open] {
|
|
|
2524
2573
|
.cart-item__license-variable__text-input-button:not(:disabled) {
|
|
2525
2574
|
cursor: pointer;
|
|
2526
2575
|
}
|
|
2576
|
+
.cart-item__license-variable__text-input-button {
|
|
2577
|
+
padding: 10px;
|
|
2578
|
+
}
|
|
2527
2579
|
.cart-item__license-variable__text-input-button span {
|
|
2528
2580
|
margin-left: 0.5em;
|
|
2529
2581
|
color: var(--text-input-edit-color, var(--secondary_text_color));
|
|
@@ -2533,7 +2585,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2533
2585
|
}
|
|
2534
2586
|
.cart-item__price {
|
|
2535
2587
|
margin-top: 20px;
|
|
2536
|
-
font-variant-numeric: tabular-nums;
|
|
2537
2588
|
}
|
|
2538
2589
|
.cart-item:first-child .cart-item__price {
|
|
2539
2590
|
margin-top: 0;
|
|
@@ -2571,9 +2622,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2571
2622
|
margin: 0;
|
|
2572
2623
|
appearance: none;
|
|
2573
2624
|
text-transform: inherit;
|
|
2574
|
-
color: var(--additional-license-color, var(--link_color));
|
|
2575
|
-
border-bottom: 1px solid var(--additional-license-border-color, var(--link_color));
|
|
2576
|
-
margin: 0 5px;
|
|
2577
2625
|
}
|
|
2578
2626
|
.cart-item__additional-licenses__item:active, .cart-item__additional-licenses__item:focus {
|
|
2579
2627
|
outline: none;
|
|
@@ -2581,6 +2629,11 @@ body[data-fontdue-store-modal=open] {
|
|
|
2581
2629
|
.cart-item__additional-licenses__item:not(:disabled) {
|
|
2582
2630
|
cursor: pointer;
|
|
2583
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
|
+
}
|
|
2584
2637
|
.cart-item__additional-licenses__item:hover {
|
|
2585
2638
|
color: var(--link_hover_color);
|
|
2586
2639
|
border-color: var(--link_hover_color);
|
|
@@ -2616,8 +2669,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2616
2669
|
margin: 0;
|
|
2617
2670
|
appearance: none;
|
|
2618
2671
|
text-transform: inherit;
|
|
2619
|
-
margin-left: 10px;
|
|
2620
|
-
margin-right: -3px;
|
|
2621
2672
|
}
|
|
2622
2673
|
.cart__remove-discount-button:active, .cart__remove-discount-button:focus {
|
|
2623
2674
|
outline: none;
|
|
@@ -2625,6 +2676,11 @@ body[data-fontdue-store-modal=open] {
|
|
|
2625
2676
|
.cart__remove-discount-button:not(:disabled) {
|
|
2626
2677
|
cursor: pointer;
|
|
2627
2678
|
}
|
|
2679
|
+
.cart__remove-discount-button {
|
|
2680
|
+
margin-left: 10px;
|
|
2681
|
+
margin-right: -3px;
|
|
2682
|
+
vertical-align: middle;
|
|
2683
|
+
}
|
|
2628
2684
|
.cart__remove-discount-button .icon {
|
|
2629
2685
|
width: 16px;
|
|
2630
2686
|
height: 16px;
|
|
@@ -2664,6 +2720,11 @@ body[data-fontdue-store-modal=open] {
|
|
|
2664
2720
|
margin: 0;
|
|
2665
2721
|
appearance: none;
|
|
2666
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 {
|
|
2667
2728
|
min-width: 0;
|
|
2668
2729
|
flex: 1 1 0;
|
|
2669
2730
|
color: currentcolor;
|
|
@@ -2672,9 +2733,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2672
2733
|
border: 1px solid var(--secondary_background_color);
|
|
2673
2734
|
border-right: none;
|
|
2674
2735
|
}
|
|
2675
|
-
.cart__share-url-input:active, .cart__share-url-input:focus {
|
|
2676
|
-
outline: none;
|
|
2677
|
-
}
|
|
2678
2736
|
.cart__share-url-input:focus {
|
|
2679
2737
|
border-color: var(--primary_text_color);
|
|
2680
2738
|
}
|
|
@@ -2699,11 +2757,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2699
2757
|
margin: 0;
|
|
2700
2758
|
appearance: none;
|
|
2701
2759
|
text-transform: inherit;
|
|
2702
|
-
text-align: center;
|
|
2703
|
-
background: var(--button_background_color);
|
|
2704
|
-
border: 1px solid var(--button_border_color);
|
|
2705
|
-
color: var(--button_text_color);
|
|
2706
|
-
padding: 10px 20px;
|
|
2707
2760
|
}
|
|
2708
2761
|
.cart__share__button:active, .cart__share__button:focus {
|
|
2709
2762
|
outline: none;
|
|
@@ -2711,6 +2764,13 @@ body[data-fontdue-store-modal=open] {
|
|
|
2711
2764
|
.cart__share__button:not(:disabled) {
|
|
2712
2765
|
cursor: pointer;
|
|
2713
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
|
+
}
|
|
2714
2774
|
.cart__share__button:hover {
|
|
2715
2775
|
background: var(--button_hover_background_color);
|
|
2716
2776
|
border-color: var(--button_hover_border_color);
|
|
@@ -2799,9 +2859,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2799
2859
|
margin: 0;
|
|
2800
2860
|
appearance: none;
|
|
2801
2861
|
text-transform: inherit;
|
|
2802
|
-
width: 100%;
|
|
2803
|
-
display: flex;
|
|
2804
|
-
align-items: center;
|
|
2805
2862
|
}
|
|
2806
2863
|
.checkout-modal__customer-info__button:active, .checkout-modal__customer-info__button:focus {
|
|
2807
2864
|
outline: none;
|
|
@@ -2809,6 +2866,11 @@ body[data-fontdue-store-modal=open] {
|
|
|
2809
2866
|
.checkout-modal__customer-info__button:not(:disabled) {
|
|
2810
2867
|
cursor: pointer;
|
|
2811
2868
|
}
|
|
2869
|
+
.checkout-modal__customer-info__button {
|
|
2870
|
+
width: 100%;
|
|
2871
|
+
display: flex;
|
|
2872
|
+
align-items: center;
|
|
2873
|
+
}
|
|
2812
2874
|
.checkout-modal__customer-info__button .icon {
|
|
2813
2875
|
display: none;
|
|
2814
2876
|
}
|
|
@@ -2860,6 +2922,14 @@ body[data-fontdue-store-modal=open] {
|
|
|
2860
2922
|
margin: 0;
|
|
2861
2923
|
appearance: none;
|
|
2862
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 {
|
|
2863
2933
|
padding: 20px;
|
|
2864
2934
|
border: 1px solid;
|
|
2865
2935
|
text-align: right;
|
|
@@ -2869,12 +2939,6 @@ body[data-fontdue-store-modal=open] {
|
|
|
2869
2939
|
border-color: var(--checkout_button_border_color);
|
|
2870
2940
|
color: var(--checkout_button_text_color);
|
|
2871
2941
|
}
|
|
2872
|
-
.checkout-modal__button:active, .checkout-modal__button:focus {
|
|
2873
|
-
outline: none;
|
|
2874
|
-
}
|
|
2875
|
-
.checkout-modal__button:not(:disabled) {
|
|
2876
|
-
cursor: pointer;
|
|
2877
|
-
}
|
|
2878
2942
|
.checkout-modal__button[disabled] {
|
|
2879
2943
|
opacity: 0.5;
|
|
2880
2944
|
pointer-events: none;
|
|
@@ -2911,11 +2975,13 @@ body[data-fontdue-store-modal=open] {
|
|
|
2911
2975
|
|
|
2912
2976
|
.react-select {
|
|
2913
2977
|
margin-top: 5px;
|
|
2914
|
-
/* specificity to override defaults */
|
|
2915
2978
|
}
|
|
2916
2979
|
.react-select__label-wrapper {
|
|
2917
2980
|
color: var(--secondary_text_color);
|
|
2918
2981
|
}
|
|
2982
|
+
.react-select {
|
|
2983
|
+
/* specificity to override defaults */
|
|
2984
|
+
}
|
|
2919
2985
|
.react-select .react-select__control {
|
|
2920
2986
|
font-size: 20px;
|
|
2921
2987
|
border-radius: 0;
|
|
@@ -2938,7 +3004,7 @@ body[data-fontdue-store-modal=open] {
|
|
|
2938
3004
|
color: var(--primary_text_color);
|
|
2939
3005
|
}
|
|
2940
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 {
|
|
2941
|
-
background: var(--secondary_background_color,
|
|
3007
|
+
background: var(--secondary_background_color, grey);
|
|
2942
3008
|
color: var(--primary_text_color);
|
|
2943
3009
|
}
|
|
2944
3010
|
.react-select .react-select__input {
|
|
@@ -2952,7 +3018,7 @@ body[data-fontdue-store-modal=open] {
|
|
|
2952
3018
|
transition: none;
|
|
2953
3019
|
}
|
|
2954
3020
|
.react-select__errors {
|
|
2955
|
-
color:
|
|
3021
|
+
color: red;
|
|
2956
3022
|
margin-top: 10px;
|
|
2957
3023
|
}
|
|
2958
3024
|
|
|
@@ -2982,14 +3048,16 @@ textarea.text-field__input {
|
|
|
2982
3048
|
margin: 0;
|
|
2983
3049
|
appearance: none;
|
|
2984
3050
|
text-transform: inherit;
|
|
3051
|
+
}
|
|
3052
|
+
.text-field__input:active, .text-field__input:focus {
|
|
3053
|
+
outline: none;
|
|
3054
|
+
}
|
|
3055
|
+
.text-field__input {
|
|
2985
3056
|
flex: 1;
|
|
2986
3057
|
color: currentcolor;
|
|
2987
3058
|
padding: 12px;
|
|
2988
3059
|
background: var(--secondary_background_color);
|
|
2989
3060
|
}
|
|
2990
|
-
.text-field__input:active, .text-field__input:focus {
|
|
2991
|
-
outline: none;
|
|
2992
|
-
}
|
|
2993
3061
|
.text-field__input::placeholder {
|
|
2994
3062
|
color: var(--secondary_text_color);
|
|
2995
3063
|
}
|