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