| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/assert.html"> | 1 <link rel="import" href="chrome://resources/html/assert.html"> |
| 2 <link rel="import" href="chrome://resources/html/cr.html"> | 2 <link rel="import" href="chrome://resources/html/cr.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
| 9 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 9 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
| 10 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 10 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 <if expr="chromeos"> | 23 <if expr="chromeos"> |
| 24 <link rel="import" href="manage_input_methods_page.html"> | 24 <link rel="import" href="manage_input_methods_page.html"> |
| 25 </if> | 25 </if> |
| 26 | 26 |
| 27 <dom-module id="settings-languages-page"> | 27 <dom-module id="settings-languages-page"> |
| 28 <template> | 28 <template> |
| 29 <style include="settings-shared"> | 29 <style include="settings-shared"> |
| 30 .list-button { | 30 .list-button { |
| 31 @apply(--settings-actionable); | 31 @apply(--settings-actionable); |
| 32 } |
| 32 | 33 |
| 33 .dropdown-content { | 34 .dropdown-content { |
| 34 background: white; | 35 background: white; |
| 35 box-shadow: 0 2px 6px grey; | 36 box-shadow: 0 2px 6px grey; |
| 36 } | 37 } |
| 37 | 38 |
| 38 paper-item:hover { | 39 paper-item:hover { |
| 39 background-color: var(--settings-hover-color); | 40 background-color: var(--settings-hover-color); |
| 40 } | 41 } |
| 41 </style> | 42 </style> |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 <template is="dom-if" name="edit-dictionary"> | 217 <template is="dom-if" name="edit-dictionary"> |
| 217 <settings-subpage page-title="$i18n{editDictionaryPageTitle}"> | 218 <settings-subpage page-title="$i18n{editDictionaryPageTitle}"> |
| 218 <settings-edit-dictionary-page></settings-edit-dictionary-page> | 219 <settings-edit-dictionary-page></settings-edit-dictionary-page> |
| 219 </settings-subpage> | 220 </settings-subpage> |
| 220 </template> | 221 </template> |
| 221 </if> | 222 </if> |
| 222 </settings-animated-pages> | 223 </settings-animated-pages> |
| 223 </template> | 224 </template> |
| 224 <script src="languages_page.js"></script> | 225 <script src="languages_page.js"></script> |
| 225 </dom-module> | 226 </dom-module> |
| OLD | NEW |