You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
450 B
26 lines
450 B
3 years ago
|
.ProseMirror-gapcursor {
|
||
|
display: none;
|
||
|
pointer-events: none;
|
||
|
position: absolute;
|
||
|
}
|
||
|
|
||
|
.ProseMirror-gapcursor:after {
|
||
|
content: "";
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
top: -2px;
|
||
|
width: 20px;
|
||
|
border-top: 1px solid black;
|
||
|
animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite;
|
||
|
}
|
||
|
|
||
|
@keyframes ProseMirror-cursor-blink {
|
||
|
to {
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.ProseMirror-focused .ProseMirror-gapcursor {
|
||
|
display: block;
|
||
|
}
|