1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-12 08:34:08 +02:00

Fixes #20975: made navbar-text color on navbar-dark equal to non-hovered link color

This commit is contained in:
Valentine Abanosimov
2016-10-30 21:37:47 +03:00
committed by abvalentine
parent b071de65c7
commit d6132c9a5d

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;
}
}