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/e73539d16852d2b034b61b86d2ac7f260a2479f5...7355450abd8b78f0fa9d50a606c32208af41e1e0
--
View it on GitLab:
https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/e73539d16852d2b034b61b86d2ac7f260a2479f5...7355450abd8b78f0fa9d50a606c32208af41e1e0
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
_______________________________________________
tbb-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]