Update Firefox version to 134.0.2 in README and configuration files; adjust CSS font-family for macOS.

This commit is contained in:
mr. m
2025-01-20 22:14:38 +00:00
parent ef32e5f990
commit 6c028d8511
5 changed files with 20 additions and 26 deletions

View File

@@ -1,5 +1,5 @@
diff --git a/browser/components/customizableui/CustomizableUI.sys.mjs b/browser/components/customizableui/CustomizableUI.sys.mjs
index b953d7d2c8fa7fe2d320bd7cb7af9aeeef0abc86..1a3142c58af638a731f546b8695a0fc3fab9054c 100644
index b953d7d2c8fa7fe2d320bd7cb7af9aeeef0abc86..bb822f3f8639aa23c447c1cd528ddf2ceb102e72 100644
--- a/browser/components/customizableui/CustomizableUI.sys.mjs
+++ b/browser/components/customizableui/CustomizableUI.sys.mjs
@@ -13,6 +13,7 @@ ChromeUtils.defineESModuleGetters(lazy, {
@@ -124,17 +124,16 @@ index b953d7d2c8fa7fe2d320bd7cb7af9aeeef0abc86..1a3142c58af638a731f546b8695a0fc3
/**
* Add a widget to an area.
* If the area to which you try to add is not known to CustomizableUI,
@@ -6404,7 +6403,8 @@ class OverflowableToolbar {
this.#target
);
totalAvailWidth =
- getInlineSize(this.#toolbar) -
+ ((win.gZenVerticalTabsManager._hasSetSingleToolbar ? parseInt(this.#toolbar.closest("#navigator-toolbox")?.getAttribute("width")) : 0) ||
+ getInlineSize(this.#toolbar)) -
@@ -6407,7 +6406,7 @@ class OverflowableToolbar {
getInlineSize(this.#toolbar) -
parseFloat(style.paddingLeft) -
parseFloat(style.paddingRight) -
toolbarChildrenWidth;
@@ -6516,7 +6516,7 @@ class OverflowableToolbar {
- toolbarChildrenWidth;
+ toolbarChildrenWidth - (win.gZenVerticalTabsManager._hasSetSingleToolbar ? 1 : 0); // -1px so we can calculate the overflow correctly
targetWidth = getInlineSize(this.#target);
targetChildrenWidth =
this.#target == this.#toolbar
@@ -6516,7 +6515,7 @@ class OverflowableToolbar {
}
}
if (!inserted) {