| OLD | NEW |
| (Empty) | |
| 1 <!doctype html> |
| 2 <html dir="${textdirection}" lang="${language}"> |
| 3 <head> |
| 4 <meta name="google" value="notranslate"> |
| 5 <meta charset="utf-8"> |
| 6 <title>${title}</title> |
| 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> |
| 9 <script src="chrome://resources/js/load_time_data.js"></script> |
| 10 <script src="strings.js"></script> |
| 11 |
| 12 <style> |
| 13 html { |
| 14 background: var(--md-background-color); |
| 15 } |
| 16 |
| 17 body { |
| 18 margin: 0; |
| 19 } |
| 20 |
| 21 :root { |
| 22 --cleanup-card-margin: 25px; |
| 23 --cleanup-card-width: 800px; |
| 24 } |
| 25 </style> |
| 26 </head> |
| 27 |
| 28 <body> |
| 29 <cleanup-tool-toolbar></cleanup-tool-toolbar> |
| 30 <cleanup-manager></cleanup-manager> |
| 31 <link rel="import" href="chrome://resources/html/cr.html"> |
| 32 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 33 <link rel="import" href="chrome://cleanup-tool/icons.html"> |
| 34 <link rel="import" href="chrome://cleanup-tool/manager.html"> |
| 35 <link rel="import" href="chrome://cleanup-tool/toolbar.html"> |
| 36 </body> |
| 37 |
| 38 <script src="chrome://resources/js/i18n_template.js"></script> |
| 39 </html> |
| OLD | NEW |