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

Side by Side Diff: chrome/browser/resources/welcome/win10/sectioned.html

Issue 2590253002: Implementing Win 10 FRE visual design tweaks requested by first UX pass. (Closed)
Patch Set: Replying to dbeam comments Created 3 years, 11 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>$i18n{headerText}</title> 4 <title>$i18n{headerText}</title>
5 5
6 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 6 <link rel="import" href="chrome://resources/cr_elements/icons.html">
7 <link rel="import" href="chrome://resources/html/cr.html"> 7 <link rel="import" href="chrome://resources/html/cr.html">
8 <link rel="import" href="chrome://resources/html/polymer.html"> 8 <link rel="import" href="chrome://resources/html/polymer.html">
9 <link rel="import" href="chrome://resources/html/util.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"> 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-button/paper-bu tton.html">
11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht ml"> 12 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht ml">
12 13
13 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 14 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
14 <link rel="stylesheet" href="/welcome.css"> 15 <link rel="stylesheet" href="/welcome.css">
15 16
16 <script src="/welcome.js"></script> 17 <script src="/welcome.js"></script>
17 </head> 18 </head>
18 <body> 19 <body>
19 <template is="dom-bind" id="sectioned-app"> 20 <template is="dom-bind" id="sectioned-app">
20 <div class="content"> 21 <div class="content">
(...skipping 26 matching lines...) Expand all
47 <iron-icon class="section-heading-expand" icon="cr:expand-more"> 48 <iron-icon class="section-heading-expand" icon="cr:expand-more">
48 </iron-icon> 49 </iron-icon>
49 </div> 50 </div>
50 <ol class="section-steps"> 51 <ol class="section-steps">
51 <li>$i18nRaw{rightClickText}</li> 52 <li>$i18nRaw{rightClickText}</li>
52 <li>$i18nRaw{pinInstructionText}</li> 53 <li>$i18nRaw{pinInstructionText}</li>
53 </ol> 54 </ol>
54 </div> 55 </div>
55 </template> 56 </template>
56 </div> 57 </div>
57 <a href="#" class="button" on-tap="onContinue">$i18n{continueText}</a> 58 <paper-button class="button" on-tap="onContinue">
59 $i18n{continueText}
60 </paper-button>
58 </div> 61 </div>
59 </div> 62 </div>
60 <div class="bg"> 63 <div class="bg">
61 <div class="screenshots"> 64 <div class="screenshots">
62 <div class="screenshot-image" id="screenshot-image--default"> 65 <div class="screenshot-image" id="screenshot-image--default">
63 <div class="screenshot-html-overlay" 66 <div class="screenshot-html-overlay"
64 id="screenshot-html-overlay--browser"> 67 id="screenshot-html-overlay--browser">
65 <div>$i18n{webBrowserLabel}</div> 68 <div>$i18n{webBrowserLabel}</div>
66 </div> 69 </div>
67 <div class="screenshot-html-overlay" 70 <div class="screenshot-html-overlay"
68 id="screenshot-html-overlay--edge"> 71 id="screenshot-html-overlay--edge">
69 <div>$i18n{microsoftEdgeLabel}</div> 72 <div>$i18n{microsoftEdgeLabel}</div>
70 </div> 73 </div>
71 </div> 74 </div>
72 <div class="screenshot-image hidden" id="screenshot-image--taskbar"> 75 <div class="screenshot-image hidden" id="screenshot-image--taskbar">
73 <div class="screenshot-html-overlay" 76 <div class="screenshot-html-overlay"
74 id="screenshot-html-overlay--taskbar"> 77 id="screenshot-html-overlay--taskbar">
75 <div>$i18n{pinToTaskbarLabel}</div> 78 <div>$i18n{pinToTaskbarLabel}</div>
76 </div> 79 </div>
77 <div class="screenshot-html-overlay" 80 <div class="screenshot-html-overlay"
78 id="screenshot-html-overlay--icon"> 81 id="screenshot-html-overlay--icon">
79 </div> 82 </div>
80 </div> 83 </div>
81 </div> 84 </div>
82 </div> 85 </div>
83 </template> 86 </template>
84 </body> 87 </body>
85 </html> 88 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/welcome/win10/sectioned.css ('k') | chrome/browser/ui/webui/welcome_win10_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698