diff options
| author | Mark Otto <[email protected]> | 2015-04-25 21:40:48 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-04-25 21:40:48 -0700 |
| commit | 4f3feed2bd9a18180a3aa97478b27c34cd042e96 (patch) | |
| tree | f34ac546393b2ed672951d8f7bfd1856f5dab67d | |
| parent | 3e3b331ad31950e1516eb541bdcc4a4bcfe32f74 (diff) | |
| parent | ccb53aa983aafbf345cb12841288a549f544fc41 (diff) | |
| download | bootstrap-4f3feed2bd9a18180a3aa97478b27c34cd042e96.tar.xz bootstrap-4f3feed2bd9a18180a3aa97478b27c34cd042e96.zip | |
Merge pull request #16350 from thomasphorton/master
Add max-width: none to .media > .img-thumbnail
| -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, |
