Chromium Code Reviews| 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 27 matching lines...) Expand all Loading... | |
| 38 <style include="settings-shared"> | 38 <style include="settings-shared"> |
| 39 setting-box.middle { | 39 setting-box.middle { |
| 40 /* Per spec, middle text is indented 20px in this section. */ | 40 /* Per spec, middle text is indented 20px in this section. */ |
| 41 -webkit-margin-start: 20px; | 41 -webkit-margin-start: 20px; |
| 42 } | 42 } |
| 43 | 43 |
| 44 #profile-icon { | 44 #profile-icon { |
| 45 background-position: center; | 45 background-position: center; |
| 46 background-repeat: no-repeat; | 46 background-repeat: no-repeat; |
| 47 background-size: cover; | 47 background-size: cover; |
| 48 border-radius: 20px; | 48 clip-path: circle(19px at center); |
|
tommycli
2017/03/21 22:29:53
Looks like the root cause is that the data URL ima
dschuyler
2017/03/21 23:27:15
That's true, it's documented in the bug (in commen
| |
| 49 flex-shrink: 0; | 49 flex-shrink: 0; |
| 50 height: 40px; | 50 height: 40px; |
| 51 width: 40px; | 51 width: 40px; |
| 52 } | 52 } |
| 53 | 53 |
| 54 #managed-by-domain-name { | 54 #managed-by-domain-name { |
| 55 font-weight: bold; | 55 font-weight: bold; |
| 56 } | 56 } |
| 57 | 57 |
| 58 iron-icon[icon='settings:sync'] { | 58 iron-icon[icon='settings:sync'] { |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 423 <if expr="chromeos"> | 423 <if expr="chromeos"> |
| 424 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> | 424 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> |
| 425 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" | 425 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" |
| 426 on-close="onEasyUnlockTurnOffDialogClose_"> | 426 on-close="onEasyUnlockTurnOffDialogClose_"> |
| 427 </easy-unlock-turn-off-dialog> | 427 </easy-unlock-turn-off-dialog> |
| 428 </template> | 428 </template> |
| 429 </if> | 429 </if> |
| 430 </template> | 430 </template> |
| 431 <script src="people_page.js"></script> | 431 <script src="people_page.js"></script> |
| 432 </dom-module> | 432 </dom-module> |
| OLD | NEW |