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.

33 lines
770 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. /* scrollable menus */
  8. .pure-menu-scrollable {
  9. overflow-y: scroll;
  10. overflow-x: hidden;
  11. }
  12. .pure-menu-scrollable .pure-menu-list {
  13. display: block;
  14. }
  15. .pure-menu-horizontal.pure-menu-scrollable .pure-menu-list {
  16. display: inline-block;
  17. }
  18. .pure-menu-horizontal.pure-menu-scrollable {
  19. white-space: nowrap;
  20. overflow-y: hidden;
  21. overflow-x: auto;
  22. -ms-overflow-style: none;
  23. -webkit-overflow-scrolling: touch;
  24. /* a little extra padding for this style to allow for scrollbars */
  25. padding: .5em 0;
  26. }
  27. .pure-menu-horizontal.pure-menu-scrollable::-webkit-scrollbar {
  28. display: none;
  29. }