Hacker News new | ask | show | jobs
by drewmclellan 5142 days ago
Theoretically, adding the following to your browser's user stylesheet should defeat this:

    a { pointer-events: auto !important; }
The !important keyword adds weight to the rule, which trumps origin, specificity and sort-order in the CSS cascade.

A quick test in Safari/Mac confirms that works for this particular case.