mod-arch-kubeflow 1.20.0 → 1.22.0
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/style/MUI-theme.scss +18 -0
- package/package.json +1 -1
|
@@ -566,6 +566,24 @@
|
|
|
566
566
|
z-index: 1;
|
|
567
567
|
}
|
|
568
568
|
|
|
569
|
+
// Position the help icon at the same vertical level as the label.
|
|
570
|
+
// Both share the same containing block (.pf-v6-c-form__group-label), so top: 78%
|
|
571
|
+
// produces the same absolute Y offset as on the label above.
|
|
572
|
+
.mui-theme .pf-v6-c-form__group:has(.form-fieldset-wrapper) .pf-v6-c-form__group-label-help {
|
|
573
|
+
position: relative;
|
|
574
|
+
top: 78%;
|
|
575
|
+
transform: translateY(-50%);
|
|
576
|
+
z-index: 1;
|
|
577
|
+
pointer-events: auto;
|
|
578
|
+
background-color: var(--mui-palette-common-white);
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
// When help icon is present, use a smaller top value to compensate for the taller container.
|
|
582
|
+
.mui-theme .pf-v6-c-form__group:has(.form-fieldset-wrapper):has(.pf-v6-c-form__group-label-help) .pf-v6-c-form__label,
|
|
583
|
+
.mui-theme .pf-v6-c-form__group:has(.form-fieldset-wrapper):has(.pf-v6-c-form__group-label-help) .pf-v6-c-form__group-label-help {
|
|
584
|
+
top: 65%;
|
|
585
|
+
}
|
|
586
|
+
|
|
569
587
|
// Form controls with number inputs - specific styling overrides
|
|
570
588
|
// (NumberInput does not use FormFieldset, so it is unaffected by the floating label rule above)
|
|
571
589
|
.mui-theme .pf-v6-c-form__group:has(.pf-v6-c-number-input) {
|
package/package.json
CHANGED