Remove more fluid grid stuff

* No more fluid layout
* No fluid grid overrides for tables.less
* No more fluid example page
This commit is contained in:
Mark Otto
2012-11-30 16:18:40 -08:00
parent adc2c779a0
commit 0fabca01db
8 changed files with 3 additions and 215 deletions

View File

@@ -5,6 +5,7 @@
// Set the container width, and override it for fixed navbars in media queries
.container {
.container-fixed();
max-width: 940px;
}

View File

@@ -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();
}

View File

@@ -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
// ----------

View File

@@ -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

View File

@@ -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>