No, here it's white even if some text is selected. Try the context menu on a table, every item is white as well (at least here)... The only way to see a menu item is move move the mouse on it, so that the selection makes it readable. Items that should be grayed out are plain white and cannot be read even with the above trick since the item is not selectable... unfortunately I cannot post a screenshot to show what happens...
I had the same problem, and it did turn out to be a CSS issue. I had: table { font-size: 1em; width: 100%; } I removed the width parameter, and the problem went away.
RE: A silly problem with Firefox
RE: A silly problem with Firefox
The only way to see a menu item is move move the mouse on it, so that the selection makes it readable. Items that should be grayed out are plain white and cannot be read even with the above trick since the item is not selectable... unfortunately I cannot post a screenshot to show what happens...
RE: A silly problem with Firefox
Are you sure it's not a css issue?
RE: A silly problem with Firefox
RE: A silly problem with Firefox
table {
font-size: 1em;
width: 100%;
}
I removed the width parameter, and the problem went away.
Thanks, dvdmierden, for the suggestion!