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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 | 98 |
99 .settings-box.two-line { | 99 .settings-box.two-line { |
100 min-height: 72px; | 100 min-height: 72px; |
101 } | 101 } |
102 | 102 |
103 .settings-box .start .label { | 103 .settings-box .start .label { |
104 color: var(--google-grey-700); | 104 color: var(--google-grey-700); |
105 } | 105 } |
106 | 106 |
107 .md-select { | 107 .md-select { |
108 width: calc(270px + var(--md-side-padding)); | 108 width: calc(270px + var(--md-select-side-padding)); |
109 } | 109 } |
110 | 110 |
111 .md-select-underline { | 111 .md-select-underline { |
112 -webkit-margin-start: 0; | 112 -webkit-margin-start: 0; |
113 } | 113 } |
114 | 114 |
115 paper-input { | 115 paper-input { |
116 --paper-input-container-color: var(--paper-grey-600); | 116 --paper-input-container-color: var(--paper-grey-600); |
117 --paper-input-container-input: { | 117 --paper-input-container-input: { |
118 font-size: inherit; | 118 font-size: inherit; |
(...skipping 278 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 |