kedao
Version:
Rich Text Editor Based On Draft.js
18 lines • 350 B
CSS
.menu-item {
display: block;
list-style: none;
margin: 0;
font-size: 16px;
cursor: pointer;
}
.menu-item:hover {
background-color: rgba(0, 0, 0, 0.1);
}
.menu-item.active {
background-color: #3498db;
color: #fff;
}
.menu-item:not(.active) {
color: rgba(255, 255, 255, 0.6);
box-shadow: inset 0 -1px 0 0 rgba(255, 255, 255, 0.1);
}