seeder-st2110-components 1.6.0 → 1.6.2
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 +467 -76
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +525 -133
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/styles/index.less +34 -0
package/package.json
CHANGED
package/src/styles/index.less
CHANGED
|
@@ -72,6 +72,9 @@
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
.preset-management {
|
|
75
|
+
.min-w-0 {
|
|
76
|
+
min-width: 0px;
|
|
77
|
+
}
|
|
75
78
|
.w-full {
|
|
76
79
|
width: 100%;
|
|
77
80
|
}
|
|
@@ -108,6 +111,9 @@
|
|
|
108
111
|
.grid-cols-3 {
|
|
109
112
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
110
113
|
}
|
|
114
|
+
.gap-2 {
|
|
115
|
+
gap: 0.5rem; /* 8px */
|
|
116
|
+
}
|
|
111
117
|
.ant-modal .ant-modal-content {
|
|
112
118
|
padding: 0;
|
|
113
119
|
}
|
|
@@ -271,4 +277,32 @@
|
|
|
271
277
|
|
|
272
278
|
.hidden {
|
|
273
279
|
display: none;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.ant-spin-fullscreen {
|
|
283
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.draggable-number-input {
|
|
287
|
+
box-sizing: border-box;
|
|
288
|
+
margin: 0;
|
|
289
|
+
padding: 4px 11px;
|
|
290
|
+
color: rgba(255, 255, 255, 0.85);
|
|
291
|
+
font-size: 14px;
|
|
292
|
+
line-height: 1.5714285714285714;
|
|
293
|
+
list-style: none;
|
|
294
|
+
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';
|
|
295
|
+
position: relative;
|
|
296
|
+
display: inline-block;
|
|
297
|
+
width: 100%;
|
|
298
|
+
min-width: 0;
|
|
299
|
+
border-radius: 3px;
|
|
300
|
+
transition: all 0.2s;
|
|
301
|
+
background: #141414;
|
|
302
|
+
border-width: 1px;
|
|
303
|
+
border-style: solid;
|
|
304
|
+
border-color: #424242;
|
|
305
|
+
&:focus-visible {
|
|
306
|
+
outline: none !important;
|
|
307
|
+
}
|
|
274
308
|
}
|