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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 <link rel="stylesheet" href="oobe_dialog_host.css"> | 50 <link rel="stylesheet" href="oobe_dialog_host.css"> |
51 <link rel="stylesheet" href="oobe_dialog.css"> | 51 <link rel="stylesheet" href="oobe_dialog.css"> |
52 <div id="header-container"> | 52 <div id="header-container"> |
53 <div class="oobe-icon-div"> | 53 <div class="oobe-icon-div"> |
54 <content select=".oobe-icon"></content> | 54 <content select=".oobe-icon"></content> |
55 </div> | 55 </div> |
56 <div class="oobe-header layout vertical"> | 56 <div class="oobe-header layout vertical"> |
57 <content select=".header"></content> | 57 <content select=".header"></content> |
58 </div> | 58 </div> |
59 </div> | 59 </div> |
60 <div id="footer-container" class="flex layout vertical"> | 60 <div id="footer-container" noFooter$="[[noFooter]]" |
| 61 class="flex layout vertical"> |
61 <content select=".footer"></content> | 62 <content select=".footer"></content> |
62 </div> | 63 </div> |
63 <template is="dom-if" if="[[hasButtons]]"> | 64 <template is="dom-if" if="[[hasButtons]]"> |
64 <div id="oobe-bottom" class="layout horizontal center"> | 65 <div id="oobe-bottom" hideShadow$="[[hideShadow]]" |
| 66 class="layout horizontal center"> |
65 <content select=".bottom-buttons"></content> | 67 <content select=".bottom-buttons"></content> |
66 </div> | 68 </div> |
67 </template> | 69 </template> |
68 </template> | 70 </template> |
69 </dom-module> | 71 </dom-module> |
70 | 72 |
OLD | NEW |