From d160f8eeacc463efe6923e251aa247043b8d1a92 Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Sun, 6 Jun 2021 21:06:31 +0100 Subject: [PATCH] Fixed incorrect button hover and active colours Former-commit-id: a9b841f0fb761bf240ca1d3f5bab670a6c75439e [formerly 2b682af0df262c20827ee126434e6cc9803ddf70 [formerly e6d1049d9dc15169fbb8f2e52f1f9764ad23d759]] Former-commit-id: bb7ef700c0f85c8527ffaa2b92e84c2d63d68496 Former-commit-id: fa281bf001f6506637053d4395d913c159fd7916 --- www/css/app.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/www/css/app.css b/www/css/app.css index 038cea3e..d6e5c928 100644 --- a/www/css/app.css +++ b/www/css/app.css @@ -230,17 +230,27 @@ div:not(.panel-success, .alert-message) { } nav a.btn-primary, .input-group-addon { - background: #d9edf7 !important; + background: #d9edf7; border-color: #d9edf7 !important; margin-top: 3px; padding: 5px 1em !important; } +.btn:hover, .btn:active, .btn-primary:active, .btn-primary.active { + background: lightsteelblue !important; + background-color: lightsteelblue !important; +} + .dark nav a.btn-primary, .dark .navbar-inverse { background: #222 !important; border-color: #222 !important; } +.dark .btn:hover, .dark .btn:active, .dark .btn-primary:active, .dark .btn-primary.active { + background: darkslategray !important; + background-color: darkslategray !important; +} + footer .btn-xs { margin: 5px 5px 10px; }