| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 5 <link rel="import" href="/settings_shared_css.html"> | 5 <link rel="import" href="/settings_shared_css.html"> |
| 6 | 6 |
| 7 <dom-module id="settings-cups-printer-details-page"> | 7 <dom-module id="settings-cups-printer-details-page"> |
| 8 <template> | 8 <template> |
| 9 <style include="settings-shared"></style> | 9 <style include="settings-shared"> |
| 10 <style> | |
| 11 paper-input { | 10 paper-input { |
| 12 width: 20em; | 11 width: 20em; |
| 13 --paper-input-container-input: { | 12 --paper-input-container-input: { |
| 14 font-size: inherit; | 13 font-size: inherit; |
| 15 color: inherit; | 14 color: inherit; |
| 16 }; | 15 }; |
| 17 } | 16 } |
| 18 </style> | 17 </style> |
| 19 <div class="settings-box first two-line"> | 18 <div class="settings-box first two-line"> |
| 20 <div class="start"> | 19 <div class="start"> |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 <div class="start"> | 52 <div class="start"> |
| 54 <div>$i18n{printerProtocol}</div> | 53 <div>$i18n{printerProtocol}</div> |
| 55 <div class="secondary">[[printer.printerProtocol]]</div> | 54 <div class="secondary">[[printer.printerProtocol]]</div> |
| 56 </div> | 55 </div> |
| 57 </div> | 56 </div> |
| 58 </div> | 57 </div> |
| 59 </iron-collapse> | 58 </iron-collapse> |
| 60 </template> | 59 </template> |
| 61 <script src="cups_printer_details_page.js"></script> | 60 <script src="cups_printer_details_page.js"></script> |
| 62 </dom-module> | 61 </dom-module> |
| OLD | NEW |