From e7c12b4253c68f190894982070e3dea9a85498a1 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Tue, 9 Sep 2025 10:27:27 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(frontend)=20fix=20CSS=20rules=20th?= =?UTF-8?q?at=20hide=20Crisp=20support=20button?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Correct CSS specificity issues that were overriding and hiding the Crisp chatbot button, ensuring support functionality remains accessible to users. --- src/frontend/src/styles/index.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/frontend/src/styles/index.css b/src/frontend/src/styles/index.css index 5ed3b281..1762668a 100644 --- a/src/frontend/src/styles/index.css +++ b/src/frontend/src/styles/index.css @@ -29,6 +29,10 @@ body:has(.lk-video-conference) #crisp-chatbox-button { display: none !important; } +body:has(.lk-video-conference) #crisp-chatbox > * > div[role='button'] { + display: none !important; +} + @keyframes slide-full { from { transform: translateY(100%);