| OLD | NEW |
| (Empty) | |
| 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 |
| 3 found in the LICENSE file. --> |
| 4 |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 6 |
| 7 <dom-module name="oobe-welcome-md"> |
| 8 <link rel="stylesheet" href="oobe_welcome.css"> |
| 9 <template> |
| 10 <oobe-card class="fit"> |
| 11 <div class="header flex vertical layout end-justified start"> |
| 12 <h1 class="welcome-message" i18n-content="networkScreenGreeting"></h1> |
| 13 </div> |
| 14 <div class="footer flex vertical layout justified"> |
| 15 <div class="welcome-next flex vertical layout center"> |
| 16 <oobe-next-button id="welcomeNextButton" on-tap="onWelcomeNextButtonCl
icked_"></oobe-next-button> |
| 17 </div> |
| 18 <div class="flex horizontal layout justified"> |
| 19 <div class="buttonbox layout vertical"> |
| 20 <iron-icon icon="icons:language" class="bottom-button self-center"><
/iron-icon> |
| 21 <div id="currentLanguage">[[currentLanguage]]</div> |
| 22 </div> |
| 23 <div class="buttonbox layout vertical"> |
| 24 <iron-icon icon="icons:accessibility" class="bottom-button self-cent
er"></iron-icon> |
| 25 <div id="accessibilityLabel" i18n-content="accessibilityLink"></div> |
| 26 </div> |
| 27 </div> |
| 28 </div> |
| 29 </oobe-card> |
| 30 </template> |
| 31 </dom-module> |
| 32 |
| OLD | NEW |