| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.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/polymer/v1_0/iron-dropdown/iron-drop
down.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop
down.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h
tml"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h
tml"> |
| 6 <link rel="import" href="/printing_page/cups_printers_browser_proxy.html"> | 6 <link rel="import" href="/printing_page/cups_printers_browser_proxy.html"> |
| 7 <link rel="import" href="/settings_shared_css.html"> | 7 <link rel="import" href="/settings_shared_css.html"> |
| 8 | 8 |
| 9 <dom-module id="settings-cups-printers-list"> | 9 <dom-module id="settings-cups-printers-list"> |
| 10 <template> | 10 <template> |
| 11 <style include="settings-shared"></style> | 11 <style include="settings-shared"> |
| 12 <style> | |
| 13 #container { | 12 #container { |
| 14 border-top: 1px solid lightgray; | 13 border-top: 1px solid lightgray; |
| 15 display: flex; | 14 display: flex; |
| 16 padding: 2px 20px; | 15 padding: 2px 20px; |
| 17 } | 16 } |
| 18 | 17 |
| 19 .name-column { | 18 .name-column { |
| 20 flex: 1; | 19 flex: 1; |
| 21 margin: 2px; | 20 margin: 2px; |
| 22 } | 21 } |
| (...skipping 26 matching lines...) Expand all Loading... |
| 49 <paper-item on-tap="onRemoveTap_"> | 48 <paper-item on-tap="onRemoveTap_"> |
| 50 $i18n{removePrinter} | 49 $i18n{removePrinter} |
| 51 </paper-item> | 50 </paper-item> |
| 52 <div> | 51 <div> |
| 53 </iron-dropdown> | 52 </iron-dropdown> |
| 54 </div> | 53 </div> |
| 55 </template> | 54 </template> |
| 56 </template> | 55 </template> |
| 57 <script src="cups_printers_list.js"></script> | 56 <script src="cups_printers_list.js"></script> |
| 58 </dom-module> | 57 </dom-module> |
| OLD | NEW |