seeder-st2110-components 1.6.0 → 1.6.1
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/index.css +1 -1
- package/dist/index.esm.js +323 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +382 -64
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/styles/index.less +24 -0
package/package.json
CHANGED
package/src/styles/index.less
CHANGED
|
@@ -271,4 +271,28 @@
|
|
|
271
271
|
|
|
272
272
|
.hidden {
|
|
273
273
|
display: none;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.draggable-number-input {
|
|
277
|
+
box-sizing: border-box;
|
|
278
|
+
margin: 0;
|
|
279
|
+
padding: 4px 11px;
|
|
280
|
+
color: rgba(255, 255, 255, 0.85);
|
|
281
|
+
font-size: 14px;
|
|
282
|
+
line-height: 1.5714285714285714;
|
|
283
|
+
list-style: none;
|
|
284
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
285
|
+
position: relative;
|
|
286
|
+
display: inline-block;
|
|
287
|
+
width: 100%;
|
|
288
|
+
min-width: 0;
|
|
289
|
+
border-radius: 3px;
|
|
290
|
+
transition: all 0.2s;
|
|
291
|
+
background: #141414;
|
|
292
|
+
border-width: 1px;
|
|
293
|
+
border-style: solid;
|
|
294
|
+
border-color: #424242;
|
|
295
|
+
&:focus-visible {
|
|
296
|
+
outline: none !important;
|
|
297
|
+
}
|
|
274
298
|
}
|