fix(ui): email без синего фона; версия v1.3.21 в подвале Help

This commit is contained in:
“Naeel”
2026-05-02 17:41:54 +04:00
parent ef1256ca73
commit 8a8a2e694d
3 changed files with 14 additions and 8 deletions
+11 -6
View File
@@ -62,15 +62,20 @@ function setUserAvatar(token) {
if (email) {
el.textContent = email;
el.title = email;
el.style.fontSize = '0.7rem';
el.style.minWidth = '60px';
el.style.padding = '0 8px';
el.style.fontSize = '0.75rem';
el.style.minWidth = 'auto';
el.style.padding = '0 10px';
el.style.background = 'none';
el.style.border = '1px solid var(--border)';
el.style.borderRadius = '6px';
el.style.color = 'var(--text-primary)';
el.style.fontWeight = '400';
el.style.width = 'auto';
el.style.height = '30px';
} else {
el.textContent = 'N';
el.title = '';
el.style.fontSize = '';
el.style.minWidth = '';
el.style.padding = '';
el.style.cssText = '';
}
}