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

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

Issue 7529036: Add warning message to downloads directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add missing image Created 9 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
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 d917703cd8d99feeb25c388bd2baf558c85fba81..16316e3a33618d3978ae4961aeb0c18fbf637352 100644
--- a/chrome/browser/resources/file_manager/css/file_manager.css
+++ b/chrome/browser/resources/file_manager/css/file_manager.css
@@ -125,13 +125,40 @@ button.thumbnail-view > img {
top: 1px;
}
-.list-container {
+.left-column {
+ display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-flex: 1;
+}
+
+.list-container {
display: -webkit-box;
+ -webkit-box-flex: 1;
position: relative;
}
+.downloads-warning {
+ display: -webkit-box;
+ -webkit-box-orient: horizontal;
+ height: 0;
+ -webkit-transition: height 0.07s linear;
+ background-color: #f0f0f0;
+ font-size: 13px;
+ color: #666;
+ -webkit-box-align: center;
+ overflow: hidden;
+}
+
+.downloads-warning img {
+ display: -webkit-box;
+ padding: 15px;
+}
+
+.downloads-warning div {
+ display: -webkit-box;
+ -webkit-box-flex: 1;
+}
+
/* The cr.ui.Grid representing the detailed file list. */
.thumbnail-grid {
position: absolute;

Powered by Google App Engine
This is Rietveld 408576698