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

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

Issue 2651813002: MD Settings: fix focus outline getting cut off in manage password page (Closed)
Patch Set: update comment format Created 3 years, 11 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 .footer .settings-box { 92 .footer .settings-box {
93 --settings-box-row-padding: 0; 93 --settings-box-row-padding: 0;
94 } 94 }
95 95
96 .delete-profile-warning { 96 .delete-profile-warning {
97 /* In order to line up with the checkbox text. */ 97 /* In order to line up with the checkbox text. */
98 -webkit-padding-start: 36px; 98 -webkit-padding-start: 36px;
99 padding-bottom: 10px; 99 padding-bottom: 10px;
100 padding-top: 10px; 100 padding-top: 10px;
101 } 101 }
102
103 /**
104 * By default, flexbox children have min-width calculated to be the width
105 * of the content. However, in some cases we might want to allow the
106 * width to be smaller than the content (i.e. for long text to ellipsis).
107 * In such cases this class should be applied.
108 * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=1108514#c5)
109 */
110 .no-min-width {
111 min-width: 0;
112 }
113 </style> 102 </style>
114 <settings-animated-pages id="pages" section="people"> 103 <settings-animated-pages id="pages" section="people">
115 <neon-animatable route-path="default"> 104 <neon-animatable route-path="default">
116 <div id="picture-subpage-trigger" class="settings-box first two-line"> 105 <div id="picture-subpage-trigger" class="settings-box first two-line">
117 <template is="dom-if" if="[[syncStatus]]"> 106 <template is="dom-if" if="[[syncStatus]]">
118 <div id="profile-icon" on-tap="onPictureTap_" actionable 107 <div id="profile-icon" on-tap="onPictureTap_" actionable
119 style="background-image: [[getIconImageset_(profileIconUrl_)]]"> 108 style="background-image: [[getIconImageset_(profileIconUrl_)]]">
120 </div> 109 </div>
121 <if expr="not chromeos"> 110 <if expr="not chromeos">
122 <div class="middle two-line no-min-width" 111 <div class="middle two-line no-min-width"
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 <if expr="chromeos"> 391 <if expr="chromeos">
403 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> 392 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]">
404 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" 393 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"
405 on-close="onEasyUnlockTurnOffDialogClose_"> 394 on-close="onEasyUnlockTurnOffDialogClose_">
406 </easy-unlock-turn-off-dialog> 395 </easy-unlock-turn-off-dialog>
407 </template> 396 </template>
408 </if> 397 </if>
409 </template> 398 </template>
410 <script src="people_page.js"></script> 399 <script src="people_page.js"></script>
411 </dom-module> 400 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698