tor-browser

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

style.css (813B)


      1 div.progress-element {
      2  -moz-appearance: progressbar;
      3  display: inline-block;
      4  height: 1em;
      5  width: 10em;
      6  vertical-align: -0.2em;
      7 
      8  /* Default style in case of there is -moz-appearance: none; */
      9  border: 1px solid ThreeDShadow;
     10  border-right-color: ThreeDHighlight;
     11  border-bottom-color: ThreeDHighlight;
     12  background-color: #e6e6e6;
     13 }
     14 
     15 div.progress-element.vertical {
     16  height: 10em;
     17  width: 1em;
     18 }
     19 
     20 div.progress-bar {
     21  height: 100%;
     22  /*
     23   * We can't apply the following style to the reference because it will have
     24   * underisable effectes:
     25   * width: 100%;
     26   */
     27 
     28  box-sizing: border-box;
     29 
     30  /* Default style in case of there is -moz-appearance: none; */
     31  background-color: #0064b4;
     32 }
     33 
     34 progress, progress::-moz-progress-bar, div.progress-element, div.progress-bar {
     35  -moz-appearance: none;
     36 }