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

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

parent 223c8358
......@@ -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;
......
......@@ -76,7 +76,6 @@ sub {
img {
max-width: 100%; // Make images inherently responsive
height: auto;
border: 0;
-ms-interpolation-mode: bicubic;
vertical-align: middle;
......
Markdown is supported
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