fix(ui): fix tab background color

This commit is contained in:
Łukasz Mierzwa
2018-08-15 19:20:46 +01:00
parent ee545f9500
commit 0aa4acf29b
2 changed files with 5 additions and 2 deletions

View File

@@ -2766,8 +2766,8 @@ input[type="button"].btn-block {
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
color: #7b8a8b;
background-color: #455a64;
border-color: #dee2e6 #dee2e6 #455a64; }
background-color: #fff;
border-color: #dee2e6 #dee2e6 #fff; }
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-left-radius: 0;

View File

@@ -11,6 +11,9 @@ $link-color: #7b8a8b; // $gray-700
// make dark darker, default it's $gray-700
$dark: #3b4247;
// fix active tab color, for some reason it ends up with $primary as bg color
$nav-tabs-link-active-bg: #fff;
@import "../node_modules/bootswatch/dist/flatly/variables";
@import "../node_modules/bootstrap/scss/bootstrap";
@import "../node_modules/bootswatch/dist/flatly/bootswatch";