Merge pull request #5682 from svbergerem/opacity-transition-post-controls

Add opacity transition for post controls
This commit is contained in:
Jonne Haß 2015-02-18 18:38:23 +01:00
commit 7de66abce9

View file

@ -29,7 +29,10 @@
}
.stream_element, .comment, .photo, .stream_element:hover .comment {
.controls > a { opacity: 0; }
.controls > a {
@include transition(opacity);
opacity: 0;
}
&:hover .controls {
& > a { opacity: 0.3; }