diff options
| author | Mark Otto <[email protected]> | 2012-03-25 16:40:51 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-03-25 16:41:46 -0700 |
| commit | 95c2877ffca46aa5812b0b2b2ace6608d309586d (patch) | |
| tree | af696a7337585f486a945cd8a2fc85be0439e10d /less | |
| parent | 8d52e6d458e10c618698cc7698f252003e727eb7 (diff) | |
| download | bootstrap-95c2877ffca46aa5812b0b2b2ace6608d309586d.tar.xz bootstrap-95c2877ffca46aa5812b0b2b2ace6608d309586d.zip | |
remove > in fluid grid selectors, fix double padding issue on fluid layout and example
Diffstat (limited to 'less')
| -rw-r--r-- | less/mixins.less | 4 | ||||
| -rw-r--r-- | less/responsive-767px-max.less | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/less/mixins.less b/less/mixins.less index f3774a533..8e72f23cc 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -578,11 +578,11 @@ .row-fluid { width: 100%; .clearfix(); - > [class*="span"] { + [class*="span"] { float: left; margin-left: @fluidGridGutterWidth; } - > [class*="span"]:first-child { + [class*="span"]:first-child { margin-left: 0; } diff --git a/less/responsive-767px-max.less b/less/responsive-767px-max.less index bb4a449f8..7a3318a8f 100644 --- a/less/responsive-767px-max.less +++ b/less/responsive-767px-max.less @@ -75,11 +75,16 @@ padding-left: 20px; padding-right: 20px; } + // Negative indent the now static "fixed" navbar .navbar-fixed-top, .navbar-fixed-bottom { margin-left: -20px; margin-right: -20px; } + // Remove padding on container given explicit padding set on body + .container-fluid { + padding: 0; + } // GRID & CONTAINERS // ----------------- |
