Chromium Code Reviews| 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 { | |
|
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 {
-
| |
| 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 |