From bd2c452643a404ea7a030fa2540e2be0a2835cea Mon Sep 17 00:00:00 2001 From: Alexandre Teles Date: Wed, 24 Aug 2016 13:15:23 -0300 Subject: [PATCH] Workaround for responsive images on ie 8 This is part of the fix for issue #287 --- bl-themes/log/assets/css/ie8.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/bl-themes/log/assets/css/ie8.css b/bl-themes/log/assets/css/ie8.css index b56a6722..8fcf3b7b 100644 --- a/bl-themes/log/assets/css/ie8.css +++ b/bl-themes/log/assets/css/ie8.css @@ -69,4 +69,13 @@ #menu > * { border-top: solid 1px #dedede; - } \ No newline at end of file + } + +/* Responsive images */ + + @media \0screen { + img { + width: auto; /* for ie 8 */ + } + } +