| 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/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 7 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 7 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 8 <link rel="import" href="/controls/settings_checkbox.html"> | 8 <link rel="import" href="/controls/settings_checkbox.html"> |
| 9 <link rel="import" href="/people_page/sync_page.html"> | 9 <link rel="import" href="/people_page/sync_page.html"> |
| 10 <link rel="import" href="/people_page/profile_info_browser_proxy.html"> | 10 <link rel="import" href="/people_page/profile_info_browser_proxy.html"> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 } | 35 } |
| 36 | 36 |
| 37 #profile-icon { | 37 #profile-icon { |
| 38 border-radius: 20px; | 38 border-radius: 20px; |
| 39 height: 40px; | 39 height: 40px; |
| 40 object-fit: cover; | 40 object-fit: cover; |
| 41 vertical-align: middle; | 41 vertical-align: middle; |
| 42 width: 40px; | 42 width: 40px; |
| 43 } | 43 } |
| 44 | 44 |
| 45 #profile-icon:hover, | |
| 46 #activity-controls:hover { | |
| 47 cursor: pointer; | |
| 48 } | |
| 49 | |
| 50 #managed-by-domain-name { | 45 #managed-by-domain-name { |
| 51 font-weight: bold; | 46 font-weight: bold; |
| 52 } | 47 } |
| 53 | 48 |
| 54 iron-icon[icon='settings:sync-problem'] { | 49 iron-icon[icon='settings:sync-problem'] { |
| 55 --iron-icon-fill-color: var(--settings-error-color); | 50 --iron-icon-fill-color: var(--settings-error-color); |
| 56 } | 51 } |
| 57 | 52 |
| 58 .settings-box .sync-error { | 53 .settings-box .sync-error { |
| 59 color: var(--settings-error-color); | 54 color: var(--settings-error-color); |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 | 310 |
| 316 <if expr="chromeos"> | 311 <if expr="chromeos"> |
| 317 <template is="dom-if" if="[[easyUnlockEnabled_]]"> | 312 <template is="dom-if" if="[[easyUnlockEnabled_]]"> |
| 318 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> | 313 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> |
| 319 </easy-unlock-turn-off-dialog> | 314 </easy-unlock-turn-off-dialog> |
| 320 </template> | 315 </template> |
| 321 </if> | 316 </if> |
| 322 </template> | 317 </template> |
| 323 <script src="people_page.js"></script> | 318 <script src="people_page.js"></script> |
| 324 </dom-module> | 319 </dom-module> |
| OLD | NEW |