tor-browser

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

moz-bool-pref.css (248B)


      1 #test {
      2  width: 100px;
      3  height: 100px;
      4 }
      5 
      6 .enabled {
      7  background: red;
      8 }
      9 
     10 .disabled {
     11  background: green;
     12 }
     13 
     14 @media -moz-pref("testing.supports.moz-bool-pref") {
     15  .enabled {
     16    background: green;
     17  }
     18 
     19  .disabled {
     20    background: red;
     21  }
     22 }