1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/frontend/app/ui/gallery/lightbox/lightbox.gallery.component.css

44 lines
1002 B
CSS
Raw Normal View History

2016-04-30 18:33:07 +02:00
.lightbox {
position: fixed; /* Stay in place */
z-index: 1100; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: hidden;
cursor: pointer;
2016-12-30 11:58:04 +01:00
}
2018-05-03 19:17:08 -04:00
app-gallery-lightbox-photo {
overflow: hidden;
2016-04-30 18:33:07 +02:00
}
.blackCanvas {
position: fixed; /* Stay in place */
z-index: 1099; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
background-color: black;
transition: all 0.3s ease-in-out;
2018-05-13 16:59:57 -04:00
-o-transition: all 0.3s ease-in-out;
2018-05-15 21:30:41 -04:00
-ms-transition: all 0.3s ease-in-out;
2018-05-13 16:59:57 -04:00
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
2016-04-30 18:33:07 +02:00
}
2016-05-12 23:00:38 +02:00
2018-05-03 19:17:08 -04:00
app-info-panel {
z-index: 1100; /* Sit on top */
position: fixed;
height: 100vh;
2018-05-13 22:10:56 -04:00
max-width: 100vw;
right: 0;
2017-07-10 22:00:22 +02:00
top: 0;
transition: all 0.3s ease-in-out;
2018-05-13 16:59:57 -04:00
-o-transition: all 0.3s ease-in-out;
2018-05-15 21:30:41 -04:00
-ms-transition: all 0.3s ease-in-out;
2018-05-13 16:59:57 -04:00
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
}