Added delete label to photos in gallery added an event to delete photos of current user Added css for hiding/revealing the delete label Included the photo stylesheet Added cucumber test for deleting your own photos Removed wip
19 lines
No EOL
306 B
SCSS
19 lines
No EOL
306 B
SCSS
.photo {
|
|
.controls:first-child {
|
|
.control_icon {
|
|
@include transition(opacity);
|
|
@include opacity(0);
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
.controls:first-child {
|
|
.control_icon {
|
|
@include opacity(0.3);
|
|
}
|
|
.control_icon:hover {
|
|
@include opacity(1);
|
|
}
|
|
}
|
|
}
|
|
} |