40 lines
762 B
SCSS
40 lines
762 B
SCSS
.stream_container, #single-post-interactions {
|
|
.controls {
|
|
z-index: 6;
|
|
float: right;
|
|
|
|
.block_user,
|
|
.comment_report,
|
|
.create_participation,
|
|
.delete,
|
|
.destroy_participation,
|
|
.post_report {
|
|
display: inline-block;
|
|
|
|
.icons-create_participation,
|
|
.icons-deletelabel,
|
|
.icons-destroy_participation,
|
|
.icons-ignoreuser,
|
|
.icons-report {
|
|
height: 14px;
|
|
width: 14px;
|
|
}
|
|
}
|
|
|
|
& > a:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.stream_element, .comment, .photo, .stream_element:hover .comment {
|
|
.controls > a {
|
|
@include transition(opacity);
|
|
opacity: 0;
|
|
}
|
|
|
|
&:hover .controls {
|
|
& > a { opacity: 0.3; }
|
|
& > a:hover { opacity: 1; }
|
|
}
|
|
}
|
|
}
|