1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

cell menu

This commit is contained in:
Fedor Katurov 2019-10-21 21:37:55 +07:00
parent e35371e3aa
commit 353cadb09f
2 changed files with 25 additions and 0 deletions

View file

@ -22,6 +22,14 @@
}
}
&:hover {
.menu {
opacity: 1;
pointer-events: all;
touch-action: auto;
}
}
@include outer_shadow();
}
@ -124,3 +132,18 @@
border-radius: $cell_radius;
padding: $gap;
}
.menu {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 60px;
background: $content_bg;
z-index: 4;
border-radius: $radius;
opacity: 0;
pointer-events: none;
touch-action: none;
transition: opacity 0.5s;
}