Skip to content

Commit

Permalink
BUGFIX: SSF-168 fixing Webkit rendering issue that would display elem…
Browse files Browse the repository at this point in the history
…ents outside of an absolute positioned layout, breaking the layout in the reportadmin section. The fix is to hide to container that breaks the layout and use js to move the required elements out of the container when the CMS needs them.
  • Loading branch information
Julian Seidenberg committed Apr 10, 2012
1 parent e0b4294 commit 9183890
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions admin/css/screen.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions admin/scss/_style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ body.cms {
}
}

.hide {
display: none;
}

/** --------------------------------------------
* Panels Styles
* -------------------------------------------- */
Expand Down
2 changes: 1 addition & 1 deletion admin/templates/LeftAndMain.ss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

</div>

<div id="cms-editor-dialogs">
<div id="cms-editor-dialogs" class="hide">
<% control EditorToolbar %>
$MediaForm
$LinkForm
Expand Down

0 comments on commit 9183890

Please sign in to comment.