We forked an editor for upcoming release of our CMS.
See: http://tinyurl.com/ylbtns2
The editor uses the css of the current template and loads an additional fix.css (inside the iframe) to override some rules:
* {
background-image: none !important;
min-height: 0px !important;
}
#breadcrumbs, #content .sidebar, #footer, #header, #search_form {
display: none;
}
#content {
margin: 0px;
width: 100%;
}
The problem: on first load the "min-height: 0px !important;" seems not to work - on second load the height of the editor iframe is 100px like it should be. Other rules like no background (fix.css) are working on first load and get overridden.