improved search window
This commit is contained in:
parent
9eec853ca9
commit
3f007a3d45
2
main.js
2
main.js
|
@ -1762,7 +1762,7 @@ function applyfileindex()
|
|||
{
|
||||
if (child.nodeName == "DIV")
|
||||
{
|
||||
child.className = "";
|
||||
child.className = "searchitem";
|
||||
if(!child.hidden)
|
||||
{
|
||||
if (i++ == fileindex)
|
||||
|
|
14
style.css
14
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;
|
||||
}
|
Loading…
Reference in New Issue