Tampermonkey: [Firefox 52] Editor window is grey, unable to efid or view scripts

Created on 9 Dec 2019  路  7Comments  路  Source: Tampermonkey/tampermonkey

Expected Behavior

When trying to Edit a script

Actual Behavior

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

Specifications

  • Firefox ESR 52.9 32bit
  • TM: 4.9.6095
  • OS: Windows 7 32bit

Script

any

bug firefox

Most helpful comment

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%; }

All 7 comments

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. : )

Was this page helpful?
0 / 5 - 0 ratings