diff options
| author | Mark Otto <[email protected]> | 2013-08-15 13:40:21 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-15 13:40:21 -0700 |
| commit | 418ca6c09b393096e80aef9dde0072943f6d7c63 (patch) | |
| tree | e704c2856ea60432a9f30fcd5adc64a143017edf /dist/css/bootstrap.css | |
| parent | 0664b3f0da25a99c5e0d88fdc566480baeaf83aa (diff) | |
| download | bootstrap-418ca6c09b393096e80aef9dde0072943f6d7c63.tar.xz bootstrap-418ca6c09b393096e80aef9dde0072943f6d7c63.zip | |
fixes #9622: reset to inline-block for img-thumbnail, but keep block for .thumbnail > img
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 5b80d802a..21cc26350 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4592,13 +4592,18 @@ button.close { display: block; } -.thumbnail > img, -.img-thumbnail { +.thumbnail > img { display: block; height: auto; max-width: 100%; } +.img-thumbnail { + display: inline-block; + height: auto; + max-width: 100%; +} + a.thumbnail:hover, a.thumbnail:focus { border-color: #428bca; |
