submenu.css 712 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright 2009 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. /*
  8. * Standard styling for menus created by goog.ui.SubMenuRenderer.
  9. *
  10. * @author attila@google.com (Attila Bodis)
  11. */
  12. /* State: resting. */
  13. /* @noflip */
  14. .goog-submenu-arrow {
  15. color: #000;
  16. left: auto;
  17. padding-right: 6px;
  18. position: absolute;
  19. right: 0;
  20. text-align: right;
  21. }
  22. /* BiDi override. */
  23. /* @noflip */
  24. .goog-menuitem-rtl .goog-submenu-arrow {
  25. text-align: left;
  26. left: 0;
  27. right: auto;
  28. padding-left: 6px;
  29. }
  30. /* State: disabled. */
  31. .goog-menuitem-disabled .goog-submenu-arrow {
  32. color: #ccc;
  33. }