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

Side by Side Diff: netlog_viewer/import_view.html

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge Created 4 years, 5 months 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
« no previous file with comments | « netlog_viewer/http_cache_view.js ('k') | netlog_viewer/import_view.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <style>
2 #import-view-command-line,
3 #import-view-user-comments {
4 /* Wrap long lines inside of PREs */
5 white-space: pre-wrap;
6 }
7
8 #import-view-load-status-text {
9 /* Wrap long lines inside of PREs */
10 white-space: pre-wrap;
11 }
12
13 .import-view-pending-log {
14 color: blue;
15 font-weight: bold;
16 }
17
18 .import-view-success-log {
19 color: green;
20 font-weight: bold;
21 }
22
23 .import-view-error-log {
24 color: #e00;
25 padding: 5px;
26 border: 1px solid #e00;
27 }
28
29 .import-view-warning-log {
30 color: #e00;
31 }
32
33 </style>
34
35 <div id=import-view-tab-content class=content-box>
36 <div>
37 <div style='margin-bottom:20px'><b>TIP</b>: Drag-and-drop files into this wi ndow.</div>
38 <input type=file value="Load log from file" id=import-view-load-log-file>< /input>
39 <pre id=import-view-load-status-text></pre>
40 </div>
41
42 <div id=import-view-loaded-div style="display: none">
43 <h2>Data Loaded</h2>
44 <table class=styled-table>
45 <tr>
46 <th>Export date</th>
47 <td id=import-view-numericDate></td>
48 </tr>
49 <tr>
50 <th>Build</th>
51 <td><span id=import-view-name></span>
52 <span id=import-view-version></span>
53 (<span id=import-view-official></span>
54 <span id=import-view-cl></span>)
55 <span id=import-view-version-mod>
56 </td>
57 </tr>
58 <tr>
59 <th>OS info</th>
60 <td id=import-view-os-type></td>
61 </tr>
62 <tr>
63 <th>Command line</th>
64 <td><pre id=import-view-command-line></pre></td>
65 </tr>
66 <tr>
67 <th>Active Field Trial Groups</th>
68 <td>
69 <span id=import-view-activeFieldTrialGroups></span>
70 </td>
71 </tr>
72 <tr>
73 <th>User comments</th>
74 <td>
75 <pre id=import-view-user-comments></pre>
76 </td>
77 </tr>
78 </table>
79 </div>
80 </div>
OLDNEW
« no previous file with comments | « netlog_viewer/http_cache_view.js ('k') | netlog_viewer/import_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698