From 1791539fb51c0632581a317ad213384ad459257b Mon Sep 17 00:00:00 2001 From: Mikko Ahlroth Date: Thu, 28 Dec 2023 12:48:09 +0200 Subject: [PATCH] Better cursor for list items --- style.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/style.css b/style.css index dbc7424..e20a6cf 100644 --- a/style.css +++ b/style.css @@ -324,13 +324,17 @@ single-artist-view { grid-column: 1 / -1; } +.library-item { + cursor: default; +} + +.library-item:active { + background: var(--glass-background); +} + .library-item img { } .library-item h3 { overflow-wrap: break-word; } - -.library-item:active { - background: var(--glass-background); -}