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

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

Issue 2422703002: First run: tweaks to welcome page (Closed)
Patch Set: revert .class -> #id 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
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/cr.html"> 6 <link rel="import" href="chrome://resources/html/cr.html">
7 <link rel="import" href="chrome://resources/html/polymer.html"> 7 <link rel="import" href="chrome://resources/html/polymer.html">
8 <link rel="import" href="chrome://resources/html/util.html"> 8 <link rel="import" href="chrome://resources/html/util.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu tton.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu tton.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht ml"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht ml">
11 11
12 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 12 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
13 <link rel="stylesheet" href="chrome://welcome/welcome.css"> 13 <link rel="stylesheet" href="chrome://welcome/welcome.css">
14
15 <script src="chrome://welcome/welcome.js"></script>
16
17 </head> 14 </head>
18 <body> 15 <body>
19 <div class="content"> 16 <div class="content">
20 <div class="logo"> 17 <div class="logo">
21 <div class="logo-icon"></div> 18 <div class="logo-icon"></div>
22 <div class="logo-shadow"></div> 19 <div class="logo-shadow"></div>
23 </div> 20 </div>
24 <div class="heading">$i18n{headerText}</div> 21 <div class="heading">$i18n{headerText}</div>
25 <if expr="_google_chrome"> 22 <if expr="_google_chrome">
26 <div class="subheading">$i18n{subheaderText}</div> 23 <div class="subheading">$i18n{subheaderText}</div>
27 </if> 24 </if>
28 <div class="signin"> 25 <div class="signin">
29 <div class="signin-description">$i18n{descriptionText}</div> 26 <div class="signin-description">$i18n{descriptionText}</div>
30 <div class="signin-buttons"> 27 <div class="signin-buttons">
31 <paper-button class="action" id="accept-button">$i18n{acceptText}</paper -button> 28 <paper-button class="action" id="accept-button">$i18n{acceptText}</paper -button>
32 <a href="#" class="link" id="decline-button">$i18n{declineText}</a> 29 <a href="#" class="link" id="decline-button">$i18n{declineText}</a>
33 </div> 30 </div>
34 </div> 31 </div>
35 </div> 32 </div>
36 <div class="watermark"></div> 33 <div class="watermark"></div>
34 <script src="chrome://welcome/welcome.js"></script>
37 </body> 35 </body>
38 </html> 36 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/welcome/welcome.css ('k') | chrome/browser/resources/welcome/welcome.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698