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

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

Issue 837563002: Show a little circly/arrowey badge for files that have been copied locally. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add copy support to test import_history and update media import handler test to check for copy resu… 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/file_manager/foreground/css/file_manager.css
diff --git a/ui/file_manager/file_manager/foreground/css/file_manager.css b/ui/file_manager/file_manager/foreground/css/file_manager.css
index ca3fb0d7df164c88a429b919d66c10345b068c8b..a42950f90f26944f4818baf83c69673dffb8ac72 100644
--- a/ui/file_manager/file_manager/foreground/css/file_manager.css
+++ b/ui/file_manager/file_manager/foreground/css/file_manager.css
@@ -750,6 +750,20 @@ body[type='full-page'] .detail-name .detail-icon {
height: 30px;
}
+.badge {
+ height: 16px;
+ position: absolute;
+ right: 7px;
+ top: 7px;
+ width: 16px;
+}
+
+.copied .badge {
+ background-image: -webkit-image-set(
+ url(../images/files/ui/copied_badge.png) 1x,
+ url(../images/files/ui/2x/copied_badge.png) 2x);
+}
+
.imported .badge {
background-image: -webkit-image-set(
url(../images/files/ui/drive_badge.png) 1x,
@@ -761,7 +775,8 @@ body[type='full-page'] .detail-name .detail-icon {
width: 16px;
}
-.imported .filename-label {
+.imported .filename-label,
+.copied .filename-label {
margin-right: 14px;
}

Powered by Google App Engine
This is Rietveld 408576698