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

Unified Diff: ui/file_manager/gallery/css/gallery.css

Issue 809803006: Gallery: Add debugMe method to Gallery. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: ui/file_manager/gallery/css/gallery.css
diff --git a/ui/file_manager/gallery/css/gallery.css b/ui/file_manager/gallery/css/gallery.css
index e247e71190abd4ce435724f87145779ae054374a..e63da51b8f900b87a4931ff1dca26104fc389f96 100644
--- a/ui/file_manager/gallery/css/gallery.css
+++ b/ui/file_manager/gallery/css/gallery.css
@@ -1340,3 +1340,28 @@ input[type='checkbox']:checked {
url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x)
center;
}
+
+.debug-me .load-target-content-metadata::before,
+.debug-me .load-target-external-metadata::before,
+.debug-me .load-target-file-entry::before {
+ bottom: 0;
+ content: '';
+ display: block;
+ left: 0;
+ position: absolute;
+ right: 0;
+ top: 0;
+ z-index: 1;
+}
+
+.debug-me .load-target-content-metadata::before {
+ background-color: rgba(255, 0, 0, 0.3);
+}
+
+.debug-me .load-target-external-metadata::before {
+ background-color: rgba(0, 255, 0, 0.3);
+}
+
+.debug-me .load-target-file-entry::before {
+ background-color: rgba(0, 0, 255, 0.3);
+}

Powered by Google App Engine
This is Rietveld 408576698