| 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/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11
y-keys.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11
y-keys.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="/i18n_setup.html"> | 7 <link rel="import" href="../i18n_setup.html"> |
| 8 <link rel="import" href="/settings_shared_css.html"> | 8 <link rel="import" href="../settings_shared_css.html"> |
| 9 <link rel="import" href="/site_settings/constants.html"> | 9 <link rel="import" href="constants.html"> |
| 10 <link rel="import" href="/site_settings/site_settings_behavior.html"> | 10 <link rel="import" href="site_settings_behavior.html"> |
| 11 | 11 |
| 12 <dom-module id="add-site-dialog"> | 12 <dom-module id="add-site-dialog"> |
| 13 <template> | 13 <template> |
| 14 <style include="settings-shared"> | 14 <style include="settings-shared"> |
| 15 #incognito { | 15 #incognito { |
| 16 margin-bottom: 2px; | 16 margin-bottom: 2px; |
| 17 margin-top: 15px; | 17 margin-top: 15px; |
| 18 } | 18 } |
| 19 </style> | 19 </style> |
| 20 <dialog is="cr-dialog" id="dialog"> | 20 <dialog is="cr-dialog" id="dialog"> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 35 </paper-button> | 35 </paper-button> |
| 36 <paper-button class="action-button" id="add" | 36 <paper-button class="action-button" id="add" |
| 37 on-tap="onSubmit_" disabled> | 37 on-tap="onSubmit_" disabled> |
| 38 $i18n{add} | 38 $i18n{add} |
| 39 </paper-button> | 39 </paper-button> |
| 40 </div> | 40 </div> |
| 41 </dialog> | 41 </dialog> |
| 42 </template> | 42 </template> |
| 43 <script src="add_site_dialog.js"></script> | 43 <script src="add_site_dialog.js"></script> |
| 44 </dom-module> | 44 </dom-module> |
| OLD | NEW |