From 3395d697c284f94c60fc56ba920edc8be042db27 Mon Sep 17 00:00:00 2001 From: Broque Thomas Date: Tue, 30 Sep 2025 19:43:05 -0700 Subject: [PATCH] Update Beatport slider layout and remove track meta Removed genre and year metadata from Beatport slider track cards in script.js. Increased slider height and track info max-width in style.css to improve layout and visual presentation. --- webui/static/script.js | 4 ---- webui/static/style.css | 4 ++-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/webui/static/script.js b/webui/static/script.js index 9327dd2a..2869be7d 100644 --- a/webui/static/script.js +++ b/webui/static/script.js @@ -18498,10 +18498,6 @@ function populateBeatportSlider(tracks) {

${track.artist}

New on Beatport

-
- ${track.genre} - ${track.year} -
`; diff --git a/webui/static/style.css b/webui/static/style.css index f7acd6c6..23ca087a 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -4437,7 +4437,7 @@ body { .beatport-rebuild-slider { position: relative; width: 100%; - height: 400px; + height: 500px; border-radius: 20px; overflow: hidden; box-shadow: @@ -4537,7 +4537,7 @@ body { z-index: 2; text-align: center; padding: 40px; - max-width: 600px; + max-width: 1000px; } .beatport-rebuild-track-info {