The most simplistic CSS

So the CSS I posted before will work for the item containers but they are overridden further into the CSS so font-size needs a different selector.

div.list-item-container {
	height: 20px !important;
	font-style: italic !important;
}

div.list-item-container > a {
	font-size: 10px !important;
}

Will syle the font and line spacing of the sidebars.

If you use todos then I think the checkboxes are also off so you might need to do:

div.todo-list-item > div {
	height: auto !important;
}

image

1 Like