Fix: use hand cursor for links without href

Links without hypertext references are still functionally links and
should be presented in the same way. This patch forces the hand cursor
to be used for such links which affects the red links drawer's "no
thanks" link.

Change-Id: Iabfef03f6726bb8a5e3a2bc90f2a7f63c8a10c02
This commit is contained in:
Stephen Niedzielski 2018-12-17 22:20:25 +00:00
parent 4842928f2b
commit 7826a451c9
1 changed files with 3 additions and 0 deletions

View File

@ -11,6 +11,9 @@
/* stylelint-disable no-descending-specificity */
a:not( [ href ] ) {
color: @colorGray2;
/* The anchor is functionally a link so show a hand cursor. */
cursor: pointer;
}
a {