diaspora/app/assets/stylesheets/popover.scss
Jonne Haß c96834bdf2 Remove .css extension from SCSS files
sass-rails 5.0 deprecated those
2015-02-28 03:37:46 +01:00

28 lines
385 B
SCSS

.popover {
.close {
opacity: 0;
@include transition(opacity, 0.2s);
position: relative;
top: 1px;
right: -5px;
float: right;
.icons-deletelabel {
height: 14px;
width: 14px;
}
img { margin-top: 10px; }
}
&:hover {
.close {
opacity: 0.5;
&:hover { opacity: 1; }
}
}
}
body {
.popover { z-index: 1000; }
}