mirror of
https://github.com/unraid/webgui.git
synced 2026-01-06 01:29:54 -06:00
refactor: docker.manager DockerSettings css vars
This commit is contained in:
@@ -1,13 +0,0 @@
|
||||
.fileTree {
|
||||
background: #f2f2f2;
|
||||
width: 300px;
|
||||
max-height: 150px;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
display: none;
|
||||
}
|
||||
span.disabled {
|
||||
color: #b0b0b0;
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
.fileTree {
|
||||
background: #1c1c1c;
|
||||
width: 300px;
|
||||
max-height: 150px;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
display: none;
|
||||
}
|
||||
span.disabled {
|
||||
color: #404040;
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
.fileTree {
|
||||
background: #1c1c1c;
|
||||
width: 300px;
|
||||
max-height: 150px;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
display: none;
|
||||
}
|
||||
span.disabled {
|
||||
color: #404040;
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
.fileTree {
|
||||
background: #f2f2f2;
|
||||
width: 300px;
|
||||
max-height: 150px;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
display: none;
|
||||
}
|
||||
span.disabled {
|
||||
color: #b0b0b0;
|
||||
}
|
||||
@@ -63,3 +63,29 @@ span.gw6 {
|
||||
span.nonexist {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
|
||||
:root {
|
||||
--docker-settings-file-tree-background: var(--black);
|
||||
--docker-settings-span-disabled-color: var(--gray-600);
|
||||
}
|
||||
|
||||
.Theme--azure:root,
|
||||
.Theme--white:root {
|
||||
--docker-settings-file-tree-background: var(--gray-100);
|
||||
--docker-settings-span-disabled-color: var(--gray-300); /* Condensed from: #b0b0b0 */
|
||||
}
|
||||
|
||||
.fileTree {
|
||||
background: var(--docker-settings-file-tree-background);
|
||||
width: 300px;
|
||||
max-height: 150px;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
display: none;
|
||||
}
|
||||
span.disabled {
|
||||
color: var(--docker-settings-span-disabled-color);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user