From d51693859bc52a39ecad2f78b2266a273ef7a765 Mon Sep 17 00:00:00 2001 From: kisfenyo Date: Sat, 10 Jan 2026 18:28:09 +0100 Subject: [PATCH] modified css on expand toggle button --- glance-system/glance.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/glance-system/glance.yaml b/glance-system/glance.yaml index a173f21..46443ba 100644 --- a/glance-system/glance.yaml +++ b/glance-system/glance.yaml @@ -492,6 +492,35 @@ data: ::-webkit-scrollbar-thumb:hover { background: rgba(226, 146, 255, 0.7); } + + /* Fix "Show more" bar background in RSS widget */ + .widget-type-rss .expand-toggle-button { + background: transparent !important; + box-shadow: none !important; + border: 0 !important; + } + + /* Glance often draws that ugly bar via a pseudo-element */ + .widget-type-rss .expand-toggle-button::before, + .widget-type-rss .expand-toggle-button::after, + .widget-type-rss .expand-toggle-button-icon::before, + .widget-type-rss .expand-toggle-button-icon::after { + background: transparent !important; + box-shadow: none !important; + border: 0 !important; + } + + /* Optional: make it feel "intentional" instead of floating */ + .widget-type-rss .expand-toggle-button { + margin-top: 8px !important; + padding: 10px 12px !important; + border-top: 1px solid rgba(255,255,255,0.08) !important; + color: rgba(255,255,255,0.75) !important; + } + .widget-type-rss .expand-toggle-button:hover { + color: rgba(255,255,255,0.95) !important; + } + --- apiVersion: apps/v1 kind: Deployment