tor-browser

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

containers-dialog.css (1048B)


      1 /* 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 http://mozilla.org/MPL/2.0/. */
      4 
      5 @import url("chrome://browser/content/usercontext/usercontext.css");
      6 
      7 #name {
      8  flex: 1;
      9 }
     10 
     11 .radio-buttons {
     12  flex-direction: row;
     13  margin-inline-start: 0.35rem;
     14 }
     15 
     16 .radio-buttons > radio {
     17  user-select: none;
     18  outline: 2px solid transparent;
     19  outline-offset: 4px;
     20  min-block-size: 24px;
     21  min-inline-size: 24px;
     22  border-radius: var(--border-radius-circle);
     23  padding: 2px;
     24  margin: 9px;
     25 }
     26 
     27 .icon-buttons > radio > .userContext-icon {
     28  fill: var(--icon-color);
     29 }
     30 
     31 .radio-buttons > radio {
     32  padding-inline-start: 2px;
     33 }
     34 
     35 radio > .userContext-icon {
     36  inline-size: 22px;
     37  block-size: 22px;
     38 }
     39 
     40 .radio-buttons > radio[selected] {
     41  outline-color: var(--text-color);
     42 }
     43 
     44 .radio-buttons > radio[focused] {
     45  outline-color: var(--border-color-selected);
     46 }
     47 
     48 .radio-buttons > radio:hover:active {
     49  outline-color: var(--border-color-selected);
     50 }