Fix nav-bar in dark mode

This commit is contained in:
Johannes Zellner
2020-07-21 10:18:50 +02:00
parent ad86b4b1eb
commit 1e5d28e2a2

View File

@@ -1823,4 +1823,24 @@ tag-input {
.email-domain-list-item, .email-domain-list-item:hover {
color: $textColor;
}
.nav-tabs {
border-bottom: 1px solid $backgroundDark;
}
.nav-tabs > li > a
.nav-tabs > li > a:focus,
.nav-tabs > li > a:hover {
background-color: $backgroundLight;
border: 1px solid $backgroundDark;
border-bottom-color: transparent;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
background-color: $backgroundDark;
color: $textColor;
border: 1px solid $backgroundDark;
}
}