feat: add support for series

This commit is contained in:
2025-04-30 21:16:34 +02:00
parent bc5371de71
commit ed3c6d7cc7
11 changed files with 339 additions and 27 deletions

View File

@ -337,6 +337,7 @@ button.improve {
height: 100%;
display: flex;
flex-direction: column;
max-width: 30em;
&:not(.show) {
display: none;
@ -369,4 +370,44 @@ button.improve {
padding: 0.4em;
}
}
}
.sep {
border-bottom: solid black 1px;
}
#series-toolbar {
display: flex;
gap: 0.4em;
padding: 0.4em;
align-items: center;
&:not(.show) {
display: none;
}
button {
background: var(--img);
width: 2.4em;
height: 2.4em;
background-color: transparent;
border: none;
background-size: 80%;
background-position: center;
background-repeat: no-repeat;
cursor: pointer;
border-radius: 0.4em;
&:hover {
background-color: #f1f1f1;
}
&#prev-episode {
--img: url("/static/images/prev.svg");
}
&#next-episode {
--img: url("/static/images/next.svg");
}
}
}