Files
atom/static/fuzzy-finder.css
Nathan Sobo 5ea1e6f05c Merge remote-tracking branch 'origin/select-from-file-finder'
Conflicts:
	src/extensions/fuzzy-finder.coffee
	static/fuzzy-finder.css
2012-06-29 10:40:34 -06:00

28 lines
415 B
CSS

.fuzzy-finder {
position: absolute;
width: 100%;
bottom: 0;
background-color: #444;
box-sizing: border-box;
color: #eee;
-webkit-box-shadow: 0 0 5px 5px #222;
padding: 5px;
}
.fuzzy-finder ol {
overflow: hidden;
margin-bottom: 5px;
}
.fuzzy-finder li:hover {
background-color: #555;
}
.fuzzy-finder ol:empty {
margin-bottom: 0;
}
.fuzzy-finder li.selected {
background-color: green;
}