Google "apps" widget doesnt have scroll in palemoon
Moderator: trava90
Forum rules
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.
Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.
Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
- Clear any current output
- Navigate or refresh the page in question
- Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
Google "apps" widget doesnt have scroll in palemoon
The one that opens when you press 9-dots icon on top right at google website.
It hasnt worked since summer, but there was a userContent.css fix for https://forum.palemoon.org/viewtopic.php?f=70&t=31306&p=253031#p252956. That fixes stopped working. Can somebody make a fix for that fix, pls
It hasnt worked since summer, but there was a userContent.css fix for https://forum.palemoon.org/viewtopic.php?f=70&t=31306&p=253031#p252956. That fixes stopped working. Can somebody make a fix for that fix, pls
Re: Google "apps" widget doesnt have scroll in palemoon
Code: Select all
@-moz-document url-prefix("https://ogs.google.com/widget") {
c-wiz div[jsaction] div { overflow: auto !important; }
}
Re: Google "apps" widget doesnt have scroll in palemoon
Doesnt work either
- frostknight
- Lunatic
- Posts: 423
- Joined: 2022-08-10, 02:25
Re: Google "apps" widget doesnt have scroll in palemoon
What addons do you use? maybe that's a problem.
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
Re: Google "apps" widget doesnt have scroll in palemoon
Code: Select all
@-moz-document url-prefix("https://ogs.google.com.ua/widget"), url-prefix("https://ogs.google.com/widget") {
c-wiz div[aria-label] { overflow: auto !important; }
}
Re: Google "apps" widget doesnt have scroll in palemoon
This fix works, but only when not logged in to any google account. As soon as i log in, it stops working...Kris_88 wrote: ↑2024-12-23, 11:38Code: Select all
@-moz-document url-prefix("https://ogs.google.com.ua/widget"), url-prefix("https://ogs.google.com/widget") { c-wiz div[aria-label] { overflow: auto !important; } }
Re: Google "apps" widget doesnt have scroll in palemoon
Indeed...
Try this. It works for me.
Code: Select all
@-moz-document url-prefix("https://ogs.google.com.ua/"), url-prefix("https://ogs.google.com/") {
c-wiz div[aria-label] { overflow: auto !important; }
}