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/html/i18n_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
6 <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-button/paper-butt
on.html"> |
7 <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-icon-button/paper
-icon-button.html"> |
8 <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/paper-styles/paper-styl
es.html"> |
9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
10 | 10 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 .first-row { | 97 .first-row { |
98 height: 64px; | 98 height: 64px; |
99 min-height: 64px; | 99 min-height: 64px; |
100 padding: 28px 15px 12px 15px; | 100 padding: 28px 15px 12px 15px; |
101 } | 101 } |
102 | 102 |
103 #pin-input { | 103 #pin-input { |
104 -webkit-text-security: disc; | 104 -webkit-text-security: disc; |
105 background-color: white; | 105 background-color: white; |
106 border: 0; | 106 border: 0; |
| 107 box-sizing: border-box; |
107 font-size: 18px; | 108 font-size: 18px; |
108 height: 64px; | 109 height: 64px; |
109 left: 20px; | 110 left: 20px; |
| 111 outline: 0; |
110 padding: 28px 3px 12px 3px; | 112 padding: 28px 3px 12px 3px; |
111 position: relative; | 113 position: relative; |
112 width: 180px; | 114 width: 180px; |
113 } | 115 } |
114 | 116 |
115 #pin-input[type=number]::-webkit-inner-spin-button, | 117 #pin-input[type=number]::-webkit-inner-spin-button, |
116 #pin-input[type=number]::-webkit-outer-spin-button { | 118 #pin-input[type=number]::-webkit-outer-spin-button { |
117 -webkit-appearance: none; | 119 -webkit-appearance: none; |
118 margin: 0; | 120 margin: 0; |
119 } | 121 } |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 <inner-text class="icon-subheading"> | 192 <inner-text class="icon-subheading"> |
191 $i18n{pinKeyboardClear} | 193 $i18n{pinKeyboardClear} |
192 </inner-text> | 194 </inner-text> |
193 </paper-button> | 195 </paper-button> |
194 </div> | 196 </div> |
195 </div> | 197 </div> |
196 </div> | 198 </div> |
197 </template> | 199 </template> |
198 <script src="pin_keyboard.js"></script> | 200 <script src="pin_keyboard.js"></script> |
199 </dom-module> | 201 </dom-module> |
OLD | NEW |