Chromium Code Reviews| Index: chrome/browser/resources/chromeos/login/oobe_buttons.html |
| diff --git a/chrome/browser/resources/chromeos/login/oobe_buttons.html b/chrome/browser/resources/chromeos/login/oobe_buttons.html |
| index 47fed513a4115359db0cf7f6af5a6ea7a4f69609..d4d0d8be4d34625c335b1887914a4ddc462a8e58 100644 |
| --- a/chrome/browser/resources/chromeos/login/oobe_buttons.html |
| +++ b/chrome/browser/resources/chromeos/login/oobe_buttons.html |
| @@ -39,7 +39,9 @@ |
| <template> |
| <paper-button id="textButton" on-tap="onClick_" disabled="[[disabled]]" |
| inverse$="[[inverse]]"> |
| - <content></content> |
| + <div id="container" class="flex layout horizontal center center-justified self-stretch"> |
| + <content></content> |
| + </div> |
| </paper-button> |
| </template> |
| </dom-module> |
| @@ -82,10 +84,13 @@ |
| <dom-module id="oobe-welcome-secondary-button"> |
| <link rel="stylesheet" href="oobe_welcome_secondary_button.css"> |
| <template> |
| - <paper-button id="container" class="layout horizontal center" |
| - aria-label="[[ariaLabel]]"> |
| - <iron-icon icon="[[icon]]" class="oobe-icon"></iron-icon> |
| - <content></content> |
| + <paper-button id="button" aria-label="[[ariaLabel]]"> |
| + <div id="container" class="flex layout vertical center self-stretch"> |
| + <div id="subcontainer" class="flex layout horizontal center self-stretch"> |
|
michaelpg
2016/11/14 21:28:16
keep lines to 80 characters
Alexander Alekseev
2016/11/14 22:19:04
Done.
|
| + <iron-icon icon="[[icon]]" class="oobe-icon"></iron-icon> |
| + <content></content> |
| + </div> |
| + </div> |
| </paper-button> |
| </template> |
| </dom-module> |