tor-browser

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

List.css (856B)


      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 /* List */
      6 
      7 .list {
      8  background-color: var(--theme-sidebar-background);
      9  list-style-type: none;
     10  padding: 0;
     11  margin: 0;
     12  width: 100%;
     13  white-space: nowrap;
     14  overflow: auto;
     15 }
     16 
     17 .list:focus,
     18 .list .list-item-content:focus {
     19  outline: 0;
     20 }
     21 
     22 .list li.current {
     23  background-color: var(--theme-toolbar-hover);
     24 }
     25 
     26 .list:focus li.current,
     27 .list li.active.current {
     28  background-color: var(--theme-emphasized-splitter-color);
     29 }
     30 
     31 .list:focus li:not(.current):hover,
     32 .list:not(:focus) li:not(.active):hover {
     33  background-color: var(--theme-selection-background-hover);
     34 }
     35 
     36 .list .list-item-content:not(:empty) {
     37  font-size: 12px;
     38  overflow: auto;
     39 }