Chromium Code Reviews| Index: chrome/browser/resources/cleanup_tool/cleanup.html |
| diff --git a/chrome/browser/resources/cleanup_tool/cleanup.html b/chrome/browser/resources/cleanup_tool/cleanup.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fa900acf06e369b6fa92d26274e5e4eca3dc50fd |
| --- /dev/null |
| +++ b/chrome/browser/resources/cleanup_tool/cleanup.html |
| @@ -0,0 +1,36 @@ |
| +<!doctype html> |
| +<html dir="$i18n{textdirection}" lang="$i18n{language}"> |
| +<head> |
| + <meta name="google" value="notranslate"> |
| + <meta charset="utf-8"> |
| + <title>$i18n{title}</title> |
| + <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| + <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> |
| + |
| + <style> |
| + html { |
| + background: var(--md-background-color); |
| + } |
| + |
| + body { |
| + margin: 0; |
| + } |
| + |
| + :root { |
|
Dan Beam
2017/04/04 17:40:57
fwiw: :root and html are probably equivalent here
proberge
2017/04/04 19:08:33
There's no uses of --my_css_rule: foo within html
Dan Beam
2017/04/04 19:53:37
https://developer.mozilla.org/en-US/docs/Web/CSS/:
proberge
2017/04/04 20:48:16
I'm sorry, my comment was a bit unclear. I wasn't
Dan Beam
2017/04/04 21:07:14
you obviously didn't want to do this:
:root {
-
|
| + --cleanup-card-margin: 25px; |
| + --cleanup-card-width: 800px; |
| + } |
| + </style> |
| +</head> |
| + |
| +<body> |
| + <cleanup-tool-toolbar></cleanup-tool-toolbar> |
| + <cleanup-manager></cleanup-manager> |
| + <link rel="import" href="chrome://resources/html/cr.html"> |
| + <link rel="import" href="chrome://resources/html/load_time_data.html"> |
| + <link rel="import" href="chrome://resources/html/polymer.html"> |
| + <link rel="import" href="chrome://cleanup/toolbar.html"> |
| + <script src="strings.js"></script> |
| +</body> |
| + |
| +</html> |