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

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

Issue 9006027: Rip Out the Sidebar API (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years 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
===================================================================
--- chrome/browser/resources/file_manager/css/file_manager.css (revision 115251)
+++ chrome/browser/resources/file_manager/css/file_manager.css (working copy)
@@ -118,26 +118,6 @@
}
/* Roots list at the left. */
-.dialog-sidebar {
Aaron Boodman 2011/12/21 08:38:20 Also wrong sidebar. I believe that this is an elem
- position: relative;
- -webkit-box-flex: 0;
- width: 200px;
- margin-left: -200px;
- background-color: rgba(240, 240, 240, 1);
- margin-bottom: 15px;
- margin-top: 15px;
- -webkit-border-top-right-radius: 4px;
- -webkit-border-top-left-radius: 4px;
- -webkit-border-bottom-left-radius: 4px;
- -webkit-transition: margin-left 180ms ease;
- overflow: hidden;
-}
-
-.dialog-container[sidebar] .dialog-sidebar {
- margin-left: 15px;
-}
-
-/* Roots list at the left. */
list.roots-list {
width: 100%;
}
@@ -208,50 +188,6 @@
-webkit-transition: all 180ms ease;
}
-/* Container for the detail and thumbnail (not implemented yet) list views. */
-.dialog-container[sidebar] .dialog-header {
Aaron Boodman 2011/12/21 08:38:20 Same with everything in the file_manager directory
- margin-left: 0;
-}
-
-/* Close sidebar button. */
-div.close-sidebar {
- cursor: pointer;
- position: absolute;
- right: 0;
- top: 2px;
- display: none;
- z-index: 10;
- background-color: white;
- border: 1px solid rgba(200,200,200,1);
- width: 13px;
- height: 24px;
-}
-
-div.close-sidebar:hover {
- background-color: rgba(240,240,240,1);
-}
-
-/* Open sidebar button. */
-div.open-sidebar {
- cursor: pointer;
- margin-right: 10px;
- background-color: white;
- width: 13px;
- height: 24px;
-}
-
-div.open-sidebar:hover {
- background-color: rgba(240,240,240,1);
-}
-
-.dialog-container[sidebar] div.open-sidebar {
- display: none;;
-}
-
-.dialog-container[sidebar] div.close-sidebar {
- display: block;
-}
-
/* Container for the detail and thumbnail list views. */
.dialog-body {
-webkit-box-orient: vertical;
@@ -266,12 +202,6 @@
-webkit-transition: all 180ms ease;
}
-.dialog-container[sidebar] .dialog-body {
- -webkit-border-top-left-radius: 0;
- -webkit-border-bottom-left-radius: 0;
- margin-left: 0;
-}
-
/* Container for the ok/cancel buttons. */
.dialog-footer {
-webkit-box-orient: horizontal;
@@ -294,20 +224,12 @@
white-space: nowrap;
}
-.dialog-container[sidebar] .breadcrumbs {
- margin-left: 10px;
-}
-
/* Icon at the start of breadcrumb path. Corresponds to the root selected. */
.breadcrumb-icon {
margin-right: 5px;
display: block;
}
-.dialog-container[sidebar] .breadcrumb-icon {
- display: none;
-}
-
/* A single directory name in the list of path breadcrumbs. */
.breadcrumb-path {
color: #265692;

Powered by Google App Engine
This is Rietveld 408576698