From 6066d0af0218e2ade231dcbb17f08c6897e84a2e Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Thu, 11 Jun 2026 22:06:58 +0900 Subject: [PATCH] Email reader: solid bg + gradient fade on action cluster overlay MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Was rendering as a transparent ghost — From chip / sender text bled through the gaps between icons. Added a left-fading gradient backed by var(--bg) so the cluster reads as an opaque overlay while chips poking out from underneath blend smoothly into its left edge. --- static/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/style.css b/static/style.css index ecb38b2a3..b228bb7a4 100644 --- a/static/style.css +++ b/static/style.css @@ -28083,6 +28083,11 @@ button .spinner-whirlpool { top: 1px; right: 14px; z-index: 2; + /* Solid background with a left-edge gradient fade so the From + chip / sender text doesn't bleed through the gaps between icons + when they overlay. */ + background: linear-gradient(to right, transparent 0, var(--bg) 18px); + padding-left: 22px; } .email-reader-meta-row.email-reader-meta-from { position: relative;