When trying to Edit a script
under the menu line "File Edit Selection ..."
There is a thin line of white window with a bit scrollbar which would contain my script I guess, but then it's covered with grey wall -- can't see what's under
any
This is a FF5x glitch, which can be fixed by adding this CSS to the "Custom CSS" setting:
.desktop .tv_content {
display: block;
}
.editor_100 {
position: relative;
height: 99%;
}
Nice! It worked. Thank you.
Guys, could you please explain where the "Custom CSS" setting is?
Thanks.
Simply set "Config Mode" to "Advanced" and you'll find it.
This is a FF5x glitch, which can be fixed by adding this CSS to the "Custom CSS" setting:
.desktop .tv_content { display: block; } .editor_100 { position: relative; height: 99%; }
This fixed "edit script" screen but broke "install script" screen. Here is the CSS that works fine for both:
css
.desktop .tv_content[name^="tabview_contentdetails"] {
display: block;
}
.desktop .tv_content[name^="tabview_contentdetails"] .editor_100 {
position: relative;
height: 99%;
}
Thanks for the workaround. : )
Most helpful comment
This fixed "edit script" screen but broke "install script" screen. Here is the CSS that works fine for both:
css .desktop .tv_content[name^="tabview_contentdetails"] { display: block; } .desktop .tv_content[name^="tabview_contentdetails"] .editor_100 { position: relative; height: 99%; }