diff options
| author | Mark Otto <[email protected]> | 2013-08-14 23:06:37 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-14 23:06:37 -0700 |
| commit | 622fe05ff4c7f4110d5de8d4648505cfbf7349b2 (patch) | |
| tree | 5f90599f63572e3a4025aef4ea01cc4d1defa69f /dist/css/bootstrap.css | |
| parent | 0456e5e4b38e4b43a11da68d2e16187728dd05a0 (diff) | |
| download | bootstrap-622fe05ff4c7f4110d5de8d4648505cfbf7349b2.tar.xz bootstrap-622fe05ff4c7f4110d5de8d4648505cfbf7349b2.zip | |
fixes #9445: make img responsive mixin use display block, but provide option to pass custom value to it
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 08a115366..433361dd3 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -344,12 +344,6 @@ img { vertical-align: middle; } -.img-responsive { - display: inline-block; - height: auto; - max-width: 100%; -} - .img-rounded { border-radius: 6px; } @@ -4567,7 +4561,7 @@ button.close { .thumbnail > img, .img-thumbnail { - display: inline-block; + display: block; height: auto; max-width: 100%; } @@ -4872,7 +4866,7 @@ a.list-group-item.active > .badge, .carousel-inner > .item > img, .carousel-inner > .item > a > img { - display: inline-block; + display: block; height: auto; max-width: 100%; line-height: 1; |
