]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fixes #7783: nuke bottom margin on fixed-bottom-navbar
authorMark Otto <otto@github.com>
Sat, 4 May 2013 20:11:20 +0000 (13:11 -0700)
committerMark Otto <otto@github.com>
Sat, 4 May 2013 20:11:20 +0000 (13:11 -0700)
docs/assets/css/bootstrap.css
less/navbar.less

index e1260c7d596fd5e6e0cac75cda8badad179caeef..eba96cb3002d171dd716536e8ac0447e1f0ba6df 100644 (file)
@@ -3578,6 +3578,7 @@ button.close {
 
 .navbar-fixed-bottom {
   bottom: 0;
+  margin-bottom: 0;
 }
 
 .navbar-brand {
index bf9c3646a0b3282a7f7e03b01fe3d84a0e0de2be..d4e5286a5a6120f10eaf99458226c6ad4efaddf4 100644 (file)
   z-index: @zindex-navbar-fixed;
   border-radius: 0;
 }
-.navbar-fixed-top    { top: 0; }
-.navbar-fixed-bottom { bottom: 0; }
+.navbar-fixed-top {
+  top: 0;
+}
+.navbar-fixed-bottom {
+  bottom: 0;
+  margin-bottom: 0; // override .navbar defaults
+}
 
 
 
 
 
 
-// Inverse navbar
+// Responsive navbar
 // --------------------------------------------------
 
 @media screen and (min-width: @screen-tablet) {