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

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

Issue 2688153004: ChromeOS OOBE: fix focus flow in MD-OOBE. (Closed)
Patch Set: Created 3 years, 10 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
1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. 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 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 4
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 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 "> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html ">
7 7
8 <!-- 8 <!--
9 OOBE Welcome screen 9 OOBE Welcome screen
10 --> 10 -->
11 <dom-module name="oobe-welcome-dialog"> 11 <dom-module name="oobe-welcome-dialog">
12 <template> 12 <template>
13 <link rel="stylesheet" href="oobe_dialog_host.css"> 13 <link rel="stylesheet" href="oobe_dialog_host.css">
14 <link rel="stylesheet" href="oobe_welcome_dialog.css"> 14 <link rel="stylesheet" href="oobe_welcome_dialog.css">
15 <div class="layout horizontal flex"> 15 <div class="layout horizontal flex">
16 <div class="vertical-margin"></div> 16 <div class="vertical-margin"></div>
17 <div class="welcome-content flex layout vertical center"> 17 <div class="welcome-content flex layout vertical center">
18 <h1 id="title">$i18n{networkScreenGreeting}</h1> 18 <h1 id="title">$i18n{networkScreenGreeting}</h1>
19 <!-- TODO(alemate): Display images depending on screen ppi. --> 19 <!-- TODO(alemate): Display images depending on screen ppi. -->
20 <img id="welcomeIllustration" src="images/welcome_illustration_2x.png"> 20 <img id="welcomeIllustration" src="images/welcome_illustration_2x.png">
21 <div class="flex"></div> 21 <div class="flex"></div>
22 <div id="buttons" class="layout horizontal center"> 22 <div id="buttons" class="layout horizontal center">
23 <oobe-welcome-secondary-button icon="icons:language" 23 <oobe-welcome-secondary-button id="languageSelectionButton"
24 on-tap="onLanguageClicked_" 24 icon="icons:language" on-tap="onLanguageClicked_"
25 aria-label="[[formatMessage_('languageButtonLabel', 25 aria-label="[[formatMessage_('languageButtonLabel',
26 currentLanguage)]]"> 26 currentLanguage)]]">
27 <div>[[currentLanguage]]</div> 27 <div>[[currentLanguage]]</div>
28 </oobe-welcome-secondary-button> 28 </oobe-welcome-secondary-button>
29 <oobe-welcome-secondary-button icon="icons:accessibility" 29 <oobe-welcome-secondary-button id="accessibilitySettingsButton"
30 on-tap="onAccessibilityClicked_"> 30 icon="icons:accessibility" on-tap="onAccessibilityClicked_">
31 <div>$i18n{accessibilityLink}</div> 31 <div>$i18n{accessibilityLink}</div>
32 </oobe-welcome-secondary-button> 32 </oobe-welcome-secondary-button>
33 <oobe-welcome-secondary-button icon="oobe-welcome-64:timezone" 33 <oobe-welcome-secondary-button id="timezoneSettingsButton"
34 on-tap="onTimezoneClicked_" hidden="[[!timezoneButtonVisible]]"> 34 icon="oobe-welcome-64:timezone" on-tap="onTimezoneClicked_"
35 hidden="[[!timezoneButtonVisible]]">
35 <div>$i18n{timezoneButtonText}</div> 36 <div>$i18n{timezoneButtonText}</div>
36 </oobe-welcome-secondary-button> 37 </oobe-welcome-secondary-button>
37 <div class="flex"></div> 38 <div class="flex"></div>
38 <oobe-text-button inverse on-tap="onNextClicked_"> 39 <oobe-text-button id="welcomeNextButton"
40 inverse on-tap="onNextClicked_">
39 <div>$i18n{welcomeNextButtonText}</div> 41 <div>$i18n{welcomeNextButtonText}</div>
40 </oobe-text-button> 42 </oobe-text-button>
41 </div> 43 </div>
42 <div id="bottom-margin"></div> 44 <div id="bottom-margin"></div>
43 </div> 45 </div>
44 <div class="vertical-margin"></div> 46 <div class="vertical-margin"></div>
45 </div> 47 </div>
46 </template> 48 </template>
47 </dom-module> 49 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698