Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markotto@twitter.com>2012-09-26 09:18:34 +0400
committerMark Otto <markotto@twitter.com>2012-09-26 09:18:34 +0400
commit151ed38cdcd938d4495482fb848736ee7b885c64 (patch)
tree26f8604c404b59b585796607cd37044131146b6f /less/responsive-767px-max.less
parent9e97098802d969d338fdb6c553cf6cee903c8663 (diff)
remove references to row fluid elsewhere
Diffstat (limited to 'less/responsive-767px-max.less')
-rw-r--r--less/responsive-767px-max.less15
1 files changed, 4 insertions, 11 deletions
diff --git a/less/responsive-767px-max.less b/less/responsive-767px-max.less
index 45ce4ebc77..ebac6edd23 100644
--- a/less/responsive-767px-max.less
+++ b/less/responsive-767px-max.less
@@ -43,10 +43,6 @@
.container {
width: auto;
}
- // Fluid rows
- .row-fluid {
- width: 100%;
- }
// Undo negative margin on rows and thumbnails
.row,
.thumbnails {
@@ -58,22 +54,19 @@
}
// Make all grid-sized elements block level again
[class*="span"],
- .uneditable-input[class*="span"], // Makes uneditable inputs full-width when using grid sizing
- .row-fluid [class*="span"] {
+ // Makes uneditable inputs full-width when using grid sizing
+ .uneditable-input[class*="span"] {
float: none;
display: block;
width: 100%;
margin-left: 0;
.box-sizing(border-box);
}
- .span12,
- .row-fluid .span12 {
+ .span12 {
width: 100%;
.box-sizing(border-box);
}
- .row-fluid [class*="offset"]:first-child {
- margin-left: 0;
- }
+
// FORM FIELDS
// -----------