| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/md_select_css.html"> | 1 <link rel="import" href="chrome://resources/html/md_select_css.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/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 4 <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-input/paper-input
.html"> | 5 <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-spinner/paper-spi
nner.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> |
| 7 <link rel="import" href="../i18n_setup.html"> | 7 <link rel="import" href="../i18n_setup.html"> |
| 8 <link rel="import" href="cups_add_printer_dialog_util.html"> | 8 <link rel="import" href="cups_add_printer_dialog_util.html"> |
| 9 <link rel="import" href="cups_printers_browser_proxy.html"> | 9 <link rel="import" href="cups_printers_browser_proxy.html"> |
| 10 <link rel="import" href="../settings_shared_css.html"> | 10 <link rel="import" href="../settings_shared_css.html"> |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 padding: 10px 20px; | 261 padding: 10px 20px; |
| 262 } | 262 } |
| 263 | 263 |
| 264 .dialog-buttons { | 264 .dialog-buttons { |
| 265 display: flex; | 265 display: flex; |
| 266 justify-content: space-between; | 266 justify-content: space-between; |
| 267 width: 100%; | 267 width: 100%; |
| 268 } | 268 } |
| 269 | 269 |
| 270 #browseButton { | 270 #browseButton { |
| 271 -webkit-margin-start: 5px; |
| 271 color: black; | 272 color: black; |
| 272 font-size: inherit; | 273 font-size: inherit; |
| 273 } | 274 } |
| 274 </style> | 275 </style> |
| 275 <add-printer-dialog> | 276 <add-printer-dialog> |
| 276 <div class="dialog-title">$i18n{addPrintersManuallyTitle}</div> | 277 <div class="dialog-title">$i18n{addPrintersManuallyTitle}</div> |
| 277 <div class="dialog-body"> | 278 <div class="dialog-body"> |
| 278 <div class="settings-box two-line"> | 279 <div class="settings-box two-line"> |
| 279 <div class="start"> | 280 <div class="start"> |
| 280 <div class="label">$i18n{printerManufacturer}</div> | 281 <div class="label">$i18n{printerManufacturer}</div> |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 <!-- Manufacturer and Model Dialog --> | 388 <!-- Manufacturer and Model Dialog --> |
| 388 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp> | 389 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp> |
| 389 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}" | 390 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}" |
| 390 previous-dialog="[[previousDialog]]" setup-failed="[[setupFailed]]"> | 391 previous-dialog="[[previousDialog]]" setup-failed="[[setupFailed]]"> |
| 391 </add-printer-manufacturer-model-dialog> | 392 </add-printer-manufacturer-model-dialog> |
| 392 </template> | 393 </template> |
| 393 | 394 |
| 394 </template> | 395 </template> |
| 395 <script src="cups_add_printer_dialog.js"></script> | 396 <script src="cups_add_printer_dialog.js"></script> |
| 396 </dom-module> | 397 </dom-module> |
| OLD | NEW |