@transferwise/neptune-css 14.19.1 → 14.20.0
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/package.json +1 -1
- package/src/less/navbar.less +1336 -1
- 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;
|