From 00643b5a4bdeadedf8de5453cb5396bd8c88392d Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Thu, 11 Jun 2026 07:30:26 +0900 Subject: [PATCH] Email library New (compose): envelope icon takes the accent color --- static/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/style.css b/static/style.css index 9d3829cc9..f5c079192 100644 --- a/static/style.css +++ b/static/style.css @@ -29818,6 +29818,10 @@ body.doc-find-active mark.doc-find-mark.current { @media (min-width: 769px) { #email-lib-compose-btn { height: 28px; top: 0; } } +/* Envelope icon picks up the user's accent so the primary action is + easy to spot at any size. The SVG already uses stroke=currentColor, + so a color: rule on the svg propagates. */ +#email-lib-compose-btn svg { color: var(--accent, var(--red)); } @media (max-width: 768px) { /* On mobile they're 1px higher than desktop. */ #email-lib-select-btn, #email-lib-refresh-btn { top: -3px; }