| Index: chrome/browser/resources/chromeos/login/oobe_dialog.html
|
| diff --git a/chrome/browser/resources/chromeos/login/oobe_dialog.html b/chrome/browser/resources/chromeos/login/oobe_dialog.html
|
| index 80b000c4aa7bc34aaf5c25153fd329d2b83dd2c6..cd0985a0833ee587fb57a217e133ff9b5446af45 100644
|
| --- a/chrome/browser/resources/chromeos/login/oobe_dialog.html
|
| +++ b/chrome/browser/resources/chromeos/login/oobe_dialog.html
|
| @@ -17,6 +17,8 @@
|
| </div>
|
| <oobe-input-form class="footer" ...>
|
| </oobe-input-form>
|
| + <oobe-text-button class="footer" label="OK" ...>
|
| + </oobe-text-button>
|
| </oobe-dialog>
|
|
|
| Add class |header| to all which you want to go inside the header. Similar
|
| @@ -37,9 +39,12 @@
|
| <div class="footer-container flex vertical layout">
|
| <content select=".footer"></content>
|
| </div>
|
| - <div id="bottom-overlay" class="overlay"></div>
|
| </div>
|
| - <div id="full-overlay" class="overlay"></div>
|
| + <template is="dom-if" if="[[hasButtons]]">
|
| + <div id="oobe-bottom" class="layout horizontal end-justified">
|
| + <content select=".bottom-buttons"></content>
|
| + </div>
|
| + </template>
|
| </template>
|
| </dom-module>
|
|
|
|
|