From 5d1d790e3987a5b46b14d0ad81676d42666da7a7 Mon Sep 17 00:00:00 2001 From: mic Date: Wed, 13 May 2026 23:00:07 +0200 Subject: [PATCH] antispam in progress aligned to the left --- js/mzta-compose-script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/mzta-compose-script.js b/js/mzta-compose-script.js index 28be6795..481185bb 100644 --- a/js/mzta-compose-script.js +++ b/js/mzta-compose-script.js @@ -923,7 +923,7 @@ switch (message.command) { // Loading badge in toolbar const badge = document.createElement('div'); - badge.style.cssText = `background-color: ${colors.spamLoading.bg}; color: ${colors.spamLoading.text}; border: 1px solid ${colors.spamLoading.border}; border-radius: 4px; padding: 2px 8px; font-size: 12px; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;`; + badge.style.cssText = `background-color: ${colors.spamLoading.bg}; color: ${colors.spamLoading.text}; border: 1px solid ${colors.spamLoading.border}; border-radius: 4px; padding: 2px 8px; font-size: 12px; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; margin-right: auto;`; const badgeLoading = document.createElement('img'); badgeLoading.src = browser.runtime.getURL("/images/loading.gif"); badgeLoading.style.cssText = "height: 14px; width: 14px;";