OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>$i18n{headerText}</title> | |
5 | |
6 <link rel="import" href="chrome://resources/html/cr.html"> | |
7 <link rel="import" href="chrome://resources/html/load_time_data.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/iron-icons/iron-icons .html"> | |
12 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht ml"> | |
13 | |
14 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | |
15 <link rel="stylesheet" href="chrome://welcome-win10/welcome.css"> | |
16 | |
17 <script src="chrome://welcome-win10/welcome.js"></script> | |
18 <script src="chrome://welcome-win10/strings.js"></script> | |
19 </head> | |
20 <body> | |
21 <div class="content"> | |
22 <img src="logo4x.png" class="header-logo"> | |
tmartino
2016/10/12 22:06:39
We need to support 2x resolutions, so let's change
Patrick Monette
2016/10/13 21:30:05
Done, but I went with content: instead of backgrou
| |
23 <p class="heading">$i18n{headerText}</p> | |
tmartino
2016/10/12 22:06:39
In general, I've been told the WebUI folks prefer
Patrick Monette
2016/10/13 21:30:05
Done.
| |
24 <div class="subheading">$i18n{subheaderText}</div> | |
25 <div class="sections"> | |
26 <div class="section section--expanded"> | |
27 <div class="section-heading section-heading--expandable"> | |
28 <p class="section-heading-text">$i18n{defaultBrowserSubheaderText}</p> | |
29 <iron-icon class="section-heading-expand" icon="icons:expand-more"></i ron-icon> | |
30 </div> | |
31 <ol class="section-steps"> | |
32 <li><a href="#" id="set-default-button">$i18n{openSettingsText}</a></l i> | |
33 <li> | |
34 <p id="section-steps--click-edge"> | |
35 </p> | |
36 <div class="screenshot-image screenshot-image--visible" id="screensh ot-image--default"> | |
37 <div class="screenshot-html-overlay" id="screenshot-html-overlay-- browser"> | |
38 <p>$i18n{webBrowserLabel}</p> | |
39 </div> | |
40 <div class="screenshot-html-overlay" id="screenshot-html-overlay-- edge"> | |
41 <p>$i18n{microsoftEdgeLabel}</p> | |
42 </div> | |
43 </div> | |
44 </li> | |
45 <li id="section-steps--select-chrome"></li> | |
46 </ol> | |
47 </div> | |
48 <div class="section"> | |
49 <div class="section-heading section-heading--expandable"> | |
50 <p class="section-heading-text">$i18n{pinSubheaderText}</p> | |
51 <iron-icon class="section-heading-expand" icon="icons:expand-more"></i ron-icon> | |
52 </div> | |
53 <ol class="section-steps"> | |
54 <li id="section-steps--right-click"></li> | |
55 <li> | |
56 <p id="section-steps--pin-taskbar"> | |
57 </p> | |
58 <div class="screenshot-image screenshot-image--visible" id="screensh ot-image--taskbar"> | |
59 <div class="screenshot-html-overlay" id="screenshot-html-overlay-- taskbar"> | |
60 <p>$i18n{pinToTaskbarLabel}</p> | |
61 </div> | |
62 <div class="screenshot-html-overlay" id="screenshot-html-overlay-- icon"></div> | |
63 </div> | |
64 </li> | |
65 </ol> | |
66 </div> | |
67 </div> | |
68 <a href="#" class="button" id="continue-button">$i18n{continueText}</a> | |
69 </div> | |
70 </body> | |
71 </html> | |
OLD | NEW |