From 79c04c71e951170eac3fb4dbdd064407a9360c79 Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Thu, 11 Jun 2026 11:57:46 +0900 Subject: [PATCH] Email accounts strip: shrink default-dot to 6px (matches sidebar notif dot) --- static/js/emailLibrary.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/static/js/emailLibrary.js b/static/js/emailLibrary.js index 21800ecff..28abeabb9 100644 --- a/static/js/emailLibrary.js +++ b/static/js/emailLibrary.js @@ -1333,10 +1333,9 @@ function _renderAccountsStrip() { // 'Default' rather than 'All (default)' — this view shows the account // marked is_default; cross-account aggregation is a separate feature. let html = ``; - // Small default-account dot — slightly smaller than the previous 10px - // version so it doesn't dominate the chip's right edge. - const _dotFilled = ''; - const _dotHollow = ''; + // 6px dot — matches the sidebar notification-dot size. + const _dotFilled = ''; + const _dotHollow = ''; for (const a of state._libAccounts) { const active = state._libAccountId === a.id ? ' active' : ''; const label = a.name || a.from_address || a.imap_user || 'account';