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; |
11 } | 11 } |
12 | 12 |
13 .import-view-pending-log { | 13 .import-view-pending-log { |
14 font-family: sans-serif; | |
15 color: blue; | 14 color: blue; |
16 font-weight: bold; | 15 font-weight: bold; |
17 } | 16 } |
18 | 17 |
19 .import-view-success-log { | 18 .import-view-success-log { |
20 font-family: sans-serif; | |
21 color: green; | 19 color: green; |
22 font-weight: bold; | 20 font-weight: bold; |
23 } | 21 } |
24 | 22 |
25 .import-view-error-log { | 23 .import-view-error-log { |
26 color: red; | 24 color: red; |
27 padding: 5px; | 25 padding: 5px; |
28 border: 1px solid red; | 26 border: 1px solid red; |
29 } | 27 } |
30 | 28 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 </div> | 61 </div> |
64 <div> | 62 <div> |
65 <h2>Load data</h2> | 63 <h2>Load data</h2> |
66 <p><input type=file value="Load log from file" id=import-view-load-log-file
/></p> | 64 <p><input type=file value="Load log from file" id=import-view-load-log-file
/></p> |
67 <ul> | 65 <ul> |
68 <li><b>TIP</b>: Try drag-and-drop into this window!</li> | 66 <li><b>TIP</b>: Try drag-and-drop into this window!</li> |
69 </ul> | 67 </ul> |
70 <pre id=import-view-load-status-text></pre> | 68 <pre id=import-view-load-status-text></pre> |
71 </div> | 69 </div> |
72 </div> | 70 </div> |
OLD | NEW |