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

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;}
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

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;
}