mirror of
https://github.com/atom/atom.git
synced 2026-01-23 13:58:08 -05:00
28 lines
408 B
CSS
28 lines
408 B
CSS
.file-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;
|
|
}
|
|
|
|
.file-finder ol {
|
|
overflow: hidden;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.file-finder ol:empty {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.file-finder li.selected {
|
|
background-color: green;
|
|
}
|
|
|
|
.file-finder .editor .gutter {
|
|
display: none;
|
|
}
|