diff options
| author | Mark Otto <[email protected]> | 2012-07-09 21:07:49 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-07-09 21:07:49 -0700 |
| commit | 148e5a3d899d5c2d395e2d5749b755efeef2cd38 (patch) | |
| tree | 701df5a8b7550cd35dbe564895ace747e8fd40d5 | |
| parent | f495a8d0cc48d1440198e784a8f336a82e3a48bd (diff) | |
| download | bootstrap-148e5a3d899d5c2d395e2d5749b755efeef2cd38.tar.xz bootstrap-148e5a3d899d5c2d395e2d5749b755efeef2cd38.zip | |
fixes #3291: remove float on responsive .thumbnails for 767px and down to ensure thumbnail images don't pop out of container in FF
| -rw-r--r-- | docs/assets/css/bootstrap-responsive.css | 4 | ||||
| -rw-r--r-- | less/responsive-767px-max.less | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap-responsive.css b/docs/assets/css/bootstrap-responsive.css index 702359616..9a9bd3307 100644 --- a/docs/assets/css/bootstrap-responsive.css +++ b/docs/assets/css/bootstrap-responsive.css @@ -805,7 +805,11 @@ display: block; float: none; width: auto; + max-width: 100%; margin-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; } .input-large, .input-xlarge, diff --git a/less/responsive-767px-max.less b/less/responsive-767px-max.less index 105ac5984..b7fd7454f 100644 --- a/less/responsive-767px-max.less +++ b/less/responsive-767px-max.less @@ -51,6 +51,9 @@ .thumbnails { margin-left: 0; } + .thumbnails > li { + float: none; + } // Make all grid-sized elements block level again [class*="span"], .row-fluid [class*="span"] { |
