tor-browser

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

organizer-shared.css (2064B)


      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 #contentView {
      6  flex: 4 4;
      7 }
      8 
      9 #contentView,
     10 #placesView,
     11 #placesViewsBox {
     12  min-width: 0;
     13  min-height: 0;
     14 }
     15 
     16 #placesViewsBox {
     17  min-height: 5em;
     18  overflow: clip;
     19 }
     20 
     21 /* Info box */
     22 #infoBox:not([hidden]) {
     23  display: block;
     24 }
     25 
     26 #editBookmarkPanelContent {
     27  grid-template-columns: auto 1fr;
     28 
     29  .caption-label:not([hidden]) {
     30    display: block;
     31    grid-column: 2;
     32  }
     33 
     34  label {
     35    align-self: center;
     36  }
     37 
     38  input[type="text"],
     39  .expander-up,
     40  .expander-down {
     41    margin: 4px;
     42  }
     43 
     44  .expander-up,
     45  .expander-down {
     46    min-width: 0;
     47  }
     48 }
     49 
     50 #editBMPanel_itemsCountText {
     51  grid-column: auto / span 2;
     52  justify-self: center;
     53 }
     54 
     55 #editBMPanel_tagsSelectorRow {
     56  grid-column: auto / span 2;
     57 }
     58 
     59 #editBMPanel_tagsSelector {
     60  margin: 4px;
     61 }
     62 
     63 #detailsPane {
     64  min-height: 16em;
     65  padding: 5px;
     66 }
     67 
     68 /* Toolbar */
     69 
     70 #placesToolbar {
     71  @media (-moz-menubar-drag) {
     72    -moz-window-dragging: drag;
     73  }
     74 }
     75 
     76 #placesToolbar > toolbarbutton > .toolbarbutton-icon,
     77 #placesMenu > menu > .menu-icon {
     78  -moz-context-properties: fill;
     79  fill: currentColor;
     80 }
     81 
     82 #placesMenu > menu::after {
     83  display: flex;
     84  width: 12px;
     85  height: 12px;
     86  margin-inline-start: 2px;
     87  content: url("chrome://global/skin/icons/arrow-down-12.svg");
     88  -moz-context-properties: fill;
     89  fill: currentColor;
     90 }
     91 
     92 /* Toolbar icons */
     93 #back-button {
     94  list-style-image: url("chrome://browser/skin/back.svg");
     95 }
     96 
     97 #forward-button {
     98  list-style-image: url("chrome://browser/skin/forward.svg");
     99 }
    100 
    101 #back-button:-moz-locale-dir(rtl) > .toolbarbutton-icon,
    102 #forward-button:-moz-locale-dir(rtl) > .toolbarbutton-icon {
    103  transform: scaleX(-1);
    104 }
    105 
    106 #organizeButton {
    107  --menuitem-icon: url("chrome://global/skin/icons/settings.svg");
    108 }
    109 
    110 #viewMenu {
    111  --menuitem-icon: url("chrome://browser/skin/sort.svg");
    112 }
    113 
    114 #maintenanceButton {
    115  --menuitem-icon: url("chrome://global/skin/icons/arrows-updown.svg");
    116 }