From 55e96d86b27a6383cdfc4931200a56ca166143a1 Mon Sep 17 00:00:00 2001 From: Marc Englund Date: Thu, 3 Jul 2008 09:03:13 +0000 Subject: [PATCH] Fix for #1841 (streched, pixellated buttons in IE); width:1px in IE6 so that the button does not take up too much space. svn changeset:5014/svn branch:trunk --- WebContent/ITMILL/themes/default/button/button.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/WebContent/ITMILL/themes/default/button/button.css b/WebContent/ITMILL/themes/default/button/button.css index 65b4f87172..7f61f72040 100644 --- a/WebContent/ITMILL/themes/default/button/button.css +++ b/WebContent/ITMILL/themes/default/button/button.css @@ -20,6 +20,7 @@ /* fixes streched buttons in IE6 */ * html .i-button { + width: 1px; overflow: visible; padding-left: 10px; padding-right: 10px; @@ -31,6 +32,7 @@ padding-right: 10px; } + /* Disabled by default .i-checkbox-error { background:transparent; -- 2.39.5