jquery.tabs-ie.css 541 B

1234567891011121314151617181920
  1. /*
  2. Tabs - additional IE specific bug fixes
  3. Recommended usage (Conditional Comments):
  4. <!--[if lte IE 7]>
  5. <link rel="stylesheet" href="tabs_ie.css" type="text/css" media="projection, screen" />
  6. <![endif]-->
  7. */
  8. .tabs-nav { /* auto clear */
  9. display: inline-block;
  10. }
  11. .tabs-nav .tabs-disabled {
  12. position: relative; /* fixes opacity */
  13. filter: alpha(opacity=40);
  14. }
  15. .tabs-nav .tabs-disabled a span {
  16. _height: 19px; /* for some reason the height is 1px to less with opacity... */
  17. min-height: 19px; /* ...in both IE 6 and 7 */
  18. }