henry pushed to branch mullvad-browser-150.0a1-16.0-2 at The Tor Project / Applications / Mullvad Browser Commits: 8dd0e85e by Henry Wilkes at 2026-05-13T10:05:33+01:00 fixup! BB 44711: Hide unwanted setting controls in Base Browser. BB 44745: Hide SSO using settings config. - - - - - 7355450a by Henry Wilkes at 2026-05-13T10:05:35+01:00 fixup! BB 40717: Hide Windows SSO in settings BB 44745: Use data-hidden-from-search rather than CSS to hide SSO settings. This will ensure that this patch can be dropped alongside upstream's markup when it switches entirely to the config approach. - - - - - 3 changed files: - browser/components/preferences/privacy.inc.xhtml - browser/components/preferences/privacy.js - browser/themes/shared/preferences/preferences.css Changes: ===================================== browser/components/preferences/privacy.inc.xhtml ===================================== @@ -526,7 +526,7 @@ data-l10n-attrs="hidden" flex="1"/> #ifdef XP_WIN - <hbox id="windows-sso" align="center"> + <hbox id="windows-sso" align="center" hidden="true" data-hidden-from-search="true"> <checkbox data-l10n-id="forms-windows-sso" preference="network.http.windows-sso.enabled" class="tail-with-learn-more"/> @@ -537,6 +537,8 @@ /> </hbox> <description id="windows-sso-caption" class="indent tip-caption" + hidden="true" + data-hidden-from-search="true" data-l10n-id="forms-windows-sso-desc"/> #endif </vbox> ===================================== browser/components/preferences/privacy.js ===================================== @@ -500,7 +500,8 @@ Preferences.addSetting({ Preferences.addSetting({ id: "allowWindowSSO", pref: "network.http.windows-sso.enabled", - visible: () => AppConstants.platform === "win", + // Hide Windows SSO (single sign on). tor-browser#40717. + visible: () => false, }); Preferences.addSetting({ ===================================== browser/themes/shared/preferences/preferences.css ===================================== @@ -596,13 +596,6 @@ html|label[disabled] { margin-inline-start: 0; } -@media (-moz-platform: windows) { - #windows-sso, - #windows-sso-caption { - display: none; - } -} - /** * Dialog */ View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/e73... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/e73... You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
participants (1)
-
henry (@henry)