1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/ui/gallery/lightbox/lightbox.gallery.component.css

44 lines
1002 B
CSS
Raw Normal View History

2016-05-01 00:33:07 +08: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 18:58:04 +08:00
}
2018-05-04 07:17:08 +08:00
app-gallery-lightbox-photo {
overflow: hidden;
2016-05-01 00:33:07 +08: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-14 04:59:57 +08:00
-o-transition: all 0.3s ease-in-out;
2018-05-16 09:30:41 +08:00
-ms-transition: all 0.3s ease-in-out;
2018-05-14 04:59:57 +08:00
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
2016-05-01 00:33:07 +08:00
}
2016-05-13 05:00:38 +08:00
2018-05-04 07:17:08 +08:00
app-info-panel {
z-index: 1100; /* Sit on top */
position: fixed;
height: 100vh;
2018-05-14 10:10:56 +08:00
max-width: 100vw;
right: 0;
2017-07-11 04:00:22 +08:00
top: 0;
transition: all 0.3s ease-in-out;
2018-05-14 04:59:57 +08:00
-o-transition: all 0.3s ease-in-out;
2018-05-16 09:30:41 +08:00
-ms-transition: all 0.3s ease-in-out;
2018-05-14 04:59:57 +08:00
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
}