added numeral js package for Matrix's zend patient validation module
[openemr.git] / public / assets / pure-0-5-0 / tables.css
blob886e68955bdbcdd9df3a59a16cdd66f8780c5b70
1 /*!
2 Pure v0.5.0
3 Copyright 2014 Yahoo! Inc. All rights reserved.
4 Licensed under the BSD License.
5 https://github.com/yui/pure/blob/master/LICENSE.md
6 */
7 .pure-table {
8 /* Remove spacing between table cells (from Normalize.css) */
9 border-collapse: collapse;
10 border-spacing: 0;
11 empty-cells: show;
12 border: 1px solid #cbcbcb;
15 .pure-table caption {
16 color: #000;
17 font: italic 85%/1 arial, sans-serif;
18 padding: 1em 0;
19 text-align: center;
22 .pure-table td,
23 .pure-table th {
24 border-left: 1px solid #cbcbcb;/* inner column border */
25 border-width: 0 0 0 1px;
26 font-size: inherit;
27 margin: 0;
28 overflow: visible; /*to make ths where the title is really long work*/
29 padding: 0.5em 1em; /* cell padding */
31 .pure-table td:first-child,
32 .pure-table th:first-child {
33 border-left-width: 0;
36 .pure-table thead {
37 background: #e0e0e0;
38 color: #000;
39 text-align: left;
40 vertical-align: bottom;
44 striping:
45 even - #fff (white)
46 odd - #f2f2f2 (light gray)
48 .pure-table td {
49 background-color: transparent;
51 .pure-table-odd td {
52 background-color: #f2f2f2;
55 /* nth-child selector for modern browsers */
56 .pure-table-striped tr:nth-child(2n-1) td {
57 background-color: #f2f2f2;
60 /* BORDERED TABLES */
61 .pure-table-bordered td {
62 border-bottom: 1px solid #cbcbcb;
64 .pure-table-bordered tbody > tr:last-child td,
65 .pure-table-horizontal tbody > tr:last-child td {
66 border-bottom-width: 0;
70 /* HORIZONTAL BORDERED TABLES */
72 .pure-table-horizontal td,
73 .pure-table-horizontal th {
74 border-width: 0 0 1px 0;
75 border-bottom: 1px solid #cbcbcb;
77 .pure-table-horizontal tbody > tr:last-child td {
78 border-bottom-width: 0;