From 239cc02422731e409098e1922fd3e5accac0f2e7 Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Thu, 11 Jun 2026 18:29:35 +0900 Subject: [PATCH] AI Reply menu: SVG icons for Fast (lightning) and Full (concentric circles) --- static/js/emailLibrary.js | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/static/js/emailLibrary.js b/static/js/emailLibrary.js index 77c144026..1a5ff70f1 100644 --- a/static/js/emailLibrary.js +++ b/static/js/emailLibrary.js @@ -5402,9 +5402,18 @@ function _showAiReplyChoice(btn, em, data) { 'border-radius:7px', 'box-shadow:0 8px 24px rgba(0,0,0,.28)', ].join(';'); + // Fast = lightning bolt (already used as a 'fast' glyph elsewhere in the app). + // Full = layered concentric circles to suggest "more, deeper" — not a fully + // filled circle so it reads as a complement to the lightning, not as a "stop". menu.innerHTML = ` - - + + `; menu.addEventListener('click', async (ev) => { const choice = ev.target.closest('[data-mode]');