1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update nav drawer

This commit is contained in:
Luke Pulverenti 2016-06-21 12:38:29 -04:00
parent f9b4288b08
commit 61b625bbdb
6 changed files with 171 additions and 218 deletions

View file

@ -2,20 +2,23 @@
width: 240px;
position: fixed;
top: 0;
left: -280px;
bottom: 0;
background-color: #FFF;
will-change: transform;
contain: layout style;
display: flex;
transition: transform ease-out 60ms;
transition: transform ease-out 60ms, left ease-out 300ms;
z-index: 1099;
}
.touch-menu-la.open {
box-shadow: 2px 0 12px rgba(0, 0, 0, 0.4);
}
.touch-menu-la.transition {
/*transition: transform 0.3s ease-out;*/
transition: -webkit-transform ease-out 280ms;
transition: transform ease-out 280ms;
transition: -webkit-transform ease-out 280ms, left ease-out 300ms;
transition: transform ease-out 280ms, left ease-out 300ms;
/*transition: -webkit-transform ease-in-out 0.3s, width ease-in-out 0.3s, visibility 0.3s;
transition: transform ease-in-out 0.3s, width ease-in-out 0.3s, visibility 0.3s;*/
}