1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/libraries/navdrawer/navdrawer.scss
edvwib d58f2e8ec4 Enable Stylelint rules for vendor prefixes
This commit also removes a bunch of vendor prefixes that were in the styles
but are no longer needed since PostCSS and Autoprefixer handles generating
them.
2022-12-20 23:49:26 +01:00

52 lines
998 B
SCSS

.tmla-mask,
.touch-menu-la {
position: fixed;
top: 0;
bottom: 0;
contain: strict;
box-sizing: border-box;
padding-left: env(safe-area-inset-left);
}
.touch-menu-la {
background-color: #fff;
will-change: transform;
display: flex;
transition: transform ease-out 40ms, left ease-out 260ms;
[div="rtl"] & {
transition: transform ease-out 40ms, right ease-out 260ms;
}
z-index: 1099;
}
.touch-menu-la.transition {
transition: transform ease-out 240ms, left ease-out 260ms;
[div="rtl"] & {
transition: transform ease-out 240ms, right ease-out 260ms;
}
}
.drawer-open {
box-shadow: 2px 0 12px rgba(0, 0, 0, 0.4);
}
.scrollContainer {
flex-grow: 1;
}
.tmla-mask {
left: 0;
right: 0;
opacity: 0;
z-index: 1098;
transition: opacity ease-in-out 0.38s, visibility ease-in-out 0.38s;
will-change: opacity;
background-color: rgba(0, 0, 0, 0.3);
}
.tmla-mask.backdrop {
opacity: 1;
}