Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix (Whiteboards): Autocomplete on portals #8747

Merged
merged 1 commit into from
Mar 3, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion tldraw/apps/tldraw-logseq/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,6 @@ button.tl-select-input-trigger {
left: 0;
overscroll-behavior: none;
opacity: 1;
overflow: hidden;
user-select: text;
transform-origin: top left;

Expand Down Expand Up @@ -760,6 +759,10 @@ button.tl-select-input-trigger {
}
}

.tl-logseq-cp-container-bg {
border-radius: 8px;
}

.tl-type-tag {
@apply flex items-center justify-center rounded text-base;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ export const SelectionForeground = observer(function SelectionForeground<S exten

return (
<SVGContainer>
<rect
{!app.editingShape && (<rect
className="tl-bounds-fg"
width={Math.max(width, 1)}
height={Math.max(height, 1)}
rx={borderRadius}
ry={borderRadius}
pointerEvents="none"
/>
/>)}
<EdgeHandle
x={targetSize * 2}
y={0}
Expand Down