Updated Pure to 0.6, added pagination, don't think I broke anything...
This commit is contained in:
33
lib/pure/menus-scrollable.css
Executable file
33
lib/pure/menus-scrollable.css
Executable file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
Pure v0.6.0
|
||||
Copyright 2014 Yahoo! Inc. All rights reserved.
|
||||
Licensed under the BSD License.
|
||||
https://github.com/yahoo/pure/blob/master/LICENSE.md
|
||||
*/
|
||||
/* scrollable menus */
|
||||
.pure-menu-scrollable {
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.pure-menu-scrollable .pure-menu-list {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.pure-menu-horizontal.pure-menu-scrollable .pure-menu-list {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.pure-menu-horizontal.pure-menu-scrollable {
|
||||
white-space: nowrap;
|
||||
overflow-y: hidden;
|
||||
overflow-x: auto;
|
||||
-ms-overflow-style: none;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
/* a little extra padding for this style to allow for scrollbars */
|
||||
padding: .5em 0;
|
||||
}
|
||||
|
||||
.pure-menu-horizontal.pure-menu-scrollable::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
Reference in New Issue
Block a user