ie.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* IE 6 & 7 */
  2. /* Proper fixed width for dashboard in IE6 */
  3. .dashboard #content {
  4. *width: 768px;
  5. }
  6. .dashboard #content-main {
  7. *width: 535px;
  8. }
  9. /* IE 6 ONLY */
  10. /* Keep header from flowing off the page */
  11. #container {
  12. _position: static;
  13. }
  14. /* Put the right sidebars back on the page */
  15. .colMS #content-related {
  16. _margin-right: 0;
  17. _margin-left: 10px;
  18. _position: static;
  19. }
  20. /* Put the left sidebars back on the page */
  21. .colSM #content-related {
  22. _margin-right: 10px;
  23. _margin-left: -115px;
  24. _position: static;
  25. }
  26. .form-row {
  27. _height: 1%;
  28. }
  29. /* Fix right margin for changelist filters in IE6 */
  30. #changelist-filter ul {
  31. _margin-right: -10px;
  32. }
  33. /* IE ignores min-height, but treats height as if it were min-height */
  34. .change-list .filtered {
  35. _height: 400px;
  36. }
  37. /* IE doesn't know alpha transparency in PNGs */
  38. .inline-deletelink {
  39. background: transparent url(../img/inline-delete-8bit.png) no-repeat;
  40. }
  41. /* IE7 doesn't support inline-block */
  42. .change-list ul.toplinks li {
  43. zoom: 1;
  44. *display: inline;
  45. }