jqModal.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* jqModal base Styling courtesy of;
  2. Brice Burgess <bhb@iceburg.net> */
  3. /* The Window's CSS z-index value is respected (takes priority). If none is supplied,
  4. the Window's z-index value will be set to 3000 by default (via jqModal.js). */
  5. .jqmWindow {
  6. display: none;
  7. position: fixed;
  8. no.top: 17%;
  9. no.left: 50%;
  10. no.margin-left: -300px;
  11. no.width: 700px;
  12. background-color: #EEE;
  13. color: #333;
  14. border: 1px solid black;
  15. padding: 12px;
  16. z-index:9999;
  17. }
  18. .jqmOverlay { background-color: #000; }
  19. /* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
  20. * iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
  21. width: expression(this.parentNode.offsetWidth+'px');
  22. height: expression(this.parentNode.offsetHeight+'px');
  23. }
  24. /* Fixed posistioning emulation for IE6
  25. Star selector used to hide definition from browsers other than IE6
  26. For valid CSS, use a conditional include instead */
  27. * html .jqmWindow {
  28. position: absolute;
  29. top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
  30. }