* commenteditor-emoji-picker * capture Mac command key * remove tooltip --------- Co-authored-by: Philipinho <16838612+Philipinho@users.noreply.github.com>
46 lines
902 B
CSS
46 lines
902 B
CSS
.wrapper {
|
|
padding: var(--mantine-spacing-md);
|
|
}
|
|
|
|
.focused-thread {
|
|
border: 2px solid #8d7249;
|
|
}
|
|
|
|
.textSelection {
|
|
margin-top: 4px;
|
|
border-left: 2px solid var(--mantine-color-gray-6);
|
|
padding: 8px;
|
|
background: var(--mantine-color-gray-light);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.commentEditor {
|
|
|
|
.focused {
|
|
border-radius: var(--mantine-radius-sm);
|
|
box-shadow: 0 0 0 2px var(--mantine-color-blue-3);
|
|
}
|
|
|
|
.ProseMirror :global(.ProseMirror){
|
|
border-radius: var(--mantine-radius-sm);
|
|
max-width: 100%;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
max-height: 20vh;
|
|
padding-left: 6px;
|
|
padding-right: 6px;
|
|
margin-top: 10px;
|
|
margin-bottom: 2px;
|
|
overflow: hidden auto;
|
|
}
|
|
|
|
.ProseMirror p {
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
}
|
|
|
|
.actions {
|
|
|
|
}
|
|
}
|
|
|