changed: search list style

This commit is contained in:
quenousimporte 2023-10-25 14:03:51 +02:00
parent 24393a4237
commit 0da553c818
1 changed files with 7 additions and 4 deletions

View File

@ -104,18 +104,19 @@ body::-webkit-scrollbar-thumb {
/* search file dialog */ /* search file dialog */
#filter { #filter {
width: 100%; color: white;
background-color: black;
} }
#searchdialog { #searchdialog {
color: white;
background-color: black;
position: absolute; position: absolute;
top: 0; top: 0;
left: 10%; left: 10%;
background-color: lightgray;
opacity: 1; opacity: 1;
width: 80%; width: 80%;
min-width: 500px; min-width: 500px;
color: black;
z-index: 2; z-index: 2;
font-family: "Segoe UI"; font-family: "Segoe UI";
} }
@ -129,9 +130,11 @@ body::-webkit-scrollbar-thumb {
.searchitem { .searchitem {
cursor: pointer; cursor: pointer;
margin: 5px 5px 5px 5px;
} }
.selected { .selected {
background-color: darkgrey; background-color: rgb(38, 38, 38);
cursor: pointer; cursor: pointer;
margin: 5px 5px 5px 5px;
} }