Browse Source
Fix dark mode bug in button groups, remove button outlines in Chrome
master
Pēteris Caune
3 years ago
No known key found for this signature in database
GPG Key ID: E28D7679E9A9EDE2
2 changed files with
7 additions and
0 deletions
-
static/css/base.css
-
static/css/bootstrap-colors.css
|
|
@ -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; |
|
|
|
} |
|
|
@ -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); |
|
|
|