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

Side by Side Diff: chrome/browser/resources/login/user_pod_template.html

Issue 398543002: Add language and keyboard layout pickers to public session pods (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Base the list of keyboard layouts offered on the resolved locale, not the selected locale. Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
1 <div id="user-pod-template" class="pod" hidden> 1 <div id="user-pod-template" class="pod" hidden>
2 <div class="user-image-pane"> 2 <div class="user-image-pane">
3 <div class="user-image-container"> 3 <div class="user-image-container">
4 <img class="user-image" alt> 4 <img class="user-image" alt>
5 </div> 5 </div>
6 <div class="signed-in-indicator" i18n-content="signedIn"></div> 6 <div class="signed-in-indicator" i18n-content="signedIn"></div>
7 <div class="locked-indicator"></div> 7 <div class="locked-indicator"></div>
8 <div class="supervised-indicator"></div> 8 <div class="supervised-indicator"></div>
9 </div> 9 </div>
10 <div class="main-pane"> 10 <div class="main-pane">
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 </div> 77 </div>
78 </div> 78 </div>
79 </div> 79 </div>
80 80
81 <!-- Extra elements that are appended to above "user-pod-template" for public 81 <!-- Extra elements that are appended to above "user-pod-template" for public
82 account user pod. Note that only the children of the template div are 82 account user pod. Note that only the children of the template div are
83 appended. --> 83 appended. -->
84 <div id="public-account-user-pod-extras-template" hidden> 84 <div id="public-account-user-pod-extras-template" hidden>
85 <div class="expanded-pane"> 85 <div class="expanded-pane">
86 <div class="expanded-pane-contents"> 86 <div class="expanded-pane-contents">
87 <div class="expanded-pane-name"></div> 87 <div class="side-container">
88 <div class="reminder" i18n-content="publicAccountReminder"></div> 88 <div class="expanded-pane-name"></div>
89 <div class="reminder" i18n-content="publicAccountReminder"></div>
90 <div class="language-and-input-section">
91 <div class="select-with-label">
92 <label class="language-select-label"
93 i18n-content="publicSessionSelectLanguage">
94 </label>
95 <div class="select-container">
96 <select class="language-select"></select>
97 </div>
98 </div>
99 <div class="select-with-label">
100 <label class="keyboard-select-label"
101 i18n-content="publicSessionSelectKeyboard">
102 </label>
103 <div class="select-container">
104 <select class="keyboard-select"></select>
105 </div>
106 </div>
107 </div>
108 </div>
89 <div class="bottom-container"> 109 <div class="bottom-container">
90 <div class="expanded-pane-learn-more-container"> 110 <div class="expanded-pane-learn-more-container">
91 <div class="expanded-pane-learn-more"></div> 111 <div class="expanded-pane-learn-more"></div>
92 </div> 112 </div>
93 <div class="info"></div> 113 <div class="info"></div>
114 <div class="language-and-input-container">
115 <a class="language-and-input" href="#" role="button"
116 i18n-content="publicSessionLanguageAndInput"></a>
117 </div>
94 <button class="enter-button" 118 <button class="enter-button"
95 i18n-content="publicAccountEnter" 119 i18n-content="publicAccountEnter"
96 i18n-values="aria-label:publicAccountEnterAccessibleName"> 120 i18n-values="aria-label:publicAccountEnterAccessibleName">
97 </button> 121 </button>
98 </div> 122 </div>
99 </div> 123 </div>
100 </div> 124 </div>
101 </div> 125 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/login/user_pod_row.js ('k') | chrome/browser/ui/webui/chromeos/login/l10n_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698