It helps to have the Theme editor page as wide as possible, and I found that disabling blocks appearing in the right-hand column, helps. For me, in configuring blocks, in the section "Show block on specific pages: " selecting "Show on every page except the listed pages", and specifying admin/build/themes/editor* hides a block from being displayed on the Theme Editor page.
I noticed that the Theme Editor side menu (right) does not display very efficiently, with all but the last two options showing too far to the right, thus:
- Theme Info Files
- PHP Files
- Javascript Files
- Template Files
- Style Sheet Files
- Basic Files
- Image Files
- Add A New File
- Delete A File
It would be nice if all menu options were aligned as far to the right as possible, or even below the editing area.
Comments
Comment #1
DigitalWheelie commentedFor me it seems it's caused by the display:block CSS in modules/system/system.css
html.js .resizable-textarea textarea {
margin-bottom: 0;
width: 100%;
/*display: block;*/
}
But I fear overriding this may screw something else up...!
:O