Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×

Styling link () states in macro

Just a quick question. Recently discovered you can style tags like so: {{description=[-- Cantrips --](" style="background: none; background-color: transparent; border: none; padding: 0px; text-decoration: none; display:none; color: #7e2d40; font-weight: bold; display: block) Now I am wondering if you can style the link states, like it is done in CSS with a:hover  and such.
Unfortunately any of the pseudo elements are not accessible outside of CSS or JavaScript. 
1625635099
Oosh
Sheet Author
API Scripter
You can sneak a class in to make CSS selection easier: [Things](link.to.stuff" class="testclass") And grab it with: .userscript-testclass:hover { color:blue; } As with any CSS edits, these will only be visible in your browser.
Oosh said: As with any CSS edits, these will only be visible in your browser. Well, I wanted it to be visible to all. Unfortunate, but it is still a small thing so not a big deal. Thanks!