From 8a0ac1051bd0729336b9db187a71833de858a415 Mon Sep 17 00:00:00 2001 From: Johan Girod Date: Fri, 7 Feb 2020 10:55:16 +0100 Subject: [PATCH] :art::bug: corrige le hover des boutons --- source/components/conversation/conversation.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/components/conversation/conversation.css b/source/components/conversation/conversation.css index af68ce51c..95ee57578 100644 --- a/source/components/conversation/conversation.css +++ b/source/components/conversation/conversation.css @@ -123,12 +123,13 @@ .step label.userAnswerButton.selected { background: var(--color); border: 1px solid var(--color); + color: var(--textColor) !important; } @media (hover) { .step label.userAnswerButton:hover:not(.selected) { background: var(--color); border: 1px solid var(--color); - color: var(--textColor); + color: var(--textColor) !important; transition: all 0.05s; } }