This is an automated email from the git hooks/post-receive script.
pierov pushed a change to branch tor-browser-102.4.0esr-12.0-1 in repository tor-browser.
from 836aa1709778 fixup! Bug 40562: Added Tor-related preferences to 000-tor-browser.js new dcbd56483f29 fixup! Bug 40209: Implement Basic Crypto Safety new 75b9985f4bdb fixup! Bug 30237: Add v3 onion services client authentication prompt new 3cb75bc95e49 fixup! Bug 40458: Implement .tor.onion aliases
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
Summary of changes: browser/actors/CryptoSafetyParent.jsm | 2 +- .../components/onionservices/content/authPreferences.css | 6 +++++- browser/components/rulesets/content/aboutRulesets.css | 14 -------------- browser/components/rulesets/content/aboutRulesets.html | 3 --- 4 files changed, 6 insertions(+), 19 deletions(-)
This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch tor-browser-102.4.0esr-12.0-1 in repository tor-browser.
commit dcbd56483f29c8276da121f9b9301bf060075f47 Author: Henry Wilkes henry@torproject.org AuthorDate: Thu Oct 27 12:02:13 2022 +0100
fixup! Bug 40209: Implement Basic Crypto Safety --- browser/actors/CryptoSafetyParent.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/browser/actors/CryptoSafetyParent.jsm b/browser/actors/CryptoSafetyParent.jsm index bac151df5511..5e4696e446c6 100644 --- a/browser/actors/CryptoSafetyParent.jsm +++ b/browser/actors/CryptoSafetyParent.jsm @@ -82,7 +82,7 @@ class CryptoSafetyPrompt {
let _this = this; const options = { - popupIconURL: "chrome://browser/skin/cert-error.svg", + popupIconURL: "chrome://global/skin/icons/warning.svg", eventCallback(aTopic) { if (aTopic === "showing") { _this._onPromptShowing();
This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch tor-browser-102.4.0esr-12.0-1 in repository tor-browser.
commit 75b9985f4bdb7376ddd34dc45ff2e0579b6b3ea5 Author: Henry Wilkes henry@torproject.org AuthorDate: Thu Oct 27 12:10:27 2022 +0100
fixup! Bug 30237: Add v3 onion services client authentication prompt --- browser/components/onionservices/content/authPreferences.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/browser/components/onionservices/content/authPreferences.css b/browser/components/onionservices/content/authPreferences.css index b3fb79b26ddc..d33151737841 100644 --- a/browser/components/onionservices/content/authPreferences.css +++ b/browser/components/onionservices/content/authPreferences.css @@ -1,5 +1,7 @@ /* Copyright (c) 2020, The Tor Project, Inc. */
+@import url("chrome://branding/content/tor-styles.css"); + #torOnionServiceKeys-overview-container { margin-right: 30px; } @@ -15,6 +17,8 @@
#onionservices-savedkeys-errorIcon { margin-right: 4px; - list-style-image: url("chrome://browser/skin/warning.svg"); + list-style-image: url("chrome://global/skin/icons/warning.svg"); + -moz-context-properties: fill; + fill: var(--torbrowser-warning); visibility: hidden; }
This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch tor-browser-102.4.0esr-12.0-1 in repository tor-browser.
commit 3cb75bc95e49d057afbd0589777fd4e1a0a66cc5 Author: Henry Wilkes henry@torproject.org AuthorDate: Thu Oct 27 12:45:38 2022 +0100
fixup! Bug 40458: Implement .tor.onion aliases --- browser/components/rulesets/content/aboutRulesets.css | 14 -------------- browser/components/rulesets/content/aboutRulesets.html | 3 --- 2 files changed, 17 deletions(-)
diff --git a/browser/components/rulesets/content/aboutRulesets.css b/browser/components/rulesets/content/aboutRulesets.css index 60b699fe8a02..fc4b66f0e514 100644 --- a/browser/components/rulesets/content/aboutRulesets.css +++ b/browser/components/rulesets/content/aboutRulesets.css @@ -303,17 +303,3 @@ label#edit-enable { display: flex; align-items: center; } - -/* No rulesets */ - -#no-rulesets { - max-width: 100%; - background-image: url(chrome://browser/skin/preferences/no-search-results.svg); - background-size: 275px 212px; - background-position: center center; - background-repeat: no-repeat; -} - -.state-noRulesets #no-rulesets { - display: block; -} diff --git a/browser/components/rulesets/content/aboutRulesets.html b/browser/components/rulesets/content/aboutRulesets.html index d5b03435b1e7..65733caac8b8 100644 --- a/browser/components/rulesets/content/aboutRulesets.html +++ b/browser/components/rulesets/content/aboutRulesets.html @@ -101,9 +101,6 @@ </div> </form> </section> - - <!-- No rulesets --> - <section id="no-rulesets"></section> </div> <script src="chrome://browser/content/rulesets/aboutRulesets.js"></script> </body>
tor-commits@lists.torproject.org