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

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

Issue 2256813003: MD Settings: fix size of broken people icon (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
3 <link rel="import" href="chrome://resources/html/icon.html"> 3 <link rel="import" href="chrome://resources/html/icon.html">
4 <link rel="import" href="chrome://resources/html/polymer.html"> 4 <link rel="import" href="chrome://resources/html/polymer.html">
5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
9 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 9 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
10 <link rel="import" href="/controls/settings_checkbox.html"> 10 <link rel="import" href="/controls/settings_checkbox.html">
(...skipping 21 matching lines...) Expand all
32 <template> 32 <template>
33 <style include="settings-shared"> 33 <style include="settings-shared">
34 setting-box.middle { 34 setting-box.middle {
35 /* Per spec, middle text is indented 20px in this section. */ 35 /* Per spec, middle text is indented 20px in this section. */
36 -webkit-margin-start: 20px; 36 -webkit-margin-start: 20px;
37 } 37 }
38 38
39 #profile-icon { 39 #profile-icon {
40 background-position: center; 40 background-position: center;
41 background-repeat: no-repeat; 41 background-repeat: no-repeat;
42 background-size: cover;
42 border-radius: 20px; 43 border-radius: 20px;
43 height: 40px; 44 height: 40px;
44 width: 40px; 45 width: 40px;
45 } 46 }
46 47
47 #managed-by-domain-name { 48 #managed-by-domain-name {
48 font-weight: bold; 49 font-weight: bold;
49 } 50 }
50 51
51 iron-icon[icon='settings:sync-problem'] { 52 iron-icon[icon='settings:sync-problem'] {
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 317
317 <if expr="chromeos"> 318 <if expr="chromeos">
318 <template is="dom-if" if="[[easyUnlockEnabled_]]"> 319 <template is="dom-if" if="[[easyUnlockEnabled_]]">
319 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> 320 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog">
320 </easy-unlock-turn-off-dialog> 321 </easy-unlock-turn-off-dialog>
321 </template> 322 </template>
322 </if> 323 </if>
323 </template> 324 </template>
324 <script src="people_page.js"></script> 325 <script src="people_page.js"></script>
325 </dom-module> 326 </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