@transferwise/neptune-css 0.0.0-experimental-d1de9e0 → 0.0.0-experimental-a4bad0f
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/css/accordion.css +1 -1
- package/dist/css/flex.css +0 -2
- package/dist/css/media.css +1 -1
- package/dist/css/neptune-addons.css +5 -21
- package/dist/css/neptune-core.css +7 -23
- package/dist/css/neptune.css +40 -108
- package/dist/css/popovers.css +5 -5
- package/dist/css/utilities.css +5 -17
- package/dist/css/wells.css +1 -15
- package/dist/less/legacy-variables.less +1 -1
- package/dist/less/neptune-tokens.less +2 -2
- package/dist/props/custom-media.css +2 -2
- package/dist/props/neptune-tokens.css +1 -1
- package/package.json +4 -4
- package/src/less/addons/_display-utilities.less +14 -28
- package/src/less/core/_typography-utilities.less +10 -22
- package/src/less/flex.less +1 -3
- package/src/less/popovers.less +6 -6
- package/src/less/utilities.less +6 -14
- package/src/less/wells.less +3 -5
package/dist/css/accordion.css
CHANGED
package/dist/css/flex.css
CHANGED
package/dist/css/media.css
CHANGED
|
@@ -187,34 +187,22 @@
|
|
|
187
187
|
display: inline-block !important;
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
|
-
@media (min-width: 1160px) and (max-width: 1159.98px) {
|
|
191
|
-
.visible-lg,
|
|
192
|
-
.visible-lg-block {
|
|
193
|
-
display: block !important;
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
@media (min-width: 1160px) and (max-width: 1159.98px) {
|
|
197
|
-
.visible-lg-inline {
|
|
198
|
-
display: inline !important;
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
@media (min-width: 1160px) and (max-width: 1159.98px) {
|
|
202
|
-
.visible-lg-inline-block {
|
|
203
|
-
display: inline-block !important;
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
190
|
@media (min-width: 1160px) {
|
|
191
|
+
.visible-lg,
|
|
192
|
+
.visible-lg-block,
|
|
207
193
|
.visible-xl,
|
|
208
194
|
.visible-xl-block {
|
|
209
195
|
display: block !important;
|
|
210
196
|
}
|
|
211
197
|
}
|
|
212
198
|
@media (min-width: 1160px) {
|
|
199
|
+
.visible-lg-inline,
|
|
213
200
|
.visible-xl-inline {
|
|
214
201
|
display: inline !important;
|
|
215
202
|
}
|
|
216
203
|
}
|
|
217
204
|
@media (min-width: 1160px) {
|
|
205
|
+
.visible-lg-inline-block,
|
|
218
206
|
.visible-xl-inline-block {
|
|
219
207
|
display: inline-block !important;
|
|
220
208
|
}
|
|
@@ -234,12 +222,8 @@
|
|
|
234
222
|
display: none !important;
|
|
235
223
|
}
|
|
236
224
|
}
|
|
237
|
-
@media (min-width: 1160px) and (max-width: 1159.98px) {
|
|
238
|
-
.hidden-lg {
|
|
239
|
-
display: none !important;
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
225
|
@media (min-width: 1160px) {
|
|
226
|
+
.hidden-lg,
|
|
243
227
|
.hidden-xl {
|
|
244
228
|
display: none !important;
|
|
245
229
|
}
|
|
@@ -1909,47 +1909,31 @@ kbd kbd {
|
|
|
1909
1909
|
}
|
|
1910
1910
|
}
|
|
1911
1911
|
@media (min-width: 1160px) {
|
|
1912
|
-
.text-lg-left
|
|
1913
|
-
text-align: left;
|
|
1914
|
-
}
|
|
1915
|
-
[dir="rtl"] .text-lg-left {
|
|
1916
|
-
text-align: right;
|
|
1917
|
-
}
|
|
1918
|
-
.text-lg-right {
|
|
1919
|
-
text-align: right;
|
|
1920
|
-
}
|
|
1921
|
-
[dir="rtl"] .text-lg-right {
|
|
1922
|
-
text-align: left;
|
|
1923
|
-
}
|
|
1924
|
-
.text-lg-center {
|
|
1925
|
-
text-align: center;
|
|
1926
|
-
}
|
|
1927
|
-
.text-lg-justify {
|
|
1928
|
-
text-align: justify;
|
|
1929
|
-
}
|
|
1930
|
-
.text-lg-nowrap {
|
|
1931
|
-
white-space: nowrap;
|
|
1932
|
-
}
|
|
1933
|
-
}
|
|
1934
|
-
@media (min-width: 1160px) {
|
|
1912
|
+
.text-lg-left,
|
|
1935
1913
|
.text-xl-left {
|
|
1936
1914
|
text-align: left;
|
|
1937
1915
|
}
|
|
1916
|
+
[dir="rtl"] .text-lg-left,
|
|
1938
1917
|
[dir="rtl"] .text-xl-left {
|
|
1939
1918
|
text-align: right;
|
|
1940
1919
|
}
|
|
1920
|
+
.text-lg-right,
|
|
1941
1921
|
.text-xl-right {
|
|
1942
1922
|
text-align: right;
|
|
1943
1923
|
}
|
|
1924
|
+
[dir="rtl"] .text-lg-right,
|
|
1944
1925
|
[dir="rtl"] .text-xl-right {
|
|
1945
1926
|
text-align: left;
|
|
1946
1927
|
}
|
|
1928
|
+
.text-lg-center,
|
|
1947
1929
|
.text-xl-center {
|
|
1948
1930
|
text-align: center;
|
|
1949
1931
|
}
|
|
1932
|
+
.text-lg-justify,
|
|
1950
1933
|
.text-xl-justify {
|
|
1951
1934
|
text-align: justify;
|
|
1952
1935
|
}
|
|
1936
|
+
.text-lg-nowrap,
|
|
1953
1937
|
.text-xl-nowrap {
|
|
1954
1938
|
white-space: nowrap;
|
|
1955
1939
|
}
|
package/dist/css/neptune.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly, this file was auto-generated.
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Wed, 06 May 2026 17:52:54 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
146
|
* Do not edit directly, this file was auto-generated.
|
|
147
|
-
* Generated on
|
|
147
|
+
* Generated on Wed, 06 May 2026 17:52:54 GMT
|
|
148
148
|
*/
|
|
149
149
|
|
|
150
150
|
.np-theme-personal {
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
* We delete this hack once all consumers no longer import tokens in their projects (e.g Next.js app.tsx or Storybook's preivew.tsx)
|
|
333
333
|
*/
|
|
334
334
|
|
|
335
|
-
@media (max-width:
|
|
335
|
+
@media (max-width: 319.98px) {
|
|
336
336
|
.np-theme-personal {
|
|
337
337
|
--delta: 2;
|
|
338
338
|
--size-4: calc(4px / var(--delta));
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
|
|
395
395
|
/**
|
|
396
396
|
* Do not edit directly, this file was auto-generated.
|
|
397
|
-
* Generated on
|
|
397
|
+
* Generated on Wed, 06 May 2026 17:52:54 GMT
|
|
398
398
|
*/
|
|
399
399
|
|
|
400
400
|
.np-theme-personal--forest-green {
|
|
@@ -582,7 +582,7 @@
|
|
|
582
582
|
* We delete this hack once all consumers no longer import tokens in their projects (e.g Next.js app.tsx or Storybook's preivew.tsx)
|
|
583
583
|
*/
|
|
584
584
|
|
|
585
|
-
@media (max-width:
|
|
585
|
+
@media (max-width: 319.98px) {
|
|
586
586
|
.np-theme-personal {
|
|
587
587
|
--delta: 2;
|
|
588
588
|
--size-4: calc(4px / var(--delta));
|
|
@@ -644,7 +644,7 @@
|
|
|
644
644
|
|
|
645
645
|
/**
|
|
646
646
|
* Do not edit directly, this file was auto-generated.
|
|
647
|
-
* Generated on
|
|
647
|
+
* Generated on Wed, 06 May 2026 17:52:54 GMT
|
|
648
648
|
*/
|
|
649
649
|
|
|
650
650
|
.np-theme-personal--bright-green {
|
|
@@ -832,7 +832,7 @@
|
|
|
832
832
|
* We delete this hack once all consumers no longer import tokens in their projects (e.g Next.js app.tsx or Storybook's preivew.tsx)
|
|
833
833
|
*/
|
|
834
834
|
|
|
835
|
-
@media (max-width:
|
|
835
|
+
@media (max-width: 319.98px) {
|
|
836
836
|
.np-theme-personal {
|
|
837
837
|
--delta: 2;
|
|
838
838
|
--size-4: calc(4px / var(--delta));
|
|
@@ -894,7 +894,7 @@
|
|
|
894
894
|
|
|
895
895
|
/**
|
|
896
896
|
* Do not edit directly, this file was auto-generated.
|
|
897
|
-
* Generated on
|
|
897
|
+
* Generated on Wed, 06 May 2026 17:52:54 GMT
|
|
898
898
|
*/
|
|
899
899
|
|
|
900
900
|
.np-theme-personal--dark {
|
|
@@ -1082,7 +1082,7 @@
|
|
|
1082
1082
|
* We delete this hack once all consumers no longer import tokens in their projects (e.g Next.js app.tsx or Storybook's preivew.tsx)
|
|
1083
1083
|
*/
|
|
1084
1084
|
|
|
1085
|
-
@media (max-width:
|
|
1085
|
+
@media (max-width: 319.98px) {
|
|
1086
1086
|
.np-theme-personal {
|
|
1087
1087
|
--delta: 2;
|
|
1088
1088
|
--size-4: calc(4px / var(--delta));
|
|
@@ -1144,7 +1144,7 @@
|
|
|
1144
1144
|
|
|
1145
1145
|
/**
|
|
1146
1146
|
* Do not edit directly, this file was auto-generated.
|
|
1147
|
-
* Generated on
|
|
1147
|
+
* Generated on Wed, 06 May 2026 17:52:54 GMT
|
|
1148
1148
|
*/
|
|
1149
1149
|
|
|
1150
1150
|
.np-theme-platform {
|
|
@@ -1328,7 +1328,7 @@
|
|
|
1328
1328
|
|
|
1329
1329
|
/**
|
|
1330
1330
|
* Do not edit directly, this file was auto-generated.
|
|
1331
|
-
* Generated on
|
|
1331
|
+
* Generated on Wed, 06 May 2026 17:52:54 GMT
|
|
1332
1332
|
*/
|
|
1333
1333
|
|
|
1334
1334
|
.np-theme-platform--forest-green {
|
|
@@ -1512,7 +1512,7 @@
|
|
|
1512
1512
|
|
|
1513
1513
|
/**
|
|
1514
1514
|
* Do not edit directly, this file was auto-generated.
|
|
1515
|
-
* Generated on
|
|
1515
|
+
* Generated on Wed, 06 May 2026 17:52:54 GMT
|
|
1516
1516
|
*/
|
|
1517
1517
|
|
|
1518
1518
|
.np-theme-business {
|
|
@@ -1697,7 +1697,7 @@
|
|
|
1697
1697
|
|
|
1698
1698
|
/**
|
|
1699
1699
|
* Do not edit directly, this file was auto-generated.
|
|
1700
|
-
* Generated on
|
|
1700
|
+
* Generated on Wed, 06 May 2026 17:52:54 GMT
|
|
1701
1701
|
*/
|
|
1702
1702
|
|
|
1703
1703
|
.np-theme-business--dark {
|
|
@@ -1882,7 +1882,7 @@
|
|
|
1882
1882
|
|
|
1883
1883
|
/**
|
|
1884
1884
|
* Do not edit directly, this file was auto-generated.
|
|
1885
|
-
* Generated on
|
|
1885
|
+
* Generated on Wed, 06 May 2026 17:52:54 GMT
|
|
1886
1886
|
*/
|
|
1887
1887
|
|
|
1888
1888
|
.np-theme-business--forest-green {
|
|
@@ -2067,7 +2067,7 @@
|
|
|
2067
2067
|
|
|
2068
2068
|
/**
|
|
2069
2069
|
* Do not edit directly, this file was auto-generated.
|
|
2070
|
-
* Generated on
|
|
2070
|
+
* Generated on Wed, 06 May 2026 17:52:54 GMT
|
|
2071
2071
|
*/
|
|
2072
2072
|
|
|
2073
2073
|
.np-theme-business--bright-green {
|
|
@@ -4395,48 +4395,31 @@ kbd kbd {
|
|
|
4395
4395
|
}
|
|
4396
4396
|
|
|
4397
4397
|
@media (min-width: 1160px) {
|
|
4398
|
-
.text-lg-left
|
|
4399
|
-
text-align: left;
|
|
4400
|
-
}
|
|
4401
|
-
[dir="rtl"] .text-lg-left {
|
|
4402
|
-
text-align: right;
|
|
4403
|
-
}
|
|
4404
|
-
.text-lg-right {
|
|
4405
|
-
text-align: right;
|
|
4406
|
-
}
|
|
4407
|
-
[dir="rtl"] .text-lg-right {
|
|
4408
|
-
text-align: left;
|
|
4409
|
-
}
|
|
4410
|
-
.text-lg-center {
|
|
4411
|
-
text-align: center;
|
|
4412
|
-
}
|
|
4413
|
-
.text-lg-justify {
|
|
4414
|
-
text-align: justify;
|
|
4415
|
-
}
|
|
4416
|
-
.text-lg-nowrap {
|
|
4417
|
-
white-space: nowrap;
|
|
4418
|
-
}
|
|
4419
|
-
}
|
|
4420
|
-
|
|
4421
|
-
@media (min-width: 1160px) {
|
|
4398
|
+
.text-lg-left,
|
|
4422
4399
|
.text-xl-left {
|
|
4423
4400
|
text-align: left;
|
|
4424
4401
|
}
|
|
4402
|
+
[dir="rtl"] .text-lg-left,
|
|
4425
4403
|
[dir="rtl"] .text-xl-left {
|
|
4426
4404
|
text-align: right;
|
|
4427
4405
|
}
|
|
4406
|
+
.text-lg-right,
|
|
4428
4407
|
.text-xl-right {
|
|
4429
4408
|
text-align: right;
|
|
4430
4409
|
}
|
|
4410
|
+
[dir="rtl"] .text-lg-right,
|
|
4431
4411
|
[dir="rtl"] .text-xl-right {
|
|
4432
4412
|
text-align: left;
|
|
4433
4413
|
}
|
|
4414
|
+
.text-lg-center,
|
|
4434
4415
|
.text-xl-center {
|
|
4435
4416
|
text-align: center;
|
|
4436
4417
|
}
|
|
4418
|
+
.text-lg-justify,
|
|
4437
4419
|
.text-xl-justify {
|
|
4438
4420
|
text-align: justify;
|
|
4439
4421
|
}
|
|
4422
|
+
.text-lg-nowrap,
|
|
4440
4423
|
.text-xl-nowrap {
|
|
4441
4424
|
white-space: nowrap;
|
|
4442
4425
|
}
|
|
@@ -4613,7 +4596,7 @@ a.text-inverse:focus {
|
|
|
4613
4596
|
content: none;
|
|
4614
4597
|
}
|
|
4615
4598
|
|
|
4616
|
-
@media (max-width:
|
|
4599
|
+
@media (max-width: 319.98px) {
|
|
4617
4600
|
.np-theme-personal {
|
|
4618
4601
|
--delta: 2;
|
|
4619
4602
|
--size-4: calc(4px / var(--delta));
|
|
@@ -4884,26 +4867,9 @@ a.text-inverse:focus {
|
|
|
4884
4867
|
}
|
|
4885
4868
|
}
|
|
4886
4869
|
|
|
4887
|
-
@media (min-width: 1160px) and (max-width: 1159.98px) {
|
|
4888
|
-
.visible-lg,
|
|
4889
|
-
.visible-lg-block {
|
|
4890
|
-
display: block !important;
|
|
4891
|
-
}
|
|
4892
|
-
}
|
|
4893
|
-
|
|
4894
|
-
@media (min-width: 1160px) and (max-width: 1159.98px) {
|
|
4895
|
-
.visible-lg-inline {
|
|
4896
|
-
display: inline !important;
|
|
4897
|
-
}
|
|
4898
|
-
}
|
|
4899
|
-
|
|
4900
|
-
@media (min-width: 1160px) and (max-width: 1159.98px) {
|
|
4901
|
-
.visible-lg-inline-block {
|
|
4902
|
-
display: inline-block !important;
|
|
4903
|
-
}
|
|
4904
|
-
}
|
|
4905
|
-
|
|
4906
4870
|
@media (min-width: 1160px) {
|
|
4871
|
+
.visible-lg,
|
|
4872
|
+
.visible-lg-block,
|
|
4907
4873
|
.visible-xl,
|
|
4908
4874
|
.visible-xl-block {
|
|
4909
4875
|
display: block !important;
|
|
@@ -4911,12 +4877,14 @@ a.text-inverse:focus {
|
|
|
4911
4877
|
}
|
|
4912
4878
|
|
|
4913
4879
|
@media (min-width: 1160px) {
|
|
4880
|
+
.visible-lg-inline,
|
|
4914
4881
|
.visible-xl-inline {
|
|
4915
4882
|
display: inline !important;
|
|
4916
4883
|
}
|
|
4917
4884
|
}
|
|
4918
4885
|
|
|
4919
4886
|
@media (min-width: 1160px) {
|
|
4887
|
+
.visible-lg-inline-block,
|
|
4920
4888
|
.visible-xl-inline-block {
|
|
4921
4889
|
display: inline-block !important;
|
|
4922
4890
|
}
|
|
@@ -4940,13 +4908,8 @@ a.text-inverse:focus {
|
|
|
4940
4908
|
}
|
|
4941
4909
|
}
|
|
4942
4910
|
|
|
4943
|
-
@media (min-width: 1160px) and (max-width: 1159.98px) {
|
|
4944
|
-
.hidden-lg {
|
|
4945
|
-
display: none !important;
|
|
4946
|
-
}
|
|
4947
|
-
}
|
|
4948
|
-
|
|
4949
4911
|
@media (min-width: 1160px) {
|
|
4912
|
+
.hidden-lg,
|
|
4950
4913
|
.hidden-xl {
|
|
4951
4914
|
display: none !important;
|
|
4952
4915
|
}
|
|
@@ -15186,9 +15149,6 @@ li > a > .currency-flag:first-child {
|
|
|
15186
15149
|
.flex-grow-1--lg {
|
|
15187
15150
|
flex-grow: 1;
|
|
15188
15151
|
}
|
|
15189
|
-
}
|
|
15190
|
-
|
|
15191
|
-
@media (min-width: 1160px) {
|
|
15192
15152
|
.d-flex--xl {
|
|
15193
15153
|
display: flex;
|
|
15194
15154
|
}
|
|
@@ -21242,7 +21202,7 @@ button.close {
|
|
|
21242
21202
|
padding-right: initial;
|
|
21243
21203
|
}
|
|
21244
21204
|
|
|
21245
|
-
@media (max-width:
|
|
21205
|
+
@media (max-width: 319.98px) {
|
|
21246
21206
|
.media-right,
|
|
21247
21207
|
.media-left {
|
|
21248
21208
|
padding-left: 32px;
|
|
@@ -22771,7 +22731,7 @@ button.popover-close {
|
|
|
22771
22731
|
padding: var(--size-24);
|
|
22772
22732
|
}
|
|
22773
22733
|
|
|
22774
|
-
@media (max-width:
|
|
22734
|
+
@media (max-width: 599.98px) {
|
|
22775
22735
|
.popover-promotion {
|
|
22776
22736
|
width: auto !important;
|
|
22777
22737
|
padding: 24px !important;
|
|
@@ -22781,7 +22741,7 @@ button.popover-close {
|
|
|
22781
22741
|
}
|
|
22782
22742
|
}
|
|
22783
22743
|
|
|
22784
|
-
@media (min-width: 590px) and (max-width:
|
|
22744
|
+
@media (min-width: 590px) and (max-width: 1159.98px) {
|
|
22785
22745
|
.popover-promotion {
|
|
22786
22746
|
width: 540px !important;
|
|
22787
22747
|
padding: 28px 32px !important;
|
|
@@ -22807,13 +22767,13 @@ button.popover-close {
|
|
|
22807
22767
|
}
|
|
22808
22768
|
}
|
|
22809
22769
|
|
|
22810
|
-
@media (max-width:
|
|
22770
|
+
@media (max-width: 319.98px) {
|
|
22811
22771
|
.popover-promotion .popover-image {
|
|
22812
22772
|
width: 80%;
|
|
22813
22773
|
}
|
|
22814
22774
|
}
|
|
22815
22775
|
|
|
22816
|
-
@media (min-width: 320px) and (max-width:
|
|
22776
|
+
@media (min-width: 320px) and (max-width: 1159.98px) {
|
|
22817
22777
|
.popover-promotion .popover-image {
|
|
22818
22778
|
width: 60%;
|
|
22819
22779
|
}
|
|
@@ -22825,7 +22785,7 @@ button.popover-close {
|
|
|
22825
22785
|
}
|
|
22826
22786
|
}
|
|
22827
22787
|
|
|
22828
|
-
@media (max-width:
|
|
22788
|
+
@media (max-width: 1159.98px) {
|
|
22829
22789
|
.popover-promotion {
|
|
22830
22790
|
position: absolute !important;
|
|
22831
22791
|
}
|
|
@@ -25443,36 +25403,23 @@ a[data-toggle="tooltip"] {
|
|
|
25443
25403
|
}
|
|
25444
25404
|
|
|
25445
25405
|
@media (min-width: 1160px) {
|
|
25446
|
-
.pull-lg-left
|
|
25447
|
-
float: left !important;
|
|
25448
|
-
}
|
|
25449
|
-
[dir="rtl"] .pull-lg-left {
|
|
25450
|
-
float: right !important;
|
|
25451
|
-
}
|
|
25452
|
-
.pull-lg-right {
|
|
25453
|
-
float: right !important;
|
|
25454
|
-
}
|
|
25455
|
-
[dir="rtl"] .pull-lg-right {
|
|
25456
|
-
float: left !important;
|
|
25457
|
-
}
|
|
25458
|
-
.pull-lg-none {
|
|
25459
|
-
float: none !important;
|
|
25460
|
-
}
|
|
25461
|
-
}
|
|
25462
|
-
|
|
25463
|
-
@media (min-width: 1160px) {
|
|
25406
|
+
.pull-lg-left,
|
|
25464
25407
|
.pull-xl-left {
|
|
25465
25408
|
float: left !important;
|
|
25466
25409
|
}
|
|
25410
|
+
[dir="rtl"] .pull-lg-left,
|
|
25467
25411
|
[dir="rtl"] .pull-xl-left {
|
|
25468
25412
|
float: right !important;
|
|
25469
25413
|
}
|
|
25414
|
+
.pull-lg-right,
|
|
25470
25415
|
.pull-xl-right {
|
|
25471
25416
|
float: right !important;
|
|
25472
25417
|
}
|
|
25418
|
+
[dir="rtl"] .pull-lg-right,
|
|
25473
25419
|
[dir="rtl"] .pull-xl-right {
|
|
25474
25420
|
float: left !important;
|
|
25475
25421
|
}
|
|
25422
|
+
.pull-lg-none,
|
|
25476
25423
|
.pull-xl-none {
|
|
25477
25424
|
float: none !important;
|
|
25478
25425
|
}
|
|
@@ -25577,22 +25524,7 @@ a[data-toggle="tooltip"] {
|
|
|
25577
25524
|
}
|
|
25578
25525
|
|
|
25579
25526
|
@media only screen and (min-width: 1160px) {
|
|
25580
|
-
.well-lg
|
|
25581
|
-
min-height: 24px;
|
|
25582
|
-
min-height: var(--size-24);
|
|
25583
|
-
margin-bottom: 24px;
|
|
25584
|
-
margin-bottom: var(--size-24);
|
|
25585
|
-
border-radius: 10px;
|
|
25586
|
-
border-radius: var(--radius-small);
|
|
25587
|
-
border: solid 1px rgba(0,0,0,0.10196);
|
|
25588
|
-
border: solid 1px var(--color-border-neutral);
|
|
25589
|
-
padding: 24px;
|
|
25590
|
-
padding: var(--size-24);
|
|
25591
|
-
box-shadow: none;
|
|
25592
|
-
}
|
|
25593
|
-
}
|
|
25594
|
-
|
|
25595
|
-
@media only screen and (min-width: 1160px) {
|
|
25527
|
+
.well-lg,
|
|
25596
25528
|
.well-xl {
|
|
25597
25529
|
min-height: 24px;
|
|
25598
25530
|
min-height: var(--size-24);
|
package/dist/css/popovers.css
CHANGED
|
@@ -607,7 +607,7 @@ button.popover-close {
|
|
|
607
607
|
padding: 24px;
|
|
608
608
|
padding: var(--size-24);
|
|
609
609
|
}
|
|
610
|
-
@media (max-width:
|
|
610
|
+
@media (max-width: 599.98px) {
|
|
611
611
|
.popover-promotion {
|
|
612
612
|
width: auto !important;
|
|
613
613
|
padding: 24px !important;
|
|
@@ -616,7 +616,7 @@ button.popover-close {
|
|
|
616
616
|
margin: var(--size-16) !important;
|
|
617
617
|
}
|
|
618
618
|
}
|
|
619
|
-
@media (min-width: 590px) and (max-width:
|
|
619
|
+
@media (min-width: 590px) and (max-width: 1159.98px) {
|
|
620
620
|
.popover-promotion {
|
|
621
621
|
width: 540px !important;
|
|
622
622
|
padding: 28px 32px !important;
|
|
@@ -639,12 +639,12 @@ button.popover-close {
|
|
|
639
639
|
line-height: var(--line-height-title);
|
|
640
640
|
}
|
|
641
641
|
}
|
|
642
|
-
@media (max-width:
|
|
642
|
+
@media (max-width: 319.98px) {
|
|
643
643
|
.popover-promotion .popover-image {
|
|
644
644
|
width: 80%;
|
|
645
645
|
}
|
|
646
646
|
}
|
|
647
|
-
@media (min-width: 320px) and (max-width:
|
|
647
|
+
@media (min-width: 320px) and (max-width: 1159.98px) {
|
|
648
648
|
.popover-promotion .popover-image {
|
|
649
649
|
width: 60%;
|
|
650
650
|
}
|
|
@@ -654,7 +654,7 @@ button.popover-close {
|
|
|
654
654
|
width: 80%;
|
|
655
655
|
}
|
|
656
656
|
}
|
|
657
|
-
@media (max-width:
|
|
657
|
+
@media (max-width: 1159.98px) {
|
|
658
658
|
.popover-promotion {
|
|
659
659
|
position: absolute !important;
|
|
660
660
|
}
|
package/dist/css/utilities.css
CHANGED
|
@@ -71,35 +71,23 @@
|
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
@media (min-width: 1160px) {
|
|
74
|
-
.pull-lg-left
|
|
75
|
-
float: left !important;
|
|
76
|
-
}
|
|
77
|
-
[dir="rtl"] .pull-lg-left {
|
|
78
|
-
float: right !important;
|
|
79
|
-
}
|
|
80
|
-
.pull-lg-right {
|
|
81
|
-
float: right !important;
|
|
82
|
-
}
|
|
83
|
-
[dir="rtl"] .pull-lg-right {
|
|
84
|
-
float: left !important;
|
|
85
|
-
}
|
|
86
|
-
.pull-lg-none {
|
|
87
|
-
float: none !important;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
@media (min-width: 1160px) {
|
|
74
|
+
.pull-lg-left,
|
|
91
75
|
.pull-xl-left {
|
|
92
76
|
float: left !important;
|
|
93
77
|
}
|
|
78
|
+
[dir="rtl"] .pull-lg-left,
|
|
94
79
|
[dir="rtl"] .pull-xl-left {
|
|
95
80
|
float: right !important;
|
|
96
81
|
}
|
|
82
|
+
.pull-lg-right,
|
|
97
83
|
.pull-xl-right {
|
|
98
84
|
float: right !important;
|
|
99
85
|
}
|
|
86
|
+
[dir="rtl"] .pull-lg-right,
|
|
100
87
|
[dir="rtl"] .pull-xl-right {
|
|
101
88
|
float: left !important;
|
|
102
89
|
}
|
|
90
|
+
.pull-lg-none,
|
|
103
91
|
.pull-xl-none {
|
|
104
92
|
float: none !important;
|
|
105
93
|
}
|
package/dist/css/wells.css
CHANGED
|
@@ -43,21 +43,7 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
@media only screen and (min-width: 1160px) {
|
|
46
|
-
.well-lg
|
|
47
|
-
min-height: 24px;
|
|
48
|
-
min-height: var(--size-24);
|
|
49
|
-
margin-bottom: 24px;
|
|
50
|
-
margin-bottom: var(--size-24);
|
|
51
|
-
border-radius: 10px;
|
|
52
|
-
border-radius: var(--radius-small);
|
|
53
|
-
border: solid 1px rgba(0,0,0,0.10196);
|
|
54
|
-
border: solid 1px var(--color-border-neutral);
|
|
55
|
-
padding: 24px;
|
|
56
|
-
padding: var(--size-24);
|
|
57
|
-
box-shadow: none;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
@media only screen and (min-width: 1160px) {
|
|
46
|
+
.well-lg,
|
|
61
47
|
.well-xl {
|
|
62
48
|
min-height: 24px;
|
|
63
49
|
min-height: var(--size-24);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly, this file was auto-generated.
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Wed, 06 May 2026 17:52:54 GMT
|
|
4
4
|
|
|
5
5
|
@color-dark-content-primary: #e2e6e8;
|
|
6
6
|
@color-dark-content-secondary: #c9cbce;
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
@font-family-display: 'Wise Sans', 'Inter', sans-serif;
|
|
223
223
|
|
|
224
224
|
// Do not edit directly, this file was auto-generated.
|
|
225
|
-
// Generated on
|
|
225
|
+
// Generated on Wed, 06 May 2026 17:52:53 GMT
|
|
226
226
|
|
|
227
227
|
@color-base-blue-light: #00b9ff;
|
|
228
228
|
@color-base-blue-mid: #00a2dd;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly, this file was auto-generated.
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Wed, 06 May 2026 17:52:53 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
@custom-media --screen-400-zoom (width
|
|
6
|
+
@custom-media --screen-400-zoom (width < 320px);
|
|
7
7
|
|
|
8
8
|
@custom-media --screen-xs (width >= 320px);
|
|
9
9
|
@custom-media --screen-xs-max (width < 600px);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@transferwise/neptune-css",
|
|
3
3
|
"description": "Neptune CSS library",
|
|
4
|
-
"version": "0.0.0-experimental-
|
|
4
|
+
"version": "0.0.0-experimental-a4bad0f",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"scripts"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@transferwise/neptune-tokens": "0.0.0-experimental-
|
|
26
|
+
"@transferwise/neptune-tokens": "0.0.0-experimental-ab634d7"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"gulp": "^5.0.1",
|
|
30
30
|
"modern-normalize": "^3.0.1",
|
|
31
|
-
"@
|
|
32
|
-
"@
|
|
31
|
+
"@wise/wds-configs": "0.0.0",
|
|
32
|
+
"@transferwise/less-config": "3.1.2"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public",
|
|
@@ -87,39 +87,28 @@
|
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
.visible-lg,
|
|
90
|
-
.visible-lg-block
|
|
91
|
-
|
|
92
|
-
display: block !important;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.visible-lg-inline {
|
|
97
|
-
@media (--screen-lg) and (--screen-lg-max) {
|
|
98
|
-
display: inline !important;
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.visible-lg-inline-block {
|
|
103
|
-
@media (--screen-lg) and (--screen-lg-max) {
|
|
104
|
-
display: inline-block !important;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
90
|
+
.visible-lg-block,
|
|
91
|
+
/// @deprecated
|
|
108
92
|
.visible-xl,
|
|
93
|
+
/// @deprecated
|
|
109
94
|
.visible-xl-block {
|
|
110
|
-
@media (--screen-
|
|
95
|
+
@media (--screen-lg) {
|
|
111
96
|
display: block !important;
|
|
112
97
|
}
|
|
113
98
|
}
|
|
114
99
|
|
|
100
|
+
.visible-lg-inline,
|
|
101
|
+
/// @deprecated
|
|
115
102
|
.visible-xl-inline {
|
|
116
|
-
@media (--screen-
|
|
103
|
+
@media (--screen-lg) {
|
|
117
104
|
display: inline !important;
|
|
118
105
|
}
|
|
119
106
|
}
|
|
120
107
|
|
|
121
|
-
.visible-
|
|
122
|
-
|
|
108
|
+
.visible-lg-inline-block,
|
|
109
|
+
/// @deprecated
|
|
110
|
+
.visible-xl-inline-block{
|
|
111
|
+
@media (--screen-lg) {
|
|
123
112
|
display: inline-block !important;
|
|
124
113
|
}
|
|
125
114
|
}
|
|
@@ -142,14 +131,11 @@
|
|
|
142
131
|
}
|
|
143
132
|
}
|
|
144
133
|
|
|
145
|
-
.hidden-lg {
|
|
146
|
-
@media (--screen-lg) and (--screen-lg-max) {
|
|
147
|
-
display: none !important;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
134
|
|
|
135
|
+
.hidden-lg,
|
|
136
|
+
/// @deprecated
|
|
151
137
|
.hidden-xl {
|
|
152
|
-
@media (--screen-
|
|
138
|
+
@media (--screen-lg) {
|
|
153
139
|
display: none !important;
|
|
154
140
|
}
|
|
155
141
|
}
|
|
@@ -73,44 +73,32 @@
|
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
@media (--screen-lg) {
|
|
76
|
-
.text-lg-left
|
|
77
|
-
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.text-lg-right {
|
|
81
|
-
.text-align(right);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.text-lg-center {
|
|
85
|
-
text-align: center;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.text-lg-justify {
|
|
89
|
-
text-align: justify;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.text-lg-nowrap {
|
|
93
|
-
white-space: nowrap;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
@media (--screen-xl) {
|
|
76
|
+
.text-lg-left,
|
|
77
|
+
/// @deprecated
|
|
98
78
|
.text-xl-left {
|
|
99
79
|
.text-align(left);
|
|
100
80
|
}
|
|
101
81
|
|
|
82
|
+
.text-lg-right,
|
|
83
|
+
/// @deprecated
|
|
102
84
|
.text-xl-right {
|
|
103
85
|
.text-align(right);
|
|
104
86
|
}
|
|
105
87
|
|
|
88
|
+
.text-lg-center,
|
|
89
|
+
/// @deprecated
|
|
106
90
|
.text-xl-center {
|
|
107
91
|
text-align: center;
|
|
108
92
|
}
|
|
109
93
|
|
|
94
|
+
.text-lg-justify,
|
|
95
|
+
/// @deprecated
|
|
110
96
|
.text-xl-justify {
|
|
111
97
|
text-align: justify;
|
|
112
98
|
}
|
|
113
99
|
|
|
100
|
+
.text-lg-nowrap,
|
|
101
|
+
/// @deprecated
|
|
114
102
|
.text-xl-nowrap {
|
|
115
103
|
white-space: nowrap;
|
|
116
104
|
}
|
package/src/less/flex.less
CHANGED
package/src/less/popovers.less
CHANGED
|
@@ -335,13 +335,13 @@
|
|
|
335
335
|
text-align: center;
|
|
336
336
|
padding: var(--size-24);
|
|
337
337
|
|
|
338
|
-
@media (
|
|
338
|
+
@media (--screen-xs-max) {
|
|
339
339
|
width: auto !important;
|
|
340
340
|
padding: var(--size-24) !important;
|
|
341
341
|
margin: var(--size-16) !important;
|
|
342
342
|
}
|
|
343
343
|
|
|
344
|
-
@media (min-width: (@screen-sm-min - 10px)) and (
|
|
344
|
+
@media (min-width: (@screen-sm-min - 10px)) and (--screen-md-max) {
|
|
345
345
|
width: 540px !important;
|
|
346
346
|
padding: 28px var(--size-32) !important;
|
|
347
347
|
margin: var(--size-32) auto !important;
|
|
@@ -351,18 +351,18 @@
|
|
|
351
351
|
font-size: var(--font-size-16);
|
|
352
352
|
line-height: var(--line-height-title);
|
|
353
353
|
|
|
354
|
-
@media (
|
|
354
|
+
@media (--screen-md) {
|
|
355
355
|
font-size: var(--font-size-20);
|
|
356
356
|
line-height: var(--line-height-title);
|
|
357
357
|
}
|
|
358
358
|
}
|
|
359
359
|
|
|
360
360
|
.popover-image {
|
|
361
|
-
@media (
|
|
361
|
+
@media (--screen-400-zoom) {
|
|
362
362
|
width: 80%;
|
|
363
363
|
}
|
|
364
364
|
|
|
365
|
-
@media (
|
|
365
|
+
@media (--screen-xs) and (--screen-md-max) {
|
|
366
366
|
width: 60%;
|
|
367
367
|
}
|
|
368
368
|
|
|
@@ -372,7 +372,7 @@
|
|
|
372
372
|
}
|
|
373
373
|
}
|
|
374
374
|
|
|
375
|
-
@media (
|
|
375
|
+
@media (--screen-md-max) {
|
|
376
376
|
.popover-promotion {
|
|
377
377
|
position: absolute !important;
|
|
378
378
|
}
|
package/src/less/utilities.less
CHANGED
|
@@ -63,28 +63,20 @@
|
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
@media (--screen-lg) {
|
|
66
|
-
.pull-lg-left
|
|
67
|
-
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.pull-lg-right {
|
|
71
|
-
.float(right) !important;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.pull-lg-none {
|
|
75
|
-
float: none !important;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
@media (--screen-xl) {
|
|
66
|
+
.pull-lg-left,
|
|
67
|
+
/// @deprecated
|
|
80
68
|
.pull-xl-left {
|
|
81
69
|
.float(left) !important;
|
|
82
70
|
}
|
|
83
71
|
|
|
72
|
+
.pull-lg-right,
|
|
73
|
+
/// @deprecated
|
|
84
74
|
.pull-xl-right {
|
|
85
75
|
.float(right) !important;
|
|
86
76
|
}
|
|
87
77
|
|
|
78
|
+
.pull-lg-none,
|
|
79
|
+
/// @deprecated
|
|
88
80
|
.pull-xl-none {
|
|
89
81
|
float: none !important;
|
|
90
82
|
}
|