mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-28 08:00:32 +00:00
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:
parent
4842928f2b
commit
7826a451c9
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue