@transferwise/neptune-css 0.0.0-experimental-92f9701 → 0.0.0-experimental-611286b
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/navbar.css +47 -47
- package/dist/css/neptune.css +6 -6
- package/dist/css/progress-bars.css +6 -6
- package/package.json +1 -1
- package/src/less/navbar.less +1336 -1
- package/src/less/progress-bars.less +2 -2
- package/dist/css/navbar-base.css +0 -1385
- package/src/less/navbar-base.less +0 -1338
package/dist/css/navbar.css
CHANGED
|
@@ -890,6 +890,53 @@ html:not([dir="rtl"]) .nav-stacked > li.active > a:focus {
|
|
|
890
890
|
border-top-right-radius: 0;
|
|
891
891
|
border-top-left-radius: 0;
|
|
892
892
|
}
|
|
893
|
+
.close {
|
|
894
|
+
float: right;
|
|
895
|
+
color: #0097c7;
|
|
896
|
+
color: var(--color-content-accent);
|
|
897
|
+
-webkit-text-decoration: none;
|
|
898
|
+
text-decoration: none;
|
|
899
|
+
}
|
|
900
|
+
[dir="rtl"] .close {
|
|
901
|
+
float: left;
|
|
902
|
+
}
|
|
903
|
+
.np-theme-personal .close {
|
|
904
|
+
color: var(--color-interactive-primary);
|
|
905
|
+
}
|
|
906
|
+
.close:hover {
|
|
907
|
+
color: #0084b3;
|
|
908
|
+
color: var(--color-content-accent-hover);
|
|
909
|
+
-webkit-text-decoration: none;
|
|
910
|
+
text-decoration: none;
|
|
911
|
+
cursor: pointer;
|
|
912
|
+
}
|
|
913
|
+
.np-theme-personal .close:hover {
|
|
914
|
+
color: var(--color-interactive-primary-hover);
|
|
915
|
+
}
|
|
916
|
+
.close:focus {
|
|
917
|
+
outline: none;
|
|
918
|
+
}
|
|
919
|
+
.close:focus-visible {
|
|
920
|
+
outline: var(--ring-outline-color) solid var(--ring-outline-width);
|
|
921
|
+
outline-offset: var(--ring-outline-offset);
|
|
922
|
+
}
|
|
923
|
+
.close:active {
|
|
924
|
+
color: #0077a5;
|
|
925
|
+
color: var(--color-content-accent-active);
|
|
926
|
+
}
|
|
927
|
+
button.close {
|
|
928
|
+
padding: 0;
|
|
929
|
+
cursor: pointer;
|
|
930
|
+
background: transparent;
|
|
931
|
+
border: 0;
|
|
932
|
+
-webkit-appearance: none;
|
|
933
|
+
-moz-appearance: none;
|
|
934
|
+
appearance: none;
|
|
935
|
+
}
|
|
936
|
+
.np-theme-personal button.close:hover {
|
|
937
|
+
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
938
|
+
background: initial;
|
|
939
|
+
}
|
|
893
940
|
.navbar {
|
|
894
941
|
position: relative;
|
|
895
942
|
font-size: 0.875rem;
|
|
@@ -2256,53 +2303,6 @@ html:not([dir="rtl"]) .nav-stacked > li.active > a:focus {
|
|
|
2256
2303
|
}
|
|
2257
2304
|
}
|
|
2258
2305
|
/* stylelint-enable */
|
|
2259
|
-
.close {
|
|
2260
|
-
float: right;
|
|
2261
|
-
color: #0097c7;
|
|
2262
|
-
color: var(--color-content-accent);
|
|
2263
|
-
-webkit-text-decoration: none;
|
|
2264
|
-
text-decoration: none;
|
|
2265
|
-
}
|
|
2266
|
-
[dir="rtl"] .close {
|
|
2267
|
-
float: left;
|
|
2268
|
-
}
|
|
2269
|
-
.np-theme-personal .close {
|
|
2270
|
-
color: var(--color-interactive-primary);
|
|
2271
|
-
}
|
|
2272
|
-
.close:hover {
|
|
2273
|
-
color: #0084b3;
|
|
2274
|
-
color: var(--color-content-accent-hover);
|
|
2275
|
-
-webkit-text-decoration: none;
|
|
2276
|
-
text-decoration: none;
|
|
2277
|
-
cursor: pointer;
|
|
2278
|
-
}
|
|
2279
|
-
.np-theme-personal .close:hover {
|
|
2280
|
-
color: var(--color-interactive-primary-hover);
|
|
2281
|
-
}
|
|
2282
|
-
.close:focus {
|
|
2283
|
-
outline: none;
|
|
2284
|
-
}
|
|
2285
|
-
.close:focus-visible {
|
|
2286
|
-
outline: var(--ring-outline-color) solid var(--ring-outline-width);
|
|
2287
|
-
outline-offset: var(--ring-outline-offset);
|
|
2288
|
-
}
|
|
2289
|
-
.close:active {
|
|
2290
|
-
color: #0077a5;
|
|
2291
|
-
color: var(--color-content-accent-active);
|
|
2292
|
-
}
|
|
2293
|
-
button.close {
|
|
2294
|
-
padding: 0;
|
|
2295
|
-
cursor: pointer;
|
|
2296
|
-
background: transparent;
|
|
2297
|
-
border: 0;
|
|
2298
|
-
-webkit-appearance: none;
|
|
2299
|
-
-moz-appearance: none;
|
|
2300
|
-
appearance: none;
|
|
2301
|
-
}
|
|
2302
|
-
.np-theme-personal button.close:hover {
|
|
2303
|
-
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
2304
|
-
background: initial;
|
|
2305
|
-
}
|
|
2306
2306
|
@media (min-width: 576px) {
|
|
2307
2307
|
.form-inline .form-group {
|
|
2308
2308
|
display: inline-block;
|
package/dist/css/neptune.css
CHANGED
|
@@ -22346,20 +22346,20 @@ button.popover-close {
|
|
|
22346
22346
|
}
|
|
22347
22347
|
|
|
22348
22348
|
.progress {
|
|
22349
|
-
--progress-bar-height:
|
|
22349
|
+
--progress-bar-height: 8px;
|
|
22350
22350
|
--progress-bar-border-width: 4px;
|
|
22351
22351
|
--progress-bar-start-shift: calc(var(--progress-bar-border-width) * 2);
|
|
22352
|
-
height:
|
|
22352
|
+
height: 8px;
|
|
22353
22353
|
height: var(--progress-bar-height);
|
|
22354
22354
|
overflow: hidden;
|
|
22355
|
-
margin-top: calc((24px -
|
|
22355
|
+
margin-top: calc((24px - 8px) / 2);
|
|
22356
22356
|
margin-top: calc((var(--size-24) - var(--progress-bar-height)) / 2);
|
|
22357
|
-
margin-bottom: calc((24px -
|
|
22357
|
+
margin-bottom: calc((24px - 8px) / 2);
|
|
22358
22358
|
margin-bottom: calc((var(--size-24) - var(--progress-bar-height)) / 2);
|
|
22359
22359
|
background-color: #c9cbce;
|
|
22360
22360
|
background-color: var(--color-interactive-secondary);
|
|
22361
|
-
border-radius:
|
|
22362
|
-
border-radius:
|
|
22361
|
+
border-radius: 8px;
|
|
22362
|
+
border-radius: var(--progress-bar-height);
|
|
22363
22363
|
}
|
|
22364
22364
|
|
|
22365
22365
|
.progress-bar {
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
.progress {
|
|
2
|
-
--progress-bar-height:
|
|
2
|
+
--progress-bar-height: 8px;
|
|
3
3
|
--progress-bar-border-width: 4px;
|
|
4
4
|
--progress-bar-start-shift: calc(var(--progress-bar-border-width) * 2);
|
|
5
|
-
height:
|
|
5
|
+
height: 8px;
|
|
6
6
|
height: var(--progress-bar-height);
|
|
7
7
|
overflow: hidden;
|
|
8
|
-
margin-top: calc((24px -
|
|
8
|
+
margin-top: calc((24px - 8px) / 2);
|
|
9
9
|
margin-top: calc((var(--size-24) - var(--progress-bar-height)) / 2);
|
|
10
|
-
margin-bottom: calc((24px -
|
|
10
|
+
margin-bottom: calc((24px - 8px) / 2);
|
|
11
11
|
margin-bottom: calc((var(--size-24) - var(--progress-bar-height)) / 2);
|
|
12
12
|
background-color: #c9cbce;
|
|
13
13
|
background-color: var(--color-interactive-secondary);
|
|
14
|
-
border-radius:
|
|
15
|
-
border-radius:
|
|
14
|
+
border-radius: 8px;
|
|
15
|
+
border-radius: var(--progress-bar-height);
|
|
16
16
|
}
|
|
17
17
|
.progress-bar {
|
|
18
18
|
float: left;
|