morgan pushed to branch tor-browser-128.8.0esr-14.5-1 at The Tor Project / Applications / Tor Browser

Commits:

2 changed files:

Changes:

  • browser/components/torpreferences/content/connectionPane.xhtml
    ... ... @@ -198,7 +198,7 @@
    198 198
           <html:img id="tor-bridges-none-icon" alt="" />
    
    199 199
           <html:div data-l10n-id="tor-bridges-none-added"></html:div>
    
    200 200
         </html:div>
    
    201
    -    <html:div id="tor-bridges-current" hidden="hidden">
    
    201
    +    <html:div id="tor-bridges-current" class="tor-bridges-box" hidden="hidden">
    
    202 202
           <html:div id="tor-bridges-current-header-bar">
    
    203 203
             <html:h2
    
    204 204
               id="tor-bridges-current-heading-non-search"
    
    ... ... @@ -564,7 +564,7 @@
    564 564
               ></html:div>
    
    565 565
             </html:li>
    
    566 566
           </html:ul>
    
    567
    -      <html:div id="tor-bridges-request-box">
    
    567
    +      <html:div id="tor-bridges-request-box" class="tor-bridges-box">
    
    568 568
             <html:img
    
    569 569
               alt=""
    
    570 570
               src="chrome://browser/content/torpreferences/bridge-bot.svg"
    

  • browser/components/torpreferences/content/torPreferences.css
    ... ... @@ -173,12 +173,17 @@ button.spoof-button-disabled {
    173 173
       display: none;
    
    174 174
     }
    
    175 175
     
    
    176
    -.bridge-status-badge.bridge-status-connected {
    
    177
    -  color: var(--tor-accent-color);
    
    178
    -}
    
    176
    +@media not ((forced-colors) or (prefers-contrast)) {
    
    177
    +  /* Accent colors are usually only used for background colors. Here we are
    
    178
    +   * using it for text colors, so we only enable these rules when not using a
    
    179
    +   * high contrast theme or forced colors. */
    
    180
    +  .bridge-status-badge.bridge-status-connected {
    
    181
    +    color: var(--tor-accent-color);
    
    182
    +  }
    
    179 183
     
    
    180
    -.bridge-status-badge.bridge-status-current-built-in {
    
    181
    -  color: var(--in-content-accent-color);
    
    184
    +  .bridge-status-badge.bridge-status-current-built-in {
    
    185
    +    color: var(--color-accent-primary);
    
    186
    +  }
    
    182 187
     }
    
    183 188
     
    
    184 189
     .bridge-status-badge > * {
    
    ... ... @@ -230,7 +235,7 @@ button.spoof-button-disabled {
    230 235
       padding-block: 64px;
    
    231 236
       padding-inline: 32px;
    
    232 237
       gap: 16px;
    
    233
    -  border-radius: 4px;
    
    238
    +  border-radius: var(--border-radius-small);
    
    234 239
       color: var(--text-color-deemphasized);
    
    235 240
       border: 2px dashed color-mix(in srgb, currentColor 20%, transparent);
    
    236 241
     }
    
    ... ... @@ -243,10 +248,18 @@ button.spoof-button-disabled {
    243 248
       fill: currentColor;
    
    244 249
     }
    
    245 250
     
    
    246
    -#tor-bridges-current {
    
    251
    +.tor-bridges-box,
    
    252
    +.tor-bridges-details-box {
    
    247 253
       padding: 16px;
    
    248
    -  border-radius: 4px;
    
    254
    +  border-radius: var(--border-radius-small);
    
    249 255
       background: var(--in-content-box-info-background);
    
    256
    +  border: 1px solid var(--in-content-box-border-color);
    
    257
    +}
    
    258
    +
    
    259
    +@media not forced-colors {
    
    260
    +  .tor-bridges-box {
    
    261
    +    border-color: transparent;
    
    262
    +  }
    
    250 263
     }
    
    251 264
     
    
    252 265
     #tor-bridges-current-header-bar {
    
    ... ... @@ -409,7 +422,7 @@ button.spoof-button-disabled {
    409 422
       height: 16px;
    
    410 423
       /* color-light-gray-10, color-dark-gray-60 */
    
    411 424
       background: light-dark(#f9f9fb, #2b2a33);
    
    412
    -  border-radius: 4px;
    
    425
    +  border-radius: var(--border-radius-small);
    
    413 426
       padding: 8px;
    
    414 427
     }
    
    415 428
     
    
    ... ... @@ -463,9 +476,6 @@ button.spoof-button-disabled {
    463 476
     
    
    464 477
     .tor-bridges-details-box {
    
    465 478
       margin-block-start: 24px;
    
    466
    -  border-radius: 4px;
    
    467
    -  border: 1px solid var(--in-content-border-color);
    
    468
    -  padding: 16px;
    
    469 479
     }
    
    470 480
     
    
    471 481
     #tor-bridges-share:not([hidden]) {
    
    ... ... @@ -705,9 +715,6 @@ button.spoof-button-disabled {
    705 715
       align-items: center;
    
    706 716
       text-align: center;
    
    707 717
       justify-content: center;
    
    708
    -  padding: 16px;
    
    709
    -  background: var(--in-content-box-info-background);
    
    710
    -  border-radius: 4px;
    
    711 718
     }
    
    712 719
     
    
    713 720
     #tor-bridges-request-box > * {
    
    ... ... @@ -778,7 +785,7 @@ dialog#torPreferences-requestBridge-dialog > hbox {
    778 785
       with whatever the default background color is. */
    
    779 786
       padding: 10px;
    
    780 787
       margin-block: 4px 8px;
    
    781
    -  border-radius: 4px;
    
    788
    +  border-radius: var(--border-radius-small);
    
    782 789
       display: grid;
    
    783 790
       align-items: center;
    
    784 791
       justify-items: center;
    
    ... ... @@ -798,7 +805,7 @@ dialog#torPreferences-requestBridge-dialog > hbox {
    798 805
       grid-area: qr;
    
    799 806
       content: url("chrome://browser/content/torpreferences/bridge.svg");
    
    800 807
       padding: 10px;
    
    801
    -  border-radius: 8px;
    
    808
    +  border-radius: var(--border-radius-medium);
    
    802 809
       box-sizing: content-box;
    
    803 810
       width: 52px;
    
    804 811
       height: 52px;