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

Unified Diff: chrome/browser/resources/plugins.css

Issue 10666019: Merge 143588 - Update WebUI for HiDPI images added in r143476 (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/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
« no previous file with comments | « chrome/browser/resources/crashes.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/plugins.css
===================================================================
--- chrome/browser/resources/plugins.css (revision 143846)
+++ chrome/browser/resources/plugins.css (working copy)
@@ -25,7 +25,10 @@
}
#header h1 {
- background: url('../../app/theme/default_100_percent/extensions_section.png') 0 20px no-repeat;
+ background: -webkit-image-set(
+ url('../../app/theme/default_100_percent/extensions_section.png') 1x,
+ url('../../app/theme/default_200_percent/extensions_section.png') 2x)
+ 0 20px no-repeat;
display: inline;
margin: 0;
padding-bottom: 20px;
@@ -34,7 +37,10 @@
}
html[dir=rtl] #header h1 {
- background: url('../../app/theme/default_100_percent/extensions_section.png') right no-repeat;
+ background: -webkit-image-set(
+ url('../../app/theme/default_100_percent/extensions_section.png') 1x,
+ url('../../app/theme/default_200_percent/extensions_section.png') 2x)
+ right no-repeat;
padding-left: 0;
padding-right: 95px;
}
« no previous file with comments | « chrome/browser/resources/crashes.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698