mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
64 lines
1.1 KiB
Plaintext
Executable file
64 lines
1.1 KiB
Plaintext
Executable file
/*!
|
|
* Lightbox for Bootstrap 3 by @ashleydw
|
|
* https://github.com/ashleydw/lightbox
|
|
*
|
|
* License: https://github.com/ashleydw/lightbox/blob/master/LICENSE
|
|
*/
|
|
|
|
.ekko-lightbox {
|
|
&-container {
|
|
position:relative;
|
|
}
|
|
|
|
&-nav-overlay {
|
|
z-index:100;
|
|
position: absolute;
|
|
top:0;
|
|
left:0;
|
|
width:100%;
|
|
height:100%;
|
|
|
|
a {
|
|
opacity: 0;
|
|
-webkit-transition: opacity 0.5s;
|
|
-moz-transition: opacity 0.5s;
|
|
-o-transition: opacity 0.5s;
|
|
transition: opacity 0.5s;
|
|
color:#fff;
|
|
font-size:30px;
|
|
height: 100%;
|
|
width:49%;
|
|
display:block;
|
|
text-shadow: 2px 2px 4px #000;
|
|
filter: dropshadow(color=#000, offx=2, offy=2);
|
|
z-index:100;
|
|
|
|
&:empty {
|
|
width:49%;
|
|
}
|
|
}
|
|
}
|
|
|
|
a:hover {
|
|
opacity: 1;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.glyphicon-chevron-left {
|
|
padding-left:15px;
|
|
float:left;
|
|
left:0;
|
|
text-align: left;
|
|
}
|
|
|
|
.glyphicon-chevron-right {
|
|
padding-right:15px;
|
|
float:right;
|
|
right:0;
|
|
text-align: right;
|
|
}
|
|
|
|
.modal-footer {
|
|
text-align: left;
|
|
}
|
|
} |