ieFix.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Licensed to Jasig under one or more contributor license
  3. * agreements. See the NOTICE file distributed with this work
  4. * for additional information regarding copyright ownership.
  5. * Jasig licenses this file to you under the Apache License,
  6. * Version 2.0 (the "License"); you may not use this file
  7. * except in compliance with the License. You may obtain a
  8. * copy of the License at the following location:
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. /* IE Pick-a-boo bug fix */
  20. form {height: expression('1%');}
  21. /* Fixes Display: Block issue in IE5.5 and 6x */
  22. div,
  23. form,
  24. fieldset,
  25. #navlist li a,
  26. td a {height:1px;}
  27. /* Fixes IE problem with fieldset+legend boundaries */
  28. fieldset {position: expression('relative');}
  29. legend {
  30. position: expression('absolute');
  31. top: expression('-9px'); /* Fixes IE problem with fieldset+legend boundaries */
  32. }
  33. /* double float margin bug */
  34. form,
  35. #navcontainer {display:inline;}
  36. /* button width fix */
  37. button {
  38. overflow:visible;
  39. width:1px;
  40. padding-left:0.5em;
  41. padding-right:0.5em;
  42. font-size:1.1em;
  43. }
  44. /* miscellaneous */
  45. input {margin-left:0;}
  46. ol li {line-height:1.0;}
  47. input.check {width:13px; height:13px;}
  48. span a {display:inline-block;}
  49. label.top {margin-left:0;}
  50. label.ieFix {margin-top:.5em;}
  51. fieldset fieldset {padding-bottom:0;}