IE70Fixes.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* 7.0 - only fixes */
  2. /* content area */
  3. /* workaround for various ie float bugs */
  4. /* This bit is needed to make links clickable... WTF */
  5. div#column-content div#content {
  6. margin-left: 12.2em;
  7. margin-top: 3em;
  8. height: 1%;
  9. }
  10. .rtl div#column-content div#content {
  11. margin-right: 12.2em;
  12. margin-left: 0;
  13. }
  14. .rtl div#column-one {
  15. /* For some reason it tries to inherit the padding-top into every div,
  16. * and I can't figure out how to get it back off.
  17. * Margin works correctly for this use, though.
  18. */
  19. padding-top: 0;
  20. margin-top: 160px;
  21. }
  22. /* These elements also have padding-left: 20px; in main.css, but in RTL mode this is flipped.
  23. * That's good in normal browsers, but in IE7 it needs to not be flipped for some daft reason.
  24. * Also clear the right margin (originally margin-left: 1em)
  25. */
  26. li#pt-userpage, li#pt-anonuserpage, li#pt-login {
  27. padding-left: 20px;
  28. margin-right: 0;
  29. }
  30. .rtl a.feedlink {
  31. background-position: right;
  32. padding-right: 0;
  33. padding-left: 16px;
  34. }
  35. /* the tabs */
  36. #p-cactions {
  37. z-index: 3;
  38. }
  39. #p-cactions li {
  40. padding-bottom: 0 !important;
  41. border: none;
  42. background-color: transparent;
  43. cursor: default;
  44. float: none !important;
  45. }
  46. #p-cactions li a {
  47. display: inline-block !important;
  48. vertical-align: top;
  49. padding-bottom: 0;
  50. border: solid #aaa;
  51. border-width: 1px 1px 0;
  52. }
  53. #p-cactions li.selected a {
  54. border-color: #fabd23;
  55. padding-bottom: 0.17em;
  56. }
  57. #p-cactions li a:hover {
  58. padding-bottom: 0.17em;
  59. }
  60. #p-navigation a {
  61. display: inline-block;
  62. width: 100%;
  63. }
  64. #portal-personaltools {
  65. padding-bottom: 0.1em;
  66. }
  67. textarea {
  68. width: 96%;
  69. }
  70. /*
  71. #catlinks,
  72. div.tright,
  73. div.tleft {
  74. position: relative;
  75. }
  76. */
  77. div#footer li {
  78. /* Work around bug with inline <li> tags with right margins and nowrap */
  79. margin-right: 0;
  80. }