tor-browser

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

opentabs-tab-list.css (659B)


      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 .fxview-tab-list {
      6  &.pinned {
      7    display: flex;
      8    flex-wrap: wrap;
      9 
     10    > virtual-list {
     11      display: block;
     12    }
     13 
     14    > opentabs-tab-row {
     15      display: block;
     16      margin-block-end: var(--space-xsmall);
     17    }
     18  }
     19 
     20  &.hasContainerTab {
     21    grid-template-columns: min-content 3fr min-content 2fr 1fr 1fr min-content min-content;
     22  }
     23 }
     24 
     25 virtual-list {
     26  grid-column: span 9;
     27 
     28  .top-padding,
     29  .bottom-padding {
     30    grid-column: span 9;
     31  }
     32 }