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

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

Issue 10695052: HiDPI chromium logo for NTP, about:version, about:neterror (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 135179 Created 8 years, 5 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
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/ntp4/new_tab.css » ('j') | 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 2
3 <!-- 3 <!--
4 about:version template page 4 about:version template page
5 --> 5 -->
6 6
7 <html id="t" i18n-values="dir:textdirection;"> 7 <html id="t" i18n-values="dir:textdirection;">
8 <head> 8 <head>
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <style> 10 <style>
(...skipping 22 matching lines...) Expand all
33 } 33 }
34 .label:after { 34 .label:after {
35 content: ":"; 35 content: ":";
36 } 36 }
37 #logo { 37 #logo {
38 text-align: right; 38 text-align: right;
39 float: right; 39 float: right;
40 width: 180px; 40 width: 180px;
41 margin-left: 40px; 41 margin-left: 40px;
42 } 42 }
43 #logo-img {
44 /* TODO: Remove once http://crbug.com/135179 is fixed */
45 content: url('chrome://theme/IDR_PRODUCT_LOGO');
46 }
43 #company { 47 #company {
44 text-align: right; 48 text-align: right;
45 font-size: 0.7em; 49 font-size: 0.7em;
46 } 50 }
47 #copyright { 51 #copyright {
48 text-align: right; 52 text-align: right;
49 font-size: 0.7em; 53 font-size: 0.7em;
50 } 54 }
51 #name { 55 #name {
52 } 56 }
53 #useragent { 57 #useragent {
54 font-family: monospace; 58 font-family: monospace;
55 } 59 }
56 .version { 60 .version {
57 font-family: monospace; 61 font-family: monospace;
58 padding-left: 5px; 62 padding-left: 5px;
59 max-width: 430px; 63 max-width: 430px;
60 } 64 }
61 </style> 65 </style>
62 <script src="chrome://version/version.js"></script> 66 <script src="chrome://version/version.js"></script>
63 <script src="chrome://version/strings.js"></script> 67 <script src="chrome://version/strings.js"></script>
64 </head> 68 </head>
65 69
66 <body> 70 <body>
67 <div id="outer"> 71 <div id="outer">
68 <div id="logo"> 72 <div id="logo">
69 <img src="../../app/theme/%DISTRIBUTION%/product_logo.png" /> 73 <!-- TODO: Revert back to src= once http://crbug.com/135179 is fixed -->
74 <img id="logo-img">
70 <div id="company" i18n-content="company"></div> 75 <div id="company" i18n-content="company"></div>
71 <div id="copyright" i18n-content="copyright"></div> 76 <div id="copyright" i18n-content="copyright"></div>
72 </div> 77 </div>
73 <table id="inner" cellpadding="0" cellspacing="0" border="0"> 78 <table id="inner" cellpadding="0" cellspacing="0" border="0">
74 <tr><td class="label" valign="top" id="name" i18n-content="name"></td> 79 <tr><td class="label" valign="top" id="name" i18n-content="name"></td>
75 <td class="version" id="version"><span i18n-content="version"></span> (<span i18n-content="official"></span> <span i18n-content="cl"></span>) <span i1 8n-content="version_modifier"></span></td> 80 <td class="version" id="version"><span i18n-content="version"></span> (<span i18n-content="official"></span> <span i18n-content="cl"></span>) <span i1 8n-content="version_modifier"></span></td>
76 </tr> 81 </tr>
77 <if expr="not pp_ifdef('chromeos')"> 82 <if expr="not pp_ifdef('chromeos')">
78 <tr><td class="label" valign="top" i18n-content="os_name"></td> 83 <tr><td class="label" valign="top" i18n-content="os_name"></td>
79 <td class="version" id="os_type"><span i18n-content="os_type"></span> <span i18n-content="os_version"></span></td> 84 <td class="version" id="os_type"><span i18n-content="os_type"></span> <span i18n-content="os_version"></span></td>
(...skipping 25 matching lines...) Expand all
105 <td class="version" id="profile_path" i18n-content="profile_path"></ td> 110 <td class="version" id="profile_path" i18n-content="profile_path"></ td>
106 </tr> 111 </tr>
107 </table> 112 </table>
108 </div> 113 </div>
109 <script src="chrome://resources/js/i18n_template.js"></script> 114 <script src="chrome://resources/js/i18n_template.js"></script>
110 <script src="chrome://resources/js/i18n_process.js"></script> 115 <script src="chrome://resources/js/i18n_process.js"></script>
111 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 116 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
112 </body> 117 </body>
113 118
114 </html> 119 </html>
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/ntp4/new_tab.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698