Google "apps" widget doesnt have scroll any more 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.
-
Harkonnen
- Moon lover

- Posts: 94
- Joined: 2014-11-04, 12:27
- Location: Kiev, Ukraine
Google "apps" widget doesnt have scroll any more in palemoon
The one that opens when you press 9-dots icon on top right at google website. It used to work just not long ago. It doesnt have scrollbar and mouse wheel doesnt scroll either.
-
Kris_88
- Board Warrior

- Posts: 1168
- Joined: 2021-01-26, 11:18
Re: Google "apps" widget doesnt have scroll any more in palemoon
PM doesn't recognize css "overflow" with two parameters.
userContent.css :
or use url-prefix("https://ogs.google.com.ua/widget") for localized Google domain.
userContent.css :
Code: Select all
@-moz-document url-prefix("https://ogs.google.com/widget") {
c-wiz div[jsaction="focus:.CLIENT"] + div { overflow: auto !important; }
}
-
Harkonnen
- Moon lover

- Posts: 94
- Joined: 2014-11-04, 12:27
- Location: Kiev, Ukraine
Re: Google "apps" widget doesnt have scroll any more in palemoon
Thanks, fix works
-
noellarkin
- Fanatic

- Posts: 120
- Joined: 2021-07-27, 04:20
Re: Google "apps" widget doesnt have scroll any more in palemoon
can userContent.css be implemented globally, across multiple profiles, from a central file (the way extensions and plugins can, by putting them in C:\Program Files (x86)\Pale Moon\browser and adding scope settings etc) ?
-
Kris_88
- Board Warrior

- Posts: 1168
- Joined: 2021-01-26, 11:18
Re: Google "apps" widget doesnt have scroll any more in palemoon
Yes it is possible. I see several ways to do this...
-
noellarkin
- Fanatic

- Posts: 120
- Joined: 2021-07-27, 04:20
Re: Google "apps" widget doesnt have scroll any more in palemoon
-
Kris_88
- Board Warrior

- Posts: 1168
- Joined: 2021-01-26, 11:18
Re: Google "apps" widget doesnt have scroll any more in palemoon
This question deserves its own topic, however...
Well...
A global style sheet can be registered through the category manager. Luckily, this can be done using chrome.manifest.
For example, you edit the chrome.manifest file, which is at the same directory level as palemoon.exe.
chrome.manifest:
Code: Select all
resource MyGlobalStyle MyGlobalStyle/
category user-style-sheets MyGlobalSheet resource://MyGlobalStyle/user.css
category agent-style-sheets MyGlobalSheet resource://MyGlobalStyle/chrome.css
This is perhaps the easiest way...
In general, you can register several additional css files. For example, you can add:
Code: Select all
category user-style-sheets MyGlobalSheet2 resource://MyGlobalStyle/user2.css
-
noellarkin
- Fanatic

- Posts: 120
- Joined: 2021-07-27, 04:20
Re: Google "apps" widget doesnt have scroll any more in palemoon
Thanks, just tested this global method out, it works
Now I don't have to copy the userContent.css file to each and every browser profile.
-
Moonchild
- Project founder

- Posts: 38838
- Joined: 2011-08-28, 17:27
- Location: Sweden
Re: Google "apps" widget doesnt have scroll any more in palemoon
Your Browser, Your Waynoellarkin wrote: ↑2024-07-03, 09:53Thanks, just tested this global method out, it worksNow I don't have to copy the userContent.css file to each and every browser profile.
"There is no point in arguing with an idiot, because then you're both idiots." - Anonymous
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
-
Kris_88
- Board Warrior

- Posts: 1168
- Joined: 2021-01-26, 11:18
Re: Google "apps" widget doesnt have scroll any more in palemoon
Fine! The only thing is that I don’t know what will happen during the browser update. Will the "chrome.manifest" file be overridden?
-
Moonchild
- Project founder

- Posts: 38838
- Joined: 2011-08-28, 17:27
- Location: Sweden
Re: Google "apps" widget doesnt have scroll any more in palemoon
"There is no point in arguing with an idiot, because then you're both idiots." - Anonymous
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite