diff options
| author | avindra <[email protected]> | 2014-03-02 16:19:44 -0500 |
|---|---|---|
| committer | avindra <[email protected]> | 2014-03-02 16:19:44 -0500 |
| commit | 80ce694b2499f45142b9746aa862cf288ce38e5e (patch) | |
| tree | afd4112d9942ee7bf3d7a0dc9bd3826f72814e2d /docs/examples | |
| parent | cd134f1ed6b83854bf1f327d092022cfacc1c655 (diff) | |
| download | bootstrap-80ce694b2499f45142b9746aa862cf288ce38e5e.tar.xz bootstrap-80ce694b2499f45142b9746aa862cf288ce38e5e.zip | |
Fix for stray 1px line under top navigation
If you add an "active" class to one of the <li> elements in the top navigation, and style it so that active tabs have a different color, it becomes clear that there is a 1 pixel stray line under the navigation. This style fixes that.
Diffstat (limited to 'docs/examples')
| -rw-r--r-- | docs/examples/dashboard/dashboard.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/examples/dashboard/dashboard.css b/docs/examples/dashboard/dashboard.css index ef6c0cfdb..22e3fdef6 100644 --- a/docs/examples/dashboard/dashboard.css +++ b/docs/examples/dashboard/dashboard.css @@ -17,6 +17,13 @@ body { border-bottom: 1px solid #eee; } +/* + * Top navigation + * Hide default border to remove 1px line. + */ +.navbar-fixed-top { + border:0; +} /* * Sidebar |
