.edit-select {
    position: absolute;
    max-height: 200px;
    margin: 2px 0 0;
    padding: 0;
    background: #fff;
    border: 1px solid #7a9cd3;
    overflow: auto;
    z-index: 9999;
    list-style: none;
}
.edit-select li {
    display: block;
    padding: 1px 8px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}
.edit-select li.selected {
     background: #1e90ff;
     color: #fff;
 }
.edit-select:hover li {
    background: #fff;
    color: #676a6c;
}
.edit-select li:hover{
  background: #1e90ff;
  color: #fff;
}