You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating to Firefox 1.33, the issue started, the window controls, instead of being top left as always, they started being at the top, but in middle ("floating" over the URL bar in my case).
After debugging using the devtools, I found the issue is here, in the marked element:
Solution
I took the latest version of the CSS file (github), added the below CSS, and it solved it:
/* To fix the weird position of the window controls from the middle to the left */#TabsToolbar {
justify-content: normal !important;
}
@MrOtherGuy If that's good for you, I can create a PR. I wanted to share first about the issue.
The text was updated successfully, but these errors were encountered:
I'd rather not touch window_control_placeholder_support.css at all anymore. It should not be used in Firefox 133 anymore. For styles that did depend on it there are now better ways to do things.
I'd rather not touch window_control_placeholder_support.css at all anymore. It should not be used in Firefox 133 anymore. For styles that did depend on it there are now better ways to do things.
What's the alternative way to handle this then? Simply commenting out window_control_placeholder_support.css will not work.
Issue
After updating to Firefox 1.33, the issue started, the window controls, instead of being top left as always, they started being at the top, but in middle ("floating" over the URL bar in my case).
After debugging using the devtools, I found the issue is here, in the marked element:
Solution
I took the latest version of the CSS file (github), added the below CSS, and it solved it:
@MrOtherGuy If that's good for you, I can create a PR. I wanted to share first about the issue.
The text was updated successfully, but these errors were encountered: