OLD | NEW |
1 <style> | 1 <style> |
2 #sync-events-table, | 2 #sync-events-table, |
3 #sync-events-table th, | 3 #sync-events-table th, |
4 #sync-events-table td { | 4 #sync-events-table td { |
5 border: 1px black solid; | 5 border: 1px black solid; |
6 } | 6 } |
7 | 7 |
8 #sync-events-table { | 8 #sync-events-table { |
9 width: 100%; | 9 width: 100%; |
10 } | 10 } |
11 | 11 |
12 #sync-events > tr { | 12 #sync-events > tr { |
13 vertical-align: top; | 13 vertical-align: top; |
14 } | 14 } |
| 15 |
| 16 .hidden { |
| 17 display: none; |
| 18 } |
15 </style> | 19 </style> |
16 | 20 |
17 <table id="sync-events-table"> | 21 <table id="sync-events-table"> |
18 <thead> | 22 <thead> |
19 <th>Time</th> | 23 <th>Time</th> |
20 <th>Submodule</th> | 24 <th>Submodule</th> |
21 <th>Event</th> | 25 <th>Event</th> |
22 <th>Details</th> | 26 <th>Details</th> |
23 </thead> | 27 </thead> |
24 <tbody id="sync-events"> | 28 <tbody id="sync-events"> |
25 </tbody> | 29 </tbody> |
26 </table> | 30 </table> |
27 | 31 |
28 <script src="chrome://sync-internals/events.js"></script> | 32 <script src="chrome://sync-internals/events.js"></script> |
OLD | NEW |