te_lanus: Ja Nee Swaer, that Purple Bar is irritating
MarkoH01: As a workaround to get at least riud of the purple bar I used this script (found in another thread but cannot remember where):
"@-moz-document url-prefix("
https://www.gog.com")
{
.menu::before {
background-image: none !important;
}"
It seems to work - but I have no idea if this is correct.
That's what I did at first, too. Then I decided I wouldn't mind if it reappeared on hover, so I then changed it to this:
.menu:not(:hover)::before{
background-image:none!important
}
When the cursor is not hovering over the menu then the image will be none. I mention this because it's tricky because the "::before" must always be at the end of a selector so the ":not()" must come prior, and this is one way making it appear can be done with only one rule rather than two (one on hover, one without hover).
Though, I'm getting the feeling you are probably not wanting that stripe at all, and that you are probably just going to wait for the update in hopes you'll have more options (like color) without fiddling much with these personal modifications. :-)