| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 margin-top: 0; | 110 margin-top: 0; |
| 111 padding-top: 10px; | 111 padding-top: 10px; |
| 112 } | 112 } |
| 113 | 113 |
| 114 #dialog .button-container ::content paper-button { | 114 #dialog .button-container ::content paper-button { |
| 115 font-size: 107.69%; /* 14px / 13px */ | 115 font-size: 107.69%; /* 14px / 13px */ |
| 116 font-weight: bold; | 116 font-weight: bold; |
| 117 } | 117 } |
| 118 </style> | 118 </style> |
| 119 | 119 |
| 120 <dialog is="cr-dialog" id="dialog"> | 120 <dialog is="cr-dialog" id="dialog" close-text="$i18n{close}"> |
| 121 <div class="title"> | 121 <div class="title"> |
| 122 <content select=".dialog-title"></content> | 122 <content select=".dialog-title"></content> |
| 123 </div> | 123 </div> |
| 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 |