diff options
| author | Mark Otto <[email protected]> | 2012-08-29 13:06:47 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-29 13:06:47 -0700 |
| commit | 2da2169a56bf16c24c10914deaead344e2af3bb0 (patch) | |
| tree | 27ad4d8411f5984074f8ca9e6b8377806f91037f /docs/assets | |
| parent | 2137cd65fb528d0eadd15c2554250a12b5764bfd (diff) | |
| download | bootstrap-2da2169a56bf16c24c10914deaead344e2af3bb0.tar.xz bootstrap-2da2169a56bf16c24c10914deaead344e2af3bb0.zip | |
fixes #4828: make fluid grid inputs size the same as fixed grid inputs
Diffstat (limited to 'docs/assets')
| -rw-r--r-- | docs/assets/css/bootstrap-responsive.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/assets/css/bootstrap-responsive.css b/docs/assets/css/bootstrap-responsive.css index f8077aa1f..9259d26dc 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 { |
