Add ability to remove search filters from UI

This commit is contained in:
syeopite 2021-04-10 01:16:40 -07:00
parent 3a52a1cf4d
commit 9e2438c7dc
No known key found for this signature in database
GPG key ID: 6FA616E5A5294A82
2 changed files with 124 additions and 73 deletions

View file

@ -21,3 +21,29 @@
content: "[ - ]";
font-size: 1.5em;
}
.remove-filter {
margin-left: 6px;
vertical-align: middle;
}
/* No theme */
.no-theme .remove-filter {
color: #ffffff
}
/* Light theme */
@media (prefers-color-scheme: light) {
.light-theme .remove-filter {
color: #ffffff
}
}
/* Dark theme */
.no-theme .remove-filter {
color: #030303
}