From: Vladimír Vondruš Date: Mon, 1 Jan 2018 17:21:51 +0000 (+0100) Subject: css: proper cursor for links in SVG files consistently in *all* browsers. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=18594d73ec47445bbb65c269a371d2168cb913da;p=blog.git css: proper cursor for links in SVG files consistently in *all* browsers. Why, stock Chrome, why? Every other browsers including Chrome derivates (Vivaldi) gets it right. --- diff --git a/css/m-components.css b/css/m-components.css index 1e387390..2453d358 100644 --- a/css/m-components.css +++ b/css/m-components.css @@ -112,6 +112,7 @@ a:hover, a:focus, a:active { color: var(--link-active-color); } a img { border: 0; } /* Why you so special, IE?! */ +svg a { cursor: pointer; } /* And why YOU, CHROME?! */ mark { padding: 0.0625rem; background-color: var(--mark-background-color);