From 3f007a3d4527b35376da08e2836d39869b1d5e28 Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Wed, 25 Oct 2023 11:12:20 +0200 Subject: [PATCH] improved search window --- main.js | 2 +- style.css | 14 ++++++++++---- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/main.js b/main.js index d09b65b..8d6c1c6 100644 --- a/main.js +++ b/main.js @@ -1762,7 +1762,7 @@ function applyfileindex() { if (child.nodeName == "DIV") { - child.className = ""; + child.className = "searchitem"; if(!child.hidden) { if (i++ == fileindex) diff --git a/style.css b/style.css index faf0992..88126d6 100644 --- a/style.css +++ b/style.css @@ -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; +} \ No newline at end of file