From 87f69c198897d8015cfb24120265d076a9b47f70 Mon Sep 17 00:00:00 2001 From: Anika Henke <anika@selfthinker.org> Date: Sat, 28 Jul 2012 13:31:36 +0100 Subject: [PATCH] fixed icons in buttons not showing in IE8 and below (FS#2568) --- lib/tpl/dokuwiki/css/basic.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/tpl/dokuwiki/css/basic.css b/lib/tpl/dokuwiki/css/basic.css index d683603ae..f33b21fbe 100644 --- a/lib/tpl/dokuwiki/css/basic.css +++ b/lib/tpl/dokuwiki/css/basic.css @@ -194,6 +194,10 @@ object { max-width: 100%; height: auto; } +/* IE8 and below won't display the images otherwise */ +button img { + max-width: none; +} hr { border-top: solid __border__; -- GitLab