You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

window.css 574B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .i-window {
  2. border: 1px solid #999;
  3. /* mac FF fix for scrollbar see thru */
  4. position: absolute;
  5. }
  6. .i-window-header {
  7. background: yellow;
  8. height:20px;
  9. overflow: hidden;
  10. }
  11. .i-window-footer {
  12. background: #0f0;
  13. height:2px;
  14. }
  15. .i-window-contents {
  16. overflow:auto;
  17. background: #fff;
  18. }
  19. .i-window-resizebox {
  20. position:absolute;
  21. bottom:0;
  22. right:0;
  23. background: black;
  24. width: 5px;
  25. height: 5px;
  26. float:right;
  27. /* IE 6 hack */
  28. overflow: auto;
  29. }
  30. .i-window-closebox {
  31. position:absolute;
  32. top:0;
  33. right:0;
  34. background: red;
  35. width: 15px;
  36. height: 15px;
  37. float:right;
  38. }