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

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

Issue 2383903002: UX corrections to new FRE Welcome page. (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « chrome/browser/resources/welcome/welcome.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/html/polymer.html"> 6 <link rel="import" href="chrome://resources/html/polymer.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu tton.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu tton.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht ml"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht ml">
9 9
10 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 10 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
11 <link rel="stylesheet" href="chrome://welcome/welcome.css"> 11 <link rel="stylesheet" href="chrome://welcome/welcome.css">
12 12
13 <script src="chrome://resources/js/load_time_data.js"></script> 13 <script src="chrome://resources/js/load_time_data.js"></script>
14 <script src="chrome://welcome/welcome.js"></script> 14 <script src="chrome://welcome/welcome.js"></script>
15 15
16 </head> 16 </head>
17 <body> 17 <body>
18 <div class="spacer"></div>
19 <div class="content"> 18 <div class="content">
20 <div class="logo"> 19 <div class="logo">
21 <div class="logo-icon"> 20 <div class="logo-icon"></div>
22 <img src="chrome://welcome/logo.png" class="logo-bw">
23 <img src="chrome://welcome/logo.png" class="logo-color">
24 </div>
25 <div class="logo-shadow"></div> 21 <div class="logo-shadow"></div>
26 </div> 22 </div>
27 <div class="heading">$i18n{headerText}</div> 23 <div class="heading">$i18n{headerText}</div>
28 <if expr="_google_chrome"> 24 <if expr="_google_chrome">
29 <div class="subheading">$i18n{subheaderText}</div> 25 <div class="subheading">$i18n{subheaderText}</div>
30 </if> 26 </if>
31 <div class="signin"> 27 <div class="signin">
32 <div class="signin-description">$i18n{descriptionText}</div> 28 <div class="signin-description">$i18n{descriptionText}</div>
33 <div class="signin-buttons"> 29 <div class="signin-buttons">
34 <paper-button class="action">$i18n{acceptText}</paper-button> 30 <paper-button class="action">$i18n{acceptText}</paper-button>
35 <a href="#" class="link">$i18n{declineText}</a> 31 <a href="#" class="link">$i18n{declineText}</a>
36 </div> 32 </div>
37 </div> 33 </div>
38 </div> 34 </div>
39 <div class="watermark"></div> 35 <div class="watermark"></div>
40 </body> 36 </body>
41 </html> 37 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/welcome/welcome.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698