| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 3 <link rel="import" href="chrome://resources/html/icon.html"> | 3 <link rel="import" href="chrome://resources/html/icon.html"> |
| 4 <link rel="import" href="chrome://resources/html/polymer.html"> | 4 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 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-button/paper-butt
on.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 9 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 9 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 10 <link rel="import" href="/controls/settings_checkbox.html"> | 10 <link rel="import" href="/controls/settings_checkbox.html"> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 setting-box.middle { | 34 setting-box.middle { |
| 35 /* Per spec, middle text is indented 20px in this section. */ | 35 /* Per spec, middle text is indented 20px in this section. */ |
| 36 -webkit-margin-start: 20px; | 36 -webkit-margin-start: 20px; |
| 37 } | 37 } |
| 38 | 38 |
| 39 #profile-icon { | 39 #profile-icon { |
| 40 background-position: center; | 40 background-position: center; |
| 41 background-repeat: no-repeat; | 41 background-repeat: no-repeat; |
| 42 background-size: cover; | 42 background-size: cover; |
| 43 border-radius: 20px; | 43 border-radius: 20px; |
| 44 flex-shrink: 0; |
| 44 height: 40px; | 45 height: 40px; |
| 45 width: 40px; | 46 width: 40px; |
| 46 } | 47 } |
| 47 | 48 |
| 48 #managed-by-domain-name { | 49 #managed-by-domain-name { |
| 49 font-weight: bold; | 50 font-weight: bold; |
| 50 } | 51 } |
| 51 | 52 |
| 52 iron-icon[icon='settings:sync-problem'] { | 53 iron-icon[icon='settings:sync-problem'] { |
| 53 --iron-icon-fill-color: var(--settings-error-color); | 54 --iron-icon-fill-color: var(--settings-error-color); |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 | 318 |
| 318 <if expr="chromeos"> | 319 <if expr="chromeos"> |
| 319 <template is="dom-if" if="[[easyUnlockEnabled_]]"> | 320 <template is="dom-if" if="[[easyUnlockEnabled_]]"> |
| 320 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> | 321 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> |
| 321 </easy-unlock-turn-off-dialog> | 322 </easy-unlock-turn-off-dialog> |
| 322 </template> | 323 </template> |
| 323 </if> | 324 </if> |
| 324 </template> | 325 </template> |
| 325 <script src="people_page.js"></script> | 326 <script src="people_page.js"></script> |
| 326 </dom-module> | 327 </dom-module> |
| OLD | NEW |