pulsar/static/fuzzy-finder.css
Kevin Sawicki 71a3842c12 Disable text selection in fuzzy finder list
Mirror the style in the tree view where the
cursor indicates text selection is not possible
2012-09-27 13:07:22 -07:00

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;
}