From 383d22d9679adfd4f00e8ac09c7745e20b5e2c59 Mon Sep 17 00:00:00 2001 From: Andrew Nicols Date: Wed, 6 Nov 2013 11:58:05 +0800 Subject: [PATCH] MDL-42697 Theme: Fix overflow on docked blocks --- theme/base/style/dock.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/base/style/dock.css b/theme/base/style/dock.css index e4175af7deb..2fda102b7fd 100644 --- a/theme/base/style/dock.css +++ b/theme/base/style/dock.css @@ -20,7 +20,7 @@ body.has_dock {margin-left:30px;} #dockeditempanel {min-width:200px;position:relative;z-index:12000;left:100%;} #dockeditempanel.dockitempanel_hidden {display:none;} #dockeditempanel .dockeditempanel_content {background-color:#fff;border:1px solid #000;z-index:12050;} -#dockeditempanel .dockeditempanel_bd {overflow:auto;width:auto;} +#dockeditempanel .dockeditempanel_bd {overflow:auto;width:100%;} #dockeditempanel .dockeditempanel_bd .block_docked {margin:10px;} #dockeditempanel .dockeditempanel_bd .block_navigation .block_tree li {overflow:visible;} #dockeditempanel .dockeditempanel_hd {border-bottom:1px solid #000;} @@ -44,4 +44,4 @@ body.has_dock {margin-left:30px;} body.dir-rtl.has_dock {margin-left: 0px; margin-right: 30px} /* Test span used to calculate positioning of docked item labels */ -.transform-test-node { position:absolute;line-height:normal; } \ No newline at end of file +.transform-test-node { position:absolute;line-height:normal; }