prosekit
Version:
ProseKit: A toolkit for building rich text editors.
33 lines (31 loc) • 703 B
CSS
/* ../extensions/src/loro/style.css */
.ProseMirror-loro-cursor:first-child {
margin-top: 16px;
}
.ProseMirror-loro-cursor {
position: relative;
margin-right: -1px;
margin-left: -1px;
border-right: 1px solid black;
border-left: 1px solid black;
border-color: orange;
word-break: normal;
pointer-events: none;
}
.ProseMirror-loro-cursor > div {
position: absolute;
top: -1.05em;
left: -1px;
padding-right: 2px;
padding-left: 2px;
background-color: rgb(250, 129, 0);
color: white;
font-style: normal;
font-weight: normal;
font-size: 13px;
line-height: normal;
font-family: serif;
white-space: nowrap;
user-select: none;
}
/* src/extensions/loro/style.css */