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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 justify-content: center; | 60 justify-content: center; |
61 width: 40px; | 61 width: 40px; |
62 } | 62 } |
63 | 63 |
64 #googleg-logo { | 64 #googleg-logo { |
65 background-image: url(../../../../../ui/webui/resources/images/200-logo_
googleg.png); | 65 background-image: url(../../../../../ui/webui/resources/images/200-logo_
googleg.png); |
66 background-size: cover; | 66 background-size: cover; |
67 height: var(--iron-icon-height); | 67 height: var(--iron-icon-height); |
68 width: var(--iron-icon-width); | 68 width: var(--iron-icon-width); |
69 } | 69 } |
| 70 |
| 71 paper-checkbox { |
| 72 margin: 16px 0 2px; |
| 73 } |
70 </style> | 74 </style> |
71 <settings-animated-pages id="pages" current-route="{{currentRoute}}" | 75 <settings-animated-pages id="pages" current-route="{{currentRoute}}" |
72 section="people"> | 76 section="people"> |
73 <neon-animatable id="main"> | 77 <neon-animatable id="main"> |
74 <div class="settings-box first two-line"> | 78 <div class="settings-box first two-line"> |
75 <img id="profile-icon" src="[[profileIconUrl_]]" | 79 <img id="profile-icon" src="[[profileIconUrl_]]" |
76 on-tap="onPictureTap_" actionable> | 80 on-tap="onPictureTap_" actionable> |
77 <div class="middle"> | 81 <div class="middle"> |
78 <if expr="not chromeos"> | 82 <if expr="not chromeos"> |
79 <span id="profile-name" on-tap="onProfileNameTap_" actionable> | 83 <span id="profile-name" on-tap="onProfileNameTap_" actionable> |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 | 317 |
314 <if expr="chromeos"> | 318 <if expr="chromeos"> |
315 <template is="dom-if" if="[[easyUnlockEnabled_]]"> | 319 <template is="dom-if" if="[[easyUnlockEnabled_]]"> |
316 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> | 320 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> |
317 </easy-unlock-turn-off-dialog> | 321 </easy-unlock-turn-off-dialog> |
318 </template> | 322 </template> |
319 </if> | 323 </if> |
320 </template> | 324 </template> |
321 <script src="people_page.js"></script> | 325 <script src="people_page.js"></script> |
322 </dom-module> | 326 </dom-module> |
OLD | NEW |