From: Mark Otto Date: Sun, 25 Mar 2012 07:20:30 +0000 (-0700) Subject: remove height: auto on images since it interferes with inline dimensions X-Git-Tag: v2.0.3~5^2~99 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1837b8ef2c1a28f966965985c33d38a8f6a72438;p=thirdparty%2Fbootstrap.git remove height: auto on images since it interferes with inline dimensions --- diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 4c2c620340..7dfee52de0 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 794156e27b..c0a7520d88 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -58,7 +58,6 @@ sub { } img { max-width: 100%; - height: auto; border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; @@ -3674,6 +3673,14 @@ a.badge:hover { background-position: 0 0; } } +@-o-keyframes progress-bar-stripes { + from { + background-position: 0 0; + } + to { + background-position: 40px 0; + } +} @keyframes progress-bar-stripes { from { background-position: 40px 0; diff --git a/less/reset.less b/less/reset.less index a528fa046b..d11533f034 100644 --- a/less/reset.less +++ b/less/reset.less @@ -76,7 +76,6 @@ sub { img { max-width: 100%; // Make images inherently responsive - height: auto; border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle;