OLD | NEW |
1 <style> | 1 <style> |
2 #import-view-command-line, | 2 #import-view-command-line, |
3 #import-view-user-comments { | 3 #import-view-user-comments { |
4 /* Wrap long lines inside of PREs */ | 4 /* Wrap long lines inside of PREs */ |
5 white-space: pre-wrap; | 5 white-space: pre-wrap; |
6 } | 6 } |
7 | 7 |
8 #import-view-load-status-text { | 8 #import-view-load-status-text { |
9 /* Wrap long lines inside of PREs */ | 9 /* Wrap long lines inside of PREs */ |
10 white-space: pre-wrap; | 10 white-space: pre-wrap; |
(...skipping 16 matching lines...) Expand all Loading... |
27 padding: 5px; | 27 padding: 5px; |
28 border: 1px solid red; | 28 border: 1px solid red; |
29 } | 29 } |
30 | 30 |
31 .import-view-warning-log { | 31 .import-view-warning-log { |
32 color: red; | 32 color: red; |
33 } | 33 } |
34 | 34 |
35 </style> | 35 </style> |
36 | 36 |
37 <div id=import-view-tab-content> | 37 <div id=import-view-tab-content class=content-box> |
38 | 38 |
39 <div id=import-view-loaded-div style="display: none"> | 39 <div id=import-view-loaded-div style="display: none"> |
40 <h2>Data Loaded</h2> | 40 <h2>Data Loaded</h2> |
41 <table class=styledTable> | 41 <table class=styled-table> |
42 <tr> | 42 <tr> |
43 <th>Export date</th> | 43 <th>Export date</th> |
44 <td id=import-view-export-date></td> | 44 <td id=import-view-export-date></td> |
45 </tr> | 45 </tr> |
46 <tr> | 46 <tr> |
47 <th>Build</th> | 47 <th>Build</th> |
48 <td id=import-view-build-name></td> | 48 <td id=import-view-build-name></td> |
49 </tr> | 49 </tr> |
50 <tr> | 50 <tr> |
51 <th>OS type</th> | 51 <th>OS type</th> |
(...skipping 11 matching lines...) Expand all Loading... |
63 </div> | 63 </div> |
64 <div> | 64 <div> |
65 <h2>Load data</h2> | 65 <h2>Load data</h2> |
66 <p><input type=file value="Load log from file" id=import-view-load-log-file
/></p> | 66 <p><input type=file value="Load log from file" id=import-view-load-log-file
/></p> |
67 <ul> | 67 <ul> |
68 <li><b>TIP</b>: Try drag-and-drop into this window!</li> | 68 <li><b>TIP</b>: Try drag-and-drop into this window!</li> |
69 </ul> | 69 </ul> |
70 <pre id=import-view-load-status-text></pre> | 70 <pre id=import-view-load-status-text></pre> |
71 </div> | 71 </div> |
72 </div> | 72 </div> |
OLD | NEW |