5d37b21adc3dfe28703827d22a7d2e4c559697f3
[atutor.git] / mods / ldap / jscripts / jqgrid / themes / jqModal.css
1 /* jqModal base Styling courtesy of;\r
2         Brice Burgess <bhb@iceburg.net> */\r
3 \r
4 /* The Window's CSS z-index value is respected (takes priority). If none is supplied,\r
5         the Window's z-index value will be set to 3000 by default (in jqModal.js). You\r
6         can change this value by either;\r
7           a) supplying one via CSS\r
8           b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */\r
9         \r
10 .jqmWindow {\r
11     display: none;\r
12     \r
13     position: fixed;\r
14     width: 600px;\r
15 }\r
16 \r
17 .jqmOverlay { background-color: #000; }\r
18 \r
19 /* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */\r
20 * iframe.jqm {position:absolute;top:0;left:0;z-index:-1;\r
21         width: expression(this.parentNode.offsetWidth+'px');\r
22         height: expression(this.parentNode.offsetHeight+'px');\r
23 }\r
24 \r
25 /* Fixed posistioning emulation for IE6\r
26      Star selector used to hide definition from browsers other than IE6\r
27      For valid CSS, use a conditional include instead */\r
28 * html .jqmWindow {\r
29      position: absolute;\r
30      top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');\r
31 }