react-gldn-kit 0.1.121 → 0.1.122
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/dist/index.js +1 -1
- package/dist/lib/components/ui/Icons/CloseThirdSvg.js +1 -1
- package/dist/main.css +116 -78
- package/package.json +1 -1
|
@@ -15,6 +15,6 @@ exports.CloseThirdSvg = void 0;
|
|
|
15
15
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
16
|
var CloseThirdSvg = function (props) {
|
|
17
17
|
var _a = props.width, width = _a === void 0 ? '16' : _a, _b = props.height, height = _b === void 0 ? '16' : _b, classes = props.classes, handleClick = props.handleClick;
|
|
18
|
-
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: width, height: height, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: classes, onClick: handleClick }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M12.6665 3.33337L3.33325 12.6667M3.33321 3.33334L12.6665 12.6666", stroke: "var(--semi-blue-gray)", strokeWidth: "1.5", strokeLinecap: "round" }) })));
|
|
18
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: width, height: height, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: classes, onClick: handleClick }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M12.6665 3.33337L3.33325 12.6667M3.33321 3.33334L12.6665 12.6666", stroke: "rgb(var(--semi-blue-gray))", strokeWidth: "1.5", strokeLinecap: "round" }) })));
|
|
19
19
|
};
|
|
20
20
|
exports.CloseThirdSvg = CloseThirdSvg;
|
package/dist/main.css
CHANGED
|
@@ -721,7 +721,7 @@
|
|
|
721
721
|
position: absolute;
|
|
722
722
|
top: 50%;
|
|
723
723
|
transform: translateY(-50%);
|
|
724
|
-
color: var(--input-label-text-color);
|
|
724
|
+
color: var(--third-input-label-text-color, var(--input-label-text-color));
|
|
725
725
|
z-index: 1;
|
|
726
726
|
font-weight: 500;
|
|
727
727
|
transition: 0.5s;
|
|
@@ -970,7 +970,7 @@
|
|
|
970
970
|
justify-content: space-between;
|
|
971
971
|
align-items: center;
|
|
972
972
|
padding: var(--indent-m);
|
|
973
|
-
color: var(--input-label-text-color);
|
|
973
|
+
color: var(--third-input-label-text-color, var(--input-label-text-color));
|
|
974
974
|
width: 100%;
|
|
975
975
|
overflow: hidden;
|
|
976
976
|
white-space: nowrap;
|
|
@@ -1027,7 +1027,7 @@
|
|
|
1027
1027
|
overflow: hidden;
|
|
1028
1028
|
white-space: nowrap;
|
|
1029
1029
|
text-overflow: ellipsis;
|
|
1030
|
-
color: var(--selector-overflow-color);
|
|
1030
|
+
color: var(--selector-item-color, var(--selector-overflow-color));
|
|
1031
1031
|
}
|
|
1032
1032
|
|
|
1033
1033
|
.KIT__Selector-module__column___lV8W1 {
|
|
@@ -1250,7 +1250,10 @@
|
|
|
1250
1250
|
}
|
|
1251
1251
|
|
|
1252
1252
|
.KIT__CheckBox-module__checkbox___eH2PT.KIT__CheckBox-module__checked___zbGvO {
|
|
1253
|
-
background-color: var(
|
|
1253
|
+
background-color: var(
|
|
1254
|
+
--third-checkbox-checked-background-color,
|
|
1255
|
+
var(--checkbox-checked-background-color)
|
|
1256
|
+
);
|
|
1254
1257
|
border-color: var(--checkbox-checked-border-color);
|
|
1255
1258
|
}
|
|
1256
1259
|
|
|
@@ -1276,9 +1279,11 @@
|
|
|
1276
1279
|
align-items: center;
|
|
1277
1280
|
padding: 1px;
|
|
1278
1281
|
}
|
|
1282
|
+
|
|
1279
1283
|
.KIT__Tabs-module__wrapperTabs___rFoBY.KIT__Tabs-module__bg___y6G1J {
|
|
1280
1284
|
background-color: var(--tabs-background);
|
|
1281
1285
|
}
|
|
1286
|
+
|
|
1282
1287
|
.KIT__Tabs-module__wrapperTabs___rFoBY .KIT__Tabs-module__tab___NBVtA {
|
|
1283
1288
|
text-align: center;
|
|
1284
1289
|
color: var(--tab-text-color);
|
|
@@ -1296,12 +1301,14 @@
|
|
|
1296
1301
|
gap: var(--indent-s);
|
|
1297
1302
|
font-size: var(--font-size-s);
|
|
1298
1303
|
}
|
|
1304
|
+
|
|
1299
1305
|
.KIT__Tabs-module__wrapperTabs___rFoBY .KIT__Tabs-module__tab___NBVtA.KIT__Tabs-module__buttonTab___Tpphz {
|
|
1300
1306
|
padding: var(--indent-s);
|
|
1301
1307
|
border-radius: var(--border-s);
|
|
1302
1308
|
border: 2px solid transparent;
|
|
1303
1309
|
width: 100%;
|
|
1304
1310
|
}
|
|
1311
|
+
|
|
1305
1312
|
.KIT__Tabs-module__wrapperTabs___rFoBY .KIT__Tabs-module__tab___NBVtA.KIT__Tabs-module__buttonTabActive___hoiNu {
|
|
1306
1313
|
display: flex;
|
|
1307
1314
|
justify-content: center;
|
|
@@ -1311,12 +1318,15 @@
|
|
|
1311
1318
|
box-shadow: var(--tab-button-active-shadow, initial);
|
|
1312
1319
|
height: 100%;
|
|
1313
1320
|
}
|
|
1321
|
+
|
|
1314
1322
|
.KIT__Tabs-module__wrapperTabs___rFoBY .KIT__Tabs-module__tab___NBVtA.KIT__Tabs-module__buttonTabActive___hoiNu::after {
|
|
1315
1323
|
border-color: transparent;
|
|
1316
1324
|
}
|
|
1325
|
+
|
|
1317
1326
|
.KIT__Tabs-module__wrapperTabs___rFoBY .KIT__Tabs-module__tab___NBVtA.KIT__Tabs-module__underlineActiveTab___YstNX {
|
|
1318
|
-
color: var(--sign-in-active-tab-color, var(--tab-text-color));
|
|
1327
|
+
color: var(--third-sign-in-active-tab-color, var(--tab-text-color));
|
|
1319
1328
|
}
|
|
1329
|
+
|
|
1320
1330
|
.KIT__Tabs-module__wrapperTabs___rFoBY .KIT__Tabs-module__activeBlockIndicator___B35H_ {
|
|
1321
1331
|
position: absolute;
|
|
1322
1332
|
height: 2px;
|
|
@@ -1325,6 +1335,7 @@
|
|
|
1325
1335
|
bottom: 1px;
|
|
1326
1336
|
z-index: calc(var(--layout-lvl-1) + 1);
|
|
1327
1337
|
}
|
|
1338
|
+
|
|
1328
1339
|
.KIT__Tabs-module__wrapperTabs___rFoBY .KIT__Tabs-module__buttonActiveIndicator___l6_IM {
|
|
1329
1340
|
height: 100%;
|
|
1330
1341
|
border-radius: var(--border-s);
|
|
@@ -1332,10 +1343,12 @@
|
|
|
1332
1343
|
background: var(--primary-gradient);
|
|
1333
1344
|
z-index: var(--layout-lvl-1);
|
|
1334
1345
|
}
|
|
1346
|
+
|
|
1335
1347
|
.KIT__Tabs-module__wrapperTabs___rFoBY::-webkit-scrollbar {
|
|
1336
1348
|
width: 0;
|
|
1337
1349
|
height: 0;
|
|
1338
1350
|
}
|
|
1351
|
+
|
|
1339
1352
|
.KIT__Tabs-module__border___IJHnH {
|
|
1340
1353
|
border-bottom: var(--tab-border-bottom-default);
|
|
1341
1354
|
}
|
|
@@ -2758,47 +2771,46 @@
|
|
|
2758
2771
|
}
|
|
2759
2772
|
|
|
2760
2773
|
.KIT__SignUpTypeThree-module__wrapperSignUpModal___ESx6s {
|
|
2761
|
-
--
|
|
2762
|
-
--semi-blue-gray:
|
|
2763
|
-
--light-blue-var: rgb(var(--light-blue));
|
|
2764
|
-
--third-primary-color: var(--light-blue-var,rgb(252, 212, 53));
|
|
2765
|
-
--third-submit-button-background: var(--third-primary-color);
|
|
2766
|
-
--third-submit-button-color: var(--semi-dark-gray);
|
|
2767
|
-
--tab-text-color: var(--sign-in-tab-color, var(--semi-dark-gray));
|
|
2774
|
+
--third-modal-layout-background-color: var(--base-0);
|
|
2775
|
+
--semi-blue-gray: 97, 113, 158;
|
|
2768
2776
|
--input-background: var(--sign-in-input-background-color, rgb(244, 247, 250));
|
|
2769
|
-
--input-base-autofill-background-color: rgb(244, 247, 250);
|
|
2770
|
-
--input-border: none;
|
|
2771
2777
|
--input-text-color: var(--input-color, rgb(65, 82, 106));
|
|
2772
|
-
--input-label-text-color: var(--input-label-color, rgb(65, 82, 106));
|
|
2773
2778
|
--selector-item-background: var(
|
|
2774
2779
|
--email-input-background-color,
|
|
2775
2780
|
rgb(244, 247, 250)
|
|
2776
2781
|
);
|
|
2777
|
-
--
|
|
2782
|
+
--third-sign-in-active-tab-color: var(
|
|
2783
|
+
--sign-in-active-tab-color,
|
|
2784
|
+
var(--base-1000)
|
|
2785
|
+
);
|
|
2786
|
+
--third-input-label-text-color: var(--input-label-color, rgb(65, 82, 106));
|
|
2778
2787
|
--sign-up-modal-checkbox-color: var(
|
|
2779
2788
|
--email-checkbox-text-color,
|
|
2780
|
-
var(--semi-dark-gray)
|
|
2789
|
+
var(--third-semi-dark-gray)
|
|
2790
|
+
);
|
|
2791
|
+
--tab-border-bottom-default: transparent;
|
|
2792
|
+
--tab-text-color: var(--sign-in-tab-color, rgb(129, 141, 177));
|
|
2793
|
+
--selector-main-bg-opened: var(
|
|
2794
|
+
--email-input-background-color,
|
|
2795
|
+
rgb(244, 247, 250)
|
|
2781
2796
|
);
|
|
2782
2797
|
--selector-main-bg-opened: var(
|
|
2783
2798
|
--email-input-background-color,
|
|
2784
2799
|
rgb(244, 247, 250)
|
|
2785
2800
|
);
|
|
2786
2801
|
--selector-color: var(--selector-item-color, rgb(65, 82, 106));
|
|
2802
|
+
--phone-input-item-hover-background-color: var(--selector-item-background);
|
|
2803
|
+
--kit-world-svg-path-fill: var(--world-svg-path-fill, rgb(46, 58, 76));
|
|
2804
|
+
--kit-phone-view-name-color: var(--phone-view-name-color, --base-1000);
|
|
2787
2805
|
--selector-drop-down-bg: rgb(244, 247, 250);
|
|
2788
|
-
--
|
|
2789
|
-
--checkbox-checked-background-color: var(--third-primary-color);
|
|
2790
|
-
--
|
|
2791
|
-
--sign-up-modal-checkbox-terms-color: var(--third-primary-color);
|
|
2792
|
-
--PhoneInputCountrySelectArrow-color: rgb(179, 190, 205);
|
|
2806
|
+
--add-circle-svg-path-fill: var(--third-primary-color);
|
|
2807
|
+
--third-checkbox-checked-background-color: var(--third-primary-color);
|
|
2808
|
+
--third-submit-button-background: var(--third-primary-color);
|
|
2793
2809
|
--tab-indicator-bg: var(--third-primary-color);
|
|
2794
|
-
--
|
|
2810
|
+
--sign-up-modal-checkbox-terms-color: var(--third-primary-color);
|
|
2795
2811
|
--input-height: 40px;
|
|
2796
|
-
--kit-phone-view-name-color: var(--phone-view-name-color, rgb(46, 58, 76));
|
|
2797
|
-
--kit-world-svg-path-fill: var(--world-svg-path-fill, rgb(46, 58, 76));
|
|
2798
|
-
--add-circle-svg-path-fill: var(--third-primary-color);
|
|
2799
2812
|
|
|
2800
2813
|
padding: var(--indent-xs);
|
|
2801
|
-
|
|
2802
2814
|
display: flex;
|
|
2803
2815
|
flex-direction: column;
|
|
2804
2816
|
align-items: center;
|
|
@@ -2811,11 +2823,14 @@
|
|
|
2811
2823
|
|
|
2812
2824
|
.KIT__SignUpTypeThree-module__wrapperSignUpModal___ESx6s.KIT__SignUpTypeThree-module__lightBlue___CoeJ2 {
|
|
2813
2825
|
--third-primary-color: rgb(102, 231, 248);
|
|
2814
|
-
--semi-blue-gray:
|
|
2826
|
+
--semi-blue-gray: 113, 161, 168;
|
|
2815
2827
|
}
|
|
2816
2828
|
|
|
2817
2829
|
.KIT__SignUpTypeThree-module__wrapperSignUpModal___ESx6s.KIT__SignUpTypeThree-module__page___ytbMW {
|
|
2818
|
-
background: var(
|
|
2830
|
+
background: var(
|
|
2831
|
+
--modal-layout-background-color,
|
|
2832
|
+
var(--third-modal-layout-background-color)
|
|
2833
|
+
);
|
|
2819
2834
|
padding: var(--indent-m);
|
|
2820
2835
|
}
|
|
2821
2836
|
|
|
@@ -2837,7 +2852,7 @@
|
|
|
2837
2852
|
font-size: var(--font-size-m);
|
|
2838
2853
|
width: var(--full);
|
|
2839
2854
|
font-weight: 700;
|
|
2840
|
-
color: var(--sign-in-title-color, var(--semi-dark-gray));
|
|
2855
|
+
color: var(--sign-in-title-color, var(--third-semi-dark-gray));
|
|
2841
2856
|
|
|
2842
2857
|
display: flex;
|
|
2843
2858
|
align-items: center;
|
|
@@ -2866,7 +2881,7 @@
|
|
|
2866
2881
|
}
|
|
2867
2882
|
|
|
2868
2883
|
.KIT__SignUpTypeThree-module__activeTab___Rmom3 {
|
|
2869
|
-
color: var(--semi-dark-gray);
|
|
2884
|
+
color: var(--third-semi-dark-gray);
|
|
2870
2885
|
border-bottom: 2px solid var(--third-primary-color);
|
|
2871
2886
|
}
|
|
2872
2887
|
|
|
@@ -2880,12 +2895,13 @@
|
|
|
2880
2895
|
.KIT__SignUpTypeThree-module__subTitle___oAr_a {
|
|
2881
2896
|
font-size: 0.75rem;
|
|
2882
2897
|
font-weight: 700;
|
|
2883
|
-
color: var(--sign-up-sub-title-color, var(--semi-dark-gray));
|
|
2898
|
+
color: var(--sign-up-sub-title-color, var(--third-semi-dark-gray));
|
|
2884
2899
|
margin-bottom: var(--indent-m);
|
|
2885
2900
|
}
|
|
2886
2901
|
|
|
2887
2902
|
.KIT__SignUpTypeThree-module__subTitle___oAr_a span {
|
|
2888
2903
|
color: var(--third-primary-color);
|
|
2904
|
+
cursor: pointer;
|
|
2889
2905
|
}
|
|
2890
2906
|
|
|
2891
2907
|
.KIT__SignUpTypeThree-module__close___m4khX {
|
|
@@ -3340,45 +3356,37 @@
|
|
|
3340
3356
|
}
|
|
3341
3357
|
|
|
3342
3358
|
.KIT__SignInThird-module__wrapperReferralCopyContent___dmwrE {
|
|
3343
|
-
--
|
|
3344
|
-
--
|
|
3345
|
-
--third-primary-color: var(--light-blue-var,rgb(252, 212, 53));
|
|
3346
|
-
--third-submit-button-background: var(--third-primary-color);
|
|
3347
|
-
--third-submit-button-color: var(--semi-dark-gray);
|
|
3348
|
-
--tab-text-color: var(--sign-in-tab-color, var(--semi-dark-gray));
|
|
3359
|
+
--third-modal-layout-background-color: var(--base-0);
|
|
3360
|
+
--register-color: var(--third-primary-color);
|
|
3349
3361
|
--input-background: var(--sign-in-input-background-color, rgb(244, 247, 250));
|
|
3350
|
-
--input-base-autofill-background-color: rgb(244, 247, 250);
|
|
3351
|
-
--input-border: none;
|
|
3352
3362
|
--input-text-color: var(--input-color, rgb(65, 82, 106));
|
|
3353
|
-
--
|
|
3354
|
-
--selector-item-background: rgb(244, 247, 250);
|
|
3355
|
-
--selector-border: none;
|
|
3356
|
-
--selector-main-bg-opened: var(
|
|
3363
|
+
--selector-item-background: var(
|
|
3357
3364
|
--email-input-background-color,
|
|
3358
3365
|
rgb(244, 247, 250)
|
|
3359
3366
|
);
|
|
3360
|
-
--
|
|
3361
|
-
--
|
|
3362
|
-
--checkbox-border-color: rgb(166, 181, 201);
|
|
3363
|
-
--checkbox-checked-background-color: var(--third-primary-color);
|
|
3364
|
-
--checkbox-checked-border-color: var(--third-primary-color);
|
|
3367
|
+
--third-sign-in-active-tab-color: var(--sign-in-active-tab-color, var(--base-1000));
|
|
3368
|
+
--input-label-text-color: var(--input-label-color, rgb(65, 82, 106));
|
|
3365
3369
|
--sign-up-modal-checkbox-color: var(
|
|
3366
3370
|
--email-checkbox-text-color,
|
|
3367
|
-
var(--semi-dark-gray)
|
|
3371
|
+
var(--third-semi-dark-gray)
|
|
3368
3372
|
);
|
|
3369
|
-
--sign-up-modal-checkbox-terms-color: var(--third-primary-color);
|
|
3370
|
-
--PhoneInputCountrySelectArrow-color: rgb(179, 190, 205);
|
|
3371
|
-
--tab-indicator-bg: var(--third-primary-color);
|
|
3372
|
-
--sign-in-modal-lost-password-color: var(--third-primary-color);
|
|
3373
|
-
--register-color: var(--third-primary-color);
|
|
3374
|
-
--no-account-color: var(--sign-in-register-color, rgb(38, 61, 64));
|
|
3375
3373
|
--tab-border-bottom-default: transparent;
|
|
3376
|
-
--
|
|
3374
|
+
--tab-text-color: var(--sign-in-tab-color, rgb(129, 141, 177));
|
|
3375
|
+
--selector-main-bg-opened: var(
|
|
3376
|
+
--email-input-background-color,
|
|
3377
|
+
rgb(244, 247, 250)
|
|
3378
|
+
);
|
|
3379
|
+
--selector-color: var(--selector-item-color, rgb(65, 82, 106));
|
|
3380
|
+
--phone-input-item-hover-background-color: var(--selector-item-background);
|
|
3377
3381
|
--kit-world-svg-path-fill: var(--world-svg-path-fill, rgb(46, 58, 76));
|
|
3378
|
-
--
|
|
3382
|
+
--kit-phone-view-name-color: var(--phone-view-name-color, --base-1000);
|
|
3383
|
+
--selector-drop-down-bg: rgb(244, 247, 250);
|
|
3384
|
+
--third-checkbox-checked-background-color: var(--third-primary-color);
|
|
3385
|
+
--third-submit-button-background: var(--third-primary-color);
|
|
3386
|
+
--tab-indicator-bg: var(--third-primary-color);
|
|
3387
|
+
--input-height: 40px;
|
|
3379
3388
|
|
|
3380
3389
|
padding: var(--indent-xs);
|
|
3381
|
-
|
|
3382
3390
|
display: flex;
|
|
3383
3391
|
flex-direction: column;
|
|
3384
3392
|
align-items: center;
|
|
@@ -3395,7 +3403,7 @@
|
|
|
3395
3403
|
|
|
3396
3404
|
.KIT__SignInThird-module__wrapperReferralCopyContent___dmwrE.KIT__SignInThird-module__page___exmBC {
|
|
3397
3405
|
background: var(
|
|
3398
|
-
--modal-
|
|
3406
|
+
--modal-layout-background-color,
|
|
3399
3407
|
var(--third-modal-layout-background-color)
|
|
3400
3408
|
);
|
|
3401
3409
|
padding: var(--indent-m);
|
|
@@ -3422,7 +3430,7 @@
|
|
|
3422
3430
|
font-size: var(--font-size-m);
|
|
3423
3431
|
width: var(--full);
|
|
3424
3432
|
font-weight: 700;
|
|
3425
|
-
color: var(--sign-in-title-color, var(--semi-dark-gray));
|
|
3433
|
+
color: var(--sign-in-title-color, var(--third-semi-dark-gray));
|
|
3426
3434
|
|
|
3427
3435
|
display: flex;
|
|
3428
3436
|
align-items: center;
|
|
@@ -3490,7 +3498,7 @@
|
|
|
3490
3498
|
text-align: right;
|
|
3491
3499
|
color: var(
|
|
3492
3500
|
--sign-in-lost-psw-color,
|
|
3493
|
-
var(--
|
|
3501
|
+
var(--third-primary-color)
|
|
3494
3502
|
);
|
|
3495
3503
|
font-weight: 400;
|
|
3496
3504
|
font-size: 12px;
|
|
@@ -3540,7 +3548,7 @@
|
|
|
3540
3548
|
}
|
|
3541
3549
|
|
|
3542
3550
|
.KIT__SignInThird-module__noAccount___t4H66 {
|
|
3543
|
-
color: var(--no-account-color);
|
|
3551
|
+
color: var(--third-no-account-color);
|
|
3544
3552
|
font-weight: 700;
|
|
3545
3553
|
}
|
|
3546
3554
|
|
|
@@ -3548,6 +3556,7 @@
|
|
|
3548
3556
|
color: var(--register-color);
|
|
3549
3557
|
-webkit-text-decoration: underline;
|
|
3550
3558
|
text-decoration: underline;
|
|
3559
|
+
cursor: pointer;
|
|
3551
3560
|
}
|
|
3552
3561
|
|
|
3553
3562
|
.KIT__SignInThird-module__row___e20lB {
|
|
@@ -3565,6 +3574,7 @@
|
|
|
3565
3574
|
|
|
3566
3575
|
.KIT__SignInThird-module__tab___aT9BA {
|
|
3567
3576
|
font-size: var(--font-size-xs);
|
|
3577
|
+
font-weight: 700;
|
|
3568
3578
|
}
|
|
3569
3579
|
|
|
3570
3580
|
@media screen and (min-width: 768px) {
|
|
@@ -3732,10 +3742,11 @@
|
|
|
3732
3742
|
}
|
|
3733
3743
|
|
|
3734
3744
|
.KIT__ModalLayout-module__wrapperModalLayout___A4nBX {
|
|
3745
|
+
background-color: rgb(27, 29, 41);
|
|
3735
3746
|
background-color: var(
|
|
3736
3747
|
--modal-layout-background-color,
|
|
3737
|
-
var(--
|
|
3738
|
-
|
|
3748
|
+
var(--third-modal-layout-background-color,rgb(27, 29, 41))
|
|
3749
|
+
);
|
|
3739
3750
|
border-radius: var(--border-xl) var(--border-xl) 0 0;
|
|
3740
3751
|
|
|
3741
3752
|
display: flex;
|
|
@@ -4354,18 +4365,20 @@
|
|
|
4354
4365
|
--kit-lost-password-phone-info-main-color: var(--lost-password-phone-info-main-color, rgb(38, 61, 64));
|
|
4355
4366
|
--input-label-text-color: var(--input-label-color, rgb(65, 82, 106));
|
|
4356
4367
|
--button-color-primary-text: rgb(46, 58, 76);
|
|
4368
|
+
--third-sign-in-active-tab-color: var(--lost-password-active-tab-color, var(--base-1000));
|
|
4369
|
+
--button-color-primary: var(--third-primary-color);
|
|
4357
4370
|
}
|
|
4358
4371
|
|
|
4359
4372
|
.KIT__LostPassword-module__whiteYellow____6a5B {
|
|
4360
|
-
--
|
|
4373
|
+
--third-primary-color: rgb(252, 212, 53);
|
|
4361
4374
|
}
|
|
4362
4375
|
|
|
4363
4376
|
.KIT__LostPassword-module__whitePurple___n_7hB {
|
|
4364
|
-
--
|
|
4377
|
+
--third-primary-color: rgb(136, 103, 255);
|
|
4365
4378
|
}
|
|
4366
4379
|
|
|
4367
4380
|
.KIT__LostPassword-module__whiteBlue___Iaz79 {
|
|
4368
|
-
--
|
|
4381
|
+
--third-primary-color: rgb(102, 231, 248);
|
|
4369
4382
|
}
|
|
4370
4383
|
|
|
4371
4384
|
.KIT__LostPassword-module__secondaryGreen___GtqUQ {
|
|
@@ -4503,8 +4516,8 @@
|
|
|
4503
4516
|
border-radius: var(--border-m);
|
|
4504
4517
|
font-weight: 500;
|
|
4505
4518
|
line-height: 1.2;
|
|
4506
|
-
color: var(--input-code-color, var(--base-0));
|
|
4507
|
-
background: var(--input-code-background, var(--base-800));
|
|
4519
|
+
color: var(--kit-input-code-color, var(--base-0));
|
|
4520
|
+
background: var(--kit-input-code-background, var(--base-800));
|
|
4508
4521
|
text-align: center;
|
|
4509
4522
|
}
|
|
4510
4523
|
|
|
@@ -5276,7 +5289,7 @@
|
|
|
5276
5289
|
}
|
|
5277
5290
|
|
|
5278
5291
|
.KIT__Alert-module__thirdTheme___lITjl {
|
|
5279
|
-
--modal-layout-background-color: var(--modal-
|
|
5292
|
+
--third-modal-layout-background-color: var(--modal-layout-background-color, var(--base-0));
|
|
5280
5293
|
}
|
|
5281
5294
|
|
|
5282
5295
|
@media screen and (max-width: 768px) {
|
|
@@ -8044,7 +8057,8 @@
|
|
|
8044
8057
|
--tab-border-bottom-color: var(--green-100, red);
|
|
8045
8058
|
--tab-button-active-shadow: 0 0px 9px var(--green-100),
|
|
8046
8059
|
inset 0 8px 1px color-mix(in oklab, var(--green-100) 10%, transparent 90%);
|
|
8047
|
-
|
|
8060
|
+
--tab-border-bottom-default: 2px solid
|
|
8061
|
+
var(--tabs-border-color, var(--base-700));
|
|
8048
8062
|
}
|
|
8049
8063
|
|
|
8050
8064
|
:root {
|
|
@@ -8060,14 +8074,10 @@
|
|
|
8060
8074
|
--x-reg-color: var(--base-400);
|
|
8061
8075
|
|
|
8062
8076
|
/* Second */
|
|
8063
|
-
|
|
8064
|
-
/* Third */
|
|
8065
|
-
--third-primary-color: rgb(252,212,53);
|
|
8066
|
-
--third-modal-layout-background-color: var(--base-0);
|
|
8067
8077
|
}
|
|
8068
8078
|
|
|
8069
8079
|
:root {
|
|
8070
|
-
--selector-border: var(--input-border);
|
|
8080
|
+
--selector-border: var(--third-selector-border, var(--input-border));
|
|
8071
8081
|
--selector-border-radius: var(--input-border-radius);
|
|
8072
8082
|
--selector-item-background: var(--input-background);
|
|
8073
8083
|
--selector-main-bg-opened: var(--base-800, initial);
|
|
@@ -8080,10 +8090,38 @@
|
|
|
8080
8090
|
--sign-in-modal-lost-password-color: white;
|
|
8081
8091
|
}
|
|
8082
8092
|
:root {
|
|
8083
|
-
--kit-world-svg-path-fill: var(--base-0);
|
|
8093
|
+
--kit-world-svg-path-fill: var(--world-svg-path-fill, var(--base-0));
|
|
8084
8094
|
--check-svg-path-fill: var(--base-0);
|
|
8085
8095
|
}
|
|
8086
8096
|
|
|
8097
|
+
:root {
|
|
8098
|
+
/* Third */
|
|
8099
|
+
--third-semi-dark-gray: rgb(46, 58, 76);
|
|
8100
|
+
--light-blue-var: rgb(var(--light-blue));
|
|
8101
|
+
--third-primary-color: var(--light-blue-var, rgb(252, 212, 53));
|
|
8102
|
+
--third-submit-button-color: var(--third-semi-dark-gray);
|
|
8103
|
+
--third-input-background: var(--sign-in-input-background-color, rgb(244, 247, 250));
|
|
8104
|
+
--third-input-base-autofill-background-color: rgb(244, 247, 250);
|
|
8105
|
+
--third-input-border: none;
|
|
8106
|
+
--third-input-text-color: var(--input-color, rgb(65, 82, 106));
|
|
8107
|
+
--third-selector-item-background: var(
|
|
8108
|
+
--email-input-background-color,
|
|
8109
|
+
rgb(244, 247, 250)
|
|
8110
|
+
);
|
|
8111
|
+
--third-selector-border: none;
|
|
8112
|
+
|
|
8113
|
+
--third-checkbox-border-color: rgb(166, 181, 201);
|
|
8114
|
+
--third-checkbox-checked-border-color: var(--third-primary-color);
|
|
8115
|
+
--third-sign-up-modal-checkbox-terms-color: var(--third-primary-color);
|
|
8116
|
+
--PhoneInputCountrySelectArrow-color: rgb(179, 190, 205);
|
|
8117
|
+
--third-input-height: 40px;
|
|
8118
|
+
--third-sign-in-modal-lost-password-color: var(--third-primary-color);
|
|
8119
|
+
--third-no-account-color: var(--sign-in-register-color, rgb(38, 61, 64));
|
|
8120
|
+
--third-tab-border-bottom-default: transparent;
|
|
8121
|
+
--third--phone-view-name-color: var(--phone-view-name-color, rgb(46, 58, 76));
|
|
8122
|
+
--arrow-button-svg-path-fill: rgb(179, 190, 205);
|
|
8123
|
+
}
|
|
8124
|
+
|
|
8087
8125
|
:root {
|
|
8088
8126
|
--base-1000: rgba(0, 0, 0, 1);
|
|
8089
8127
|
--base-900: rgba(23, 25, 36, 1);
|