[IMP] web_responsive: Menu wait for action

This commit is contained in:
Alexandre Díaz
2019-06-12 17:07:22 +02:00
committed by Sergey Shebanin
parent 63c2496932
commit 6441fa447d
2 changed files with 96 additions and 9 deletions

View File

@@ -22,6 +22,30 @@
.o-app-waiting img {
animation: 1.3s infinite cubic-bezier(.65,.05,.36,1) o-app-icon-flash-animation;
}
// Menu icon waiting indicator anim
@keyframes o-menu-item-flash-animation {
0% {
background-color: $dropdown-link-hover-bg;
}
25% {
background-color: transparent;
}
50% {
background-color: $dropdown-link-hover-bg;
}
75% {
background-color: transparent;
}
100% {
background-color: $dropdown-link-hover-bg;
}
}
.o-menu-item-waiting {
animation: 1.3s infinite cubic-bezier(.65,.05,.36,1) o-menu-item-flash-animation;
}
.o-cursor-waiting {
cursor: progress;
}
@mixin full-screen-dropdown {
border: none;