| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.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="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop
down.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop
down.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-input/iron-input.h
tml"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-input/iron-input.h
tml"> |
| 6 <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-button/paper-butt
on.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
-container.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
-container.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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 <dom-module id="drop-down-search-box"> | 57 <dom-module id="drop-down-search-box"> |
| 58 <template> | 58 <template> |
| 59 <style include="settings-shared cups-add-printer-dialog-style"> | 59 <style include="settings-shared cups-add-printer-dialog-style"> |
| 60 iron-dropdown, | 60 iron-dropdown, |
| 61 paper-input-container { | 61 paper-input-container { |
| 62 width: 270px; | 62 width: 270px; |
| 63 } | 63 } |
| 64 | 64 |
| 65 paper-input-container { | 65 paper-input-container { |
| 66 --paper-input-container-color: var(--google-grey-500); | 66 --paper-input-container-color: var(--paper-grey-600); |
| 67 --paper-input-container-input: { | 67 --paper-input-container-input: { |
| 68 font-size: inherit; | 68 font-size: inherit; |
| 69 }; | 69 }; |
| 70 } | 70 } |
| 71 | 71 |
| 72 iron-dropdown .dropdown-content { | 72 iron-dropdown .dropdown-content { |
| 73 background-color: white; | 73 background-color: white; |
| 74 box-shadow: 0 2px 6px var(--paper-grey-500); | 74 box-shadow: 0 2px 6px var(--paper-grey-500); |
| 75 min-width: 128px; | 75 min-width: 128px; |
| 76 padding: 8px 0; | 76 padding: 8px 0; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 <div class="body"> | 124 <div class="body"> |
| 125 <content select=".dialog-body"></content> | 125 <content select=".dialog-body"></content> |
| 126 </div> | 126 </div> |
| 127 <div class="button-container"> | 127 <div class="button-container"> |
| 128 <content select=".dialog-buttons"></content> | 128 <content select=".dialog-buttons"></content> |
| 129 </div> | 129 </div> |
| 130 </dialog> | 130 </dialog> |
| 131 </template> | 131 </template> |
| 132 <script src="cups_add_printer_dialog_util.js"></script> | 132 <script src="cups_add_printer_dialog_util.js"></script> |
| 133 </dom-module> | 133 </dom-module> |
| OLD | NEW |