Minimal Tasks Theme #1962
Replies: 9 comments 21 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.
-
This is great, and produces a much easier to read rendering of tasks. |
Beta Was this translation helpful? Give feedback.
-
Really amazing style, thanks a lot for your work! I am an absolute beginner with css but tried to implement the same hovering logic with the due and creation date emojis, sadly it behaved very strange... Can anybody help me achieve that? Here is what I have tried:
|
Beta Was this translation helpful? Give feedback.
-
@Wasserkopp Can you be more specific than:
Like show us a screenshot of the problem? Otherwise, how will anyone know what problem you are asking to be solved? |
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