Updated Pure to 0.6, added pagination, don't think I broke anything...
This commit is contained in:
@@ -1,142 +1,43 @@
|
||||
/*!
|
||||
Pure v0.5.0
|
||||
Pure v0.6.0
|
||||
Copyright 2014 Yahoo! Inc. All rights reserved.
|
||||
Licensed under the BSD License.
|
||||
https://github.com/yui/pure/blob/master/LICENSE.md
|
||||
https://github.com/yahoo/pure/blob/master/LICENSE.md
|
||||
*/
|
||||
/*csslint adjoining-classes:false, outline-none:false*/
|
||||
/*TODO: Remove this lint rule override after a refactor of this code.*/
|
||||
|
||||
.pure-menu ul {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
/*csslint adjoining-classes: false, box-model:false*/
|
||||
.pure-menu {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.pure-menu.pure-menu-open {
|
||||
visibility: visible;
|
||||
z-index: 2;
|
||||
width: 100%;
|
||||
.pure-menu-fixed {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.pure-menu ul {
|
||||
left: -10000px;
|
||||
.pure-menu-list,
|
||||
.pure-menu-item {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.pure-menu-list {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
top: -10000px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.pure-menu > ul { position: relative; }
|
||||
|
||||
.pure-menu-open > ul {
|
||||
left: 0;
|
||||
top: 0;
|
||||
visibility: visible;
|
||||
.pure-menu-item {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.pure-menu-open > ul:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
.pure-menu li { position: relative; }
|
||||
|
||||
.pure-menu a,
|
||||
.pure-menu .pure-menu-heading {
|
||||
.pure-menu-link,
|
||||
.pure-menu-heading {
|
||||
display: block;
|
||||
color: inherit;
|
||||
line-height: 1.5em;
|
||||
padding: 5px 20px;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.pure-menu.pure-menu-horizontal > .pure-menu-heading {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
margin: 0;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.pure-menu.pure-menu-horizontal > ul {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.pure-menu li a { padding: 5px 20px; }
|
||||
|
||||
.pure-menu-can-have-children > .pure-menu-label:after {
|
||||
content: '\25B8';
|
||||
float: right;
|
||||
/* These specific fonts have the Unicode char we need. */
|
||||
font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'DejaVu Sans', sans-serif;
|
||||
margin-right: -20px;
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
.pure-menu-can-have-children > .pure-menu-label {
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
.pure-menu-separator {
|
||||
background-color: #dfdfdf;
|
||||
display: block;
|
||||
height: 1px;
|
||||
font-size: 0;
|
||||
margin: 7px 2px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.pure-menu-hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* FIXED MENU */
|
||||
.pure-menu-fixed {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
/* HORIZONTAL MENU CODE */
|
||||
|
||||
/* Initial menus should be inline-block so that they are horizontal */
|
||||
.pure-menu-horizontal li {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* Submenus should still be display: block; */
|
||||
.pure-menu-horizontal li li {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Content after should be down arrow */
|
||||
.pure-menu-horizontal > .pure-menu-children > .pure-menu-can-have-children > .pure-menu-label:after {
|
||||
content: "\25BE";
|
||||
}
|
||||
/*Add extra padding to elements that have the arrow so that the hover looks nice */
|
||||
.pure-menu-horizontal > .pure-menu-children > .pure-menu-can-have-children > .pure-menu-label {
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
/* Adjusting separator for vertical menus */
|
||||
.pure-menu-horizontal li.pure-menu-separator {
|
||||
height: 50%;
|
||||
width: 1px;
|
||||
margin: 0 7px;
|
||||
}
|
||||
|
||||
/* Submenus should be horizontal separator again */
|
||||
.pure-menu-horizontal li li.pure-menu-separator {
|
||||
height: 1px;
|
||||
width: auto;
|
||||
margin: 7px 2px;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user