henry pushed to branch tor-browser-150.0a1-16.0-2 at The Tor Project / Applications / Tor Browser
Commits:
-
44de04fc
by Henry Wilkes at 2026-05-12T18:25:54+01:00
-
c3ff747f
by Henry Wilkes at 2026-05-12T18:27:19+01:00
3 changed files:
- browser/components/preferences/privacy.inc.xhtml
- browser/components/preferences/privacy.js
- browser/themes/shared/preferences/preferences.css
Changes:
| ... | ... | @@ -525,7 +525,7 @@ |
| 525 | 525 | data-l10n-attrs="hidden"
|
| 526 | 526 | flex="1"/>
|
| 527 | 527 | #ifdef XP_WIN
|
| 528 | - <hbox id="windows-sso" align="center">
|
|
| 528 | + <hbox id="windows-sso" align="center" hidden="true" data-hidden-from-search="true">
|
|
| 529 | 529 | <checkbox data-l10n-id="forms-windows-sso"
|
| 530 | 530 | preference="network.http.windows-sso.enabled"
|
| 531 | 531 | class="tail-with-learn-more"/>
|
| ... | ... | @@ -536,6 +536,8 @@ |
| 536 | 536 | />
|
| 537 | 537 | </hbox>
|
| 538 | 538 | <description id="windows-sso-caption" class="indent tip-caption"
|
| 539 | + hidden="true"
|
|
| 540 | + data-hidden-from-search="true"
|
|
| 539 | 541 | data-l10n-id="forms-windows-sso-desc"/>
|
| 540 | 542 | #endif
|
| 541 | 543 | </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 | */
|