From 636039772d6e11a3a49d66a96d71814ef0744ec5 Mon Sep 17 00:00:00 2001 From: cajus Date: Wed, 3 Feb 2010 11:23:18 +0000 Subject: [PATCH] Added maximum height for IE git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15576 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/html/themes/default/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gosa-core/html/themes/default/style.css b/gosa-core/html/themes/default/style.css index 17b353713..74e8185e6 100644 --- a/gosa-core/html/themes/default/style.css +++ b/gosa-core/html/themes/default/style.css @@ -1997,3 +1997,9 @@ z-index:500; overflow-y:auto; float:left; } + +/* Max height for IE */ +* html div.treeList { + height: expression( this.scrollHeight > 500 ? "500px" : "auto" ); +} + -- 2.30.2