Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.5 KiB

  1. @charset "UTF-8";
  2. /**
  3. * "Yet Another Multicolumn Layout" - (X)HTML/CSS framework
  4. * (en) IE patch stylesheet
  5. * (de) IE-Anpassungs-Stylesheet
  6. *
  7. * @creator YAML Builder V1.2b (http://builder.yaml.de)
  8. * @file patch_my_layout.css
  9. * @-yaml-minver 3.1
  10. */
  11. /* Layout independent adjustments | Layout-unabhängige Anpassungen */
  12. @import url(../../yaml/core/iehacks.css);
  13. /* Layout-dependent adjustments | Layout-abhängige Anpassungen */
  14. @media screen, projection
  15. {
  16. /**
  17. * Bugfix for IE 3-Pixel-Jog Bug
  18. *
  19. * @bugfix
  20. * @affected IE 5.x/Win, IE6
  21. * @css-for IE 5.x/Win, IE6
  22. * @valid yes
  23. */
  24. * html #col3 {height: 1%}
  25. * html #col1 {margin-right: -3px}
  26. * html #col3 {margin-left: 24%}
  27. /**
  28. * min-width/max-width workaround for IE
  29. *
  30. * @workaround
  31. * @affected IE 5.x/Win, IE6
  32. * @css-for IE 5.x/Win, IE6
  33. * @valid no
  34. */
  35. * html .page_margins {
  36. /* Fallback if JavaScript is disabled */
  37. width: auto;
  38. /* JS-Expression for min-/max-width simulation */
  39. width: expression((document.documentElement && document.documentElement.clientHeight) ? ((document.documentElement.clientWidth < 740) ? "740px" : ((document.documentElement.clientWidth > (90 * 16 * (parseInt(this.parentNode.currentStyle.fontSize) / 100))) ? "90em" : "auto" )) : ((document.body.clientWidth < 740) ? "740px" : ((document.body.clientWidth > (90 * 16 * (parseInt(this.parentNode.currentStyle.fontSize) / 100))) ? "90em" : "auto" )));
  40. }
  41. }