logseq
logseq copied to clipboard
Published page titles can be edited

!

That doesn't change the actual HTML but there are enough other reasons why it shouldn't be allowed.
Similar pattern of editable item: code content supports keyboard inputs:

Try adding this to export.css:
#main-container .page-title {
pointer-events: none;
}
Kudos to @solarkraft's gist: https://gist.github.com/solarkraft/b05e9058ca2cda40a4d6e03c52dff025
Similarly, the "delete" button on images are clickable.
Similarly, the "delete" button on images are clickable.
Temporary fix: Try adding this to export.css:
.block-content .asset-container:focus .asset-action-bar,
.block-content .asset-container:hover .asset-action-bar {
/*hide image delete options*/
display: none;
}
Or this (from solarkraft's gist)
/** Image */
/* Remove delete button */
a.delete { display: none; }
Handled here https://github.com/logseq/logseq/pull/8899