Files
atom/static/file-finder.css
Nathan Sobo 601cf41108 Fix bug where file-finder pushed editor up.
For now, I'm removing the flexbox treatment of #app-vertical because the file finder just needs to overlay the bottom and absolute positioning is simpler. I'm also using requireStylesheet to load the file finders CSS instead of a link tag.
2012-03-14 18:28:23 -06:00

21 lines
301 B
CSS

#app-vertical > .file-finder {
position: absolute;
width: 100%;
bottom: 0;
background-color: #444;
color: #eee;
-webkit-box-shadow: 0 0 5px 5px #222;
}
.file-finder ol {
overflow: hidden;
}
.file-finder li.selected {
background-color: green;
}
.file-finder input {
width: 100%;
}