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

Unified 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, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/about_version.html
diff --git a/chrome/browser/resources/about_version.html b/chrome/browser/resources/about_version.html
index 3654f29f620c8fc82315b32c84d3229f11fd9de1..ab325d7484669acb1a2b323d451cfaffba2bd3a7 100644
--- a/chrome/browser/resources/about_version.html
+++ b/chrome/browser/resources/about_version.html
@@ -40,6 +40,11 @@ about:version template page
width: 180px;
margin-left: 40px;
}
+ #logo-img {
+ content: -webkit-image-set(
flackr 2012/06/30 12:05:46 Why not use here? content: url('chrome://theme/IDR
+ url('../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo.png') 1x,
+ url('../../app/theme/default_200_percent/%DISTRIBUTION%/product_logo.png') 2x);
+ }
#company {
text-align: right;
font-size: 0.7em;
@@ -66,7 +71,8 @@ about:version template page
<body>
<div id="outer">
<div id="logo">
- <img src="../../app/theme/%DISTRIBUTION%/product_logo.png" />
+ <!-- XXX -->
+ <img id="logo-img">
flackr 2012/06/30 12:05:46 We should probably use div tags since we're stylin
<div id="company" i18n-content="company"></div>
<div id="copyright" i18n-content="copyright"></div>
</div>

Powered by Google App Engine
This is Rietveld 408576698