tor-browser

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

siteDataSettings.css (1156B)


      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 http://mozilla.org/MPL/2.0/. */
      4 
      5 /**
      6 * Site Data - Settings dialog
      7 */
      8 #sitesList {
      9  flex: 1 auto;
     10  height: 20em;
     11 }
     12 
     13 /* Show selected items in high contrast mode. */
     14 #sitesList > richlistitem[selected] {
     15  outline: 1px solid transparent;
     16 }
     17 
     18 #sitesList > richlistitem > hbox,
     19 .item-box > label {
     20  flex: 1;
     21 }
     22 
     23 .item-box {
     24  padding: 5px 8px;
     25  align-items: center;
     26  width: 50px;
     27 }
     28 
     29 /**
     30 * Confirmation dialog of removing sites selected
     31 */
     32 #SiteDataRemoveSelectedDialog {
     33  padding: 16px;
     34  min-width: 50px;
     35 }
     36 
     37 #SiteDataRemoveSelectedDialog.single-entry {
     38  min-height: 8em;
     39 }
     40 
     41 #SiteDataRemoveSelectedDialog.single-entry .multi-site {
     42  display: none;
     43 }
     44 
     45 #SiteDataRemoveSelectedDialog.multi-entry #removalList {
     46  max-height: 20em;
     47 }
     48 
     49 #SiteDataRemoveSelectedDialog > dialog {
     50  padding: 0; /* override dialog.css */
     51 }
     52 
     53 #contentContainer {
     54  font-size: 1.2em;
     55  margin-bottom: 10px;
     56 }
     57 
     58 .question-icon {
     59  margin: 6px;
     60 }
     61 
     62 #removing-label {
     63  font-weight: var(--font-weight-bold);
     64 }