From 2a2bb8b359f5ffd9e7c52527b66b3b678c38b44e Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Wed, 5 Nov 2008 12:52:33 +0000 Subject: [PATCH] fixes #2184, checkboxes were displayed inline in IE svn changeset:5820/svn branch:trunk --- WebContent/ITMILL/themes/default/select/select.css | 6 ++++-- WebContent/ITMILL/themes/default/styles.css | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/WebContent/ITMILL/themes/default/select/select.css b/WebContent/ITMILL/themes/default/select/select.css index 9de0b293a5..b56c6bc2f2 100644 --- a/WebContent/ITMILL/themes/default/select/select.css +++ b/WebContent/ITMILL/themes/default/select/select.css @@ -11,8 +11,10 @@ .i-select-optiongroup .i-select-option { display: block; - white-space: nowrap; -} + white-space: nowrap; + /* really mean block for IE */ + zoom: 1; +} .i-select-select { /* diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index a38b105504..ad0782b827 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -1134,6 +1134,8 @@ input.i-modified, .i-select-optiongroup .i-select-option { display: block; white-space: nowrap; + /* really mean block for IE */ + zoom: 1; } .i-select-select { -- 2.39.5