mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 14:35:41 +00:00
50ac1b8284
Co-authored-by: kilyabin <kilyabin@users.noreply.github.com> Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
6211 lines
120 KiB
CSS
6211 lines
120 KiB
CSS
/* ─── Pages & Components CSS ─── */
|
||
|
||
/* ─ Hero ─ */
|
||
.hero {
|
||
position: relative;
|
||
width: 100%;
|
||
height: 360px;
|
||
overflow: hidden;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.hero-placeholder {
|
||
width: 100%;
|
||
height: 360px;
|
||
background: linear-gradient(135deg, var(--ctp-surface0), var(--ctp-mantle));
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.hero-bg {
|
||
position: absolute;
|
||
inset: 0;
|
||
background-size: cover;
|
||
background-position: center;
|
||
transition: transform 8s ease, opacity 0.8s ease, filter 0.8s ease;
|
||
transform: scale(1.05);
|
||
filter: blur(12px);
|
||
}
|
||
|
||
.hero:hover .hero-bg {
|
||
filter: blur(8px);
|
||
}
|
||
|
||
.hero:hover .hero-bg {
|
||
transform: scale(1);
|
||
}
|
||
|
||
.hero-dots {
|
||
position: absolute;
|
||
bottom: var(--space-4);
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
display: flex;
|
||
gap: 6px;
|
||
z-index: 10;
|
||
}
|
||
|
||
.hero-dot {
|
||
width: 8px;
|
||
height: 8px;
|
||
border-radius: var(--radius-full);
|
||
background: rgba(255, 255, 255, 0.35);
|
||
border: none;
|
||
padding: 0;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.hero-dot:hover:not(.hero-dot-active) {
|
||
background: rgba(255, 255, 255, 0.6);
|
||
}
|
||
|
||
.hero-dot-active {
|
||
width: 24px;
|
||
background: rgba(255, 255, 255, 0.9);
|
||
}
|
||
|
||
.hero-overlay {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: linear-gradient(to right,
|
||
rgba(0, 0, 0, 0.78) 0%,
|
||
rgba(0, 0, 0, 0.45) 50%,
|
||
rgba(0, 0, 0, 0.18) 100%),
|
||
linear-gradient(to top,
|
||
rgba(0, 0, 0, 0.88) 0%,
|
||
transparent 60%);
|
||
}
|
||
|
||
.hero-content {
|
||
position: absolute;
|
||
inset: 0;
|
||
display: flex;
|
||
align-items: flex-end;
|
||
gap: 2rem;
|
||
padding: var(--space-8);
|
||
}
|
||
|
||
.hero-cover {
|
||
width: 220px;
|
||
height: 220px;
|
||
border-radius: var(--radius-md);
|
||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
|
||
object-fit: cover;
|
||
flex-shrink: 0;
|
||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||
}
|
||
|
||
.hero-text {
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: flex-end;
|
||
}
|
||
|
||
.hero-eyebrow {
|
||
font-size: 11px;
|
||
font-weight: 600;
|
||
letter-spacing: 0.12em;
|
||
text-transform: uppercase;
|
||
color: var(--accent);
|
||
margin-bottom: var(--space-2);
|
||
}
|
||
|
||
.hero-title {
|
||
font-family: var(--font-display);
|
||
font-size: clamp(24px, 3vw, 36px);
|
||
font-weight: 700;
|
||
color: #ffffff;
|
||
margin-bottom: var(--space-1);
|
||
line-height: 1.2;
|
||
text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
|
||
max-width: 500px;
|
||
}
|
||
|
||
.hero-artist {
|
||
font-size: 16px;
|
||
color: rgba(255, 255, 255, 0.72);
|
||
margin-bottom: var(--space-3);
|
||
}
|
||
|
||
.hero-meta {
|
||
display: flex;
|
||
gap: var(--space-2);
|
||
margin-bottom: var(--space-4);
|
||
}
|
||
|
||
.hero-play-btn {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: var(--space-2);
|
||
padding: var(--space-3) var(--space-5);
|
||
background: var(--accent);
|
||
color: var(--ctp-crust);
|
||
border-radius: var(--radius-full);
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
transition: all var(--transition-fast);
|
||
width: fit-content;
|
||
}
|
||
|
||
.hero-play-btn:hover {
|
||
background: var(--accent);
|
||
filter: brightness(1.1);
|
||
transform: scale(1.02);
|
||
box-shadow: var(--shadow-glow);
|
||
}
|
||
|
||
/* ─ Page header row (title + actions) ─ */
|
||
.page-header {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: var(--space-4);
|
||
flex-wrap: wrap;
|
||
margin-bottom: var(--space-6);
|
||
}
|
||
|
||
.page-header .page-title {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
/* ─ Section titles ─ */
|
||
.section-title,
|
||
.page-title {
|
||
font-family: var(--font-display);
|
||
font-size: 20px;
|
||
font-weight: 700;
|
||
color: var(--text-primary);
|
||
margin-bottom: var(--space-4);
|
||
}
|
||
|
||
.section-title-link {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
font-family: var(--font-display);
|
||
font-size: 20px;
|
||
font-weight: 700;
|
||
color: var(--text-primary);
|
||
text-decoration: none;
|
||
cursor: pointer;
|
||
transition: color var(--transition-fast);
|
||
}
|
||
|
||
.section-title-link:hover {
|
||
color: var(--accent);
|
||
}
|
||
|
||
.section-title-chevron {
|
||
opacity: 0.45;
|
||
transition: opacity var(--transition-fast), transform var(--transition-fast);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.section-title-link:hover .section-title-chevron {
|
||
opacity: 1;
|
||
transform: translateX(2px);
|
||
}
|
||
|
||
/* ─ Album Card ─ */
|
||
.album-card {
|
||
cursor: pointer;
|
||
background: var(--bg-card);
|
||
border-radius: var(--radius-lg);
|
||
overflow: hidden;
|
||
box-shadow: inset 0 0 0 1px var(--border-subtle);
|
||
transition: transform var(--transition-base), box-shadow var(--transition-base);
|
||
}
|
||
|
||
.album-card:hover {
|
||
transform: translateY(-3px);
|
||
box-shadow: inset 0 0 0 1px var(--border), var(--shadow-md);
|
||
}
|
||
|
||
.album-card-cover {
|
||
position: relative;
|
||
aspect-ratio: 1;
|
||
overflow: hidden;
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.album-card-cover img {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
transition: transform var(--transition-slow);
|
||
}
|
||
|
||
.album-card:hover .album-card-cover img {
|
||
transform: scale(1.04);
|
||
}
|
||
|
||
.album-card-cover-placeholder {
|
||
width: 100%;
|
||
height: 100%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
/* ─ Artist Card (Grid View) ─ */
|
||
.artist-card {
|
||
display: flex;
|
||
flex-direction: column;
|
||
background: var(--bg-card);
|
||
border-radius: var(--radius-lg);
|
||
border: 1px solid var(--border-subtle);
|
||
cursor: pointer;
|
||
overflow: hidden;
|
||
transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
|
||
}
|
||
|
||
.artist-card:hover {
|
||
transform: translateY(-3px);
|
||
box-shadow: var(--shadow-md);
|
||
border-color: var(--border);
|
||
}
|
||
|
||
.artist-card-avatar {
|
||
position: relative;
|
||
aspect-ratio: 1;
|
||
overflow: hidden;
|
||
background: var(--bg-hover);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.artist-card-avatar img {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
transition: transform var(--transition-slow);
|
||
}
|
||
|
||
.artist-card:hover .artist-card-avatar img {
|
||
transform: scale(1.04);
|
||
}
|
||
|
||
.artist-card-avatar-initial {
|
||
aspect-ratio: 1;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
overflow: hidden;
|
||
border-radius: 50% !important;
|
||
border: 2px solid;
|
||
width: calc(100% - 2 * var(--space-4));
|
||
margin: var(--space-3) auto var(--space-3);
|
||
}
|
||
|
||
.artist-card-avatar-initial span {
|
||
font-size: 3rem;
|
||
font-weight: 800;
|
||
font-family: var(--font-display);
|
||
line-height: 1;
|
||
user-select: none;
|
||
}
|
||
|
||
.artist-card-info {
|
||
padding: var(--space-3) var(--space-3) var(--space-2);
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 2px;
|
||
}
|
||
|
||
.artist-card-name {
|
||
font-weight: 600;
|
||
font-size: 13px;
|
||
color: var(--text-primary);
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.artist-card-meta {
|
||
font-size: 12px;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
/* ─ Album Row Container ─ */
|
||
.album-row-section {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: var(--space-4);
|
||
position: relative;
|
||
}
|
||
|
||
.album-row-header {
|
||
display: flex;
|
||
align-items: flex-end;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.album-row-nav {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-2);
|
||
}
|
||
|
||
.album-row-nav .nav-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 32px;
|
||
height: 32px;
|
||
border-radius: 50%;
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border-subtle);
|
||
color: var(--text-secondary);
|
||
transition: all var(--transition-fast);
|
||
cursor: pointer;
|
||
}
|
||
|
||
.album-row-nav .nav-btn:hover:not(.disabled) {
|
||
background: var(--bg-hover);
|
||
color: var(--text-primary);
|
||
border-color: var(--border);
|
||
}
|
||
|
||
.album-row-nav .nav-btn.disabled {
|
||
opacity: 0.3;
|
||
cursor: default;
|
||
}
|
||
|
||
.album-grid-wrapper {
|
||
position: relative;
|
||
}
|
||
|
||
.album-grid {
|
||
display: flex;
|
||
gap: var(--space-4);
|
||
overflow-x: auto;
|
||
padding-bottom: var(--space-4);
|
||
scroll-snap-type: x mandatory;
|
||
scroll-behavior: smooth;
|
||
/* Hide scrollbar for Webkit */
|
||
-webkit-overflow-scrolling: touch;
|
||
}
|
||
|
||
.album-grid::-webkit-scrollbar {
|
||
display: none;
|
||
}
|
||
|
||
.album-grid {
|
||
-ms-overflow-style: none;
|
||
scrollbar-width: none;
|
||
}
|
||
|
||
.album-grid-wrap {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
|
||
gap: var(--space-4);
|
||
}
|
||
|
||
.album-grid-wrap .album-card {
|
||
content-visibility: auto;
|
||
contain-intrinsic-size: 0 220px;
|
||
}
|
||
|
||
|
||
@media (min-width: 1024px) {
|
||
.album-grid-wrap {
|
||
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
|
||
}
|
||
}
|
||
|
||
.album-grid .album-card,
|
||
.album-grid .artist-card {
|
||
flex: 0 0 clamp(140px, 15vw, 180px);
|
||
scroll-snap-align: start;
|
||
}
|
||
|
||
.album-card-more {
|
||
flex: 0 0 clamp(140px, 15vw, 180px);
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: var(--space-3);
|
||
background: var(--bg-hover);
|
||
border-radius: var(--radius-lg);
|
||
border: 1px dashed var(--border);
|
||
color: var(--text-secondary);
|
||
cursor: pointer;
|
||
scroll-snap-align: start;
|
||
transition: all var(--transition-base);
|
||
}
|
||
|
||
.album-card-more:hover {
|
||
background: var(--ctp-surface0);
|
||
color: var(--text-primary);
|
||
border-color: var(--accent);
|
||
box-shadow: var(--shadow-sm);
|
||
}
|
||
|
||
.album-card-offline-badge {
|
||
position: absolute;
|
||
top: 6px;
|
||
right: 6px;
|
||
background: color-mix(in srgb, var(--accent) 85%, transparent);
|
||
color: var(--ctp-crust);
|
||
border-radius: var(--radius-sm);
|
||
padding: 3px 4px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
z-index: 2;
|
||
pointer-events: none;
|
||
}
|
||
|
||
.album-card-play-overlay {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: rgba(0, 0, 0, 0.4);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
opacity: 0;
|
||
transition: opacity var(--transition-base);
|
||
}
|
||
|
||
.album-card:hover .album-card-play-overlay {
|
||
opacity: 1;
|
||
}
|
||
|
||
.album-card-details-btn {
|
||
background: var(--accent);
|
||
color: var(--ctp-crust);
|
||
border: none;
|
||
padding: 8px 20px;
|
||
border-radius: var(--radius-full);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-weight: 600;
|
||
font-size: 13px;
|
||
cursor: pointer;
|
||
transition: transform var(--transition-fast), background var(--transition-fast);
|
||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
|
||
}
|
||
|
||
.album-card-details-btn:hover {
|
||
transform: scale(1.05);
|
||
background: var(--accent);
|
||
}
|
||
|
||
|
||
.album-card-info {
|
||
padding: var(--space-3) var(--space-4) var(--space-4);
|
||
}
|
||
|
||
.album-card-title {
|
||
font-weight: 600;
|
||
font-size: 13px;
|
||
color: var(--text-primary);
|
||
margin-bottom: 2px;
|
||
}
|
||
|
||
.album-card-artist {
|
||
font-size: 12px;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.album-card-year {
|
||
font-size: 11px;
|
||
color: var(--text-muted);
|
||
margin-top: 2px;
|
||
}
|
||
|
||
/* ─ Live Search ─ */
|
||
.live-search {
|
||
position: relative;
|
||
min-width: 280px;
|
||
max-width: 420px;
|
||
flex: 1;
|
||
}
|
||
|
||
.live-search-input-wrap {
|
||
position: relative;
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.live-search-icon {
|
||
position: absolute;
|
||
left: 12px;
|
||
color: var(--text-muted);
|
||
pointer-events: none;
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.live-search-field {
|
||
padding-left: 36px !important;
|
||
padding-right: 58px !important;
|
||
border-radius: var(--radius-full) !important;
|
||
}
|
||
|
||
.live-search-clear {
|
||
position: absolute;
|
||
right: 8px;
|
||
font-size: 18px;
|
||
color: var(--text-muted);
|
||
line-height: 1;
|
||
transition: color var(--transition-fast);
|
||
}
|
||
|
||
.live-search-clear:hover {
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.live-search-adv-btn {
|
||
position: absolute;
|
||
right: 30px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 22px;
|
||
height: 22px;
|
||
background: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
color: var(--text-muted);
|
||
opacity: 0.55;
|
||
transition: opacity var(--transition-fast), color var(--transition-fast);
|
||
border-radius: var(--radius-sm);
|
||
padding: 0;
|
||
}
|
||
|
||
.live-search-adv-btn:hover {
|
||
opacity: 1;
|
||
color: var(--accent);
|
||
}
|
||
|
||
.live-search-dropdown {
|
||
position: absolute;
|
||
top: calc(100% + 8px);
|
||
left: 0;
|
||
right: 0;
|
||
background: var(--ctp-surface0);
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius-lg);
|
||
box-shadow: var(--shadow-lg);
|
||
max-height: 420px;
|
||
overflow-y: auto;
|
||
z-index: 1000;
|
||
animation: fadeIn 150ms ease both;
|
||
}
|
||
|
||
.search-section {
|
||
padding: var(--space-2) 0;
|
||
}
|
||
|
||
.search-section+.search-section {
|
||
border-top: 1px solid var(--border-subtle);
|
||
}
|
||
|
||
.search-section-label {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
padding: var(--space-2) var(--space-4);
|
||
font-size: 11px;
|
||
font-weight: 700;
|
||
letter-spacing: 0.08em;
|
||
text-transform: uppercase;
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.search-result-item {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-3);
|
||
width: 100%;
|
||
padding: var(--space-2) var(--space-4);
|
||
text-align: left;
|
||
transition: background var(--transition-fast);
|
||
border-radius: 0;
|
||
}
|
||
|
||
.search-result-item:hover,
|
||
.search-result-item.active {
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.search-result-icon {
|
||
width: 32px;
|
||
height: 32px;
|
||
border-radius: var(--radius-sm);
|
||
background: var(--bg-hover);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: var(--text-muted);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.search-result-thumb {
|
||
width: 32px;
|
||
height: 32px;
|
||
border-radius: var(--radius-sm);
|
||
object-fit: cover;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.search-result-name {
|
||
font-size: 13px;
|
||
font-weight: 500;
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.search-result-sub {
|
||
font-size: 11px;
|
||
color: var(--text-secondary);
|
||
margin-top: 2px;
|
||
}
|
||
|
||
.search-empty {
|
||
padding: var(--space-4);
|
||
text-align: center;
|
||
color: var(--text-muted);
|
||
font-size: 13px;
|
||
}
|
||
|
||
/* ─ Album Detail ─ */
|
||
/* ─── Offline Library ─── */
|
||
.offline-library {
|
||
padding: var(--space-6);
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: var(--space-6);
|
||
}
|
||
|
||
.offline-library-header {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 14px;
|
||
color: var(--accent);
|
||
}
|
||
|
||
.offline-library-title {
|
||
font-size: 22px;
|
||
font-weight: 700;
|
||
color: var(--text-primary);
|
||
margin: 0;
|
||
}
|
||
|
||
.offline-library-count {
|
||
font-size: 13px;
|
||
color: var(--text-secondary);
|
||
margin: 2px 0 0;
|
||
}
|
||
|
||
.offline-library-card .album-card-info {
|
||
gap: 3px;
|
||
}
|
||
|
||
.offline-library-card-meta {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
margin-top: 2px;
|
||
}
|
||
|
||
.offline-library-enqueue {
|
||
background: none;
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius-sm);
|
||
color: var(--text-muted);
|
||
font-size: 10px;
|
||
padding: 2px 6px;
|
||
cursor: pointer;
|
||
transition: color var(--transition-fast), border-color var(--transition-fast);
|
||
}
|
||
|
||
.offline-library-enqueue:hover {
|
||
color: var(--accent);
|
||
border-color: var(--accent);
|
||
}
|
||
|
||
.offline-library-tracks {
|
||
font-size: 10px;
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.offline-library-delete {
|
||
background: none;
|
||
border: none;
|
||
padding: 2px 4px;
|
||
cursor: pointer;
|
||
color: var(--text-muted);
|
||
display: flex;
|
||
align-items: center;
|
||
border-radius: var(--radius-sm);
|
||
transition: color var(--transition-fast);
|
||
}
|
||
|
||
.offline-library-delete:hover {
|
||
color: var(--color-error, #e05050);
|
||
}
|
||
|
||
/* Filter tabs */
|
||
.offline-filter-tabs {
|
||
display: flex;
|
||
gap: 6px;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.offline-filter-tab {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
padding: 6px 14px;
|
||
border-radius: 20px;
|
||
border: 1px solid var(--border);
|
||
background: none;
|
||
color: var(--text-secondary);
|
||
font-size: 13px;
|
||
cursor: pointer;
|
||
transition: background 0.15s, color 0.15s, border-color 0.15s;
|
||
}
|
||
|
||
.offline-filter-tab:hover {
|
||
color: var(--text-primary);
|
||
border-color: var(--accent);
|
||
}
|
||
|
||
.offline-filter-tab.active {
|
||
background: var(--accent);
|
||
color: var(--ctp-base);
|
||
border-color: var(--accent);
|
||
font-weight: 600;
|
||
}
|
||
|
||
.offline-filter-tab-count {
|
||
font-size: 11px;
|
||
opacity: 0.75;
|
||
}
|
||
|
||
.offline-filter-tab.active .offline-filter-tab-count {
|
||
opacity: 0.85;
|
||
}
|
||
|
||
/* Artist discography groups */
|
||
.offline-artist-group {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 12px;
|
||
}
|
||
|
||
.offline-artist-group-heading {
|
||
font-size: 16px;
|
||
font-weight: 700;
|
||
color: var(--text-primary);
|
||
padding-bottom: 6px;
|
||
border-bottom: 1px solid var(--border);
|
||
}
|
||
|
||
.album-detail {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 0;
|
||
}
|
||
|
||
.album-detail-header {
|
||
position: relative;
|
||
padding: var(--space-6) var(--space-6) 0;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.album-detail-bg {
|
||
position: absolute;
|
||
inset: 0;
|
||
background-size: cover;
|
||
background-position: center;
|
||
filter: blur(20px) brightness(0.6);
|
||
transform: scale(1.1);
|
||
/* Hide blur edges */
|
||
z-index: 0;
|
||
opacity: 0.8;
|
||
transition: opacity var(--transition-slow);
|
||
}
|
||
|
||
.album-detail-overlay {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: linear-gradient(to bottom,
|
||
rgba(30, 30, 46, 0.5) 0%,
|
||
var(--bg-app) 100%);
|
||
z-index: 0;
|
||
}
|
||
|
||
.album-detail-hero {
|
||
display: flex;
|
||
gap: var(--space-6);
|
||
align-items: flex-start;
|
||
padding: var(--space-4) 0 var(--space-6);
|
||
}
|
||
|
||
.album-detail-cover-btn {
|
||
padding: 0;
|
||
border-radius: var(--radius-lg);
|
||
flex-shrink: 0;
|
||
cursor: zoom-in;
|
||
position: relative;
|
||
overflow: hidden;
|
||
display: block;
|
||
width: clamp(120px, 15vw, 200px);
|
||
height: clamp(120px, 15vw, 200px);
|
||
}
|
||
|
||
.album-detail-cover-btn:hover .album-detail-cover {
|
||
transform: scale(1.04);
|
||
}
|
||
|
||
.album-detail-cover {
|
||
width: 100%;
|
||
height: 100%;
|
||
border-radius: var(--radius-lg);
|
||
object-fit: cover;
|
||
box-shadow: var(--shadow-lg);
|
||
display: block;
|
||
transition: transform 0.2s ease;
|
||
}
|
||
|
||
/* ─── Cover Lightbox ─── */
|
||
.cover-lightbox-overlay {
|
||
position: fixed;
|
||
inset: 0;
|
||
z-index: 9000;
|
||
background: rgba(0, 0, 0, 0.88);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 40px;
|
||
box-sizing: border-box;
|
||
cursor: zoom-out;
|
||
backdrop-filter: blur(6px);
|
||
}
|
||
|
||
.cover-lightbox-img {
|
||
max-width: 100%;
|
||
max-height: 100%;
|
||
object-fit: contain;
|
||
border-radius: var(--radius-lg);
|
||
box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
|
||
cursor: default;
|
||
}
|
||
|
||
.cover-lightbox-close {
|
||
position: fixed;
|
||
top: 24px;
|
||
right: 24px;
|
||
width: 40px;
|
||
height: 40px;
|
||
border-radius: 50%;
|
||
background: rgba(255, 255, 255, 0.12);
|
||
color: #fff;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
cursor: pointer;
|
||
transition: background var(--transition-fast);
|
||
z-index: 1;
|
||
}
|
||
|
||
.cover-lightbox-close:hover {
|
||
background: rgba(255, 255, 255, 0.24);
|
||
}
|
||
|
||
.album-cover-placeholder {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: var(--bg-card);
|
||
font-size: 48px;
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
/* ── Playlist 2×2 cover grid ── */
|
||
.playlist-cover-grid {
|
||
flex-shrink: 0;
|
||
width: clamp(120px, 15vw, 200px);
|
||
height: clamp(120px, 15vw, 200px);
|
||
display: grid;
|
||
grid-template-columns: 1fr 1fr;
|
||
grid-template-rows: 1fr 1fr;
|
||
border-radius: var(--radius-lg);
|
||
overflow: hidden;
|
||
box-shadow: var(--shadow-lg);
|
||
}
|
||
|
||
.playlist-cover-cell {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
display: block;
|
||
}
|
||
|
||
.playlist-cover-cell--empty {
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.album-detail-meta {
|
||
min-width: 0;
|
||
flex: 1;
|
||
}
|
||
|
||
.album-detail-title {
|
||
font-family: var(--font-display);
|
||
font-size: clamp(20px, 3vw, 32px);
|
||
font-weight: 800;
|
||
color: var(--text-primary);
|
||
line-height: 1.1;
|
||
margin: var(--space-2) 0 var(--space-1);
|
||
overflow-wrap: break-word;
|
||
}
|
||
|
||
.album-detail-artist {
|
||
font-size: clamp(13px, 1.5vw, 16px);
|
||
color: var(--accent);
|
||
font-weight: 600;
|
||
}
|
||
|
||
.album-detail-artist-link {
|
||
background: none;
|
||
border: none;
|
||
padding: 0;
|
||
color: var(--accent);
|
||
font-size: inherit;
|
||
font-weight: inherit;
|
||
cursor: pointer;
|
||
text-decoration: none;
|
||
transition: color var(--transition-fast), text-decoration var(--transition-fast);
|
||
}
|
||
|
||
.album-detail-artist-link:hover {
|
||
color: var(--text-primary);
|
||
text-decoration: underline;
|
||
}
|
||
|
||
.album-detail-info {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: var(--space-2);
|
||
color: var(--text-muted);
|
||
font-size: 13px;
|
||
margin: var(--space-2) 0 var(--space-4);
|
||
}
|
||
|
||
.album-detail-actions {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: var(--space-2);
|
||
align-items: center;
|
||
row-gap: var(--space-2);
|
||
}
|
||
|
||
.album-detail-actions-primary {
|
||
display: flex;
|
||
gap: 8px;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.album-detail-content {
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
|
||
.album-detail-badge {
|
||
margin-bottom: 0.5rem;
|
||
}
|
||
|
||
.album-detail-back {
|
||
margin-bottom: 1rem;
|
||
gap: 6px;
|
||
}
|
||
|
||
.album-info-dot {
|
||
margin: 0 4px;
|
||
}
|
||
|
||
.album-related {
|
||
padding: 0 var(--space-6) var(--space-8);
|
||
}
|
||
|
||
.album-related-divider {
|
||
border-top: 1px solid var(--border-subtle);
|
||
margin-bottom: 2rem;
|
||
}
|
||
|
||
.album-related-title {
|
||
margin-bottom: 1rem;
|
||
}
|
||
|
||
.download-hint {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 5px;
|
||
font-size: 11px;
|
||
color: var(--text-secondary);
|
||
background: rgba(203, 166, 247, 0.08);
|
||
border: 1px solid rgba(203, 166, 247, 0.2);
|
||
border-radius: var(--radius-full);
|
||
padding: 3px 10px 3px 8px;
|
||
cursor: default;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.download-progress-wrap {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-2);
|
||
padding: 0 var(--space-3);
|
||
height: 36px;
|
||
border-radius: var(--radius-md);
|
||
background: var(--surface-1);
|
||
border: 1px solid var(--border);
|
||
min-width: 180px;
|
||
color: var(--text-secondary);
|
||
font-size: 12px;
|
||
}
|
||
|
||
.download-progress-bar {
|
||
flex: 1;
|
||
height: 4px;
|
||
background: var(--surface-2);
|
||
border-radius: 2px;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.download-progress-fill {
|
||
height: 100%;
|
||
background: linear-gradient(90deg, var(--ctp-mauve), var(--ctp-blue));
|
||
border-radius: 2px;
|
||
transition: width 0.2s ease;
|
||
}
|
||
|
||
.download-progress-pct {
|
||
min-width: 28px;
|
||
text-align: right;
|
||
font-variant-numeric: tabular-nums;
|
||
}
|
||
|
||
/* ─ Offline cache button ─ */
|
||
.offline-cache-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
font-size: 13px;
|
||
}
|
||
|
||
.offline-cache-btn--cached {
|
||
color: var(--color-star-active, var(--accent));
|
||
border-color: var(--color-star-active, var(--accent));
|
||
}
|
||
|
||
.offline-cache-btn--progress {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
font-size: 13px;
|
||
opacity: 0.75;
|
||
padding: 6px 10px;
|
||
}
|
||
|
||
/* ─ Download folder modal ─ */
|
||
.download-folder-pick-row {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 12px;
|
||
padding: 10px 14px;
|
||
border: 1px solid var(--border);
|
||
border-radius: 8px;
|
||
background: var(--bg-input, var(--bg-sidebar));
|
||
margin-bottom: 12px;
|
||
}
|
||
|
||
.download-folder-path {
|
||
flex: 1;
|
||
font-size: 13px;
|
||
color: var(--text-primary);
|
||
word-break: break-all;
|
||
min-width: 0;
|
||
}
|
||
|
||
.download-folder-path:empty::before,
|
||
.download-folder-path[data-empty]::before {
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.download-remember-row {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
font-size: 13px;
|
||
color: var(--text-secondary);
|
||
cursor: pointer;
|
||
user-select: none;
|
||
margin-bottom: 4px;
|
||
}
|
||
|
||
.download-modal-actions {
|
||
display: flex;
|
||
justify-content: flex-end;
|
||
gap: 8px;
|
||
padding-top: 12px;
|
||
border-top: 1px solid var(--border);
|
||
margin-top: 4px;
|
||
}
|
||
|
||
/* ─ Song Info Modal ─ */
|
||
.song-info-backdrop {
|
||
position: fixed;
|
||
inset: 0;
|
||
background: rgba(0, 0, 0, 0.5);
|
||
z-index: 9990;
|
||
}
|
||
.song-info-modal {
|
||
position: fixed;
|
||
top: 50%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
z-index: 9991;
|
||
width: 460px;
|
||
max-width: calc(100vw - 32px);
|
||
max-height: 80vh;
|
||
background: var(--bg-card, var(--bg-secondary));
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius-lg);
|
||
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
|
||
display: flex;
|
||
flex-direction: column;
|
||
overflow: hidden;
|
||
}
|
||
.song-info-header {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 14px 16px 12px;
|
||
border-bottom: 1px solid var(--border-subtle);
|
||
flex-shrink: 0;
|
||
}
|
||
.song-info-title {
|
||
font-size: 14px;
|
||
font-weight: 700;
|
||
color: var(--text-primary);
|
||
letter-spacing: 0.02em;
|
||
}
|
||
.song-info-close {
|
||
padding: 4px;
|
||
color: var(--text-muted);
|
||
}
|
||
.song-info-body {
|
||
overflow-y: auto;
|
||
padding: 12px 4px 16px;
|
||
}
|
||
.song-info-loading {
|
||
text-align: center;
|
||
color: var(--text-muted);
|
||
font-size: 13px;
|
||
padding: 24px;
|
||
}
|
||
.song-info-table {
|
||
width: 100%;
|
||
border-collapse: collapse;
|
||
font-size: 13px;
|
||
}
|
||
.song-info-label {
|
||
color: var(--text-muted);
|
||
padding: 4px 16px 4px 16px;
|
||
white-space: nowrap;
|
||
vertical-align: top;
|
||
width: 140px;
|
||
font-size: 12px;
|
||
}
|
||
.song-info-value {
|
||
color: var(--text-primary);
|
||
padding: 4px 16px 4px 8px;
|
||
word-break: break-all;
|
||
}
|
||
.song-info-divider {
|
||
padding: 6px 0;
|
||
border-bottom: 1px solid var(--border-subtle);
|
||
}
|
||
.song-info-path {
|
||
font-family: var(--font-mono, monospace);
|
||
font-size: 11px;
|
||
color: var(--text-secondary);
|
||
word-break: break-all;
|
||
}
|
||
|
||
/* ─ Tracklist ─ */
|
||
.tracklist {
|
||
padding: 0 var(--space-6) var(--space-6);
|
||
overflow-x: auto;
|
||
}
|
||
|
||
.col-center {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
text-align: center;
|
||
}
|
||
|
||
.tracklist-header {
|
||
display: grid;
|
||
gap: var(--space-3);
|
||
align-items: center;
|
||
padding: var(--space-2) var(--space-3);
|
||
font-size: 11px;
|
||
font-weight: 600;
|
||
letter-spacing: 0.06em;
|
||
text-transform: uppercase;
|
||
color: var(--text-muted);
|
||
border-bottom: 1px solid var(--border-subtle);
|
||
margin-bottom: var(--space-2);
|
||
}
|
||
|
||
.track-row {
|
||
display: grid;
|
||
gap: var(--space-3);
|
||
align-items: center;
|
||
padding: var(--space-2) var(--space-3);
|
||
border-radius: var(--radius-md);
|
||
cursor: pointer;
|
||
transition: background var(--transition-fast);
|
||
user-select: none;
|
||
contain: layout style;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.tracklist-total {
|
||
display: grid;
|
||
align-items: center;
|
||
border-top: 1px solid var(--border-subtle);
|
||
padding: var(--space-2) var(--space-3);
|
||
margin-top: var(--space-1);
|
||
}
|
||
|
||
.tracklist-total-label {
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
color: var(--text-muted);
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.06em;
|
||
text-align: right;
|
||
}
|
||
|
||
.tracklist-total-value {
|
||
font-size: 13px;
|
||
font-weight: 600;
|
||
color: var(--text-secondary);
|
||
font-variant-numeric: tabular-nums;
|
||
text-align: center;
|
||
}
|
||
|
||
/* ── Column resize handle ── */
|
||
/* Positioned flush with the right edge of its header cell.
|
||
The ::after pseudo-element renders the visible 1 px divider line. */
|
||
.col-resize-handle {
|
||
position: absolute;
|
||
right: 0;
|
||
top: 0;
|
||
bottom: 0;
|
||
width: 4px;
|
||
cursor: col-resize;
|
||
z-index: 2;
|
||
}
|
||
|
||
.col-resize-handle::after {
|
||
content: '';
|
||
position: absolute;
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
top: 20%;
|
||
bottom: 20%;
|
||
width: 1px;
|
||
border-radius: 1px;
|
||
background: var(--ctp-surface1);
|
||
transition: background 0.15s;
|
||
}
|
||
|
||
.col-resize-handle:hover::after,
|
||
.col-resize-handle:active::after {
|
||
background: var(--accent);
|
||
}
|
||
|
||
/* ── Column visibility picker ── */
|
||
.tracklist-col-picker {
|
||
position: absolute;
|
||
top: 0;
|
||
right: 0;
|
||
height: 100%;
|
||
display: flex;
|
||
align-items: center;
|
||
padding-right: 4px;
|
||
}
|
||
|
||
.tracklist-col-picker-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 28px;
|
||
height: 28px;
|
||
border-radius: var(--radius-sm);
|
||
background: none;
|
||
border: none;
|
||
color: var(--text-muted);
|
||
cursor: pointer;
|
||
opacity: 0.5;
|
||
transition: opacity 0.15s, background 0.15s;
|
||
}
|
||
|
||
.tracklist-col-picker-btn:hover {
|
||
opacity: 1;
|
||
background: var(--ctp-surface0);
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.tracklist-col-picker-menu {
|
||
position: absolute;
|
||
top: calc(100% + 4px);
|
||
right: 0;
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--ctp-surface1);
|
||
border-radius: var(--radius-md);
|
||
padding: 6px;
|
||
min-width: 160px;
|
||
z-index: 200;
|
||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
|
||
}
|
||
|
||
.tracklist-col-picker-label {
|
||
font-size: 10px;
|
||
font-weight: 700;
|
||
color: var(--text-muted);
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.07em;
|
||
padding: 4px 8px 6px;
|
||
}
|
||
|
||
.tracklist-col-picker-item {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
width: 100%;
|
||
padding: 5px 8px;
|
||
border-radius: var(--radius-sm);
|
||
background: none;
|
||
border: none;
|
||
color: var(--text-secondary);
|
||
cursor: pointer;
|
||
font-size: 13px;
|
||
text-align: left;
|
||
transition: background 0.1s;
|
||
}
|
||
|
||
.tracklist-col-picker-item:hover {
|
||
background: var(--ctp-surface0);
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.tracklist-col-picker-item.active {
|
||
color: var(--accent);
|
||
}
|
||
|
||
.tracklist-col-picker-check {
|
||
width: 16px;
|
||
flex-shrink: 0;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: var(--accent);
|
||
}
|
||
|
||
/* Delete button in playlist row */
|
||
.playlist-row-delete-cell {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.playlist-row-delete-btn {
|
||
background: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
color: var(--text-muted);
|
||
padding: 4px;
|
||
border-radius: var(--radius-sm);
|
||
display: flex;
|
||
align-items: center;
|
||
opacity: 0;
|
||
transition: opacity var(--transition-fast), color var(--transition-fast);
|
||
}
|
||
|
||
.track-row:hover .playlist-row-delete-btn,
|
||
.track-row.context-active .playlist-row-delete-btn {
|
||
opacity: 1;
|
||
}
|
||
|
||
.playlist-row-delete-btn:hover {
|
||
color: var(--danger);
|
||
}
|
||
|
||
/* In suggestion rows the + btn is always visible at muted opacity */
|
||
.playlist-suggestions .playlist-row-delete-btn {
|
||
opacity: 0.45;
|
||
}
|
||
|
||
.playlist-suggestions .track-row:hover .playlist-row-delete-btn {
|
||
opacity: 1;
|
||
color: var(--accent);
|
||
}
|
||
|
||
.track-row:hover,
|
||
.track-row.context-active {
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.track-row.active {
|
||
background: var(--accent-dim);
|
||
animation: track-pulse 3s ease-in-out infinite;
|
||
}
|
||
|
||
.track-row.active:hover {
|
||
background: var(--accent-dim);
|
||
animation: none;
|
||
}
|
||
|
||
@keyframes track-pulse {
|
||
|
||
0%,
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
|
||
50% {
|
||
opacity: 0.6;
|
||
}
|
||
}
|
||
|
||
.track-row>* {
|
||
padding-top: 6px;
|
||
padding-bottom: 6px;
|
||
}
|
||
|
||
.track-num {
|
||
position: relative;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
.track-num .bulk-check {
|
||
position: absolute;
|
||
left: 0;
|
||
opacity: 0;
|
||
pointer-events: none;
|
||
transition: opacity 0.1s;
|
||
}
|
||
.track-num .bulk-check.bulk-check-visible {
|
||
opacity: 1;
|
||
pointer-events: auto;
|
||
}
|
||
.track-row:hover .track-num .bulk-check {
|
||
opacity: 1;
|
||
pointer-events: auto;
|
||
}
|
||
|
||
/* Default: show track number */
|
||
.track-num-number {
|
||
font-size: 13px;
|
||
color: var(--text-muted);
|
||
font-variant-numeric: tabular-nums;
|
||
text-align: center;
|
||
}
|
||
|
||
/* Play icon: hidden by default */
|
||
.track-num-play {
|
||
display: none;
|
||
align-items: center;
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
/* Eq-bars wrapper */
|
||
.track-num-eq {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: flex-end;
|
||
}
|
||
|
||
/* ── Hover (non-active row): hide number, show play icon ── */
|
||
.track-row:hover .track-num-number { display: none; }
|
||
.track-row:hover .track-num-play { display: flex; }
|
||
|
||
/* ── Active (currently playing): hide number, show eq-bars ── */
|
||
.track-num.track-num-active .track-num-number { display: none; }
|
||
.track-num.track-num-active .track-num-number { color: var(--accent); } /* kept for when visible */
|
||
|
||
/* ── Active + hover: hide eq-bars, show play icon ── */
|
||
.track-row:hover .track-num.track-num-active .track-num-eq { display: none; }
|
||
.track-row:hover .track-num.track-num-active .track-num-play { display: flex; }
|
||
|
||
/* Paused state: show play icon statically (no hover needed) */
|
||
.track-num.track-num-paused .track-num-play { display: flex; opacity: 0.5; }
|
||
.track-row:hover .track-num.track-num-paused .track-num-play { opacity: 1; }
|
||
|
||
/* Equalizer bars — shown for the currently playing track */
|
||
.eq-bars {
|
||
display: flex;
|
||
align-items: flex-end;
|
||
justify-content: center;
|
||
gap: 2px;
|
||
width: 14px;
|
||
height: 13px;
|
||
}
|
||
|
||
.eq-bar {
|
||
flex: 1;
|
||
height: 100%;
|
||
background: var(--accent);
|
||
border-radius: 1px;
|
||
transform-origin: bottom;
|
||
transform: scaleY(0.25);
|
||
animation: eq-bounce 1.1s ease-in-out infinite;
|
||
}
|
||
|
||
.eq-bar:nth-child(1) {
|
||
animation-delay: 0s;
|
||
animation-duration: 1.0s;
|
||
}
|
||
|
||
.eq-bar:nth-child(2) {
|
||
animation-delay: 0.18s;
|
||
animation-duration: 1.3s;
|
||
}
|
||
|
||
.eq-bar:nth-child(3) {
|
||
animation-delay: 0.35s;
|
||
animation-duration: 0.9s;
|
||
}
|
||
|
||
@keyframes eq-bounce {
|
||
|
||
0%,
|
||
100% {
|
||
transform: scaleY(0.25);
|
||
}
|
||
|
||
50% {
|
||
transform: scaleY(1);
|
||
}
|
||
}
|
||
|
||
/* CD / Disc separator */
|
||
.disc-header {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-3);
|
||
padding: var(--space-4) var(--space-3) var(--space-2);
|
||
font-family: var(--font-display);
|
||
font-size: 13px;
|
||
font-weight: 700;
|
||
letter-spacing: 0.06em;
|
||
text-transform: uppercase;
|
||
color: var(--accent);
|
||
margin-top: var(--space-3);
|
||
border-top: 1px solid var(--border-subtle);
|
||
}
|
||
|
||
.disc-header:first-child {
|
||
border-top: none;
|
||
margin-top: 0;
|
||
}
|
||
|
||
.disc-icon {
|
||
font-size: 16px;
|
||
}
|
||
|
||
|
||
.track-info {
|
||
min-width: 0;
|
||
}
|
||
|
||
.track-title {
|
||
font-size: 13px;
|
||
font-weight: 500;
|
||
color: var(--text-primary);
|
||
overflow-wrap: break-word;
|
||
word-break: break-word;
|
||
}
|
||
|
||
.track-artist-cell {
|
||
min-width: 0;
|
||
display: flex;
|
||
align-items: flex-start;
|
||
}
|
||
|
||
.track-artist {
|
||
font-size: 12px;
|
||
color: var(--text-secondary);
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.track-artist-link {
|
||
cursor: pointer;
|
||
}
|
||
.track-artist-link:hover {
|
||
color: var(--accent);
|
||
text-decoration: underline;
|
||
}
|
||
.track-artist-sep {
|
||
color: var(--text-muted);
|
||
user-select: none;
|
||
}
|
||
|
||
.track-codec {
|
||
display: block;
|
||
font-size: 10px;
|
||
font-weight: 500;
|
||
letter-spacing: 0.04em;
|
||
color: var(--text-muted);
|
||
margin-top: 2px;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.track-size {
|
||
color: var(--ctp-overlay0);
|
||
}
|
||
|
||
.track-duration {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
font-size: 12px;
|
||
color: var(--text-muted);
|
||
font-variant-numeric: tabular-nums;
|
||
}
|
||
|
||
.track-meta {
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.track-meta .track-codec {
|
||
margin-top: 0;
|
||
}
|
||
|
||
.track-genre {
|
||
font-size: 11px;
|
||
color: var(--text-muted);
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.track-star-cell {
|
||
display: flex;
|
||
justify-content: center;
|
||
}
|
||
|
||
.track-star-btn {
|
||
padding: 4px;
|
||
height: auto;
|
||
min-height: unset;
|
||
color: var(--text-muted);
|
||
transition: color var(--transition-fast);
|
||
}
|
||
|
||
.track-star-btn:hover,
|
||
.track-star-btn.is-starred {
|
||
color: var(--color-star-active, var(--accent));
|
||
}
|
||
|
||
.album-detail-star-btn {
|
||
transition: color var(--transition-fast), border-color var(--transition-fast) !important;
|
||
}
|
||
|
||
.album-detail-star-btn:hover {
|
||
color: var(--color-star-active, var(--accent)) !important;
|
||
}
|
||
|
||
.album-detail-star-btn.is-starred {
|
||
color: var(--color-star-active, var(--accent)) !important;
|
||
border: 1px solid var(--color-star-active, var(--accent)) !important;
|
||
}
|
||
|
||
/* ── Random Mix — clickable artist name ── */
|
||
.rm-artist-btn {
|
||
background: none;
|
||
border: none;
|
||
padding: 0;
|
||
margin: 0;
|
||
font-size: 12px;
|
||
color: var(--text-secondary);
|
||
cursor: pointer;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
max-width: 100%;
|
||
text-align: left;
|
||
text-decoration: underline;
|
||
text-decoration-style: dotted;
|
||
text-decoration-color: transparent;
|
||
transition: color 0.15s, text-decoration-color 0.15s;
|
||
}
|
||
.rm-artist-btn:hover {
|
||
color: var(--accent);
|
||
text-decoration-color: var(--accent);
|
||
}
|
||
.rm-artist-btn.is-blocked {
|
||
color: var(--danger);
|
||
text-decoration-color: var(--danger);
|
||
cursor: default;
|
||
}
|
||
.rm-artist-btn.just-added {
|
||
color: var(--accent);
|
||
text-decoration-color: var(--accent);
|
||
}
|
||
|
||
/* ── Random Mix — genre pill chip ── */
|
||
.rm-genre-chip {
|
||
display: inline-block;
|
||
background: var(--bg-hover);
|
||
border: none;
|
||
border-radius: var(--radius-sm);
|
||
padding: 2px 8px;
|
||
font-size: 11px;
|
||
font-weight: 500;
|
||
color: var(--text-muted);
|
||
cursor: pointer;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
max-width: 100%;
|
||
transition: background 0.15s, color 0.15s;
|
||
}
|
||
.rm-genre-chip:hover {
|
||
background: color-mix(in srgb, var(--accent) 20%, transparent);
|
||
color: var(--accent);
|
||
}
|
||
.rm-genre-chip.is-blocked {
|
||
background: color-mix(in srgb, var(--danger) 15%, transparent);
|
||
color: var(--danger);
|
||
cursor: default;
|
||
}
|
||
.rm-genre-chip.just-added {
|
||
background: color-mix(in srgb, var(--accent) 20%, transparent);
|
||
color: var(--accent);
|
||
}
|
||
|
||
/* ─ Modal ─ */
|
||
.modal-overlay {
|
||
position: fixed;
|
||
inset: 0;
|
||
background: rgba(17, 17, 27, 0.85);
|
||
backdrop-filter: blur(8px);
|
||
display: flex;
|
||
align-items: flex-start;
|
||
justify-content: center;
|
||
padding-top: 10vh;
|
||
z-index: 9999;
|
||
animation: fadeIn 150ms ease both;
|
||
}
|
||
|
||
.modal-content {
|
||
background: var(--ctp-surface0);
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius-xl);
|
||
padding: var(--space-8);
|
||
max-width: 600px;
|
||
width: 90%;
|
||
max-height: 80vh;
|
||
overflow-y: auto;
|
||
position: relative;
|
||
animation: fadeIn 200ms ease both;
|
||
box-shadow: var(--shadow-lg);
|
||
}
|
||
|
||
.modal-close {
|
||
position: absolute;
|
||
top: var(--space-4);
|
||
right: var(--space-4);
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.modal-close:hover {
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.modal-title {
|
||
margin-bottom: 1rem;
|
||
font-family: var(--font-display);
|
||
}
|
||
|
||
/* ─ Playlist edit modal ─ */
|
||
.playlist-edit-modal {
|
||
max-width: 560px;
|
||
}
|
||
|
||
.playlist-edit-body {
|
||
display: flex;
|
||
gap: 20px;
|
||
align-items: flex-start;
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
/* Clickable cover wrap in the hero (opens modal) */
|
||
.playlist-hero-cover {
|
||
position: relative;
|
||
display: inline-block;
|
||
cursor: pointer;
|
||
border-radius: var(--radius-md);
|
||
overflow: hidden;
|
||
}
|
||
|
||
.playlist-hero-cover-overlay {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: rgba(0, 0, 0, 0.5);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: #fff;
|
||
opacity: 0;
|
||
transition: opacity 150ms ease;
|
||
border-radius: inherit;
|
||
}
|
||
|
||
.playlist-hero-cover:hover .playlist-hero-cover-overlay {
|
||
opacity: 1;
|
||
}
|
||
|
||
/* Cover area inside the modal */
|
||
.playlist-edit-cover-wrap {
|
||
position: relative;
|
||
width: 180px;
|
||
height: 180px;
|
||
flex-shrink: 0;
|
||
border-radius: var(--radius-md);
|
||
overflow: hidden;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.playlist-edit-cover-overlay {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: rgba(0, 0, 0, 0.6);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
opacity: 0;
|
||
transition: opacity 150ms ease;
|
||
}
|
||
|
||
.playlist-edit-cover-wrap:hover .playlist-edit-cover-overlay {
|
||
opacity: 1;
|
||
}
|
||
|
||
.playlist-edit-cover-menu {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 6px;
|
||
text-align: center;
|
||
}
|
||
|
||
.playlist-edit-cover-menu-item {
|
||
background: none;
|
||
border: none;
|
||
color: #fff;
|
||
font-size: 13px;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
padding: 6px 12px;
|
||
border-radius: var(--radius-sm);
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
white-space: nowrap;
|
||
transition: background 120ms ease;
|
||
}
|
||
|
||
.playlist-edit-cover-menu-item:hover {
|
||
background: rgba(255, 255, 255, 0.15);
|
||
}
|
||
|
||
.playlist-edit-cover-menu-item--danger {
|
||
color: var(--ctp-red, #f38ba8);
|
||
}
|
||
|
||
/* Right side fields */
|
||
.playlist-edit-fields {
|
||
flex: 1;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 10px;
|
||
}
|
||
|
||
.playlist-edit-name-input {
|
||
font-size: 18px;
|
||
font-weight: 700;
|
||
}
|
||
|
||
.playlist-edit-desc-input {
|
||
resize: none;
|
||
min-height: 80px;
|
||
font-size: 13px;
|
||
}
|
||
|
||
/* Footer */
|
||
.playlist-edit-footer {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding-top: 16px;
|
||
border-top: 1px solid var(--border);
|
||
gap: 12px;
|
||
}
|
||
|
||
.artist-bio {
|
||
font-size: 14px;
|
||
line-height: 1.7;
|
||
color: var(--text-secondary);
|
||
user-select: text;
|
||
}
|
||
|
||
.artist-bio a {
|
||
color: var(--accent);
|
||
text-decoration: underline;
|
||
}
|
||
|
||
/* Artist Detail Page */
|
||
.artist-detail-header {
|
||
display: flex;
|
||
align-items: flex-start;
|
||
gap: 2rem;
|
||
margin-bottom: 2rem;
|
||
}
|
||
|
||
.artist-detail-avatar {
|
||
width: 160px;
|
||
height: 160px;
|
||
border-radius: 50%;
|
||
overflow: hidden;
|
||
background: var(--bg-card);
|
||
flex-shrink: 0;
|
||
box-shadow: var(--shadow-md);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
border: 1px solid var(--border-subtle);
|
||
}
|
||
|
||
.artist-detail-avatar-btn {
|
||
display: block;
|
||
width: 100%;
|
||
height: 100%;
|
||
padding: 0;
|
||
border: none;
|
||
background: none;
|
||
cursor: zoom-in;
|
||
transition: transform 0.2s ease, filter 0.2s ease;
|
||
}
|
||
.artist-detail-avatar-btn:hover {
|
||
transform: scale(1.04);
|
||
filter: brightness(1.08);
|
||
}
|
||
|
||
.artist-detail-meta {
|
||
flex: 1;
|
||
min-width: 0;
|
||
padding-top: 0.5rem;
|
||
}
|
||
|
||
.artist-detail-links {
|
||
display: flex;
|
||
gap: 0.5rem;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.artist-ext-link {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
padding: 5px 12px;
|
||
border-radius: var(--radius-full);
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border);
|
||
color: var(--text-secondary);
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
transition: all var(--transition-fast);
|
||
}
|
||
|
||
.artist-ext-link:hover {
|
||
background: var(--bg-hover);
|
||
color: var(--text-primary);
|
||
border-color: var(--border-subtle);
|
||
}
|
||
|
||
/* Bio section */
|
||
.artist-bio-section {
|
||
margin-bottom: 0.5rem;
|
||
}
|
||
|
||
.artist-bio-text {
|
||
font-size: 14px;
|
||
line-height: 1.75;
|
||
color: var(--text-secondary);
|
||
max-width: 100%;
|
||
user-select: text;
|
||
}
|
||
|
||
.artist-bio-text a {
|
||
color: var(--accent);
|
||
text-decoration: underline;
|
||
}
|
||
|
||
|
||
/* ─ Artists Page ─ */
|
||
.letter-heading {
|
||
font-size: 13px;
|
||
font-weight: 700;
|
||
color: var(--text-muted);
|
||
letter-spacing: 0.08em;
|
||
text-transform: uppercase;
|
||
margin-bottom: var(--space-2);
|
||
padding: var(--space-2) 0;
|
||
border-bottom: 1px solid var(--border-subtle);
|
||
}
|
||
|
||
.artist-list {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 2px;
|
||
}
|
||
|
||
.artist-row {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-3);
|
||
padding: var(--space-3);
|
||
border-radius: var(--radius-md);
|
||
transition: background var(--transition-fast);
|
||
width: 100%;
|
||
text-align: left;
|
||
}
|
||
|
||
.artist-row:hover {
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.artist-avatar {
|
||
width: 38px;
|
||
height: 38px;
|
||
border-radius: 50%;
|
||
background: var(--accent-dim);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: var(--accent);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.artist-avatar-initial {
|
||
background: var(--bg-card);
|
||
border: 2px solid;
|
||
}
|
||
|
||
.artist-avatar-initial span {
|
||
font-size: 1rem;
|
||
font-weight: 700;
|
||
font-family: var(--font-display);
|
||
line-height: 1;
|
||
user-select: none;
|
||
}
|
||
|
||
.artist-name {
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.artist-meta {
|
||
font-size: 12px;
|
||
color: var(--text-muted);
|
||
margin-top: 2px;
|
||
}
|
||
|
||
/* ─ Years Page ─ */
|
||
.decade-heading {
|
||
font-family: var(--font-display);
|
||
font-size: 22px;
|
||
font-weight: 700;
|
||
color: var(--text-primary);
|
||
margin-bottom: var(--space-3);
|
||
}
|
||
|
||
.year-section {
|
||
margin-bottom: var(--space-3);
|
||
}
|
||
|
||
.year-toggle {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-3);
|
||
padding: var(--space-3);
|
||
border-radius: var(--radius-md);
|
||
width: 100%;
|
||
text-align: left;
|
||
color: var(--text-secondary);
|
||
font-size: 15px;
|
||
font-weight: 500;
|
||
transition: background var(--transition-fast);
|
||
}
|
||
|
||
.year-toggle:hover {
|
||
background: var(--bg-hover);
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.year-label {
|
||
font-variant-numeric: tabular-nums;
|
||
}
|
||
|
||
/* ─ Settings ─ */
|
||
.settings-tabs {
|
||
display: flex;
|
||
gap: 4px;
|
||
padding: 4px;
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border-subtle);
|
||
border-radius: var(--radius-lg);
|
||
margin-bottom: 2rem;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.settings-tab {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 7px;
|
||
padding: 7px 16px;
|
||
border-radius: calc(var(--radius-lg) - 4px);
|
||
font-size: 13px;
|
||
font-weight: 500;
|
||
color: var(--text-muted);
|
||
background: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
transition: color var(--transition-fast), background var(--transition-fast);
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.settings-tab:hover {
|
||
color: var(--text-primary);
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.settings-tab.active {
|
||
color: var(--accent);
|
||
background: color-mix(in srgb, var(--accent) 12%, transparent);
|
||
}
|
||
|
||
.settings-section {
|
||
margin-bottom: var(--space-8);
|
||
}
|
||
|
||
.settings-section-header {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-2);
|
||
color: var(--accent);
|
||
margin-bottom: var(--space-3);
|
||
}
|
||
|
||
.settings-section-header h2 {
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.settings-card {
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border-subtle);
|
||
border-radius: var(--radius-lg);
|
||
padding: var(--space-5);
|
||
}
|
||
|
||
/* ─ Help Page ─ */
|
||
.help-list {
|
||
display: flex;
|
||
flex-direction: column;
|
||
border: 1px solid var(--border-subtle);
|
||
border-radius: var(--radius-lg);
|
||
overflow: hidden;
|
||
}
|
||
|
||
/* ── Theme Accordion ─────────────────────────────────────────────────────── */
|
||
|
||
.theme-accordion {
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
|
||
.theme-accordion-item {
|
||
border-bottom: 1px solid var(--border-subtle);
|
||
}
|
||
|
||
.theme-accordion-item:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.theme-accordion-header {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: var(--space-4);
|
||
width: 100%;
|
||
padding: 10px var(--space-4);
|
||
text-align: left;
|
||
font-size: 13px;
|
||
font-weight: 600;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.07em;
|
||
color: var(--text-muted);
|
||
background: var(--bg-card);
|
||
border-left: 3px solid transparent;
|
||
transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
|
||
}
|
||
|
||
.theme-accordion-header:hover {
|
||
background: var(--bg-hover);
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.theme-accordion-open .theme-accordion-header {
|
||
color: var(--accent);
|
||
background: var(--bg-hover);
|
||
border-left: 3px solid var(--accent);
|
||
padding-left: calc(var(--space-5) + 3px);
|
||
}
|
||
|
||
.theme-accordion-chevron {
|
||
flex-shrink: 0;
|
||
color: var(--text-muted);
|
||
transition: transform 0.2s ease;
|
||
}
|
||
|
||
.theme-accordion-open .theme-accordion-chevron {
|
||
transform: rotate(180deg);
|
||
color: var(--accent);
|
||
}
|
||
|
||
.theme-accordion-content {
|
||
padding: 14px var(--space-4) var(--space-4) calc(var(--space-4) + 3px);
|
||
background: var(--bg-app);
|
||
border-top: 1px solid var(--border-subtle);
|
||
border-left: 3px solid var(--accent);
|
||
}
|
||
|
||
.theme-accordion-active-dot {
|
||
display: inline-block;
|
||
width: 6px;
|
||
height: 6px;
|
||
border-radius: 50%;
|
||
background: var(--accent);
|
||
margin-left: 8px;
|
||
vertical-align: middle;
|
||
opacity: 0.8;
|
||
}
|
||
|
||
/* ── Theme Card (individual theme preview button) ───────────────────────── */
|
||
|
||
.theme-card-btn {
|
||
background: none;
|
||
border: none;
|
||
padding: 0;
|
||
cursor: pointer;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 6px;
|
||
}
|
||
|
||
.theme-card-preview {
|
||
width: 100%;
|
||
height: 46px;
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
outline: 2px solid transparent;
|
||
outline-offset: 2px;
|
||
position: relative;
|
||
box-shadow: 0 1px 3px rgba(0,0,0,0.3);
|
||
transition: outline-color 0.15s, box-shadow 0.15s, transform 0.15s;
|
||
}
|
||
|
||
/* Hover: dim accent ring + subtle lift */
|
||
.theme-card-btn:hover .theme-card-preview {
|
||
outline-color: var(--accent-glow);
|
||
box-shadow: 0 2px 6px rgba(0,0,0,0.4);
|
||
transform: scale(1.04);
|
||
}
|
||
|
||
/* Active: full accent ring + glow */
|
||
.theme-card-preview.is-active {
|
||
outline-color: var(--accent);
|
||
box-shadow: 0 0 8px var(--accent-glow, rgba(0,0,0,0.2));
|
||
}
|
||
|
||
/* Active + hover: keep strong ring, keep lift */
|
||
.theme-card-btn:hover .theme-card-preview.is-active {
|
||
outline-color: var(--accent);
|
||
box-shadow: 0 0 12px var(--accent-glow, rgba(0,0,0,0.3));
|
||
transform: scale(1.04);
|
||
}
|
||
|
||
.theme-card-label {
|
||
font-size: 11px;
|
||
color: var(--text-secondary);
|
||
font-weight: 400;
|
||
text-align: center;
|
||
line-height: 1.2;
|
||
word-break: break-word;
|
||
transition: color var(--transition-fast), font-weight 0s;
|
||
}
|
||
|
||
.theme-card-btn:hover .theme-card-label {
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.theme-card-label.is-active {
|
||
color: var(--text-primary);
|
||
font-weight: 600;
|
||
}
|
||
|
||
/* ── Queue Tab Bar ────────────────────────────────────────────────────────── */
|
||
|
||
.queue-tab-bar {
|
||
display: flex;
|
||
border-top: 1px solid var(--border-subtle);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.queue-tab-btn {
|
||
flex: 1;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 6px;
|
||
padding: 10px 8px;
|
||
background: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
font-size: 12px;
|
||
font-weight: 500;
|
||
color: var(--text-muted);
|
||
transition: color 0.15s, background 0.15s;
|
||
}
|
||
|
||
.queue-tab-btn:hover { color: var(--text-primary); background: var(--bg-hover); }
|
||
.queue-tab-btn.active { color: var(--accent); }
|
||
|
||
/* ── Lyrics Pane (sidebar) ────────────────────────────────────────────────── */
|
||
|
||
.lyrics-pane {
|
||
flex: 1;
|
||
overflow-y: auto;
|
||
padding: 16px 16px 8px;
|
||
scroll-behavior: smooth;
|
||
}
|
||
|
||
.lyrics-pane-empty {
|
||
flex: 1;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.lyrics-status {
|
||
text-align: center;
|
||
color: var(--text-muted);
|
||
font-size: 13px;
|
||
padding: 40px 0;
|
||
}
|
||
|
||
.lyrics-synced {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 2px;
|
||
padding: 8px 0 16px;
|
||
}
|
||
|
||
.lyrics-line {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: var(--text-secondary);
|
||
text-align: center;
|
||
padding: 5px 8px;
|
||
border-radius: 6px;
|
||
line-height: 1.6;
|
||
transition: color 0.25s;
|
||
cursor: default;
|
||
}
|
||
|
||
.lyrics-line.completed {
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.lyrics-line.active {
|
||
color: var(--accent);
|
||
}
|
||
|
||
.lyrics-line:hover:not(.active) {
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.lyrics-plain {
|
||
padding: 4px 0 16px;
|
||
}
|
||
|
||
.lyrics-plain-line {
|
||
font-size: 13px;
|
||
line-height: 1.85;
|
||
color: var(--text-secondary);
|
||
text-align: center;
|
||
margin: 0;
|
||
}
|
||
|
||
|
||
/* ── Help ─────────────────────────────────────────────────────────────────── */
|
||
|
||
.help-item {
|
||
border-bottom: 1px solid var(--border-subtle);
|
||
}
|
||
|
||
.help-item:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.help-question {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: var(--space-4);
|
||
width: 100%;
|
||
padding: 10px var(--space-4);
|
||
text-align: left;
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
color: var(--text-primary);
|
||
background: var(--bg-card);
|
||
border-left: 3px solid transparent;
|
||
transition: background var(--transition-fast), border-color var(--transition-fast);
|
||
}
|
||
|
||
.help-question:hover {
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.help-item-open .help-question {
|
||
color: var(--accent);
|
||
background: var(--bg-hover);
|
||
border-left: 3px solid var(--accent);
|
||
padding-left: calc(var(--space-5) + 3px);
|
||
}
|
||
|
||
.help-chevron {
|
||
flex-shrink: 0;
|
||
color: var(--text-muted);
|
||
transition: transform 0.2s ease;
|
||
}
|
||
|
||
.help-item-open .help-chevron {
|
||
transform: rotate(180deg);
|
||
color: var(--accent);
|
||
}
|
||
|
||
.help-answer {
|
||
padding: 10px var(--space-4) var(--space-4) calc(var(--space-4) + 3px);
|
||
font-size: 13px;
|
||
color: var(--text-secondary);
|
||
line-height: 1.65;
|
||
background: var(--bg-app);
|
||
border-top: 1px solid var(--border-subtle);
|
||
border-left: 3px solid var(--accent);
|
||
}
|
||
|
||
.settings-toggle-row {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: var(--space-4);
|
||
}
|
||
|
||
.settings-section-divider {
|
||
border: none;
|
||
border-top: 1px solid var(--border);
|
||
margin: var(--space-3) 0;
|
||
}
|
||
|
||
/* ─ Sidebar Customizer ─ */
|
||
.sidebar-customizer-row {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-3);
|
||
padding: 8px var(--space-4);
|
||
border-radius: var(--radius-sm);
|
||
transition: background var(--transition-fast), opacity var(--transition-fast);
|
||
cursor: default;
|
||
}
|
||
|
||
.sidebar-customizer-row:hover {
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.sidebar-customizer-row.drag-over {
|
||
background: var(--accent-dim);
|
||
outline: 1px solid var(--accent);
|
||
outline-offset: -1px;
|
||
}
|
||
|
||
.sidebar-customizer-row.dragging {
|
||
opacity: 0.4;
|
||
}
|
||
|
||
.sidebar-customizer-grip {
|
||
cursor: grab;
|
||
color: var(--text-muted);
|
||
display: flex;
|
||
align-items: center;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.sidebar-customizer-grip:active {
|
||
cursor: grabbing;
|
||
}
|
||
|
||
.sidebar-customizer-block-label {
|
||
padding: 6px var(--space-4) 4px;
|
||
font-size: 11px;
|
||
font-weight: 600;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.06em;
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.sidebar-customizer-fixed-hint {
|
||
padding: 8px var(--space-4) 6px;
|
||
font-size: 11px;
|
||
color: var(--text-muted);
|
||
border-top: 1px solid var(--border);
|
||
margin-top: 4px;
|
||
}
|
||
|
||
.settings-about {
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
|
||
.settings-about-header {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-4);
|
||
}
|
||
|
||
/* Toggle switch */
|
||
.toggle-switch {
|
||
position: relative;
|
||
display: inline-block;
|
||
width: 44px;
|
||
height: 24px;
|
||
flex-shrink: 0;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.toggle-switch input {
|
||
opacity: 0;
|
||
width: 0;
|
||
height: 0;
|
||
}
|
||
|
||
.toggle-track {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: var(--ctp-surface2);
|
||
border-radius: var(--radius-full);
|
||
transition: background var(--transition-base);
|
||
}
|
||
|
||
.toggle-track::before {
|
||
content: '';
|
||
position: absolute;
|
||
left: 3px;
|
||
top: 3px;
|
||
width: 18px;
|
||
height: 18px;
|
||
border-radius: 50%;
|
||
background: white;
|
||
transition: transform var(--transition-base);
|
||
box-shadow: var(--shadow-sm);
|
||
}
|
||
|
||
.toggle-switch:hover .toggle-track {
|
||
background: var(--ctp-overlay0);
|
||
}
|
||
|
||
.toggle-switch input:checked+.toggle-track {
|
||
background: var(--accent);
|
||
}
|
||
|
||
.toggle-switch:hover input:checked+.toggle-track {
|
||
filter: brightness(1.15);
|
||
}
|
||
|
||
.toggle-switch input:checked+.toggle-track::before {
|
||
transform: translateX(20px);
|
||
}
|
||
|
||
/* ─ Login Page ─ */
|
||
.login-page {
|
||
min-height: 100vh;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
position: relative;
|
||
overflow: hidden;
|
||
background: var(--bg-app);
|
||
}
|
||
|
||
.login-bg {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: radial-gradient(ellipse at 20% 50%, rgba(203, 166, 247, 0.08) 0%, transparent 60%),
|
||
radial-gradient(ellipse at 80% 20%, rgba(137, 180, 250, 0.06) 0%, transparent 50%);
|
||
pointer-events: none;
|
||
}
|
||
|
||
.login-card {
|
||
width: 100%;
|
||
max-width: 520px;
|
||
background: var(--ctp-mantle);
|
||
border: 1px solid var(--border-subtle);
|
||
border-radius: var(--radius-xl);
|
||
padding: var(--space-8);
|
||
box-shadow: var(--shadow-lg);
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
|
||
.login-logo {
|
||
display: flex;
|
||
justify-content: center;
|
||
margin-bottom: var(--space-5);
|
||
}
|
||
|
||
.login-title {
|
||
text-align: center;
|
||
font-family: var(--font-display);
|
||
font-size: 28px;
|
||
font-weight: 800;
|
||
background: linear-gradient(135deg, var(--ctp-mauve), var(--ctp-blue));
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
|
||
.login-subtitle {
|
||
text-align: center;
|
||
color: var(--text-muted);
|
||
font-size: 13px;
|
||
margin: var(--space-1) 0 var(--space-6);
|
||
}
|
||
|
||
.login-form {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: var(--space-4);
|
||
}
|
||
|
||
.form-group {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: var(--space-2);
|
||
}
|
||
|
||
.form-group label {
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
color: var(--text-secondary);
|
||
letter-spacing: 0.03em;
|
||
}
|
||
|
||
.form-row {
|
||
display: grid;
|
||
grid-template-columns: 1fr 1fr;
|
||
gap: var(--space-3);
|
||
}
|
||
|
||
.login-status {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-2);
|
||
padding: var(--space-2) var(--space-3);
|
||
border-radius: var(--radius-md);
|
||
font-size: 13px;
|
||
}
|
||
|
||
.login-status--testing {
|
||
background: var(--accent-dim);
|
||
color: var(--accent);
|
||
}
|
||
|
||
.login-status--ok {
|
||
background: rgba(166, 227, 161, 0.15);
|
||
color: var(--positive);
|
||
}
|
||
|
||
.login-status--error {
|
||
background: rgba(243, 139, 168, 0.15);
|
||
color: var(--danger);
|
||
}
|
||
|
||
.login-saved-servers {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: var(--space-2);
|
||
margin-bottom: var(--space-4);
|
||
}
|
||
|
||
.login-saved-label {
|
||
font-size: 11px;
|
||
font-weight: 600;
|
||
color: var(--text-muted);
|
||
letter-spacing: 0.05em;
|
||
text-transform: uppercase;
|
||
margin-bottom: var(--space-1);
|
||
}
|
||
|
||
.login-server-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-3);
|
||
padding: var(--space-3) var(--space-4);
|
||
text-align: left;
|
||
width: 100%;
|
||
}
|
||
|
||
.login-divider {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-3);
|
||
color: var(--text-muted);
|
||
font-size: 12px;
|
||
margin: var(--space-2) 0;
|
||
}
|
||
|
||
.login-divider::before,
|
||
.login-divider::after {
|
||
content: '';
|
||
flex: 1;
|
||
height: 1px;
|
||
background: var(--border);
|
||
}
|
||
|
||
/* ─ Loading / Empty ─ */
|
||
.loading-center {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
height: 200px;
|
||
}
|
||
|
||
.empty-state {
|
||
text-align: center;
|
||
padding: var(--space-10);
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
/* ─────────────────────────────────────────
|
||
Fullscreen Player — Adaptive Portrait
|
||
──────────────────────────────────────────── */
|
||
.fs-player {
|
||
position: fixed;
|
||
inset: 0;
|
||
z-index: 9000;
|
||
overflow: hidden;
|
||
contain: layout style paint;
|
||
animation: fsIn 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
|
||
background: #06060e;
|
||
/* Promote to own compositor layer immediately on mount */
|
||
will-change: transform, opacity;
|
||
}
|
||
|
||
@keyframes fsIn {
|
||
from { transform: translateY(100%); opacity: 0; }
|
||
to { transform: translateY(0); opacity: 1; }
|
||
}
|
||
|
||
/* ── Animated dark mesh — GPU-only: only transform3d, no scale, real divs for will-change ── */
|
||
@keyframes mesh-aura-a {
|
||
0% { transform: translate3d(0, 0, 0); }
|
||
33% { transform: translate3d(5%, -6%, 0); }
|
||
66% { transform: translate3d(-3%, 2%, 0); }
|
||
100% { transform: translate3d(0, 0, 0); }
|
||
}
|
||
|
||
@keyframes mesh-aura-b {
|
||
0% { transform: translate3d(0, 0, 0); }
|
||
50% { transform: translate3d(-6%, 5%, 0); }
|
||
100% { transform: translate3d(0, 0, 0); }
|
||
}
|
||
|
||
@keyframes portrait-drift {
|
||
0%, 100% { transform: translate3d(0, 0, 0); }
|
||
50% { transform: translate3d(0, -10px, 0); }
|
||
}
|
||
|
||
.fs-mesh-bg {
|
||
position: absolute;
|
||
inset: 0;
|
||
z-index: 0;
|
||
background: #06060e;
|
||
overflow: hidden;
|
||
pointer-events: none;
|
||
}
|
||
|
||
/* Blobs are real divs so will-change: transform applies (pseudo-elements can't have it) */
|
||
.fs-mesh-blob {
|
||
position: absolute;
|
||
border-radius: 50%;
|
||
pointer-events: none;
|
||
will-change: transform;
|
||
}
|
||
|
||
.fs-mesh-blob-a {
|
||
/* Oversized so panning never exposes the dark base underneath */
|
||
width: 130%;
|
||
height: 130%;
|
||
left: -35%;
|
||
bottom: -35%;
|
||
background: radial-gradient(ellipse, var(--accent-glow, rgba(120, 80, 255, 0.14)) 0%, transparent 65%);
|
||
filter: blur(55px);
|
||
animation: mesh-aura-a 26s ease-in-out infinite;
|
||
animation-delay: 350ms;
|
||
}
|
||
|
||
.fs-mesh-blob-b {
|
||
width: 100%;
|
||
height: 110%;
|
||
right: -25%;
|
||
top: -25%;
|
||
background: radial-gradient(ellipse, var(--accent-dim, rgba(120, 80, 255, 0.08)) 0%, transparent 65%);
|
||
filter: blur(65px);
|
||
animation: mesh-aura-b 20s ease-in-out infinite;
|
||
animation-delay: 350ms;
|
||
}
|
||
|
||
/* ── Artist portrait — right half, object-fit: contain ── */
|
||
.fs-portrait-wrap {
|
||
position: absolute;
|
||
right: 4vw;
|
||
top: 4vw;
|
||
bottom: 8vw;
|
||
width: 46%;
|
||
z-index: 1;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
pointer-events: none;
|
||
border-radius: 12px;
|
||
overflow: hidden;
|
||
transform: translateZ(0);
|
||
/* Fade left edge to blend into the dark mesh */
|
||
-webkit-mask-image: linear-gradient(
|
||
to right,
|
||
transparent 0%,
|
||
rgba(0, 0, 0, 0.45) 18%,
|
||
rgba(0, 0, 0, 0.85) 40%,
|
||
#000 60%
|
||
);
|
||
mask-image: linear-gradient(
|
||
to right,
|
||
transparent 0%,
|
||
rgba(0, 0, 0, 0.45) 18%,
|
||
rgba(0, 0, 0, 0.85) 40%,
|
||
#000 60%
|
||
);
|
||
}
|
||
|
||
.fs-portrait {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: contain;
|
||
object-position: center;
|
||
filter: drop-shadow(-24px 0 48px rgba(0, 0, 0, 0.85));
|
||
transition: opacity 1000ms ease-in-out;
|
||
will-change: transform;
|
||
animation: portrait-drift 22s ease-in-out infinite;
|
||
animation-delay: 350ms;
|
||
display: block;
|
||
}
|
||
|
||
/* ── Horizontal scrim — dark left edge for text legibility ── */
|
||
.fs-scrim {
|
||
position: absolute;
|
||
inset: 0;
|
||
z-index: 2;
|
||
pointer-events: none;
|
||
background: linear-gradient(
|
||
to right,
|
||
rgba(6, 6, 14, 0.88) 0%,
|
||
rgba(6, 6, 14, 0.65) 32%,
|
||
rgba(6, 6, 14, 0.18) 58%,
|
||
transparent 78%
|
||
);
|
||
}
|
||
|
||
/* ── Close button ── */
|
||
.fs-close {
|
||
position: absolute;
|
||
top: 20px;
|
||
left: 24px;
|
||
z-index: 10;
|
||
width: 44px;
|
||
height: 44px;
|
||
border-radius: 50%;
|
||
background: rgba(255, 255, 255, 0.08);
|
||
backdrop-filter: blur(8px);
|
||
color: rgba(255, 255, 255, 0.7);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
transition: all var(--transition-fast);
|
||
cursor: pointer;
|
||
}
|
||
|
||
.fs-close:hover {
|
||
background: rgba(255, 255, 255, 0.18);
|
||
color: #ffffff;
|
||
transform: translateY(-1px);
|
||
}
|
||
|
||
/* ── Info cluster — bottom-left quadrant ── */
|
||
.fs-cluster {
|
||
position: absolute;
|
||
bottom: 72px;
|
||
left: clamp(28px, 4vw, 64px);
|
||
z-index: 3;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 12px;
|
||
max-width: 85vw;
|
||
}
|
||
|
||
/* Album art — small, rounded, glowing */
|
||
.fs-art-wrap {
|
||
width: clamp(120px, 10vw, 180px);
|
||
height: clamp(120px, 10vw, 180px);
|
||
border-radius: 12px;
|
||
overflow: hidden;
|
||
flex-shrink: 0;
|
||
box-shadow:
|
||
0 8px 32px rgba(0, 0, 0, 0.7),
|
||
0 0 0 1px rgba(255, 255, 255, 0.07),
|
||
0 0 28px var(--accent-glow, var(--accent));
|
||
}
|
||
|
||
.fs-art {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
display: block;
|
||
}
|
||
|
||
.fs-art-placeholder {
|
||
width: 100%;
|
||
height: 100%;
|
||
background: rgba(255, 255, 255, 0.06);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: rgba(255, 255, 255, 0.3);
|
||
}
|
||
|
||
/* Artist name — massive, font-black, uppercase, wraps gracefully */
|
||
.fs-artist-name {
|
||
font-family: var(--font-display);
|
||
font-size: clamp(28px, 4.5vw, 68px);
|
||
font-weight: 900;
|
||
text-transform: uppercase;
|
||
letter-spacing: -0.02em;
|
||
color: #ffffff;
|
||
margin: 0;
|
||
line-height: 1.05;
|
||
text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
|
||
white-space: normal;
|
||
word-wrap: break-word;
|
||
overflow-wrap: break-word;
|
||
}
|
||
|
||
/* Track title — large, light, accent color, wraps gracefully */
|
||
.fs-track-title {
|
||
font-family: var(--font-display);
|
||
font-size: clamp(18px, 2.6vw, 40px);
|
||
font-weight: 300;
|
||
color: var(--accent);
|
||
margin: 0;
|
||
line-height: 1.2;
|
||
white-space: normal;
|
||
word-wrap: break-word;
|
||
overflow-wrap: break-word;
|
||
}
|
||
|
||
/* Metadata row */
|
||
.fs-meta {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
flex-wrap: wrap;
|
||
font-size: clamp(11px, 1vw, 13px);
|
||
color: rgba(255, 255, 255, 0.5);
|
||
}
|
||
|
||
.fs-meta-dot {
|
||
opacity: 0.4;
|
||
}
|
||
|
||
/* Controls row — left-aligned */
|
||
.fs-controls {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
margin-top: 4px;
|
||
}
|
||
|
||
.fs-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 36px;
|
||
height: 36px;
|
||
border-radius: 50%;
|
||
color: rgba(255, 255, 255, 0.65);
|
||
cursor: pointer;
|
||
transition: all var(--transition-fast);
|
||
background: transparent;
|
||
}
|
||
|
||
.fs-btn:hover {
|
||
color: #ffffff;
|
||
background: rgba(255, 255, 255, 0.1);
|
||
transform: scale(1.1);
|
||
}
|
||
|
||
.fs-btn.active {
|
||
color: var(--accent);
|
||
}
|
||
|
||
.fs-btn-sm {
|
||
width: 28px;
|
||
height: 28px;
|
||
}
|
||
|
||
.fs-btn-play {
|
||
width: 52px;
|
||
height: 52px;
|
||
background: var(--accent);
|
||
color: var(--ctp-crust);
|
||
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow, var(--accent));
|
||
}
|
||
|
||
.fs-btn-play:hover {
|
||
background: var(--accent);
|
||
color: var(--ctp-crust);
|
||
transform: scale(1.1);
|
||
filter: brightness(1.12);
|
||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 28px var(--accent-glow, var(--accent));
|
||
}
|
||
|
||
.fs-btn-heart:hover,
|
||
.fs-btn-heart.active {
|
||
color: var(--color-star-active, var(--accent));
|
||
background: rgba(255, 255, 255, 0.08);
|
||
}
|
||
|
||
/* ── Full-width seekbar — pinned to bottom edge ── */
|
||
.fs-seekbar-wrap {
|
||
position: absolute;
|
||
bottom: 0;
|
||
left: 0;
|
||
right: 0;
|
||
z-index: 4;
|
||
}
|
||
|
||
.fs-seekbar-times {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
padding: 0 16px 5px;
|
||
font-size: 10px;
|
||
color: rgba(255, 255, 255, 0.35);
|
||
font-variant-numeric: tabular-nums;
|
||
pointer-events: none;
|
||
user-select: none;
|
||
}
|
||
|
||
.fs-seekbar {
|
||
position: relative;
|
||
height: 3px;
|
||
cursor: pointer;
|
||
transition: height 120ms ease;
|
||
}
|
||
|
||
.fs-seekbar:hover {
|
||
height: 5px;
|
||
}
|
||
|
||
.fs-seekbar-bg {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: rgba(255, 255, 255, 0.08);
|
||
}
|
||
|
||
.fs-seekbar-buf {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
bottom: 0;
|
||
background: rgba(255, 255, 255, 0.18);
|
||
pointer-events: none;
|
||
}
|
||
|
||
.fs-seekbar-played {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
bottom: 0;
|
||
background: var(--accent);
|
||
box-shadow: 0 0 15px var(--accent-glow, var(--accent));
|
||
pointer-events: none;
|
||
}
|
||
|
||
.fs-seekbar input[type="range"] {
|
||
position: absolute;
|
||
inset: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
opacity: 0;
|
||
cursor: pointer;
|
||
margin: 0;
|
||
padding: 0;
|
||
-webkit-appearance: none;
|
||
appearance: none;
|
||
}
|
||
|
||
/* Chat */
|
||
.chat-popup {
|
||
position: absolute;
|
||
width: 340px;
|
||
height: 480px;
|
||
background: var(--bg-card);
|
||
backdrop-filter: blur(12px);
|
||
border: 1px solid var(--border);
|
||
border-radius: 12px;
|
||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
|
||
display: flex;
|
||
flex-direction: column;
|
||
z-index: 9999;
|
||
overflow: hidden;
|
||
animation: slideInDown 0.2s ease-out;
|
||
}
|
||
|
||
@keyframes slideInDown {
|
||
from {
|
||
opacity: 0;
|
||
transform: translateY(-10px);
|
||
}
|
||
|
||
to {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
.chat-popup-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding: 12px 16px;
|
||
border-bottom: 1px solid var(--border);
|
||
background: var(--surface1);
|
||
}
|
||
|
||
.chat-popup-messages {
|
||
flex: 1;
|
||
overflow-y: auto;
|
||
padding: 16px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 12px;
|
||
}
|
||
|
||
.chat-message-row {
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
|
||
.chat-message-row.me {
|
||
align-items: flex-end;
|
||
}
|
||
|
||
.chat-message-row.other {
|
||
align-items: flex-start;
|
||
}
|
||
|
||
.chat-message-bubble {
|
||
max-width: 85%;
|
||
padding: 8px 12px;
|
||
border-radius: 12px;
|
||
font-size: 0.95rem;
|
||
line-height: 1.4;
|
||
word-break: break-word;
|
||
}
|
||
|
||
.chat-message-row.me .chat-message-bubble {
|
||
background: var(--accent);
|
||
color: var(--mantle);
|
||
border-bottom-right-radius: 4px;
|
||
}
|
||
|
||
.chat-message-row.other .chat-message-bubble {
|
||
background: var(--surface2);
|
||
color: var(--text);
|
||
border-bottom-left-radius: 4px;
|
||
}
|
||
|
||
.chat-message-author {
|
||
font-size: 0.75rem;
|
||
font-weight: 600;
|
||
margin-bottom: 2px;
|
||
opacity: 0.8;
|
||
}
|
||
|
||
.chat-message-time {
|
||
font-size: 0.7rem;
|
||
margin-top: 4px;
|
||
text-align: right;
|
||
opacity: 0.7;
|
||
}
|
||
|
||
.chat-popup-input {
|
||
display: flex;
|
||
padding: 12px;
|
||
border-top: 1px solid var(--border);
|
||
background: var(--surface1);
|
||
gap: 8px;
|
||
}
|
||
|
||
.chat-popup-input input {
|
||
flex: 1;
|
||
background: var(--crust);
|
||
border: 1px solid var(--border);
|
||
border-radius: 20px;
|
||
padding: 8px 16px;
|
||
color: var(--text);
|
||
outline: none;
|
||
transition: border-color 0.2s;
|
||
}
|
||
|
||
.chat-popup-input input:focus {
|
||
border-color: var(--accent);
|
||
}
|
||
|
||
.chat-popup-input button {
|
||
background: var(--accent);
|
||
color: var(--mantle);
|
||
border: none;
|
||
width: 36px;
|
||
height: 36px;
|
||
border-radius: 50%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
cursor: pointer;
|
||
transition: opacity 0.2s;
|
||
}
|
||
|
||
.chat-popup-input button:disabled {
|
||
opacity: 0.5;
|
||
cursor: not-allowed;
|
||
}
|
||
|
||
/* ─ Context Menu ─ */
|
||
.context-menu {
|
||
position: fixed;
|
||
z-index: 10000;
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius-md);
|
||
padding: var(--space-1) 0;
|
||
min-width: 200px;
|
||
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
|
||
backdrop-filter: blur(16px);
|
||
color: var(--text-primary);
|
||
font-size: 13px;
|
||
}
|
||
|
||
.context-menu-item {
|
||
padding: var(--space-2) var(--space-4);
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-2);
|
||
cursor: pointer;
|
||
transition: background var(--transition-fast);
|
||
}
|
||
|
||
.context-menu-item:hover {
|
||
background: var(--surface-2);
|
||
color: var(--accent);
|
||
}
|
||
|
||
.context-menu-divider {
|
||
height: 1px;
|
||
background: var(--border-subtle);
|
||
margin: var(--space-1) 0;
|
||
}
|
||
|
||
/* ─ CSS Tooltips ─ */
|
||
/* Tooltips are handled by TooltipPortal (React portal) — no CSS pseudo-elements needed */
|
||
[data-tooltip] {
|
||
position: relative;
|
||
}
|
||
|
||
|
||
/* ─ Playlists Page ─ */
|
||
.playlist-page-header {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: 1rem;
|
||
margin-bottom: 1.5rem;
|
||
}
|
||
|
||
.playlist-page-header .page-title {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.playlist-filter-input {
|
||
background: var(--bg-surface);
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius-md);
|
||
color: var(--text-primary);
|
||
font-size: 13px;
|
||
padding: 6px 12px;
|
||
width: 220px;
|
||
outline: none;
|
||
transition: border-color 0.15s;
|
||
}
|
||
|
||
.playlist-filter-input:focus {
|
||
border-color: var(--accent);
|
||
}
|
||
|
||
.playlist-filter-input::placeholder {
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.playlist-list {
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
|
||
.playlist-list-header {
|
||
display: grid;
|
||
grid-template-columns: 36px 1fr 90px 90px 44px;
|
||
gap: var(--space-3);
|
||
padding: 6px var(--space-3);
|
||
border-bottom: 1px solid var(--border-subtle);
|
||
margin-bottom: 4px;
|
||
}
|
||
|
||
.playlist-sort-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
font-size: 11px;
|
||
font-weight: 600;
|
||
letter-spacing: 0.06em;
|
||
text-transform: uppercase;
|
||
color: var(--text-muted);
|
||
background: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
padding: 0;
|
||
transition: color 0.15s;
|
||
}
|
||
|
||
.playlist-sort-btn:hover,
|
||
.playlist-sort-btn.active {
|
||
color: var(--accent);
|
||
}
|
||
|
||
.playlist-row {
|
||
display: grid;
|
||
grid-template-columns: 36px 1fr 90px 90px 44px;
|
||
gap: var(--space-3);
|
||
align-items: center;
|
||
padding: 6px var(--space-3);
|
||
border-radius: var(--radius-md);
|
||
transition: background 0.15s;
|
||
user-select: none;
|
||
}
|
||
|
||
.playlist-row:hover {
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.playlist-play-icon {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 28px;
|
||
height: 28px;
|
||
border-radius: 50%;
|
||
background: var(--accent);
|
||
color: var(--ctp-base);
|
||
border: none;
|
||
cursor: pointer;
|
||
opacity: 0;
|
||
transition: opacity 0.15s, transform 0.15s;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.playlist-row:hover .playlist-play-icon {
|
||
opacity: 1;
|
||
}
|
||
|
||
.playlist-play-icon:hover {
|
||
transform: scale(1.1);
|
||
}
|
||
|
||
.playlist-name {
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.playlist-meta {
|
||
font-size: 12px;
|
||
color: var(--text-muted);
|
||
font-variant-numeric: tabular-nums;
|
||
}
|
||
|
||
.playlist-delete-btn {
|
||
opacity: 0;
|
||
color: var(--ctp-red) !important;
|
||
padding: 4px;
|
||
height: auto;
|
||
min-height: unset;
|
||
transition: opacity 0.15s;
|
||
justify-self: center;
|
||
}
|
||
|
||
.playlist-row:hover .playlist-delete-btn {
|
||
opacity: 1;
|
||
}
|
||
|
||
.fav-remove-btn {
|
||
opacity: 0;
|
||
color: var(--text-muted);
|
||
background: none;
|
||
border: none;
|
||
padding: 4px;
|
||
cursor: pointer;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
border-radius: var(--radius-sm);
|
||
transition: opacity 0.15s, color 0.15s;
|
||
}
|
||
|
||
.fav-remove-btn:hover {
|
||
color: var(--ctp-red);
|
||
}
|
||
|
||
.track-row:hover .fav-remove-btn,
|
||
.track-row.context-active .fav-remove-btn {
|
||
opacity: 1;
|
||
}
|
||
|
||
/* ─ Statistics Page ─ */
|
||
.stats-page {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 3rem;
|
||
}
|
||
|
||
.stats-overview {
|
||
display: grid;
|
||
grid-template-columns: repeat(3, 1fr);
|
||
gap: var(--space-4);
|
||
}
|
||
|
||
@media (max-width: 600px) {
|
||
.stats-overview {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
}
|
||
}
|
||
|
||
.stats-card {
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border-subtle);
|
||
border-radius: var(--radius-lg);
|
||
padding: var(--space-5) var(--space-4);
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 4px;
|
||
align-items: center;
|
||
text-align: center;
|
||
}
|
||
|
||
.stats-card-value {
|
||
font-family: var(--font-display);
|
||
font-size: 2rem;
|
||
font-weight: 800;
|
||
color: var(--accent);
|
||
line-height: 1;
|
||
}
|
||
|
||
.stats-card-label {
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
letter-spacing: 0.06em;
|
||
text-transform: uppercase;
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
/* Genre chart */
|
||
.genre-chart {
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border-subtle);
|
||
border-radius: var(--radius-lg);
|
||
padding: var(--space-5);
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: var(--space-4);
|
||
}
|
||
|
||
.genre-row {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 6px;
|
||
}
|
||
|
||
.genre-row-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: baseline;
|
||
gap: var(--space-3);
|
||
}
|
||
|
||
.genre-name {
|
||
font-size: 13px;
|
||
font-weight: 500;
|
||
color: var(--text-primary);
|
||
min-width: 0;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.genre-counts {
|
||
font-size: 12px;
|
||
color: var(--text-muted);
|
||
white-space: nowrap;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.genre-bar-track {
|
||
width: 100%;
|
||
height: 6px;
|
||
background: var(--bg-hover);
|
||
border-radius: 3px;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.genre-bar-fill {
|
||
height: 100%;
|
||
background: var(--accent);
|
||
border-radius: 3px;
|
||
transition: width 0.8s ease-out;
|
||
}
|
||
|
||
/* ─ Connection Indicator ─ */
|
||
.connection-indicator {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.connection-led {
|
||
width: 9px;
|
||
height: 9px;
|
||
border-radius: 50%;
|
||
flex-shrink: 0;
|
||
transition: background 0.4s ease, box-shadow 0.4s ease;
|
||
}
|
||
|
||
.connection-led--connected {
|
||
background: #a6e3a1;
|
||
box-shadow: 0 0 6px 2px rgba(166, 227, 161, 0.55);
|
||
}
|
||
|
||
.connection-led--disconnected {
|
||
background: #f38ba8;
|
||
box-shadow: 0 0 6px 2px rgba(243, 139, 168, 0.55);
|
||
}
|
||
|
||
.connection-led--checking {
|
||
background: var(--text-muted);
|
||
box-shadow: none;
|
||
animation: led-pulse 1.2s ease-in-out infinite;
|
||
}
|
||
|
||
@keyframes led-pulse {
|
||
|
||
0%,
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
|
||
50% {
|
||
opacity: 0.3;
|
||
}
|
||
}
|
||
|
||
.connection-meta {
|
||
display: flex;
|
||
flex-direction: column;
|
||
line-height: 1.2;
|
||
}
|
||
|
||
.connection-type {
|
||
font-size: 11px;
|
||
font-weight: 600;
|
||
color: var(--text-primary);
|
||
letter-spacing: 0.03em;
|
||
}
|
||
|
||
.connection-server {
|
||
font-size: 10px;
|
||
color: var(--text-muted);
|
||
max-width: 100px;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
/* ─ Offline Overlay ─ */
|
||
.offline-overlay {
|
||
position: absolute;
|
||
inset: 0;
|
||
z-index: 50;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: rgba(0, 0, 0, 0.55);
|
||
backdrop-filter: blur(6px);
|
||
-webkit-backdrop-filter: blur(6px);
|
||
}
|
||
|
||
.offline-overlay-card {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 16px;
|
||
padding: 40px 48px;
|
||
background: var(--bg-app);
|
||
border: 1px solid var(--border-subtle);
|
||
border-radius: 16px;
|
||
text-align: center;
|
||
max-width: 360px;
|
||
}
|
||
|
||
.offline-icon {
|
||
color: var(--text-muted);
|
||
opacity: 0.7;
|
||
}
|
||
|
||
.offline-title {
|
||
font-size: 20px;
|
||
font-weight: 600;
|
||
color: var(--text-primary);
|
||
margin: 0;
|
||
}
|
||
|
||
.offline-subtitle {
|
||
font-size: 14px;
|
||
color: var(--text-muted);
|
||
margin: 0;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
.offline-retry {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
margin-top: 4px;
|
||
}
|
||
|
||
.spin {
|
||
animation: spin 1s linear infinite;
|
||
}
|
||
|
||
@keyframes spin {
|
||
from {
|
||
transform: rotate(0deg);
|
||
}
|
||
|
||
to {
|
||
transform: rotate(360deg);
|
||
}
|
||
}
|
||
|
||
/* ─ Now Playing Page ─ */
|
||
/* ─── Now Playing Page ─────────────────────────────────────── */
|
||
.np-page {
|
||
position: relative;
|
||
height: 100%;
|
||
overflow: hidden;
|
||
display: flex;
|
||
flex-direction: column;
|
||
background:
|
||
radial-gradient(ellipse at 20% 0%, color-mix(in srgb, var(--accent) 10%, var(--bg-main)) 0%, transparent 60%),
|
||
radial-gradient(ellipse at 80% 100%, color-mix(in srgb, var(--ctp-blue) 8%, var(--bg-main)) 0%, transparent 60%),
|
||
var(--bg-main);
|
||
}
|
||
|
||
/* Main scrollable content */
|
||
.np-main {
|
||
flex: 1;
|
||
overflow-y: auto;
|
||
padding: 28px 28px 40px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 18px;
|
||
min-width: 0;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
|
||
/* ── Hero card: 3-column (cover+info | EQ | tag cloud) ── */
|
||
.np-hero-card {
|
||
display: grid;
|
||
grid-template-columns: 1fr auto 1fr;
|
||
align-items: center;
|
||
gap: 28px;
|
||
padding: 32px;
|
||
background: rgba(0, 0, 0, 0.30);
|
||
backdrop-filter: blur(12px);
|
||
-webkit-backdrop-filter: blur(12px);
|
||
border-radius: var(--radius-lg);
|
||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
/* Left column: meta info, big text */
|
||
.np-hero-left {
|
||
min-width: 0;
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.np-hero-cover-wrap {
|
||
flex-shrink: 0;
|
||
position: relative;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.np-hero-info {
|
||
flex: 1;
|
||
min-width: 0;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 14px;
|
||
justify-content: center;
|
||
}
|
||
|
||
/* Right column: tag cloud */
|
||
.np-tag-cloud {
|
||
min-width: 0;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-end;
|
||
justify-content: center;
|
||
gap: 0;
|
||
}
|
||
|
||
.np-tag-cloud-tags {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 8px 10px;
|
||
justify-content: flex-end;
|
||
align-items: center;
|
||
overflow: visible;
|
||
}
|
||
|
||
.np-tag-cloud-header {
|
||
width: 100%;
|
||
font-size: 11px;
|
||
font-weight: 700;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.1em;
|
||
color: rgba(255, 255, 255, 0.4);
|
||
margin-bottom: 10px;
|
||
text-align: right;
|
||
}
|
||
|
||
.np-tag {
|
||
font-size: 13px;
|
||
font-weight: 600;
|
||
padding: 6px 14px;
|
||
border-radius: 999px;
|
||
background: rgba(255, 255, 255, 0.10);
|
||
color: rgba(255, 255, 255, 0.75);
|
||
letter-spacing: 0.03em;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.np-tag-accent {
|
||
background: color-mix(in srgb, var(--accent) 22%, transparent);
|
||
color: var(--accent);
|
||
}
|
||
|
||
.np-tag-clickable {
|
||
cursor: pointer;
|
||
transition: background 0.15s, color 0.15s;
|
||
}
|
||
.np-tag-clickable:hover {
|
||
background: color-mix(in srgb, var(--accent) 30%, transparent);
|
||
color: white;
|
||
}
|
||
|
||
/* ── Info cards (artist / album) ── */
|
||
.np-info-card {
|
||
background: rgba(0, 0, 0, 0.22);
|
||
backdrop-filter: blur(10px);
|
||
-webkit-backdrop-filter: blur(10px);
|
||
border-radius: var(--radius-lg);
|
||
border: 1px solid rgba(255, 255, 255, 0.07);
|
||
padding: 20px 24px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 14px;
|
||
}
|
||
|
||
.np-card-header {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: 12px;
|
||
}
|
||
|
||
.np-card-title {
|
||
font-size: 13px;
|
||
font-weight: 700;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.07em;
|
||
color: rgba(255, 255, 255, 0.70);
|
||
margin: 0;
|
||
}
|
||
|
||
.np-card-link {
|
||
background: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
font-size: 12px;
|
||
color: var(--accent);
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
padding: 0;
|
||
flex-shrink: 0;
|
||
transition: opacity 0.15s;
|
||
}
|
||
.np-card-link:hover { opacity: 0.75; }
|
||
|
||
/* ── Artist bio ── */
|
||
.np-artist-bio-row {
|
||
display: flex;
|
||
gap: 16px;
|
||
align-items: flex-start;
|
||
}
|
||
|
||
.np-artist-thumb {
|
||
width: 80px;
|
||
height: 80px;
|
||
border-radius: var(--radius-md);
|
||
object-fit: cover;
|
||
flex-shrink: 0;
|
||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
|
||
}
|
||
|
||
.np-bio-wrap {
|
||
flex: 1;
|
||
min-width: 0;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 8px;
|
||
}
|
||
|
||
.np-bio-text {
|
||
font-size: 13px;
|
||
line-height: 1.65;
|
||
color: rgba(255, 255, 255, 0.72);
|
||
user-select: text;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 4;
|
||
-webkit-box-orient: vertical;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.np-bio-text.expanded {
|
||
display: block;
|
||
overflow: visible;
|
||
-webkit-line-clamp: unset;
|
||
}
|
||
|
||
.np-bio-text a { color: var(--accent); }
|
||
|
||
.np-bio-toggle {
|
||
background: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
font-size: 12px;
|
||
color: var(--accent);
|
||
padding: 0;
|
||
align-self: flex-start;
|
||
opacity: 0.8;
|
||
}
|
||
.np-bio-toggle:hover { opacity: 1; }
|
||
|
||
/* ── Album tracklist ── */
|
||
.np-album-tracklist {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 1px;
|
||
}
|
||
|
||
.np-album-track {
|
||
display: grid;
|
||
grid-template-columns: 28px 1fr 44px;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 7px 8px;
|
||
border-radius: var(--radius-sm);
|
||
cursor: pointer;
|
||
transition: background 0.12s;
|
||
}
|
||
.np-album-track:hover {
|
||
background: rgba(255, 255, 255, 0.06);
|
||
}
|
||
.np-album-track.active {
|
||
background: rgba(255, 255, 255, 0.08);
|
||
}
|
||
|
||
.np-album-track-num {
|
||
font-size: 12px;
|
||
color: rgba(255, 255, 255, 0.55);
|
||
text-align: right;
|
||
font-variant-numeric: tabular-nums;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: flex-end;
|
||
}
|
||
.np-album-track.active .np-album-track-num {
|
||
color: var(--accent);
|
||
}
|
||
|
||
.np-album-track-title {
|
||
font-size: 13px;
|
||
color: rgba(255, 255, 255, 0.80);
|
||
}
|
||
.np-album-track.active .np-album-track-title {
|
||
color: var(--accent);
|
||
font-weight: 600;
|
||
}
|
||
|
||
.np-album-track-dur {
|
||
font-size: 12px;
|
||
color: rgba(255, 255, 255, 0.65);
|
||
font-variant-numeric: tabular-nums;
|
||
text-align: right;
|
||
}
|
||
|
||
/* ── Queue Sidebar ── */
|
||
.np-queue-sidebar {
|
||
width: 260px;
|
||
flex-shrink: 0;
|
||
display: flex;
|
||
flex-direction: column;
|
||
overflow: hidden;
|
||
border-left: 1px solid rgba(255, 255, 255, 0.07);
|
||
background: rgba(0, 0, 0, 0.28);
|
||
backdrop-filter: blur(14px);
|
||
-webkit-backdrop-filter: blur(14px);
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
|
||
.np-qs-header {
|
||
padding: 16px 14px 12px;
|
||
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: 8px;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.np-qs-title {
|
||
font-size: 13px;
|
||
font-weight: 700;
|
||
color: white;
|
||
}
|
||
|
||
.np-qs-meta {
|
||
font-size: 11px;
|
||
color: rgba(255, 255, 255, 0.40);
|
||
margin-top: 2px;
|
||
}
|
||
|
||
.np-qs-actions {
|
||
display: flex;
|
||
gap: 2px;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.np-qs-list {
|
||
flex: 1;
|
||
overflow-y: auto;
|
||
padding: 6px 0;
|
||
}
|
||
|
||
.np-qs-item {
|
||
display: grid;
|
||
grid-template-columns: 26px 1fr 36px 22px;
|
||
align-items: center;
|
||
gap: 6px;
|
||
padding: 6px 10px 6px 12px;
|
||
cursor: pointer;
|
||
transition: background 0.1s;
|
||
}
|
||
.np-qs-item:hover,
|
||
.np-qs-item.context-active {
|
||
background: rgba(255, 255, 255, 0.06);
|
||
}
|
||
.np-qs-item.active {
|
||
background: rgba(255, 255, 255, 0.08);
|
||
}
|
||
|
||
.np-qs-num {
|
||
font-size: 11px;
|
||
color: rgba(255, 255, 255, 0.30);
|
||
text-align: right;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: flex-end;
|
||
font-variant-numeric: tabular-nums;
|
||
}
|
||
|
||
.np-qs-info {
|
||
min-width: 0;
|
||
}
|
||
|
||
.np-qs-track-title {
|
||
font-size: 12px;
|
||
color: rgba(255, 255, 255, 0.80);
|
||
line-height: 1.3;
|
||
}
|
||
.np-qs-track-title.active {
|
||
color: var(--accent);
|
||
font-weight: 600;
|
||
}
|
||
|
||
.np-qs-track-artist {
|
||
font-size: 11px;
|
||
color: rgba(255, 255, 255, 0.35);
|
||
margin-top: 1px;
|
||
}
|
||
|
||
.np-qs-dur {
|
||
font-size: 11px;
|
||
color: rgba(255, 255, 255, 0.30);
|
||
font-variant-numeric: tabular-nums;
|
||
text-align: right;
|
||
}
|
||
|
||
/* ── Shared np- classes (kept) ── */
|
||
/* Hero (old, kept for NpBg) */
|
||
.np-hero {
|
||
position: relative;
|
||
min-height: 280px;
|
||
display: flex;
|
||
align-items: center;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
|
||
.np-hero-content {
|
||
position: relative;
|
||
z-index: 1;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
text-align: center;
|
||
gap: 16px;
|
||
padding: 28px 56px 32px;
|
||
width: 100%;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
/* Cover */
|
||
.np-cover-wrap {
|
||
flex-shrink: 0;
|
||
position: relative;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.np-cover {
|
||
position: relative;
|
||
z-index: 1;
|
||
width: 280px;
|
||
height: 280px;
|
||
border-radius: 16px;
|
||
object-fit: cover;
|
||
}
|
||
|
||
.np-cover-fallback {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: var(--bg-hover);
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
/* Info column (legacy, kept for compat) */
|
||
.np-info {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 10px;
|
||
color: white;
|
||
max-width: 600px;
|
||
}
|
||
|
||
.np-title {
|
||
font-family: var(--font-display);
|
||
font-size: 36px;
|
||
font-weight: 700;
|
||
line-height: 1.15;
|
||
color: white;
|
||
}
|
||
|
||
.np-artist-album {
|
||
font-size: 19px;
|
||
color: rgba(255, 255, 255, 0.75);
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
justify-content: flex-start;
|
||
gap: 6px;
|
||
align-items: center;
|
||
}
|
||
|
||
.np-link:hover {
|
||
color: white;
|
||
text-decoration: underline;
|
||
}
|
||
|
||
.np-sep {
|
||
opacity: 0.4;
|
||
}
|
||
|
||
.np-tech-row {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
justify-content: flex-start;
|
||
gap: 8px;
|
||
align-items: center;
|
||
margin-top: 4px;
|
||
}
|
||
|
||
.np-badge {
|
||
font-size: 11px;
|
||
font-weight: 600;
|
||
padding: 3px 8px;
|
||
border-radius: 999px;
|
||
background: rgba(255, 255, 255, 0.12);
|
||
color: rgba(255, 255, 255, 0.85);
|
||
letter-spacing: 0.04em;
|
||
}
|
||
|
||
.np-star-btn {
|
||
background: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
padding: 2px;
|
||
display: flex;
|
||
align-items: center;
|
||
color: white;
|
||
transition: transform 0.15s;
|
||
}
|
||
|
||
.np-star-btn:hover {
|
||
transform: scale(1.2);
|
||
}
|
||
|
||
/* Progress */
|
||
.np-progress-wrap {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 10px;
|
||
margin-top: 4px;
|
||
}
|
||
|
||
.np-waveform {
|
||
flex: 1;
|
||
}
|
||
|
||
.np-time {
|
||
font-size: 12px;
|
||
color: rgba(255, 255, 255, 0.6);
|
||
font-variant-numeric: tabular-nums;
|
||
flex-shrink: 0;
|
||
min-width: 36px;
|
||
}
|
||
|
||
/* Controls */
|
||
.np-controls {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
margin-top: 4px;
|
||
}
|
||
|
||
.np-ctrl-btn {
|
||
background: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
color: rgba(255, 255, 255, 0.75);
|
||
display: flex;
|
||
align-items: center;
|
||
padding: 6px;
|
||
border-radius: 50%;
|
||
transition: color 0.15s, background 0.15s;
|
||
}
|
||
|
||
.np-ctrl-btn:hover {
|
||
color: white;
|
||
background: rgba(255, 255, 255, 0.1);
|
||
}
|
||
|
||
.np-ctrl-btn:disabled {
|
||
opacity: 0.3;
|
||
cursor: default;
|
||
}
|
||
|
||
.np-ctrl-btn.np-ctrl-active {
|
||
color: var(--accent);
|
||
}
|
||
|
||
.np-ctrl-lg {
|
||
color: rgba(255, 255, 255, 0.9);
|
||
}
|
||
|
||
.np-ctrl-play {
|
||
width: 60px;
|
||
height: 60px;
|
||
border-radius: 50%;
|
||
background: white;
|
||
color: var(--bg-app);
|
||
border: none;
|
||
cursor: pointer;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
transition: transform 0.15s, box-shadow 0.15s;
|
||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
||
}
|
||
|
||
.np-ctrl-play:hover {
|
||
transform: scale(1.07);
|
||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
|
||
}
|
||
|
||
/* Volume */
|
||
.np-volume-row {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
}
|
||
|
||
.np-volume-slider {
|
||
width: 120px;
|
||
accent-color: white;
|
||
opacity: 0.7;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.np-volume-slider:hover {
|
||
opacity: 1;
|
||
}
|
||
|
||
.np-empty-state {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 12px;
|
||
color: rgba(255, 255, 255, 0.5);
|
||
padding: 40px 0;
|
||
}
|
||
|
||
/* Queue section */
|
||
.np-queue-section {
|
||
flex: 1;
|
||
padding: 144px 56px 40px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 0;
|
||
}
|
||
|
||
.np-queue-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding-bottom: 12px;
|
||
border-bottom: 1px solid var(--border-subtle);
|
||
margin-bottom: 4px;
|
||
}
|
||
|
||
.np-queue-title {
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: var(--text-primary);
|
||
margin: 0;
|
||
}
|
||
|
||
.np-queue-meta {
|
||
font-size: 11px;
|
||
color: var(--text-muted);
|
||
margin-top: 2px;
|
||
}
|
||
|
||
.np-queue-actions {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
}
|
||
|
||
.np-action-btn {
|
||
background: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
color: var(--text-muted);
|
||
padding: 6px 8px;
|
||
border-radius: var(--radius-sm);
|
||
display: flex;
|
||
align-items: center;
|
||
transition: color 0.15s, background 0.15s;
|
||
}
|
||
|
||
.np-action-btn:hover {
|
||
color: var(--text-primary);
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.np-action-btn:disabled {
|
||
opacity: 0.3;
|
||
cursor: default;
|
||
}
|
||
|
||
/* Queue list */
|
||
.np-queue-list {
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
|
||
.np-queue-item {
|
||
display: grid;
|
||
grid-template-columns: 36px 1fr auto 28px;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 8px 10px;
|
||
border-radius: var(--radius-md);
|
||
cursor: pointer;
|
||
transition: background 0.12s;
|
||
user-select: none;
|
||
}
|
||
|
||
.np-queue-item:hover,
|
||
.np-queue-item.context-active {
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.np-queue-item.active {
|
||
background: color-mix(in srgb, var(--accent) 10%, transparent);
|
||
}
|
||
|
||
.np-queue-num {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 12px;
|
||
color: var(--text-muted);
|
||
font-variant-numeric: tabular-nums;
|
||
min-width: 24px;
|
||
}
|
||
|
||
.np-queue-item-info {
|
||
min-width: 0;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 2px;
|
||
}
|
||
|
||
.np-queue-item-title {
|
||
font-size: 13px;
|
||
font-weight: 500;
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.np-queue-item-active {
|
||
color: var(--accent);
|
||
}
|
||
|
||
.np-queue-item-artist {
|
||
font-size: 11px;
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.np-queue-item-duration {
|
||
font-size: 12px;
|
||
color: var(--text-muted);
|
||
font-variant-numeric: tabular-nums;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.np-queue-remove {
|
||
background: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
color: var(--text-muted);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
border-radius: 50%;
|
||
width: 24px;
|
||
height: 24px;
|
||
opacity: 0;
|
||
transition: opacity 0.12s, color 0.12s, background 0.12s;
|
||
}
|
||
|
||
.np-queue-item:hover .np-queue-remove {
|
||
opacity: 1;
|
||
}
|
||
|
||
.np-queue-remove:hover {
|
||
color: var(--ctp-red);
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
/* ─ Equalizer ─ */
|
||
.eq-wrap {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 10px;
|
||
max-width: 660px;
|
||
}
|
||
|
||
.eq-controls-bar {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: 12px;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.eq-toggle-label {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 0;
|
||
font-size: 13px;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.eq-preset-row {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
}
|
||
|
||
.eq-preset-select {
|
||
padding: 5px 10px;
|
||
font-size: 12px;
|
||
min-width: 140px;
|
||
}
|
||
|
||
/* ─ Custom Select ─ */
|
||
.custom-select-trigger {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: 0.5rem;
|
||
width: 100%;
|
||
padding: 0.5rem 0.75rem;
|
||
background: var(--bg-input);
|
||
border: 1px solid var(--border-dropdown, var(--border));
|
||
border-radius: var(--radius-sm);
|
||
color: var(--text-primary);
|
||
font-size: 0.875rem;
|
||
cursor: pointer;
|
||
text-align: left;
|
||
transition: border-color 0.15s, background 0.15s;
|
||
}
|
||
.custom-select-trigger:hover {
|
||
border-color: var(--accent);
|
||
background: var(--bg-hover);
|
||
}
|
||
.custom-select-trigger:focus-visible {
|
||
outline: 2px solid var(--accent);
|
||
outline-offset: 2px;
|
||
}
|
||
.custom-select-label {
|
||
flex: 1;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
.custom-select-chevron {
|
||
flex-shrink: 0;
|
||
color: var(--text-muted);
|
||
transition: transform 0.2s ease;
|
||
}
|
||
.custom-select-chevron.open {
|
||
transform: rotate(180deg);
|
||
}
|
||
.custom-select-dropdown {
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border-dropdown, var(--border));
|
||
border-radius: var(--radius-md);
|
||
box-shadow: 0 8px 32px var(--shadow-dropdown, rgba(0, 0, 0, 0.4));
|
||
overflow-y: auto;
|
||
overscroll-behavior: contain;
|
||
}
|
||
.custom-select-option {
|
||
padding: 0.5rem 0.75rem;
|
||
font-size: 0.875rem;
|
||
color: var(--text-primary);
|
||
cursor: pointer;
|
||
transition: background 0.1s;
|
||
}
|
||
.custom-select-option:hover {
|
||
background: var(--bg-hover);
|
||
}
|
||
.custom-select-option.selected {
|
||
color: var(--accent);
|
||
font-weight: 600;
|
||
background: color-mix(in srgb, var(--accent) 8%, transparent);
|
||
}
|
||
.custom-select-option.disabled {
|
||
color: var(--text-muted);
|
||
cursor: default;
|
||
}
|
||
.custom-select-group-label {
|
||
padding: 0.375rem 0.75rem 0.25rem;
|
||
font-size: 0.7rem;
|
||
font-weight: 700;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.08em;
|
||
color: var(--text-muted);
|
||
border-top: 1px solid var(--border-subtle);
|
||
margin-top: 0.25rem;
|
||
}
|
||
.custom-select-group-label:first-child {
|
||
border-top: none;
|
||
margin-top: 0;
|
||
}
|
||
|
||
.eq-ctrl-btn {
|
||
background: var(--bg-hover);
|
||
border: 1px solid var(--border);
|
||
border-radius: 6px;
|
||
color: var(--text-secondary);
|
||
cursor: pointer;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 28px;
|
||
height: 28px;
|
||
transition: background 0.15s, color 0.15s;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.eq-ctrl-btn:hover {
|
||
background: var(--accent);
|
||
color: var(--bg-app);
|
||
}
|
||
|
||
.eq-save-row {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
}
|
||
|
||
/* Main EQ panel — canvas area + faders */
|
||
.eq-panel {
|
||
background: var(--bg-app);
|
||
border: 1px solid var(--border);
|
||
border-radius: 10px;
|
||
overflow: hidden;
|
||
transition: opacity 0.2s;
|
||
}
|
||
|
||
.eq-panel--off {
|
||
opacity: 0.4;
|
||
pointer-events: none;
|
||
}
|
||
|
||
.eq-canvas {
|
||
display: block;
|
||
width: 100%;
|
||
height: 120px;
|
||
margin-bottom: 12px;
|
||
}
|
||
|
||
.eq-faders {
|
||
display: flex;
|
||
align-items: stretch;
|
||
padding: 12px 8px 12px;
|
||
gap: 0;
|
||
height: 155px;
|
||
border-top: 1px solid var(--border);
|
||
}
|
||
|
||
/* dB scale on left */
|
||
.eq-db-scale {
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: space-between;
|
||
padding: 0 6px 0 0;
|
||
width: 28px;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.eq-db-tick {
|
||
font-size: 9px;
|
||
color: var(--text-muted);
|
||
font-family: monospace;
|
||
text-align: right;
|
||
line-height: 1;
|
||
}
|
||
|
||
/* Individual band column */
|
||
.eq-band {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 4px;
|
||
flex: 1;
|
||
min-width: 0;
|
||
}
|
||
|
||
.eq-gain-val {
|
||
font-size: 9px;
|
||
color: var(--text-muted);
|
||
font-family: monospace;
|
||
font-variant-numeric: tabular-nums;
|
||
line-height: 1;
|
||
height: 12px;
|
||
}
|
||
|
||
/* Fader track — the rotated slider is absolute, so this only needs
|
||
enough height for the visual fader length. */
|
||
.eq-fader-track {
|
||
position: relative;
|
||
flex: 1;
|
||
min-height: 110px;
|
||
width: 100%;
|
||
}
|
||
|
||
/* Zero-dB center mark — horizontal line at 50% = 0 dB position */
|
||
.eq-zero-mark {
|
||
position: absolute;
|
||
left: 10%;
|
||
right: 10%;
|
||
height: 1px;
|
||
background: var(--text-muted);
|
||
pointer-events: none;
|
||
top: 50%;
|
||
transform: translateY(-50%);
|
||
}
|
||
|
||
/* Custom div-based vertical fader — no native range input, full pixel control */
|
||
.eq-fader-custom {
|
||
position: absolute;
|
||
inset: 0;
|
||
user-select: none;
|
||
touch-action: none;
|
||
}
|
||
|
||
/* The thin vertical track line */
|
||
.eq-track-line {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 0;
|
||
bottom: 0;
|
||
width: 3px;
|
||
transform: translateX(-50%);
|
||
background: var(--border);
|
||
border-radius: 2px;
|
||
pointer-events: none;
|
||
}
|
||
|
||
/* The draggable handle */
|
||
.eq-thumb {
|
||
position: absolute;
|
||
left: 50%;
|
||
width: 20px;
|
||
height: 8px;
|
||
transform: translateX(-50%) translateY(-50%);
|
||
background: var(--accent);
|
||
border-radius: 3px;
|
||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18);
|
||
pointer-events: none;
|
||
transition: opacity 0.15s;
|
||
}
|
||
|
||
.eq-freq-label {
|
||
font-size: 9px;
|
||
color: var(--text-muted);
|
||
white-space: nowrap;
|
||
}
|
||
|
||
/* Pre-gain row */
|
||
.eq-pregain-row {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 8px 12px 10px;
|
||
border-top: 1px solid var(--border-subtle);
|
||
}
|
||
|
||
.eq-pregain-label {
|
||
font-size: 11px;
|
||
color: var(--text-muted);
|
||
white-space: nowrap;
|
||
min-width: 72px;
|
||
}
|
||
|
||
.eq-pregain-slider {
|
||
flex: 1;
|
||
accent-color: var(--accent);
|
||
height: 4px;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.eq-pregain-val {
|
||
font-size: 11px;
|
||
color: var(--text-secondary);
|
||
font-variant-numeric: tabular-nums;
|
||
min-width: 52px;
|
||
text-align: right;
|
||
}
|
||
|
||
/* AutoEQ section */
|
||
.eq-autoeq-section {
|
||
border: 1px solid var(--border-subtle);
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.eq-autoeq-toggle {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
width: 100%;
|
||
padding: 8px 12px;
|
||
background: var(--bg-card);
|
||
border: none;
|
||
color: var(--text-secondary);
|
||
font-size: 12px;
|
||
cursor: pointer;
|
||
text-align: left;
|
||
}
|
||
|
||
.eq-autoeq-toggle:hover {
|
||
background: var(--bg-hover);
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.eq-autoeq-toggle span {
|
||
flex: 1;
|
||
}
|
||
|
||
.eq-autoeq-body {
|
||
padding: 10px 12px 12px;
|
||
background: var(--bg-app);
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 8px;
|
||
}
|
||
|
||
.eq-autoeq-search-row {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
}
|
||
|
||
.eq-autoeq-status {
|
||
font-size: 11px;
|
||
color: var(--text-muted);
|
||
padding: 2px 0;
|
||
}
|
||
|
||
.eq-autoeq-error {
|
||
color: var(--danger);
|
||
}
|
||
|
||
.eq-autoeq-applied {
|
||
color: var(--accent);
|
||
}
|
||
|
||
.eq-autoeq-results {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 2px;
|
||
max-height: 180px;
|
||
overflow-y: auto;
|
||
}
|
||
|
||
.eq-autoeq-result-btn {
|
||
text-align: left;
|
||
padding: 5px 10px;
|
||
border-radius: 5px;
|
||
border: none;
|
||
background: transparent;
|
||
color: var(--text-secondary);
|
||
font-size: 12px;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.eq-autoeq-result-btn:hover {
|
||
background: var(--bg-hover);
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.eq-autoeq-result-btn {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
gap: 8px;
|
||
}
|
||
|
||
.eq-autoeq-result-source {
|
||
font-size: 10px;
|
||
color: var(--text-muted);
|
||
white-space: nowrap;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
/* ─── Changelog ────────────────────────────────────────────────────────────── */
|
||
|
||
.changelog-list {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 6px;
|
||
}
|
||
|
||
.changelog-entry {
|
||
border: 1px solid var(--border-subtle);
|
||
border-radius: var(--radius-md);
|
||
background: var(--bg-card);
|
||
overflow: hidden;
|
||
}
|
||
|
||
.changelog-summary {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 12px;
|
||
padding: 10px 14px;
|
||
cursor: pointer;
|
||
list-style: none;
|
||
user-select: none;
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.changelog-summary::-webkit-details-marker { display: none; }
|
||
|
||
.changelog-summary::before {
|
||
content: '▶';
|
||
font-size: 9px;
|
||
color: var(--text-muted);
|
||
transition: transform 0.15s;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.changelog-entry[open] > .changelog-summary::before {
|
||
transform: rotate(90deg);
|
||
}
|
||
|
||
.changelog-version {
|
||
font-size: 13px;
|
||
font-weight: 600;
|
||
color: var(--accent);
|
||
font-variant-numeric: tabular-nums;
|
||
}
|
||
|
||
.changelog-date {
|
||
font-size: 11px;
|
||
color: var(--text-muted);
|
||
font-variant-numeric: tabular-nums;
|
||
}
|
||
|
||
.changelog-body {
|
||
padding: 4px 14px 12px 28px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 2px;
|
||
}
|
||
|
||
.changelog-h3 {
|
||
font-size: 11px;
|
||
font-weight: 600;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.06em;
|
||
color: var(--accent);
|
||
margin-top: 10px;
|
||
margin-bottom: 2px;
|
||
}
|
||
|
||
.changelog-h4 {
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
color: var(--text-primary);
|
||
margin-top: 6px;
|
||
}
|
||
|
||
.changelog-item {
|
||
font-size: 12px;
|
||
color: var(--text-secondary);
|
||
line-height: 1.5;
|
||
padding-left: 12px;
|
||
position: relative;
|
||
}
|
||
|
||
.changelog-item::before {
|
||
content: '·';
|
||
position: absolute;
|
||
left: 2px;
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.changelog-text {
|
||
font-size: 12px;
|
||
color: var(--text-muted);
|
||
line-height: 1.5;
|
||
}
|
||
|
||
.changelog-code {
|
||
font-family: var(--font-mono, monospace);
|
||
font-size: 11px;
|
||
background: var(--bg-hover);
|
||
color: var(--accent);
|
||
padding: 1px 4px;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
/* ─ Genre Filter Bar ─ */
|
||
.genre-filter-tagbox {
|
||
position: relative;
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
align-items: center;
|
||
gap: 0.3rem;
|
||
padding: 0.3rem 0.6rem;
|
||
border: 1px solid var(--border-subtle);
|
||
border-radius: 8px;
|
||
background: var(--bg-card);
|
||
min-width: 220px;
|
||
cursor: text;
|
||
transition: border-color 0.15s;
|
||
}
|
||
|
||
.genre-filter-tagbox:focus-within {
|
||
border-color: var(--accent);
|
||
}
|
||
|
||
.genre-filter-chip {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 0.2rem;
|
||
padding: 0.15rem 0.3rem 0.15rem 0.5rem;
|
||
background: var(--accent);
|
||
color: var(--ctp-crust);
|
||
border-radius: 4px;
|
||
font-size: 0.75rem;
|
||
font-weight: 600;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.genre-filter-chip button {
|
||
background: none;
|
||
border: none;
|
||
color: inherit;
|
||
cursor: pointer;
|
||
padding: 0;
|
||
display: flex;
|
||
align-items: center;
|
||
opacity: 0.75;
|
||
line-height: 1;
|
||
}
|
||
|
||
.genre-filter-chip button:hover { opacity: 1; }
|
||
|
||
.genre-filter-input {
|
||
border: none;
|
||
background: none;
|
||
outline: none;
|
||
color: var(--text-primary);
|
||
font-size: 0.85rem;
|
||
min-width: 100px;
|
||
flex: 1;
|
||
padding: 0.1rem 0;
|
||
}
|
||
|
||
.genre-filter-input::placeholder { color: var(--text-muted); }
|
||
|
||
.genre-filter-dropdown {
|
||
position: absolute;
|
||
top: calc(100% + 4px);
|
||
left: 0;
|
||
right: 0;
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border-subtle);
|
||
border-radius: 8px;
|
||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
|
||
max-height: 220px;
|
||
overflow-y: auto;
|
||
overscroll-behavior: contain;
|
||
z-index: 500;
|
||
}
|
||
|
||
.genre-filter-option {
|
||
padding: 0.45rem 0.75rem;
|
||
font-size: 0.85rem;
|
||
color: var(--text-primary);
|
||
cursor: pointer;
|
||
transition: background 0.1s, color 0.1s;
|
||
}
|
||
|
||
.genre-filter-option:hover {
|
||
background: var(--bg-hover);
|
||
color: var(--accent);
|
||
}
|
||
|
||
.genre-filter-empty {
|
||
padding: 0.6rem 0.75rem;
|
||
font-size: 0.82rem;
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
/* ─ Genre Cards ─ */
|
||
.genre-card {
|
||
aspect-ratio: 1;
|
||
border-radius: 12px;
|
||
padding: 0.9rem;
|
||
cursor: pointer;
|
||
position: relative;
|
||
overflow: hidden;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: flex-end;
|
||
background:
|
||
linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 45%, transparent 70%),
|
||
var(--genre-color, var(--accent));
|
||
transition: transform 0.15s ease, box-shadow 0.15s ease;
|
||
user-select: none;
|
||
}
|
||
|
||
.genre-card:hover {
|
||
transform: translateY(-3px) scale(1.02);
|
||
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
|
||
}
|
||
|
||
.genre-card-watermark {
|
||
position: absolute;
|
||
top: 50%;
|
||
right: -10px;
|
||
transform: translateY(-55%);
|
||
opacity: 0.22;
|
||
color: #fff;
|
||
pointer-events: none;
|
||
}
|
||
|
||
.genre-card-name {
|
||
font-size: 0.86rem;
|
||
font-weight: 700;
|
||
color: #fff;
|
||
margin: 0;
|
||
line-height: 1.25;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
|
||
.genre-card-count {
|
||
font-size: 0.72rem;
|
||
color: rgba(255, 255, 255, 0.85);
|
||
margin: 0.2rem 0 0;
|
||
}
|
||
|
||
/* ─ Playlists overview header ─ */
|
||
.playlists-header {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: var(--space-4);
|
||
flex-wrap: wrap;
|
||
margin-bottom: var(--space-6);
|
||
}
|
||
|
||
/* ─ Playlist Card (Grid Overview) ─ */
|
||
.playlist-card-icon {
|
||
color: var(--accent);
|
||
opacity: 0.6;
|
||
}
|
||
|
||
/* Delete button — top-right corner of card cover, hidden until hover */
|
||
.playlist-card-delete {
|
||
position: absolute;
|
||
top: 6px;
|
||
right: 6px;
|
||
width: 24px;
|
||
height: 24px;
|
||
border-radius: 50%;
|
||
border: none;
|
||
background: rgba(0, 0, 0, 0.55);
|
||
color: rgba(255, 255, 255, 0.75);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
cursor: pointer;
|
||
opacity: 0;
|
||
transition: opacity var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
|
||
z-index: 2;
|
||
}
|
||
|
||
.album-card:hover .playlist-card-delete {
|
||
opacity: 1;
|
||
}
|
||
|
||
.playlist-card-delete:hover {
|
||
background: rgba(220, 60, 60, 0.85);
|
||
color: #fff;
|
||
}
|
||
|
||
.playlist-card-delete--confirm {
|
||
background: #dc3c3c !important;
|
||
color: #fff !important;
|
||
opacity: 1 !important;
|
||
width: 30px !important;
|
||
height: 30px !important;
|
||
top: 3px !important;
|
||
right: 3px !important;
|
||
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
|
||
animation: delete-confirm-pulse 0.7s ease-in-out infinite alternate;
|
||
}
|
||
|
||
@keyframes delete-confirm-pulse {
|
||
from { background: #dc3c3c; }
|
||
to { background: #ff2222; }
|
||
}
|
||
|
||
/* ─ Internet Radio ─ */
|
||
.radio-card-active {
|
||
outline: 2px solid var(--accent);
|
||
outline-offset: -2px;
|
||
}
|
||
|
||
.radio-live-overlay {
|
||
position: absolute;
|
||
top: 6px;
|
||
left: 6px;
|
||
z-index: 3;
|
||
pointer-events: none;
|
||
}
|
||
|
||
.radio-live-badge {
|
||
display: inline-block;
|
||
padding: 2px 6px;
|
||
border-radius: 3px;
|
||
background: #e03030;
|
||
color: #fff;
|
||
font-size: 0.65rem;
|
||
font-weight: 700;
|
||
letter-spacing: 0.06em;
|
||
line-height: 1.4;
|
||
}
|
||
|
||
/* ─ Radio Toolbar ─ */
|
||
.radio-toolbar {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: 12px;
|
||
margin-bottom: 16px;
|
||
}
|
||
.radio-toolbar-chips {
|
||
display: flex;
|
||
gap: 6px;
|
||
overflow-x: auto;
|
||
flex: 1;
|
||
scrollbar-width: none;
|
||
}
|
||
.radio-toolbar-chips::-webkit-scrollbar { display: none; }
|
||
.radio-filter-chip {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
padding: 4px 14px;
|
||
border-radius: 999px;
|
||
font-size: 12px;
|
||
font-weight: 500;
|
||
background: var(--bg-card);
|
||
color: var(--text-secondary);
|
||
border: 1px solid var(--ctp-surface1);
|
||
white-space: nowrap;
|
||
flex-shrink: 0;
|
||
transition: all 0.15s;
|
||
}
|
||
.radio-filter-chip:hover { background: var(--bg-hover); color: var(--text-primary); }
|
||
.radio-filter-chip.active { background: var(--accent); color: var(--ctp-crust); border-color: var(--accent); }
|
||
|
||
|
||
.radio-card-drop-before {
|
||
box-shadow: -3px 0 0 0 var(--accent);
|
||
}
|
||
.radio-card-drop-after {
|
||
box-shadow: 3px 0 0 0 var(--accent);
|
||
}
|
||
|
||
/* ─ Radio card edit chip ─ */
|
||
.radio-card-chip {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
padding: 2px 8px;
|
||
border-radius: 999px;
|
||
background: var(--text-secondary);
|
||
color: var(--ctp-surface1);
|
||
font-size: 10px;
|
||
font-weight: 600;
|
||
letter-spacing: 0.03em;
|
||
transition: background 0.15s, color 0.15s;
|
||
white-space: nowrap;
|
||
}
|
||
.radio-card-chip:hover {
|
||
background: var(--accent);
|
||
color: var(--ctp-crust);
|
||
}
|
||
|
||
/* ─ Alphabet Filter Bar ─ */
|
||
.alphabet-filter-bar {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 3px;
|
||
margin-bottom: 14px;
|
||
}
|
||
.alphabet-filter-btn {
|
||
min-width: 26px;
|
||
padding: 4px 7px;
|
||
border-radius: 999px;
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
letter-spacing: 0.03em;
|
||
color: var(--text-primary);
|
||
background: transparent;
|
||
border: none;
|
||
cursor: pointer;
|
||
transition: color 0.12s, background 0.12s;
|
||
}
|
||
.alphabet-filter-btn:hover { background: var(--bg-hover); }
|
||
.alphabet-filter-btn.active { background: var(--accent); color: var(--ctp-crust); }
|
||
.alphabet-filter-btn.empty { opacity: 0.28; pointer-events: none; }
|
||
|
||
/* ─ Radio favorite star ─ */
|
||
.radio-favorite-btn { color: rgba(255, 255, 255, 0.35); }
|
||
.radio-favorite-btn:hover { color: rgba(255, 255, 255, 0.8); }
|
||
.radio-favorite-btn.active { color: var(--accent); }
|
||
|
||
/* ─ Radio Browser Directory ─ */
|
||
.radio-browser-result {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 10px;
|
||
padding: 7px 6px;
|
||
border-radius: var(--radius);
|
||
transition: background 0.12s;
|
||
cursor: default;
|
||
}
|
||
.radio-browser-result.clickable { cursor: pointer; }
|
||
.radio-browser-result.clickable:hover { background: var(--bg-hover); }
|
||
.radio-browser-result.added { opacity: 0.6; }
|
||
.radio-browser-action {
|
||
flex-shrink: 0;
|
||
width: 24px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
.radio-browser-favicon {
|
||
width: 40px;
|
||
height: 40px;
|
||
border-radius: var(--radius-sm);
|
||
object-fit: cover;
|
||
flex-shrink: 0;
|
||
}
|
||
.radio-browser-favicon--placeholder {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: var(--bg-card);
|
||
color: var(--text-muted);
|
||
}
|
||
.radio-browser-info {
|
||
flex: 1;
|
||
min-width: 0;
|
||
}
|
||
.radio-browser-name {
|
||
font-size: 13px;
|
||
font-weight: 600;
|
||
color: var(--text-primary);
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.radio-browser-tags {
|
||
font-size: 11px;
|
||
color: var(--text-muted);
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
margin-top: 2px;
|
||
}
|
||
|
||
/* ─ Bulk Select ─ */
|
||
.bulk-action-bar {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: var(--space-2);
|
||
padding: var(--space-2) var(--space-3);
|
||
background: var(--accent-dim, color-mix(in srgb, var(--accent) 15%, transparent));
|
||
border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
|
||
border-radius: var(--radius);
|
||
margin-bottom: var(--space-2);
|
||
}
|
||
.bulk-action-count {
|
||
font-size: 13px;
|
||
font-weight: 600;
|
||
color: var(--accent);
|
||
margin-right: auto;
|
||
}
|
||
.bulk-pl-picker-wrap {
|
||
position: relative;
|
||
}
|
||
|
||
.bulk-check {
|
||
display: inline-block;
|
||
width: 14px;
|
||
height: 14px;
|
||
border: 1.5px solid var(--text-muted);
|
||
border-radius: 3px;
|
||
background: transparent;
|
||
vertical-align: middle;
|
||
flex-shrink: 0;
|
||
transition: border-color 0.1s, background 0.1s;
|
||
}
|
||
.bulk-check.checked {
|
||
background: var(--accent);
|
||
border-color: var(--accent);
|
||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
||
background-size: 10px 10px;
|
||
background-repeat: no-repeat;
|
||
background-position: center;
|
||
}
|
||
.track-row.bulk-selected {
|
||
background: color-mix(in srgb, var(--accent) 10%, transparent) !important;
|
||
}
|
||
.track-row.bulk-selected:hover {
|
||
background: color-mix(in srgb, var(--accent) 16%, transparent) !important;
|
||
}
|
||
|
||
/* Drop indicator line */
|
||
.playlist-drop-indicator {
|
||
height: 2px;
|
||
background: var(--accent);
|
||
border-radius: 1px;
|
||
margin: 1px 0;
|
||
pointer-events: all;
|
||
}
|
||
|
||
/* ─ Playlist Search Panel ─ */
|
||
.playlist-search-panel {
|
||
background: var(--surface-2);
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius-lg);
|
||
padding: var(--space-3) var(--space-3) var(--space-2);
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: var(--space-2);
|
||
margin-bottom: var(--space-4);
|
||
animation: fade-in-down 0.15s ease;
|
||
}
|
||
|
||
@keyframes fade-in-down {
|
||
from { opacity: 0; transform: translateY(-6px); }
|
||
to { opacity: 1; transform: translateY(0); }
|
||
}
|
||
|
||
.playlist-search-input-wrap {
|
||
position: relative;
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.playlist-search-input-wrap .input {
|
||
width: 100%;
|
||
padding-right: 36px;
|
||
}
|
||
|
||
.playlist-search-input-wrap .live-search-clear {
|
||
position: absolute;
|
||
right: 10px;
|
||
top: 50%;
|
||
transform: translateY(-50%);
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.playlist-search-row {
|
||
display: grid;
|
||
grid-template-columns: 36px 1fr auto 52px 28px;
|
||
align-items: center;
|
||
gap: var(--space-2);
|
||
padding: 3px var(--space-1);
|
||
border-radius: var(--radius-sm);
|
||
transition: background var(--transition-fast);
|
||
}
|
||
|
||
.playlist-search-row:hover {
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.playlist-search-thumb {
|
||
width: 36px;
|
||
height: 36px;
|
||
object-fit: cover;
|
||
border-radius: var(--radius-xs);
|
||
background: var(--bg-hover);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.playlist-search-info {
|
||
display: flex;
|
||
flex-direction: column;
|
||
min-width: 0;
|
||
}
|
||
|
||
.playlist-search-title {
|
||
font-size: 13px;
|
||
font-weight: 500;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.playlist-search-artist {
|
||
font-size: 11px;
|
||
color: var(--text-muted);
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.playlist-search-album {
|
||
font-size: 11px;
|
||
color: var(--text-muted);
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.playlist-search-duration {
|
||
font-size: 12px;
|
||
color: var(--text-muted);
|
||
text-align: right;
|
||
font-variant-numeric: tabular-nums;
|
||
}
|
||
|
||
.playlist-search-add-btn {
|
||
width: 26px;
|
||
height: 26px;
|
||
border-radius: 50%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: var(--text-muted);
|
||
transition: background var(--transition-fast), color var(--transition-fast);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.playlist-search-add-btn:hover {
|
||
background: var(--accent);
|
||
color: var(--ctp-base);
|
||
}
|
||
|
||
.playlist-suggestions {
|
||
margin-top: var(--space-6);
|
||
}
|
||
|
||
.playlist-suggestions-header {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: var(--space-3);
|
||
padding: 0 var(--space-3);
|
||
margin-bottom: var(--space-1);
|
||
}
|
||
|
||
/* ─ Context Menu Submenu ─ */
|
||
.context-menu-item--submenu {
|
||
position: relative;
|
||
}
|
||
|
||
.context-menu-item--submenu.active,
|
||
.context-menu-item--submenu:hover {
|
||
background: var(--surface-2);
|
||
color: var(--accent);
|
||
}
|
||
|
||
.context-submenu {
|
||
position: absolute;
|
||
top: -4px;
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius-md);
|
||
padding: var(--space-1) 0;
|
||
min-width: 190px;
|
||
max-width: 250px;
|
||
max-height: 280px;
|
||
overflow-y: auto;
|
||
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
|
||
z-index: 10001;
|
||
}
|
||
|
||
.context-submenu-empty {
|
||
padding: var(--space-2) var(--space-4);
|
||
color: var(--text-muted);
|
||
font-size: 12px;
|
||
}
|
||
|
||
.context-submenu-new {
|
||
color: var(--accent);
|
||
font-weight: 500;
|
||
}
|
||
|
||
.context-submenu-create {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
padding: var(--space-1) var(--space-2);
|
||
}
|
||
|
||
.context-submenu-input {
|
||
flex: 1;
|
||
min-width: 0;
|
||
background: var(--bg-surface);
|
||
border: 1px solid var(--accent);
|
||
border-radius: var(--radius-sm);
|
||
color: var(--text-primary);
|
||
font-size: 12px;
|
||
padding: 3px 7px;
|
||
outline: none;
|
||
}
|
||
|
||
.context-submenu-input::placeholder {
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.context-submenu-create-btn {
|
||
flex-shrink: 0;
|
||
background: var(--accent);
|
||
border: none;
|
||
border-radius: var(--radius-sm);
|
||
color: var(--ctp-crust);
|
||
padding: 4px 6px;
|
||
cursor: pointer;
|
||
display: flex;
|
||
align-items: center;
|
||
transition: opacity var(--transition-fast);
|
||
}
|
||
|
||
.context-submenu-create-btn:hover {
|
||
opacity: 0.85;
|
||
}
|
||
|
||
/* ═══════════════════════════════════════════════════════════════════════════
|
||
MOBILE COMPONENT OVERRIDES (< 800px)
|
||
═══════════════════════════════════════════════════════════════════════════ */
|
||
|
||
/* ─── Album / Artist Grid — fewer columns ─── */
|
||
.app-shell[data-mobile] .album-grid-wrap {
|
||
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
|
||
gap: var(--space-3);
|
||
}
|
||
|
||
/* Horizontal scroll rows — smaller cards */
|
||
.app-shell[data-mobile] .album-grid .album-card,
|
||
.app-shell[data-mobile] .album-grid .artist-card {
|
||
flex: 0 0 130px;
|
||
}
|
||
|
||
.app-shell[data-mobile] .album-card-more {
|
||
flex: 0 0 130px;
|
||
}
|
||
|
||
/* ─── Hero — mobile ─── */
|
||
.app-shell[data-mobile] .hero,
|
||
.app-shell[data-mobile] .hero-placeholder {
|
||
height: 290px;
|
||
}
|
||
|
||
/* Stronger bottom gradient so white text stays readable without a cover */
|
||
.app-shell[data-mobile] .hero-overlay {
|
||
background:
|
||
linear-gradient(to top,
|
||
rgba(0, 0, 0, 0.90) 0%,
|
||
rgba(0, 0, 0, 0.55) 45%,
|
||
rgba(0, 0, 0, 0.22) 100%);
|
||
}
|
||
|
||
.app-shell[data-mobile] .hero-content {
|
||
padding: var(--space-4);
|
||
padding-bottom: 44px; /* keep buttons clear of the pagination dots */
|
||
gap: 0;
|
||
align-items: flex-end;
|
||
}
|
||
|
||
.app-shell[data-mobile] .hero-title {
|
||
font-size: clamp(17px, 5vw, 22px);
|
||
max-width: 100%;
|
||
}
|
||
|
||
/* Circular action buttons on mobile hero */
|
||
.hero-actions-mobile {
|
||
display: flex;
|
||
gap: 12px;
|
||
margin-top: 12px;
|
||
}
|
||
|
||
/* ─── Live Search — full width ─── */
|
||
.app-shell[data-mobile] .live-search {
|
||
max-width: none;
|
||
min-width: 0;
|
||
}
|
||
|
||
/* ─── Section / Page titles ─── */
|
||
.app-shell[data-mobile] .section-title,
|
||
.app-shell[data-mobile] .page-title,
|
||
.app-shell[data-mobile] .section-title-link {
|
||
font-size: 17px;
|
||
}
|
||
|
||
/* ─── Album Detail Header — stack vertically on mobile ─── */
|
||
.app-shell[data-mobile] .album-detail-header-inner {
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
}
|
||
|
||
.app-shell[data-mobile] .album-detail-cover {
|
||
width: 160px;
|
||
height: 160px;
|
||
}
|
||
|
||
/* ─── Page padding ─── */
|
||
.app-shell[data-mobile] .content-body {
|
||
padding: var(--space-4) !important;
|
||
}
|
||
|
||
/* ─── Hide desktop search on mobile ─── */
|
||
.app-shell[data-mobile] .live-search {
|
||
display: none;
|
||
}
|
||
|
||
/* ═══════════════════════════════════════════════════════════════════════════
|
||
MOBILE SEARCH OVERLAY
|
||
═══════════════════════════════════════════════════════════════════════════ */
|
||
|
||
@keyframes mobile-search-in {
|
||
from { opacity: 0; transform: translateY(16px); }
|
||
to { opacity: 1; transform: translateY(0); }
|
||
}
|
||
|
||
.mobile-search-overlay {
|
||
position: fixed;
|
||
inset: 0;
|
||
z-index: 200;
|
||
background: var(--bg-app);
|
||
display: flex;
|
||
flex-direction: column;
|
||
animation: mobile-search-in 0.2s ease both;
|
||
}
|
||
|
||
/* ─── Search bar ─── */
|
||
.mobile-search-bar {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 10px;
|
||
padding: 10px 16px 10px 12px;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.mobile-search-field {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
flex: 1;
|
||
background: var(--bg-card);
|
||
border-radius: 20px;
|
||
padding: 0 12px;
|
||
height: 40px;
|
||
min-width: 0;
|
||
}
|
||
|
||
.mobile-search-icon {
|
||
color: var(--text-muted);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.mobile-search-spinner {
|
||
width: 16px;
|
||
height: 16px;
|
||
border: 2px solid var(--border);
|
||
border-top-color: var(--accent);
|
||
border-radius: 50%;
|
||
animation: spin 0.7s linear infinite;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.mobile-search-input {
|
||
flex: 1;
|
||
background: none;
|
||
border: none;
|
||
outline: none;
|
||
font-size: 17px;
|
||
color: var(--text-primary);
|
||
caret-color: var(--accent);
|
||
min-width: 0;
|
||
}
|
||
|
||
.mobile-search-input::placeholder {
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.mobile-search-input::-webkit-search-cancel-button {
|
||
display: none;
|
||
}
|
||
|
||
.mobile-search-clear {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: var(--text-muted);
|
||
border: none;
|
||
color: var(--bg-app);
|
||
cursor: pointer;
|
||
padding: 0;
|
||
width: 18px;
|
||
height: 18px;
|
||
border-radius: 50%;
|
||
flex-shrink: 0;
|
||
opacity: 0.7;
|
||
}
|
||
|
||
.mobile-search-cancel {
|
||
background: none;
|
||
border: none;
|
||
color: var(--accent);
|
||
font-size: 15px;
|
||
font-weight: 500;
|
||
cursor: pointer;
|
||
padding: 4px 0;
|
||
flex-shrink: 0;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
/* ─── Results area ─── */
|
||
.mobile-search-results {
|
||
flex: 1;
|
||
overflow-y: auto;
|
||
overscroll-behavior: contain;
|
||
}
|
||
|
||
.mobile-search-noresults {
|
||
padding: 48px 20px;
|
||
text-align: center;
|
||
color: var(--text-muted);
|
||
font-size: 15px;
|
||
}
|
||
|
||
/* ─── Empty state ─── */
|
||
.mobile-search-empty-state {
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
|
||
.mobile-search-hint {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 14px;
|
||
padding: 48px 20px 32px;
|
||
}
|
||
|
||
.mobile-search-hint-icon {
|
||
color: var(--text-muted);
|
||
opacity: 0.25;
|
||
}
|
||
|
||
.mobile-search-hint-text {
|
||
font-size: 16px;
|
||
color: var(--text-muted);
|
||
text-align: center;
|
||
}
|
||
|
||
/* ─── Category chips ─── */
|
||
.mobile-search-chips {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 8px;
|
||
padding: 6px 16px 16px;
|
||
}
|
||
|
||
.mobile-search-chip {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border);
|
||
border-radius: 20px;
|
||
padding: 7px 14px;
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
color: var(--text-primary);
|
||
cursor: pointer;
|
||
transition: background var(--transition-fast), border-color var(--transition-fast);
|
||
}
|
||
|
||
.mobile-search-chip:active,
|
||
.mobile-search-chip:hover {
|
||
background: var(--bg-hover);
|
||
border-color: var(--accent);
|
||
color: var(--accent);
|
||
}
|
||
|
||
/* ─── Recent searches ─── */
|
||
.mobile-search-recent-remove {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: none;
|
||
border: none;
|
||
color: var(--text-muted);
|
||
padding: 6px;
|
||
cursor: pointer;
|
||
flex-shrink: 0;
|
||
opacity: 0.6;
|
||
}
|
||
|
||
.mobile-search-recent-remove:hover {
|
||
opacity: 1;
|
||
}
|
||
|
||
/* ─── Section headers ─── */
|
||
.mobile-search-section {
|
||
padding-bottom: 8px;
|
||
}
|
||
|
||
.mobile-search-section-label {
|
||
font-size: 11px;
|
||
font-weight: 700;
|
||
letter-spacing: 0.06em;
|
||
text-transform: uppercase;
|
||
color: var(--text-muted);
|
||
padding: 16px 16px 6px;
|
||
}
|
||
|
||
/* ─── Result items ─── */
|
||
.mobile-search-item {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 12px;
|
||
width: 100%;
|
||
padding: 10px 16px;
|
||
background: none;
|
||
border: none;
|
||
cursor: pointer;
|
||
text-align: left;
|
||
transition: background var(--transition-fast);
|
||
}
|
||
|
||
.mobile-search-item:active {
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.mobile-search-thumb {
|
||
width: 46px;
|
||
height: 46px;
|
||
border-radius: 6px;
|
||
object-fit: cover;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.mobile-search-avatar {
|
||
width: 46px;
|
||
height: 46px;
|
||
border-radius: 8px;
|
||
background: var(--bg-card);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: var(--text-muted);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.mobile-search-avatar--circle {
|
||
border-radius: 50%;
|
||
}
|
||
|
||
.mobile-search-item-info {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 3px;
|
||
min-width: 0;
|
||
flex: 1;
|
||
}
|
||
|
||
.mobile-search-item-title {
|
||
font-size: 15px;
|
||
font-weight: 500;
|
||
color: var(--text-primary);
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.mobile-search-item-sub {
|
||
font-size: 13px;
|
||
color: var(--text-muted);
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.mobile-search-item-chevron {
|
||
color: var(--text-muted);
|
||
opacity: 0.4;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
/* ─── Album Header — Mobile Actions ─── */
|
||
.album-detail-actions-mobile {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
gap: 12px;
|
||
margin-top: 10px;
|
||
width: 100%;
|
||
}
|
||
|
||
.album-actions-row {
|
||
display: flex;
|
||
flex-wrap: nowrap;
|
||
align-items: center;
|
||
justify-content: flex-start;
|
||
gap: 20px;
|
||
}
|
||
|
||
.album-actions-row--secondary {
|
||
gap: 16px;
|
||
}
|
||
|
||
/* Base icon button */
|
||
.album-icon-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 5px;
|
||
width: 44px;
|
||
height: 44px;
|
||
border-radius: 50%;
|
||
background: rgba(255, 255, 255, 0.08);
|
||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||
color: var(--text-secondary);
|
||
cursor: pointer;
|
||
transition: background var(--transition-fast), color var(--transition-fast), filter var(--transition-fast);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.album-icon-btn:hover {
|
||
background: rgba(255, 255, 255, 0.14);
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
/* Play — largest, accent fill */
|
||
.album-icon-btn--play {
|
||
width: 54px;
|
||
height: 54px;
|
||
background: var(--accent);
|
||
border-color: transparent;
|
||
color: #fff;
|
||
}
|
||
|
||
.album-icon-btn--play:hover {
|
||
background: var(--accent);
|
||
filter: brightness(1.12);
|
||
color: #fff;
|
||
}
|
||
|
||
/* Queue — medium, slightly more prominent than secondary */
|
||
.album-icon-btn--queue {
|
||
width: 46px;
|
||
height: 46px;
|
||
background: rgba(255, 255, 255, 0.13);
|
||
border-color: rgba(255, 255, 255, 0.18);
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
/* Secondary (smaller) icon buttons */
|
||
.album-icon-btn--sm {
|
||
width: 36px;
|
||
height: 36px;
|
||
}
|
||
|
||
.album-icon-btn.is-starred {
|
||
color: var(--color-star-active, var(--accent));
|
||
}
|
||
|
||
.album-icon-btn.album-icon-btn--active {
|
||
color: var(--accent);
|
||
background: rgba(255, 255, 255, 0.1);
|
||
}
|
||
|
||
/* Download progress inline */
|
||
.album-icon-btn.album-icon-btn--progress {
|
||
width: auto;
|
||
border-radius: 21px;
|
||
padding: 0 12px;
|
||
gap: 6px;
|
||
color: var(--text-muted);
|
||
cursor: default;
|
||
}
|
||
|
||
.album-icon-btn-pct {
|
||
font-size: 12px;
|
||
font-variant-numeric: tabular-nums;
|
||
}
|
||
|
||
/* ─── Album Tracklist — Mobile ─── */
|
||
.tracklist-mobile {
|
||
padding: 0 var(--space-4) var(--space-6);
|
||
}
|
||
|
||
.tracklist-mobile-row {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: var(--space-3);
|
||
padding: 12px 0;
|
||
border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.06));
|
||
cursor: pointer;
|
||
transition: background var(--transition-fast);
|
||
border-radius: 6px;
|
||
}
|
||
|
||
.tracklist-mobile-row:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.tracklist-mobile-row.active .tracklist-mobile-title {
|
||
color: var(--accent);
|
||
}
|
||
|
||
.tracklist-mobile-row.context-active {
|
||
background: var(--bg-hover);
|
||
}
|
||
|
||
.tracklist-mobile-main {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 10px;
|
||
min-width: 0;
|
||
flex: 1;
|
||
}
|
||
|
||
.tracklist-mobile-num {
|
||
font-size: 12px;
|
||
color: var(--text-muted);
|
||
min-width: 18px;
|
||
text-align: right;
|
||
flex-shrink: 0;
|
||
font-variant-numeric: tabular-nums;
|
||
}
|
||
|
||
.tracklist-mobile-eq {
|
||
flex-shrink: 0;
|
||
display: flex;
|
||
align-items: center;
|
||
min-width: 18px;
|
||
}
|
||
|
||
.tracklist-mobile-title {
|
||
font-size: 15px;
|
||
font-weight: 500;
|
||
color: var(--text-primary);
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.tracklist-mobile-duration {
|
||
font-size: 13px;
|
||
color: var(--text-muted);
|
||
font-variant-numeric: tabular-nums;
|
||
flex-shrink: 0;
|
||
}
|