This commit is contained in:
reverend 2020-09-25 18:09:22 +02:00
parent 592fd4773b
commit 0c24dec2ef
1 changed files with 30 additions and 2 deletions

View File

@ -3,7 +3,35 @@
@include RV-ElementList;
@include RV-Spacing__Inner--small;
.LP-ImageGrid__Item {
&__Item {
position: relative;
@include RV-ContentCrop;
}
}
i
&__DeleteItem {
display: table-cell;
opacity: 0.7;
visibility: hidden;
position: absolute;
top: $-spacing-small;
right: $-spacing-small;
background-color: $-light-brown;
border-radius: 50%;
height: $-spacing-large;
width: $-spacing-large;
line-height: $-spacing-large;
vertical-align: middle;
.LP-Icon{
height: $-spacing-medium;
width: $-spacing-medium;
position:relative;
top: calc(50% - 18.75px);
}
}
&__Item:hover &__DeleteItem {
visibility: visible;
}
}