From: Drew Goodwin Date: Sun, 11 Nov 2012 01:58:00 +0000 (-0800) Subject: fixes #5873: @navbarInverseBrandColor not used X-Git-Tag: v2.2.2~71^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5874%2Fhead;p=thirdparty%2Fbootstrap.git fixes #5873: @navbarInverseBrandColor not used --- diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 085ad14001..401e68000f 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4678,6 +4678,10 @@ input[type="submit"].btn.btn-mini { color: #ffffff; } +.navbar-inverse .brand { + color: #999999; +} + .navbar-inverse .navbar-text { color: #999999; } diff --git a/less/navbar.less b/less/navbar.less index 532c5926b8..3cc0ef2031 100644 --- a/less/navbar.less +++ b/less/navbar.less @@ -394,6 +394,10 @@ } } + .brand { + color: @navbarInverseBrandColor; + } + .navbar-text { color: @navbarInverseText; }