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

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

Issue 2785733003: MD Settings: Center Pin keyboard in setup pin in settings. (Closed)
Patch Set: Fixed patch set 1 errors. Created 3 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/people_page/setup_pin_dialog.html
diff --git a/chrome/browser/resources/settings/people_page/setup_pin_dialog.html b/chrome/browser/resources/settings/people_page/setup_pin_dialog.html
index 6ff721fc3a4de21eff6ae1cc4276b8b9eedfc53d..040c5cbc932ba25c5920f9ee7f196d66a5b87ddf 100644
--- a/chrome/browser/resources/settings/people_page/setup_pin_dialog.html
+++ b/chrome/browser/resources/settings/people_page/setup_pin_dialog.html
@@ -10,8 +10,7 @@
<dom-module id="settings-setup-pin-dialog">
<template>
- <style include="settings-shared"></style>
- <style>
stevenjb 2017/03/31 01:53:34 heh, oops!
+ <style include="settings-shared">
.warning {
color: var(--paper-grey-700);
}
@@ -28,7 +27,7 @@
--iron-icon-fill-color: var(--paper-red-500);
}
- .align-center {
+ #pinKeyboardDiv {
justify-content: center;
}
</style>
@@ -46,9 +45,9 @@
</div>
<!-- Pin keyboard -->
- <div class="align-center settings-box continuation">
+ <div id="pinKeyboardDiv" class="settings-box continuation">
<pin-keyboard id="pinKeyboard" on-pin-change="onPinChange_"
- on-submit="onPinSubmit_" value="{{pinKeyboardValue_}}">
+ on-submit="onPinSubmit_" value="{{pinKeyboardValue_}}">
</pin-keyboard>
</div>
@@ -58,7 +57,7 @@
</paper-button>
<paper-button class="action-button" on-tap="onPinSubmit_"
- disabled$="[[!enableSubmit_]]">
+ disabled$="[[!enableSubmit_]]">
<span>[[getContinueMessage_(isConfirmStep_)]]</span>
</paper-button>
</div>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698