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

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: 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
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 content: -webkit-image-set(
flackr 2012/06/30 12:05:46 Why not use here? content: url('chrome://theme/IDR
45 url('../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo .png') 1x,
46 url('../../app/theme/default_200_percent/%DISTRIBUTION%/product_logo .png') 2x);
47 }
43 #company { 48 #company {
44 text-align: right; 49 text-align: right;
45 font-size: 0.7em; 50 font-size: 0.7em;
46 } 51 }
47 #copyright { 52 #copyright {
48 text-align: right; 53 text-align: right;
49 font-size: 0.7em; 54 font-size: 0.7em;
50 } 55 }
51 #name { 56 #name {
52 } 57 }
53 #useragent { 58 #useragent {
54 font-family: monospace; 59 font-family: monospace;
55 } 60 }
56 .version { 61 .version {
57 font-family: monospace; 62 font-family: monospace;
58 padding-left: 5px; 63 padding-left: 5px;
59 max-width: 430px; 64 max-width: 430px;
60 } 65 }
61 </style> 66 </style>
62 <script src="chrome://version/version.js"></script> 67 <script src="chrome://version/version.js"></script>
63 <script src="chrome://version/strings.js"></script> 68 <script src="chrome://version/strings.js"></script>
64 </head> 69 </head>
65 70
66 <body> 71 <body>
67 <div id="outer"> 72 <div id="outer">
68 <div id="logo"> 73 <div id="logo">
69 <img src="../../app/theme/%DISTRIBUTION%/product_logo.png" /> 74 <!-- XXX -->
75 <img id="logo-img">
flackr 2012/06/30 12:05:46 We should probably use div tags since we're stylin
70 <div id="company" i18n-content="company"></div> 76 <div id="company" i18n-content="company"></div>
71 <div id="copyright" i18n-content="copyright"></div> 77 <div id="copyright" i18n-content="copyright"></div>
72 </div> 78 </div>
73 <table id="inner" cellpadding="0" cellspacing="0" border="0"> 79 <table id="inner" cellpadding="0" cellspacing="0" border="0">
74 <tr><td class="label" valign="top" id="name" i18n-content="name"></td> 80 <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> 81 <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> 82 </tr>
77 <if expr="not pp_ifdef('chromeos')"> 83 <if expr="not pp_ifdef('chromeos')">
78 <tr><td class="label" valign="top" i18n-content="os_name"></td> 84 <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> 85 <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> 111 <td class="version" id="profile_path" i18n-content="profile_path"></ td>
106 </tr> 112 </tr>
107 </table> 113 </table>
108 </div> 114 </div>
109 <script src="chrome://resources/js/i18n_template.js"></script> 115 <script src="chrome://resources/js/i18n_template.js"></script>
110 <script src="chrome://resources/js/i18n_process.js"></script> 116 <script src="chrome://resources/js/i18n_process.js"></script>
111 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 117 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
112 </body> 118 </body>
113 119
114 </html> 120 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698