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/welcome.html

Issue 2750673006: [FRE] Show scroll bar if window is too small. (Closed)
Patch Set: Created 3 years, 9 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 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>$i18n{headerText}</title> 5 <title>$i18n{headerText}</title>
6 6
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/paper-button/paper-bu tton.html"> 10 <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"> 11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht ml">
12 12
13 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 13 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
14 <link rel="stylesheet" href="chrome://welcome/welcome.css"> 14 <link rel="stylesheet" href="chrome://welcome/welcome.css">
15 </head> 15 </head>
16 <body> 16 <body>
17 <div class="content"> 17 <div class="content">
18 <div class="logo"> 18 <div class="slider">
19 <div class="logo-icon"></div> 19 <div class="logo">
20 <div class="logo-shadow"></div> 20 <div class="logo-icon"></div>
21 </div> 21 <div class="logo-shadow"></div>
22 <div class="heading">$i18n{headerText}</div> 22 </div>
23 <div class="heading">$i18n{headerText}</div>
23 <if expr="_google_chrome"> 24 <if expr="_google_chrome">
24 <div class="subheading">$i18n{subheaderText}</div> 25 <div class="subheading">$i18n{subheaderText}</div>
25 </if> 26 </if>
26 <div class="signin"> 27 <div class="signin">
27 <div class="signin-description">$i18n{descriptionText}</div> 28 <div class="signin-description">$i18n{descriptionText}</div>
28 <div class="signin-buttons"> 29 <div class="signin-buttons">
29 <paper-button class="action" id="accept-button"> 30 <paper-button class="action" id="accept-button">
30 $i18n{acceptText} 31 $i18n{acceptText}
31 </paper-button> 32 </paper-button>
32 <a href="#" class="link" id="decline-button">$i18n{declineText}</a> 33 <a href="#" class="link" id="decline-button">$i18n{declineText}</a>
34 </div>
33 </div> 35 </div>
34 </div> 36 </div>
35 </div> 37 </div>
36 <div class="watermark"></div> 38 <div class="watermark"></div>
37 <script src="chrome://welcome/welcome.js"></script> 39 <script src="chrome://welcome/welcome.js"></script>
38 </body> 40 </body>
39 </html> 41 </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