| 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 .import-view-warning-log { | 29 .import-view-warning-log { |
| 30 color: #e00; | 30 color: #e00; |
| 31 } | 31 } |
| 32 | 32 |
| 33 </style> | 33 </style> |
| 34 | 34 |
| 35 <div id=import-view-tab-content class=content-box> | 35 <div id=import-view-tab-content class=content-box> |
| 36 <div> | 36 <div> |
| 37 <div style='margin-bottom:20px'><b>TIP</b>: Drag-and-drop files into this wi
ndow.</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></i
nput> | 38 <input type=file value="Load log from file" id=import-view-load-log-file acc
ept=".json"></input> |
| 39 <pre id=import-view-load-status-text></pre> | 39 <pre id=import-view-load-status-text></pre> |
| 40 </div> | 40 </div> |
| 41 | 41 |
| 42 <div id=import-view-loaded-div style="display: none"> | 42 <div id=import-view-loaded-div style="display: none"> |
| 43 <h2>Data Loaded</h2> | 43 <h2>Data Loaded</h2> |
| 44 <table class=styled-table> | 44 <table class=styled-table> |
| 45 <tr> | 45 <tr> |
| 46 <th>Export date</th> | 46 <th>Export date</th> |
| 47 <td jscontent="timeutil.dateToString(new Date(constants.clientInfo.numeric
Date))"></td> | 47 <td jscontent="timeutil.dateToString(new Date(constants.clientInfo.numeric
Date))"></td> |
| 48 </tr> | 48 </tr> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 72 <tr> | 72 <tr> |
| 73 <th>User comments</th> | 73 <th>User comments</th> |
| 74 <td> | 74 <td> |
| 75 <pre id=import-view-user-comments jscontent="userComments" | 75 <pre id=import-view-user-comments jscontent="userComments" |
| 76 jsdisplay="typeof userComments != 'undefined'"></pre> | 76 jsdisplay="typeof userComments != 'undefined'"></pre> |
| 77 </td> | 77 </td> |
| 78 </tr> | 78 </tr> |
| 79 </table> | 79 </table> |
| 80 </div> | 80 </div> |
| 81 </div> | 81 </div> |
| OLD | NEW |