Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ and this project adheres to
- πŸ›(frontend) fix attachment download filename #1447
- πŸ›(frontend) exclude h4-h6 headings from table of contents #1441
- πŸ”’(frontend) prevent readers from changing callout emoji #1449
- πŸ›(frontend) fix overlapping placeholders in multi-column layout #1455
- πŸ›(backend) filter invitation with case insensitive email

## [3.7.0] - 2025-09-12
Expand Down
13 changes: 13 additions & 0 deletions src/frontend/apps/impress/src/features/docs/doc-editor/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ export const cssEditor = (readonly: boolean) => css`
font-weight: 400;
}

.bn-block-content[data-is-empty-and-focused][data-content-type='paragraph']
.bn-inline-content:has(> .ProseMirror-trailingBreak:only-child)::before {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
width: inherit;
height: inherit;
}
.bn-block-content[data-is-empty-and-focused][data-content-type='paragraph']
.bn-inline-content:has(> .ProseMirror-trailingBreak:only-child) {
position: relative;
}

.bn-side-menu .mantine-UnstyledButton-root svg {
color: #767676 !important;
}
Expand Down
Loading