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

Unified Diff: chrome/browser/resources/file_manager/css/gallery.css

Issue 12218114: Added missing assets for selected buttons in Files.app's photo editor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing assets. Created 7 years, 10 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/file_manager/images/gallery/2x/icon_redo_selected.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/css/gallery.css
diff --git a/chrome/browser/resources/file_manager/css/gallery.css b/chrome/browser/resources/file_manager/css/gallery.css
index 7d471a91ab3e2d3be9abbaf041d7888aa190bd21..bea91d1cef1cdf2c081ca995e768c848fcb8372e 100644
--- a/chrome/browser/resources/file_manager/css/gallery.css
+++ b/chrome/browser/resources/file_manager/css/gallery.css
@@ -666,6 +666,13 @@ body {
url('../images/gallery/2x/icon_undo.png') 2x);
}
+.gallery > .toolbar button.undo:active,
+.gallery > .toolbar button.undo[pressed] {
+ background-image: -webkit-image-set(
+ url('../images/gallery/icon_undo_selected.png') 1x,
+ url('../images/gallery/2x/icon_undo_selected.png') 2x);
+}
+
.gallery > .toolbar button.redo {
background-image: -webkit-image-set(
url('../images/gallery/icon_redo.png') 1x,
@@ -673,6 +680,13 @@ body {
position: absolute; /* Exclude from center-packing*/
}
+.gallery > .toolbar button.redo:active,
+.gallery > .toolbar button.redo[pressed] {
+ background-image: -webkit-image-set(
+ url('../images/gallery/icon_redo_selected.png') 1x,
+ url('../images/gallery/2x/icon_redo_selected.png') 2x);
+}
+
.gallery > .toolbar button[disabled] {
opacity: 0.5;
pointer-events: none;
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/images/gallery/2x/icon_redo_selected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698