Skip to content

Commit

Permalink
BUGFIX: Fix scrolling bug in KickAssets window.
Browse files Browse the repository at this point in the history
This bug could be reproduced by opening the kickassets admin window and
making a rectangular selection which extended outside the window.  This
would cause scrollbars to appear on the kickassets window, which would
obscure the file list scrollbar.  Also the button bar at bottom would
disappear out of view.
  • Loading branch information
lingo committed Nov 14, 2012
1 parent cdc6b1b commit 26c99b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions css/kickassets.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
body#KickAssets {
overflow: hidden;
}

#directory_list {padding:10px;}
#directory_list li {list-style:none;}
Expand Down
2 changes: 1 addition & 1 deletion templates/KickAssetAdmin.ss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><% _t('AssetAdmin.MENUTITLE','Files & Images') %></title>
</head>
<body>
<body id="KickAssets">

<div id="head">
<h2>$BreadCrumbs</h2>
Expand Down

0 comments on commit 26c99b3

Please sign in to comment.