Browse Source

Fix dark mode bug in button groups, remove button outlines in Chrome

master
Pēteris Caune 3 years ago
parent
commit
bee0512d80
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
2 changed files with 7 additions and 0 deletions
  1. +6
    -0
      static/css/base.css
  2. +1
    -0
      static/css/bootstrap-colors.css

+ 6
- 0
static/css/base.css View File

@ -246,3 +246,9 @@ pre {
.nav-pills > li.active > a:focus {
outline: 0;
}
/* no button outlines in Chrome-- */
.btn-default.active,
.btn-default.active.focus {
outline: 0;
}

+ 1
- 0
static/css/bootstrap-colors.css View File

@ -9,6 +9,7 @@
.btn-default:hover:active,
.btn-default:focus,
.btn-default:active,
.btn-default.active.focus,
.btn-default.active:hover {
color: var(--btn-active-color);
background-color: var(--btn-active-bg);


Loading…
Cancel
Save