From 2a6544fe560fe1b8c711ba521a7fee7df772167a Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sun, 14 Dec 2025 20:58:35 +0100 Subject: [PATCH] dimmer, also remove debug --- modules/web.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/web.html b/modules/web.html index b8af13c..c29739a 100644 --- a/modules/web.html +++ b/modules/web.html @@ -33,7 +33,7 @@ ul.playlist li:hover{background:rgba(255,255,255,0.02)} ul.playlist li.current{background:rgba(62,166,255,0.08)} ul.playlist li.selected{background:rgba(62, 165, 255, 0.305)} - ul.playlist li.pointer{background:rgba(62, 165, 255, 0.197)} + ul.playlist li.pointer{background:rgba(62, 165, 255, 0.13)} .controls{display:flex; gap:8px; margin-top:8px} .two-col{display:flex; gap:8px; align-items:flex-start; height:100%} .box{display:flex; flex-direction:column; gap:8px; flex-grow: 1; overflow: hidden;} @@ -283,7 +283,6 @@ li.addEventListener("click", () => { selectPlaylistItem(i, li); }); const p = li.dataset.path; - console.log(currentTrackPath, p, currentTrackIndex, i) if(p && currentTrackPath.includes(p) && i === currentTrackIndex){ li.classList.add("current"); currentIndex = i;