| 1 | /* sort indicator in column headings */
 | 
| 2 | .sortArrow {
 | 
| 3 |   color: grey;
 | 
| 4 | }
 | 
| 5 | 
 | 
| 6 | thead {
 | 
| 7 |   font-weight: bold;
 | 
| 8 |   color: #444;
 | 
| 9 | }
 | 
| 10 | 
 | 
| 11 | table {
 | 
| 12 |   padding: 10px;  /* Padding makes it look nicer. */
 | 
| 13 |   border-collapse: collapse;  /* this is like old cellpadding */
 | 
| 14 |   font-family: sans-serif;
 | 
| 15 | }
 | 
| 16 | 
 | 
| 17 | /* like cellspacing? */
 | 
| 18 | td {
 | 
| 19 |   padding: 5px;
 | 
| 20 | }
 | 
| 21 | 
 | 
| 22 | /* Built-in support for R NA values */
 | 
| 23 | .na {
 | 
| 24 |   color: darkred;
 | 
| 25 | }
 | 
| 26 | 
 | 
| 27 | .num {
 | 
| 28 |   text-align: right;
 | 
| 29 | }
 | 
| 30 | 
 | 
| 31 | .timestamp {
 | 
| 32 |   text-align: right;
 | 
| 33 | }
 | 
| 34 | 
 | 
| 35 | .highlight {
 | 
| 36 |   background-color: #f0f0f0;
 | 
| 37 | }
 | 
| 38 | 
 | 
| 39 | tbody tr:hover {
 | 
| 40 |   background-color: lightcyan;
 | 
| 41 | }
 | 
| 42 | 
 | 
| 43 | 
 |