diff options
| author | ctalkington <[email protected]> | 2012-03-15 14:21:27 -0500 |
|---|---|---|
| committer | ctalkington <[email protected]> | 2012-03-15 14:21:27 -0500 |
| commit | bf09c979ca8f8275806e8ca3eef57ad484b2951e (patch) | |
| tree | 74a977a9d6f7eb0dff4afacc62b99d8370f575fb | |
| parent | 8e0afbeaa42dfabb75817b7fc1c677cd372c8c43 (diff) | |
| download | bootstrap-bf09c979ca8f8275806e8ca3eef57ad484b2951e.tar.xz bootstrap-bf09c979ca8f8275806e8ca3eef57ad484b2951e.zip | |
make brand links follow navbarLinkColor but also be customizable in advanced cases.
| -rw-r--r-- | docs/assets/css/bootstrap.css | 2 | ||||
| -rw-r--r-- | less/navbar.less | 2 | ||||
| -rw-r--r-- | less/variables.less | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 081f97ee0..142020181 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2868,7 +2868,7 @@ input[type="submit"].btn.btn-mini { font-size: 20px; font-weight: 200; line-height: 1; - color: #ffffff; + color: #999999; } .navbar .navbar-text { margin-bottom: 0; diff --git a/less/navbar.less b/less/navbar.less index 8eb1332ae..cda6721e3 100644 --- a/less/navbar.less +++ b/less/navbar.less @@ -74,7 +74,7 @@ font-size: 20px; font-weight: 200; line-height: 1; - color: @white; + color: @navbarBrandColor; } // Plain text in topbar .navbar-text { diff --git a/less/variables.less b/less/variables.less index 94c3a0667..812587fcd 100644 --- a/less/variables.less +++ b/less/variables.less @@ -154,6 +154,7 @@ @navbarSearchBackgroundFocus: @white; @navbarSearchBorder: darken(@navbarSearchBackground, 30%); @navbarSearchPlaceholderColor: #ccc; +@navbarBrandColor: @navbarLinkColor; // Hero unit |
