@transferwise/components 46.160.7 → 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/main.css +823 -0
- 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/_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 +823 -0
- 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/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/_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 +823 -0
- 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
|
@@ -2637,6 +2637,7 @@ h6,
|
|
|
2637
2637
|
line-height: 1.2;
|
|
2638
2638
|
line-height: var(--line-height-title);
|
|
2639
2639
|
letter-spacing: 0;
|
|
2640
|
+
word-wrap: break-word;
|
|
2640
2641
|
}
|
|
2641
2642
|
@supports (hyphenate-limit-chars: 1) {
|
|
2642
2643
|
.h1,
|
|
@@ -2938,6 +2939,65 @@ small,
|
|
|
2938
2939
|
letter-spacing: -0.006em;
|
|
2939
2940
|
font-weight: 400;
|
|
2940
2941
|
font-weight: var(--font-weight-regular);
|
|
2942
|
+
word-wrap: break-word;
|
|
2943
|
+
}
|
|
2944
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
2945
|
+
.body-2,
|
|
2946
|
+
.body-3,
|
|
2947
|
+
.small,
|
|
2948
|
+
.tiny,
|
|
2949
|
+
body,
|
|
2950
|
+
small,
|
|
2951
|
+
.np-text-body-default {
|
|
2952
|
+
hyphens: auto;
|
|
2953
|
+
hyphenate-limit-chars: 7 3;
|
|
2954
|
+
}
|
|
2955
|
+
@media (min-width: 840px) {
|
|
2956
|
+
.body-2,
|
|
2957
|
+
.body-3,
|
|
2958
|
+
.small,
|
|
2959
|
+
.tiny,
|
|
2960
|
+
body,
|
|
2961
|
+
small,
|
|
2962
|
+
.np-text-body-default {
|
|
2963
|
+
hyphenate-limit-chars: 8 3;
|
|
2964
|
+
}
|
|
2965
|
+
}
|
|
2966
|
+
@media (min-width: 1160px) {
|
|
2967
|
+
.body-2,
|
|
2968
|
+
.body-3,
|
|
2969
|
+
.small,
|
|
2970
|
+
.tiny,
|
|
2971
|
+
body,
|
|
2972
|
+
small,
|
|
2973
|
+
.np-text-body-default {
|
|
2974
|
+
hyphenate-limit-chars: 10 4 3;
|
|
2975
|
+
}
|
|
2976
|
+
}
|
|
2977
|
+
}
|
|
2978
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
2979
|
+
.body-2,
|
|
2980
|
+
.body-3,
|
|
2981
|
+
.small,
|
|
2982
|
+
.tiny,
|
|
2983
|
+
body,
|
|
2984
|
+
small,
|
|
2985
|
+
.np-text-body-default {
|
|
2986
|
+
hyphens: auto;
|
|
2987
|
+
-webkit-hyphenate-limit-before: 3;
|
|
2988
|
+
-webkit-hyphenate-limit-after: 3;
|
|
2989
|
+
}
|
|
2990
|
+
@media (min-width: 1160px) {
|
|
2991
|
+
.body-2,
|
|
2992
|
+
.body-3,
|
|
2993
|
+
.small,
|
|
2994
|
+
.tiny,
|
|
2995
|
+
body,
|
|
2996
|
+
small,
|
|
2997
|
+
.np-text-body-default {
|
|
2998
|
+
-webkit-hyphenate-limit-before: 4;
|
|
2999
|
+
}
|
|
3000
|
+
}
|
|
2941
3001
|
}
|
|
2942
3002
|
/* DEPRECATED: use .np-text-body-default-bold instead */
|
|
2943
3003
|
/* stylelint-disable-next-line selector-list-comma-newline-after */
|
|
@@ -2951,6 +3011,50 @@ small,
|
|
|
2951
3011
|
letter-spacing: -0.006em;
|
|
2952
3012
|
font-weight: 600;
|
|
2953
3013
|
font-weight: var(--font-weight-semi-bold);
|
|
3014
|
+
word-wrap: break-word;
|
|
3015
|
+
}
|
|
3016
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
3017
|
+
.control-2,
|
|
3018
|
+
.label,
|
|
3019
|
+
.control-label,
|
|
3020
|
+
.np-text-body-default-bold {
|
|
3021
|
+
hyphens: auto;
|
|
3022
|
+
hyphenate-limit-chars: 7 3;
|
|
3023
|
+
}
|
|
3024
|
+
@media (min-width: 840px) {
|
|
3025
|
+
.control-2,
|
|
3026
|
+
.label,
|
|
3027
|
+
.control-label,
|
|
3028
|
+
.np-text-body-default-bold {
|
|
3029
|
+
hyphenate-limit-chars: 8 3;
|
|
3030
|
+
}
|
|
3031
|
+
}
|
|
3032
|
+
@media (min-width: 1160px) {
|
|
3033
|
+
.control-2,
|
|
3034
|
+
.label,
|
|
3035
|
+
.control-label,
|
|
3036
|
+
.np-text-body-default-bold {
|
|
3037
|
+
hyphenate-limit-chars: 10 4 3;
|
|
3038
|
+
}
|
|
3039
|
+
}
|
|
3040
|
+
}
|
|
3041
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
3042
|
+
.control-2,
|
|
3043
|
+
.label,
|
|
3044
|
+
.control-label,
|
|
3045
|
+
.np-text-body-default-bold {
|
|
3046
|
+
hyphens: auto;
|
|
3047
|
+
-webkit-hyphenate-limit-before: 3;
|
|
3048
|
+
-webkit-hyphenate-limit-after: 3;
|
|
3049
|
+
}
|
|
3050
|
+
@media (min-width: 1160px) {
|
|
3051
|
+
.control-2,
|
|
3052
|
+
.label,
|
|
3053
|
+
.control-label,
|
|
3054
|
+
.np-text-body-default-bold {
|
|
3055
|
+
-webkit-hyphenate-limit-before: 4;
|
|
3056
|
+
}
|
|
3057
|
+
}
|
|
2954
3058
|
}
|
|
2955
3059
|
/* DEPRECATED: use .np-text-body-large instead */
|
|
2956
3060
|
/* stylelint-disable-next-line selector-list-comma-newline-after */
|
|
@@ -2963,6 +3067,45 @@ small,
|
|
|
2963
3067
|
font-size: var(--font-size-16);
|
|
2964
3068
|
line-height: 150%;
|
|
2965
3069
|
letter-spacing: -0.011em;
|
|
3070
|
+
word-wrap: break-word;
|
|
3071
|
+
}
|
|
3072
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
3073
|
+
.body-1,
|
|
3074
|
+
.value,
|
|
3075
|
+
.np-text-body-large {
|
|
3076
|
+
hyphens: auto;
|
|
3077
|
+
hyphenate-limit-chars: 7 3;
|
|
3078
|
+
}
|
|
3079
|
+
@media (min-width: 840px) {
|
|
3080
|
+
.body-1,
|
|
3081
|
+
.value,
|
|
3082
|
+
.np-text-body-large {
|
|
3083
|
+
hyphenate-limit-chars: 8 3;
|
|
3084
|
+
}
|
|
3085
|
+
}
|
|
3086
|
+
@media (min-width: 1160px) {
|
|
3087
|
+
.body-1,
|
|
3088
|
+
.value,
|
|
3089
|
+
.np-text-body-large {
|
|
3090
|
+
hyphenate-limit-chars: 10 4 3;
|
|
3091
|
+
}
|
|
3092
|
+
}
|
|
3093
|
+
}
|
|
3094
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
3095
|
+
.body-1,
|
|
3096
|
+
.value,
|
|
3097
|
+
.np-text-body-large {
|
|
3098
|
+
hyphens: auto;
|
|
3099
|
+
-webkit-hyphenate-limit-before: 3;
|
|
3100
|
+
-webkit-hyphenate-limit-after: 3;
|
|
3101
|
+
}
|
|
3102
|
+
@media (min-width: 1160px) {
|
|
3103
|
+
.body-1,
|
|
3104
|
+
.value,
|
|
3105
|
+
.np-text-body-large {
|
|
3106
|
+
-webkit-hyphenate-limit-before: 4;
|
|
3107
|
+
}
|
|
3108
|
+
}
|
|
2966
3109
|
}
|
|
2967
3110
|
/* DEPRECATED: use np-text-body-large-bold instead */
|
|
2968
3111
|
/* stylelint-disable-next-line selector-list-comma-newline-after */
|
|
@@ -2974,6 +3117,40 @@ small,
|
|
|
2974
3117
|
font-size: var(--font-size-16);
|
|
2975
3118
|
line-height: 150%;
|
|
2976
3119
|
letter-spacing: -0.011em;
|
|
3120
|
+
word-wrap: break-word;
|
|
3121
|
+
}
|
|
3122
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
3123
|
+
.control-1,
|
|
3124
|
+
.np-text-body-large-bold {
|
|
3125
|
+
hyphens: auto;
|
|
3126
|
+
hyphenate-limit-chars: 7 3;
|
|
3127
|
+
}
|
|
3128
|
+
@media (min-width: 840px) {
|
|
3129
|
+
.control-1,
|
|
3130
|
+
.np-text-body-large-bold {
|
|
3131
|
+
hyphenate-limit-chars: 8 3;
|
|
3132
|
+
}
|
|
3133
|
+
}
|
|
3134
|
+
@media (min-width: 1160px) {
|
|
3135
|
+
.control-1,
|
|
3136
|
+
.np-text-body-large-bold {
|
|
3137
|
+
hyphenate-limit-chars: 10 4 3;
|
|
3138
|
+
}
|
|
3139
|
+
}
|
|
3140
|
+
}
|
|
3141
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
3142
|
+
.control-1,
|
|
3143
|
+
.np-text-body-large-bold {
|
|
3144
|
+
hyphens: auto;
|
|
3145
|
+
-webkit-hyphenate-limit-before: 3;
|
|
3146
|
+
-webkit-hyphenate-limit-after: 3;
|
|
3147
|
+
}
|
|
3148
|
+
@media (min-width: 1160px) {
|
|
3149
|
+
.control-1,
|
|
3150
|
+
.np-text-body-large-bold {
|
|
3151
|
+
-webkit-hyphenate-limit-before: 4;
|
|
3152
|
+
}
|
|
3153
|
+
}
|
|
2977
3154
|
}
|
|
2978
3155
|
a,
|
|
2979
3156
|
.np-text-link-default,
|
|
@@ -3080,6 +3257,7 @@ a,
|
|
|
3080
3257
|
.np-text-display-medium,
|
|
3081
3258
|
.np-text-display-small {
|
|
3082
3259
|
letter-spacing: normal;
|
|
3260
|
+
word-wrap: break-word;
|
|
3083
3261
|
}
|
|
3084
3262
|
@supports (hyphenate-limit-chars: 1) {
|
|
3085
3263
|
.np-text-display-extra-large,
|
|
@@ -3168,6 +3346,13 @@ a,
|
|
|
3168
3346
|
font-weight: 400;
|
|
3169
3347
|
font-weight: var(--font-weight-regular);
|
|
3170
3348
|
}
|
|
3349
|
+
/* Disable hyphenation for Japanese, Thai, and Chinese — these languages use character-level breaks and should never insert hyphens. */
|
|
3350
|
+
:lang(ja),
|
|
3351
|
+
:lang(th),
|
|
3352
|
+
:lang(zh-CN),
|
|
3353
|
+
:lang(zh-HK) {
|
|
3354
|
+
hyphens: none;
|
|
3355
|
+
}
|
|
3171
3356
|
:lang(af) .np-text-display-extra-large,
|
|
3172
3357
|
:lang(sq) .np-text-display-extra-large,
|
|
3173
3358
|
:lang(eu) .np-text-display-extra-large,
|
|
@@ -5285,6 +5470,9 @@ a.text-inverse:focus {
|
|
|
5285
5470
|
padding-block-end: var(--size-96);
|
|
5286
5471
|
}
|
|
5287
5472
|
}
|
|
5473
|
+
.np-text-hyphenated {
|
|
5474
|
+
word-wrap: break-word;
|
|
5475
|
+
}
|
|
5288
5476
|
@supports (hyphenate-limit-chars: 1) {
|
|
5289
5477
|
.np-text-hyphenated {
|
|
5290
5478
|
hyphens: auto;
|
|
@@ -6217,6 +6405,7 @@ a.badge:focus {
|
|
|
6217
6405
|
.btn {
|
|
6218
6406
|
line-height: 150%;
|
|
6219
6407
|
letter-spacing: -0.011em;
|
|
6408
|
+
word-wrap: break-word;
|
|
6220
6409
|
display: inline-block;
|
|
6221
6410
|
margin-block-end: 0;
|
|
6222
6411
|
text-align: center;
|
|
@@ -6243,6 +6432,34 @@ a.badge:focus {
|
|
|
6243
6432
|
-moz-user-select: none;
|
|
6244
6433
|
user-select: none;
|
|
6245
6434
|
}
|
|
6435
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
6436
|
+
.btn {
|
|
6437
|
+
hyphens: auto;
|
|
6438
|
+
hyphenate-limit-chars: 7 3;
|
|
6439
|
+
}
|
|
6440
|
+
@media (min-width: 840px) {
|
|
6441
|
+
.btn {
|
|
6442
|
+
hyphenate-limit-chars: 8 3;
|
|
6443
|
+
}
|
|
6444
|
+
}
|
|
6445
|
+
@media (min-width: 1160px) {
|
|
6446
|
+
.btn {
|
|
6447
|
+
hyphenate-limit-chars: 10 4 3;
|
|
6448
|
+
}
|
|
6449
|
+
}
|
|
6450
|
+
}
|
|
6451
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
6452
|
+
.btn {
|
|
6453
|
+
hyphens: auto;
|
|
6454
|
+
-webkit-hyphenate-limit-before: 3;
|
|
6455
|
+
-webkit-hyphenate-limit-after: 3;
|
|
6456
|
+
}
|
|
6457
|
+
@media (min-width: 1160px) {
|
|
6458
|
+
.btn {
|
|
6459
|
+
-webkit-hyphenate-limit-before: 4;
|
|
6460
|
+
}
|
|
6461
|
+
}
|
|
6462
|
+
}
|
|
6246
6463
|
.btn .dropdown-menu > li > a {
|
|
6247
6464
|
font-size: 1rem;
|
|
6248
6465
|
font-size: var(--font-size-16);
|
|
@@ -7991,9 +8208,38 @@ a.btn {
|
|
|
7991
8208
|
letter-spacing: -0.006em;
|
|
7992
8209
|
font-weight: 400;
|
|
7993
8210
|
font-weight: var(--font-weight-regular);
|
|
8211
|
+
word-wrap: break-word;
|
|
7994
8212
|
color: #5d7079;
|
|
7995
8213
|
color: var(--color-content-secondary);
|
|
7996
8214
|
}
|
|
8215
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
8216
|
+
.btn-group .secondary {
|
|
8217
|
+
hyphens: auto;
|
|
8218
|
+
hyphenate-limit-chars: 7 3;
|
|
8219
|
+
}
|
|
8220
|
+
@media (min-width: 840px) {
|
|
8221
|
+
.btn-group .secondary {
|
|
8222
|
+
hyphenate-limit-chars: 8 3;
|
|
8223
|
+
}
|
|
8224
|
+
}
|
|
8225
|
+
@media (min-width: 1160px) {
|
|
8226
|
+
.btn-group .secondary {
|
|
8227
|
+
hyphenate-limit-chars: 10 4 3;
|
|
8228
|
+
}
|
|
8229
|
+
}
|
|
8230
|
+
}
|
|
8231
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
8232
|
+
.btn-group .secondary {
|
|
8233
|
+
hyphens: auto;
|
|
8234
|
+
-webkit-hyphenate-limit-before: 3;
|
|
8235
|
+
-webkit-hyphenate-limit-after: 3;
|
|
8236
|
+
}
|
|
8237
|
+
@media (min-width: 1160px) {
|
|
8238
|
+
.btn-group .secondary {
|
|
8239
|
+
-webkit-hyphenate-limit-before: 4;
|
|
8240
|
+
}
|
|
8241
|
+
}
|
|
8242
|
+
}
|
|
7997
8243
|
form {
|
|
7998
8244
|
margin-block-end: 0;
|
|
7999
8245
|
}
|
|
@@ -8094,6 +8340,7 @@ output {
|
|
|
8094
8340
|
font-size: var(--font-size-16);
|
|
8095
8341
|
line-height: 150%;
|
|
8096
8342
|
letter-spacing: -0.011em;
|
|
8343
|
+
word-wrap: break-word;
|
|
8097
8344
|
background-clip: padding-box;
|
|
8098
8345
|
}
|
|
8099
8346
|
select.form-control {
|
|
@@ -8103,6 +8350,34 @@ textarea.form-control,
|
|
|
8103
8350
|
select[multiple].form-control {
|
|
8104
8351
|
block-size: auto;
|
|
8105
8352
|
}
|
|
8353
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
8354
|
+
.form-control {
|
|
8355
|
+
hyphens: auto;
|
|
8356
|
+
hyphenate-limit-chars: 7 3;
|
|
8357
|
+
}
|
|
8358
|
+
@media (min-width: 840px) {
|
|
8359
|
+
.form-control {
|
|
8360
|
+
hyphenate-limit-chars: 8 3;
|
|
8361
|
+
}
|
|
8362
|
+
}
|
|
8363
|
+
@media (min-width: 1160px) {
|
|
8364
|
+
.form-control {
|
|
8365
|
+
hyphenate-limit-chars: 10 4 3;
|
|
8366
|
+
}
|
|
8367
|
+
}
|
|
8368
|
+
}
|
|
8369
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
8370
|
+
.form-control {
|
|
8371
|
+
hyphens: auto;
|
|
8372
|
+
-webkit-hyphenate-limit-before: 3;
|
|
8373
|
+
-webkit-hyphenate-limit-after: 3;
|
|
8374
|
+
}
|
|
8375
|
+
@media (min-width: 1160px) {
|
|
8376
|
+
.form-control {
|
|
8377
|
+
-webkit-hyphenate-limit-before: 4;
|
|
8378
|
+
}
|
|
8379
|
+
}
|
|
8380
|
+
}
|
|
8106
8381
|
.form-control:not(.disabled):not(:disabled):focus {
|
|
8107
8382
|
border-color: #0081ba;
|
|
8108
8383
|
border-color: var(--color-interactive-accent-active);
|
|
@@ -8288,6 +8563,7 @@ fieldset[disabled] .checkbox label {
|
|
|
8288
8563
|
letter-spacing: -0.006em;
|
|
8289
8564
|
font-weight: 400;
|
|
8290
8565
|
font-weight: var(--font-weight-regular);
|
|
8566
|
+
word-wrap: break-word;
|
|
8291
8567
|
}
|
|
8292
8568
|
select.input-sm {
|
|
8293
8569
|
min-block-size: 32px;
|
|
@@ -8296,6 +8572,34 @@ textarea.input-sm,
|
|
|
8296
8572
|
select[multiple].input-sm {
|
|
8297
8573
|
block-size: auto;
|
|
8298
8574
|
}
|
|
8575
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
8576
|
+
.input-sm {
|
|
8577
|
+
hyphens: auto;
|
|
8578
|
+
hyphenate-limit-chars: 7 3;
|
|
8579
|
+
}
|
|
8580
|
+
@media (min-width: 840px) {
|
|
8581
|
+
.input-sm {
|
|
8582
|
+
hyphenate-limit-chars: 8 3;
|
|
8583
|
+
}
|
|
8584
|
+
}
|
|
8585
|
+
@media (min-width: 1160px) {
|
|
8586
|
+
.input-sm {
|
|
8587
|
+
hyphenate-limit-chars: 10 4 3;
|
|
8588
|
+
}
|
|
8589
|
+
}
|
|
8590
|
+
}
|
|
8591
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
8592
|
+
.input-sm {
|
|
8593
|
+
hyphens: auto;
|
|
8594
|
+
-webkit-hyphenate-limit-before: 3;
|
|
8595
|
+
-webkit-hyphenate-limit-after: 3;
|
|
8596
|
+
}
|
|
8597
|
+
@media (min-width: 1160px) {
|
|
8598
|
+
.input-sm {
|
|
8599
|
+
-webkit-hyphenate-limit-before: 4;
|
|
8600
|
+
}
|
|
8601
|
+
}
|
|
8602
|
+
}
|
|
8299
8603
|
.form-group-sm .form-control,
|
|
8300
8604
|
.navbar .form-control {
|
|
8301
8605
|
block-size: 32px;
|
|
@@ -8342,6 +8646,7 @@ select[multiple].input-sm {
|
|
|
8342
8646
|
font-size: var(--font-size-16);
|
|
8343
8647
|
line-height: 150%;
|
|
8344
8648
|
letter-spacing: -0.011em;
|
|
8649
|
+
word-wrap: break-word;
|
|
8345
8650
|
}
|
|
8346
8651
|
select.input-lg {
|
|
8347
8652
|
min-block-size: var(--input-height-large);
|
|
@@ -8350,6 +8655,34 @@ textarea.input-lg,
|
|
|
8350
8655
|
select[multiple].input-lg {
|
|
8351
8656
|
block-size: auto;
|
|
8352
8657
|
}
|
|
8658
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
8659
|
+
.input-lg {
|
|
8660
|
+
hyphens: auto;
|
|
8661
|
+
hyphenate-limit-chars: 7 3;
|
|
8662
|
+
}
|
|
8663
|
+
@media (min-width: 840px) {
|
|
8664
|
+
.input-lg {
|
|
8665
|
+
hyphenate-limit-chars: 8 3;
|
|
8666
|
+
}
|
|
8667
|
+
}
|
|
8668
|
+
@media (min-width: 1160px) {
|
|
8669
|
+
.input-lg {
|
|
8670
|
+
hyphenate-limit-chars: 10 4 3;
|
|
8671
|
+
}
|
|
8672
|
+
}
|
|
8673
|
+
}
|
|
8674
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
8675
|
+
.input-lg {
|
|
8676
|
+
hyphens: auto;
|
|
8677
|
+
-webkit-hyphenate-limit-before: 3;
|
|
8678
|
+
-webkit-hyphenate-limit-after: 3;
|
|
8679
|
+
}
|
|
8680
|
+
@media (min-width: 1160px) {
|
|
8681
|
+
.input-lg {
|
|
8682
|
+
-webkit-hyphenate-limit-before: 4;
|
|
8683
|
+
}
|
|
8684
|
+
}
|
|
8685
|
+
}
|
|
8353
8686
|
.form-group-lg {
|
|
8354
8687
|
position: relative;
|
|
8355
8688
|
}
|
|
@@ -9951,11 +10284,40 @@ input[type="checkbox"]:not(.disabled):not(:disabled):indeterminate:active + .tw-
|
|
|
9951
10284
|
font-size: var(--font-size-16);
|
|
9952
10285
|
line-height: 150%;
|
|
9953
10286
|
letter-spacing: -0.011em;
|
|
10287
|
+
word-wrap: break-word;
|
|
9954
10288
|
display: block;
|
|
9955
10289
|
inline-size: 100%;
|
|
9956
10290
|
color: #768e9c;
|
|
9957
10291
|
color: var(--color-content-tertiary);
|
|
9958
10292
|
}
|
|
10293
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
10294
|
+
.form-control-placeholder {
|
|
10295
|
+
hyphens: auto;
|
|
10296
|
+
hyphenate-limit-chars: 7 3;
|
|
10297
|
+
}
|
|
10298
|
+
@media (min-width: 840px) {
|
|
10299
|
+
.form-control-placeholder {
|
|
10300
|
+
hyphenate-limit-chars: 8 3;
|
|
10301
|
+
}
|
|
10302
|
+
}
|
|
10303
|
+
@media (min-width: 1160px) {
|
|
10304
|
+
.form-control-placeholder {
|
|
10305
|
+
hyphenate-limit-chars: 10 4 3;
|
|
10306
|
+
}
|
|
10307
|
+
}
|
|
10308
|
+
}
|
|
10309
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
10310
|
+
.form-control-placeholder {
|
|
10311
|
+
hyphens: auto;
|
|
10312
|
+
-webkit-hyphenate-limit-before: 3;
|
|
10313
|
+
-webkit-hyphenate-limit-after: 3;
|
|
10314
|
+
}
|
|
10315
|
+
@media (min-width: 1160px) {
|
|
10316
|
+
.form-control-placeholder {
|
|
10317
|
+
-webkit-hyphenate-limit-before: 4;
|
|
10318
|
+
}
|
|
10319
|
+
}
|
|
10320
|
+
}
|
|
9959
10321
|
.np-theme-personal .btn-input,
|
|
9960
10322
|
.np-theme-personal .input-group,
|
|
9961
10323
|
.np-theme-personal .form-control,
|
|
@@ -10181,6 +10543,7 @@ input[type="checkbox"]:not(.disabled):not(:disabled):indeterminate:active + .tw-
|
|
|
10181
10543
|
line-height: 1.2;
|
|
10182
10544
|
line-height: var(--line-height-title);
|
|
10183
10545
|
letter-spacing: 0;
|
|
10546
|
+
word-wrap: break-word;
|
|
10184
10547
|
margin-block-end: initial;
|
|
10185
10548
|
font-size: 1.375rem;
|
|
10186
10549
|
font-size: var(--font-size-22);
|
|
@@ -10241,6 +10604,44 @@ select[multiple].input-group-lg > .input-group-btn .btn {
|
|
|
10241
10604
|
}
|
|
10242
10605
|
}
|
|
10243
10606
|
}
|
|
10607
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
10608
|
+
.input-group-lg > .form-control,
|
|
10609
|
+
.input-group-lg > .input-group-addon,
|
|
10610
|
+
.input-group-lg > .input-group-btn .btn {
|
|
10611
|
+
hyphens: auto;
|
|
10612
|
+
hyphenate-limit-chars: 7 3;
|
|
10613
|
+
}
|
|
10614
|
+
@media (min-width: 840px) {
|
|
10615
|
+
.input-group-lg > .form-control,
|
|
10616
|
+
.input-group-lg > .input-group-addon,
|
|
10617
|
+
.input-group-lg > .input-group-btn .btn {
|
|
10618
|
+
hyphenate-limit-chars: 8 3;
|
|
10619
|
+
}
|
|
10620
|
+
}
|
|
10621
|
+
@media (min-width: 1160px) {
|
|
10622
|
+
.input-group-lg > .form-control,
|
|
10623
|
+
.input-group-lg > .input-group-addon,
|
|
10624
|
+
.input-group-lg > .input-group-btn .btn {
|
|
10625
|
+
hyphenate-limit-chars: 10 4 3;
|
|
10626
|
+
}
|
|
10627
|
+
}
|
|
10628
|
+
}
|
|
10629
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
10630
|
+
.input-group-lg > .form-control,
|
|
10631
|
+
.input-group-lg > .input-group-addon,
|
|
10632
|
+
.input-group-lg > .input-group-btn .btn {
|
|
10633
|
+
hyphens: auto;
|
|
10634
|
+
-webkit-hyphenate-limit-before: 3;
|
|
10635
|
+
-webkit-hyphenate-limit-after: 3;
|
|
10636
|
+
}
|
|
10637
|
+
@media (min-width: 1160px) {
|
|
10638
|
+
.input-group-lg > .form-control,
|
|
10639
|
+
.input-group-lg > .input-group-addon,
|
|
10640
|
+
.input-group-lg > .input-group-btn .btn {
|
|
10641
|
+
-webkit-hyphenate-limit-before: 4;
|
|
10642
|
+
}
|
|
10643
|
+
}
|
|
10644
|
+
}
|
|
10244
10645
|
.input-group-lg > .form-control + p,
|
|
10245
10646
|
.input-group-lg > .input-group-addon + p,
|
|
10246
10647
|
.input-group-lg > .input-group-btn .btn + p,
|
|
@@ -10268,6 +10669,7 @@ select[multiple].input-group-lg > .input-group-btn .btn {
|
|
|
10268
10669
|
letter-spacing: -0.006em;
|
|
10269
10670
|
font-weight: 400;
|
|
10270
10671
|
font-weight: var(--font-weight-regular);
|
|
10672
|
+
word-wrap: break-word;
|
|
10271
10673
|
}
|
|
10272
10674
|
select.input-group-sm > .form-control,
|
|
10273
10675
|
select.input-group-sm > .input-group-addon {
|
|
@@ -10279,6 +10681,39 @@ select[multiple].input-group-sm > .form-control,
|
|
|
10279
10681
|
select[multiple].input-group-sm > .input-group-addon {
|
|
10280
10682
|
block-size: auto;
|
|
10281
10683
|
}
|
|
10684
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
10685
|
+
.input-group-sm > .form-control,
|
|
10686
|
+
.input-group-sm > .input-group-addon {
|
|
10687
|
+
hyphens: auto;
|
|
10688
|
+
hyphenate-limit-chars: 7 3;
|
|
10689
|
+
}
|
|
10690
|
+
@media (min-width: 840px) {
|
|
10691
|
+
.input-group-sm > .form-control,
|
|
10692
|
+
.input-group-sm > .input-group-addon {
|
|
10693
|
+
hyphenate-limit-chars: 8 3;
|
|
10694
|
+
}
|
|
10695
|
+
}
|
|
10696
|
+
@media (min-width: 1160px) {
|
|
10697
|
+
.input-group-sm > .form-control,
|
|
10698
|
+
.input-group-sm > .input-group-addon {
|
|
10699
|
+
hyphenate-limit-chars: 10 4 3;
|
|
10700
|
+
}
|
|
10701
|
+
}
|
|
10702
|
+
}
|
|
10703
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
10704
|
+
.input-group-sm > .form-control,
|
|
10705
|
+
.input-group-sm > .input-group-addon {
|
|
10706
|
+
hyphens: auto;
|
|
10707
|
+
-webkit-hyphenate-limit-before: 3;
|
|
10708
|
+
-webkit-hyphenate-limit-after: 3;
|
|
10709
|
+
}
|
|
10710
|
+
@media (min-width: 1160px) {
|
|
10711
|
+
.input-group-sm > .form-control,
|
|
10712
|
+
.input-group-sm > .input-group-addon {
|
|
10713
|
+
-webkit-hyphenate-limit-before: 4;
|
|
10714
|
+
}
|
|
10715
|
+
}
|
|
10716
|
+
}
|
|
10282
10717
|
.input-group-sm > .form-control .icon,
|
|
10283
10718
|
.input-group-sm > .input-group-addon .icon {
|
|
10284
10719
|
font-size: 1.25rem;
|
|
@@ -10909,6 +11344,7 @@ li > a > .currency-flag:first-child {
|
|
|
10909
11344
|
line-height: 1.2;
|
|
10910
11345
|
line-height: var(--line-height-title);
|
|
10911
11346
|
letter-spacing: 0;
|
|
11347
|
+
word-wrap: break-word;
|
|
10912
11348
|
font-size: 1.125rem;
|
|
10913
11349
|
font-size: var(--font-size-18);
|
|
10914
11350
|
font-weight: 600;
|
|
@@ -10957,9 +11393,38 @@ li > a > .currency-flag:first-child {
|
|
|
10957
11393
|
letter-spacing: -0.006em;
|
|
10958
11394
|
font-weight: 400;
|
|
10959
11395
|
font-weight: var(--font-weight-regular);
|
|
11396
|
+
word-wrap: break-word;
|
|
10960
11397
|
margin-block-start: 4px;
|
|
10961
11398
|
margin-block-start: var(--size-4);
|
|
10962
11399
|
}
|
|
11400
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
11401
|
+
.decision__content {
|
|
11402
|
+
hyphens: auto;
|
|
11403
|
+
hyphenate-limit-chars: 7 3;
|
|
11404
|
+
}
|
|
11405
|
+
@media (min-width: 840px) {
|
|
11406
|
+
.decision__content {
|
|
11407
|
+
hyphenate-limit-chars: 8 3;
|
|
11408
|
+
}
|
|
11409
|
+
}
|
|
11410
|
+
@media (min-width: 1160px) {
|
|
11411
|
+
.decision__content {
|
|
11412
|
+
hyphenate-limit-chars: 10 4 3;
|
|
11413
|
+
}
|
|
11414
|
+
}
|
|
11415
|
+
}
|
|
11416
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
11417
|
+
.decision__content {
|
|
11418
|
+
hyphens: auto;
|
|
11419
|
+
-webkit-hyphenate-limit-before: 3;
|
|
11420
|
+
-webkit-hyphenate-limit-after: 3;
|
|
11421
|
+
}
|
|
11422
|
+
@media (min-width: 1160px) {
|
|
11423
|
+
.decision__content {
|
|
11424
|
+
-webkit-hyphenate-limit-before: 4;
|
|
11425
|
+
}
|
|
11426
|
+
}
|
|
11427
|
+
}
|
|
10963
11428
|
.decision + .decision {
|
|
10964
11429
|
margin-block-start: -1px;
|
|
10965
11430
|
}
|
|
@@ -11043,6 +11508,7 @@ li > a > .currency-flag:first-child {
|
|
|
11043
11508
|
letter-spacing: -0.006em;
|
|
11044
11509
|
font-weight: 400;
|
|
11045
11510
|
font-weight: var(--font-weight-regular);
|
|
11511
|
+
word-wrap: break-word;
|
|
11046
11512
|
text-align: start;
|
|
11047
11513
|
background-color: #ffffff;
|
|
11048
11514
|
background-color: var(--color-background-screen);
|
|
@@ -11057,6 +11523,34 @@ li > a > .currency-flag:first-child {
|
|
|
11057
11523
|
transform: translateY(-10px) scale(0.95, 0.95);
|
|
11058
11524
|
visibility: hidden;
|
|
11059
11525
|
}
|
|
11526
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
11527
|
+
.dropdown-menu {
|
|
11528
|
+
hyphens: auto;
|
|
11529
|
+
hyphenate-limit-chars: 7 3;
|
|
11530
|
+
}
|
|
11531
|
+
@media (min-width: 840px) {
|
|
11532
|
+
.dropdown-menu {
|
|
11533
|
+
hyphenate-limit-chars: 8 3;
|
|
11534
|
+
}
|
|
11535
|
+
}
|
|
11536
|
+
@media (min-width: 1160px) {
|
|
11537
|
+
.dropdown-menu {
|
|
11538
|
+
hyphenate-limit-chars: 10 4 3;
|
|
11539
|
+
}
|
|
11540
|
+
}
|
|
11541
|
+
}
|
|
11542
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
11543
|
+
.dropdown-menu {
|
|
11544
|
+
hyphens: auto;
|
|
11545
|
+
-webkit-hyphenate-limit-before: 3;
|
|
11546
|
+
-webkit-hyphenate-limit-after: 3;
|
|
11547
|
+
}
|
|
11548
|
+
@media (min-width: 1160px) {
|
|
11549
|
+
.dropdown-menu {
|
|
11550
|
+
-webkit-hyphenate-limit-before: 4;
|
|
11551
|
+
}
|
|
11552
|
+
}
|
|
11553
|
+
}
|
|
11060
11554
|
.np-theme-personal .dropdown-menu,
|
|
11061
11555
|
.np-theme-personal--forest-green .dropdown-menu,
|
|
11062
11556
|
.np-theme-personal--dark .dropdown-menu {
|
|
@@ -11100,10 +11594,39 @@ li > a > .currency-flag:first-child {
|
|
|
11100
11594
|
letter-spacing: -0.006em;
|
|
11101
11595
|
font-weight: 400;
|
|
11102
11596
|
font-weight: var(--font-weight-regular);
|
|
11597
|
+
word-wrap: break-word;
|
|
11103
11598
|
color: #37517e;
|
|
11104
11599
|
color: var(--color-content-primary);
|
|
11105
11600
|
white-space: nowrap;
|
|
11106
11601
|
}
|
|
11602
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
11603
|
+
.dropdown-menu > li > a {
|
|
11604
|
+
hyphens: auto;
|
|
11605
|
+
hyphenate-limit-chars: 7 3;
|
|
11606
|
+
}
|
|
11607
|
+
@media (min-width: 840px) {
|
|
11608
|
+
.dropdown-menu > li > a {
|
|
11609
|
+
hyphenate-limit-chars: 8 3;
|
|
11610
|
+
}
|
|
11611
|
+
}
|
|
11612
|
+
@media (min-width: 1160px) {
|
|
11613
|
+
.dropdown-menu > li > a {
|
|
11614
|
+
hyphenate-limit-chars: 10 4 3;
|
|
11615
|
+
}
|
|
11616
|
+
}
|
|
11617
|
+
}
|
|
11618
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
11619
|
+
.dropdown-menu > li > a {
|
|
11620
|
+
hyphens: auto;
|
|
11621
|
+
-webkit-hyphenate-limit-before: 3;
|
|
11622
|
+
-webkit-hyphenate-limit-after: 3;
|
|
11623
|
+
}
|
|
11624
|
+
@media (min-width: 1160px) {
|
|
11625
|
+
.dropdown-menu > li > a {
|
|
11626
|
+
-webkit-hyphenate-limit-before: 4;
|
|
11627
|
+
}
|
|
11628
|
+
}
|
|
11629
|
+
}
|
|
11107
11630
|
.dropdown-menu > li > a .secondary {
|
|
11108
11631
|
display: block;
|
|
11109
11632
|
white-space: normal;
|
|
@@ -11278,6 +11801,7 @@ li > a > .currency-flag:first-child {
|
|
|
11278
11801
|
line-height: 1.2;
|
|
11279
11802
|
line-height: var(--line-height-title);
|
|
11280
11803
|
letter-spacing: 0;
|
|
11804
|
+
word-wrap: break-word;
|
|
11281
11805
|
font-weight: 500;
|
|
11282
11806
|
font-weight: var(--font-weight-medium);
|
|
11283
11807
|
font-size: 0.875rem;
|
|
@@ -11355,6 +11879,7 @@ li > a > .currency-flag:first-child {
|
|
|
11355
11879
|
font-size: var(--font-size-16);
|
|
11356
11880
|
line-height: 150%;
|
|
11357
11881
|
letter-spacing: -0.011em;
|
|
11882
|
+
word-wrap: break-word;
|
|
11358
11883
|
text-align: center;
|
|
11359
11884
|
border: 1px solid #c9cbce;
|
|
11360
11885
|
border: 1px solid var(--color-interactive-secondary);
|
|
@@ -11362,6 +11887,34 @@ li > a > .currency-flag:first-child {
|
|
|
11362
11887
|
overflow: auto;
|
|
11363
11888
|
transition: border-color 0.15s linear;
|
|
11364
11889
|
}
|
|
11890
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
11891
|
+
.droppable {
|
|
11892
|
+
hyphens: auto;
|
|
11893
|
+
hyphenate-limit-chars: 7 3;
|
|
11894
|
+
}
|
|
11895
|
+
@media (min-width: 840px) {
|
|
11896
|
+
.droppable {
|
|
11897
|
+
hyphenate-limit-chars: 8 3;
|
|
11898
|
+
}
|
|
11899
|
+
}
|
|
11900
|
+
@media (min-width: 1160px) {
|
|
11901
|
+
.droppable {
|
|
11902
|
+
hyphenate-limit-chars: 10 4 3;
|
|
11903
|
+
}
|
|
11904
|
+
}
|
|
11905
|
+
}
|
|
11906
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
11907
|
+
.droppable {
|
|
11908
|
+
hyphens: auto;
|
|
11909
|
+
-webkit-hyphenate-limit-before: 3;
|
|
11910
|
+
-webkit-hyphenate-limit-after: 3;
|
|
11911
|
+
}
|
|
11912
|
+
@media (min-width: 1160px) {
|
|
11913
|
+
.droppable {
|
|
11914
|
+
-webkit-hyphenate-limit-before: 4;
|
|
11915
|
+
}
|
|
11916
|
+
}
|
|
11917
|
+
}
|
|
11365
11918
|
.droppable:hover {
|
|
11366
11919
|
border-color: #b5b7ba;
|
|
11367
11920
|
border-color: var(--color-interactive-secondary-hover);
|
|
@@ -12082,11 +12635,40 @@ li > a > .currency-flag:first-child {
|
|
|
12082
12635
|
letter-spacing: -0.006em;
|
|
12083
12636
|
font-weight: 400;
|
|
12084
12637
|
font-weight: var(--font-weight-regular);
|
|
12638
|
+
word-wrap: break-word;
|
|
12085
12639
|
padding-block-start: calc(8px * 10);
|
|
12086
12640
|
padding-block-start: calc(var(--size-8) * 10);
|
|
12087
12641
|
padding-block-end: calc(8px * 10);
|
|
12088
12642
|
padding-block-end: calc(var(--size-8) * 10);
|
|
12089
12643
|
}
|
|
12644
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
12645
|
+
.footer {
|
|
12646
|
+
hyphens: auto;
|
|
12647
|
+
hyphenate-limit-chars: 7 3;
|
|
12648
|
+
}
|
|
12649
|
+
@media (min-width: 840px) {
|
|
12650
|
+
.footer {
|
|
12651
|
+
hyphenate-limit-chars: 8 3;
|
|
12652
|
+
}
|
|
12653
|
+
}
|
|
12654
|
+
@media (min-width: 1160px) {
|
|
12655
|
+
.footer {
|
|
12656
|
+
hyphenate-limit-chars: 10 4 3;
|
|
12657
|
+
}
|
|
12658
|
+
}
|
|
12659
|
+
}
|
|
12660
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
12661
|
+
.footer {
|
|
12662
|
+
hyphens: auto;
|
|
12663
|
+
-webkit-hyphenate-limit-before: 3;
|
|
12664
|
+
-webkit-hyphenate-limit-after: 3;
|
|
12665
|
+
}
|
|
12666
|
+
@media (min-width: 1160px) {
|
|
12667
|
+
.footer {
|
|
12668
|
+
-webkit-hyphenate-limit-before: 4;
|
|
12669
|
+
}
|
|
12670
|
+
}
|
|
12671
|
+
}
|
|
12090
12672
|
@media (min-width: 600px) {
|
|
12091
12673
|
.footer {
|
|
12092
12674
|
padding-block-start: calc(8px * 15);
|
|
@@ -12113,6 +12695,40 @@ li > a > .currency-flag:first-child {
|
|
|
12113
12695
|
letter-spacing: -0.006em;
|
|
12114
12696
|
font-weight: 400;
|
|
12115
12697
|
font-weight: var(--font-weight-regular);
|
|
12698
|
+
word-wrap: break-word;
|
|
12699
|
+
}
|
|
12700
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
12701
|
+
.footer .footer-link,
|
|
12702
|
+
.footer .link-icon {
|
|
12703
|
+
hyphens: auto;
|
|
12704
|
+
hyphenate-limit-chars: 7 3;
|
|
12705
|
+
}
|
|
12706
|
+
@media (min-width: 840px) {
|
|
12707
|
+
.footer .footer-link,
|
|
12708
|
+
.footer .link-icon {
|
|
12709
|
+
hyphenate-limit-chars: 8 3;
|
|
12710
|
+
}
|
|
12711
|
+
}
|
|
12712
|
+
@media (min-width: 1160px) {
|
|
12713
|
+
.footer .footer-link,
|
|
12714
|
+
.footer .link-icon {
|
|
12715
|
+
hyphenate-limit-chars: 10 4 3;
|
|
12716
|
+
}
|
|
12717
|
+
}
|
|
12718
|
+
}
|
|
12719
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
12720
|
+
.footer .footer-link,
|
|
12721
|
+
.footer .link-icon {
|
|
12722
|
+
hyphens: auto;
|
|
12723
|
+
-webkit-hyphenate-limit-before: 3;
|
|
12724
|
+
-webkit-hyphenate-limit-after: 3;
|
|
12725
|
+
}
|
|
12726
|
+
@media (min-width: 1160px) {
|
|
12727
|
+
.footer .footer-link,
|
|
12728
|
+
.footer .link-icon {
|
|
12729
|
+
-webkit-hyphenate-limit-before: 4;
|
|
12730
|
+
}
|
|
12731
|
+
}
|
|
12116
12732
|
}
|
|
12117
12733
|
.footer .footer-link:hover,
|
|
12118
12734
|
.footer .link-icon:hover,
|
|
@@ -13647,6 +14263,7 @@ li > a > .currency-flag:first-child {
|
|
|
13647
14263
|
line-height: 1.2;
|
|
13648
14264
|
line-height: var(--line-height-title);
|
|
13649
14265
|
letter-spacing: 0;
|
|
14266
|
+
word-wrap: break-word;
|
|
13650
14267
|
font-weight: 500;
|
|
13651
14268
|
font-weight: var(--font-weight-medium);
|
|
13652
14269
|
font-size: 0.875rem;
|
|
@@ -16503,6 +17120,7 @@ button.close {
|
|
|
16503
17120
|
letter-spacing: -0.006em;
|
|
16504
17121
|
font-weight: 400;
|
|
16505
17122
|
font-weight: var(--font-weight-regular);
|
|
17123
|
+
word-wrap: break-word;
|
|
16506
17124
|
background-color: #ffffff;
|
|
16507
17125
|
background-color: var(--color-background-screen);
|
|
16508
17126
|
background-clip: padding-box;
|
|
@@ -16510,6 +17128,34 @@ button.close {
|
|
|
16510
17128
|
box-shadow: 0 20px 66px 0 rgba(34, 48, 73, 0.2);
|
|
16511
17129
|
position: absolute;
|
|
16512
17130
|
}
|
|
17131
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
17132
|
+
.popover {
|
|
17133
|
+
hyphens: auto;
|
|
17134
|
+
hyphenate-limit-chars: 7 3;
|
|
17135
|
+
}
|
|
17136
|
+
@media (min-width: 840px) {
|
|
17137
|
+
.popover {
|
|
17138
|
+
hyphenate-limit-chars: 8 3;
|
|
17139
|
+
}
|
|
17140
|
+
}
|
|
17141
|
+
@media (min-width: 1160px) {
|
|
17142
|
+
.popover {
|
|
17143
|
+
hyphenate-limit-chars: 10 4 3;
|
|
17144
|
+
}
|
|
17145
|
+
}
|
|
17146
|
+
}
|
|
17147
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
17148
|
+
.popover {
|
|
17149
|
+
hyphens: auto;
|
|
17150
|
+
-webkit-hyphenate-limit-before: 3;
|
|
17151
|
+
-webkit-hyphenate-limit-after: 3;
|
|
17152
|
+
}
|
|
17153
|
+
@media (min-width: 1160px) {
|
|
17154
|
+
.popover {
|
|
17155
|
+
-webkit-hyphenate-limit-before: 4;
|
|
17156
|
+
}
|
|
17157
|
+
}
|
|
17158
|
+
}
|
|
16513
17159
|
.np-theme-personal--forest-green .popover,
|
|
16514
17160
|
.np-theme-personal--bright-green .popover,
|
|
16515
17161
|
.np-theme-personal--dark .popover {
|
|
@@ -16667,6 +17313,7 @@ button.close {
|
|
|
16667
17313
|
line-height: 1.2;
|
|
16668
17314
|
line-height: var(--line-height-title);
|
|
16669
17315
|
letter-spacing: 0;
|
|
17316
|
+
word-wrap: break-word;
|
|
16670
17317
|
font-size: 1.125rem;
|
|
16671
17318
|
font-size: var(--font-size-18);
|
|
16672
17319
|
font-weight: 600;
|
|
@@ -16724,9 +17371,38 @@ button.close {
|
|
|
16724
17371
|
letter-spacing: -0.006em;
|
|
16725
17372
|
font-weight: 400;
|
|
16726
17373
|
font-weight: var(--font-weight-regular);
|
|
17374
|
+
word-wrap: break-word;
|
|
16727
17375
|
color: #5d7079;
|
|
16728
17376
|
color: var(--color-content-secondary);
|
|
16729
17377
|
}
|
|
17378
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
17379
|
+
.popover-content {
|
|
17380
|
+
hyphens: auto;
|
|
17381
|
+
hyphenate-limit-chars: 7 3;
|
|
17382
|
+
}
|
|
17383
|
+
@media (min-width: 840px) {
|
|
17384
|
+
.popover-content {
|
|
17385
|
+
hyphenate-limit-chars: 8 3;
|
|
17386
|
+
}
|
|
17387
|
+
}
|
|
17388
|
+
@media (min-width: 1160px) {
|
|
17389
|
+
.popover-content {
|
|
17390
|
+
hyphenate-limit-chars: 10 4 3;
|
|
17391
|
+
}
|
|
17392
|
+
}
|
|
17393
|
+
}
|
|
17394
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
17395
|
+
.popover-content {
|
|
17396
|
+
hyphens: auto;
|
|
17397
|
+
-webkit-hyphenate-limit-before: 3;
|
|
17398
|
+
-webkit-hyphenate-limit-after: 3;
|
|
17399
|
+
}
|
|
17400
|
+
@media (min-width: 1160px) {
|
|
17401
|
+
.popover-content {
|
|
17402
|
+
-webkit-hyphenate-limit-before: 4;
|
|
17403
|
+
}
|
|
17404
|
+
}
|
|
17405
|
+
}
|
|
16730
17406
|
.popover-content > :last-child {
|
|
16731
17407
|
margin-block-end: 0;
|
|
16732
17408
|
}
|
|
@@ -18739,6 +19415,7 @@ table col[class*="col-"] {
|
|
|
18739
19415
|
letter-spacing: -0.006em;
|
|
18740
19416
|
font-weight: 400;
|
|
18741
19417
|
font-weight: var(--font-weight-regular);
|
|
19418
|
+
word-wrap: break-word;
|
|
18742
19419
|
max-inline-size: 200px;
|
|
18743
19420
|
min-inline-size: 120px;
|
|
18744
19421
|
padding-block: 16px;
|
|
@@ -18753,6 +19430,34 @@ table col[class*="col-"] {
|
|
|
18753
19430
|
border-radius: 3px;
|
|
18754
19431
|
box-shadow: 0 1px 28px 0 rgba(34, 48, 73, 0.2);
|
|
18755
19432
|
}
|
|
19433
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
19434
|
+
.tooltip-inner {
|
|
19435
|
+
hyphens: auto;
|
|
19436
|
+
hyphenate-limit-chars: 7 3;
|
|
19437
|
+
}
|
|
19438
|
+
@media (min-width: 840px) {
|
|
19439
|
+
.tooltip-inner {
|
|
19440
|
+
hyphenate-limit-chars: 8 3;
|
|
19441
|
+
}
|
|
19442
|
+
}
|
|
19443
|
+
@media (min-width: 1160px) {
|
|
19444
|
+
.tooltip-inner {
|
|
19445
|
+
hyphenate-limit-chars: 10 4 3;
|
|
19446
|
+
}
|
|
19447
|
+
}
|
|
19448
|
+
}
|
|
19449
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
19450
|
+
.tooltip-inner {
|
|
19451
|
+
hyphens: auto;
|
|
19452
|
+
-webkit-hyphenate-limit-before: 3;
|
|
19453
|
+
-webkit-hyphenate-limit-after: 3;
|
|
19454
|
+
}
|
|
19455
|
+
@media (min-width: 1160px) {
|
|
19456
|
+
.tooltip-inner {
|
|
19457
|
+
-webkit-hyphenate-limit-before: 4;
|
|
19458
|
+
}
|
|
19459
|
+
}
|
|
19460
|
+
}
|
|
18756
19461
|
.np-theme-personal--forest-green .tooltip-inner,
|
|
18757
19462
|
.np-theme-personal--bright-green .tooltip-inner,
|
|
18758
19463
|
.np-theme-personal--dark .tooltip-inner {
|