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

Side by Side Diff: chrome/browser/resources/chromeos/first_run/app/main.html

Issue 169173007: CrOs first-run UI polished. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;.style.fontFamily:fontfamily;"> 2 <html i18n-values="dir:textdirection;.style.fontFamily:fontfamily;">
3 <head> 3 <head>
4 <meta charset=utf-8> 4 <meta charset=utf-8>
5 <title></title> 5 <title></title>
6 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 6 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
7 <link rel="stylesheet" href="chrome://resources/css/apps/common.css"> 7 <link rel="stylesheet" href="chrome://resources/css/apps/common.css">
8 <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css"> 8 <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css">
9 <link rel="stylesheet" href="../step.css"> 9 <link rel="stylesheet" href="../step.css">
10 <link rel="stylesheet" href="../preload.css">
10 <link rel="stylesheet" href="style.css"> 11 <link rel="stylesheet" href="style.css">
11 <script src="chrome://resources/js/load_time_data.js"></script> 12 <script src="chrome://resources/js/load_time_data.js"></script>
12 <script src="chrome://resources/js/util.js"></script> 13 <script src="chrome://resources/js/util.js"></script>
13 <script src="chrome://resources/js/i18n_template_no_process.js"></script> 14 <script src="chrome://resources/js/i18n_template_no_process.js"></script>
14 <script src="main.js"></script> 15 <script src="main.js"></script>
15 </head> 16 </head>
16 <body> 17 <body>
17 <div id="greeting" class="step dialog"> 18 <div id="greeting" class="step dialog">
18 <div class="window-header"> 19 <div class="window-header">
19 <div class="topbutton-bar"> 20 <div class="topbutton-bar">
20 <div class="topbutton-wrapper"> 21 <div class="topbutton-wrapper">
21 <button class="custom-appearance close-button" 22 <button class="custom-appearance close-button"
22 i18n-values="aria-label:closeButton" tabindex="1"> 23 i18n-values="aria-label:closeButton" tabindex="1">
23 </button> 24 </button>
24 </div> 25 </div>
25 </div> 26 </div>
26 </div> 27 </div>
27 <h1 i18n-content="greetingHeader"></h1> 28 <h1 i18n-content="greetingHeader"></h1>
28 <p> 29 <p>
29 <span i18n-content="greetingText1"></span><br> 30 <span i18n-content="greetingText1"></span><br>
30 <span i18n-content="greetingText2"></span> 31 <span i18n-content="greetingText2"></span>
31 </p> 32 </p>
32 <div class="controls"> 33 <div class="controls">
33 <div class="margin-top"></div>
34 <button i18n-content="greetingButton" 34 <button i18n-content="greetingButton"
35 class="next-button custom-appearance blue-button" tabindex="0"> 35 class="next-button custom-appearance blue-button" tabindex="0">
36 </button> 36 </button>
37 <div class="margin-bottom"></div>
38 </div> 37 </div>
39 <include src="greeting_image_[GREETING_IMAGE].html"> 38 <include src="greeting_image_[GREETING_IMAGE].html">
40 </div> 39 </div>
41 </body> 40 </body>
42 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698