@kupola/kupola 1.6.5 → 1.6.7
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/css/components-ext.css +19 -0
- package/dist/css/components-ext.css +19 -0
- package/dist/kupola.cjs.js +14 -14
- package/dist/kupola.cjs.js.map +1 -1
- package/dist/kupola.esm.js +349 -349
- package/dist/kupola.esm.js.map +1 -1
- package/dist/kupola.umd.js +10 -10
- package/dist/kupola.umd.js.map +1 -1
- package/js/theme.js +4 -2
- package/package.json +1 -1
package/css/components-ext.css
CHANGED
|
@@ -1023,6 +1023,15 @@
|
|
|
1023
1023
|
color: var(--text-default);
|
|
1024
1024
|
}
|
|
1025
1025
|
|
|
1026
|
+
.ds-number-input__btn--decrease {
|
|
1027
|
+
border-right: 1px solid var(--border-neutral-l2);
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
.ds-number-input__btn:disabled {
|
|
1031
|
+
opacity: 0.4;
|
|
1032
|
+
cursor: not-allowed;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1026
1035
|
.ds-number-input__input {
|
|
1027
1036
|
flex: 1;
|
|
1028
1037
|
width: 60px;
|
|
@@ -1051,6 +1060,16 @@
|
|
|
1051
1060
|
appearance: textfield;
|
|
1052
1061
|
}
|
|
1053
1062
|
|
|
1063
|
+
.ds-input input[type="number"]::-webkit-inner-spin-button,
|
|
1064
|
+
.ds-input input[type="number"]::-webkit-outer-spin-button {
|
|
1065
|
+
-webkit-appearance: none;
|
|
1066
|
+
margin: 0;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.ds-input input[type="number"] {
|
|
1070
|
+
-moz-appearance: textfield;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1054
1073
|
/* Countdown */
|
|
1055
1074
|
.ds-countdown {
|
|
1056
1075
|
display: flex;
|
|
@@ -1023,6 +1023,15 @@
|
|
|
1023
1023
|
color: var(--text-default);
|
|
1024
1024
|
}
|
|
1025
1025
|
|
|
1026
|
+
.ds-number-input__btn--decrease {
|
|
1027
|
+
border-right: 1px solid var(--border-neutral-l2);
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
.ds-number-input__btn:disabled {
|
|
1031
|
+
opacity: 0.4;
|
|
1032
|
+
cursor: not-allowed;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1026
1035
|
.ds-number-input__input {
|
|
1027
1036
|
flex: 1;
|
|
1028
1037
|
width: 60px;
|
|
@@ -1051,6 +1060,16 @@
|
|
|
1051
1060
|
appearance: textfield;
|
|
1052
1061
|
}
|
|
1053
1062
|
|
|
1063
|
+
.ds-input input[type="number"]::-webkit-inner-spin-button,
|
|
1064
|
+
.ds-input input[type="number"]::-webkit-outer-spin-button {
|
|
1065
|
+
-webkit-appearance: none;
|
|
1066
|
+
margin: 0;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.ds-input input[type="number"] {
|
|
1070
|
+
-moz-appearance: textfield;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1054
1073
|
/* Countdown */
|
|
1055
1074
|
.ds-countdown {
|
|
1056
1075
|
display: flex;
|