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

Side by Side Diff: chrome/browser/resources/md_user_manager/create_profile.html

Issue 2063713002: MD User Manager: Fixes broken paper-input-container's underline focused color. (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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://md-user-manager/import_supervised_user.html"> 1 <link rel="import" href="chrome://md-user-manager/import_supervised_user.html">
2 <link rel="import" href="chrome://md-user-manager/profile_browser_proxy.html"> 2 <link rel="import" href="chrome://md-user-manager/profile_browser_proxy.html">
3 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> 3 <link rel="import" href="chrome://md-user-manager/shared_styles.html">
4 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 4 <link rel="import" href="chrome://resources/cr_elements/icons.html">
5 <link rel="import" href="chrome://resources/html/action_link.html"> 5 <link rel="import" href="chrome://resources/html/action_link.html">
6 <link rel="import" href="chrome://resources/html/cr.html"> 6 <link rel="import" href="chrome://resources/html/cr.html">
7 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 7 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
8 <link rel="import" href="chrome://resources/html/polymer.html"> 8 <link rel="import" href="chrome://resources/html/polymer.html">
9 <link rel="import" href="chrome://resources/html/util.html"> 9 <link rel="import" href="chrome://resources/html/util.html">
10 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 10 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 #title-bar { 65 #title-bar {
66 border-bottom: var(--user-manager-separator-line); 66 border-bottom: var(--user-manager-separator-line);
67 font-size: 16px; 67 font-size: 16px;
68 font-weight: 500; 68 font-weight: 500;
69 padding: 104px 0 16px; 69 padding: 104px 0 16px;
70 } 70 }
71 71
72 #nameInput, 72 #nameInput,
73 paper-dropdown-menu { 73 paper-dropdown-menu {
74 --paper-input-container-focus-color: var(--google-blue-500);
74 --paper-input-container-input: { 75 --paper-input-container-input: {
75 font-size: inherit; 76 font-size: inherit;
76 }; 77 };
77 --paper-input-container-label: { 78 --paper-input-container-label: {
78 font-size: inherit; 79 font-size: inherit;
79 }; 80 };
80 --paper-input-container-underline-focus: var(--google-blue-500);
81 } 81 }
82 82
83 #nameInput { 83 #nameInput {
84 margin-bottom: 24px; 84 margin-bottom: 24px;
85 margin-top: 32px; 85 margin-top: 32px;
86 width: 300px; 86 width: 300px;
87 } 87 }
88 88
89 #icons { 89 #icons {
90 display: flex; 90 display: flex;
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 <paper-button id="save" class="action primary" on-tap="onSaveTap_" 235 <paper-button id="save" class="action primary" on-tap="onSaveTap_"
236 disabled="[[isSaveDisabled_(createInProgress_, profileName_)]]"> 236 disabled="[[isSaveDisabled_(createInProgress_, profileName_)]]">
237 $i18n{createProfileConfirm} 237 $i18n{createProfileConfirm}
238 </paper-button> 238 </paper-button>
239 </div> 239 </div>
240 <import-supervised-user id="importUserPopup"></import-supervised-user> 240 <import-supervised-user id="importUserPopup"></import-supervised-user>
241 </div> 241 </div>
242 </template> 242 </template>
243 <script src="chrome://md-user-manager/create_profile.js"></script> 243 <script src="chrome://md-user-manager/create_profile.js"></script>
244 </dom-module> 244 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698