| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html dir="$i18n{textdirection}" lang="$i18n{language}"> | 2 <html dir="$i18n{textdirection}" lang="$i18n{language}"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title>$i18n{settings}</title> | 5 <title>$i18n{settings}</title> |
| 6 <if expr="not use_vulcanize"> | 6 <if expr="not use_vulcanize"> |
| 7 <base href="chrome://$i18n{hostname}"> | 7 <base href="chrome://$i18n{hostname}"> |
| 8 </if> | 8 </if> |
| 9 <link rel="import" href="chrome://resources/html/polymer.html"> | 9 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> |
| 10 <link rel="import" href="settings_ui/settings_ui.html"> | |
| 11 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | |
| 12 <!-- Do not add any <link rel="..."> elements below here. Imports outside of | |
| 13 <head> are disallowed by HTML5 and cause undefined behavior that | |
| 14 confuses Polymer's lifecycle methods: crbug.com/638074. --> | |
| 15 <style> | 10 <style> |
| 16 html { | 11 html { |
| 17 overflow: hidden; | 12 overflow: hidden; |
| 18 } | 13 } |
| 14 |
| 15 settings-ui:unresolved { |
| 16 background-color: var(--md-background-color); |
| 17 border-top: 56px solid var(--md-toolbar-color); |
| 18 bottom: 0; |
| 19 display: block; |
| 20 left: 0; |
| 21 position: fixed; |
| 22 right: 0; |
| 23 top: 0; |
| 24 } |
| 19 </style> | 25 </style> |
| 20 </head> | 26 </head> |
| 21 <body> | 27 <body> |
| 22 <settings-ui></settings-ui> | 28 <settings-ui></settings-ui> |
| 29 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 30 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 31 <link rel="import" href="settings_ui/settings_ui.html"> |
| 23 </body> | 32 </body> |
| 24 </html> | 33 </html> |
| OLD | NEW |