Replies

Dec 31, 2019 6 years ago
Quark
User Avatar

Hey there guys, I'm trying to make a general css rule to block hovers/tool tips but not for the whole site only within the Vault area of the site.

I'm a newb to coding css on here and not sure what the selectors would be for the Vault and well the selector for hover tool tips

Jan 8, 2020 6 years ago
nene
User Avatar
Angora

The tooltips are actually not nested within the contents of the page if that makes sense, so you can't manually apply the rule to the Vaults page only ):

image

It's loaded using a script that fetches the data and appends it to html body. You can however use Stylus or a similar extension on your preferred browser, and make a rule that applies this code to https://subeta.net/explore/vaults.php? .tpd-tooltip [class^=tpd-] {display:none;}

Jan 8, 2020 6 years ago
Quark
User Avatar

I had a feeling I need to do something like that because I looked and I found the vault selector within the code and tried stuff like that and selecting that portion of the code but nothing had worked even with so I was like pulling my hair out lolz

Thanks for the insight

Apr 17, 2020 5 years ago
spacemage
is fashionable
User Avatar

if you still have interest in disabling item hover in vaults only here is a solution below that should work for you:

.vault-item img { pointer-events: none; }

I made a forum group for CustomCSS and more

Please log in to reply to this topic.