Chromium Code Reviews| 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/cr_elements/icons.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 7 <link rel="import" href="chrome://resources/html/polymer.html"> | 7 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 25 <g id="backspace"> | 25 <g id="backspace"> |
| 26 <path d="M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59. 89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 12.59L17.59 17 14 13.41 10.41 17 9 15. 59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z"> | 26 <path d="M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59. 89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 12.59L17.59 17 14 13.41 10.41 17 9 15. 59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z"> |
| 27 </g> | 27 </g> |
| 28 </defs> | 28 </defs> |
| 29 </svg> | 29 </svg> |
| 30 </iron-iconset-svg> | 30 </iron-iconset-svg> |
| 31 | 31 |
| 32 <dom-module id="pin-keyboard"> | 32 <dom-module id="pin-keyboard"> |
| 33 <template> | 33 <template> |
| 34 <style> | 34 <style> |
| 35 :host { | |
| 36 outline: none; | |
|
jdufault
2017/01/12 20:43:37
Unrelated change?
sammiequon
2017/01/17 20:00:56
Because the CL causes the host to receive focus on
| |
| 37 } | |
| 38 | |
| 35 #root { | 39 #root { |
| 36 direction: ltr; | 40 direction: ltr; |
| 37 display: flex; | 41 display: flex; |
| 38 } | 42 } |
| 39 | 43 |
| 40 .row { | 44 .row { |
| 41 display: flex; | 45 display: flex; |
| 42 } | 46 } |
| 43 | 47 |
| 44 .digit-button { | 48 .digit-button { |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 245 noink> | 249 noink> |
| 246 </paper-icon-button> | 250 </paper-icon-button> |
| 247 <paper-ripple> | 251 <paper-ripple> |
| 248 </div> | 252 </div> |
| 249 </div> | 253 </div> |
| 250 </div> | 254 </div> |
| 251 </div> | 255 </div> |
| 252 </template> | 256 </template> |
| 253 <script src="pin_keyboard.js"></script> | 257 <script src="pin_keyboard.js"></script> |
| 254 </dom-module> | 258 </dom-module> |
| OLD | NEW |