From c8856eeff3a8fdcb6d458860e4fbbc82b4620f05 Mon Sep 17 00:00:00 2001
From: Drew Goodwin <drew@drewgoodwin.com>
Date: Sat, 10 Nov 2012 17:58:00 -0800
Subject: [PATCH] fixes #5873: @navbarInverseBrandColor not used

---
 docs/assets/css/bootstrap.css | 4 ++++
 less/navbar.less              | 4 ++++
 2 files changed, 8 insertions(+)

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