From 857b277db5bd9ecfcf982aa9985be1162b42428e Mon Sep 17 00:00:00 2001 From: Armin Date: Wed, 8 Jul 2026 16:33:45 +0200 Subject: [PATCH] style: use default cursor for playlist items instead of pointer --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index ee7f370..babb48a 100644 --- a/index.html +++ b/index.html @@ -77,7 +77,7 @@ select option { background: #1e2132; color: #c6c8d1; } .playlist-body::-webkit-scrollbar { width: 6px; } .playlist-body::-webkit-scrollbar-track { background: transparent; } .playlist-body::-webkit-scrollbar-thumb { background: #272c42; border-radius: 3px; } -.track-item { display: grid; grid-template-columns: 36px minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) 60px 60px; gap: 8px; padding: 6px 24px; cursor: pointer; font-size: 12px; border-left: 3px solid transparent; transition: background .08s; align-items: center; user-select: none; } +.track-item { display: grid; grid-template-columns: 36px minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) 60px 60px; gap: 8px; padding: 6px 24px; cursor: default; font-size: 12px; border-left: 3px solid transparent; transition: background .08s; align-items: center; user-select: none; } .track-item:nth-child(odd) { background: rgba(0,0,0,0.12); } .track-item:hover { background: #1e2132; } .track-item.active { background: linear-gradient(to bottom, rgba(135,190,130,0.12), rgba(135,190,130,0.06)); border-left-color: #87be82; }