From be126afcf8657edda424a5518ed5969f7eb27f9a Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Thu, 11 Jun 2026 12:44:02 +0900 Subject: [PATCH] Email accounts strip: bigger 18x18 hit target around the small default-dot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 6px dot was easy to miss on touch / small-cursor setups. Replace padding-only sizing with explicit width:18px;height:18px on the button, dot centered inside via justify-content. Anchor moved from right:9 → right:6 so the visible dot stays where it was; the extra clickable area extends inward from the chip edge. --- static/js/emailLibrary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/emailLibrary.js b/static/js/emailLibrary.js index 9553a73b1..0c6352d15 100644 --- a/static/js/emailLibrary.js +++ b/static/js/emailLibrary.js @@ -1343,7 +1343,7 @@ function _renderAccountsStrip() { const dotTitle = a.is_default ? 'Default account' : 'Set as default'; html += `` + `` - + `` + + `` + ``; } strip.innerHTML = html;