tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

ipprotection-status-card.css (912B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
      4 
      5 @import "chrome://global/skin/global.css";
      6 
      7 :host {
      8  --border-color: var(--border-color-card);
      9 }
     10 
     11 #ipprotection-content-wrapper {
     12  display: flex;
     13  flex-direction: column;
     14  padding-inline: var(--panel-subview-body-padding-inline);
     15  padding-block: var(--panel-subview-body-padding-block);
     16 }
     17 
     18 .vpn-status-group {
     19  display: block;
     20  position: relative;
     21  margin: var(--space-large);
     22  overflow: hidden;
     23 }
     24 
     25 .is-enabled {
     26  background-color: var(--background-color-success);
     27 }
     28 
     29 #status-card {
     30  --box-label-font-weight: var(--font-weight-semibold);
     31  -moz-context-properties: fill, stroke;
     32 }
     33 
     34 #connection-toggle {
     35  margin-inline-end: var(--space-small);
     36 }
     37 
     38 #site-settings {
     39  --box-group-border: none;
     40 }