logseq icon indicating copy to clipboard operation
logseq copied to clipboard

Published page titles can be edited

Open kvistgaard opened this issue 3 years ago • 2 comments

image

! image

That doesn't change the actual HTML but there are enough other reasons why it shouldn't be allowed.

kvistgaard avatar Mar 11 '22 13:03 kvistgaard

Similar pattern of editable item: code content supports keyboard inputs: image

emms007 avatar Mar 11 '22 14:03 emms007

Try adding this to export.css:

#main-container .page-title { 
   pointer-events: none; 
}

Kudos to @solarkraft's gist: https://gist.github.com/solarkraft/b05e9058ca2cda40a4d6e03c52dff025

candideu avatar Oct 15 '22 00:10 candideu

Similarly, the "delete" button on images are clickable.

tomtung avatar Mar 17 '23 23:03 tomtung

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; }

candideu avatar Mar 18 '23 00:03 candideu

Handled here https://github.com/logseq/logseq/pull/8899

sprocketc avatar Mar 27 '23 18:03 sprocketc