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..a7811b4f3e8afebcf0ad22d3267c5f1fa3958668 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,9 @@ |
| on-keys-pressed="onSubmit_"></iron-a11y-keys> |
| <paper-input type="text" id="site" autofocus |
| value="{{site_}}" on-input="validate_"></paper-input> |
| + <paper-checkbox id="incognito"> |
| + <div>$i18n{incognitoSiteOnly}</div> |
|
dschuyler
2016/09/01 23:13:49
Does this need the <div>
(Asking because I'm not s
Finnur
2016/09/02 15:44:14
Nope. Totally redundant. Removed.
|
| + </paper-checkbox> |
| </div> |
| <div class="button-container"> |
| <paper-button class="cancel-button" on-tap="onCancelTap_"> |