diff options
| author | Thomas P. Horton <[email protected]> | 2015-04-23 19:23:51 -0700 |
|---|---|---|
| committer | Thomas P. Horton <[email protected]> | 2015-04-24 21:21:39 -0700 |
| commit | ccb53aa983aafbf345cb12841288a549f544fc41 (patch) | |
| tree | d9514772b8c98475211dc494247fcd08d076cc07 /less | |
| parent | 6ba595f3fffee275922c377a7cc1bc46fc5e58c1 (diff) | |
| download | bootstrap-ccb53aa983aafbf345cb12841288a549f544fc41.tar.xz bootstrap-ccb53aa983aafbf345cb12841288a549f544fc41.zip | |
Fix collapsing .img-thumbnail due to display: table-cell clashing with max-width
Diffstat (limited to 'less')
| -rw-r--r-- | less/media.less | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/less/media.less b/less/media.less index a6bf78192..8c835e861 100644 --- a/less/media.less +++ b/less/media.less @@ -19,6 +19,11 @@ .media-object { display: block; + + // Fix collapse in webkit from max-width: 100% and display: table-cell. + &.img-thumbnail { + max-width: none; + } } .media-right, |
