Chromium Code Reviews| Index: chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html |
| diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html |
| index 45f2b0d9ce7fd763b17dcb1ff7ed8ce60038d6ec..094e1a7ea09a8865af65ab30f1bfa3f4c8084f09 100644 |
| --- a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html |
| +++ b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html |
| @@ -2,6 +2,7 @@ |
| <link rel="import" href="chrome://resources/html/cr.html"> |
| <link rel="import" href="chrome://resources/html/polymer.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-animatable.html"> |
| +<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button-light.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/paper-toggle-button.html"> |
| <link rel="import" href="/passwords_and_forms_page/autofill_section.html"> |
| <link rel="import" href="/passwords_and_forms_page/passwords_section.html"> |
| @@ -17,27 +18,39 @@ |
| <style include="settings-shared"></style> |
| <settings-animated-pages id="pages" section="passwordsAndForms"> |
| <neon-animatable route-path="default"> |
| - <div class="settings-box first two-line" on-tap="onAutofillTap_" |
| - id="autofillManagerButton" |
| - actionable$="[[prefs.autofill.enabled.value]]"> |
| - <div class="start"> |
| - <div>$i18n{autofill}</div> |
| - <div class="secondary">$i18n{autofillDetail}</div> |
| + <div class="settings-box first two-line"> |
| + <div class="middle two-line" on-tap="onAutofillTap_" |
| + id="autofillManagerButton" |
| + actionable$="[[prefs.autofill.enabled.value]]"> |
| + <div class="flex"> |
| + <div>$i18n{autofill}</div> |
| + <div class="secondary">$i18n{autofillDetail}</div> |
| + </div> |
| + <button class="icon-arrow-right" is="paper-icon-button-light"> |
| + </button> |
|
dschuyler
2016/09/23 17:29:18
This is another example where the arrow is pointin
|
| + </div> |
| + <div class="secondary-action"> |
| + <paper-toggle-button id="autofillToggle" |
| + checked="{{prefs.autofill.enabled.value}}"> |
| + </paper-toggle-button> |
| </div> |
| - <paper-toggle-button id="autofillToggle" |
| - checked="{{prefs.autofill.enabled.value}}"> |
| - </paper-toggle-button> |
| </div> |
| - <div class="settings-box two-line" on-tap="onPasswordsTap_" |
| - id="passwordManagerButton" |
| - actionable$="[[prefs.profile.password_manager_enabled.value]]"> |
| - <div class="start"> |
| - <div>$i18n{passwords}</div> |
| - <div class="secondary">$i18n{passwordsDetail}</div> |
| + <div class="settings-box two-line"> |
| + <div class="middle two-line" on-tap="onPasswordsTap_" |
| + id="passwordManagerButton" |
| + actionable$="[[prefs.profile.password_manager_enabled.value]]"> |
| + <div class="flex"> |
| + <div>$i18n{passwords}</div> |
| + <div class="secondary">$i18n{passwordsDetail}</div> |
| + </div> |
| + <button class="icon-arrow-right" is="paper-icon-button-light"> |
| + </button> |
| + </div> |
| + <div class="secondary-action"> |
| + <paper-toggle-button id="passwordToggle" |
| + checked="{{prefs.profile.password_manager_enabled.value}}"> |
| + </paper-toggle-button> |
| </div> |
| - <paper-toggle-button id="passwordToggle" |
| - checked="{{prefs.profile.password_manager_enabled.value}}"> |
| - </paper-toggle-button> |
| </div> |
| </neon-animatable> |
| <template is="dom-if" route-path="/autofill"> |