| 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 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> | 8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> |
| 9 | 9 |
| 10 <style> | 10 <style> |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 .loading #loading-toolbar { | 55 .loading #loading-toolbar { |
| 56 -webkit-padding-start: 24px; | 56 -webkit-padding-start: 24px; |
| 57 align-items: center; | 57 align-items: center; |
| 58 color: #fff; | 58 color: #fff; |
| 59 flex-direction: row; | 59 flex-direction: row; |
| 60 font-weight: 400; | 60 font-weight: 400; |
| 61 height: 56px; | 61 height: 56px; |
| 62 } | 62 } |
| 63 | 63 |
| 64 #toolbar, | 64 history-toolbar, |
| 65 .loading #loading-toolbar { | 65 .loading #loading-toolbar { |
| 66 background: var(--md-toolbar-color); | 66 background: var(--md-toolbar-color); |
| 67 } | 67 } |
| 68 | 68 |
| 69 .loading #loading-message { | 69 .loading #loading-message { |
| 70 align-items: center; | 70 align-items: center; |
| 71 color: #b4b4b4; | 71 color: #b4b4b4; |
| 72 flex: 1; | 72 flex: 1; |
| 73 font-weight: 500; | 73 font-weight: 500; |
| 74 justify-content: center; | 74 justify-content: center; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 100 | 100 |
| 101 <!-- | 101 <!-- |
| 102 Prepare strings and perform i18n substitutions. | 102 Prepare strings and perform i18n substitutions. |
| 103 TODO(tsergeant): Remove once we are fully converted to | 103 TODO(tsergeant): Remove once we are fully converted to |
| 104 ReplaceTemplateExpressions. It is currently only used for the <html> tag. | 104 ReplaceTemplateExpressions. It is currently only used for the <html> tag. |
| 105 --> | 105 --> |
| 106 <link rel="import" href="chrome://resources/html/i18n_template.html" async> | 106 <link rel="import" href="chrome://resources/html/i18n_template.html" async> |
| 107 </body> | 107 </body> |
| 108 | 108 |
| 109 </html> | 109 </html> |
| OLD | NEW |