diff options
| author | Mark Otto <[email protected]> | 2012-11-30 16:18:40 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-11-30 16:18:40 -0800 |
| commit | 0fabca01dbd02c480cfb431d5abb0d6cd327622e (patch) | |
| tree | 097d9d22c1dc04f62b552528e641e7eabdbaa692 /less | |
| parent | adc2c779a06f1eea4fefddcf0d666a7131477d8c (diff) | |
| download | bootstrap-0fabca01dbd02c480cfb431d5abb0d6cd327622e.tar.xz bootstrap-0fabca01dbd02c480cfb431d5abb0d6cd327622e.zip | |
Remove more fluid grid stuff
* No more fluid layout
* No fluid grid overrides for tables.less
* No more fluid example page
Diffstat (limited to 'less')
| -rw-r--r-- | less/grid.less | 1 | ||||
| -rw-r--r-- | less/layouts.less | 16 | ||||
| -rw-r--r-- | less/responsive-767px-max.less | 4 | ||||
| -rw-r--r-- | less/tables.less | 4 | ||||
| -rw-r--r-- | less/tests/forms-responsive.html | 11 |
5 files changed, 2 insertions, 34 deletions
diff --git a/less/grid.less b/less/grid.less index b401d4b6d..15017b7cb 100644 --- a/less/grid.less +++ b/less/grid.less @@ -5,6 +5,7 @@ // Set the container width, and override it for fixed navbars in media queries .container { + .container-fixed(); max-width: 940px; } diff --git a/less/layouts.less b/less/layouts.less deleted file mode 100644 index 7a65d65d6..000000000 --- a/less/layouts.less +++ /dev/null @@ -1,16 +0,0 @@ -// -// Layouts -// -------------------------------------------------- - - -// Container (centered, fixed-width layouts) -.container { - .container-fixed(); -} - -// Fluid layouts (left aligned, with sidebar, min- & max-width content) -.container-fluid { - padding-right: @grid-gutter-width; - padding-left: @grid-gutter-width; - .clearfix(); -}
\ No newline at end of file diff --git a/less/responsive-767px-max.less b/less/responsive-767px-max.less index 1d88ddf94..0a2ff6ef9 100644 --- a/less/responsive-767px-max.less +++ b/less/responsive-767px-max.less @@ -17,10 +17,6 @@ margin-left: -20px; margin-right: -20px; } - // Remove padding on container given explicit padding set on body - .container-fluid { - padding: 0; - } // TYPOGRAPHY // ---------- diff --git a/less/tables.less b/less/tables.less index 30ef9c9bb..eaa494e5b 100644 --- a/less/tables.less +++ b/less/tables.less @@ -169,9 +169,7 @@ table { // Reset default grid behavior table td[class*="span"], -table th[class*="span"], -.row-fluid table td[class*="span"], -.row-fluid table th[class*="span"] { +table th[class*="span"] { display: table-cell; float: none; // undo default grid column styles margin-left: 0; // undo default grid column styles diff --git a/less/tests/forms-responsive.html b/less/tests/forms-responsive.html index 846d5b43d..7a8f8925f 100644 --- a/less/tests/forms-responsive.html +++ b/less/tests/forms-responsive.html @@ -54,17 +54,6 @@ <span class="uneditable-input span2">span2</span> </div> - - <div class="page-header"> - <h1>Fluid grid</h1> - </div> - - <div class="row-fluid"> - <input type="text" class="span2" placeholder="span2"> - <select class="span2"><option>span2</option></select> - <span class="uneditable-input span2">span1</span> - </div> - </form> <!-- /container --> </body> |
