1 /* jqModal base Styling courtesy of;
2 Brice Burgess <bhb@iceburg.net> */
4 /* The Window's CSS z-index value is respected (takes priority). If none is supplied,
5 the Window's z-index value will be set to 3000 by default (in jqModal.js). You
6 can change this value by either;
7 a) supplying one via CSS
8 b) passing the "zIndex" parameter. E.g. (window).jqm({zIndex: 500}); */
20 background-color: #EEE;
22 border: 1px solid black
;
26 .jqmOverlay { background-color: #000; }
28 /* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
29 * iframe
.jqm
{position:absolute
;top:0;left:0;z-index:-1;
30 width: expression
(this
.parentNode
.offsetWidth
+'px');
31 height: expression
(this
.parentNode
.offsetHeight
+'px');
34 /* Fixed posistioning emulation for IE6
35 Star selector used to hide definition from browsers other than IE6
36 For valid CSS, use a conditional include instead */
39 top: expression
((document
.documentElement
.scrollTop || document
.body
.scrollTop
) + Math
.round
(17 * (document
.documentElement
.offsetHeight || document
.body
.clientHeight
) / 100) + 'px');