From: cajus Date: Wed, 3 Feb 2010 11:23:18 +0000 (+0000) Subject: Added maximum height for IE X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=636039772d6e11a3a49d66a96d71814ef0744ec5;p=gosa.git Added maximum height for IE git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15576 594d385d-05f5-0310-b6e9-bd551577e9d8 --- 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" ); +} +