Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(538)

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_welcome.html

Issue 1965913005: ChromeOS: Implement minumal material design OOBE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix presubmit. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe_welcome.css ('k') | chrome/browser/resources/chromeos/login/oobe_welcome.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698