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

Side by Side Diff: chrome/browser/resources/settings/users_page/user_list.html

Issue 1503403004: Settings People Rewrite: Move users_page as subpage of People. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@0053-people-rename-a-bunch-of-stuff
Patch Set: Created 5 years 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
(Empty)
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
4
5 <dom-module id="settings-user-list">
6 <link rel="import" type="css"
7 href="chrome://md-settings/settings_shared.css">
8 <link rel="import" type="css" href="user_list.css">
9 <template>
10 <div class="user-list soft-border">
11 <template is="dom-repeat" items="[[users]]">
12 <div class="user layout horizontal justified">
13 <div class="layout vertical center-justified">[[item.email]]</div>
14 <div class="close-button"
15 hidden$="[[shouldHideCloseButton_(disabled, item.isOwner)]]">
16 <paper-icon-button icon="clear" class="clear-icon"
17 on-tap="removeUser_">
18 </paper-icon-button>
19 </div>
20 </div>
21 </template>
22 </div>
23 </template>
24 <script src="user_list.js"></script>
25 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/users_page/user_list.css ('k') | chrome/browser/resources/settings/users_page/user_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698