fix: comment out .fileTree styles across multiple CSS files to streamline layout and prevent conflicts

This commit is contained in:
Zack Spear
2025-04-03 14:43:48 -07:00
parent c2738a1786
commit 9289df5e68
11 changed files with 29 additions and 55 deletions

View File

@@ -66,12 +66,7 @@ div#configLocation dt {
--add-container-file-tree-background: var(--gray-100);
}
.fileTree {
/* .fileTree {
width: 240px;
max-height: 200px;
overflow-y: scroll;
overflow-x: hidden;
position: absolute;
display: none;
background: var(--add-container-file-tree-background);
}
} */

View File

@@ -75,16 +75,10 @@ span.nonexist {
margin-left: 20px;
}
.fileTree {
background: var(--docker-settings-file-tree-background);
/* .fileTree {
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);
}

View File

@@ -66,12 +66,7 @@ div#configLocation dt {
margin-top: -0.18rem !important;
}
.fileTree {
/* .fileTree {
width: 240px;
max-height: 200px;
overflow-y: scroll;
overflow-x: hidden;
position: absolute;
display: none;
background: var(--update-container-file-tree-background);
}
} */

View File

@@ -305,3 +305,7 @@ input.second {
.CodeMirror pre.CodeMirror-placeholder {
color: var(--gray-400);
}
.fileTree {
position: relative;
}

View File

@@ -128,13 +128,7 @@ span.vmgraphics {
text-align: left;
}
.fileTree {
background: var(--vm-machines-file-tree-background);
/* .fileTree {
width: 500px;
max-height: 320px;
overflow-y: scroll;
overflow-x: hidden;
position: absolute;
z-index: 100;
display: none;
}
} */

View File

@@ -57,13 +57,7 @@ body {
font-family: clear-sans;
}
.fileTree {
background: var(--vm-machines-file-tree-background);
/* .fileTree {
width: 300px;
max-height: 150px;
overflow-y: scroll;
overflow-x: hidden;
position: absolute;
z-index: 100;
display: none;
}
} */

View File

@@ -41,13 +41,7 @@ input#upload {
display: none;
}
.fileTree {
background: var(--filetree-background);
/* .fileTree {
width: 300px;
max-height: 150px;
overflow-y: scroll;
overflow-x: hidden;
position: absolute;
z-index: 100;
display: none;
}
} */

View File

@@ -200,16 +200,10 @@ input#dfm_target {
color: var(--input-dfm-target-text-color);
width: 500px;
}
input#dfm_target + .fileTree {
background: var(--input-dfm-target-filetree-bg-color);
/* .fileTree {
width: 500px;
max-height: 320px;
overflow-y: scroll;
overflow-x: hidden;
position: absolute;
z-index: 100;
display: none;
}
} */
i.dfm_filter {
margin-top: -2px;
}

View File

@@ -1450,6 +1450,13 @@ div.icon-zip {
border-left: 3px solid var(--dynamix-tooltipster-sidetip-box-border-color);
}
.fileTree {
display: none;
width: 300px;
max-height: 300px;
position: absolute;
z-index: 100;
overflow-y: scroll;
overflow-x: hidden;
background-color: var(--dynamix-filetree-bg-color);
}
#guiSearchBox:placeholder-shown {

View File

@@ -72,5 +72,6 @@
--focus-input-bg-color: var(--mild-background-color);
/* /End vars used in default-base */
/* dynamix CSS var values set in base-dynamix.css */
/* dynamix CSS var values set in default-dynamix.css */
--dynamix-filetree-bg-color: var(--gray-900);
}

View File

@@ -84,6 +84,8 @@
/* /End vars used in default-base */
/* Set vars for default-dynamix */
--dynamix-filetree-bg-color: var(--gray-900);
--dynamix-ui-dropdownchecklist-color: var(--theme-gray--cyan-300);
--dynamix-ui-dropdownchecklist-color-alt1: var(--gray-900);
--dynamix-ui-dropdownchecklist-dropcontainer-border-color: var(--blue-700);