tor-browser

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

sitePermissions.css (1140B)


      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 .website-name,
      6 label.website-status {
      7  overflow: hidden;
      8  text-overflow: ellipsis;
      9  padding-inline-start: 7px;
     10 }
     11 
     12 #permissionsBox {
     13  flex: 1 auto;
     14  height: 18em;
     15  min-height: 70px; /* 2 * 35px, which is the min row height specified below */
     16 }
     17 
     18 #siteCol,
     19 #statusCol,
     20 #permissionsBox > richlistitem {
     21  min-height: 35px;
     22 }
     23 
     24 #permissionsBox > richlistitem > hbox {
     25  flex: 1;
     26  align-items: center;
     27 }
     28 
     29 #siteCol,
     30 .website-name {
     31  flex: 1;
     32  width: 0; /* Don't make our intrinsic size affect our final size */
     33 }
     34 
     35 #statusCol,
     36 .website-status {
     37  width: 35%;
     38 }
     39 
     40 menulist.website-status {
     41  margin-block: 1px;
     42  margin-inline: 0 5px;
     43  width: calc(35% - 5px);
     44 }
     45 
     46 #browserNotificationsPermissionExtensionContent,
     47 #permissionsDisableDescription {
     48  margin-inline-start: 32px;
     49 }
     50 
     51 #permissionsDisableDescription {
     52  color: var(--text-color-deemphasized);
     53 }
     54 
     55 #permissionsDisableCheckbox {
     56  margin-inline-start: 4px;
     57  padding-top: 10px;
     58 }