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

53 lines
1.3 KiB
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;
2018-10-23 01:13:23 +03:00
}
.touch-menu-la {
2020-01-19 14:40:08 +01:00
background-color: #fff;
2018-10-23 01:13:23 +03:00
will-change: transform;
2020-01-09 19:35:19 +01:00
display: -webkit-box;
display: -webkit-flex;
2018-10-23 01:13:23 +03:00
display: flex;
2020-01-09 19:35:19 +01:00
-webkit-transition: -webkit-transform ease-out 40ms, left ease-out 260ms;
-o-transition: transform ease-out 40ms, left ease-out 260ms;
2018-10-23 01:13:23 +03:00
transition: transform ease-out 40ms, left ease-out 260ms;
z-index: 1099;
2018-10-23 01:13:23 +03:00
}
.touch-menu-la.transition {
2020-01-09 19:35:19 +01:00
-webkit-transition: -webkit-transform ease-out 240ms, left ease-out 260ms;
-o-transition: transform ease-out 240ms, left ease-out 260ms;
transition: transform ease-out 240ms, left ease-out 260ms;
2018-10-23 01:13:23 +03:00
}
.drawer-open {
2020-01-22 21:40:45 +01:00
-webkit-box-shadow: 2px 0 12px rgba(0, 0, 0, 0.4);
box-shadow: 2px 0 12px rgba(0, 0, 0, 0.4);
2018-10-23 01:13:23 +03:00
}
.scrollContainer {
2020-01-09 19:35:19 +01:00
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
flex-grow: 1;
2018-10-23 01:13:23 +03:00
}
.tmla-mask {
left: 0;
right: 0;
opacity: 0;
z-index: 1098;
2020-01-22 21:40:45 +01:00
-webkit-transition: opacity ease-in-out 0.38s, visibility ease-in-out 0.38s;
-o-transition: opacity ease-in-out 0.38s, visibility ease-in-out 0.38s;
transition: opacity ease-in-out 0.38s, visibility ease-in-out 0.38s;
2018-10-23 01:13:23 +03:00
will-change: opacity;
2020-01-19 15:00:37 +01:00
background-color: rgba(0, 0, 0, 0.3);
2018-10-23 01:13:23 +03:00
}
.tmla-mask.backdrop {
opacity: 1;
}