Chromium Code Reviews| 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..149b29e7fffb030b2f0cb3b653813b2597be35c6 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,11 @@ |
| <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> |
| + <div id="oobe-bottom" class="layout horizontal end-justified" |
| + hidden="[[!hasButtons]]"> |
|
michaelpg
2016/07/29 06:26:49
if you'd prefer, you can make hasButtons just a no
stevenjb
2016/07/29 16:11:52
Or use <template is="dom-if" if="[[hasButtons]]">
Alexander Alekseev
2016/07/30 00:52:50
Done.
|
| + <content select=".bottom-buttons"></content> |
| + </div> |
| </template> |
| </dom-module> |