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 /docs/assets/css | |
| 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
Diffstat (limited to 'docs/assets/css')
| -rw-r--r-- | docs/assets/css/bootstrap-responsive.css | 4 |
1 files changed, 4 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, |
