Navbar right padding broken when using navbar-fixed-top with 3.0.3
Created by: tkrotoff
The navbar right padding is broken when using navbar-fixed-top with Bootstrap 3.0.3. Was working fine with Bootstrap 3.0.2.
navbar-static-top and navbar-fixed-bottom are probably impacted too.
Live example: http://plnkr.co/edit/zn1Pc0?p=preview
The issue is most probably related to this commit: https://github.com/twbs/bootstrap/commit/5a0365524d8a190c718bcb4950c423c9bef75bd9
Version 3.0.3 contains the following code:
// Undo the collapse side padding for navbars with containers to ensure
// alignment of right-aligned contents.
.navbar-fixed-top &,
.navbar-static-top &,
.navbar-fixed-bottom & {
padding-left: 0;
padding-right: 0;
}
3.0.2 does not.