Add css to make FileFinder more usable.

This commit is contained in:
Corey Johnson & Nathan Sobo
2011-12-28 15:42:08 -08:00
parent b6f583fddb
commit d181ce1885
3 changed files with 12 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ stringScore = require 'stringscore'
module.exports =
class FileFinder extends Template
content: ->
@link rel: 'stylesheet', href: "#{require.resolve('file-finder.css')}?#{(new Date).getTime()}"
@div class: 'file-finder', =>
@ol outlet: 'urlList'
@input outlet: 'input', keyup: 'populateUrlList'

View File

@@ -34,7 +34,6 @@ body {
.pane {
display: -webkit-box;
background-color: blue;
-webkit-box-flex: 1;
}
.ace_editor {

11
static/file-finder.css Normal file
View File

@@ -0,0 +1,11 @@
.file-finder {
display: -webkit-box;
-webkit-box-orient: vertical;
background-color: #444;
color: #eee;
width: 100%;
}
.file-finder input {
width: 100%;
}