| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script> | 4 <script> |
| 5 function debug(msg) { | 5 function debug(msg) { |
| 6 document.getElementById('debug').textContent = msg; | 6 document.getElementById('debug').textContent = msg; |
| 7 } | 7 } |
| 8 function setMessage(msg) { | 8 function setMessage(msg) { |
| 9 document.getElementById('message').textContent = msg; | 9 document.getElementById('message').textContent = msg; |
| 10 } | 10 } |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 } | 53 } |
| 54 | 54 |
| 55 #close { | 55 #close { |
| 56 visibility: hidden; | 56 visibility: hidden; |
| 57 cursor: pointer; | 57 cursor: pointer; |
| 58 position: absolute; | 58 position: absolute; |
| 59 right: 3px; | 59 right: 3px; |
| 60 top: 3px; | 60 top: 3px; |
| 61 height: 14px; | 61 height: 14px; |
| 62 width: 14px; | 62 width: 14px; |
| 63 background-image: url("../../app/theme/close_bar.png"); | 63 background-image: url("../../../ui/resources/close_bar.png"); |
| 64 background-position: right top; | 64 background-position: right top; |
| 65 background-repeat: no-repeat; | 65 background-repeat: no-repeat; |
| 66 } | 66 } |
| 67 | 67 |
| 68 #close:hover { | 68 #close:hover { |
| 69 background-image: url("../../app/theme/close_bar_h.png"); | 69 background-image: url("../../../ui/resources/close_bar_h.png"); |
| 70 } | 70 } |
| 71 | 71 |
| 72 #close:active { | 72 #close:active { |
| 73 background-image: url("../../app/theme/close_bar_p.png"); | 73 background-image: url("../../../ui/resources/close_bar_p.png"); |
| 74 } | 74 } |
| 75 </style> | 75 </style> |
| 76 </head> | 76 </head> |
| 77 | 77 |
| 78 <body id="t" onSelectStart="return false;"> | 78 <body id="t" onSelectStart="return false;"> |
| 79 <div i18n-values="title:name" id="outer"> | 79 <div i18n-values="title:name" id="outer"> |
| 80 <div id="inner"> | 80 <div id="inner"> |
| 81 <div><img id="plugin_icon" src="plugin_blocked.png" /></div> | 81 <div><img id="plugin_icon" src="plugin_blocked.png" /></div> |
| 82 <h1 id="message" i18n-content="message"></h1> | 82 <h1 id="message" i18n-content="message"></h1> |
| 83 <p id="debug"> </p> | 83 <p id="debug"> </p> |
| 84 </div> | 84 </div> |
| 85 <div id="close" i18n-values="title:hide" onclick="plugin.hide();" /> | 85 <div id="close" i18n-values="title:hide" onclick="plugin.hide();" /> |
| 86 </div> | 86 </div> |
| 87 </body> | 87 </body> |
| 88 </html> | 88 </html> |
| OLD | NEW |