BookmarkManager: Fix 'new folder text field size changes on clicking it' issue.
[chromium-blink-merge.git] / chrome / browser / resources / pdf / elements / viewer-password-screen / viewer-password-screen.html
blobdba0c4ea8ff9a3f5845ae2c18b7a24373457cef0
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-flex-layout.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animations/fade-in-animation.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animations/fade-out-animation.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dialog.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
9 <dom-module id="viewer-password-screen">
10 <template>
11 <paper-dialog id="dialog" modal no-cancel-on-esc-key
12 entry-animation="fade-in-animation" exit-animation="fade-out-animation">
13 <div id="message">{{text}}</div>
14 <div class="horizontal layout center">
15 <paper-input-container id="password-container" class="flex"
16 no-label-float>
17 <input is="iron-input" id="password" type="password" size="20"
18 on-keypress="handleKey">
19 </input>
20 </paper-input-container>
21 <paper-button id="submit" on-click="submit">Submit</paper-button>
22 </div>
23 </paper-dialog>
24 </template>
25 </dom-module>
26 <script src="viewer-password-screen.js"></script>