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

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

Issue 2889893002: md settings: Fix dialog buttons on lock screen. (Closed)
Patch Set: Fixed patch set 1 errors. 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 7
8 <dom-module id="settings-password-prompt-dialog"> 8 <dom-module id="settings-password-prompt-dialog">
9 <template> 9 <template>
10 <style include="settings-shared"> 10 <style include="settings-shared">
(...skipping 13 matching lines...) Expand all
24 24
25 <div class="settings-box first">$i18n{passwordPromptEnterPassword}</div> 25 <div class="settings-box first">$i18n{passwordPromptEnterPassword}</div>
26 26
27 <paper-input id="passwordInput" type="password" autofocus 27 <paper-input id="passwordInput" type="password" autofocus
28 label="$i18n{passwordPromptPasswordLabel}" 28 label="$i18n{passwordPromptPasswordLabel}"
29 value="{{password_}}" 29 value="{{password_}}"
30 invalid$="[[passwordInvalid_]]" 30 invalid$="[[passwordInvalid_]]"
31 error-message="$i18n{passwordPromptInvalidPassword}" 31 error-message="$i18n{passwordPromptInvalidPassword}"
32 aria-disabled="false"> 32 aria-disabled="false">
33 </paper-input> 33 </paper-input>
34 </div>
35 <div class="button-container">
36 <paper-button class="cancel-button" on-tap="onCancelTap_">
37 $i18n{cancel}
38 </paper-button>
34 39
35 <div class="button-strip"> 40 <paper-button class="action-button" on-tap="submitPassword_"
36 <paper-button class="cancel-button" on-tap="onCancelTap_"> 41 disabled$="[[!enableConfirm_(password_, passwordInvalid_)]]">
37 $i18n{cancel} 42 $i18n{confirm}
38 </paper-button> 43 </paper-button>
39
40 <paper-button class="action-button" on-tap="submitPassword_"
41 disabled$="[[!enableConfirm_(password_,
42 passwordInvalid_)]]">
43 $i18n{confirm}
44 </paper-button>
45 </div>
46 </div> 44 </div>
47 </dialog> 45 </dialog>
48 </template> 46 </template>
49 <script src="password_prompt_dialog.js"></script> 47 <script src="password_prompt_dialog.js"></script>
50 </dom-module> 48 </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