| OLD | NEW |
| 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-content="networkScreenGreeting"></h1> | 18 <h1 id="title" i18n-content="networkScreenGreeting"></h1> |
| 19 <!-- TODO(alemate): Display images depending on screen ppi. --> | 19 <img id="welcomeIllustration" |
| 20 <img id="welcomeIllustration" src="images/welcome_illustration_2x.png"> | 20 srcset="images/welcome_illustration_1x.png 1x, |
| 21 images/welcome_illustration_2x.png 2x"> |
| 21 <div hidden="[[!debuggingLinkVisible]]"> | 22 <div hidden="[[!debuggingLinkVisible]]"> |
| 22 <a href="#" i18n-content="debuggingFeaturesLink" | 23 <a href="#" i18n-content="debuggingFeaturesLink" |
| 23 on-tap="onDebuggingLinkClicked_"></a> | 24 on-tap="onDebuggingLinkClicked_"></a> |
| 24 </div> | 25 </div> |
| 25 <div class="flex"></div> | 26 <div class="flex"></div> |
| 26 <div id="buttons" class="layout horizontal center"> | 27 <div id="buttons" class="layout horizontal center"> |
| 27 <oobe-welcome-secondary-button id="languageSelectionButton" | 28 <oobe-welcome-secondary-button id="languageSelectionButton" |
| 28 icon="icons:language" on-tap="onLanguageClicked_" | 29 icon="icons:language" on-tap="onLanguageClicked_" |
| 29 aria-label="[[formatMessage_('languageButtonLabel', | 30 aria-label="[[formatMessage_('languageButtonLabel', |
| 30 currentLanguage)]]"> | 31 currentLanguage)]]"> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 44 inverse on-tap="onNextClicked_"> | 45 inverse on-tap="onNextClicked_"> |
| 45 <div i18n-content="welcomeNextButtonText"></div> | 46 <div i18n-content="welcomeNextButtonText"></div> |
| 46 </oobe-text-button> | 47 </oobe-text-button> |
| 47 </div> | 48 </div> |
| 48 <div id="bottom-margin"></div> | 49 <div id="bottom-margin"></div> |
| 49 </div> | 50 </div> |
| 50 <div class="vertical-margin"></div> | 51 <div class="vertical-margin"></div> |
| 51 </div> | 52 </div> |
| 52 </template> | 53 </template> |
| 53 </dom-module> | 54 </dom-module> |
| OLD | NEW |