tor-browser

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

fxview-tab-list.css (656B)


      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 :host {
      6  display: grid;
      7  row-gap: var(--space-xsmall);
      8 }
      9 
     10 .fxview-tab-list {
     11  display: grid;
     12  grid-template-columns: min-content 3fr 2fr 1fr 1fr min-content;
     13  gap: var(--space-xsmall);
     14 
     15  :host([compactRows]) & {
     16    grid-template-columns: min-content 1fr min-content min-content;
     17  }
     18 }
     19 
     20 virtual-list {
     21  display: grid;
     22  grid-column: span 7;
     23  grid-template-columns: subgrid;
     24 
     25  .top-padding,
     26  .bottom-padding {
     27    grid-column: span 7;
     28  }
     29 }