Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6207)

Unified Diff: chrome/browser/resources/settings/people_page/lock_screen.html

Issue 2849663002: [MD settings] replace secondary-action with separator (Closed)
Patch Set: merge with master Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/people_page/lock_screen.html
diff --git a/chrome/browser/resources/settings/people_page/lock_screen.html b/chrome/browser/resources/settings/people_page/lock_screen.html
index 8e89be634237be049e2d5253ad8bb772486b68fa..b7f13e876d2a827ef1a2c85adfb7375a27446946 100644
--- a/chrome/browser/resources/settings/people_page/lock_screen.html
+++ b/chrome/browser/resources/settings/people_page/lock_screen.html
@@ -121,20 +121,19 @@
</template>
</div>
</div>
- <div class="secondary-action">
- <template is="dom-if" if="[[!easyUnlockEnabled_]]">
- <paper-button id="easyUnlockSetup" class="secondary-button"
- on-tap="onEasyUnlockSetupTap_">
- $i18n{easyUnlockSetupButton}
- </paper-button>
- </template>
- <template is="dom-if" if="[[easyUnlockEnabled_]]">
- <paper-button id="easyUnlockTurnOff" class="secondary-button"
- on-tap="onEasyUnlockTurnOffTap_">
- $i18n{easyUnlockTurnOffButton}
- </paper-button>
- </template>
- </div>
+ <div class="separator"></div>
+ <template is="dom-if" if="[[!easyUnlockEnabled_]]">
+ <paper-button id="easyUnlockSetup" class="secondary-button"
+ on-tap="onEasyUnlockSetupTap_">
+ $i18n{easyUnlockSetupButton}
+ </paper-button>
+ </template>
+ <template is="dom-if" if="[[easyUnlockEnabled_]]">
+ <paper-button id="easyUnlockTurnOff" class="secondary-button"
+ on-tap="onEasyUnlockTurnOffTap_">
+ $i18n{easyUnlockTurnOffButton}
+ </paper-button>
+ </template>
</div>
</template>

Powered by Google App Engine
This is Rietveld 408576698