From 4b239957c4e3ff25d2c967a841bdc73139e09f2f Mon Sep 17 00:00:00 2001 From: Frank Stellmacher <171614930+Psychotoxical@users.noreply.github.com> Date: Tue, 19 May 2026 00:17:34 +0200 Subject: [PATCH] fix(ui): restore round play and enqueue buttons on cards and rails (#788) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Album-card play and enqueue overlay buttons revert to a pill shape (var(--radius-full)); the small play button next to track numbers in the album track list / artist top-tracks reverts to a circle (50%). The square shape from the consistency sweep felt off against the round covers — back to the original round/pill family for these specific icons. All other surfaces touched in #745 stay on var(--radius-sm). --- src/styles/components/album-row-container.css | 2 +- src/styles/components/tracklist.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/components/album-row-container.css b/src/styles/components/album-row-container.css index bd993072..5b754c0e 100644 --- a/src/styles/components/album-row-container.css +++ b/src/styles/components/album-row-container.css @@ -236,7 +236,7 @@ color: var(--ctp-crust); border: none; padding: 8px 20px; - border-radius: var(--radius-sm); + border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; diff --git a/src/styles/components/tracklist.css b/src/styles/components/tracklist.css index 8cb4fae0..1f7d06be 100644 --- a/src/styles/components/tracklist.css +++ b/src/styles/components/tracklist.css @@ -269,7 +269,7 @@ height: 24px; padding: 0; border: none; - border-radius: var(--radius-sm); + border-radius: 50%; background: var(--accent); color: var(--ctp-crust); cursor: pointer;