tor-browser

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

places.css (1032B)


      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 :root {
      6  /* we eventually want to share this value with the bookmark panel, which is
      7     currently using --arrowpanel-padding */
      8  --editbookmarkdialog-padding: 1.25em;
      9 }
     10 
     11 tree[is="places-tree"] > treechildren::-moz-tree-cell {
     12  /* ensure we use the direction of the website title / url instead of the
     13   * browser locale */
     14  unicode-bidi: plaintext;
     15 }
     16 
     17 .places-tooltip-title {
     18  /* ensure we use the direction of the website title instead of the
     19   * browser locale */
     20  unicode-bidi: plaintext;
     21 }
     22 
     23 .toolbar-drop-indicator {
     24  position: relative;
     25  z-index: 1;
     26 }
     27 
     28 .placesTree {
     29  appearance: none;
     30  margin: 0;
     31  border: 0;
     32 }
     33 
     34 #searchFilter {
     35  flex: 1;
     36  max-width: 23em;
     37  margin: var(--space-small);
     38 }
     39 
     40 .places-tooltip-box {
     41  display: block;
     42 }
     43 
     44 #placesDownloadsTorWarning:not(.downloads-visible) {
     45  display: none;
     46 }