From 0d23ee0eeb41a27259ee19e035cc52c022385189 Mon Sep 17 00:00:00 2001 From: Marc Englund Date: Thu, 3 Jul 2008 08:26:54 +0000 Subject: [PATCH] Fixes #1841 (streched, pixellated buttons in IE) svn changeset:5012/svn branch:trunk --- WebContent/ITMILL/themes/default/button/button.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/WebContent/ITMILL/themes/default/button/button.css b/WebContent/ITMILL/themes/default/button/button.css index cf9b4ae697..19bdb742f5 100644 --- a/WebContent/ITMILL/themes/default/button/button.css +++ b/WebContent/ITMILL/themes/default/button/button.css @@ -18,6 +18,19 @@ text-decoration: underline; } +/* fixes streched buttons in IE6 */ +* html .i-button { + overflow: visible; + padding-left: 10px; + padding-right: 10px; +} +/* fixes streched buttons in IE7 */ +*+html .i-button { + overflow: visible; + padding-left: 10px; + padding-right: 10px; +} + /* Disabled by default .i-checkbox-error { background:transparent; -- 2.39.5