feat: enhance mobile audio player with initialization and styling improvements

This commit is contained in:
2025-07-23 04:05:55 +00:00
committed by GitHub
parent a6e65888ab
commit 463be90779
3 changed files with 130 additions and 27 deletions

View File

@@ -880,6 +880,34 @@
bottom: calc(4rem + env(safe-area-inset-bottom, 0));
}
/* Mobile Audio Player Styles */
.mobile-audio-player {
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-audio-player button {
-webkit-tap-highlight-color: transparent;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
/* Prevent iOS zoom on input focus */
@media screen and (max-width: 767px) {
input[type="range"] {
font-size: 16px;
}
/* Improve button touch targets */
.mobile-audio-player button {
min-height: 44px;
min-width: 44px;
}
}
/* Better focus states for accessibility */
button:focus-visible {