mirror of
https://github.com/unraid/webgui.git
synced 2026-01-03 16:14:54 -06:00
38 lines
801 B
CSS
38 lines
801 B
CSS
:root {
|
|
--useradd-dropbox-border-color: #f2f2f2;
|
|
--useradd-dropbox-bg-color: #262626;
|
|
}
|
|
.Theme--azure:root {
|
|
--useradd-dropbox-border-color: #606e7f;
|
|
--useradd-dropbox-bg-color: #edeaef;
|
|
}
|
|
.Theme--gray:root {
|
|
--useradd-dropbox-border-color: #606e7f;
|
|
--useradd-dropbox-bg-color: #121510;
|
|
}
|
|
.Theme--white:root {
|
|
--useradd-dropbox-border-color: #1c1c1c;
|
|
--useradd-dropbox-bg-color: #e8e8e8;
|
|
}
|
|
|
|
i.top {
|
|
position: absolute;
|
|
padding-top: 4px;
|
|
cursor: pointer;
|
|
}
|
|
i#showPass.checked {
|
|
opacity: 0.5;
|
|
}
|
|
table.unraid {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
span#dropbox {
|
|
border: 1px solid var(--useradd-dropbox-border-color);
|
|
border-radius: 5px;
|
|
background: var(--useradd-dropbox-bg-color);
|
|
padding: 28px 12px;
|
|
line-height: 72px;
|
|
margin-right: 16px;
|
|
}
|