fix-ie.css

/**
 * Garland, for Drupal 6.x
 * Stefan Nagtegaal, iStyledThis [dot] nl
 * Steven Wittens, acko [dot] net
 */

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

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

#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;
}

ul.primary {
  /* Fix missing top margin */
  position: relative; /* LTR */
/*  top: 0.5em; */
}

/* 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;
}

tr.taxonomy-term-preview {
  filter: alpha(opacity=50);
}

#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.css
View source
  1. /**
  2. * Garland, for Drupal 6.x
  3. * Stefan Nagtegaal, iStyledThis [dot] nl
  4. * Steven Wittens, acko [dot] net
  5. */
  6. body {
  7. /* Center layout */
  8. text-align: center;
  9. /* Allow text resizing */
  10. font-size: 80%;
  11. }
  12. #header-region, #wrapper #container {
  13. /* Reset text alignment */
  14. text-align: left; /* LTR */
  15. }
  16. #wrapper #container #center {
  17. /* Reduce amount of damage done by extremely wide content */
  18. overflow: hidden;
  19. }
  20. #wrapper #container #center .right-corner .left-corner {
  21. /* Because of the lack of min-height, we use height as an alternative */
  22. height: 400px;
  23. }
  24. fieldset {
  25. /* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
  26. background: none;
  27. }
  28. ul.primary {
  29. /* Fix missing top margin */
  30. position: relative; /* LTR */
  31. /* top: 0.5em; */
  32. }
  33. /* Prevent fieldsets from shifting when changing collapsed state. */
  34. html.js fieldset.collapsible {
  35. position: relative;
  36. top: -1em;
  37. }
  38. html.js fieldset.collapsed {
  39. top: 0;
  40. margin-bottom: 1em;
  41. }
  42. tr.menu-disabled {
  43. /* Use filter to emulate CSS3 opacity */
  44. filter: alpha(opacity=50);
  45. }
  46. #header-region {
  47. /* Because of the lack of min-height, we use height as an alternative */
  48. height: 1em;
  49. }
  50. tr.taxonomy-term-preview {
  51. filter: alpha(opacity=50);
  52. }
  53. #attach-hide label, #uploadprogress div.message {
  54. /* Fading elements in IE causes the text to bleed unless they have a background. */
  55. background-color: #ffffff;
  56. }