implement tag and genre search closes #1

This commit is contained in:
2025-05-04 16:59:33 +02:00
parent 01b3246533
commit ae7a3a1fad
3 changed files with 216 additions and 62 deletions

View File

@@ -119,4 +119,38 @@ body.nsfw-disabled .image-container.nsfw:hover img {
padding: 5px;
border: 1px solid #ccc;
border-radius: 4px;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content .dropdown-item {
padding: 8px 16px;
cursor: pointer;
}
.dropdown-content .dropdown-item:hover {
background-color: #f1f1f1;
}
.dropdown-content.show {
display: block;
}
.reset {
/* Implement design here */
}
.info {
/* Implement design here */
}
.request {
/* Implement design here */
}