fix-ie-rtl.css

body {
  /* Center layout */
  text-align: center;
}

#squeeze {
  zoom: 1;
  direction: ltr;
}

#squeeze .left-corner {
  direction: rtl
}

#header-region,
#wrapper #container {
  /* Reset text alignment */
  text-align: right;
}

#wrapper #container #center {
  /* Reduce amount of damage done by extremely wide content */
  overflow: hidden;
}

#wrapper #container #center .right-corner .left-corner {
  /* Because of the lack of min-height, we use height as an alternative */
  height: 400px;
}

fieldset {
  /* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
  background: none;
}

/* Prevent fieldsets from shifting when changing collapsed state. */
html.js fieldset.collapsible {
  top: -1em;
}

html.js fieldset.collapsed {
  top: 0;
  margin-bottom: 1em;
}

tr.menu-disabled {
  /* Use filter to emulate CSS3 opacity */
  filter: alpha(opacity=50);
}

#header-region {
  /* Because of the lack of min-height, we use height as an alternative */
  height: 1em;
}

#attach-hide label,
#uploadprogress div.message {
  /* Fading elements in IE causes the text to bleed unless they have a background. */
  background-color: #ffffff;
}

File

drupal/themes/garland/fix-ie-rtl.css
View source
  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. }