Property long keyword rendered in full word

Use case or problem

2024-08-17_01.11.02_CSX

Long keywords cannot be rendered in full word

Proposed solution

I would like to have a setting option that allows to display every keywords fully, without word...

Current workaround (optional)

There is not workaround

You can use a CSS snippet to adjust the label (key) width. e.g. for all notes:

/* adjust properties label width - default is 9em */ 
body { 
    --metadata-label-width: 20em; 
}
/* optional for mobile devices */
.is-mobile { 
    --metadata-label-width: 15em; 
}

for specific notes using a cssclass (adjust as necessary):

.metadata-20 {
    --metadata-label-width: 20em;
}

.metadata-15 {
    --metadata-label-width: 15em;
}

.metadata-12 {
    --metadata-label-width: 12em;
}

2 Likes