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

Unified 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, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/login/oobe_welcome.html
diff --git a/chrome/browser/resources/chromeos/login/oobe_welcome.html b/chrome/browser/resources/chromeos/login/oobe_welcome.html
new file mode 100644
index 0000000000000000000000000000000000000000..a666a05a0a23644387048f42ecdba3ed73925346
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/oobe_welcome.html
@@ -0,0 +1,32 @@
+<!-- Copyright 2016 The Chromium Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file. -->
+
+<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html">
+
+<dom-module name="oobe-welcome-md">
+ <link rel="stylesheet" href="oobe_welcome.css">
+ <template>
+ <oobe-card class="fit">
+ <div class="header flex vertical layout end-justified start">
+ <h1 class="welcome-message" i18n-content="networkScreenGreeting"></h1>
+ </div>
+ <div class="footer flex vertical layout justified">
+ <div class="welcome-next flex vertical layout center">
+ <oobe-next-button id="welcomeNextButton" on-tap="onWelcomeNextButtonClicked_"></oobe-next-button>
+ </div>
+ <div class="flex horizontal layout justified">
+ <div class="buttonbox layout vertical">
+ <iron-icon icon="icons:language" class="bottom-button self-center"></iron-icon>
+ <div id="currentLanguage">[[currentLanguage]]</div>
+ </div>
+ <div class="buttonbox layout vertical">
+ <iron-icon icon="icons:accessibility" class="bottom-button self-center"></iron-icon>
+ <div id="accessibilityLabel" i18n-content="accessibilityLink"></div>
+ </div>
+ </div>
+ </div>
+ </oobe-card>
+ </template>
+</dom-module>
+
« 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