@transferwise/neptune-css 14.0.17 → 14.0.18
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/CHANGELOG.md +8 -0
- package/dist/css/buttons.css +1 -1
- package/dist/css/neptune.css +1 -1
- package/package.json +2 -2
- package/src/less/buttons.less +18 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@transferwise/neptune-css",
|
|
3
3
|
"description": "Neptune CSS library",
|
|
4
|
-
"version": "14.0.
|
|
4
|
+
"version": "14.0.18",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"bin": {
|
|
54
54
|
"neptune-css-upgrade-util": "scripts/neptune-css-upgrader.js"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "f3c5ada883bb758f1a47e6dbd316bd9e37c6b2ab"
|
|
57
57
|
}
|
package/src/less/buttons.less
CHANGED
|
@@ -632,6 +632,24 @@ input[type="button"] {
|
|
|
632
632
|
animation: rotating 0.4s linear infinite;
|
|
633
633
|
}
|
|
634
634
|
|
|
635
|
+
.np-theme-personal {
|
|
636
|
+
.btn-loading {
|
|
637
|
+
&:not(.btn-block) {
|
|
638
|
+
display: inline-flex;
|
|
639
|
+
align-items: center;
|
|
640
|
+
.btn-loader {
|
|
641
|
+
margin-bottom: 0;
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
&.btn-block .btn-loader {
|
|
645
|
+
top: 0;
|
|
646
|
+
bottom: 0;
|
|
647
|
+
margin-top: auto;
|
|
648
|
+
margin-bottom: auto;
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
|
|
635
653
|
.btn-sm {
|
|
636
654
|
.btn-loader {
|
|
637
655
|
background-size: 16px 16px;
|