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

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

Issue 2398383002: ChromeOS: Update Welcome screen material design OOBE. (Closed)
Patch Set: Fixed Roboto-Meduim font and several font sizes. Created 4 years, 2 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 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html ">
7
8 <!--
9 OOBE Welcome screen
10 -->
11 <dom-module name="oobe-welcome-dialog">
12 <template>
13 <link rel="stylesheet" href="oobe_dialog_host.css">
14 <link rel="stylesheet" href="oobe_welcome_dialog.css">
15 <div class="layout horizontal flex">
16 <div class="vertical-margin"></div>
17 <div class="welcome-content flex layout vertical center">
18 <h1 id="title" i18n-content="networkScreenGreeting"></h1>
19 <img id="welcomeIllustration" src="images/welcome_illustration_2x.png">
michaelpg 2016/10/09 21:02:51 shouldn't this depend on screen density?
Alexander Alekseev 2016/10/11 00:01:53 Yes, it should. But this is going to be another CL
michaelpg 2016/10/14 16:45:21 add a TODO
Alexander Alekseev 2016/10/15 00:23:16 Done.
20 <div class="flex"></div>
21 <div id="buttons" class="layout horizontal center">
22 <oobe-welcome-secondary-button icon="icons:language"
23 on-tap="onLanguageClicked_">
24 <div>[[currentLanguage]]</div>
25 </oobe-welcome-secondary-button>
26 <oobe-welcome-secondary-button icon="icons:accessibility"
27 on-tap="onAccessibilityClicked_">
28 <div i18n-content="accessibilityLink"></div>
29 </oobe-welcome-secondary-button>
30 <div class="flex"></div>
31 <oobe-text-button inverse on-tap="onNextClicked_">
32 <div i18n-content="welcomeNextButtonText"></div>
33 </oobe-text-button>
34 </div>
35 <div id="bottom-margin"></div>
36 </div>
37 <div class="vertical-margin"></div>
38 </div>
39 </template>
40 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698