mirror of
https://github.com/unraid/webgui.git
synced 2025-12-31 14:40:36 -06:00
35 lines
640 B
CSS
35 lines
640 B
CSS
:root {
|
|
--syslinux-textarea-menu-border-color: #f2f2f2;
|
|
}
|
|
|
|
.Theme--sidebar:root {
|
|
--syslinux-textarea-menu-border-color: transparent;
|
|
}
|
|
.Theme--white:root {
|
|
--syslinux-textarea-menu-border-color: #1c1b1b;
|
|
}
|
|
|
|
.basic {
|
|
display: block;
|
|
}
|
|
.advanced {
|
|
display: none;
|
|
}
|
|
|
|
.config-item-label-wrapper {
|
|
font-weight: bold;
|
|
padding: .25rem .5rem;
|
|
border: none;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.config-raw,
|
|
.config-item textarea {
|
|
font-family: bitstream;
|
|
margin-bottom: 1rem;
|
|
padding: .5rem 1rem;
|
|
border: 1px solid var(--syslinux-textarea-menu-border-color);
|
|
max-width: 100%;
|
|
resize: vertical;
|
|
}
|