diff --git a/src/packages/fuzzy-finder/src/fuzzy-finder-view.coffee b/src/packages/fuzzy-finder/src/fuzzy-finder-view.coffee index 0a75068be..85c2c57d1 100644 --- a/src/packages/fuzzy-finder/src/fuzzy-finder-view.coffee +++ b/src/packages/fuzzy-finder/src/fuzzy-finder-view.coffee @@ -49,7 +49,7 @@ class FuzzyFinderView extends SelectList typeClass = 'text-name' @span fs.base(path), class: "file label #{typeClass}" if folder = fs.directory(path) - @span "#{folder}/", class: 'directory' + @span " - #{folder}/", class: 'directory' openPath: (path) -> @rootView.open(path, {@allowActiveEditorChange}) if path diff --git a/themes/atom-dark-ui/atom.css b/themes/atom-dark-ui/atom.css index d7409130b..22afd1c83 100644 --- a/themes/atom-dark-ui/atom.css +++ b/themes/atom-dark-ui/atom.css @@ -23,4 +23,4 @@ html, body, .wrap-guide { background: rgba(150, 150, 150, 0.1); -} +} \ No newline at end of file diff --git a/themes/atom-dark-ui/select-list.css b/themes/atom-dark-ui/select-list.css index 3a1e7d9ff..c3a143f8a 100644 --- a/themes/atom-dark-ui/select-list.css +++ b/themes/atom-dark-ui/select-list.css @@ -25,4 +25,8 @@ .select-list ol .selected { background-image: -webkit-linear-gradient(#7e7e7e, #737373); +} + +.select-list .directory { + color: #777; } \ No newline at end of file