0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-29 21:52:22 +01:00

Merge pull request #21046 from abvalentine/issue-20975

Fixes #20975: navbar-text on navbar-dark and bg-inverse is invisible
This commit is contained in:
Mark Otto 2016-10-30 13:32:21 -07:00 committed by GitHub
commit 9ff198968b

View File

@ -226,6 +226,10 @@
.navbar-divider {
background-color: rgba(0,0,0,.075);
}
.navbar-text {
color: $navbar-light-color;
}
}
// White links against a dark background
@ -266,6 +270,10 @@
.navbar-divider {
background-color: rgba(255,255,255,.075);
}
.navbar-text {
color: $navbar-dark-color;
}
}