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")
{
child.className = "";
child.className = "searchitem";
if(!child.hidden)
{
if (i++ == fileindex)

View File

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