menu.css 619 B

123456789101112131415161718192021222324252627
  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.MenuRenderer.
  9. *
  10. * @author attila@google.com (Attila Bodis)
  11. */
  12. .goog-menu {
  13. background: #fff;
  14. border-color: #ccc #666 #666 #ccc;
  15. border-style: solid;
  16. border-width: 1px;
  17. cursor: default;
  18. font: normal 13px Arial, sans-serif;
  19. margin: 0;
  20. outline: none;
  21. padding: 4px 0;
  22. position: absolute;
  23. z-index: 20000; /* Arbitrary, but some apps depend on it... */
  24. }