| OLD | NEW |
| 1 <!-- TODO(crbug.com/603217): Use i18n instead of string literals. Figure out | 1 <!-- TODO(crbug.com/603217): Use i18n instead of string literals. Figure out |
| 2 what i18n to use for keypad, ie, does 1 ABC make | 2 what i18n to use for keypad, ie, does 1 ABC make |
| 3 sense in every scenario? --> | 3 sense in every scenario? --> |
| 4 | 4 |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/paper-styl
es.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/paper-styl
es.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| 9 | 9 |
| 10 <dom-module id="pin-keyboard"> | 10 <dom-module id="pin-keyboard"> |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 } | 89 } |
| 90 | 90 |
| 91 .first-row { | 91 .first-row { |
| 92 height: 64px; | 92 height: 64px; |
| 93 min-height: 64px; | 93 min-height: 64px; |
| 94 padding: 28px 15px 12px 15px; | 94 padding: 28px 15px 12px 15px; |
| 95 } | 95 } |
| 96 | 96 |
| 97 #pin-input { | 97 #pin-input { |
| 98 -webkit-text-security: disc; | 98 -webkit-text-security: disc; |
| 99 background-color: white; |
| 99 border: 0; | 100 border: 0; |
| 100 font-size: 18px; | 101 font-size: 18px; |
| 101 height: 64px; | 102 height: 64px; |
| 102 left: 20px; | 103 left: 20px; |
| 103 padding: 28px 3px 12px 3px; | 104 padding: 28px 3px 12px 3px; |
| 104 position: relative; | 105 position: relative; |
| 105 text-align: center; | 106 text-align: center; |
| 106 width: 180px; | 107 width: 180px; |
| 107 } | 108 } |
| 108 | 109 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 <iron-icon class="icon" icon="icons:clear"><iron-icon> | 181 <iron-icon class="icon" icon="icons:clear"><iron-icon> |
| 181 </div> | 182 </div> |
| 182 <inner-text class="icon-subheading">Clear</inner-text> | 183 <inner-text class="icon-subheading">Clear</inner-text> |
| 183 </paper-button> | 184 </paper-button> |
| 184 </div> | 185 </div> |
| 185 </div> | 186 </div> |
| 186 </div> | 187 </div> |
| 187 </template> | 188 </template> |
| 188 <script src="pin_keyboard.js"></script> | 189 <script src="pin_keyboard.js"></script> |
| 189 </dom-module> | 190 </dom-module> |
| OLD | NEW |