Richard Pospesel pushed to branch tor-browser-102.8.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits:
- 
4c6590c3
by Dan Ballard at 2023-02-13T11:46:54-08:00
- 
494c9781
by Dan Ballard at 2023-02-13T11:47:45-08:00
- 
d1328cd0
by Dan Ballard at 2023-02-13T11:48:06-08:00
- 
cf3ca81b
by Dan Ballard at 2023-02-13T11:48:22-08:00
5 changed files:
- browser/components/torconnect/content/aboutTorConnect.css
- browser/components/torconnect/content/aboutTorConnect.js
- browser/components/torpreferences/content/torPreferences.css
- browser/modules/TorStrings.jsm
- toolkit/torbutton/chrome/locale/en-US/torConnect.properties
Changes:
| ... | ... | @@ -142,7 +142,19 @@ button { | 
| 142 | 142 |  }
 | 
| 143 | 143 | |
| 144 | 144 |  #locationDropdownLabel.error {
 | 
| 145 | -  color: var(--in-content-danger-button-background)
 | |
| 145 | +  color: var(--in-content-error-text-color)
 | |
| 146 | +}
 | |
| 147 | + | |
| 148 | +#tryBridgeButton.danger-button {
 | |
| 149 | +  background-color: var(--purple-70);
 | |
| 150 | +}
 | |
| 151 | + | |
| 152 | +#tryBridgeButton.danger-button:hover {
 | |
| 153 | +  background-color: var(--purple-80);
 | |
| 154 | +}
 | |
| 155 | + | |
| 156 | +#tryBridgeButton.danger-button:active {
 | |
| 157 | +  background-color: var(--purple-90);
 | |
| 146 | 158 |  }
 | 
| 147 | 159 | |
| 148 | 160 |  /* this follows similar css in error-pages.css for buttons */
 | 
| ... | ... | @@ -764,7 +764,7 @@ class AboutTorConnect { | 
| 764 | 764 |      });
 | 
| 765 | 765 | |
| 766 | 766 |      this.elements.locationDropdownLabel.textContent =
 | 
| 767 | -      TorStrings.torConnect.yourLocation;
 | |
| 767 | +      TorStrings.torConnect.unblockInternetIn;
 | |
| 768 | 768 | |
| 769 | 769 |      this.elements.tryBridgeButton.textContent = TorStrings.torConnect.tryBridge;
 | 
| 770 | 770 |      this.elements.tryBridgeButton.addEventListener("click", () => {
 | 
| ... | ... | @@ -26,7 +26,7 @@ html:dir(rtl) input[type="checkbox"].toggle-button::before { | 
| 26 | 26 |  }
 | 
| 27 | 27 | |
| 28 | 28 |  #torPreferences-connectMessageBox.error {
 | 
| 29 | -  background-color: var(--red-60);
 | |
| 29 | +  background-color: var(--purple-50);
 | |
| 30 | 30 |    color: white;
 | 
| 31 | 31 |  }
 | 
| 32 | 32 | |
| ... | ... | @@ -93,15 +93,15 @@ html:dir(rtl) input[type="checkbox"].toggle-button::before { | 
| 93 | 93 |  }
 | 
| 94 | 94 | |
| 95 | 95 |  #torPreferences-connectMessageBox.error #torPreferences-connectMessageBox-button {
 | 
| 96 | -  background-color: var(--red-70);
 | |
| 96 | +  background-color: var(--purple-70);
 | |
| 97 | 97 |  }
 | 
| 98 | 98 | |
| 99 | 99 |  #torPreferences-connectMessageBox.error #torPreferences-connectMessageBox-button:hover {
 | 
| 100 | -  background-color: var(--red-80);
 | |
| 100 | +  background-color: var(--purple-80);
 | |
| 101 | 101 |  }
 | 
| 102 | 102 | |
| 103 | 103 |  #torPreferences-connectMessageBox.error #torPreferences-connectMessageBox-button:active {
 | 
| 104 | -  background-color: var(--red-90);
 | |
| 104 | +  background-color: var(--purple-90);
 | |
| 105 | 105 |  }
 | 
| 106 | 106 | |
| 107 | 107 |  #torPreferences-connectMessageBox.warning #torPreferences-connectMessageBox-button {
 | 
| ... | ... | @@ -253,6 +253,7 @@ const Loader = { | 
| 253 | 253 |        tryAgainMessage:
 | 
| 254 | 254 |          "Tor Browser has failed to establish a connection to the Tor Network",
 | 
| 255 | 255 |        yourLocation: "Your Location",
 | 
| 256 | +      unblockInternetIn: "Unblock the Internet in",
 | |
| 256 | 257 | |
| 257 | 258 |        tryBridge: "Try a Bridge",
 | 
| 258 | 259 | 
| ... | ... | @@ -40,6 +40,7 @@ torConnect.tryAgain=Try Again | 
| 40 | 40 |  torConnect.connectMessage=Changes to Tor Settings will not take effect until you connect
 | 
| 41 | 41 |  torConnect.tryAgainMessage=Tor Browser has failed to establish a connection to the Tor Network
 | 
| 42 | 42 |  torConnect.yourLocation=Your Location
 | 
| 43 | +torConnect.unblockInternetIn=Unblock the Internet in
 | |
| 43 | 44 |  torConnect.tryBridge=Try a Bridge
 | 
| 44 | 45 |  torConnect.automatic=Automatic
 | 
| 45 | 46 |  torConnect.selectCountryRegion=Select Country or Region
 |