| 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/cr_elements/shared_vars_css.html"> | 6 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> |
| 7 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 7 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 8 <link rel="import" href="chrome://resources/html/polymer.html"> | 8 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 9 <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-button/paper-butt
on.html"> |
| 10 <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-icon-button/paper
-icon-button.html"> |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 103 |
| 104 .digit-button.backspace-button { | 104 .digit-button.backspace-button { |
| 105 color: #FFF; | 105 color: #FFF; |
| 106 left: 0; | 106 left: 0; |
| 107 padding: 14px; | 107 padding: 14px; |
| 108 position: absolute; | 108 position: absolute; |
| 109 top: 0; | 109 top: 0; |
| 110 } | 110 } |
| 111 | 111 |
| 112 .digit-button.backspace-button:not([has-content]) { | 112 .digit-button.backspace-button:not([has-content]) { |
| 113 color: #000; | 113 opacity: 0.34; |
| 114 opacity: 0.26; | |
| 115 } | 114 } |
| 116 | 115 |
| 117 .digit-button inner-text { | 116 .digit-button inner-text { |
| 118 display: flex; | 117 display: flex; |
| 119 flex-direction: column; | 118 flex-direction: column; |
| 120 font-family: 'Roboto'; | 119 font-family: 'Roboto'; |
| 121 } | 120 } |
| 122 | 121 |
| 123 .number { | 122 .number { |
| 124 color: #FFF; | 123 color: #FFF; |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 noink> | 266 noink> |
| 268 </paper-icon-button> | 267 </paper-icon-button> |
| 269 <paper-ripple> | 268 <paper-ripple> |
| 270 </div> | 269 </div> |
| 271 </div> | 270 </div> |
| 272 </div> | 271 </div> |
| 273 </div> | 272 </div> |
| 274 </template> | 273 </template> |
| 275 <script src="pin_keyboard.js"></script> | 274 <script src="pin_keyboard.js"></script> |
| 276 </dom-module> | 275 </dom-module> |
| OLD | NEW |