mirror of
https://github.com/zen-browser/desktop.git
synced 2026-04-21 23:05:47 +00:00
fix: Fixed addons menu being off-screen, b=closes #11177, c=common
This commit is contained in:
@@ -5,10 +5,11 @@
|
||||
<panel id="zen-unified-site-data-panel"
|
||||
role="group"
|
||||
type="arrow"
|
||||
noautofocus="true">
|
||||
noautofocus="true"
|
||||
position="bottomright topright">
|
||||
<panelmultiview mainViewId="unified-extensions-view">
|
||||
# We'll keep the view with this name/id in order to prevent
|
||||
# any sort of future issues we may have if firefox decides
|
||||
# any sort of future issues we may have if firefox decides
|
||||
# to change the functionality of this view
|
||||
<panelview id="unified-extensions-view"
|
||||
class="cui-widget-panelview"
|
||||
|
||||
@@ -654,15 +654,16 @@ var gZenUIManager = {
|
||||
// behavior where dragging the text-area resizer downward with the mouse actually grows the panel's top edge upward, since
|
||||
// the bottom of the panel is anchored in place. We want to disable the resizer if the panel was positioned to be anchored
|
||||
// from one of its bottom corners.
|
||||
let block = 'before';
|
||||
let inline = 'end';
|
||||
let block = 'bottomleft';
|
||||
let inline = 'topleft';
|
||||
if (anchor?.closest('#zen-sidebar-top-buttons')) {
|
||||
block = 'after';
|
||||
block = 'topleft';
|
||||
}
|
||||
if (gZenVerticalTabsManager._hasSetSingleToolbar && !gZenVerticalTabsManager._prefsRightSide) {
|
||||
inline = 'start';
|
||||
block = 'bottomright';
|
||||
inline = 'topright';
|
||||
}
|
||||
return `${block}_${inline}`;
|
||||
return `${block} ${inline}`;
|
||||
},
|
||||
|
||||
urlStringsDomainMatch(url1, url2) {
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
"brandShortName": "Zen",
|
||||
"brandFullName": "Zen Browser",
|
||||
"release": {
|
||||
"displayVersion": "1.17.5b",
|
||||
"displayVersion": "1.17.6b",
|
||||
"github": {
|
||||
"repo": "zen-browser/desktop"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user