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

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

Issue 2656563006: MD Settings: Fix several global UI polish bugs. (Closed)
Patch Set: minor height adjustments Created 3 years, 10 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
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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 padding: 11px 0; 75 padding: 11px 0;
76 } 76 }
77 77
78 .icon-container { 78 .icon-container {
79 display: flex; 79 display: flex;
80 flex-shrink: 0; 80 flex-shrink: 0;
81 justify-content: center; 81 justify-content: center;
82 width: 40px; 82 width: 40px;
83 } 83 }
84 84
85 #activity-controls {
86 min-height: 85px;
dschuyler 2017/01/28 02:24:26 How about making this var(--settings-row-three-lin
scottchen 2017/01/30 22:39:28 I like that idea, done.
87 }
88
89 /* Avoid orphaned english text (as requested by bettes@) */
90 #activity-controls .secondary {
91 max-width: 460px;
dschuyler 2017/01/28 02:24:26 Can this be done in a way that will allow the card
scottchen 2017/01/30 22:39:28 Done.
92 }
93
85 #googleg-logo { 94 #googleg-logo {
86 background-image: url(../../../../../ui/webui/resources/images/200-logo_ googleg.png); 95 background-image: url(../../../../../ui/webui/resources/images/200-logo_ googleg.png);
87 background-size: cover; 96 background-size: cover;
88 height: var(--iron-icon-height); 97 height: var(--iron-icon-height);
89 width: var(--iron-icon-width); 98 width: var(--iron-icon-width);
90 } 99 }
91 100
92 .footer .settings-box { 101 .footer .settings-box {
93 --settings-box-row-padding: 0; 102 --settings-box-row-padding: 0;
94 } 103 }
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 <if expr="chromeos"> 400 <if expr="chromeos">
392 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> 401 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]">
393 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" 402 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"
394 on-close="onEasyUnlockTurnOffDialogClose_"> 403 on-close="onEasyUnlockTurnOffDialogClose_">
395 </easy-unlock-turn-off-dialog> 404 </easy-unlock-turn-off-dialog>
396 </template> 405 </template>
397 </if> 406 </if>
398 </template> 407 </template>
399 <script src="people_page.js"></script> 408 <script src="people_page.js"></script>
400 </dom-module> 409 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698