Open
Bug 1956982
Opened 25 days ago
Use a theme variable for tab drag preview background color
Categories
(Firefox :: Tabbed Browser, enhancement)
Firefox
Tabbed Browser
Tracking
()
NEW
People
(Reporter: aminomancer, Unassigned)
Details
When dragging a tab, a thumbnail of the tab content is displayed near the mouse cursor. The thumbnail is drawn on a canvas with a white background, which is visible until the thumbnail loads in, and remains visible if there are problems generating or rendering the thumbnail for whatever reason, disrupting the dark mode experience with a bright white block.
I had a script for customizing this, but it can no longer work as the method now uses private fields. But we might as well just make this color themed so it doesn't need to be customized. My script replaced white
with getComputedStyle(this).getPropertyValue("--background-color-canvas")
, but it seems we can just use Canvas
directly for a very simple patch.
You need to log in
before you can comment on or make changes to this bug.
Description
•