Minimal Tasks Theme #1962
Replies: 6 comments 10 replies
-
Wow. Amazing. Thank you very much indeed. I took the liberty of editing your post very very slightly so the credit links work. |
Beta Was this translation helpful? Give feedback.
-
This is so beautiful, thank you for sharing that! |
Beta Was this translation helpful? Give feedback.
-
Looks great, how do I use it? |
Beta Was this translation helpful? Give feedback.
-
That is a very great upgrade for the appearance of tasks! Thank you. A little feature request: I tried it on my own but I´m a noob in css 😅 |
Beta Was this translation helpful? Give feedback.
-
This seems to work better with Obsidian 1.5. I added this to remove the bullets: ul > li.task-list-item {
list-style: none;
} |
Beta Was this translation helpful? Give feedback.
-
Thank you for the css it's so useful 🙏 Instead of: /* Change the Tasks Text Element to an "inline-flex" Element */
.tasks-list-text {
display: inline-flex;
max-width: 100%;
}
span.task-description {
flex: 2;
min-width: 0;
width: 350px;
white-space: nowrap;
display: block;
overflow: hidden;
text-overflow: ellipsis;
} I'm using: /* Allow .tasks-list-text to shrink and take up remaining space responsively */
li.task-list-item {
display: flex;
}
.tasks-list-text {
flex: 1;
display: inline-flex;
}
span.task-description {
flex: 2;
} Note: I use it in |
Beta Was this translation helpful? Give feedback.
-
If you want a more minimal look for your tasks, use the CSS code below. The checkboxes are colored according to their priority and when you hover over emojis, they reveal additional context. Credit goes to SlRvb and esm7's CSS code, since I wouldn't be able to figure it out on my own.
Beta Was this translation helpful? Give feedback.
All reactions