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

Unified Diff: chrome/browser/resources/md_user_manager/create_profile.html

Issue 2047383003: MD User Manager: "Select an account" should just be a label not a menu entry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/md_user_manager/create_profile.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_user_manager/create_profile.html
diff --git a/chrome/browser/resources/md_user_manager/create_profile.html b/chrome/browser/resources/md_user_manager/create_profile.html
index 19d307bae3ca9fd8698254f29b40cb6a465c7d19..87370b134ac1d8dc138e196ec6b64e1244029116 100644
--- a/chrome/browser/resources/md_user_manager/create_profile.html
+++ b/chrome/browser/resources/md_user_manager/create_profile.html
@@ -71,11 +71,13 @@
#nameInput,
paper-dropdown-menu {
- --paper-input-container-color: var(--primary-text-color);
- --paper-input-container-focus-color: var(--google-blue-500);
--paper-input-container-input: {
font-size: inherit;
};
+ --paper-input-container-label: {
+ font-size: inherit;
+ };
+ --paper-input-container-underline-focus: var(--google-blue-500);
}
#nameInput {
@@ -201,13 +203,10 @@
<div>
<template is="dom-if" if="[[isSupervised_]]">
<template is="dom-if" if="[[isSignedIn_(signedInUsers_)]]">
- <paper-dropdown-menu no-label-float>
+ <paper-dropdown-menu label="$i18n{selectAnAccount}" no-label-float>
<paper-listbox class="dropdown-content"
selected="{{signedInUserIndex_}}"
attr-for-selected="data-user-index">
- <paper-item data-user-index$="[[sentinelSignedInUserIndex_]]">
- $i18n{selectAnAccount}
- </paper-item>
<template is="dom-repeat" items="[[signedInUsers_]]">
<paper-item data-user-index$="[[index]]">
[[item.username]]
« no previous file with comments | « no previous file | chrome/browser/resources/md_user_manager/create_profile.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698