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

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

Issue 10827296: Butter bar visual refresh. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/butter_bar.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 25e58aa638b400d3f257516f1cbc878cc46acfd6..4b6a1de14b6f4c692e9b298302ff14c562328db0 100644
--- a/chrome/browser/resources/file_manager/css/file_manager.css
+++ b/chrome/browser/resources/file_manager/css/file_manager.css
@@ -84,16 +84,31 @@ input[type='submit'][disabled]:hover {
opacity: 0.8;
}
+#butter-bar-container {
+ -webkit-box-pack: center;
+ display: -webkit-box;
+ left: 0;
+ pointer-events: none;
+ position: absolute;
+ top: 0;
+ width: 100%;
+ z-index: 3;
+}
+
#butter-bar {
-webkit-box-align: end;
-webkit-box-orient: horizontal;
-webkit-transition: opacity 300ms;
- background-color: rgba(95, 95, 95, 0.17);
+ background-color: #e3e3e3;
color: #222;
display: -webkit-box;
+ max-width: 340px;
+ min-width: 40px;
padding: 0 1em;
- position: absolute;
+ pointer-events: auto;
top: 1px;
+ width: 30%;
+ z-index: 2;
}
#butter-bar:not(.visible) {
@@ -102,6 +117,8 @@ input[type='submit'][disabled]:hover {
}
#butter-bar .content {
+ -webkit-box-flex: 1;
+ overflow: hidden;
padding-bottom: 4px;
padding-top: 4px;
}
@@ -140,11 +157,11 @@ input[type='submit'][disabled]:hover {
}
.progress-bar {
+ -webkit-box-flex: 1;
border: 1px solid #999;
margin-bottom: 2px;
margin-top: 3px;
padding: 1px;
- width: 320px;
}
.progress-track {
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/butter_bar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698