From a29255c848be496438b9f7a76a07b81e454ee001 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Sun, 15 Feb 2026 21:33:18 +0000 Subject: [PATCH] fix: Update theme selector to change chat colors and add login page logo - Fix theme CSS path from /public/themes/ to /suite/public/themes/ - When user selects theme, update chat color variables to match - Only apply bot config colors if user hasn't selected custom theme - Add bot logo support to login page - Add CSS styling for login logo image Co-Authored-By: Claude Sonnet 4.5 --- ui/suite/auth/login.html | 70 ++++++++++++++++++++++++++++++++++-- ui/suite/chat/chat.html | 58 +++++++++++++++++++----------- ui/suite/css/app.css | 4 +++ ui/suite/js/theme-manager.js | 16 ++++++++- 4 files changed, 124 insertions(+), 24 deletions(-) diff --git a/ui/suite/auth/login.html b/ui/suite/auth/login.html index 43a31d1..8e58932 100644 --- a/ui/suite/auth/login.html +++ b/ui/suite/auth/login.html @@ -75,6 +75,18 @@ box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3); } + .login-logo img { + width: 100%; + height: 100%; + object-fit: contain; + border-radius: 18px; + } + + .login-logo:has(img[src]) { + background: transparent; + box-shadow: none; + } + .login-title { font-size: 1.75rem; font-weight: 700; @@ -585,9 +597,12 @@