Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(622)

Side by Side Diff: chrome/browser/resources/sync_internals/events.html

Issue 53153010: Introduce a button to toggle hiding/showing of the details in the events tab. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For review. Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/sync_internals/events.js » ('j') | chrome/browser/resources/sync_internals/events.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698