| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html i18n-values="dir:textdirection;lang:language"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
| 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 7 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> |
| 7 <style> | 8 <style> |
| 8 html { | 9 html { |
| 9 background: rgb(236, 239, 241); | 10 background: var(--md-background-color); |
| 10 } | 11 } |
| 11 | 12 |
| 12 html, | 13 html, |
| 13 body { | 14 body { |
| 14 height: 100%; | 15 height: 100%; |
| 15 } | 16 } |
| 16 | 17 |
| 17 body { | 18 body { |
| 18 display: flex; | 19 display: flex; |
| 19 margin: 0; | 20 margin: 0; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 34 <link rel="import" href="chrome://resources/html/polymer.html"> | 35 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 35 <link rel="import" href="chrome://downloads/i18n_setup.html"> | 36 <link rel="import" href="chrome://downloads/i18n_setup.html"> |
| 36 <link rel="import" href="chrome://downloads/manager.html"> | 37 <link rel="import" href="chrome://downloads/manager.html"> |
| 37 <!-- i18n_template.html actually does i18n-* attribute substitutions. | 38 <!-- i18n_template.html actually does i18n-* attribute substitutions. |
| 38 It should be imported last and only once. TODO(dbeam): figure out a good | 39 It should be imported last and only once. TODO(dbeam): figure out a good |
| 39 solution for each individual element to do this as well. --> | 40 solution for each individual element to do this as well. --> |
| 40 <link rel="import" href="chrome://resources/html/i18n_template.html"> | 41 <link rel="import" href="chrome://resources/html/i18n_template.html"> |
| 41 <script src="chrome://downloads/downloads.js"></script> | 42 <script src="chrome://downloads/downloads.js"></script> |
| 42 </body> | 43 </body> |
| 43 </html> | 44 </html> |
| OLD | NEW |