From e2d6d5936d10896cad4af57c84c2c1c253d29e4d Mon Sep 17 00:00:00 2001 From: Naomi Guyer Date: Thu, 19 Apr 2012 16:06:58 +1200 Subject: [PATCH] BUGFIX: #7004 Fixes Fixed the overflow bug in IE7, as per ticket #7004. --- admin/css/ie7.css | 2 ++ admin/scss/ie7.scss | 11 +++++++++++ 2 files changed, 13 insertions(+) diff --git a/admin/css/ie7.css b/admin/css/ie7.css index 759149480..78826843d 100644 --- a/admin/css/ie7.css +++ b/admin/css/ie7.css @@ -14,6 +14,8 @@ html { overflow: hidden; } .cms-tree-view-modes div { float: left; } .cms-tree-view-modes span { float: left; padding-top: 5px; } +.cms-panel-content .cms-tree li { width: 200px; overflow: hidden; float: left; display: inline; } + .cms-content-toolbar { border-bottom: 1px solid #c9cdce; padding-bottom: 5px; } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { background-image: none; } diff --git a/admin/scss/ie7.scss b/admin/scss/ie7.scss index 1790a45ed..df4980566 100644 --- a/admin/scss/ie7.scss +++ b/admin/scss/ie7.scss @@ -48,6 +48,17 @@ html { padding-top:5px; } } +.cms-panel-content .cms-tree{ + li{ + width:200px; + overflow:hidden; + float:left; + display:inline; + } +} + + + //add line below the cms-content-toolbar