| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 | 2 |
| 3 <link rel="import" href="chrome://resources/html/md_select_css.html"> | 3 <link rel="import" href="chrome://resources/html/md_select_css.html"> |
| 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 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-input/paper-input
.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> |
| 8 <link rel="import" href="../i18n_setup.html"> | 8 <link rel="import" href="../i18n_setup.html"> |
| 9 <link rel="import" href="cups_add_printer_dialog_util.html"> | 9 <link rel="import" href="cups_add_printer_dialog_util.html"> |
| 10 <link rel="import" href="cups_printers_browser_proxy.html"> | 10 <link rel="import" href="cups_printers_browser_proxy.html"> |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 padding: 10px 20px; | 284 padding: 10px 20px; |
| 285 } | 285 } |
| 286 | 286 |
| 287 #browseButton { | 287 #browseButton { |
| 288 -webkit-margin-start: 5px; | 288 -webkit-margin-start: 5px; |
| 289 color: black; | 289 color: black; |
| 290 font-size: inherit; | 290 font-size: inherit; |
| 291 } | 291 } |
| 292 </style> | 292 </style> |
| 293 <add-printer-dialog> | 293 <add-printer-dialog> |
| 294 <div class="dialog-title">$i18n{addPrintersManuallyTitle}</div> | 294 <div class="dialog-title">$i18n{selectManufacturerAndModelTitle}</div> |
| 295 <div class="dialog-body"> | 295 <div class="dialog-body"> |
| 296 <div class="settings-box two-line"> | 296 <div class="settings-box two-line"> |
| 297 <div class="start"> | 297 <div class="start"> |
| 298 <div class="label">$i18n{printerManufacturer}</div> | 298 <div class="label">$i18n{printerManufacturer}</div> |
| 299 <div class="secondary"> | 299 <div class="secondary"> |
| 300 <drop-down-search-box items="[[manufacturerList]]" | 300 <drop-down-search-box items="[[manufacturerList]]" |
| 301 selected-item="{{newPrinter.printerManufacturer}}"> | 301 selected-item="{{newPrinter.printerManufacturer}}"> |
| 302 </drop-down-search-box> | 302 </drop-down-search-box> |
| 303 </div> | 303 </div> |
| 304 </div> | 304 </div> |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 <!-- Manufacturer and Model Dialog --> | 397 <!-- Manufacturer and Model Dialog --> |
| 398 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp> | 398 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp> |
| 399 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}" | 399 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}" |
| 400 setup-failed="[[setupFailed]]"> | 400 setup-failed="[[setupFailed]]"> |
| 401 </add-printer-manufacturer-model-dialog> | 401 </add-printer-manufacturer-model-dialog> |
| 402 </template> | 402 </template> |
| 403 | 403 |
| 404 </template> | 404 </template> |
| 405 <script src="cups_add_printer_dialog.js"></script> | 405 <script src="cups_add_printer_dialog.js"></script> |
| 406 </dom-module> | 406 </dom-module> |
| OLD | NEW |