datajunction-ui 0.0.148 → 0.0.150
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/package.json
CHANGED
|
@@ -223,6 +223,25 @@
|
|
|
223
223
|
margin-bottom: 16px !important;
|
|
224
224
|
}
|
|
225
225
|
|
|
226
|
+
.cube-builder div.DisplayNameInput.NodeCreationInput {
|
|
227
|
+
padding: 8px 0 !important;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.cube-builder .DisplayNameInput > input[type='text'],
|
|
231
|
+
.cube-builder .FullNameInput > input[type='text'] {
|
|
232
|
+
height: 36px !important;
|
|
233
|
+
padding: 8px 12px !important;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.cube-builder div.DescriptionInput.NodeCreationInput {
|
|
237
|
+
padding: 12px 0 !important;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.cube-builder .DescriptionInput textarea {
|
|
241
|
+
min-height: 80px !important;
|
|
242
|
+
max-height: 200px !important;
|
|
243
|
+
}
|
|
244
|
+
|
|
226
245
|
.cube-builder .NodeCreationInput label,
|
|
227
246
|
.cube-builder .CubeCreationInput label,
|
|
228
247
|
.cube-builder .NamespaceInput label,
|
|
@@ -487,3 +506,12 @@
|
|
|
487
506
|
.cube-builder div[class*='Input'] [data-value] {
|
|
488
507
|
height: 20px !important;
|
|
489
508
|
}
|
|
509
|
+
|
|
510
|
+
/* Restore natural height for react-select controls inside form field wrappers
|
|
511
|
+
(NamespaceInput, FullNameInput) — those are whole-control containers, not
|
|
512
|
+
react-select's internal Input div, so the 20px squeeze must not apply. */
|
|
513
|
+
.cube-builder .NamespaceInput > div,
|
|
514
|
+
.cube-builder .FullNameInput > div {
|
|
515
|
+
height: auto !important;
|
|
516
|
+
min-height: 36px !important;
|
|
517
|
+
}
|