tor-browser

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

backup-common.css (795B)


      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 https://mozilla.org/MPL/2.0/. */
      4 
      5 /**
      6 * This stylesheet is for shared rules across multiple backup components.
      7 * It assumes that common.css has been imported into the same scope.
      8 */
      9 
     10 .backup-location-filepicker-input {
     11  flex: 1;
     12  margin-block: var(--space-xsmall);
     13  margin-inline-start: 0;
     14  padding-inline-start: var(--space-xxlarge);
     15  background-repeat: no-repeat;
     16  background-size: var(--icon-size);
     17  background-position: var(--space-small) 50%;
     18 
     19  /* For the placeholder icon */
     20  -moz-context-properties: fill;
     21  fill: currentColor;
     22 
     23  &:dir(rtl) {
     24    background-position-x: right var(--space-small);
     25  }
     26 }