From 4e1bfd398cb481ed5035afbac823c79144252769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Thuret?= Date: Sun, 24 Oct 2021 13:13:52 +0200 Subject: [PATCH] fix background color --- app/static/css/main.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/static/css/main.css b/app/static/css/main.css index 78b7601..ff697aa 100644 --- a/app/static/css/main.css +++ b/app/static/css/main.css @@ -123,13 +123,17 @@ h3.header { color: #42A5F5; } +.btn-switch-type:focus { + background-color: inherit; +} + .btn-switch-type:hover { - background-color: #eee; + background-color: #eee !important; color: #42A5F5; } .btn-switch-type.active { - background-color: #42A5F5; + background-color: #42A5F5 !important; color: #fff; }