hover state for filter picker

This commit is contained in:
Sam Lavigne 2023-08-29 16:48:27 -04:00
parent 519ebf67cb
commit 67d3899a36
1 changed files with 17 additions and 7 deletions

View File

@ -49,7 +49,12 @@
<div class="holder"> <div class="holder">
<div class="search"> <div class="search">
<input placeholder="Search Filters" on:keyup={update} bind:value={q} type="text" /><button on:click={() => {reset(); update();}}>X</button> <input placeholder="Search Filters" on:keyup={update} bind:value={q} type="text" /><button
on:click={() => {
reset();
update();
}}>X</button
>
<select on:change={reset} bind:value={select}> <select on:change={reset} bind:value={select}>
<option value="video">Video Filters</option> <option value="video">Video Filters</option>
<option value="audio">Audio Filters</option> <option value="audio">Audio Filters</option>
@ -95,6 +100,11 @@
padding: 10px 0px; padding: 10px 0px;
cursor: pointer; cursor: pointer;
} }
.filter:hover {
background-color: var(--b2);
}
.all-filters { .all-filters {
flex: 1; flex: 1;
overflow: scroll; overflow: scroll;