From ddf164f1c255a8ada8315842a34f07c7b5d79531 Mon Sep 17 00:00:00 2001 From: mic Date: Thu, 5 Sep 2024 22:00:50 +0200 Subject: [PATCH] api chat window status message colors fixed for light theme --- api_webchat/messageInput.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/api_webchat/messageInput.js b/api_webchat/messageInput.js index 3228c558..1331781b 100644 --- a/api_webchat/messageInput.js +++ b/api_webchat/messageInput.js @@ -64,13 +64,17 @@ messagesInputStyle .textContent = ` border: 1px solid lightgrey; border-radius: 5px; padding: 5px; - background: #212121; + background: #F2F2F2; } @media (prefers-color-scheme: dark) { #messageInputField { background-color: #303030; color: #ffffff; } + #statusLogger{ + background: #212121; + color: #ffffff; + } } `; messageInputTemplate.content.appendChild(messagesInputStyle);