mirror of
https://github.com/unraid/webgui.git
synced 2026-01-05 00:59:48 -06:00
refactor: UserEdit page css clean up duplicates
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
span#dropbox {
|
||||
border: 1px solid #606e7f;
|
||||
border-radius: 5px;
|
||||
background: #edeaef;
|
||||
padding: 28px 12px;
|
||||
line-height: 72px;
|
||||
margin-right: 16px;
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
span#dropbox {
|
||||
border: 1px solid #f2f2f2;
|
||||
border-radius: 5px;
|
||||
background: #262626;
|
||||
padding: 28px 12px;
|
||||
line-height: 72px;
|
||||
margin-right: 16px;
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
span#dropbox {
|
||||
border: 1px solid #606e7f;
|
||||
border-radius: 5px;
|
||||
background: #121510;
|
||||
padding: 28px 12px;
|
||||
line-height: 72px;
|
||||
margin-right: 16px;
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
span#dropbox {
|
||||
border: 1px solid #1c1c1c;
|
||||
border-radius: 5px;
|
||||
background: #e8e8e8;
|
||||
padding: 28px 12px;
|
||||
line-height: 72px;
|
||||
margin-right: 16px;
|
||||
}
|
||||
@@ -1,3 +1,20 @@
|
||||
: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;
|
||||
@@ -9,3 +26,12 @@ i#showPass.checked {
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user