only show on hover or focus for block-actions

This commit is contained in:
Niels Lyngsø
2020-03-12 11:31:06 +01:00
parent 5aba6e873c
commit d8705831da
@@ -16,14 +16,14 @@
position: relative;
width: 100%;
> ng-transclude > .umb-block-list__block--actions {
> .umb-block-list__block--actions {
opacity: 0;
transition: opacity 120ms;
}
&:hover, &:focus, &:focus-within {
> ng-transclude > .umb-block-list__block--actions {
> .umb-block-list__block--actions {
opacity: 1;
}
}