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

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

Issue 2259943003: Settings People CrOS: Display supervised users' names correctly. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test variables 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
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/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <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/iron-flex-layout/iron-f lex-layout.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
5 <link rel="import" href="/settings_shared_css.html"> 5 <link rel="import" href="/settings_shared_css.html">
6 6
7 <dom-module id="settings-user-list"> 7 <dom-module id="settings-user-list">
8 <template> 8 <template>
9 <style include="settings-shared"> 9 <style include="settings-shared">
10 .soft-border { 10 .soft-border {
(...skipping 11 matching lines...) Expand all
22 .user-list { 22 .user-list {
23 border: 1px solid gray; 23 border: 1px solid gray;
24 height: 160px; 24 height: 160px;
25 overflow-y: auto; 25 overflow-y: auto;
26 padding: 10px 0; 26 padding: 10px 0;
27 } 27 }
28 </style> 28 </style>
29 <div class="user-list soft-border"> 29 <div class="user-list soft-border">
30 <template is="dom-repeat" items="[[users]]"> 30 <template is="dom-repeat" items="[[users]]">
31 <div class="user layout horizontal justified"> 31 <div class="user layout horizontal justified">
32 <div class="layout vertical center-justified">[[item.email]]</div> 32 <div class="layout vertical center-justified">[[item.name]]</div>
33 <div class="close-button" 33 <div class="close-button"
34 hidden$="[[shouldHideCloseButton_(disabled, item.isOwner)]]"> 34 hidden$="[[shouldHideCloseButton_(disabled, item.isOwner)]]">
35 <paper-icon-button icon="cr:clear" class="clear-icon" 35 <paper-icon-button icon="cr:clear" class="clear-icon"
36 on-tap="removeUser_"> 36 on-tap="removeUser_">
37 </paper-icon-button> 37 </paper-icon-button>
38 </div> 38 </div>
39 </div> 39 </div>
40 </template> 40 </template>
41 </div> 41 </div>
42 </template> 42 </template>
43 <script src="user_list.js"></script> 43 <script src="user_list.js"></script>
44 </dom-module> 44 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698