/usr/share/coquelicot/public/stylesheets/lightbox-fu-ie6.css is in coquelicot 0.9.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | #lightboxfu {
display: none;
}
#lOverlay {
background: none;
-ieh: expression(
this.parsed ? 0 : (
img = document.createElement('div'),
img.id = 'ov',
this.parentNode.insertBefore(img, this),
this.parsed = 1
)
)
}
#lOverlay, #ov {
position: absolute;
top: 0;
left: 0;
width: expression(document.documentElement.clientWidth + 'px');
height: expression(document.documentElement.clientHeight + 'px');
top: expression(
offset = 0 + parseInt(document.body.currentStyle.paddingTop) + parseInt(document.body.currentStyle.marginTop),
document.documentElement.scrollTop + offset + 'px'
);
}
#ov {
background-color: #000;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
}
#lOverlay #lWindow {
position: absolute;
top: 50%;
}
#lOverlay #lInner {
position: relative;
top: -50%;
height: expression(this.scrollHeight > 350 ? '350px' : 'auto' );
}
|