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

Unified Diff: ui/file_manager/file_manager/foreground/css/file_manager.css

Issue 441233002: Merge navigation list and directory tree. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updates and adds comments. Created 6 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: ui/file_manager/file_manager/foreground/css/file_manager.css
diff --git a/ui/file_manager/file_manager/foreground/css/file_manager.css b/ui/file_manager/file_manager/foreground/css/file_manager.css
index 738ca493a4ba755909c35ba71c30554a5e767921..8951881b88c5ba6fa43e8574ea38663797c115da 100644
--- a/ui/file_manager/file_manager/foreground/css/file_manager.css
+++ b/ui/file_manager/file_manager/foreground/css/file_manager.css
@@ -147,7 +147,7 @@ a:focus {
min-width: 100px;
overflow: hidden;
position: relative;
- width: 150px;
+ width: 190px;
}
.dialog-navigation-list-header {
@@ -269,7 +269,6 @@ div.splitter {
}
#directory-tree {
- -webkit-border-end: 1px solid rgba(20, 20, 22, 0.1);
bottom: 0;
flex: none;
left: 0;
@@ -278,7 +277,7 @@ div.splitter {
padding-bottom: 0; /* For the preview panel. Will be overridden by JS. */
position: absolute;
right: 0;
- top: 47px;
+ top: 0;
}
#directory-tree .tree-row {
@@ -357,7 +356,16 @@ div.splitter {
color: white;
}
-#navigation-list .root-item > div.root-eject {
+/* Make top-level items thicker and their expand-icno invisible */
+#directory-tree > .tree-item > .tree-row {
+ line-height: 40px;
+}
+
+#directory-tree > .tree-item > .tree-row > .expand-icon {
+ visibility: hidden;
+}
+
+#directory-tree .tree-row > div.root-eject {
background: -webkit-image-set(
url('../images/files/ui/eject.png') 1x,
url('../images/files/ui/2x/eject.png') 2x) no-repeat center;
@@ -370,7 +378,7 @@ div.splitter {
width: 20px;
}
-#navigation-list:focus .root-item[selected] > div.root-eject {
+#directory-tree:focus .tree-row[selected] > div.root-eject {
background: -webkit-image-set(
url('../images/files/ui/eject_white.png') 1x,
url('../images/files/ui/2x/eject_white.png') 2x) no-repeat center;

Powered by Google App Engine
This is Rietveld 408576698