Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(192)

Side by Side Diff: chrome/browser/resources/settings/people_page/people_page.html

Issue 2769493002: [MD settings] Scale avatar icon. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698