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

Side by Side Diff: chrome/browser/sync/resources/setup_done.html

Issue 270081: Facelifts to sync UI (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 <html i18n-values="dir:textdirection;">
2 <head>
3 <title></title>
4 <style type="text/css">
5 body,td,div,p,a,font,span {
6 font-family: arial,sans-serif;
7 }
8 body {
9 bgcolor:"#ffffff"
10 }
11 .gaia.le.button {
12 font-family: Arial, Helvetica, sans-serif;
13 font-size: smaller;
14 }
15 .endaligned {
16 text-align: right;
17 align: right;
18 }
19 html[dir='rtl'] .endaligned {
20 text-align: left;
21 align: left;
22 }
23 </style>
24 <script>
25 function setShowFirstTimeSetupSummary() {
26 document.getElementById("summary").innerHTML =
27 "<p><font size='-1'>" + templateData['firsttimesetupsummary']
28 + "</font></p>";
29 }
30 function setSyncedToUser(synced_to) {
31 document.getElementById('user').innerHTML = synced_to;
32 }
33 </script>
34 <body bgcolor="#ffffff" vlink="#666666
35 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"
36 style="margin: 10px">
37 <table height="100%" width="100%" margin="0" cellpadding="0">
38 <tr valign="top">
39 <td>
40 <p><font size="-1"><b><span i18n-content="success"></span></b></font></p>
41 <div align="center">
42 <img src="success-large.png" />
43 </div>
44 <br />
45 <p><font size="-1"><span id="user"></span></font></p>
46 <div id="summary">
47 <p><font size="-1"><span i18n-content="setupsummary"></span></font></p>
48 </div>
49 </td>
50 </tr>
51 <tr valign="bottom">
52 <td class="endaligned">
53 <input id="close" type="submit" i18n-values="value:okay" style="width:85"
54 onclick='chrome.send("DialogClose", [""])' />
55 </td>
56 </tr>
57 </table>
58 </body>
59 </html>
OLDNEW
« no previous file with comments | « chrome/browser/sync/resources/merge_and_sync.html ('k') | chrome/browser/sync/resources/setup_flow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698