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

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: 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 unified diff | Download patch
OLDNEW
(Empty)
1 <dom-module name="oobe-poly-welcome">
2 <link rel="stylesheet" href="oobe_poly.css">
3 <template>
4 <neon-animated-pages id="animatedPages" class="fit" attr-for-selected="id"
5 entry-animation="slide-from-right-animation"
6 exit-animation="slide-to-left-animation"
7 on-neon-animation-finish="onAnimationFinish_" selected="welcomeSection">
8
9 <neon-animatable id="welcomeSection" class="fit">
10 <oobe-card class="fit">
11 <div class="header flex vertical layout end-justified start">
12 <h1 class="welcome-message" i18n-content="networkScreenGreeting"></h 1>
13 </div>
14 <div class="footer flex vertical layout justified">
15 <div class="oobe-poly-welcome-next flex vertical layout center">
16 <oobe-button-next id="oobeWelcomeNextButton" on-tap="onWelcomeNext ButtonClicked_"></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.
17 </div>
18 <div class="oobe-poly-welcome-bottom-menus flex horizontal layout ju stified">
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.
19 <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.
20 <iron-icon icon="icons:language" class="welcome-bottom-button se lf-center"></iron-icon>
21 <div id="oobePolyWelcomeCurrentLanguage"></div>
jdufault 2016/05/11 22:07:43 Remove the oobePolyWelcome prefix?
Alexander Alekseev 2016/05/13 20:52:34 Done.
22 </div>
23 <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.
24 <iron-icon icon="icons:accessibility" class="welcome-bottom-butt on self-center"></iron-icon>
25 Accessibility
jdufault 2016/05/11 22:07:43 Can this be internationalized easily?
Alexander Alekseev 2016/05/13 20:52:34 Done.
26 </div>
27 </div>
28 </div>
29 </oobe-card>
30 </neon-animatable>
31 </template>
32 </dom-module>
33
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698