Google "apps" widget doesnt have scroll in palemoon

For support with specific websites

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:
  1. Clear any current output
  2. Navigate or refresh the page in question
  3. Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
Harkonnen
Moon lover
Moon lover
Posts: 82
Joined: 2014-11-04, 12:27
Location: Kiev, Ukraine

Google "apps" widget doesnt have scroll in palemoon

Unread post by Harkonnen » 2024-12-20, 12:53

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

User avatar
adoxa
Lunatic
Lunatic
Posts: 326
Joined: 2019-03-16, 13:26
Location: Qld, Aus.
Contact:

Re: Google "apps" widget doesnt have scroll in palemoon

Unread post by adoxa » 2024-12-21, 01:35

Code: Select all

@-moz-document url-prefix("https://ogs.google.com/widget") {
  c-wiz div[jsaction] div { overflow: auto !important; }
}

Harkonnen
Moon lover
Moon lover
Posts: 82
Joined: 2014-11-04, 12:27
Location: Kiev, Ukraine

Re: Google "apps" widget doesnt have scroll in palemoon

Unread post by Harkonnen » 2024-12-23, 11:25

Doesnt work either

User avatar
frostknight
Lunatic
Lunatic
Posts: 423
Joined: 2022-08-10, 02:25

Re: Google "apps" widget doesnt have scroll in palemoon

Unread post by frostknight » 2024-12-23, 11:28

Harkonnen wrote:
2024-12-23, 11:25
Doesnt work either

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!

Kris_88
Board Warrior
Board Warrior
Posts: 1023
Joined: 2021-01-26, 11:18

Re: Google "apps" widget doesnt have scroll in palemoon

Unread post by Kris_88 » 2024-12-23, 11:38

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

Harkonnen
Moon lover
Moon lover
Posts: 82
Joined: 2014-11-04, 12:27
Location: Kiev, Ukraine

Re: Google "apps" widget doesnt have scroll in palemoon

Unread post by Harkonnen » 2025-01-08, 16:20

Kris_88 wrote:
2024-12-23, 11:38

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; }
}
This fix works, but only when not logged in to any google account. As soon as i log in, it stops working...

Kris_88
Board Warrior
Board Warrior
Posts: 1023
Joined: 2021-01-26, 11:18

Re: Google "apps" widget doesnt have scroll in palemoon

Unread post by Kris_88 » 2025-01-08, 17:37

Harkonnen wrote:
2025-01-08, 16:20
As soon as i log in, it stops working...
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; }
}

Post Reply