Disable CssAbsoluteFilter

This commit is contained in:
Raphael Michel
2017-05-24 10:08:59 +02:00
parent 5cea3d824a
commit 24b1d2afcb
3 changed files with 9 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
/* Preload images */
body:after {
content: url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);
content: url(static('lightbox/images/close.png')) url(static('lightbox/images/loading.gif')) url(static('lightbox/images/prev.png')) url(static('lightbox/images/next.png'));
display: none;
}
@@ -79,7 +79,7 @@ body:after {
width: 32px;
height: 32px;
margin: 0 auto;
background: url(../images/loading.gif) no-repeat;
background: url(static('lightbox/images/loading.gif')) no-repeat;
}
.lb-nav {
@@ -110,7 +110,7 @@ body:after {
width: 34%;
left: 0;
float: left;
background: url(../images/prev.png) left 48% no-repeat;
background: url(static('lightbox/images/prev.png')) left 48% no-repeat;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
-webkit-transition: opacity 0.6s;
@@ -128,7 +128,7 @@ body:after {
width: 64%;
right: 0;
float: right;
background: url(../images/next.png) right 48% no-repeat;
background: url(static('lightbox/images/next.png')) right 48% no-repeat;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
-webkit-transition: opacity 0.6s;
@@ -192,7 +192,7 @@ body:after {
float: right;
width: 30px;
height: 30px;
background: url(../images/close.png) top right no-repeat;
background: url(static('lightbox/images/close.png')) top right no-repeat;
text-align: right;
outline: none;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);