2012-10-23 04:06:56 +02:00
|
|
|
/**
|
|
|
|
* @provides lightbox-attachment-css
|
|
|
|
*/
|
|
|
|
|
2012-10-23 21:00:37 +02:00
|
|
|
|
2012-10-23 04:06:56 +02:00
|
|
|
.lightbox-attached {
|
2012-10-23 21:00:37 +02:00
|
|
|
overflow: hidden;
|
2012-10-23 04:06:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox-attachment {
|
|
|
|
position: fixed;
|
2012-10-23 21:00:37 +02:00
|
|
|
top: 0;
|
2012-10-23 04:06:56 +02:00
|
|
|
left: 0;
|
2012-10-23 21:00:37 +02:00
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
overflow-y: auto;
|
2012-10-23 04:06:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox-attachment img {
|
2016-11-12 16:37:16 +01:00
|
|
|
max-width: calc(100% - 44px);
|
|
|
|
max-height: calc(100% - 44px);
|
|
|
|
position: absolute;
|
|
|
|
top: 44px;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.jx-mask + .lightbox-attachment {
|
|
|
|
background: {$lightgreybackground};
|
2012-10-23 04:06:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox-attachment .loading {
|
|
|
|
position: absolute;
|
|
|
|
top: -9999px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox-attachment .attachment-name {
|
|
|
|
width: 100%;
|
|
|
|
line-height: 30px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox-attachment .lightbox-status {
|
2016-11-12 16:37:16 +01:00
|
|
|
background: #fff;
|
2012-10-23 04:06:56 +02:00
|
|
|
position: fixed;
|
2016-11-12 16:37:16 +01:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 44px;
|
|
|
|
padding: 0 20px;
|
|
|
|
line-height: 44px;
|
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
2012-10-23 04:06:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox-attachment .lightbox-status .lightbox-download {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox-attachment .lightbox-status .lightbox-download
|
2016-11-12 16:37:16 +01:00
|
|
|
.lightbox-download-form {
|
|
|
|
display: inline;
|
2012-10-23 04:06:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox-attachment .lightbox-close {
|
2016-11-12 16:37:16 +01:00
|
|
|
float: right;
|
|
|
|
margin: 9px 0 0px 8px;
|
2012-10-23 04:06:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox-attachment .lightbox-left {
|
|
|
|
top: 46%;
|
2016-11-12 16:37:16 +01:00
|
|
|
left: 12px;
|
2012-10-23 04:06:56 +02:00
|
|
|
position: fixed;
|
|
|
|
display: block;
|
2016-11-12 16:37:16 +01:00
|
|
|
height: 40px;
|
|
|
|
width: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox-attachment .lightbox-left .phui-icon-view {
|
|
|
|
font-size: 40px;
|
2012-10-23 04:06:56 +02:00
|
|
|
}
|
2016-11-12 16:37:16 +01:00
|
|
|
|
|
|
|
.lightbox-attachment .lightbox-left:hover .phui-icon-view {
|
|
|
|
color: {$sky};
|
2012-10-23 04:06:56 +02:00
|
|
|
}
|
|
|
|
|
2016-11-12 16:37:16 +01:00
|
|
|
.lightbox-attachment .lightbox-right .phui-icon-view {
|
2012-10-23 04:06:56 +02:00
|
|
|
top: 46%;
|
2016-11-12 16:37:16 +01:00
|
|
|
right: 12px;
|
2012-10-23 04:06:56 +02:00
|
|
|
position: fixed;
|
|
|
|
display: block;
|
|
|
|
height: 38px;
|
|
|
|
width: 21px;
|
|
|
|
}
|
2016-11-12 16:37:16 +01:00
|
|
|
|
|
|
|
.lightbox-attachment .lightbox-right .phui-icon-view {
|
|
|
|
font-size: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox-attachment .lightbox-right:hover .phui-icon-view {
|
|
|
|
color: {$sky};
|
2012-10-23 04:06:56 +02:00
|
|
|
}
|