1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-28 16:48:00 +02:00

related post title :active improvements

This commit is contained in:
Matthias Kretschmann 2014-07-05 13:45:56 +02:00
parent f33d52cba3
commit 3128815f1a
2 changed files with 10 additions and 1 deletions

View File

@ -72,4 +72,6 @@
.photo-link {
display: block;
&:active { background: none }
}

View File

@ -22,7 +22,14 @@
.post-title-link {
color: @brand-grey-light;
.transition;
&:hover { color: @link-color }
&:hover,
&:focus { color: @link-color }
&:active {
color: #fff;
.transition(none);
}
}
.post-title-link { display: block }