| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <style> |
| 5 body { |
| 6 background-color: rgb(252, 235, 162); |
| 7 margin: 0; |
| 8 text-align: center; |
| 9 font-family: sans-serif; |
| 10 } |
| 11 |
| 12 #outer { |
| 13 width: 100%; |
| 14 height: 100%; |
| 15 cursor: pointer; |
| 16 position: absolute; |
| 17 } |
| 18 |
| 19 #inner { |
| 20 position: relative; |
| 21 top: 50%; |
| 22 margin-top: -50px; |
| 23 } |
| 24 |
| 25 #top, #bottom, #left, #right { |
| 26 background: black; |
| 27 position: fixed; |
| 28 } |
| 29 #left, #right { |
| 30 top: 0; bottom: 0; |
| 31 width: 1px; |
| 32 } |
| 33 #left { left: 0; } |
| 34 #right { right: 0; } |
| 35 |
| 36 #top, #bottom { |
| 37 left: 0; right: 0; |
| 38 height: 1px; |
| 39 } |
| 40 #top { top: 0; } |
| 41 #bottom { bottom: 0; } |
| 42 </style> |
| 43 </head> |
| 44 |
| 45 <body id="t"> |
| 46 <div id="outer" onclick="plugin.load()"> |
| 47 <div id="left"></div> |
| 48 <div id="right"></div> |
| 49 <div id="top"></div> |
| 50 <div id="bottom"></div> |
| 51 <div id="inner"> |
| 52 <div><img src="../../app/theme/extensions_section.png" /></div> |
| 53 <p i18n-content="loadPlugin">LOAD_PLUGIN</p> |
| 54 </div> |
| 55 </div> |
| 56 </body> |
| 57 </html> |
| OLD | NEW |