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

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

Issue 15643006: Files.app: Added DragSelector class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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: chrome/browser/resources/file_manager/css/file_manager.css
diff --git a/chrome/browser/resources/file_manager/css/file_manager.css b/chrome/browser/resources/file_manager/css/file_manager.css
index c44e90fd9b244246294a3676a99f27ba9c89350b..5ff3837fccf5854dde166adba3c73cd10c558f58 100644
--- a/chrome/browser/resources/file_manager/css/file_manager.css
+++ b/chrome/browser/resources/file_manager/css/file_manager.css
@@ -1017,6 +1017,17 @@ body[new-ui] .main-panel #detail-table > list {
padding-bottom: 52px; /* height of the preview panel */
}
+body[new-ui] .main-panel #detail-table > list > .drag-selection-border {
+ -webkit-box-sizing: border-box;
+ background-color: rgba(255, 255, 255, 0.3);
+ border: 2px solid rgba(255, 255, 255, 0.6);
+ border-radius: 0;
mtomasz 2013/05/31 08:15:31 border-radius: 0 redundant?
hirono 2013/06/03 04:40:33 This is overrides cr.ui.List's style.
+ outline: 1px solid rgba(0, 0, 0, 0.1);
+ padding: 0;
mtomasz 2013/05/31 08:15:31 padding: 0 redundant?
hirono 2013/06/03 04:40:33 ditto.
+ position: absolute;
+ z-index: 2;
+}
+
.spinner {
background-image: url('../images/common/spinner.svg');
background-size: 100%;

Powered by Google App Engine
This is Rietveld 408576698