tor-browser

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

fragment-only-urls.css (391B)


      1 :root {
      2    --fragment-image-url: url("#foo");
      3    --fragment-cursor-url: url("#foo"), pointer;
      4 }
      5 
      6 #external-unquoted {
      7    background-image: url(#foo);
      8    cursor: url(#foo), pointer;
      9 }
     10 
     11 #external-quoted {
     12    background-image: url("#foo");
     13    cursor: url("#foo"), pointer;
     14 }
     15 
     16 #external-variable {
     17    background-image: var(--fragment-image-url);
     18    cursor: var(--fragment-cursor-url);
     19 }