OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <title>$i18n{headerText}</title> |
| 5 |
| 6 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 7 <link rel="import" href="chrome://resources/html/cr.html"> |
| 8 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 9 <link rel="import" href="chrome://resources/html/util.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.h
tml"> |
| 11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht
ml"> |
| 12 |
| 13 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 14 <link rel="stylesheet" href="/welcome.css"> |
| 15 |
| 16 <script src="/welcome.js"></script> |
| 17 </head> |
| 18 <body> |
| 19 <template is="dom-bind" id="sectioned-app"> |
| 20 <div class="content"> |
| 21 <div class="text"> |
| 22 <div class="header-logo"></div> |
| 23 <div class="heading">$i18n{headerText}</div> |
| 24 <div class="sections"> |
| 25 <div class$="[[computeClasses(isCombined)]]"> |
| 26 <div class="section-heading" on-tap="onToggle"> |
| 27 <div class="section-heading-text"> |
| 28 $i18n{defaultBrowserSubheaderText} |
| 29 </div> |
| 30 <template is="dom-if" if="[[isCombined]]"> |
| 31 <iron-icon class="section-heading-expand" icon="cr:expand-more"> |
| 32 </iron-icon> |
| 33 </template> |
| 34 </div> |
| 35 <ol class="section-steps"> |
| 36 <li> |
| 37 <a href="#" on-tap="onOpenSettings">$i18n{openSettingsText}</a> |
| 38 </li> |
| 39 <li>$i18nRaw{clickEdgeText}</li> |
| 40 <li>$i18nRaw{clickSelectChrome}</li> |
| 41 </ol> |
| 42 </div> |
| 43 <template is="dom-if" if="[[isCombined]]"> |
| 44 <div class="section expandable"> |
| 45 <div class="section-heading" on-tap="onToggle"> |
| 46 <div class="section-heading-text">$i18n{pinSubheaderText}</div> |
| 47 <iron-icon class="section-heading-expand" icon="cr:expand-more"> |
| 48 </iron-icon> |
| 49 </div> |
| 50 <ol class="section-steps"> |
| 51 <li>$i18nRaw{rightClickText}</li> |
| 52 <li>$i18nRaw{pinInstructionText}</li> |
| 53 </ol> |
| 54 </div> |
| 55 </template> |
| 56 </div> |
| 57 <a href="#" class="button" on-tap="onContinue">$i18n{continueText}</a> |
| 58 </div> |
| 59 </div> |
| 60 <div class="bg"> |
| 61 <div class="screenshots"> |
| 62 <div class="screenshot-image" id="screenshot-image--default"> |
| 63 <div class="screenshot-html-overlay" |
| 64 id="screenshot-html-overlay--browser"> |
| 65 <div>$i18n{webBrowserLabel}</div> |
| 66 </div> |
| 67 <div class="screenshot-html-overlay" |
| 68 id="screenshot-html-overlay--edge"> |
| 69 <div>$i18n{microsoftEdgeLabel}</div> |
| 70 </div> |
| 71 </div> |
| 72 <div class="screenshot-image hidden" id="screenshot-image--taskbar"> |
| 73 <div class="screenshot-html-overlay" |
| 74 id="screenshot-html-overlay--taskbar"> |
| 75 <div>$i18n{pinToTaskbarLabel}</div> |
| 76 </div> |
| 77 <div class="screenshot-html-overlay" |
| 78 id="screenshot-html-overlay--icon"> |
| 79 </div> |
| 80 </div> |
| 81 </div> |
| 82 </div> |
| 83 </template> |
| 84 </body> |
| 85 </html> |
OLD | NEW |