| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE HTML> | |
| 2 <html> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <script src="tracking.js"></script> | |
| 6 <script src="chrome://resources/js/util.js"></script> | |
| 7 | |
| 8 <style> | |
| 9 | |
| 10 body { | |
| 11 font-family: sans-serif; | |
| 12 font-size: 80%; | |
| 13 } | |
| 14 | |
| 15 /* | |
| 16 * The following styles are for a TABLE that uses a thin collapsed border, and | |
| 17 * has a blue heading. When you hover over rows, they turn yellow. | |
| 18 */ | |
| 19 table.results-table { | |
| 20 border-collapse:collapse; | |
| 21 } | |
| 22 | |
| 23 table.results-table, | |
| 24 .results-table th, | |
| 25 .results-table td { | |
| 26 border: 1px solid #777; | |
| 27 padding-right: 4px; | |
| 28 padding-left: 4px; | |
| 29 } | |
| 30 | |
| 31 .results-table th { | |
| 32 background: rgb(224,236,255); | |
| 33 } | |
| 34 | |
| 35 .results-table tbody tr:hover { | |
| 36 background-color:#ffb; | |
| 37 } | |
| 38 | |
| 39 /* | |
| 40 * Make the column headers change the mouse to a "hand" cursor, sine they are | |
| 41 * clickable. | |
| 42 */ | |
| 43 .results-table th { | |
| 44 cursor: pointer; | |
| 45 } | |
| 46 | |
| 47 /* | |
| 48 * This is row which displays aggregate totals for each column. | |
| 49 */ | |
| 50 .results-table .aggregator-row { | |
| 51 background: #FFCC99; | |
| 52 } | |
| 53 | |
| 54 /*---------------------------------------------------------------------------*/ | |
| 55 | |
| 56 /* | |
| 57 * When grouping data, the table for each bucket is wrapped in a DIV with this | |
| 58 * class. Used to add a bit of spacing between groups. | |
| 59 */ | |
| 60 .group-container { | |
| 61 margin-top: 2ex; | |
| 62 margin-bottom: 2ex; | |
| 63 } | |
| 64 | |
| 65 /* | |
| 66 * The title for each group is enclosed in a DIV of the following class. | |
| 67 */ | |
| 68 .group-title-container { | |
| 69 font-size: 140%; | |
| 70 margin-bottom: 1ex; | |
| 71 } | |
| 72 | |
| 73 /* Pseudo-link which toggles display of columns checkboxes */ | |
| 74 #edit-columns-link { | |
| 75 color: blue; | |
| 76 cursor: pointer; | |
| 77 text-decoration: underline; | |
| 78 } | |
| 79 | |
| 80 </style> | |
| 81 </head> | |
| 82 <body> | |
| 83 <table width=100%> | |
| 84 <tr> | |
| 85 <td> | |
| 86 <b>Group by: </b> <span id=group-by-container></span> | |
| 87 <b>Sort by: </b> <span id=sort-by-container></span> | |
| 88 </td> | |
| 89 <td align=right> | |
| 90 <a id=edit-columns-link>[Edit columns]</a> | |
| 91 <input type='search' incremental id='filter-search' /> | |
| 92 </td> | |
| 93 </tr> | |
| 94 <tr id=edit-columns-row style='display:none'> | |
| 95 <td colspan=2> | |
| 96 <div> | |
| 97 <b>Merge: </b><span id=column-merge-toggles-container></span> | |
| 98 <input type=checkbox id='merge-similar-threads-checkbox' checked/> | |
| 99 Merge similar threads. | |
| 100 </div> | |
| 101 <div> | |
| 102 <b>Show: </b><span id=column-toggles-container></span> | |
| 103 </div> | |
| 104 </td> | |
| 105 </tr> | |
| 106 </table> | |
| 107 | |
| 108 <hr/> | |
| 109 | |
| 110 <div id='results-div'></div> | |
| 111 </body> | |
| 112 </html> | |
| OLD | NEW |