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

Side by Side Diff: chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html

Issue 2860423002: Fix the alignment on chrome://settings/passwords (Closed)
Patch Set: Created 3 years, 7 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_action_menu/cr_action _menu.html"> 1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html">
2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 2 <link rel="import" href="chrome://resources/cr_elements/icons.html">
3 <link rel="import" href="chrome://resources/html/assert.html"> 3 <link rel="import" href="chrome://resources/html/assert.html">
4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
5 <link rel="import" href="chrome://resources/html/polymer.html"> 5 <link rel="import" href="chrome://resources/html/polymer.html">
6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
9 <link rel="import" href="../controls/settings_toggle_button.html"> 9 <link rel="import" href="../controls/settings_toggle_button.html">
10 <link rel="import" href="../controls/extension_controlled_indicator.html"> 10 <link rel="import" href="../controls/extension_controlled_indicator.html">
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 <div class="list-frame"> 55 <div class="list-frame">
56 <div id="savedPasswordsHeading" class="list-item column-header" 56 <div id="savedPasswordsHeading" class="list-item column-header"
57 hidden$="[[!hasSome_(savedPasswords)]]"> 57 hidden$="[[!hasSome_(savedPasswords)]]">
58 <div class="website-column">$i18n{editPasswordWebsiteLabel}</div> 58 <div class="website-column">$i18n{editPasswordWebsiteLabel}</div>
59 <div class="username-column"> 59 <div class="username-column">
60 $i18n{editPasswordUsernameLabel} 60 $i18n{editPasswordUsernameLabel}
61 </div> 61 </div>
62 <div class="password-column"> 62 <div class="password-column">
63 $i18n{editPasswordPasswordLabel} 63 $i18n{editPasswordPasswordLabel}
64 </div> 64 </div>
65 <paper-icon-button class="invisible">
hcarmona 2017/05/09 19:23:28 Let's not add a hidden paper-icon-button just to a
vasilii 2017/05/19 13:20:14 Done.
66 </paper-icon-button>
65 </div> 67 </div>
66 <iron-list id="passwordList" 68 <iron-list id="passwordList"
67 items="[[getFilteredPasswords_(savedPasswords, filter)]]" 69 items="[[getFilteredPasswords_(savedPasswords, filter)]]"
68 class="vertical-list list-with-header" 70 class="vertical-list list-with-header"
69 scroll-target="[[subpageScrollTarget]]"> 71 scroll-target="[[subpageScrollTarget]]">
70 <template> 72 <template>
71 <password-list-item item="[[item]]" tabindex$="[[tabIndex]]" 73 <password-list-item item="[[item]]" tabindex$="[[tabIndex]]"
72 iron-list-tab-index="[[tabIndex]]" 74 iron-list-tab-index="[[tabIndex]]"
73 last-focused="{{lastFocused_}}"> 75 last-focused="{{lastFocused_}}">
74 <password-list-item> 76 <password-list-item>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 </div> 111 </div>
110 </template> 112 </template>
111 <div id="noExceptionsLabel" class="list-item" 113 <div id="noExceptionsLabel" class="list-item"
112 hidden$="[[hasSome_(passwordExceptions)]]"> 114 hidden$="[[hasSome_(passwordExceptions)]]">
113 $i18n{noExceptionsFound} 115 $i18n{noExceptionsFound}
114 </div> 116 </div>
115 </div> 117 </div>
116 </template> 118 </template>
117 <script src="passwords_section.js"></script> 119 <script src="passwords_section.js"></script>
118 </dom-module> 120 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698