improved search window

This commit is contained in:
quenousimporte 2023-10-25 11:12:20 +02:00
parent 9eec853ca9
commit 3f007a3d45
2 changed files with 11 additions and 5 deletions

View File

@ -1762,7 +1762,7 @@ function applyfileindex()
{ {
if (child.nodeName == "DIV") if (child.nodeName == "DIV")
{ {
child.className = ""; child.className = "searchitem";
if(!child.hidden) if(!child.hidden)
{ {
if (i++ == fileindex) if (i++ == fileindex)

View File

@ -103,10 +103,6 @@ body::-webkit-scrollbar-thumb {
/* search file dialog */ /* search file dialog */
.selected {
background-color: darkgray;
}
#filter { #filter {
width: 100%; width: 100%;
} }
@ -121,6 +117,7 @@ body::-webkit-scrollbar-thumb {
min-width: 500px; min-width: 500px;
color: black; color: black;
z-index: 2; z-index: 2;
font-family: "Segoe UI";
} }
/* authent */ /* authent */
@ -129,3 +126,12 @@ body::-webkit-scrollbar-thumb {
font-size: 50px; font-size: 50px;
line-height: 100%; line-height: 100%;
} }
.searchitem {
cursor: pointer;
}
.selected {
background-color: darkgrey;
cursor: pointer;
}