Useful 'Scrollbars for all bookmarks folders' CSS broken in Fx155.0

This extremely useful style which added scrollbars to all long Bookmarks folders was broken by the Fx155.0 update... unsure why?

The style was originally posted by OP nollinvoyd in his March 2023 r/FirefoxCSS topic 'Scrollbars for all bookmarks folders' and had worked flawlessly since up to and including the Fx154 stable release.

/*** Scrollbar for long Bookmark menu "popups" ***/

[placespopup="true"] { --allow-scroll-bar: auto; }

scrollbox[part="scrollbox"] { overflow-y: var(--allow-scroll-bar, inherit) !important; }

Unsure what has changed in Fx155... possibly the variable --allow-scroll-bar has been changed or removed? Unable to find any related bug after searching the huge 'Target Milestone 155' Bug list.

2 points · 2 comments · view on lemmy.world

2 Comments

MrOtherGuy@lemmy.world · 1 pts · 5d

I believe this is basically the same issue as this one for why scrollable menupopups style stopped working in fx 155. I managed to get my style working again, but with a limitation that the popup list can't be scrolled with keyboard anymore.

ResurgamS13@fedia.io · 1 pts · 4d

Thank you very much for the reply and pointer to your own updated scrollbars style 'scrollable_menupopups.css'... which I had somehow managed to miss for at least the last 3 years... all whilst recommending your excellent repo's contents to others on numerous occasions!

More information on the recent changes to scrollbar styling in GitHub repo Issue #654 'scrollable_menupopups.css in V154 V155'.

Likely a facet of human nature not to look for alternative solutions to a problem that has already been solved.