logseq-plugin-task-check-date icon indicating copy to clipboard operation
logseq-plugin-task-check-date copied to clipboard

hide completed property

Open hodanli opened this issue 3 years ago • 5 comments

is there any way to hide completed property

hodanli avatar Nov 27 '22 12:11 hodanli

Hey! As far as I know it’s impossible since it’s block’s property

DimitryDushkin avatar Jan 22 '23 14:01 DimitryDushkin

This might not be what you are after, but one thing that I do is to change the block property css to be same as the one used for schedule. This way it does not look that bad. 2023-01-22-19-52-48

meain avatar Jan 22 '23 14:01 meain

This might not be what you are after, but one thing that I do is to change the block property css to be same as the one used for schedule. This way it does not look that bad. 2023-01-22-19-52-48

Could you show how to do it? I was using Awesome Props plugin to hide properties. I wish I could do it on a block by block basis.

joaosimuai avatar Mar 01 '23 16:03 joaosimuai

You can write custom css for LogSeq by editing logseq/custom.css. Your changes will depend on the theme that you are using. I personally use Harmony theme with my custom.css to get this effect. The .block-properties class is what you will have to edit.

meain avatar Mar 02 '23 03:03 meain

It should be possible with

;; hide specific properties for blocks
;; E.g. :block-hidden-properties #{:created-at :updated-at}
:block-hidden-properties #{:completed}

EDIT: You need to configure this in your config.edn.

matthjes avatar Mar 06 '23 14:03 matthjes