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

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

Issue 10824145: Move all the butter bar code to a separate class. Fix some style, method & variable names and simpl… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix progress bar. Created 8 years, 5 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 1342578865027b3bc16188ef2ea2ef723752ceef..98f10f5ea29fc03409b4cbb8c247863b57011873 100644
--- a/chrome/browser/resources/file_manager/css/file_manager.css
+++ b/chrome/browser/resources/file_manager/css/file_manager.css
@@ -80,7 +80,7 @@ input[type='submit'][disabled]:hover {
opacity: 0.8;
}
-.butter-bar {
+#butter-bar {
-webkit-box-align: end;
-webkit-box-orient: horizontal;
-webkit-transform: translate3d(0, 1px, 0);
@@ -96,17 +96,17 @@ input[type='submit'][disabled]:hover {
top: 0;
}
-.butter-bar.before-show {
+#butter-bar.before-show {
-webkit-transform: translate3d(0, -30px, 0);
opacity: 0;
}
-.butter-bar.after-show {
+#butter-bar.after-show {
-webkit-transform: translate3d(0, 50px, 0);
opacity: 0;
}
-.butter-bar .content {
+#butter-bar .content {
padding-bottom: 8px;
padding-right: 5px;
}
@@ -115,13 +115,13 @@ input[type='submit'][disabled]:hover {
display: none;
}
-.butter-bar .actions {
+#butter-bar .actions {
-webkit-box-orient: horizontal;
-webkit-box-pack: end;
display: -webkit-box;
}
-.butter-bar .actions a {
+#butter-bar .actions a {
background: center center no-repeat;
background-image: -webkit-image-set(
url('../images/files/ui/close_bar.png') 1x,
@@ -132,7 +132,7 @@ input[type='submit'][disabled]:hover {
width: 12px;
}
-.butter-bar.error {
+#butter-bar.error {
background-color: rgba(221, 75, 57, 0.2);
border: 1px solid rgba(221, 75, 57, 0.5);
border-radius: 2px;
« 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