| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 .settings-box.two-line { | 90 .settings-box.two-line { |
| 91 min-height: 72px; | 91 min-height: 72px; |
| 92 } | 92 } |
| 93 | 93 |
| 94 .settings-box .start .label { | 94 .settings-box .start .label { |
| 95 color: var(--google-grey-700); | 95 color: var(--google-grey-700); |
| 96 } | 96 } |
| 97 | 97 |
| 98 .md-select, | 98 .md-select, |
| 99 paper-input { | 99 paper-input { |
| 100 --paper-input-container-color: var(--google-grey-500); | 100 --paper-input-container-color: var(--paper-grey-600); |
| 101 --paper-input-container-input: { | 101 --paper-input-container-input: { |
| 102 font-size: inherit; | 102 font-size: inherit; |
| 103 }; | 103 }; |
| 104 width: 270px; | 104 width: 270px; |
| 105 } | 105 } |
| 106 | 106 |
| 107 #printerNameInput { | 107 #printerNameInput { |
| 108 width: 450px; | 108 width: 450px; |
| 109 } | 109 } |
| 110 | 110 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 | 223 |
| 224 .settings-box .start .label { | 224 .settings-box .start .label { |
| 225 color: var(--google-grey-700); | 225 color: var(--google-grey-700); |
| 226 } | 226 } |
| 227 | 227 |
| 228 .last { | 228 .last { |
| 229 margin-top: 20px; | 229 margin-top: 20px; |
| 230 } | 230 } |
| 231 | 231 |
| 232 paper-input { | 232 paper-input { |
| 233 --paper-input-container-color: var(--google-grey-500); | 233 --paper-input-container-color: var(--paper-grey-600); |
| 234 --paper-input-container-input: { | 234 --paper-input-container-input: { |
| 235 font-size: inherit; | 235 font-size: inherit; |
| 236 border: 1px solid lightgray; | 236 border: 1px solid lightgray; |
| 237 }; | 237 }; |
| 238 --paper-input-container-underline: { | 238 --paper-input-container-underline: { |
| 239 display: none; | 239 display: none; |
| 240 }; | 240 }; |
| 241 --paper-input-container-underline-focus: { | 241 --paper-input-container-underline-focus: { |
| 242 display: none; | 242 display: none; |
| 243 }; | 243 }; |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 <!-- Manufacturer and Model Dialog --> | 369 <!-- Manufacturer and Model Dialog --> |
| 370 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp> | 370 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp> |
| 371 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}" | 371 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}" |
| 372 setup-failed="[[setupFailed]]"> | 372 setup-failed="[[setupFailed]]"> |
| 373 </add-printer-manufacturer-model-dialog> | 373 </add-printer-manufacturer-model-dialog> |
| 374 </template> | 374 </template> |
| 375 | 375 |
| 376 </template> | 376 </template> |
| 377 <script src="cups_add_printer_dialog.js"></script> | 377 <script src="cups_add_printer_dialog.js"></script> |
| 378 </dom-module> | 378 </dom-module> |
| OLD | NEW |