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

Unified Diff: chrome/browser/resources/bookmark_manager/css/bmm.css

Issue 10855106: Add high dpi folder icons. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with master. Created 8 years, 4 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 | « no previous file | chrome/browser/resources/shared/css/tree.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/bookmark_manager/css/bmm.css
diff --git a/chrome/browser/resources/bookmark_manager/css/bmm.css b/chrome/browser/resources/bookmark_manager/css/bmm.css
index 3ae7c07b2803480579694102990e773c10d98a11..43d59568da97d145e9edcac1256164c2a1e83dab 100644
--- a/chrome/browser/resources/bookmark_manager/css/bmm.css
+++ b/chrome/browser/resources/bookmark_manager/css/bmm.css
@@ -68,8 +68,9 @@ html[dir=rtl] list .label {
}
list > .folder > .label {
- background-image:
- url('../../../../../ui/resources/default_100_percent/folder_closed.png');
+ background-image: -webkit-image-set(
+ url('../../../../../ui/resources/default_100_percent/common/folder_closed.png') 1x,
+ url('../../../../../ui/resources/default_200_percent/common/folder_closed.png') 2x);
}
/* We need to ensure that even empty labels take up space */
@@ -172,8 +173,9 @@ list [editing] .url {
/* end editing */
html[dir=rtl] list > .folder > .label {
- background-image: url(
- '../../../../../ui/resources/default_100_percent/folder_closed_rtl.png');
+ background-image: -webkit-image-set(
+ url('../../../../../ui/resources/default_100_percent/common/folder_closed_rtl.png') 1x,
+ url('../../../../../ui/resources/default_200_percent/common/folder_closed_rtl.png') 2x);
}
<if expr="is_macosx">
« no previous file with comments | « no previous file | chrome/browser/resources/shared/css/tree.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698