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

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: 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..14d06f33f17b56520d4bb9598d945f8eb92079f3
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/oobe_welcome.html
@@ -0,0 +1,33 @@
+<dom-module name="oobe-poly-welcome">
+ <link rel="stylesheet" href="oobe_poly.css">
+ <template>
+ <neon-animated-pages id="animatedPages" class="fit" attr-for-selected="id"
+ entry-animation="slide-from-right-animation"
+ exit-animation="slide-to-left-animation"
+ on-neon-animation-finish="onAnimationFinish_" selected="welcomeSection">
+
+ <neon-animatable id="welcomeSection" class="fit">
+ <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="oobe-poly-welcome-next flex vertical layout center">
+ <oobe-button-next id="oobeWelcomeNextButton" on-tap="onWelcomeNextButtonClicked_"></oobe-button-next>
jdufault 2016/05/11 22:07:43 Does this ID need to be prefixed with oobeWelcome?
Alexander Alekseev 2016/05/13 20:52:34 Done.
+ </div>
+ <div class="oobe-poly-welcome-bottom-menus flex horizontal layout justified">
jdufault 2016/05/11 22:07:43 Rename oobe-poly-welcome-bottom-menus to bottom-me
Alexander Alekseev 2016/05/13 20:52:35 Done.
+ <div class="oobe-poly-welcome-buttonbox layout vertical">
jdufault 2016/05/11 22:07:43 Same, is the prefix needed?
Alexander Alekseev 2016/05/13 20:52:34 Done.
+ <iron-icon icon="icons:language" class="welcome-bottom-button self-center"></iron-icon>
+ <div id="oobePolyWelcomeCurrentLanguage"></div>
jdufault 2016/05/11 22:07:43 Remove the oobePolyWelcome prefix?
Alexander Alekseev 2016/05/13 20:52:34 Done.
+ </div>
+ <div class="oobe-poly-welcome-buttonbox layout vertical">
jdufault 2016/05/11 22:07:43 Remove the oobe-poly-welcome prefix?
Alexander Alekseev 2016/05/13 20:52:34 Done.
+ <iron-icon icon="icons:accessibility" class="welcome-bottom-button self-center"></iron-icon>
+ Accessibility
jdufault 2016/05/11 22:07:43 Can this be internationalized easily?
Alexander Alekseev 2016/05/13 20:52:34 Done.
+ </div>
+ </div>
+ </div>
+ </oobe-card>
+ </neon-animatable>
+ </template>
+</dom-module>
+

Powered by Google App Engine
This is Rietveld 408576698