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")
|
if (child.nodeName == "DIV")
|
||||||
{
|
{
|
||||||
child.className = "";
|
child.className = "searchitem";
|
||||||
if(!child.hidden)
|
if(!child.hidden)
|
||||||
{
|
{
|
||||||
if (i++ == fileindex)
|
if (i++ == fileindex)
|
||||||
|
|
14
style.css
14
style.css
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue