This is an automated email from the git hooks/post-receive script.
pierov pushed a change to branch tor-browser-102.3.0esr-12.0-2 in repository tor-browser.
from 2bfef6cc3db2 fixup! Bug 40926: Implemented the New Identity feature new be4ac65a5b15 fixup! Bug 2176: Rebrand Firefox to TorBrowser new daaaf35100fe fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection new 98311ec00049 fixup! Bug 27476: Implement about:torconnect captive portal within Tor Browser
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/branding/tor-styles.inc.css | 12 +++++- .../torconnect/content/aboutTorConnect.css | 4 +- .../torconnect/content/connection-failure.svg | 2 +- .../torconnect/content/connection-location.svg | 2 +- .../torpreferences/content/torPreferences.css | 44 +++++++++++----------- 5 files changed, 39 insertions(+), 25 deletions(-)
This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch tor-browser-102.3.0esr-12.0-2 in repository tor-browser.
commit be4ac65a5b15697be319fe937fcd5d4f00ddf0df Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Fri Oct 14 13:12:28 2022 +0200
fixup! Bug 2176: Rebrand Firefox to TorBrowser
Bug 41083: Add new Firefox colors --- browser/branding/tor-styles.inc.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/browser/branding/tor-styles.inc.css b/browser/branding/tor-styles.inc.css index 55dc9b6238b3..b0c5d7a89cb8 100644 --- a/browser/branding/tor-styles.inc.css +++ b/browser/branding/tor-styles.inc.css @@ -84,4 +84,14 @@ --ink-90: #0f1126;
--white-100: #ffffff; -} \ No newline at end of file + + /* TODO: Switch to some Firefox variable, once Mozilla adds one for this + color. Matches --warning-icon-bgcolor (but not on the dark theme variant). */ + --torbrowser-warning: #ffa436; +} + +@media (prefers-color-scheme: dark) { + :root { + --torbrowser-warning: #ffbd4f; + } +}
This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch tor-browser-102.3.0esr-12.0-2 in repository tor-browser.
commit daaaf35100fe825baec9a1bc492bb5010c84ac0f Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Fri Oct 14 13:13:17 2022 +0200
fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection
Bug 41083: Fix some colors --- .../torpreferences/content/torPreferences.css | 44 +++++++++++----------- 1 file changed, 23 insertions(+), 21 deletions(-)
diff --git a/browser/components/torpreferences/content/torPreferences.css b/browser/components/torpreferences/content/torPreferences.css index a9ab8543c01e..03d996ed577b 100644 --- a/browser/components/torpreferences/content/torPreferences.css +++ b/browser/components/torpreferences/content/torPreferences.css @@ -126,14 +126,24 @@ html:dir(rtl) input[type="checkbox"].toggle-button::before { width: 18px; height: 18px; margin-inline-end: 8px; + -moz-context-properties: fill; + fill: var(--in-content-text-color); +} + +#torPreferences-status-internet-icon { + list-style-image: url("chrome://browser/content/torpreferences/network.svg"); +} + +#torPreferences-status-tor-icon { + list-style-image: url("chrome://browser/skin/onion.svg"); }
#torPreferences-status-internet-label, #torPreferences-status-tor-label { font-weight: bold; }
-#torPreferences-status-internet-icon { - list-style-image: url("chrome://browser/content/torpreferences/network.svg"); +#torPreferences-status-internet-status { + margin-inline-end: 32px; }
#torPreferences-status-internet-statusIcon.online, @@ -143,9 +153,12 @@ html:dir(rtl) input[type="checkbox"].toggle-button::before { margin-inline-end: 9px; }
+#torPreferences-status-internet-statusIcon, #torPreferences-status-tor-statusIcon { + -moz-context-properties: fill; +} + #torPreferences-status-internet-statusIcon.online, #torPreferences-status-tor-statusIcon.connected { list-style-image: url("chrome://browser/content/torpreferences/check.svg"); - -moz-context-properties: fill; fill: var(--purple-60); }
@@ -155,26 +168,13 @@ html:dir(rtl) input[type="checkbox"].toggle-button::before { } }
-#torPreferences-status-internet-status { - margin-inline-end: 32px; -} - -#torPreferences-status-tor-icon { - list-style-image: url("chrome://browser/skin/onion.svg"); -} - -#torPreferences-status-internet-icon, #torPreferences-status-tor-icon { - -moz-context-properties: fill; - fill: var(--in-content-text-color); -} - -#torPreferences-status-tor-statusIcon, #torPreferences-status-internet-statusIcon.offline { - list-style-image: url("chrome://browser/skin/warning.svg"); +#torPreferences-status-internet-statusIcon.offline, #torPreferences-status-tor-statusIcon:not(.connected) { + list-style-image: url("chrome://global/skin/icons/warning.svg"); + fill: var(--torbrowser-warning); }
#torPreferences-status-tor-statusIcon.blocked { - -moz-context-properties: fill; - fill: var(--red-60); + fill: var(--in-content-danger-button-background); }
/* Bridge settings */ @@ -555,7 +555,9 @@ hbox#torPreferences-requestBridge-incorrectCaptchaHbox { }
image#torPreferences-requestBridge-errorIcon { - 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); }
groupbox#torPreferences-bridges-group textarea {
This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch tor-browser-102.3.0esr-12.0-2 in repository tor-browser.
commit 98311ec00049e5133cf0d6fdb8bb1f63e8598d7e Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Fri Oct 14 13:13:59 2022 +0200
fixup! Bug 27476: Implement about:torconnect captive portal within Tor Browser
Bug 41083: Fix some colors --- browser/components/torconnect/content/aboutTorConnect.css | 4 +++- browser/components/torconnect/content/connection-failure.svg | 2 +- browser/components/torconnect/content/connection-location.svg | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/browser/components/torconnect/content/aboutTorConnect.css b/browser/components/torconnect/content/aboutTorConnect.css index 5930f0948291..688a11c4415d 100644 --- a/browser/components/torconnect/content/aboutTorConnect.css +++ b/browser/components/torconnect/content/aboutTorConnect.css @@ -310,15 +310,17 @@ body {
.title { background-image: url("chrome://browser/content/torconnect/onion.svg"); - -moz-context-properties: fill, fill-opacity; + -moz-context-properties: stroke, fill, fill-opacity; fill-opacity: var(--onion-opacity); fill: var(--onion-color); }
.title.offline, .title.assist, .title.final { background-image: url("chrome://browser/content/torconnect/connection-failure.svg"); + stroke: var(--in-content-danger-button-background); }
.title.location { background-image: url("chrome://browser/content/torconnect/connection-location.svg"); + stroke: var(--torbrowser-warning); } diff --git a/browser/components/torconnect/content/connection-failure.svg b/browser/components/torconnect/content/connection-failure.svg index 8f2005e36055..76af8c8b94e4 100644 --- a/browser/components/torconnect/content/connection-failure.svg +++ b/browser/components/torconnect/content/connection-failure.svg @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg fill="none" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg"> <path fill="context-fill" d="M 30,1.875 C 14.467,1.875 1.875,14.467 1.875,30 c 0,6.725546 2.3647525,12.894963 6.3027344,17.734375 l -4.7636719,4.763672 c -0.7834743,0.783474 -0.7834743,2.044651 0,2.828125 0.7834743,0.783474 2.0446507,0.783474 2.828125,0 C 21.046044,40.52782 34.415343,27.146014 47.546875,14.023438 v -0.002 l 6.779297,-6.7792965 c 0.783474,-0.7834743 0.783474,-2.0446507 0,-2.828125 -0.783474,-0.7834743 -2.044651,-0.7834743 -2.828125,0 L 47.734375,8.1777344 C 42.894963,4. [...] - <path fill="#d70022" d="m59.5328 52.4973-10.261-18.5715c-.7112-1.2833-1.9917-1.9258-3.2722-1.9258-1.2806 0-2.5611.6425-3.2704 1.9258l-10.261 18.5715c-1.3701 2.4755.4312 5.5027 3.2704 5.5027h20.5238c2.8373 0 4.6387-3.0272 3.2704-5.5027zm-12.3666-.533-.4666.4642h-1.4l-.4667-.4642v-1.3929l.4667-.4643h1.4l.4666.4643zm0-4.992c0 .3078-.1229.603-.3417.8207s-.5155.34-.8249.34-.6062-.1223-.825-.34-.3417-.5129-.3417-.8207v-6.383c0-.3079.1229-.6031.3417-.8208s.5156-.34.825-.34.6061.1223.8249.34.3 [...] + <path fill="context-stroke" d="m59.5328 52.4973-10.261-18.5715c-.7112-1.2833-1.9917-1.9258-3.2722-1.9258-1.2806 0-2.5611.6425-3.2704 1.9258l-10.261 18.5715c-1.3701 2.4755.4312 5.5027 3.2704 5.5027h20.5238c2.8373 0 4.6387-3.0272 3.2704-5.5027zm-12.3666-.533-.4666.4642h-1.4l-.4667-.4642v-1.3929l.4667-.4643h1.4l.4666.4643zm0-4.992c0 .3078-.1229.603-.3417.8207s-.5155.34-.8249.34-.6062-.1223-.825-.34-.3417-.5129-.3417-.8207v-6.383c0-.3079.1229-.6031.3417-.8208s.5156-.34.825-.34.6061.1223.82 [...] </svg> diff --git a/browser/components/torconnect/content/connection-location.svg b/browser/components/torconnect/content/connection-location.svg index 1e5c41ccf99a..1da280993b07 100644 --- a/browser/components/torconnect/content/connection-location.svg +++ b/browser/components/torconnect/content/connection-location.svg @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg fill="none" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg"> <path fill="context-fill" d="M 30,1.875 C 14.467,1.875 1.875,14.467 1.875,30 c 0,6.725546 2.3647429,12.894963 6.3027344,17.734375 l -4.7636719,4.763672 c -0.7834743,0.783474 -0.7834743,2.044651 0,2.828125 0.7834743,0.783474 2.0446507,0.783474 2.828125,0 C 21.049647,40.524244 34.416498,27.144859 47.546875,14.023438 v -0.002 l 6.779297,-6.7792965 c 0.783474,-0.7834743 0.783474,-2.0446507 0,-2.828125 -0.783474,-0.7834743 -2.044651,-0.7834743 -2.828125,0 L 47.734375,8.1777344 C 42.894963,4 [...] - <path fill="#ffa436" d="m45 30c-3.713 0-7.274 1.475-9.8995 4.1005s-4.1005 6.1865-4.1005 9.8995 1.475 7.274 4.1005 9.8995 6.1865 4.1005 9.8995 4.1005 7.274-1.475 9.8995-4.1005 4.1005-6.1865 4.1005-9.8995-1.475-7.274-4.1005-9.8995-6.1865-4.1005-9.8995-4.1005zm4.5677 3.2667c1.9167.8229 3.5778 2.1443 4.8108 3.8267 1.233 1.6825 1.9928 3.6644 2.2004 5.7399h-4.1608c-.2298-3.4759-1.4862-6.8054-3.6101-9.5666zm-3.8248 0c2.5257 2.5792 4.06 5.967 4.3326 9.5666h-10.151c.2726-3.5996 1.8069-6.9874 4. [...] + <path fill="context-stroke" d="m45 30c-3.713 0-7.274 1.475-9.8995 4.1005s-4.1005 6.1865-4.1005 9.8995 1.475 7.274 4.1005 9.8995 6.1865 4.1005 9.8995 4.1005 7.274-1.475 9.8995-4.1005 4.1005-6.1865 4.1005-9.8995-1.475-7.274-4.1005-9.8995-6.1865-4.1005-9.8995-4.1005zm4.5677 3.2667c1.9167.8229 3.5778 2.1443 4.8108 3.8267 1.233 1.6825 1.9928 3.6644 2.2004 5.7399h-4.1608c-.2298-3.4759-1.4862-6.8054-3.6101-9.5666zm-3.8248 0c2.5257 2.5792 4.06 5.967 4.3326 9.5666h-10.151c.2726-3.5996 1.8069-6. [...] </svg>
tor-commits@lists.torproject.org