From 7793b469c9abc867ef3504fb2f4c3cc41981986c Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 28 Jul 2026 18:02:37 -0400 Subject: [PATCH] fx153: Hide the Help button label on macOS -moz-mac-help-button draws the question mark itself, and the Help label is now painted over it at the bottom of the settings panes. Firefox hides the label the same way for the Page Info help button (bug 2009625). --- scss/mac/_helpButton.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scss/mac/_helpButton.scss b/scss/mac/_helpButton.scss index 8d9d0aba23..24104d5ff4 100644 --- a/scss/mac/_helpButton.scss +++ b/scss/mac/_helpButton.scss @@ -2,4 +2,9 @@ appearance: auto; -moz-default-appearance: -moz-mac-help-button; min-width: 0; + + // The question mark comes from the native appearance, so a visible label would overlap it + .button-text { + visibility: hidden; + } }