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
-
7355450a
by Henry Wilkes at 2026-05-13T10:05:35+01:00
3 changed files:
- browser/components/preferences/privacy.inc.xhtml
- browser/components/preferences/privacy.js
- browser/themes/shared/preferences/preferences.css
Changes:
| ... | ... | @@ -526,7 +526,7 @@ |
| 526 | 526 | data-l10n-attrs="hidden"
|
| 527 | 527 | flex="1"/>
|
| 528 | 528 | #ifdef XP_WIN
|
| 529 | - <hbox id="windows-sso" align="center">
|
|
| 529 | + <hbox id="windows-sso" align="center" hidden="true" data-hidden-from-search="true">
|
|
| 530 | 530 | <checkbox data-l10n-id="forms-windows-sso"
|
| 531 | 531 | preference="network.http.windows-sso.enabled"
|
| 532 | 532 | class="tail-with-learn-more"/>
|
| ... | ... | @@ -537,6 +537,8 @@ |
| 537 | 537 | />
|
| 538 | 538 | </hbox>
|
| 539 | 539 | <description id="windows-sso-caption" class="indent tip-caption"
|
| 540 | + hidden="true"
|
|
| 541 | + data-hidden-from-search="true"
|
|
| 540 | 542 | data-l10n-id="forms-windows-sso-desc"/>
|
| 541 | 543 | #endif
|
| 542 | 544 | </vbox>
|
| ... | ... | @@ -500,7 +500,8 @@ Preferences.addSetting({ |
| 500 | 500 | Preferences.addSetting({
|
| 501 | 501 | id: "allowWindowSSO",
|
| 502 | 502 | pref: "network.http.windows-sso.enabled",
|
| 503 | - visible: () => AppConstants.platform === "win",
|
|
| 503 | + // Hide Windows SSO (single sign on). tor-browser#40717.
|
|
| 504 | + visible: () => false,
|
|
| 504 | 505 | });
|
| 505 | 506 | |
| 506 | 507 | Preferences.addSetting({
|
| ... | ... | @@ -596,13 +596,6 @@ html|label[disabled] { |
| 596 | 596 | margin-inline-start: 0;
|
| 597 | 597 | }
|
| 598 | 598 | |
| 599 | -@media (-moz-platform: windows) {
|
|
| 600 | - #windows-sso,
|
|
| 601 | - #windows-sso-caption {
|
|
| 602 | - display: none;
|
|
| 603 | - }
|
|
| 604 | -}
|
|
| 605 | - |
|
| 606 | 599 | /**
|
| 607 | 600 | * Dialog
|
| 608 | 601 | */
|