| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html i18n-values="dir:textdirection"> | 2 <html i18n-values="dir:textdirection"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> |
| 4 <link rel="stylesheet" href="dialog.css"> | 5 <link rel="stylesheet" href="dialog.css"> |
| 5 <style> | 6 <style> |
| 6 body { | 7 body { |
| 7 -webkit-user-select: none; | 8 -webkit-user-select: none; |
| 8 margin: 10px 10px 0 10px; | 9 margin: 10px 10px 0 10px; |
| 9 } | 10 } |
| 10 | 11 |
| 11 form { | 12 form { |
| 12 margin: 0; | 13 margin: 0; |
| 13 } | 14 } |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 67 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| 67 <div id="explanation" i18n-content="message"></div> | 68 <div id="explanation" i18n-content="message"></div> |
| 68 <form id="form"> | 69 <form id="form"> |
| 69 <div id="buttons"> | 70 <div id="buttons"> |
| 70 <input id="cancel" type="reset" i18n-values="value:cancel" autofocus> | 71 <input id="cancel" type="reset" i18n-values="value:cancel" autofocus> |
| 71 <input id="accept" type="submit" i18n-values="value:accept"> | 72 <input id="accept" type="submit" i18n-values="value:accept"> |
| 72 </div> | 73 </div> |
| 73 </form> | 74 </form> |
| 74 </body> | 75 </body> |
| 75 </html> | 76 </html> |
| OLD | NEW |