Add video details view (#956)

* Add Video details page to settings

* Add option A

* Refac remove option A

* Refac viewStyleType and viewStyleEnum

* Add viewStyle Table

* Refac remove unused code

* Refac show resolution in one cell
This commit is contained in:
Merlin
2025-06-05 05:19:16 +02:00
committed by GitHub
parent 436a641746
commit aa08701049
24 changed files with 332 additions and 107 deletions

View File

@@ -133,6 +133,40 @@ button:hover {
color: var(--main-bg);
}
.video-item.table {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.video-item.table table {
min-width: 800px;
width: 100%;
border-collapse: collapse;
position: relative;
}
.video-item.table th,
.video-item.table td {
padding: 8px 12px;
text-align: left;
white-space: nowrap;
}
.video-item.table th {
font-weight: 600;
border-bottom: 1px solid #ddd;
}
.video-item.table td {
border-bottom: 1px solid #eee;
}
.video-item.table td.no-nowrap {
white-space: normal;
word-break: keep-all;
min-width: 100px;
}
.button-box {
padding: 5px 2px;
display: inline-flex;