OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 body | |
6 { | |
7 background-color: #f8f6f2; | |
8 font-family: Arial, sans; | |
9 font-size: 12px; | |
10 /* Notifications are not resized dynamically so we need to make it as bi
g as possible */ | |
11 height: 144px; | |
12 } | |
13 | |
14 #notification | |
15 { | |
16 position: absolute; | |
17 top: 5px; | |
18 left: 65px; | |
19 } | |
20 | |
21 #notification>h1 | |
22 { | |
23 font-size: 16px; | |
24 } | |
25 | |
26 #notification>* | |
27 { | |
28 margin: 5px; | |
29 } | |
30 </style> | |
31 <script src="i18n.js"></script> | |
32 <script src="notification.js"></script> | |
33 </head> | |
34 <body> | |
35 <img src="icons/abp-48.png"> | |
36 <div id="notification"> | |
37 <h1 id="notification-title"></h1> | |
38 <p id="notification-message"></p> | |
39 <div id="notification-question"> | |
40 <button id="notification-yes" class="i18n_overlay_notification_button_ye
s"></button> | |
41 <button id="notification-no" class="i18n_overlay_notification_button_no"
></button> | |
42 <a id="notification-close" href="#" class="i18n_overlay_notification_but
ton_close"></a> | |
43 </div> | |
44 </div> | |
45 </body> | |
46 </html> | |
OLD | NEW |