Updated Pure to 0.6, added pagination, don't think I broke anything...

This commit is contained in:
2015-02-26 12:44:21 -05:00
parent 73c7c17219
commit 05bf1f9682
55 changed files with 2459 additions and 3388 deletions

View File

@@ -1,8 +1,8 @@
/*!
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
*/
.pure-table {
/* Remove spacing between table cells (from Normalize.css) */
@@ -28,13 +28,16 @@ https://github.com/yui/pure/blob/master/LICENSE.md
overflow: visible; /*to make ths where the title is really long work*/
padding: 0.5em 1em; /* cell padding */
}
/* Consider removing this next declaration block, as it causes problems when
there's a rowspan on the first cell. Case added to the tests. issue#432 */
.pure-table td:first-child,
.pure-table th:first-child {
border-left-width: 0;
}
.pure-table thead {
background: #e0e0e0;
background-color: #e0e0e0;
color: #000;
text-align: left;
vertical-align: bottom;
@@ -61,8 +64,7 @@ striping:
.pure-table-bordered td {
border-bottom: 1px solid #cbcbcb;
}
.pure-table-bordered tbody > tr:last-child td,
.pure-table-horizontal tbody > tr:last-child td {
.pure-table-bordered tbody > tr:last-child > td {
border-bottom-width: 0;
}
@@ -74,6 +76,6 @@ striping:
border-width: 0 0 1px 0;
border-bottom: 1px solid #cbcbcb;
}
.pure-table-horizontal tbody > tr:last-child td {
.pure-table-horizontal tbody > tr:last-child > td {
border-bottom-width: 0;
}