Commit 1837b8ef authored by Mark Otto's avatar Mark Otto
Browse files

remove height: auto on images since it interferes with inline dimensions

parent 223c8358
2 merge requests!2929Responsive video - from zurp's foundation,!28752.0.3 wip
Showing with 8 additions and 2 deletions
+8 -2
No preview for this file type
...@@ -58,7 +58,6 @@ sub { ...@@ -58,7 +58,6 @@ sub {
} }
img { img {
max-width: 100%; max-width: 100%;
height: auto;
border: 0; border: 0;
-ms-interpolation-mode: bicubic; -ms-interpolation-mode: bicubic;
vertical-align: middle; vertical-align: middle;
...@@ -3674,6 +3673,14 @@ a.badge:hover { ...@@ -3674,6 +3673,14 @@ a.badge:hover {
background-position: 0 0; background-position: 0 0;
} }
} }
@-o-keyframes progress-bar-stripes {
from {
background-position: 0 0;
}
to {
background-position: 40px 0;
}
}
@keyframes progress-bar-stripes { @keyframes progress-bar-stripes {
from { from {
background-position: 40px 0; background-position: 40px 0;
......
...@@ -76,7 +76,6 @@ sub { ...@@ -76,7 +76,6 @@ sub {
img { img {
max-width: 100%; // Make images inherently responsive max-width: 100%; // Make images inherently responsive
height: auto;
border: 0; border: 0;
-ms-interpolation-mode: bicubic; -ms-interpolation-mode: bicubic;
vertical-align: middle; vertical-align: middle;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment