Hello Community,
is there a possibility to chnage the colour of a daily journal or add an emoji?
My case is that i wnat to see in Journla overview which days are “done” … means i processed all my notes of the day.
Many thanks for your ideas.
Best wishes
Niels
Hi! That’s an amazing start. But now the whole day is green. Is this also possible only for the headline?
Like if .journal-item:has(.day-done) then .ls-page-title: green ?
Replace this:
.journal-item:has(.day-done) {
…with this:
.journal-item:has(.day-done) h1.title {
2 Likes
How would you flip it so it changes when it does NOT have <span class="day-done" />
?
.journal-item:not(:has(.day-done)) h1.title {
1 Like