From 90c68f8b2ac46c1a539b76de344bfe5954dec88b Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Thu, 11 Jun 2026 23:42:39 -0400 Subject: [PATCH] fix(series): round the kebab backing on series cards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The tinted backing was set on the square .fc-kebab wrapper span while the button is round, so a translucent square showed behind the round ⋮. border-radius:50% makes the backing a circle matching the button. Co-Authored-By: Claude Opus 4.8 (1M context) --- frontend/src/views/SeriesView.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/views/SeriesView.vue b/frontend/src/views/SeriesView.vue index 4c25183..cc847ef 100644 --- a/frontend/src/views/SeriesView.vue +++ b/frontend/src/views/SeriesView.vue @@ -330,6 +330,7 @@ onMounted(() => { .fc-sbcard__kebab { position: absolute; top: 4px; right: 4px; background: rgba(20, 23, 26, 0.6) !important; + border-radius: 50%; color: rgb(var(--v-theme-on-surface)); } .fc-sbcard__kebab:hover { background: rgba(20, 23, 26, 0.85) !important; }