refactor: docker.vm.manager VMSettings css vars

This commit is contained in:
Zack Spear
2024-06-26 18:08:58 -07:00
parent 30515ea714
commit 3e9ff06396
5 changed files with 20 additions and 40 deletions

View File

@@ -1,10 +0,0 @@
.fileTree {
background: #f2f2f2;
width: 300px;
max-height: 150px;
overflow-y: scroll;
overflow-x: hidden;
position: absolute;
z-index: 100;
display: none;
}

View File

@@ -1,10 +0,0 @@
.fileTree {
background: #1c1c1c;
width: 300px;
max-height: 150px;
overflow-y: scroll;
overflow-x: hidden;
position: absolute;
z-index: 100;
display: none;
}

View File

@@ -1,10 +0,0 @@
.fileTree {
background: #1c1c1c;
width: 300px;
max-height: 150px;
overflow-y: scroll;
overflow-x: hidden;
position: absolute;
z-index: 100;
display: none;
}

View File

@@ -1,10 +0,0 @@
.fileTree {
background: #f2f2f2;
width: 300px;
max-height: 150px;
overflow-y: scroll;
overflow-x: hidden;
position: absolute;
z-index: 100;
display: none;
}

View File

@@ -1,3 +1,12 @@
:root {
--add-container-file-tree-background: var(--black);
}
.Theme--azure:root,
.Theme--white:root {
--add-container-file-tree-background: var(--gray-100);
}
body {
-webkit-overflow-scrolling: touch;
}
@@ -47,3 +56,14 @@ body {
#remove_button span {
font-family: clear-sans;
}
.fileTree {
background: var(--add-container-file-tree-background);
width: 300px;
max-height: 150px;
overflow-y: scroll;
overflow-x: hidden;
position: absolute;
z-index: 100;
display: none;
}