tabbar.css 886 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright 2008 The Closure Library Authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by the Apache License, Version 2.0.
  5. * See the COPYING file for details.
  6. */
  7. /* Author: attila@google.com (Attila Bodis) */
  8. /* Author: eae@google.com (Emil A. Eklund) */
  9. /*
  10. * Styles used by goog.ui.TabBarRenderer.
  11. */
  12. .goog-tab-bar {
  13. margin: 0;
  14. border: 0;
  15. padding: 0;
  16. list-style: none;
  17. cursor: default;
  18. outline: none;
  19. background: #ebeff9;
  20. }
  21. .goog-tab-bar-clear {
  22. clear: both;
  23. height: 0;
  24. overflow: hidden;
  25. }
  26. .goog-tab-bar-start {
  27. float: left;
  28. }
  29. .goog-tab-bar-end {
  30. float: right;
  31. }
  32. /*
  33. * IE6-only hacks to fix the gap between the floated tabs and the content.
  34. * IE7 and later will ignore these.
  35. */
  36. /* @if user.agent ie6 */
  37. * html .goog-tab-bar-start {
  38. margin-right: -3px;
  39. }
  40. * html .goog-tab-bar-end {
  41. margin-left: -3px;
  42. }
  43. /* @endif */