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

Side by Side Diff: chrome/browser/resources/options/manage_profile_overlay.html

Issue 532023003: [Profiles] Trim profile names in chrome://settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 6 years, 3 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 <div id="manage-profile-overlay" class="page" hidden> 1 <div id="manage-profile-overlay" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <!-- Dialog for managing profiles. --> 3 <!-- Dialog for managing profiles. -->
4 <div id="manage-profile-overlay-manage" hidden> 4 <div id="manage-profile-overlay-manage" hidden>
5 <h1 i18n-content="manageProfile"></h1> 5 <h1 i18n-content="manageProfile"></h1>
6 <div id="manage-profile-content" class="content-area"> 6 <div id="manage-profile-content" class="content-area">
7 <div id="manage-profile-icon-label" 7 <div id="manage-profile-icon-label"
8 i18n-content="manageProfilesIconLabel"> 8 i18n-content="manageProfilesIconLabel">
9 </div> 9 </div>
10 <grid id="manage-profile-icon-grid"></grid> 10 <grid id="manage-profile-icon-grid"></grid>
11 <div id="manage-profile-name-input-container"> 11 <div id="manage-profile-name-input-container">
12 <label> 12 <label>
13 <span id="manage-profile-name-label" for="manage-profile-name" 13 <span id="manage-profile-name-label" for="manage-profile-name"
14 i18n-content="manageProfilesNameLabel"> 14 i18n-content="manageProfilesNameLabel">
15 </span> 15 </span>
16 <input id="manage-profile-name" type="text" required> 16 <input id="manage-profile-name" type="text" pattern=".*\S.*" required>
17 </label> 17 </label>
18 </div> 18 </div>
19 <div id="manage-profile-error-bubble" hidden></div> 19 <div id="manage-profile-error-bubble" hidden></div>
20 </div> 20 </div>
21 <div class="action-area"> 21 <div class="action-area">
22 <div class="action-area-shortcut-container"> 22 <div class="action-area-shortcut-container">
23 <button id="remove-shortcut-button" 23 <button id="remove-shortcut-button"
24 i18n-content="removeProfileShortcutButton" hidden> 24 i18n-content="removeProfileShortcutButton" hidden>
25 </button> 25 </button>
26 <button id="add-shortcut-button" 26 <button id="add-shortcut-button"
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 </button> 133 </button>
134 <div class="button-strip"> 134 <div class="button-strip">
135 <button id="create-profile-cancel" i18n-content="cancel"></button> 135 <button id="create-profile-cancel" i18n-content="cancel"></button>
136 <button id="create-profile-ok" i18n-content="createProfileConfirm" 136 <button id="create-profile-ok" i18n-content="createProfileConfirm"
137 class="default-button"> 137 class="default-button">
138 </button> 138 </button>
139 </div> 139 </div>
140 </div> 140 </div>
141 </div> 141 </div>
142 </div> 142 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698