mirror of
https://github.com/atom/atom.git
synced 2026-01-24 14:28:14 -05:00
22 lines
310 B
CSS
22 lines
310 B
CSS
.file-finder {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
background-color: #444;
|
|
color: #eee;
|
|
width: 100%;
|
|
max-height: 200px;
|
|
}
|
|
|
|
.file-finder ol {
|
|
-webkit-box-flex: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.file-finder li.selected {
|
|
background-color: green;
|
|
}
|
|
|
|
.file-finder input {
|
|
width: 100%;
|
|
}
|