| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/html/icon.html"> | 5 <link rel="import" href="chrome://resources/html/icon.html"> |
| 6 <link rel="import" href="chrome://resources/html/polymer.html"> | 6 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 border-radius: 20px; | 47 border-radius: 20px; |
| 48 flex-shrink: 0; | 48 flex-shrink: 0; |
| 49 height: 40px; | 49 height: 40px; |
| 50 width: 40px; | 50 width: 40px; |
| 51 } | 51 } |
| 52 | 52 |
| 53 #managed-by-domain-name { | 53 #managed-by-domain-name { |
| 54 font-weight: bold; | 54 font-weight: bold; |
| 55 } | 55 } |
| 56 | 56 |
| 57 iron-icon[icon='settings:sync'] { | 57 iron-icon[icon='cr:sync'] { |
| 58 --iron-icon-fill-color: var(--google-green-700); | 58 --iron-icon-fill-color: var(--google-green-700); |
| 59 } | 59 } |
| 60 | 60 |
| 61 #sync-status[actionable] iron-icon[icon='settings:sync-problem'] { | 61 #sync-status[actionable] iron-icon[icon='cr:sync-problem'] { |
| 62 --iron-icon-fill-color: var(--settings-error-color); | 62 --iron-icon-fill-color: var(--settings-error-color); |
| 63 } | 63 } |
| 64 | 64 |
| 65 #sync-status:not([actionable]) .subpage-arrow { | 65 #sync-status:not([actionable]) .subpage-arrow { |
| 66 display: none; | 66 display: none; |
| 67 } | 67 } |
| 68 | 68 |
| 69 .settings-box[actionable] .sync-error { | 69 .settings-box[actionable] .sync-error { |
| 70 color: var(--settings-error-color); | 70 color: var(--settings-error-color); |
| 71 } | 71 } |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 <if expr="chromeos"> | 386 <if expr="chromeos"> |
| 387 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> | 387 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> |
| 388 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" | 388 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" |
| 389 on-close="onEasyUnlockTurnOffDialogClose_"> | 389 on-close="onEasyUnlockTurnOffDialogClose_"> |
| 390 </easy-unlock-turn-off-dialog> | 390 </easy-unlock-turn-off-dialog> |
| 391 </template> | 391 </template> |
| 392 </if> | 392 </if> |
| 393 </template> | 393 </template> |
| 394 <script src="people_page.js"></script> | 394 <script src="people_page.js"></script> |
| 395 </dom-module> | 395 </dom-module> |
| OLD | NEW |