mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-14 04:29:04 +03:00
71a3842c12
Mirror the style in the tree view where the cursor indicates text selection is not possible
30 lines
463 B
CSS
30 lines
463 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;
|
|
-webkit-user-select: none;
|
|
cursor: default;
|
|
}
|
|
|
|
.fuzzy-finder li:hover {
|
|
background-color: #555;
|
|
}
|
|
|
|
.fuzzy-finder ol:empty {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.fuzzy-finder li.selected {
|
|
background-color: green;
|
|
}
|