Chromium Code Reviews| Index: chrome/browser/resources/settings/site_settings/add_site_dialog.html |
| diff --git a/chrome/browser/resources/settings/site_settings/add_site_dialog.html b/chrome/browser/resources/settings/site_settings/add_site_dialog.html |
| index ecc4b983f737259a8472608b1994ed73cd7673f6..81a3d96d4daeb25e7820c6a4d5cb88bb86f89154 100644 |
| --- a/chrome/browser/resources/settings/site_settings/add_site_dialog.html |
| +++ b/chrome/browser/resources/settings/site_settings/add_site_dialog.html |
| @@ -1,5 +1,6 @@ |
| <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html"> |
| <link rel="import" href="chrome://resources/html/polymer.html"> |
| +<link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11y-keys.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html"> |
| @@ -10,7 +11,11 @@ |
| <dom-module id="add-site-dialog"> |
| <template> |
| - <style include="settings-shared"></style> |
| + <style include="settings-shared"> |
| + #incognito { |
| + margin-top: 15px; |
| + } |
| + </style> |
| <dialog is="cr-dialog" id="dialog"> |
| <div class="title">$i18n{addSiteHeader}</div> |
| <div class="body"> |
| @@ -19,6 +24,10 @@ |
| on-keys-pressed="onSubmit_"></iron-a11y-keys> |
| <paper-input type="text" id="site" autofocus |
| value="{{site_}}" on-input="validate_"></paper-input> |
| + |
|
dschuyler
2016/08/31 21:48:52
nit: is the blank line communicating something? Ma
Finnur
2016/09/01 11:10:15
Done.
|
| + <paper-checkbox id="incognito"> |
| + <div>$i18n{incognitoSiteOnly}</div> |
| + </paper-checkbox> |
| </div> |
| <div class="button-container"> |
| <paper-button class="cancel-button" on-tap="onCancelTap_"> |