| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/action_link.html"> | 1 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 2 <link rel="import" href="chrome://resources/html/action_link_css.html"> | 2 <link rel="import" href="chrome://resources/html/action_link_css.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="/printing_page/cups_add_printer_dialog.html"> | 4 <link rel="import" href="cups_add_printer_dialog.html"> |
| 5 <link rel="import" href="/printing_page/cups_printers_list.html"> | 5 <link rel="import" href="cups_printers_list.html"> |
| 6 <link rel="import" href="/settings_shared_css.html"> | 6 <link rel="import" href="../settings_shared_css.html"> |
| 7 | 7 |
| 8 <dom-module id="settings-cups-printers"> | 8 <dom-module id="settings-cups-printers"> |
| 9 <template> | 9 <template> |
| 10 <style include="settings-shared action-link"> | 10 <style include="settings-shared action-link"> |
| 11 .settings-box .start { | 11 .settings-box .start { |
| 12 color: var(--paper-grey-500); | 12 color: var(--paper-grey-500); |
| 13 } | 13 } |
| 14 | 14 |
| 15 .settings-box .start .secondary { | 15 .settings-box .start .secondary { |
| 16 color: var(--paper-grey-800); | 16 color: var(--paper-grey-800); |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 <div class="center" id="addPrinterErrorMessage" hidden> | 72 <div class="center" id="addPrinterErrorMessage" hidden> |
| 73 <span>$i18n{printerAddedFailedMessage}</span> | 73 <span>$i18n{printerAddedFailedMessage}</span> |
| 74 <a is="action-link" on-tap="onAddPrinterTap_"> | 74 <a is="action-link" on-tap="onAddPrinterTap_"> |
| 75 $i18n{printerAddedTryAgainMessage} | 75 $i18n{printerAddedTryAgainMessage} |
| 76 </a> | 76 </a> |
| 77 </div> | 77 </div> |
| 78 </div> | 78 </div> |
| 79 </template> | 79 </template> |
| 80 <script src="cups_printers.js"></script> | 80 <script src="cups_printers.js"></script> |
| 81 </dom-module> | 81 </dom-module> |
| OLD | NEW |