fix-ie-rtl.css

body {
  /* Center layout */
  text-align: center;
  /* Allow text resizing */
  font-size: 80%;
}

#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 {
  position: relative;
  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;
}

Archivo

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