mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 15:10:19 -06:00
- Introduced a new flex utility class `.buttons-no-margin` in default-base.css to manage button spacing effectively. - Updated CreateDocker.php to wrap checkbox inputs in flex containers for improved alignment and spacing. - Adjusted AddContainer.css to refine the max-width of span elements and commented out unused styles for better maintainability. - This change continues the effort to enhance visual consistency across the plugin.
71 lines
1.1 KiB
CSS
71 lines
1.1 KiB
CSS
.noshow,
|
|
.advanced {
|
|
display: none;
|
|
}
|
|
.required:after {
|
|
content: " *";
|
|
color: var(--red-800);
|
|
}
|
|
span.boxed {
|
|
display: inline-block;
|
|
max-width: 100ch;
|
|
}
|
|
span.cpu,
|
|
label.checkbox {
|
|
display: inline-block;
|
|
width: 32px;
|
|
}
|
|
span.ct {
|
|
display: inline-block;
|
|
width: 230px;
|
|
}
|
|
span.net {
|
|
display: inline-block;
|
|
width: 120px;
|
|
}
|
|
span.ip {
|
|
display: inline-block;
|
|
width: 160px;
|
|
}
|
|
/* dl,
|
|
dt,
|
|
dd {
|
|
line-height: normal !important;
|
|
height: auto !important;
|
|
}
|
|
dl {
|
|
padding: 8px 0 !important;
|
|
}
|
|
dl > dt:nth-of-type(2),
|
|
dl > dd:nth-of-type(2) {
|
|
padding: 20px 0 0 0 !important;
|
|
} */
|
|
/* input.setting_input {
|
|
margin-right: 4rem;
|
|
} */
|
|
/* input,
|
|
select {
|
|
margin-top: -0.8rem !important;
|
|
} */
|
|
/* div#configLocation,
|
|
div#configLocation dl {
|
|
padding: 0 !important;
|
|
}
|
|
div#configLocation dt {
|
|
margin-top: -0.18rem !important;
|
|
} */
|
|
|
|
:root {
|
|
--add-container-file-tree-background: var(--black);
|
|
}
|
|
|
|
.Theme--azure:root,
|
|
.Theme--white:root {
|
|
--add-container-file-tree-background: var(--gray-100);
|
|
}
|
|
|
|
/* .fileTree {
|
|
width: 240px;
|
|
max-height: 200px;
|
|
} */
|