You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
949 B

9 years ago
  1. /*!
  2. Pure v0.6.0
  3. Copyright 2014 Yahoo! Inc. All rights reserved.
  4. Licensed under the BSD License.
  5. https://github.com/yahoo/pure/blob/master/LICENSE.md
  6. */
  7. /* Submenus should still be display: block; */
  8. .pure-menu-item .pure-menu-item {
  9. display: block;
  10. }
  11. .pure-menu-children {
  12. display: none;
  13. position: absolute;
  14. left: 100%;
  15. top: 0;
  16. margin: 0;
  17. padding: 0;
  18. z-index: 3;
  19. }
  20. .pure-menu-horizontal .pure-menu-children {
  21. left: 0;
  22. top: auto;
  23. width: inherit;
  24. }
  25. .pure-menu-allow-hover:hover > .pure-menu-children,
  26. .pure-menu-active > .pure-menu-children {
  27. display: block;
  28. position: absolute;
  29. }
  30. /* Vertical Menus - show the dropdown arrow */
  31. .pure-menu-has-children > .pure-menu-link:after {
  32. padding-left: 0.5em;
  33. content: "\25B8";
  34. font-size: small;
  35. }
  36. /* Horizontal Menus - show the dropdown arrow */
  37. .pure-menu-horizontal .pure-menu-has-children > .pure-menu-link:after {
  38. content: "\25BE";
  39. }