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-08-30 00:06:47 +0400
committerMark Otto <markotto@twitter.com>2012-08-30 00:06:47 +0400
commit2da2169a56bf16c24c10914deaead344e2af3bb0 (patch)
tree27ad4d8411f5984074f8ca9e6b8377806f91037f
parent2137cd65fb528d0eadd15c2554250a12b5764bfd (diff)
fixes #4828: make fluid grid inputs size the same as fixed grid inputs
-rw-r--r--docs/assets/css/bootstrap-responsive.css5
-rw-r--r--less/responsive-767px-max.less3
2 files changed, 6 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap-responsive.css b/docs/assets/css/bootstrap-responsive.css
index f8077aa1fb..9259d26dca 100644
--- a/docs/assets/css/bootstrap-responsive.css
+++ b/docs/assets/css/bootstrap-responsive.css
@@ -817,8 +817,11 @@
.row-fluid [class*="span"] {
display: block;
float: none;
- width: auto;
+ width: 100%;
margin-left: 0;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
}
.span12,
.row-fluid .span12 {
diff --git a/less/responsive-767px-max.less b/less/responsive-767px-max.less
index eebecb8e4a..79c7eaa82b 100644
--- a/less/responsive-767px-max.less
+++ b/less/responsive-767px-max.less
@@ -61,8 +61,9 @@
.row-fluid [class*="span"] {
float: none;
display: block;
- width: auto;
+ width: 100%;
margin-left: 0;
+ .box-sizing(border-box);
}
.span12,
.row-fluid .span12 {