diff options
| author | Mark Otto <[email protected]> | 2012-10-01 10:48:57 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-10-01 10:49:19 -0700 |
| commit | 239ce24f92688f0dca44a4f74f9f5f70f04af1e5 (patch) | |
| tree | 9e328694a83bdcd61a858327e7cba7af27fbb186 | |
| parent | 085d6d185d7695d0816315aeee5e3a8ed3c60585 (diff) | |
| download | bootstrap-239ce24f92688f0dca44a4f74f9f5f70f04af1e5.tar.xz bootstrap-239ce24f92688f0dca44a4f74f9f5f70f04af1e5.zip | |
fixes #5188: add .google-maps class to reset responsive images on case-by-case basis
| -rw-r--r-- | docs/assets/css/bootstrap.css | 3 | ||||
| -rw-r--r-- | less/reset.less | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index cf42c13e5..eb810c209 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -75,7 +75,8 @@ img { -ms-interpolation-mode: bicubic; } -#map_canvas img { +#map_canvas img, +.google-maps img { max-width: none; } diff --git a/less/reset.less b/less/reset.less index ed3fecf41..2abdee462 100644 --- a/less/reset.less +++ b/less/reset.less @@ -88,7 +88,8 @@ img { } // Prevent max-width from affecting Google Maps -#map_canvas img { +#map_canvas img, +.google-maps img { max-width: none; } |
