Chromium Code Reviews| 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="utf8"> | 4 <meta charset="utf8"> |
| 5 <title>$i18n{title}</title> | 5 <title>$i18n{title}</title> |
| 6 | 6 |
| 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 8 | 8 |
| 9 <style> | 9 <style> |
| 10 html, | 10 html, |
| 11 body { | 11 body { |
| 12 height: 100%; | 12 height: 100%; |
| 13 margin: 0; | 13 margin: 0; |
| 14 } | 14 } |
| 15 | 15 |
| 16 body { | 16 body { |
| 17 background: #f2f2f2; | 17 background: rgb(236, 239, 241); |
|
Dan Beam
2016/03/30 01:47:33
if you wanted to be super duper awesome, you could
calamity
2016/03/31 03:57:37
Hmm. How? Do we have native CSS custom property su
Dan Beam
2016/03/31 04:30:21
i trust you'll figure it out:
https://code.google.
| |
| 18 display: flex; | 18 display: flex; |
| 19 flex-direction: column; | 19 flex-direction: column; |
| 20 min-width: 800px; | 20 min-width: 800px; |
| 21 } | 21 } |
| 22 | 22 |
| 23 #toolbar { | 23 #toolbar { |
| 24 flex: 0 0 56px; | 24 flex: 0 0 56px; |
| 25 } | 25 } |
| 26 | 26 |
| 27 #history-list { | 27 #history-list { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 66 | 66 |
| 67 <!-- | 67 <!-- |
| 68 Prepare strings and perform i18n substitutions. | 68 Prepare strings and perform i18n substitutions. |
| 69 TODO(tsergeant): Remove once we are fully converted to | 69 TODO(tsergeant): Remove once we are fully converted to |
| 70 ReplaceTemplateExpressions. It is currently only used for the <html> tag. | 70 ReplaceTemplateExpressions. It is currently only used for the <html> tag. |
| 71 --> | 71 --> |
| 72 <link rel="import" href="chrome://resources/html/i18n_template.html"> | 72 <link rel="import" href="chrome://resources/html/i18n_template.html"> |
| 73 </body> | 73 </body> |
| 74 | 74 |
| 75 </html> | 75 </html> |
| OLD | NEW |