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

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: Update after review. 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-welcome-md">
2 <style>
3 :host {
4 display: flex;
5 flex-direction: column;
6 font-size: 18px;
7 overflow: hidden;
8 position: relative;
9 }
10
11 paper-dialog {
dzhioev_at_google 2016/05/25 01:01:32 not used
Alexander Alekseev 2016/05/25 23:47:29 Done.
12 --paper-dialog-title: {
13 font-size: 15px;
14 };
15 width: 384px;
16 }
17
18 #oobe-welcome-md .buttonbox {
19 font-size: 32px;
20 padding: 15px 24px 24px;
21 width: 100px;
22 }
23
24 #oobe-welcome-md .welcome-next {
25 padding: 15px 24px 24px;
26 }
27
28 #oobe-welcome-md .bottom-button {
29 --iron-icon-height: 32px;
30 --iron-icon-width: 32px;
31 }
32 </style>
33 <template>
34 <neon-animated-pages id="animatedPages" class="fit" attr-for-selected="id"
dzhioev_at_google 2016/05/25 01:01:32 We don't need animations yet. Please remove.
Alexander Alekseev 2016/05/25 23:47:29 Done.
35 entry-animation="slide-from-right-animation"
36 exit-animation="slide-to-left-animation"
37 on-neon-animation-finish="onAnimationFinish_" selected="welcomeSection">
38
39 <neon-animatable id="welcomeSection" class="fit">
40 <oobe-card class="fit">
41 <div class="header flex vertical layout end-justified start">
42 <h1 class="welcome-message" i18n-content="networkScreenGreeting"></h 1>
43 </div>
44 <div class="footer flex vertical layout justified">
45 <div class="welcome-next flex vertical layout center">
46 <oobe-next-button id="welcomeNextButton" on-tap="onWelcomeNextButt onClicked_"></oobe-next-button>
47 </div>
48 <div class="flex horizontal layout justified">
49 <div class="buttonbox layout vertical">
50 <iron-icon icon="icons:language" class="bottom-button self-cente r"></iron-icon>
51 <div id="currentLanguage">[[currentLanguage]]</div>
52 </div>
53 <div class="buttonbox layout vertical">
54 <iron-icon icon="icons:accessibility" class="bottom-button self- center"></iron-icon>
55 <div id="accessibilityLabel" i18n-content="accessibilityLink"></ div>
56 </div>
57 </div>
58 </div>
59 </oobe-card>
60 </neon-animatable>
61 </template>
62 </dom-module>
63
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698