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

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

Issue 2894003003: [merge to m59]md settings: Fix dialog buttons on lock screen. (Closed)
Patch Set: Created 3 years, 7 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 | chrome/browser/resources/settings/people_page/setup_fingerprint_dialog.html » ('j') | 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://resources/cr_elements/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.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/paper-button/paper-butt on.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
5 <link rel="import" href="lock_screen_constants.html"> 5 <link rel="import" href="lock_screen_constants.html">
6 <link rel="import" href="../settings_shared_css.html"> 6 <link rel="import" href="../settings_shared_css.html">
7 <link rel="import" href="../settings_shared_css.html"> 7 <link rel="import" href="../settings_shared_css.html">
8 8
9 <dom-module id="settings-password-prompt-dialog"> 9 <dom-module id="settings-password-prompt-dialog">
10 <template> 10 <template>
(...skipping 15 matching lines...) Expand all
26 <div class="settings-box first">$i18n{passwordPromptEnterPassword}</div> 26 <div class="settings-box first">$i18n{passwordPromptEnterPassword}</div>
27 27
28 <paper-input id="passwordInput" type="password" autofocus 28 <paper-input id="passwordInput" type="password" autofocus
29 label="$i18n{passwordPromptPasswordLabel}" 29 label="$i18n{passwordPromptPasswordLabel}"
30 no-label-float 30 no-label-float
31 value="{{password_}}" 31 value="{{password_}}"
32 invalid$="[[passwordInvalid_]]" 32 invalid$="[[passwordInvalid_]]"
33 error-message="$i18n{passwordPromptInvalidPassword}" 33 error-message="$i18n{passwordPromptInvalidPassword}"
34 aria-disabled="false"> 34 aria-disabled="false">
35 </paper-input> 35 </paper-input>
36 </div>
37 <div class="button-container">
38 <paper-button class="cancel-button" on-tap="onCancelTap_">
39 $i18n{cancel}
40 </paper-button>
36 41
37 <div class="button-strip"> 42 <paper-button class="action-button" on-tap="submitPassword_"
38 <paper-button class="cancel-button" on-tap="onCancelTap_"> 43 disabled$="[[!enableConfirm_(password_, passwordInvalid_)]]">
39 $i18n{cancel} 44 $i18n{confirm}
40 </paper-button> 45 </paper-button>
41
42 <paper-button class="action-button" on-tap="submitPassword_"
43 disabled$="[[!enableConfirm_(password_,
44 passwordInvalid_)]]">
45 $i18n{confirm}
46 </paper-button>
47 </div>
48 </div> 46 </div>
49 </dialog> 47 </dialog>
50 </template> 48 </template>
51 <script src="password_prompt_dialog.js"></script> 49 <script src="password_prompt_dialog.js"></script>
52 </dom-module> 50 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/people_page/setup_fingerprint_dialog.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698