Fixed incorrect button hover and active colours

Former-commit-id: a9b841f0fb761bf240ca1d3f5bab670a6c75439e [formerly 2b682af0df262c20827ee126434e6cc9803ddf70 [formerly e6d1049d9dc15169fbb8f2e52f1f9764ad23d759]]
Former-commit-id: bb7ef700c0f85c8527ffaa2b92e84c2d63d68496
Former-commit-id: fa281bf001f6506637053d4395d913c159fd7916
This commit is contained in:
Jaifroid 2021-06-06 21:06:31 +01:00
parent 56b2a2ca30
commit d160f8eeac

View File

@ -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;
}