fix #9239 by restoring old ie8 responsive img foo

This commit is contained in:
Mark Otto 2013-08-12 01:56:38 -07:00
parent 5e73cc90d9
commit 175a112548
3 changed files with 11 additions and 1 deletions

View File

@ -2815,6 +2815,10 @@ button.close {
background-color: #e5e5e5; background-color: #e5e5e5;
} }
.nav > li > a > img {
max-width: none;
}
.nav-tabs { .nav-tabs {
border-bottom: 1px solid #dddddd; border-bottom: 1px solid #dddddd;
} }

File diff suppressed because one or more lines are too long

View File

@ -60,6 +60,12 @@
.nav-divider { .nav-divider {
.nav-divider(); .nav-divider();
} }
// Prevent IE8 from misplacing imgs
// See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
> li > a > img {
max-width: none;
}
} }