Changeset - 1f2269c26f93
[Not reviewed]
default
0 1 0
Mads Kiilerich - 11 years ago 2015-05-13 01:27:50
madski@unity3d.com
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.
1 file changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -244,25 +244,26 @@ a.permalink {
 
}
 

	
 
a.permalink:hover {
 
    text-decoration: none;
 
}
 

	
 
h1:hover > a.permalink,
 
h2:hover > a.permalink,
 
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;
 
}
 

	
 
#header #logo {
 
    padding-left: 10px;
 
}
 

	
 
div.header img {
 
    padding-top: 5px;
 
}
 

	
 
#header #logo div.header,
0 comments (0 inline, 0 general)