# HG changeset patch # User Mads Kiilerich # Date 2015-05-13 01:27:50 # Node ID 1f2269c26f937bcb45bc26f8b587f3bdf36fe73c # Parent dbbe3b1a442d21383db45a4fdf4c5c9853392523 comments: fix permalink symbol appearance on hover It broke when 293066605a43 did that the permalink a no longer was immediate child of a div. Instead, accept an intermediate span ... and thus make the hover target bigger. diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css --- a/kallithea/public/css/style.css +++ b/kallithea/public/css/style.css @@ -253,7 +253,8 @@ h3:hover > a.permalink, h4:hover > a.permalink, h5:hover > a.permalink, h6:hover > a.permalink, -div:hover > a.permalink { +div:hover > a.permalink, +div:hover > span > a.permalink { visibility: visible; }