refactor: docker.manager DockerSettings css vars

This commit is contained in:
Zack Spear
2024-06-26 17:15:09 -07:00
parent 902f8b4349
commit 8d7739a4d4
5 changed files with 26 additions and 52 deletions

View File

@@ -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;
}

View File

@@ -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;
}

View File

@@ -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;
}

View File

@@ -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;
}

View File

@@ -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);
}