tor-browser

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

organizer.css (892B)


      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 #placesList {
      6  width: 200px;
      7  min-width: 100px;
      8  max-width: 400px;
      9 }
     10 
     11 /* Menus */
     12 #placesMenu > menu {
     13  appearance: auto;
     14  -moz-default-appearance: toolbarbutton;
     15  min-height: var(--button-min-height);
     16 
     17  &:hover {
     18    color: -moz-buttonhovertext;
     19  }
     20 
     21  &:hover:active,
     22  &[open] {
     23    color: -moz-buttonactivetext;
     24  }
     25 }
     26 
     27 /* Root View */
     28 #placesView {
     29  background-color: Window;
     30 }
     31 
     32 /* Expanders */
     33 
     34 .expander-up,
     35 .expander-down {
     36  > .button-box {
     37    appearance: auto;
     38    -moz-default-appearance: -moz-menulist-arrow-button;
     39  }
     40 }
     41 
     42 .expander-up > .button-box {
     43  transform: scaleY(-1);
     44 }
     45 
     46 /* Downloads pane */
     47 #clearDownloadsButton > .toolbarbutton-icon {
     48  display: none;
     49 }