share button

This commit is contained in:
sakrecoer 2026-08-07 15:01:03 +02:00
parent 4fa607ab86
commit 88fefad2fd
4 changed files with 164 additions and 2 deletions

View file

@ -813,6 +813,86 @@ button {
display: block;
margin: 0.2rem 0;
}
/* Share button row - between controls and lyrics */
.music-lightbox-share-row {
display: flex;
justify-content: center;
align-items: center;
margin: 2rem 0;
width: 100%;
}
/* Clean share button - smaller, no circle mask */
.music-lightbox-share-btn {
background: none;
border: 1.5px solid var(--accent-grey);
color: white;
font-size: 0.8rem;
cursor: pointer;
transition: all 0.3s ease;
padding: 0.25rem 0.8rem;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
opacity: 0.6;
gap: 0.3rem;
}
.music-lightbox-share-btn:hover {
opacity: 1;
transform: scale(1.05);
border-color: var(--accent-yellow);
background: rgba(255, 215, 0, 0.1);
}
.music-lightbox-share-btn .share-icon {
font-size: 0.9rem;
line-height: 1;
}
.music-lightbox-share-btn .share-label {
font-size: 0.5rem;
letter-spacing: 1.5px;
opacity: 0.8;
text-transform: uppercase;
}
/* Pop-out feedback for "✓ Copied!" */
.share-feedback {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%) translateY(20px);
background: rgba(0, 0, 0, 0.9);
color: var(--accent-yellow);
padding: 0.6rem 1.5rem;
border-radius: 8px;
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 0.8rem;
letter-spacing: 2px;
border: 1px solid var(--accent-yellow);
box-shadow: 0 4px 30px rgba(255, 215, 0, 0.2);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
z-index: 99999;
opacity: 0;
transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
pointer-events: none;
}
.share-feedback.visible {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
.share-feedback .checkmark {
color: #4caf50;
margin-right: 0.5rem;
}
/* Photo Grid - KEEP SKEW ON CARDS */
.photo-grid {
display: grid;