fix(editor): actions styling

This commit is contained in:
kolaente 2023-10-21 19:29:00 +02:00
parent cb1d2b3834
commit 80dc35eabb
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 30 additions and 0 deletions

View File

@ -702,4 +702,34 @@ ul[data-type='taskList'] {
background: var(--grey-200);
}
}
ul.tiptap__editor-actions {
font-size: .8rem;
margin: 0;
li {
display: inline-block;
&::after {
content: '·';
padding: 0 .25rem;
}
&:last-child:after {
content: '';
}
}
&, a {
color: var(--grey-500);
&.done-edit {
color: var(--primary);
}
}
a:hover {
text-decoration: underline;
}
}
</style>