OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="popup.js"></script> | 3 <script src="popup.js"></script> |
4 <style> | 4 <style> |
5 body { | 5 body { |
6 overflow: hidden; | 6 overflow: hidden; |
7 margin: 0px; | 7 margin: 0px; |
8 padding: 0px; | 8 padding: 0px; |
9 background: white; | 9 background: white; |
10 } | 10 } |
11 | 11 |
12 div:first-child { | 12 div:first-child { |
13 margin-top: 0px; | 13 margin-top: 0px; |
14 } | 14 } |
15 | 15 |
16 div, td { | 16 div, td { |
17 padding: 1px 3px; | 17 padding: 1px 3px; |
18 font-family: sans-serif; | 18 font-family: sans-serif; |
19 font-size: 10pt; | 19 font-size: 10pt; |
20 margin-top: 1px; | 20 margin-top: 1px; |
| 21 white-space: nowrap; |
21 } | 22 } |
22 </style> | 23 </style> |
23 </head> | 24 </head> |
24 <body> | 25 <body> |
25 <div id="title"><b>Process Monitor</b></div> | 26 <div id="title"><b>Process Monitor</b></div> |
26 <div id="process-list"><i>Loading...</i></div> | 27 <div id="process-list"><i>Loading...</i></div> |
27 <div id="buttons"> | 28 <div id="buttons"> |
28 <input type="button" value="End Process" id="killProcess" /> | 29 <input type="button" value="End Process" id="killProcess" /> |
29 </div> | 30 </div> |
30 </div> | 31 </div> |
31 </body> | 32 </body> |
32 </html> | 33 </html> |
OLD | NEW |