| OLD | NEW |
| 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
| 4 | 4 |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 7 | 7 |
| 8 <!-- | 8 <!-- |
| 9 Simple OOBE dialog which should be used for OOBE UI elements. | 9 Simple OOBE dialog which should be used for OOBE UI elements. |
| 10 It has correct size and padding. It can display top left icon, and has | 10 It has correct size and padding. It can display top left icon, and has |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 <link rel="stylesheet" href="oobe_dialog_host.css"> | 36 <link rel="stylesheet" href="oobe_dialog_host.css"> |
| 37 <link rel="stylesheet" href="oobe_dialog.css"> | 37 <link rel="stylesheet" href="oobe_dialog.css"> |
| 38 <div id="header-container"> | 38 <div id="header-container"> |
| 39 <div class="oobe-icon-div"> | 39 <div class="oobe-icon-div"> |
| 40 <content select=".oobe-icon"></content> | 40 <content select=".oobe-icon"></content> |
| 41 </div> | 41 </div> |
| 42 <div class="oobe-header layout vertical"> | 42 <div class="oobe-header layout vertical"> |
| 43 <content select=".header"></content> | 43 <content select=".header"></content> |
| 44 </div> | 44 </div> |
| 45 </div> | 45 </div> |
| 46 <div id="footer-container" class="flex"> | 46 <div id="footer-container" class="flex layout vertical"> |
| 47 <content select=".footer"></content> | 47 <content select=".footer"></content> |
| 48 </div> | 48 </div> |
| 49 <template is="dom-if" if="[[hasButtons]]"> | 49 <template is="dom-if" if="[[hasButtons]]"> |
| 50 <div id="oobe-bottom" class="layout horizontal center"> | 50 <div id="oobe-bottom" class="layout horizontal center"> |
| 51 <content select=".bottom-buttons"></content> | 51 <content select=".bottom-buttons"></content> |
| 52 </div> | 52 </div> |
| 53 </template> | 53 </template> |
| 54 </template> | 54 </template> |
| 55 </dom-module> | 55 </dom-module> |
| 56 | 56 |
| OLD | NEW |