fix-ie-rtl.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. body {
  2. /* Center layout */
  3. text-align: center;
  4. }
  5. #squeeze {
  6. zoom: 1;
  7. direction: ltr;
  8. }
  9. #squeeze .left-corner {
  10. direction: rtl
  11. }
  12. #header-region,
  13. #wrapper #container {
  14. /* Reset text alignment */
  15. text-align: right;
  16. }
  17. #wrapper #container #center {
  18. /* Reduce amount of damage done by extremely wide content */
  19. overflow: hidden;
  20. }
  21. #wrapper #container #center .right-corner .left-corner {
  22. /* Because of the lack of min-height, we use height as an alternative */
  23. height: 400px;
  24. }
  25. fieldset {
  26. /* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
  27. background: none;
  28. }
  29. /* Prevent fieldsets from shifting when changing collapsed state. */
  30. html.js fieldset.collapsible {
  31. top: -1em;
  32. }
  33. html.js fieldset.collapsed {
  34. top: 0;
  35. margin-bottom: 1em;
  36. }
  37. tr.menu-disabled {
  38. /* Use filter to emulate CSS3 opacity */
  39. filter: alpha(opacity=50);
  40. }
  41. #header-region {
  42. /* Because of the lack of min-height, we use height as an alternative */
  43. height: 1em;
  44. }
  45. #attach-hide label,
  46. #uploadprogress div.message {
  47. /* Fading elements in IE causes the text to bleed unless they have a background. */
  48. background-color: #ffffff;
  49. }