replace uses of #browser-bottombox with #main-window > body::after
Browser-bottombox element has been removed from Firefox in 109 so lets not use that anymore.
This commit is contained in:
@@ -36,8 +36,16 @@ linux_gtk_window_control_patch.css
|
||||
#titlebar{ -moz-appearance: none !important; }
|
||||
}
|
||||
/* Move tabs below content */
|
||||
:root:not([inDOMFullscreen]) #browser-bottombox{ margin-bottom: calc(var(--tab-min-height) + 2 * var(--tab-block-margin,0px)) }
|
||||
:root[inFullscreen]:not([inDOMFullscreen]) #browser-bottombox{ margin-bottom: 1px; }
|
||||
#main-window > body::after{
|
||||
content: "";
|
||||
display: -moz-box;
|
||||
}
|
||||
#main-window:not([inFullscreen]) > body::after{
|
||||
margin-bottom: calc(var(--tab-min-height) + 2 * var(--tab-block-margin,0px));
|
||||
}
|
||||
#main-window[inFullscreen]:not([inDOMFullscreen]) > body::after{
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
#TabsToolbar{
|
||||
position: fixed;
|
||||
|
||||
Reference in New Issue
Block a user