@transferwise/components 46.160.6 → 46.160.8
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/build/Prompt/InfoPrompt/InfoPrompt.js +13 -6
- package/build/Prompt/InfoPrompt/InfoPrompt.js.map +1 -1
- package/build/Prompt/InfoPrompt/InfoPrompt.mjs +13 -6
- package/build/Prompt/InfoPrompt/InfoPrompt.mjs.map +1 -1
- package/build/Prompt/PrimitivePrompt/PrimitivePrompt.js +1 -0
- package/build/Prompt/PrimitivePrompt/PrimitivePrompt.js.map +1 -1
- package/build/Prompt/PrimitivePrompt/PrimitivePrompt.mjs +1 -0
- package/build/Prompt/PrimitivePrompt/PrimitivePrompt.mjs.map +1 -1
- package/build/main.css +859 -19
- package/build/styles/Inputs/Input/Input.css +88 -0
- package/build/styles/Inputs/TextArea/TextArea.css +88 -0
- package/build/styles/Popover/Popover.css +1 -0
- package/build/styles/Prompt/PrimitivePrompt/PrimitivePrompt.css +17 -0
- package/build/styles/_deprecated/Select/Select.css +29 -0
- package/build/styles/css/accordion.css +30 -0
- package/build/styles/css/button-groups.css +29 -0
- package/build/styles/css/buttons.css +29 -0
- package/build/styles/css/decision.css +30 -0
- package/build/styles/css/dropdowns.css +59 -0
- package/build/styles/css/droppable.css +29 -0
- package/build/styles/css/footer.css +63 -0
- package/build/styles/css/input-groups.css +189 -0
- package/build/styles/css/list-group.css +1 -0
- package/build/styles/css/navbar.css +59 -0
- package/build/styles/css/neptune-addons.css +3 -0
- package/build/styles/css/neptune-core.css +185 -0
- package/build/styles/css/neptune.css +705 -0
- package/build/styles/css/popovers.css +59 -0
- package/build/styles/css/tooltip.css +29 -0
- package/build/styles/main.css +859 -19
- package/build/styles/styles/less/accordion.css +30 -0
- package/build/styles/styles/less/button-groups.css +29 -0
- package/build/styles/styles/less/buttons.css +29 -0
- package/build/styles/styles/less/decision.css +30 -0
- package/build/styles/styles/less/dropdowns.css +59 -0
- package/build/styles/styles/less/droppable.css +29 -0
- package/build/styles/styles/less/footer.css +63 -0
- package/build/styles/styles/less/forms/bootstrap-forms.css +116 -0
- package/build/styles/styles/less/input-groups.css +189 -0
- package/build/styles/styles/less/list-group.css +1 -0
- package/build/styles/styles/less/navbar.css +59 -0
- package/build/styles/styles/less/neptune-addons.css +3 -0
- package/build/styles/styles/less/neptune-core.css +185 -0
- package/build/styles/styles/less/neptune.css +705 -0
- package/build/styles/styles/less/popovers.css +59 -0
- package/build/styles/styles/less/tooltip.css +29 -0
- package/build/types/Prompt/InfoPrompt/InfoPrompt.d.ts.map +1 -1
- package/build/types/Prompt/PrimitivePrompt/PrimitivePrompt.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/Body/_stories/Body.test.story.tsx +81 -0
- package/src/Inputs/Input/Input.css +88 -0
- package/src/Inputs/TextArea/TextArea.css +88 -0
- package/src/Popover/Popover.css +1 -0
- package/src/Prompt/InfoPrompt/InfoPrompt.test.tsx +56 -2
- package/src/Prompt/InfoPrompt/InfoPrompt.tsx +14 -7
- package/src/Prompt/InfoPrompt/_stories/InfoPrompt.story.tsx +6 -1
- package/src/Prompt/PrimitivePrompt/PrimitivePrompt.css +17 -0
- package/src/Prompt/PrimitivePrompt/PrimitivePrompt.less +15 -0
- package/src/Prompt/PrimitivePrompt/PrimitivePrompt.tsx +1 -0
- package/src/_deprecated/Card/_stories/Card.test.story.tsx +1 -1
- package/src/_deprecated/CriticalBanner/_stories/CriticalCommsBanner.test.story.tsx +1 -1
- package/src/_deprecated/InlineAlert/_stories/InlineAlert.test.story.tsx +1 -1
- package/src/_deprecated/OverlayHeader/_stories/OverlayHeader.test.story.tsx +1 -1
- package/src/_deprecated/Select/Select.css +29 -0
- package/src/_deprecated/Select/_stories/Select.rtl.test.story.tsx +1 -1
- package/src/_deprecated/Select/_stories/Select.test.story.tsx +1 -1
- package/src/main.css +859 -19
- package/src/styles/less/accordion.css +30 -0
- package/src/styles/less/addons/_spacing-utilities.less +2 -0
- package/src/styles/less/button-groups.css +29 -0
- package/src/styles/less/buttons.css +29 -0
- package/src/styles/less/core/_typography.less +12 -0
- package/src/styles/less/decision.css +30 -0
- package/src/styles/less/dropdowns.css +59 -0
- package/src/styles/less/droppable.css +29 -0
- package/src/styles/less/footer.css +63 -0
- package/src/styles/less/forms/bootstrap-forms.css +116 -0
- package/src/styles/less/input-groups.css +189 -0
- package/src/styles/less/list-group.css +1 -0
- package/src/styles/less/navbar.css +59 -0
- package/src/styles/less/neptune-addons.css +3 -0
- package/src/styles/less/neptune-core.css +185 -0
- package/src/styles/less/neptune.css +705 -0
- package/src/styles/less/popovers.css +59 -0
- package/src/styles/less/tooltip.css +29 -0
package/build/styles/main.css
CHANGED
|
@@ -3232,6 +3232,7 @@ h6,
|
|
|
3232
3232
|
line-height: 1.2;
|
|
3233
3233
|
line-height: var(--line-height-title);
|
|
3234
3234
|
letter-spacing: 0;
|
|
3235
|
+
word-wrap: break-word;
|
|
3235
3236
|
}
|
|
3236
3237
|
@supports (hyphenate-limit-chars: 1) {
|
|
3237
3238
|
.h1,
|
|
@@ -3533,6 +3534,65 @@ small,
|
|
|
3533
3534
|
letter-spacing: -0.006em;
|
|
3534
3535
|
font-weight: 400;
|
|
3535
3536
|
font-weight: var(--font-weight-regular);
|
|
3537
|
+
word-wrap: break-word;
|
|
3538
|
+
}
|
|
3539
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
3540
|
+
.body-2,
|
|
3541
|
+
.body-3,
|
|
3542
|
+
.small,
|
|
3543
|
+
.tiny,
|
|
3544
|
+
body,
|
|
3545
|
+
small,
|
|
3546
|
+
.np-text-body-default {
|
|
3547
|
+
hyphens: auto;
|
|
3548
|
+
hyphenate-limit-chars: 7 3;
|
|
3549
|
+
}
|
|
3550
|
+
@media (min-width: 840px) {
|
|
3551
|
+
.body-2,
|
|
3552
|
+
.body-3,
|
|
3553
|
+
.small,
|
|
3554
|
+
.tiny,
|
|
3555
|
+
body,
|
|
3556
|
+
small,
|
|
3557
|
+
.np-text-body-default {
|
|
3558
|
+
hyphenate-limit-chars: 8 3;
|
|
3559
|
+
}
|
|
3560
|
+
}
|
|
3561
|
+
@media (min-width: 1160px) {
|
|
3562
|
+
.body-2,
|
|
3563
|
+
.body-3,
|
|
3564
|
+
.small,
|
|
3565
|
+
.tiny,
|
|
3566
|
+
body,
|
|
3567
|
+
small,
|
|
3568
|
+
.np-text-body-default {
|
|
3569
|
+
hyphenate-limit-chars: 10 4 3;
|
|
3570
|
+
}
|
|
3571
|
+
}
|
|
3572
|
+
}
|
|
3573
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
3574
|
+
.body-2,
|
|
3575
|
+
.body-3,
|
|
3576
|
+
.small,
|
|
3577
|
+
.tiny,
|
|
3578
|
+
body,
|
|
3579
|
+
small,
|
|
3580
|
+
.np-text-body-default {
|
|
3581
|
+
hyphens: auto;
|
|
3582
|
+
-webkit-hyphenate-limit-before: 3;
|
|
3583
|
+
-webkit-hyphenate-limit-after: 3;
|
|
3584
|
+
}
|
|
3585
|
+
@media (min-width: 1160px) {
|
|
3586
|
+
.body-2,
|
|
3587
|
+
.body-3,
|
|
3588
|
+
.small,
|
|
3589
|
+
.tiny,
|
|
3590
|
+
body,
|
|
3591
|
+
small,
|
|
3592
|
+
.np-text-body-default {
|
|
3593
|
+
-webkit-hyphenate-limit-before: 4;
|
|
3594
|
+
}
|
|
3595
|
+
}
|
|
3536
3596
|
}
|
|
3537
3597
|
/* DEPRECATED: use .np-text-body-default-bold instead */
|
|
3538
3598
|
/* stylelint-disable-next-line selector-list-comma-newline-after */
|
|
@@ -3546,6 +3606,50 @@ small,
|
|
|
3546
3606
|
letter-spacing: -0.006em;
|
|
3547
3607
|
font-weight: 600;
|
|
3548
3608
|
font-weight: var(--font-weight-semi-bold);
|
|
3609
|
+
word-wrap: break-word;
|
|
3610
|
+
}
|
|
3611
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
3612
|
+
.control-2,
|
|
3613
|
+
.label,
|
|
3614
|
+
.control-label,
|
|
3615
|
+
.np-text-body-default-bold {
|
|
3616
|
+
hyphens: auto;
|
|
3617
|
+
hyphenate-limit-chars: 7 3;
|
|
3618
|
+
}
|
|
3619
|
+
@media (min-width: 840px) {
|
|
3620
|
+
.control-2,
|
|
3621
|
+
.label,
|
|
3622
|
+
.control-label,
|
|
3623
|
+
.np-text-body-default-bold {
|
|
3624
|
+
hyphenate-limit-chars: 8 3;
|
|
3625
|
+
}
|
|
3626
|
+
}
|
|
3627
|
+
@media (min-width: 1160px) {
|
|
3628
|
+
.control-2,
|
|
3629
|
+
.label,
|
|
3630
|
+
.control-label,
|
|
3631
|
+
.np-text-body-default-bold {
|
|
3632
|
+
hyphenate-limit-chars: 10 4 3;
|
|
3633
|
+
}
|
|
3634
|
+
}
|
|
3635
|
+
}
|
|
3636
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
3637
|
+
.control-2,
|
|
3638
|
+
.label,
|
|
3639
|
+
.control-label,
|
|
3640
|
+
.np-text-body-default-bold {
|
|
3641
|
+
hyphens: auto;
|
|
3642
|
+
-webkit-hyphenate-limit-before: 3;
|
|
3643
|
+
-webkit-hyphenate-limit-after: 3;
|
|
3644
|
+
}
|
|
3645
|
+
@media (min-width: 1160px) {
|
|
3646
|
+
.control-2,
|
|
3647
|
+
.label,
|
|
3648
|
+
.control-label,
|
|
3649
|
+
.np-text-body-default-bold {
|
|
3650
|
+
-webkit-hyphenate-limit-before: 4;
|
|
3651
|
+
}
|
|
3652
|
+
}
|
|
3549
3653
|
}
|
|
3550
3654
|
/* DEPRECATED: use .np-text-body-large instead */
|
|
3551
3655
|
/* stylelint-disable-next-line selector-list-comma-newline-after */
|
|
@@ -3558,6 +3662,45 @@ small,
|
|
|
3558
3662
|
font-size: var(--font-size-16);
|
|
3559
3663
|
line-height: 150%;
|
|
3560
3664
|
letter-spacing: -0.011em;
|
|
3665
|
+
word-wrap: break-word;
|
|
3666
|
+
}
|
|
3667
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
3668
|
+
.body-1,
|
|
3669
|
+
.value,
|
|
3670
|
+
.np-text-body-large {
|
|
3671
|
+
hyphens: auto;
|
|
3672
|
+
hyphenate-limit-chars: 7 3;
|
|
3673
|
+
}
|
|
3674
|
+
@media (min-width: 840px) {
|
|
3675
|
+
.body-1,
|
|
3676
|
+
.value,
|
|
3677
|
+
.np-text-body-large {
|
|
3678
|
+
hyphenate-limit-chars: 8 3;
|
|
3679
|
+
}
|
|
3680
|
+
}
|
|
3681
|
+
@media (min-width: 1160px) {
|
|
3682
|
+
.body-1,
|
|
3683
|
+
.value,
|
|
3684
|
+
.np-text-body-large {
|
|
3685
|
+
hyphenate-limit-chars: 10 4 3;
|
|
3686
|
+
}
|
|
3687
|
+
}
|
|
3688
|
+
}
|
|
3689
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
3690
|
+
.body-1,
|
|
3691
|
+
.value,
|
|
3692
|
+
.np-text-body-large {
|
|
3693
|
+
hyphens: auto;
|
|
3694
|
+
-webkit-hyphenate-limit-before: 3;
|
|
3695
|
+
-webkit-hyphenate-limit-after: 3;
|
|
3696
|
+
}
|
|
3697
|
+
@media (min-width: 1160px) {
|
|
3698
|
+
.body-1,
|
|
3699
|
+
.value,
|
|
3700
|
+
.np-text-body-large {
|
|
3701
|
+
-webkit-hyphenate-limit-before: 4;
|
|
3702
|
+
}
|
|
3703
|
+
}
|
|
3561
3704
|
}
|
|
3562
3705
|
/* DEPRECATED: use np-text-body-large-bold instead */
|
|
3563
3706
|
/* stylelint-disable-next-line selector-list-comma-newline-after */
|
|
@@ -3569,6 +3712,40 @@ small,
|
|
|
3569
3712
|
font-size: var(--font-size-16);
|
|
3570
3713
|
line-height: 150%;
|
|
3571
3714
|
letter-spacing: -0.011em;
|
|
3715
|
+
word-wrap: break-word;
|
|
3716
|
+
}
|
|
3717
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
3718
|
+
.control-1,
|
|
3719
|
+
.np-text-body-large-bold {
|
|
3720
|
+
hyphens: auto;
|
|
3721
|
+
hyphenate-limit-chars: 7 3;
|
|
3722
|
+
}
|
|
3723
|
+
@media (min-width: 840px) {
|
|
3724
|
+
.control-1,
|
|
3725
|
+
.np-text-body-large-bold {
|
|
3726
|
+
hyphenate-limit-chars: 8 3;
|
|
3727
|
+
}
|
|
3728
|
+
}
|
|
3729
|
+
@media (min-width: 1160px) {
|
|
3730
|
+
.control-1,
|
|
3731
|
+
.np-text-body-large-bold {
|
|
3732
|
+
hyphenate-limit-chars: 10 4 3;
|
|
3733
|
+
}
|
|
3734
|
+
}
|
|
3735
|
+
}
|
|
3736
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
3737
|
+
.control-1,
|
|
3738
|
+
.np-text-body-large-bold {
|
|
3739
|
+
hyphens: auto;
|
|
3740
|
+
-webkit-hyphenate-limit-before: 3;
|
|
3741
|
+
-webkit-hyphenate-limit-after: 3;
|
|
3742
|
+
}
|
|
3743
|
+
@media (min-width: 1160px) {
|
|
3744
|
+
.control-1,
|
|
3745
|
+
.np-text-body-large-bold {
|
|
3746
|
+
-webkit-hyphenate-limit-before: 4;
|
|
3747
|
+
}
|
|
3748
|
+
}
|
|
3572
3749
|
}
|
|
3573
3750
|
a,
|
|
3574
3751
|
.np-text-link-default,
|
|
@@ -3675,6 +3852,7 @@ a,
|
|
|
3675
3852
|
.np-text-display-medium,
|
|
3676
3853
|
.np-text-display-small {
|
|
3677
3854
|
letter-spacing: normal;
|
|
3855
|
+
word-wrap: break-word;
|
|
3678
3856
|
}
|
|
3679
3857
|
@supports (hyphenate-limit-chars: 1) {
|
|
3680
3858
|
.np-text-display-extra-large,
|
|
@@ -3763,6 +3941,13 @@ a,
|
|
|
3763
3941
|
font-weight: 400;
|
|
3764
3942
|
font-weight: var(--font-weight-regular);
|
|
3765
3943
|
}
|
|
3944
|
+
/* Disable hyphenation for Japanese, Thai, and Chinese — these languages use character-level breaks and should never insert hyphens. */
|
|
3945
|
+
:lang(ja),
|
|
3946
|
+
:lang(th),
|
|
3947
|
+
:lang(zh-CN),
|
|
3948
|
+
:lang(zh-HK) {
|
|
3949
|
+
hyphens: none;
|
|
3950
|
+
}
|
|
3766
3951
|
:lang(af) .np-text-display-extra-large,
|
|
3767
3952
|
:lang(sq) .np-text-display-extra-large,
|
|
3768
3953
|
:lang(eu) .np-text-display-extra-large,
|
|
@@ -5880,6 +6065,9 @@ a.text-inverse:focus {
|
|
|
5880
6065
|
padding-block-end: var(--size-96);
|
|
5881
6066
|
}
|
|
5882
6067
|
}
|
|
6068
|
+
.np-text-hyphenated {
|
|
6069
|
+
word-wrap: break-word;
|
|
6070
|
+
}
|
|
5883
6071
|
@supports (hyphenate-limit-chars: 1) {
|
|
5884
6072
|
.np-text-hyphenated {
|
|
5885
6073
|
hyphens: auto;
|
|
@@ -6812,6 +7000,7 @@ a.badge:focus {
|
|
|
6812
7000
|
.btn {
|
|
6813
7001
|
line-height: 150%;
|
|
6814
7002
|
letter-spacing: -0.011em;
|
|
7003
|
+
word-wrap: break-word;
|
|
6815
7004
|
display: inline-block;
|
|
6816
7005
|
margin-block-end: 0;
|
|
6817
7006
|
text-align: center;
|
|
@@ -6838,6 +7027,34 @@ a.badge:focus {
|
|
|
6838
7027
|
-moz-user-select: none;
|
|
6839
7028
|
user-select: none;
|
|
6840
7029
|
}
|
|
7030
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
7031
|
+
.btn {
|
|
7032
|
+
hyphens: auto;
|
|
7033
|
+
hyphenate-limit-chars: 7 3;
|
|
7034
|
+
}
|
|
7035
|
+
@media (min-width: 840px) {
|
|
7036
|
+
.btn {
|
|
7037
|
+
hyphenate-limit-chars: 8 3;
|
|
7038
|
+
}
|
|
7039
|
+
}
|
|
7040
|
+
@media (min-width: 1160px) {
|
|
7041
|
+
.btn {
|
|
7042
|
+
hyphenate-limit-chars: 10 4 3;
|
|
7043
|
+
}
|
|
7044
|
+
}
|
|
7045
|
+
}
|
|
7046
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
7047
|
+
.btn {
|
|
7048
|
+
hyphens: auto;
|
|
7049
|
+
-webkit-hyphenate-limit-before: 3;
|
|
7050
|
+
-webkit-hyphenate-limit-after: 3;
|
|
7051
|
+
}
|
|
7052
|
+
@media (min-width: 1160px) {
|
|
7053
|
+
.btn {
|
|
7054
|
+
-webkit-hyphenate-limit-before: 4;
|
|
7055
|
+
}
|
|
7056
|
+
}
|
|
7057
|
+
}
|
|
6841
7058
|
.btn .dropdown-menu > li > a {
|
|
6842
7059
|
font-size: 1rem;
|
|
6843
7060
|
font-size: var(--font-size-16);
|
|
@@ -8586,9 +8803,38 @@ a.btn {
|
|
|
8586
8803
|
letter-spacing: -0.006em;
|
|
8587
8804
|
font-weight: 400;
|
|
8588
8805
|
font-weight: var(--font-weight-regular);
|
|
8806
|
+
word-wrap: break-word;
|
|
8589
8807
|
color: #5d7079;
|
|
8590
8808
|
color: var(--color-content-secondary);
|
|
8591
8809
|
}
|
|
8810
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
8811
|
+
.btn-group .secondary {
|
|
8812
|
+
hyphens: auto;
|
|
8813
|
+
hyphenate-limit-chars: 7 3;
|
|
8814
|
+
}
|
|
8815
|
+
@media (min-width: 840px) {
|
|
8816
|
+
.btn-group .secondary {
|
|
8817
|
+
hyphenate-limit-chars: 8 3;
|
|
8818
|
+
}
|
|
8819
|
+
}
|
|
8820
|
+
@media (min-width: 1160px) {
|
|
8821
|
+
.btn-group .secondary {
|
|
8822
|
+
hyphenate-limit-chars: 10 4 3;
|
|
8823
|
+
}
|
|
8824
|
+
}
|
|
8825
|
+
}
|
|
8826
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
8827
|
+
.btn-group .secondary {
|
|
8828
|
+
hyphens: auto;
|
|
8829
|
+
-webkit-hyphenate-limit-before: 3;
|
|
8830
|
+
-webkit-hyphenate-limit-after: 3;
|
|
8831
|
+
}
|
|
8832
|
+
@media (min-width: 1160px) {
|
|
8833
|
+
.btn-group .secondary {
|
|
8834
|
+
-webkit-hyphenate-limit-before: 4;
|
|
8835
|
+
}
|
|
8836
|
+
}
|
|
8837
|
+
}
|
|
8592
8838
|
form {
|
|
8593
8839
|
margin-block-end: 0;
|
|
8594
8840
|
}
|
|
@@ -8689,6 +8935,7 @@ output {
|
|
|
8689
8935
|
font-size: var(--font-size-16);
|
|
8690
8936
|
line-height: 150%;
|
|
8691
8937
|
letter-spacing: -0.011em;
|
|
8938
|
+
word-wrap: break-word;
|
|
8692
8939
|
background-clip: padding-box;
|
|
8693
8940
|
}
|
|
8694
8941
|
select.form-control {
|
|
@@ -8698,6 +8945,34 @@ textarea.form-control,
|
|
|
8698
8945
|
select[multiple].form-control {
|
|
8699
8946
|
block-size: auto;
|
|
8700
8947
|
}
|
|
8948
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
8949
|
+
.form-control {
|
|
8950
|
+
hyphens: auto;
|
|
8951
|
+
hyphenate-limit-chars: 7 3;
|
|
8952
|
+
}
|
|
8953
|
+
@media (min-width: 840px) {
|
|
8954
|
+
.form-control {
|
|
8955
|
+
hyphenate-limit-chars: 8 3;
|
|
8956
|
+
}
|
|
8957
|
+
}
|
|
8958
|
+
@media (min-width: 1160px) {
|
|
8959
|
+
.form-control {
|
|
8960
|
+
hyphenate-limit-chars: 10 4 3;
|
|
8961
|
+
}
|
|
8962
|
+
}
|
|
8963
|
+
}
|
|
8964
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
8965
|
+
.form-control {
|
|
8966
|
+
hyphens: auto;
|
|
8967
|
+
-webkit-hyphenate-limit-before: 3;
|
|
8968
|
+
-webkit-hyphenate-limit-after: 3;
|
|
8969
|
+
}
|
|
8970
|
+
@media (min-width: 1160px) {
|
|
8971
|
+
.form-control {
|
|
8972
|
+
-webkit-hyphenate-limit-before: 4;
|
|
8973
|
+
}
|
|
8974
|
+
}
|
|
8975
|
+
}
|
|
8701
8976
|
.form-control:not(.disabled):not(:disabled):focus {
|
|
8702
8977
|
border-color: #0081ba;
|
|
8703
8978
|
border-color: var(--color-interactive-accent-active);
|
|
@@ -8883,6 +9158,7 @@ fieldset[disabled] .checkbox label {
|
|
|
8883
9158
|
letter-spacing: -0.006em;
|
|
8884
9159
|
font-weight: 400;
|
|
8885
9160
|
font-weight: var(--font-weight-regular);
|
|
9161
|
+
word-wrap: break-word;
|
|
8886
9162
|
}
|
|
8887
9163
|
select.input-sm {
|
|
8888
9164
|
min-block-size: 32px;
|
|
@@ -8891,6 +9167,34 @@ textarea.input-sm,
|
|
|
8891
9167
|
select[multiple].input-sm {
|
|
8892
9168
|
block-size: auto;
|
|
8893
9169
|
}
|
|
9170
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
9171
|
+
.input-sm {
|
|
9172
|
+
hyphens: auto;
|
|
9173
|
+
hyphenate-limit-chars: 7 3;
|
|
9174
|
+
}
|
|
9175
|
+
@media (min-width: 840px) {
|
|
9176
|
+
.input-sm {
|
|
9177
|
+
hyphenate-limit-chars: 8 3;
|
|
9178
|
+
}
|
|
9179
|
+
}
|
|
9180
|
+
@media (min-width: 1160px) {
|
|
9181
|
+
.input-sm {
|
|
9182
|
+
hyphenate-limit-chars: 10 4 3;
|
|
9183
|
+
}
|
|
9184
|
+
}
|
|
9185
|
+
}
|
|
9186
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
9187
|
+
.input-sm {
|
|
9188
|
+
hyphens: auto;
|
|
9189
|
+
-webkit-hyphenate-limit-before: 3;
|
|
9190
|
+
-webkit-hyphenate-limit-after: 3;
|
|
9191
|
+
}
|
|
9192
|
+
@media (min-width: 1160px) {
|
|
9193
|
+
.input-sm {
|
|
9194
|
+
-webkit-hyphenate-limit-before: 4;
|
|
9195
|
+
}
|
|
9196
|
+
}
|
|
9197
|
+
}
|
|
8894
9198
|
.form-group-sm .form-control,
|
|
8895
9199
|
.navbar .form-control {
|
|
8896
9200
|
block-size: 32px;
|
|
@@ -8937,6 +9241,7 @@ select[multiple].input-sm {
|
|
|
8937
9241
|
font-size: var(--font-size-16);
|
|
8938
9242
|
line-height: 150%;
|
|
8939
9243
|
letter-spacing: -0.011em;
|
|
9244
|
+
word-wrap: break-word;
|
|
8940
9245
|
}
|
|
8941
9246
|
select.input-lg {
|
|
8942
9247
|
min-block-size: var(--input-height-large);
|
|
@@ -8945,6 +9250,34 @@ textarea.input-lg,
|
|
|
8945
9250
|
select[multiple].input-lg {
|
|
8946
9251
|
block-size: auto;
|
|
8947
9252
|
}
|
|
9253
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
9254
|
+
.input-lg {
|
|
9255
|
+
hyphens: auto;
|
|
9256
|
+
hyphenate-limit-chars: 7 3;
|
|
9257
|
+
}
|
|
9258
|
+
@media (min-width: 840px) {
|
|
9259
|
+
.input-lg {
|
|
9260
|
+
hyphenate-limit-chars: 8 3;
|
|
9261
|
+
}
|
|
9262
|
+
}
|
|
9263
|
+
@media (min-width: 1160px) {
|
|
9264
|
+
.input-lg {
|
|
9265
|
+
hyphenate-limit-chars: 10 4 3;
|
|
9266
|
+
}
|
|
9267
|
+
}
|
|
9268
|
+
}
|
|
9269
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
9270
|
+
.input-lg {
|
|
9271
|
+
hyphens: auto;
|
|
9272
|
+
-webkit-hyphenate-limit-before: 3;
|
|
9273
|
+
-webkit-hyphenate-limit-after: 3;
|
|
9274
|
+
}
|
|
9275
|
+
@media (min-width: 1160px) {
|
|
9276
|
+
.input-lg {
|
|
9277
|
+
-webkit-hyphenate-limit-before: 4;
|
|
9278
|
+
}
|
|
9279
|
+
}
|
|
9280
|
+
}
|
|
8948
9281
|
.form-group-lg {
|
|
8949
9282
|
position: relative;
|
|
8950
9283
|
}
|
|
@@ -10546,11 +10879,40 @@ input[type="checkbox"]:not(.disabled):not(:disabled):indeterminate:active + .tw-
|
|
|
10546
10879
|
font-size: var(--font-size-16);
|
|
10547
10880
|
line-height: 150%;
|
|
10548
10881
|
letter-spacing: -0.011em;
|
|
10882
|
+
word-wrap: break-word;
|
|
10549
10883
|
display: block;
|
|
10550
10884
|
inline-size: 100%;
|
|
10551
10885
|
color: #768e9c;
|
|
10552
10886
|
color: var(--color-content-tertiary);
|
|
10553
10887
|
}
|
|
10888
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
10889
|
+
.form-control-placeholder {
|
|
10890
|
+
hyphens: auto;
|
|
10891
|
+
hyphenate-limit-chars: 7 3;
|
|
10892
|
+
}
|
|
10893
|
+
@media (min-width: 840px) {
|
|
10894
|
+
.form-control-placeholder {
|
|
10895
|
+
hyphenate-limit-chars: 8 3;
|
|
10896
|
+
}
|
|
10897
|
+
}
|
|
10898
|
+
@media (min-width: 1160px) {
|
|
10899
|
+
.form-control-placeholder {
|
|
10900
|
+
hyphenate-limit-chars: 10 4 3;
|
|
10901
|
+
}
|
|
10902
|
+
}
|
|
10903
|
+
}
|
|
10904
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
10905
|
+
.form-control-placeholder {
|
|
10906
|
+
hyphens: auto;
|
|
10907
|
+
-webkit-hyphenate-limit-before: 3;
|
|
10908
|
+
-webkit-hyphenate-limit-after: 3;
|
|
10909
|
+
}
|
|
10910
|
+
@media (min-width: 1160px) {
|
|
10911
|
+
.form-control-placeholder {
|
|
10912
|
+
-webkit-hyphenate-limit-before: 4;
|
|
10913
|
+
}
|
|
10914
|
+
}
|
|
10915
|
+
}
|
|
10554
10916
|
.np-theme-personal .btn-input,
|
|
10555
10917
|
.np-theme-personal .input-group,
|
|
10556
10918
|
.np-theme-personal .form-control,
|
|
@@ -10776,6 +11138,7 @@ input[type="checkbox"]:not(.disabled):not(:disabled):indeterminate:active + .tw-
|
|
|
10776
11138
|
line-height: 1.2;
|
|
10777
11139
|
line-height: var(--line-height-title);
|
|
10778
11140
|
letter-spacing: 0;
|
|
11141
|
+
word-wrap: break-word;
|
|
10779
11142
|
margin-block-end: initial;
|
|
10780
11143
|
font-size: 1.375rem;
|
|
10781
11144
|
font-size: var(--font-size-22);
|
|
@@ -10836,6 +11199,44 @@ select[multiple].input-group-lg > .input-group-btn .btn {
|
|
|
10836
11199
|
}
|
|
10837
11200
|
}
|
|
10838
11201
|
}
|
|
11202
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
11203
|
+
.input-group-lg > .form-control,
|
|
11204
|
+
.input-group-lg > .input-group-addon,
|
|
11205
|
+
.input-group-lg > .input-group-btn .btn {
|
|
11206
|
+
hyphens: auto;
|
|
11207
|
+
hyphenate-limit-chars: 7 3;
|
|
11208
|
+
}
|
|
11209
|
+
@media (min-width: 840px) {
|
|
11210
|
+
.input-group-lg > .form-control,
|
|
11211
|
+
.input-group-lg > .input-group-addon,
|
|
11212
|
+
.input-group-lg > .input-group-btn .btn {
|
|
11213
|
+
hyphenate-limit-chars: 8 3;
|
|
11214
|
+
}
|
|
11215
|
+
}
|
|
11216
|
+
@media (min-width: 1160px) {
|
|
11217
|
+
.input-group-lg > .form-control,
|
|
11218
|
+
.input-group-lg > .input-group-addon,
|
|
11219
|
+
.input-group-lg > .input-group-btn .btn {
|
|
11220
|
+
hyphenate-limit-chars: 10 4 3;
|
|
11221
|
+
}
|
|
11222
|
+
}
|
|
11223
|
+
}
|
|
11224
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
11225
|
+
.input-group-lg > .form-control,
|
|
11226
|
+
.input-group-lg > .input-group-addon,
|
|
11227
|
+
.input-group-lg > .input-group-btn .btn {
|
|
11228
|
+
hyphens: auto;
|
|
11229
|
+
-webkit-hyphenate-limit-before: 3;
|
|
11230
|
+
-webkit-hyphenate-limit-after: 3;
|
|
11231
|
+
}
|
|
11232
|
+
@media (min-width: 1160px) {
|
|
11233
|
+
.input-group-lg > .form-control,
|
|
11234
|
+
.input-group-lg > .input-group-addon,
|
|
11235
|
+
.input-group-lg > .input-group-btn .btn {
|
|
11236
|
+
-webkit-hyphenate-limit-before: 4;
|
|
11237
|
+
}
|
|
11238
|
+
}
|
|
11239
|
+
}
|
|
10839
11240
|
.input-group-lg > .form-control + p,
|
|
10840
11241
|
.input-group-lg > .input-group-addon + p,
|
|
10841
11242
|
.input-group-lg > .input-group-btn .btn + p,
|
|
@@ -10863,6 +11264,7 @@ select[multiple].input-group-lg > .input-group-btn .btn {
|
|
|
10863
11264
|
letter-spacing: -0.006em;
|
|
10864
11265
|
font-weight: 400;
|
|
10865
11266
|
font-weight: var(--font-weight-regular);
|
|
11267
|
+
word-wrap: break-word;
|
|
10866
11268
|
}
|
|
10867
11269
|
select.input-group-sm > .form-control,
|
|
10868
11270
|
select.input-group-sm > .input-group-addon {
|
|
@@ -10874,6 +11276,39 @@ select[multiple].input-group-sm > .form-control,
|
|
|
10874
11276
|
select[multiple].input-group-sm > .input-group-addon {
|
|
10875
11277
|
block-size: auto;
|
|
10876
11278
|
}
|
|
11279
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
11280
|
+
.input-group-sm > .form-control,
|
|
11281
|
+
.input-group-sm > .input-group-addon {
|
|
11282
|
+
hyphens: auto;
|
|
11283
|
+
hyphenate-limit-chars: 7 3;
|
|
11284
|
+
}
|
|
11285
|
+
@media (min-width: 840px) {
|
|
11286
|
+
.input-group-sm > .form-control,
|
|
11287
|
+
.input-group-sm > .input-group-addon {
|
|
11288
|
+
hyphenate-limit-chars: 8 3;
|
|
11289
|
+
}
|
|
11290
|
+
}
|
|
11291
|
+
@media (min-width: 1160px) {
|
|
11292
|
+
.input-group-sm > .form-control,
|
|
11293
|
+
.input-group-sm > .input-group-addon {
|
|
11294
|
+
hyphenate-limit-chars: 10 4 3;
|
|
11295
|
+
}
|
|
11296
|
+
}
|
|
11297
|
+
}
|
|
11298
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
11299
|
+
.input-group-sm > .form-control,
|
|
11300
|
+
.input-group-sm > .input-group-addon {
|
|
11301
|
+
hyphens: auto;
|
|
11302
|
+
-webkit-hyphenate-limit-before: 3;
|
|
11303
|
+
-webkit-hyphenate-limit-after: 3;
|
|
11304
|
+
}
|
|
11305
|
+
@media (min-width: 1160px) {
|
|
11306
|
+
.input-group-sm > .form-control,
|
|
11307
|
+
.input-group-sm > .input-group-addon {
|
|
11308
|
+
-webkit-hyphenate-limit-before: 4;
|
|
11309
|
+
}
|
|
11310
|
+
}
|
|
11311
|
+
}
|
|
10877
11312
|
.input-group-sm > .form-control .icon,
|
|
10878
11313
|
.input-group-sm > .input-group-addon .icon {
|
|
10879
11314
|
font-size: 1.25rem;
|
|
@@ -11504,6 +11939,7 @@ li > a > .currency-flag:first-child {
|
|
|
11504
11939
|
line-height: 1.2;
|
|
11505
11940
|
line-height: var(--line-height-title);
|
|
11506
11941
|
letter-spacing: 0;
|
|
11942
|
+
word-wrap: break-word;
|
|
11507
11943
|
font-size: 1.125rem;
|
|
11508
11944
|
font-size: var(--font-size-18);
|
|
11509
11945
|
font-weight: 600;
|
|
@@ -11552,9 +11988,38 @@ li > a > .currency-flag:first-child {
|
|
|
11552
11988
|
letter-spacing: -0.006em;
|
|
11553
11989
|
font-weight: 400;
|
|
11554
11990
|
font-weight: var(--font-weight-regular);
|
|
11991
|
+
word-wrap: break-word;
|
|
11555
11992
|
margin-block-start: 4px;
|
|
11556
11993
|
margin-block-start: var(--size-4);
|
|
11557
11994
|
}
|
|
11995
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
11996
|
+
.decision__content {
|
|
11997
|
+
hyphens: auto;
|
|
11998
|
+
hyphenate-limit-chars: 7 3;
|
|
11999
|
+
}
|
|
12000
|
+
@media (min-width: 840px) {
|
|
12001
|
+
.decision__content {
|
|
12002
|
+
hyphenate-limit-chars: 8 3;
|
|
12003
|
+
}
|
|
12004
|
+
}
|
|
12005
|
+
@media (min-width: 1160px) {
|
|
12006
|
+
.decision__content {
|
|
12007
|
+
hyphenate-limit-chars: 10 4 3;
|
|
12008
|
+
}
|
|
12009
|
+
}
|
|
12010
|
+
}
|
|
12011
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
12012
|
+
.decision__content {
|
|
12013
|
+
hyphens: auto;
|
|
12014
|
+
-webkit-hyphenate-limit-before: 3;
|
|
12015
|
+
-webkit-hyphenate-limit-after: 3;
|
|
12016
|
+
}
|
|
12017
|
+
@media (min-width: 1160px) {
|
|
12018
|
+
.decision__content {
|
|
12019
|
+
-webkit-hyphenate-limit-before: 4;
|
|
12020
|
+
}
|
|
12021
|
+
}
|
|
12022
|
+
}
|
|
11558
12023
|
.decision + .decision {
|
|
11559
12024
|
margin-block-start: -1px;
|
|
11560
12025
|
}
|
|
@@ -11638,6 +12103,7 @@ li > a > .currency-flag:first-child {
|
|
|
11638
12103
|
letter-spacing: -0.006em;
|
|
11639
12104
|
font-weight: 400;
|
|
11640
12105
|
font-weight: var(--font-weight-regular);
|
|
12106
|
+
word-wrap: break-word;
|
|
11641
12107
|
text-align: start;
|
|
11642
12108
|
background-color: #ffffff;
|
|
11643
12109
|
background-color: var(--color-background-screen);
|
|
@@ -11652,6 +12118,34 @@ li > a > .currency-flag:first-child {
|
|
|
11652
12118
|
transform: translateY(-10px) scale(0.95, 0.95);
|
|
11653
12119
|
visibility: hidden;
|
|
11654
12120
|
}
|
|
12121
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
12122
|
+
.dropdown-menu {
|
|
12123
|
+
hyphens: auto;
|
|
12124
|
+
hyphenate-limit-chars: 7 3;
|
|
12125
|
+
}
|
|
12126
|
+
@media (min-width: 840px) {
|
|
12127
|
+
.dropdown-menu {
|
|
12128
|
+
hyphenate-limit-chars: 8 3;
|
|
12129
|
+
}
|
|
12130
|
+
}
|
|
12131
|
+
@media (min-width: 1160px) {
|
|
12132
|
+
.dropdown-menu {
|
|
12133
|
+
hyphenate-limit-chars: 10 4 3;
|
|
12134
|
+
}
|
|
12135
|
+
}
|
|
12136
|
+
}
|
|
12137
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
12138
|
+
.dropdown-menu {
|
|
12139
|
+
hyphens: auto;
|
|
12140
|
+
-webkit-hyphenate-limit-before: 3;
|
|
12141
|
+
-webkit-hyphenate-limit-after: 3;
|
|
12142
|
+
}
|
|
12143
|
+
@media (min-width: 1160px) {
|
|
12144
|
+
.dropdown-menu {
|
|
12145
|
+
-webkit-hyphenate-limit-before: 4;
|
|
12146
|
+
}
|
|
12147
|
+
}
|
|
12148
|
+
}
|
|
11655
12149
|
.np-theme-personal .dropdown-menu,
|
|
11656
12150
|
.np-theme-personal--forest-green .dropdown-menu,
|
|
11657
12151
|
.np-theme-personal--dark .dropdown-menu {
|
|
@@ -11695,10 +12189,39 @@ li > a > .currency-flag:first-child {
|
|
|
11695
12189
|
letter-spacing: -0.006em;
|
|
11696
12190
|
font-weight: 400;
|
|
11697
12191
|
font-weight: var(--font-weight-regular);
|
|
12192
|
+
word-wrap: break-word;
|
|
11698
12193
|
color: #37517e;
|
|
11699
12194
|
color: var(--color-content-primary);
|
|
11700
12195
|
white-space: nowrap;
|
|
11701
12196
|
}
|
|
12197
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
12198
|
+
.dropdown-menu > li > a {
|
|
12199
|
+
hyphens: auto;
|
|
12200
|
+
hyphenate-limit-chars: 7 3;
|
|
12201
|
+
}
|
|
12202
|
+
@media (min-width: 840px) {
|
|
12203
|
+
.dropdown-menu > li > a {
|
|
12204
|
+
hyphenate-limit-chars: 8 3;
|
|
12205
|
+
}
|
|
12206
|
+
}
|
|
12207
|
+
@media (min-width: 1160px) {
|
|
12208
|
+
.dropdown-menu > li > a {
|
|
12209
|
+
hyphenate-limit-chars: 10 4 3;
|
|
12210
|
+
}
|
|
12211
|
+
}
|
|
12212
|
+
}
|
|
12213
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
12214
|
+
.dropdown-menu > li > a {
|
|
12215
|
+
hyphens: auto;
|
|
12216
|
+
-webkit-hyphenate-limit-before: 3;
|
|
12217
|
+
-webkit-hyphenate-limit-after: 3;
|
|
12218
|
+
}
|
|
12219
|
+
@media (min-width: 1160px) {
|
|
12220
|
+
.dropdown-menu > li > a {
|
|
12221
|
+
-webkit-hyphenate-limit-before: 4;
|
|
12222
|
+
}
|
|
12223
|
+
}
|
|
12224
|
+
}
|
|
11702
12225
|
.dropdown-menu > li > a .secondary {
|
|
11703
12226
|
display: block;
|
|
11704
12227
|
white-space: normal;
|
|
@@ -11873,6 +12396,7 @@ li > a > .currency-flag:first-child {
|
|
|
11873
12396
|
line-height: 1.2;
|
|
11874
12397
|
line-height: var(--line-height-title);
|
|
11875
12398
|
letter-spacing: 0;
|
|
12399
|
+
word-wrap: break-word;
|
|
11876
12400
|
font-weight: 500;
|
|
11877
12401
|
font-weight: var(--font-weight-medium);
|
|
11878
12402
|
font-size: 0.875rem;
|
|
@@ -11937,25 +12461,54 @@ li > a > .currency-flag:first-child {
|
|
|
11937
12461
|
inset-inline-start: 0;
|
|
11938
12462
|
inset-inline-end: auto;
|
|
11939
12463
|
}
|
|
11940
|
-
}
|
|
11941
|
-
.bootstrap-select .dropdown-menu {
|
|
11942
|
-
margin-block: -8px -6px;
|
|
11943
|
-
margin-inline: 0;
|
|
11944
|
-
}
|
|
11945
|
-
.droppable {
|
|
11946
|
-
position: relative;
|
|
11947
|
-
font-weight: 400;
|
|
11948
|
-
font-weight: var(--font-weight-regular);
|
|
11949
|
-
font-size: 1rem;
|
|
11950
|
-
font-size: var(--font-size-16);
|
|
11951
|
-
line-height: 150%;
|
|
11952
|
-
letter-spacing: -0.011em;
|
|
11953
|
-
|
|
11954
|
-
|
|
11955
|
-
border: 1px solid
|
|
11956
|
-
border
|
|
11957
|
-
|
|
11958
|
-
|
|
12464
|
+
}
|
|
12465
|
+
.bootstrap-select .dropdown-menu {
|
|
12466
|
+
margin-block: -8px -6px;
|
|
12467
|
+
margin-inline: 0;
|
|
12468
|
+
}
|
|
12469
|
+
.droppable {
|
|
12470
|
+
position: relative;
|
|
12471
|
+
font-weight: 400;
|
|
12472
|
+
font-weight: var(--font-weight-regular);
|
|
12473
|
+
font-size: 1rem;
|
|
12474
|
+
font-size: var(--font-size-16);
|
|
12475
|
+
line-height: 150%;
|
|
12476
|
+
letter-spacing: -0.011em;
|
|
12477
|
+
word-wrap: break-word;
|
|
12478
|
+
text-align: center;
|
|
12479
|
+
border: 1px solid #c9cbce;
|
|
12480
|
+
border: 1px solid var(--color-interactive-secondary);
|
|
12481
|
+
border-radius: 3px;
|
|
12482
|
+
overflow: auto;
|
|
12483
|
+
transition: border-color 0.15s linear;
|
|
12484
|
+
}
|
|
12485
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
12486
|
+
.droppable {
|
|
12487
|
+
hyphens: auto;
|
|
12488
|
+
hyphenate-limit-chars: 7 3;
|
|
12489
|
+
}
|
|
12490
|
+
@media (min-width: 840px) {
|
|
12491
|
+
.droppable {
|
|
12492
|
+
hyphenate-limit-chars: 8 3;
|
|
12493
|
+
}
|
|
12494
|
+
}
|
|
12495
|
+
@media (min-width: 1160px) {
|
|
12496
|
+
.droppable {
|
|
12497
|
+
hyphenate-limit-chars: 10 4 3;
|
|
12498
|
+
}
|
|
12499
|
+
}
|
|
12500
|
+
}
|
|
12501
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
12502
|
+
.droppable {
|
|
12503
|
+
hyphens: auto;
|
|
12504
|
+
-webkit-hyphenate-limit-before: 3;
|
|
12505
|
+
-webkit-hyphenate-limit-after: 3;
|
|
12506
|
+
}
|
|
12507
|
+
@media (min-width: 1160px) {
|
|
12508
|
+
.droppable {
|
|
12509
|
+
-webkit-hyphenate-limit-before: 4;
|
|
12510
|
+
}
|
|
12511
|
+
}
|
|
11959
12512
|
}
|
|
11960
12513
|
.droppable:hover {
|
|
11961
12514
|
border-color: #b5b7ba;
|
|
@@ -12677,11 +13230,40 @@ li > a > .currency-flag:first-child {
|
|
|
12677
13230
|
letter-spacing: -0.006em;
|
|
12678
13231
|
font-weight: 400;
|
|
12679
13232
|
font-weight: var(--font-weight-regular);
|
|
13233
|
+
word-wrap: break-word;
|
|
12680
13234
|
padding-block-start: calc(8px * 10);
|
|
12681
13235
|
padding-block-start: calc(var(--size-8) * 10);
|
|
12682
13236
|
padding-block-end: calc(8px * 10);
|
|
12683
13237
|
padding-block-end: calc(var(--size-8) * 10);
|
|
12684
13238
|
}
|
|
13239
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
13240
|
+
.footer {
|
|
13241
|
+
hyphens: auto;
|
|
13242
|
+
hyphenate-limit-chars: 7 3;
|
|
13243
|
+
}
|
|
13244
|
+
@media (min-width: 840px) {
|
|
13245
|
+
.footer {
|
|
13246
|
+
hyphenate-limit-chars: 8 3;
|
|
13247
|
+
}
|
|
13248
|
+
}
|
|
13249
|
+
@media (min-width: 1160px) {
|
|
13250
|
+
.footer {
|
|
13251
|
+
hyphenate-limit-chars: 10 4 3;
|
|
13252
|
+
}
|
|
13253
|
+
}
|
|
13254
|
+
}
|
|
13255
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
13256
|
+
.footer {
|
|
13257
|
+
hyphens: auto;
|
|
13258
|
+
-webkit-hyphenate-limit-before: 3;
|
|
13259
|
+
-webkit-hyphenate-limit-after: 3;
|
|
13260
|
+
}
|
|
13261
|
+
@media (min-width: 1160px) {
|
|
13262
|
+
.footer {
|
|
13263
|
+
-webkit-hyphenate-limit-before: 4;
|
|
13264
|
+
}
|
|
13265
|
+
}
|
|
13266
|
+
}
|
|
12685
13267
|
@media (min-width: 600px) {
|
|
12686
13268
|
.footer {
|
|
12687
13269
|
padding-block-start: calc(8px * 15);
|
|
@@ -12708,6 +13290,40 @@ li > a > .currency-flag:first-child {
|
|
|
12708
13290
|
letter-spacing: -0.006em;
|
|
12709
13291
|
font-weight: 400;
|
|
12710
13292
|
font-weight: var(--font-weight-regular);
|
|
13293
|
+
word-wrap: break-word;
|
|
13294
|
+
}
|
|
13295
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
13296
|
+
.footer .footer-link,
|
|
13297
|
+
.footer .link-icon {
|
|
13298
|
+
hyphens: auto;
|
|
13299
|
+
hyphenate-limit-chars: 7 3;
|
|
13300
|
+
}
|
|
13301
|
+
@media (min-width: 840px) {
|
|
13302
|
+
.footer .footer-link,
|
|
13303
|
+
.footer .link-icon {
|
|
13304
|
+
hyphenate-limit-chars: 8 3;
|
|
13305
|
+
}
|
|
13306
|
+
}
|
|
13307
|
+
@media (min-width: 1160px) {
|
|
13308
|
+
.footer .footer-link,
|
|
13309
|
+
.footer .link-icon {
|
|
13310
|
+
hyphenate-limit-chars: 10 4 3;
|
|
13311
|
+
}
|
|
13312
|
+
}
|
|
13313
|
+
}
|
|
13314
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
13315
|
+
.footer .footer-link,
|
|
13316
|
+
.footer .link-icon {
|
|
13317
|
+
hyphens: auto;
|
|
13318
|
+
-webkit-hyphenate-limit-before: 3;
|
|
13319
|
+
-webkit-hyphenate-limit-after: 3;
|
|
13320
|
+
}
|
|
13321
|
+
@media (min-width: 1160px) {
|
|
13322
|
+
.footer .footer-link,
|
|
13323
|
+
.footer .link-icon {
|
|
13324
|
+
-webkit-hyphenate-limit-before: 4;
|
|
13325
|
+
}
|
|
13326
|
+
}
|
|
12711
13327
|
}
|
|
12712
13328
|
.footer .footer-link:hover,
|
|
12713
13329
|
.footer .link-icon:hover,
|
|
@@ -14242,6 +14858,7 @@ li > a > .currency-flag:first-child {
|
|
|
14242
14858
|
line-height: 1.2;
|
|
14243
14859
|
line-height: var(--line-height-title);
|
|
14244
14860
|
letter-spacing: 0;
|
|
14861
|
+
word-wrap: break-word;
|
|
14245
14862
|
font-weight: 500;
|
|
14246
14863
|
font-weight: var(--font-weight-medium);
|
|
14247
14864
|
font-size: 0.875rem;
|
|
@@ -17098,6 +17715,7 @@ button.close {
|
|
|
17098
17715
|
letter-spacing: -0.006em;
|
|
17099
17716
|
font-weight: 400;
|
|
17100
17717
|
font-weight: var(--font-weight-regular);
|
|
17718
|
+
word-wrap: break-word;
|
|
17101
17719
|
background-color: #ffffff;
|
|
17102
17720
|
background-color: var(--color-background-screen);
|
|
17103
17721
|
background-clip: padding-box;
|
|
@@ -17105,6 +17723,34 @@ button.close {
|
|
|
17105
17723
|
box-shadow: 0 20px 66px 0 rgba(34, 48, 73, 0.2);
|
|
17106
17724
|
position: absolute;
|
|
17107
17725
|
}
|
|
17726
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
17727
|
+
.popover {
|
|
17728
|
+
hyphens: auto;
|
|
17729
|
+
hyphenate-limit-chars: 7 3;
|
|
17730
|
+
}
|
|
17731
|
+
@media (min-width: 840px) {
|
|
17732
|
+
.popover {
|
|
17733
|
+
hyphenate-limit-chars: 8 3;
|
|
17734
|
+
}
|
|
17735
|
+
}
|
|
17736
|
+
@media (min-width: 1160px) {
|
|
17737
|
+
.popover {
|
|
17738
|
+
hyphenate-limit-chars: 10 4 3;
|
|
17739
|
+
}
|
|
17740
|
+
}
|
|
17741
|
+
}
|
|
17742
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
17743
|
+
.popover {
|
|
17744
|
+
hyphens: auto;
|
|
17745
|
+
-webkit-hyphenate-limit-before: 3;
|
|
17746
|
+
-webkit-hyphenate-limit-after: 3;
|
|
17747
|
+
}
|
|
17748
|
+
@media (min-width: 1160px) {
|
|
17749
|
+
.popover {
|
|
17750
|
+
-webkit-hyphenate-limit-before: 4;
|
|
17751
|
+
}
|
|
17752
|
+
}
|
|
17753
|
+
}
|
|
17108
17754
|
.np-theme-personal--forest-green .popover,
|
|
17109
17755
|
.np-theme-personal--bright-green .popover,
|
|
17110
17756
|
.np-theme-personal--dark .popover {
|
|
@@ -17262,6 +17908,7 @@ button.close {
|
|
|
17262
17908
|
line-height: 1.2;
|
|
17263
17909
|
line-height: var(--line-height-title);
|
|
17264
17910
|
letter-spacing: 0;
|
|
17911
|
+
word-wrap: break-word;
|
|
17265
17912
|
font-size: 1.125rem;
|
|
17266
17913
|
font-size: var(--font-size-18);
|
|
17267
17914
|
font-weight: 600;
|
|
@@ -17319,9 +17966,38 @@ button.close {
|
|
|
17319
17966
|
letter-spacing: -0.006em;
|
|
17320
17967
|
font-weight: 400;
|
|
17321
17968
|
font-weight: var(--font-weight-regular);
|
|
17969
|
+
word-wrap: break-word;
|
|
17322
17970
|
color: #5d7079;
|
|
17323
17971
|
color: var(--color-content-secondary);
|
|
17324
17972
|
}
|
|
17973
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
17974
|
+
.popover-content {
|
|
17975
|
+
hyphens: auto;
|
|
17976
|
+
hyphenate-limit-chars: 7 3;
|
|
17977
|
+
}
|
|
17978
|
+
@media (min-width: 840px) {
|
|
17979
|
+
.popover-content {
|
|
17980
|
+
hyphenate-limit-chars: 8 3;
|
|
17981
|
+
}
|
|
17982
|
+
}
|
|
17983
|
+
@media (min-width: 1160px) {
|
|
17984
|
+
.popover-content {
|
|
17985
|
+
hyphenate-limit-chars: 10 4 3;
|
|
17986
|
+
}
|
|
17987
|
+
}
|
|
17988
|
+
}
|
|
17989
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
17990
|
+
.popover-content {
|
|
17991
|
+
hyphens: auto;
|
|
17992
|
+
-webkit-hyphenate-limit-before: 3;
|
|
17993
|
+
-webkit-hyphenate-limit-after: 3;
|
|
17994
|
+
}
|
|
17995
|
+
@media (min-width: 1160px) {
|
|
17996
|
+
.popover-content {
|
|
17997
|
+
-webkit-hyphenate-limit-before: 4;
|
|
17998
|
+
}
|
|
17999
|
+
}
|
|
18000
|
+
}
|
|
17325
18001
|
.popover-content > :last-child {
|
|
17326
18002
|
margin-block-end: 0;
|
|
17327
18003
|
}
|
|
@@ -19334,6 +20010,7 @@ table col[class*="col-"] {
|
|
|
19334
20010
|
letter-spacing: -0.006em;
|
|
19335
20011
|
font-weight: 400;
|
|
19336
20012
|
font-weight: var(--font-weight-regular);
|
|
20013
|
+
word-wrap: break-word;
|
|
19337
20014
|
max-inline-size: 200px;
|
|
19338
20015
|
min-inline-size: 120px;
|
|
19339
20016
|
padding-block: 16px;
|
|
@@ -19348,6 +20025,34 @@ table col[class*="col-"] {
|
|
|
19348
20025
|
border-radius: 3px;
|
|
19349
20026
|
box-shadow: 0 1px 28px 0 rgba(34, 48, 73, 0.2);
|
|
19350
20027
|
}
|
|
20028
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
20029
|
+
.tooltip-inner {
|
|
20030
|
+
hyphens: auto;
|
|
20031
|
+
hyphenate-limit-chars: 7 3;
|
|
20032
|
+
}
|
|
20033
|
+
@media (min-width: 840px) {
|
|
20034
|
+
.tooltip-inner {
|
|
20035
|
+
hyphenate-limit-chars: 8 3;
|
|
20036
|
+
}
|
|
20037
|
+
}
|
|
20038
|
+
@media (min-width: 1160px) {
|
|
20039
|
+
.tooltip-inner {
|
|
20040
|
+
hyphenate-limit-chars: 10 4 3;
|
|
20041
|
+
}
|
|
20042
|
+
}
|
|
20043
|
+
}
|
|
20044
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
20045
|
+
.tooltip-inner {
|
|
20046
|
+
hyphens: auto;
|
|
20047
|
+
-webkit-hyphenate-limit-before: 3;
|
|
20048
|
+
-webkit-hyphenate-limit-after: 3;
|
|
20049
|
+
}
|
|
20050
|
+
@media (min-width: 1160px) {
|
|
20051
|
+
.tooltip-inner {
|
|
20052
|
+
-webkit-hyphenate-limit-before: 4;
|
|
20053
|
+
}
|
|
20054
|
+
}
|
|
20055
|
+
}
|
|
19351
20056
|
.np-theme-personal--forest-green .tooltip-inner,
|
|
19352
20057
|
.np-theme-personal--bright-green .tooltip-inner,
|
|
19353
20058
|
.np-theme-personal--dark .tooltip-inner {
|
|
@@ -22505,11 +23210,40 @@ button.np-option {
|
|
|
22505
23210
|
font-size: var(--font-size-16);
|
|
22506
23211
|
line-height: 150%;
|
|
22507
23212
|
letter-spacing: -0.011em;
|
|
23213
|
+
word-wrap: break-word;
|
|
22508
23214
|
padding-block-start: 12px;
|
|
22509
23215
|
padding-block-start: var(--size-12);
|
|
22510
23216
|
padding-block-end: 12px;
|
|
22511
23217
|
padding-block-end: var(--size-12);
|
|
22512
23218
|
}
|
|
23219
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
23220
|
+
.np-form-control--size-auto {
|
|
23221
|
+
hyphens: auto;
|
|
23222
|
+
hyphenate-limit-chars: 7 3;
|
|
23223
|
+
}
|
|
23224
|
+
@media (min-width: 840px) {
|
|
23225
|
+
.np-form-control--size-auto {
|
|
23226
|
+
hyphenate-limit-chars: 8 3;
|
|
23227
|
+
}
|
|
23228
|
+
}
|
|
23229
|
+
@media (min-width: 1160px) {
|
|
23230
|
+
.np-form-control--size-auto {
|
|
23231
|
+
hyphenate-limit-chars: 10 4 3;
|
|
23232
|
+
}
|
|
23233
|
+
}
|
|
23234
|
+
}
|
|
23235
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
23236
|
+
.np-form-control--size-auto {
|
|
23237
|
+
hyphens: auto;
|
|
23238
|
+
-webkit-hyphenate-limit-before: 3;
|
|
23239
|
+
-webkit-hyphenate-limit-after: 3;
|
|
23240
|
+
}
|
|
23241
|
+
@media (min-width: 1160px) {
|
|
23242
|
+
.np-form-control--size-auto {
|
|
23243
|
+
-webkit-hyphenate-limit-before: 4;
|
|
23244
|
+
}
|
|
23245
|
+
}
|
|
23246
|
+
}
|
|
22513
23247
|
.np-form-control--size-sm,
|
|
22514
23248
|
.np-form-control--size-md,
|
|
22515
23249
|
.np-form-control--size-lg {
|
|
@@ -22523,9 +23257,38 @@ button.np-option {
|
|
|
22523
23257
|
letter-spacing: -0.006em;
|
|
22524
23258
|
font-weight: 400;
|
|
22525
23259
|
font-weight: var(--font-weight-regular);
|
|
23260
|
+
word-wrap: break-word;
|
|
22526
23261
|
block-size: 32px !important;
|
|
22527
23262
|
block-size: var(--size-32) !important;
|
|
22528
23263
|
}
|
|
23264
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
23265
|
+
.np-form-control--size-sm {
|
|
23266
|
+
hyphens: auto;
|
|
23267
|
+
hyphenate-limit-chars: 7 3;
|
|
23268
|
+
}
|
|
23269
|
+
@media (min-width: 840px) {
|
|
23270
|
+
.np-form-control--size-sm {
|
|
23271
|
+
hyphenate-limit-chars: 8 3;
|
|
23272
|
+
}
|
|
23273
|
+
}
|
|
23274
|
+
@media (min-width: 1160px) {
|
|
23275
|
+
.np-form-control--size-sm {
|
|
23276
|
+
hyphenate-limit-chars: 10 4 3;
|
|
23277
|
+
}
|
|
23278
|
+
}
|
|
23279
|
+
}
|
|
23280
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
23281
|
+
.np-form-control--size-sm {
|
|
23282
|
+
hyphens: auto;
|
|
23283
|
+
-webkit-hyphenate-limit-before: 3;
|
|
23284
|
+
-webkit-hyphenate-limit-after: 3;
|
|
23285
|
+
}
|
|
23286
|
+
@media (min-width: 1160px) {
|
|
23287
|
+
.np-form-control--size-sm {
|
|
23288
|
+
-webkit-hyphenate-limit-before: 4;
|
|
23289
|
+
}
|
|
23290
|
+
}
|
|
23291
|
+
}
|
|
22529
23292
|
@media (max-width: 320px) {
|
|
22530
23293
|
.np-form-control--size-sm {
|
|
22531
23294
|
block-size: 64px !important;
|
|
@@ -22539,9 +23302,38 @@ button.np-option {
|
|
|
22539
23302
|
font-size: var(--font-size-16);
|
|
22540
23303
|
line-height: 150%;
|
|
22541
23304
|
letter-spacing: -0.011em;
|
|
23305
|
+
word-wrap: break-word;
|
|
22542
23306
|
block-size: 48px !important;
|
|
22543
23307
|
block-size: var(--size-48) !important;
|
|
22544
23308
|
}
|
|
23309
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
23310
|
+
.np-form-control--size-md {
|
|
23311
|
+
hyphens: auto;
|
|
23312
|
+
hyphenate-limit-chars: 7 3;
|
|
23313
|
+
}
|
|
23314
|
+
@media (min-width: 840px) {
|
|
23315
|
+
.np-form-control--size-md {
|
|
23316
|
+
hyphenate-limit-chars: 8 3;
|
|
23317
|
+
}
|
|
23318
|
+
}
|
|
23319
|
+
@media (min-width: 1160px) {
|
|
23320
|
+
.np-form-control--size-md {
|
|
23321
|
+
hyphenate-limit-chars: 10 4 3;
|
|
23322
|
+
}
|
|
23323
|
+
}
|
|
23324
|
+
}
|
|
23325
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
23326
|
+
.np-form-control--size-md {
|
|
23327
|
+
hyphens: auto;
|
|
23328
|
+
-webkit-hyphenate-limit-before: 3;
|
|
23329
|
+
-webkit-hyphenate-limit-after: 3;
|
|
23330
|
+
}
|
|
23331
|
+
@media (min-width: 1160px) {
|
|
23332
|
+
.np-form-control--size-md {
|
|
23333
|
+
-webkit-hyphenate-limit-before: 4;
|
|
23334
|
+
}
|
|
23335
|
+
}
|
|
23336
|
+
}
|
|
22545
23337
|
@media (max-width: 320px) {
|
|
22546
23338
|
.np-form-control--size-md {
|
|
22547
23339
|
block-size: 72px !important;
|
|
@@ -22555,6 +23347,7 @@ button.np-option {
|
|
|
22555
23347
|
line-height: 1.2;
|
|
22556
23348
|
line-height: var(--line-height-title);
|
|
22557
23349
|
letter-spacing: 0;
|
|
23350
|
+
word-wrap: break-word;
|
|
22558
23351
|
margin-block-end: initial;
|
|
22559
23352
|
font-size: 1.375rem;
|
|
22560
23353
|
font-size: var(--font-size-22);
|
|
@@ -24648,6 +25441,7 @@ button.np-link {
|
|
|
24648
25441
|
line-height: 1.2;
|
|
24649
25442
|
line-height: var(--line-height-title);
|
|
24650
25443
|
letter-spacing: 0;
|
|
25444
|
+
word-wrap: break-word;
|
|
24651
25445
|
margin-block-end: initial;
|
|
24652
25446
|
font-weight: 600;
|
|
24653
25447
|
font-weight: var(--font-weight-semi-bold);
|
|
@@ -24921,6 +25715,23 @@ button.np-link {
|
|
|
24921
25715
|
grid-column: span 3;
|
|
24922
25716
|
}
|
|
24923
25717
|
}
|
|
25718
|
+
.wds-prompt__dismiss {
|
|
25719
|
+
position: relative;
|
|
25720
|
+
}
|
|
25721
|
+
.wds-prompt__dismiss:before {
|
|
25722
|
+
--size: calc(var(--size-24) + var(--Prompt-padding-x, var(--padding-x-small)) * 2);
|
|
25723
|
+
--offset: calc(-1 * var(--Prompt-padding-x, var(--padding-x-small)));
|
|
25724
|
+
content: "";
|
|
25725
|
+
position: absolute;
|
|
25726
|
+
inset: calc(-1 * 8px);
|
|
25727
|
+
inset: var(--offset);
|
|
25728
|
+
inline-size: calc(24px + 8px * 2);
|
|
25729
|
+
inline-size: var(--size);
|
|
25730
|
+
block-size: calc(24px + 8px * 2);
|
|
25731
|
+
block-size: var(--size);
|
|
25732
|
+
border-radius: 10px;
|
|
25733
|
+
border-radius: var(--Prompt-border-radius, var(--radius-small));
|
|
25734
|
+
}
|
|
24924
25735
|
.wds-inline-prompt {
|
|
24925
25736
|
--Prompt-gap: calc(var(--size-12) / 2);
|
|
24926
25737
|
--Prompt-padding-x: var(--padding-x-small);
|
|
@@ -25726,11 +26537,40 @@ button.np-link {
|
|
|
25726
26537
|
letter-spacing: -0.006em;
|
|
25727
26538
|
font-weight: 400;
|
|
25728
26539
|
font-weight: var(--font-weight-regular);
|
|
26540
|
+
word-wrap: break-word;
|
|
25729
26541
|
}
|
|
25730
26542
|
.np-theme-personal .np-dropdown-menu > li > a {
|
|
25731
26543
|
border-radius: 10px;
|
|
25732
26544
|
border-radius: var(--radius-small);
|
|
25733
26545
|
}
|
|
26546
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
26547
|
+
.np-dropdown-menu > li > a {
|
|
26548
|
+
hyphens: auto;
|
|
26549
|
+
hyphenate-limit-chars: 7 3;
|
|
26550
|
+
}
|
|
26551
|
+
@media (min-width: 840px) {
|
|
26552
|
+
.np-dropdown-menu > li > a {
|
|
26553
|
+
hyphenate-limit-chars: 8 3;
|
|
26554
|
+
}
|
|
26555
|
+
}
|
|
26556
|
+
@media (min-width: 1160px) {
|
|
26557
|
+
.np-dropdown-menu > li > a {
|
|
26558
|
+
hyphenate-limit-chars: 10 4 3;
|
|
26559
|
+
}
|
|
26560
|
+
}
|
|
26561
|
+
}
|
|
26562
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
26563
|
+
.np-dropdown-menu > li > a {
|
|
26564
|
+
hyphens: auto;
|
|
26565
|
+
-webkit-hyphenate-limit-before: 3;
|
|
26566
|
+
-webkit-hyphenate-limit-after: 3;
|
|
26567
|
+
}
|
|
26568
|
+
@media (min-width: 1160px) {
|
|
26569
|
+
.np-dropdown-menu > li > a {
|
|
26570
|
+
-webkit-hyphenate-limit-before: 4;
|
|
26571
|
+
}
|
|
26572
|
+
}
|
|
26573
|
+
}
|
|
25734
26574
|
.np-dropdown-menu > li:first-child > a {
|
|
25735
26575
|
border-start-end-radius: 3px;
|
|
25736
26576
|
border-start-start-radius: 3px;
|