add multi select, add redownload

This commit is contained in:
Simon
2025-08-13 14:21:33 +07:00
parent 9c5e4b599f
commit 3cf9b5ed40
16 changed files with 485 additions and 182 deletions

View File

@@ -178,6 +178,11 @@ button:disabled:hover {
min-width: 100px;
}
.video-item.table td img {
width: 20px;
height: 20px;
}
.button-box {
padding: 5px 2px;
display: inline-flex;
@@ -423,8 +428,9 @@ button:disabled:hover {
}
.view-controls {
display: grid;
grid-template-columns: 1fr auto auto;
display: flex;
flex-wrap: wrap;
justify-content: end;
border-bottom: 2px solid;
border-color: var(--accent-font-dark);
margin: 15px 0;
@@ -433,6 +439,7 @@ button:disabled:hover {
.view-icons,
.grid-count {
display: flex;
flex-wrap: wrap;
justify-content: end;
align-items: center;
}
@@ -575,6 +582,7 @@ video:-webkit-full-screen {
.video-item {
overflow: hidden;
position: relative;
}
.video-item:hover .video-tags {
@@ -588,6 +596,23 @@ video:-webkit-full-screen {
align-items: center;
}
.video-item-select-wrapper {
background-color: var(--highlight-bg);
z-index: 10;
position: absolute;
padding: 5px;
top: 0px;
left: 0px;
width: 20px;
height: 20px;
}
.video-item-select {
width: 100%;
cursor: pointer;
filter: var(--img-filter);
}
.video-progress-bar,
.notification-progress-bar {
position: absolute;