From 7826a451c97f3302c46e5f6fca4aac68f8702396 Mon Sep 17 00:00:00 2001 From: Stephen Niedzielski Date: Mon, 17 Dec 2018 22:20:25 +0000 Subject: [PATCH] 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 --- resources/skins.minerva.content.styles/links.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/skins.minerva.content.styles/links.less b/resources/skins.minerva.content.styles/links.less index 728e41e..74e569e 100644 --- a/resources/skins.minerva.content.styles/links.less +++ b/resources/skins.minerva.content.styles/links.less @@ -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 {