From 0cbbc6828275dba21c3ff6bd7ac1e0c432b45eaa Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Thu, 26 Jul 2007 19:38:49 +0000 Subject: [PATCH] Simulating max-height for pulldowns in brain-dead IE6. --- static/css/ie.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/css/ie.css b/static/css/ie.css index 48aa28e..3ccc04a 100644 --- a/static/css/ie.css +++ b/static/css/ie.css @@ -18,3 +18,8 @@ left: 0em; top: 0em; } + +.pulldown { + height: expression( this.scrollHeight > 200 ? "200px" : "auto" ); + width: expression( this.scrollHeight > 200 ? "12em" : "auto" ); +}