quill-mention
Version:
@mentions for the Quill rich text editor
41 lines (36 loc) • 670 B
CSS
.ql-mention-list-container {
width: 270px;
border: 1px solid #F0F0F0;
border-radius: 4px;
background-color: #FFFFFF;
box-shadow: 0 2px 12px 0 rgba(30, 30, 30, 0.08);
z-index: 9001;
}
.ql-mention-list {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
}
.ql-mention-list-item {
cursor: pointer;
height: 44px;
line-height: 44px;
font-size: 16px;
padding: 0 20px;
vertical-align: middle;
}
.ql-mention-list-item.selected {
background-color: #D3E1EB;
text-decoration: none;
}
.mention {
height: 24px;
width: 65px;
border-radius: 6px;
background-color: #D3E1EB;
padding: 3px 0;
}
.mention>span {
margin: 0 3px;
}