mdelobelle / metadatamenu

For data management enthusiasts : type and manage the metadata of your notes.
https://mdelobelle.github.io/metadatamenu
MIT License
520 stars 27 forks source link

Column widths in table view #555

Open Felharrim opened 8 months ago

Felharrim commented 8 months ago

Good afternoon I would like to have a setting to change the type of display of the number of elements in a cell. Currently they all come as flex items. With a large number of elements (in Multi), the column width takes up a larger value. This is not convenient for observation. You could do it like in Notion, so that the list of elements is wrapped on a new line

mdelobelle commented 8 months ago

Hi you could use a css snippet

.metadata-menu-dv-field-container { display: block }

you can even narrow it to the desired field, let's say "reading" for example: .metadata-menu-dv-field-container.reading{ display: block }

Felharrim commented 8 months ago

@mdelobelle Thank you! How can you connect snippet to the plugin?