v0.4.15: Improve Ohli24 list date display and mobile search UI

This commit is contained in:
2026-01-02 22:54:15 +09:00
parent 44f8ee54d0
commit 80b07e8d28
3 changed files with 74 additions and 3 deletions

View File

@@ -186,6 +186,40 @@ ul.nav.nav-pills .nav-link.active {
.status-completed { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.status-wait { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
/* Date Info Styling */
.date-info {
display: flex;
flex-direction: column;
gap: 4px;
margin-bottom: 12px;
}
.date-tag {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 11px;
padding: 3px 10px;
border-radius: 6px;
white-space: nowrap;
width: fit-content;
}
.date-tag i { font-size: 12px; }
.date-tag span { font-weight: 500; }
.date-tag-req {
background: rgba(148, 163, 184, 0.1);
color: #94a3b8;
border: 1px solid rgba(148, 163, 184, 0.2);
}
.date-tag-done {
background: rgba(52, 211, 153, 0.1);
color: #34d399;
border: 1px solid rgba(52, 211, 153, 0.2);
}
/* Desktop Adaptations - Scoped to List Page */
@media (min-width: 768px) {
.ohli24-list-page .episode-card { margin-bottom: 10px; }
@@ -272,4 +306,36 @@ ul.nav.nav-pills .nav-link.active {
.ohli24-queue-page .progress-wrapper { width: 100%; }
.ohli24-queue-page .queue-item { flex-direction: column; align-items: stretch; }
.ohli24-queue-page ul.nav.nav-pills.bg-light { margin-top: 40px !important; }
/* Search Container Mobile Refinements */
.ohli24-list-page .search-container {
padding: 8px;
gap: 6px;
}
.ohli24-list-page .search-group-left {
display: flex;
gap: 4px;
flex: 1;
}
.ohli24-list-page .search-group-right {
display: flex;
gap: 4px;
width: 100%;
}
.ohli24-list-page .custom-select {
height: 32px !important;
font-size: 12px !important;
padding: 0 4px !important;
flex: 1;
}
.ohli24-list-page .custom-input {
height: 32px !important;
font-size: 13px !important;
flex: 1;
}
.ohli24-list-page .custom-btn {
height: 32px !important;
padding: 0 10px !important;
font-size: 13px !important;
}
}