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

42 lines
751 B
CSS
Raw Normal View History

2018-10-23 01:13:23 +03:00
.tmla-mask,
.touch-menu-la {
position: fixed;
top: 0;
bottom: 0;
contain: strict
}
.touch-menu-la {
background-color: #FFF;
will-change: transform;
display: flex;
transition: transform ease-out 40ms, left ease-out 260ms;
z-index: 1099
}
.touch-menu-la.transition {
transition: transform ease-out 240ms, left ease-out 260ms
}
.drawer-open {
box-shadow: 2px 0 12px rgba(0, 0, 0, .4)
}
.scrollContainer {
flex-grow: 1
}
.tmla-mask {
left: 0;
right: 0;
background-color: #000;
opacity: 0;
z-index: 1098;
transition: opacity ease-in-out .38s, visibility ease-in-out .38s;
will-change: opacity;
background-color: rgba(0, 0, 0, .3)
}
.tmla-mask.backdrop {
opacity: 1
}