Move the buttons on discover page so sidebar doesn't hide them

This commit is contained in:
Broque Thomas 2026-02-17 10:41:59 -08:00
parent 801274deb3
commit e9c405559d

View file

@ -13366,8 +13366,15 @@ body {
} }
@keyframes cardCheckingPulse { @keyframes cardCheckingPulse {
0%, 100% { opacity: 0.75; }
50% { opacity: 0.55; } 0%,
100% {
opacity: 0.75;
}
50% {
opacity: 0.55;
}
} }
.completion-text.checking { .completion-text.checking {
@ -13376,14 +13383,19 @@ body {
} }
.completion-fill.checking { .completion-fill.checking {
background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.15), rgba(255,255,255,0.08)); background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
background-size: 200% 100%; background-size: 200% 100%;
animation: checkingBarShimmer 1.5s ease-in-out infinite; animation: checkingBarShimmer 1.5s ease-in-out infinite;
} }
@keyframes checkingBarShimmer { @keyframes checkingBarShimmer {
0% { background-position: 200% 0; } 0% {
100% { background-position: -200% 0; } background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
} }
/* Responsive Design */ /* Responsive Design */
@ -18506,7 +18518,7 @@ body {
.discover-section-header { .discover-section-header {
margin-bottom: 24px; margin-bottom: 24px;
display: flex; display: flex;
justify-content: space-between; justify-content: flex-start;
align-items: flex-start; align-items: flex-start;
gap: 20px; gap: 20px;
} }
@ -21994,6 +22006,7 @@ body {
inset 0 1px 0 rgba(255, 255, 255, 0.08); inset 0 1px 0 rgba(255, 255, 255, 0.08);
padding: 0; padding: 0;
} }
.import-button:hover { .import-button:hover {
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(124, 58, 237, 0.18) 0%, rgba(124, 58, 237, 0.18) 0%,
@ -22005,12 +22018,14 @@ body {
0 3px 12px rgba(0, 0, 0, 0.2), 0 3px 12px rgba(0, 0, 0, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.12); inset 0 1px 0 rgba(255, 255, 255, 0.12);
} }
.import-button:active { .import-button:active {
transform: scale(0.95); transform: scale(0.95);
box-shadow: box-shadow:
0 2px 8px rgba(124, 58, 237, 0.15), 0 2px 8px rgba(124, 58, 237, 0.15),
inset 0 1px 0 rgba(255, 255, 255, 0.06); inset 0 1px 0 rgba(255, 255, 255, 0.06);
} }
.import-logo { .import-logo {
width: 22px; width: 22px;
height: 22px; height: 22px;
@ -22019,6 +22034,7 @@ body {
transition: opacity 0.3s ease; transition: opacity 0.3s ease;
filter: invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); filter: invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
} }
.import-button:hover .import-logo { .import-button:hover .import-logo {
opacity: 1; opacity: 1;
} }
@ -22033,8 +22049,8 @@ body {
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.95) 0%,
rgba(12, 12, 12, 0.98) 100%); rgba(12, 12, 12, 0.98) 100%);
backdrop-filter: blur(20px) saturate(1.2); backdrop-filter: blur(20px) saturate(1.2);
border: 1px solid rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.12);
border-top: 1px solid rgba(255, 255, 255, 0.18); border-top: 1px solid rgba(255, 255, 255, 0.18);
@ -22052,8 +22068,8 @@ body {
gap: 16px; gap: 16px;
padding: 20px 28px; padding: 20px 28px;
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(45, 45, 45, 0.8) 0%, rgba(45, 45, 45, 0.8) 0%,
rgba(26, 26, 26, 0.9) 100%); rgba(26, 26, 26, 0.9) 100%);
border-bottom: 1px solid rgba(255, 255, 255, 0.08); border-bottom: 1px solid rgba(255, 255, 255, 0.08);
flex-shrink: 0; flex-shrink: 0;
} }
@ -22083,6 +22099,7 @@ body {
transition: all 0.3s ease; transition: all 0.3s ease;
line-height: 1; line-height: 1;
} }
.import-modal-close:hover { .import-modal-close:hover {
color: #ffffff; color: #ffffff;
background: rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.15);
@ -22111,10 +22128,12 @@ body {
cursor: pointer; cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} }
.import-tab-btn:hover { .import-tab-btn:hover {
color: #fff; color: #fff;
background: rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.08);
} }
.import-tab-btn.active { .import-tab-btn.active {
background: linear-gradient(135deg, #1db954 0%, #1ed760 100%); background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
color: #000; color: #000;
@ -22127,6 +22146,7 @@ body {
flex-direction: column; flex-direction: column;
height: 100%; height: 100%;
} }
.import-tab-content.active { .import-tab-content.active {
display: flex; display: flex;
} }
@ -22141,16 +22161,51 @@ body {
} }
/* Scrollbar — green tint matching other modals */ /* Scrollbar — green tint matching other modals */
.import-modal-body::-webkit-scrollbar { width: 8px; } .import-modal-body::-webkit-scrollbar {
.import-modal-body::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; } width: 8px;
.import-modal-body::-webkit-scrollbar-thumb { background: rgba(29,185,84,0.3); border-radius: 4px; } }
.import-modal-body::-webkit-scrollbar-thumb:hover { background: rgba(29,185,84,0.5); }
.import-match-list::-webkit-scrollbar { width: 6px; } .import-modal-body::-webkit-scrollbar-track {
.import-match-list::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); border-radius: 3px; } background: rgba(255, 255, 255, 0.05);
.import-match-list::-webkit-scrollbar-thumb { background: rgba(29,185,84,0.25); border-radius: 3px; } border-radius: 4px;
.import-singles-list::-webkit-scrollbar { width: 6px; } }
.import-singles-list::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); border-radius: 3px; }
.import-singles-list::-webkit-scrollbar-thumb { background: rgba(29,185,84,0.25); border-radius: 3px; } .import-modal-body::-webkit-scrollbar-thumb {
background: rgba(29, 185, 84, 0.3);
border-radius: 4px;
}
.import-modal-body::-webkit-scrollbar-thumb:hover {
background: rgba(29, 185, 84, 0.5);
}
.import-match-list::-webkit-scrollbar {
width: 6px;
}
.import-match-list::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.03);
border-radius: 3px;
}
.import-match-list::-webkit-scrollbar-thumb {
background: rgba(29, 185, 84, 0.25);
border-radius: 3px;
}
.import-singles-list::-webkit-scrollbar {
width: 6px;
}
.import-singles-list::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.03);
border-radius: 3px;
}
.import-singles-list::-webkit-scrollbar-thumb {
background: rgba(29, 185, 84, 0.25);
border-radius: 3px;
}
/* Suggestions */ /* Suggestions */
.import-suggestions-section { .import-suggestions-section {
@ -22158,10 +22213,12 @@ body {
padding-bottom: 20px; padding-bottom: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.06); border-bottom: 1px solid rgba(255, 255, 255, 0.06);
} }
.import-suggestions-section:empty, .import-suggestions-section:empty,
.import-suggestions-section.hidden { .import-suggestions-section.hidden {
display: none; display: none;
} }
.import-suggestions-label { .import-suggestions-label {
font-size: 11px; font-size: 11px;
font-weight: 700; font-weight: 700;
@ -22177,6 +22234,7 @@ body {
gap: 10px; gap: 10px;
margin-bottom: 20px; margin-bottom: 20px;
} }
.import-search-bar input { .import-search-bar input {
flex: 1; flex: 1;
padding: 12px 16px; padding: 12px 16px;
@ -22188,14 +22246,17 @@ body {
outline: none; outline: none;
transition: all 0.3s ease; transition: all 0.3s ease;
} }
.import-search-bar input:focus { .import-search-bar input:focus {
border-color: rgba(29, 185, 84, 0.5); border-color: rgba(29, 185, 84, 0.5);
background: rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.08);
box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1); box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1);
} }
.import-search-bar input::placeholder { .import-search-bar input::placeholder {
color: rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.3);
} }
.import-search-btn { .import-search-btn {
padding: 12px 24px; padding: 12px 24px;
border-radius: 12px; border-radius: 12px;
@ -22208,11 +22269,13 @@ body {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(29, 185, 84, 0.3); border: 1px solid rgba(29, 185, 84, 0.3);
} }
.import-search-btn:hover { .import-search-btn:hover {
background: linear-gradient(135deg, #1ed760 0%, #22e167 100%); background: linear-gradient(135deg, #1ed760 0%, #22e167 100%);
transform: translateY(-1px); transform: translateY(-1px);
box-shadow: 0 4px 16px rgba(29, 185, 84, 0.3); box-shadow: 0 4px 16px rgba(29, 185, 84, 0.3);
} }
.import-clear-btn { .import-clear-btn {
width: 40px; width: 40px;
height: 40px; height: 40px;
@ -22228,11 +22291,13 @@ body {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
.import-clear-btn:hover { .import-clear-btn:hover {
background: rgba(239, 68, 68, 0.15); background: rgba(239, 68, 68, 0.15);
border-color: rgba(239, 68, 68, 0.3); border-color: rgba(239, 68, 68, 0.3);
color: #ef4444; color: #ef4444;
} }
.import-clear-btn.hidden { .import-clear-btn.hidden {
display: none; display: none;
} }
@ -22246,31 +22311,35 @@ body {
.import-album-card { .import-album-card {
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 0%,
rgba(255, 255, 255, 0.02) 100%); rgba(255, 255, 255, 0.02) 100%);
border-radius: 12px; border-radius: 12px;
overflow: hidden; overflow: hidden;
cursor: pointer; cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.06);
} }
.import-album-card:hover { .import-album-card:hover {
border-color: rgba(29, 185, 84, 0.4); border-color: rgba(29, 185, 84, 0.4);
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(29, 185, 84, 0.08) 0%, rgba(29, 185, 84, 0.08) 0%,
rgba(29, 185, 84, 0.03) 100%); rgba(29, 185, 84, 0.03) 100%);
transform: translateY(-3px); transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(29, 185, 84, 0.08); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(29, 185, 84, 0.08);
} }
.import-album-card img { .import-album-card img {
width: 100%; width: 100%;
aspect-ratio: 1; aspect-ratio: 1;
object-fit: cover; object-fit: cover;
display: block; display: block;
} }
.import-album-card-info { .import-album-card-info {
padding: 10px 12px; padding: 10px 12px;
} }
.import-album-card-title { .import-album-card-title {
font-size: 13px; font-size: 13px;
font-weight: 600; font-weight: 600;
@ -22279,6 +22348,7 @@ body {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.import-album-card-artist { .import-album-card-artist {
font-size: 11px; font-size: 11px;
color: rgba(255, 255, 255, 0.5); color: rgba(255, 255, 255, 0.5);
@ -22287,6 +22357,7 @@ body {
text-overflow: ellipsis; text-overflow: ellipsis;
margin-top: 3px; margin-top: 3px;
} }
.import-album-card-meta { .import-album-card-meta {
font-size: 10px; font-size: 10px;
color: rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.3);
@ -22300,14 +22371,15 @@ body {
align-items: center; align-items: center;
padding: 20px; padding: 20px;
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 0%,
rgba(255, 255, 255, 0.02) 100%); rgba(255, 255, 255, 0.02) 100%);
border: 1px solid rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 16px; border-radius: 16px;
margin-bottom: 20px; margin-bottom: 20px;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
} }
.import-album-hero img { .import-album-hero img {
width: 90px; width: 90px;
height: 90px; height: 90px;
@ -22317,16 +22389,19 @@ body {
position: relative; position: relative;
z-index: 1; z-index: 1;
} }
.import-album-hero-info { .import-album-hero-info {
position: relative; position: relative;
z-index: 1; z-index: 1;
} }
.import-album-hero-info h3 { .import-album-hero-info h3 {
margin: 0; margin: 0;
font-size: 18px; font-size: 18px;
font-weight: 700; font-weight: 700;
color: #fff; color: #fff;
} }
.import-album-hero-info p { .import-album-hero-info p {
margin: 6px 0 0; margin: 6px 0 0;
font-size: 13px; font-size: 13px;
@ -22340,12 +22415,14 @@ body {
justify-content: space-between; justify-content: space-between;
margin-bottom: 14px; margin-bottom: 14px;
} }
.import-match-header h3 { .import-match-header h3 {
margin: 0; margin: 0;
font-size: 15px; font-size: 15px;
font-weight: 600; font-weight: 600;
color: #fff; color: #fff;
} }
.import-back-btn { .import-back-btn {
background: rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.15);
@ -22357,6 +22434,7 @@ body {
cursor: pointer; cursor: pointer;
transition: all 0.3s ease; transition: all 0.3s ease;
} }
.import-back-btn:hover { .import-back-btn:hover {
color: #fff; color: #fff;
background: rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.12);
@ -22379,26 +22457,30 @@ body {
gap: 12px; gap: 12px;
padding: 12px 16px; padding: 12px 16px;
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 0%,
rgba(255, 255, 255, 0.02) 100%); rgba(255, 255, 255, 0.02) 100%);
border: 1px solid rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 12px; border-radius: 12px;
border-left: 3px solid #333; border-left: 3px solid #333;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} }
.import-match-item:hover { .import-match-item:hover {
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.07) 0%,
rgba(255, 255, 255, 0.03) 100%); rgba(255, 255, 255, 0.03) 100%);
transform: translateX(4px); transform: translateX(4px);
} }
.import-match-item.matched { .import-match-item.matched {
border-left-color: #1db954; border-left-color: #1db954;
} }
.import-match-item.matched:hover { .import-match-item.matched:hover {
border-color: rgba(29, 185, 84, 0.2); border-color: rgba(29, 185, 84, 0.2);
border-left-color: #1db954; border-left-color: #1db954;
} }
.import-match-item.unmatched { .import-match-item.unmatched {
border-left-color: #ef4444; border-left-color: #ef4444;
opacity: 0.5; opacity: 0.5;
@ -22411,6 +22493,7 @@ body {
min-width: 24px; min-width: 24px;
text-align: center; text-align: center;
} }
.import-match-track { .import-match-track {
flex: 1; flex: 1;
font-size: 13px; font-size: 13px;
@ -22421,11 +22504,13 @@ body {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.import-match-arrow { .import-match-arrow {
color: rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.2);
font-size: 14px; font-size: 14px;
flex-shrink: 0; flex-shrink: 0;
} }
.import-match-file { .import-match-file {
flex: 1; flex: 1;
font-size: 12px; font-size: 12px;
@ -22436,6 +22521,7 @@ body {
text-overflow: ellipsis; text-overflow: ellipsis;
text-align: right; text-align: right;
} }
.import-match-confidence { .import-match-confidence {
font-size: 11px; font-size: 11px;
font-weight: 700; font-weight: 700;
@ -22443,16 +22529,19 @@ body {
border-radius: 10px; border-radius: 10px;
flex-shrink: 0; flex-shrink: 0;
} }
.import-match-confidence.high { .import-match-confidence.high {
background: rgba(29, 185, 84, 0.15); background: rgba(29, 185, 84, 0.15);
color: #1ed760; color: #1ed760;
border: 1px solid rgba(29, 185, 84, 0.2); border: 1px solid rgba(29, 185, 84, 0.2);
} }
.import-match-confidence.medium { .import-match-confidence.medium {
background: rgba(255, 193, 7, 0.15); background: rgba(255, 193, 7, 0.15);
color: #ffc107; color: #ffc107;
border: 1px solid rgba(255, 193, 7, 0.2); border: 1px solid rgba(255, 193, 7, 0.2);
} }
.import-match-confidence.low { .import-match-confidence.low {
background: rgba(239, 68, 68, 0.15); background: rgba(239, 68, 68, 0.15);
color: #ef4444; color: #ef4444;
@ -22468,6 +22557,7 @@ body {
padding: 20px 0 0; padding: 20px 0 0;
border-top: 1px solid rgba(255, 255, 255, 0.06); border-top: 1px solid rgba(255, 255, 255, 0.06);
} }
.import-match-stats { .import-match-stats {
font-size: 13px; font-size: 13px;
color: rgba(255, 255, 255, 0.5); color: rgba(255, 255, 255, 0.5);
@ -22487,15 +22577,18 @@ body {
border: 1px solid rgba(29, 185, 84, 0.3); border: 1px solid rgba(29, 185, 84, 0.3);
min-width: 120px; min-width: 120px;
} }
.import-process-btn:hover { .import-process-btn:hover {
background: linear-gradient(135deg, #1ed760 0%, #22e167 100%); background: linear-gradient(135deg, #1ed760 0%, #22e167 100%);
transform: translateY(-1px); transform: translateY(-1px);
box-shadow: 0 8px 24px rgba(29, 185, 84, 0.4); box-shadow: 0 8px 24px rgba(29, 185, 84, 0.4);
} }
.import-process-btn:active { .import-process-btn:active {
transform: translateY(0); transform: translateY(0);
box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3); box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
} }
.import-process-btn:disabled { .import-process-btn:disabled {
background: rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.3);
@ -22517,6 +22610,7 @@ body {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
min-width: 120px; min-width: 120px;
} }
.import-secondary-btn:hover { .import-secondary-btn:hover {
background: rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.15);
color: #fff; color: #fff;
@ -22534,15 +22628,18 @@ body {
border-bottom: 1px solid rgba(255, 255, 255, 0.06); border-bottom: 1px solid rgba(255, 255, 255, 0.06);
flex-wrap: wrap; flex-wrap: wrap;
} }
.import-singles-info { .import-singles-info {
font-size: 12px; font-size: 12px;
color: rgba(255, 255, 255, 0.4); color: rgba(255, 255, 255, 0.4);
} }
.import-singles-actions { .import-singles-actions {
display: flex; display: flex;
gap: 8px; gap: 8px;
align-items: center; align-items: center;
} }
.import-action-btn { .import-action-btn {
padding: 8px 18px; padding: 8px 18px;
border-radius: 10px; border-radius: 10px;
@ -22554,6 +22651,7 @@ body {
cursor: pointer; cursor: pointer;
transition: all 0.3s ease; transition: all 0.3s ease;
} }
.import-action-btn:hover { .import-action-btn:hover {
background: rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.12);
color: #fff; color: #fff;
@ -22568,6 +22666,7 @@ body {
overflow-y: auto; overflow-y: auto;
padding-right: 4px; padding-right: 4px;
} }
.import-singles-empty { .import-singles-empty {
text-align: center; text-align: center;
color: rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.3);
@ -22581,26 +22680,29 @@ body {
gap: 12px; gap: 12px;
padding: 12px 16px; padding: 12px 16px;
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 0%,
rgba(255, 255, 255, 0.02) 100%); rgba(255, 255, 255, 0.02) 100%);
border: 1px solid rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 12px; border-radius: 12px;
cursor: pointer; cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} }
.import-single-item:hover { .import-single-item:hover {
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.07) 0%,
rgba(255, 255, 255, 0.03) 100%); rgba(255, 255, 255, 0.03) 100%);
border-color: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.1);
transform: translateX(4px); transform: translateX(4px);
} }
.import-single-item.selected { .import-single-item.selected {
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(29, 185, 84, 0.1) 0%, rgba(29, 185, 84, 0.1) 0%,
rgba(29, 185, 84, 0.04) 100%); rgba(29, 185, 84, 0.04) 100%);
border-color: rgba(29, 185, 84, 0.3); border-color: rgba(29, 185, 84, 0.3);
} }
.import-single-item input[type="checkbox"] { .import-single-item input[type="checkbox"] {
accent-color: #1db954; accent-color: #1db954;
width: 18px; width: 18px;
@ -22608,10 +22710,12 @@ body {
flex-shrink: 0; flex-shrink: 0;
cursor: pointer; cursor: pointer;
} }
.import-single-info { .import-single-info {
flex: 1; flex: 1;
min-width: 0; min-width: 0;
} }
.import-single-title { .import-single-title {
font-size: 14px; font-size: 14px;
font-weight: 600; font-weight: 600;
@ -22620,11 +22724,13 @@ body {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.import-single-artist { .import-single-artist {
font-size: 12px; font-size: 12px;
color: rgba(255, 255, 255, 0.4); color: rgba(255, 255, 255, 0.4);
margin-top: 3px; margin-top: 3px;
} }
.import-single-ext { .import-single-ext {
font-size: 10px; font-size: 10px;
color: rgba(255, 255, 255, 0.25); color: rgba(255, 255, 255, 0.25);
@ -22642,12 +22748,14 @@ body {
padding: 50px 28px; padding: 50px 28px;
text-align: center; text-align: center;
} }
.import-progress-text { .import-progress-text {
font-size: 16px; font-size: 16px;
font-weight: 600; font-weight: 600;
color: #fff; color: #fff;
margin-bottom: 20px; margin-bottom: 20px;
} }
.import-progress-bar { .import-progress-bar {
height: 6px; height: 6px;
background: rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.08);
@ -22656,6 +22764,7 @@ body {
margin-bottom: 20px; margin-bottom: 20px;
position: relative; position: relative;
} }
.import-progress-fill { .import-progress-fill {
height: 100%; height: 100%;
background: linear-gradient(90deg, #1db954 0%, #1ed760 100%); background: linear-gradient(90deg, #1db954 0%, #1ed760 100%);
@ -22663,35 +22772,51 @@ body {
width: 0%; width: 0%;
transition: width 0.3s ease; transition: width 0.3s ease;
} }
/* Animated pulse while processing */ /* Animated pulse while processing */
.import-progress-fill.processing { .import-progress-fill.processing {
animation: import-progress-pulse 1.8s ease-in-out infinite; animation: import-progress-pulse 1.8s ease-in-out infinite;
} }
@keyframes import-progress-pulse { @keyframes import-progress-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; } 0%,
100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
} }
/* Striped animation while processing */ /* Striped animation while processing */
.import-progress-bar.processing .import-progress-fill { .import-progress-bar.processing .import-progress-fill {
background: repeating-linear-gradient( background: repeating-linear-gradient(-45deg,
-45deg, #1db954 0px,
#1db954 0px, #1db954 10px,
#1db954 10px, #1ed760 10px,
#1ed760 10px, #1ed760 20px);
#1ed760 20px
);
background-size: 28px 28px; background-size: 28px 28px;
animation: import-progress-stripes 0.8s linear infinite; animation: import-progress-stripes 0.8s linear infinite;
} }
@keyframes import-progress-stripes { @keyframes import-progress-stripes {
0% { background-position: 0 0; } 0% {
100% { background-position: 28px 0; } background-position: 0 0;
}
100% {
background-position: 28px 0;
}
} }
.import-progress-result { .import-progress-result {
font-size: 14px; font-size: 14px;
color: rgba(255, 255, 255, 0.6); color: rgba(255, 255, 255, 0.6);
line-height: 1.6; line-height: 1.6;
} }
.import-progress-actions { .import-progress-actions {
display: flex; display: flex;
justify-content: center; justify-content: center;
@ -22715,10 +22840,10 @@ body {
min-width: 220px; min-width: 220px;
max-width: 480px; max-width: 480px;
padding: 10px 14px; padding: 10px 14px;
background: linear-gradient(135deg, rgba(30,30,30,0.98), rgba(20,20,20,0.99)); background: linear-gradient(135deg, rgba(30, 30, 30, 0.98), rgba(20, 20, 20, 0.99));
border: 1px solid rgba(244, 67, 54, 0.3); border: 1px solid rgba(244, 67, 54, 0.3);
border-radius: 10px; border-radius: 10px;
color: rgba(255,255,255,0.9); color: rgba(255, 255, 255, 0.9);
font-size: 12px; font-size: 12px;
font-weight: 400; font-weight: 400;
white-space: normal; white-space: normal;
@ -22727,7 +22852,7 @@ body {
pointer-events: none; pointer-events: none;
opacity: 0; opacity: 0;
transition: opacity 0.2s ease; transition: opacity 0.2s ease;
box-shadow: 0 8px 24px rgba(0,0,0,0.4); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
} }
#error-tooltip-popup.visible { #error-tooltip-popup.visible {