Skip to content

Instantly share code, notes, and snippets.

@ScottKillen
Last active February 28, 2024 09:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ScottKillen/857d7572b3a0f39064c89afe17dca967 to your computer and use it in GitHub Desktop.
Save ScottKillen/857d7572b3a0f39064c89afe17dca967 to your computer and use it in GitHub Desktop.
title cssclasses
Tasks Dasbboard
task-dashboard

Unfinished tasks

⚠️ Overdue

not done
due before today
sort by due
sort by urgency
sort by description
hide task count
hide backlink
hide due date

📅 Due Today

not done
due today
sort by due
sort by urgency
sort by description
hide task count
hide backlink
hide due date

⏰ Due within two weeks

not done
(due after today) AND (due before in two week)
sort by due
sort by urgency
sort by description
hide task count
hide backlink
hide due date

❔ No due date

not done
no due date
sort by urgency
hide task count
hide backlink

✅ Done Today

done on today
sort by due
sort by urgency
hide task count
hide done date
hide due date
hide edit button
/* Tasks Panel */
/* Obsidian snippet to style a note used as a sidebar panel
*
* To use, add 'cssclasses: task-dashboard' to note's frontmatter.
*
* This snippet only has any effect when the note appears as a pane on
* the right-hand toolbar.
*/
.mod-right-split .markdown-preview-view.markdown-rendered.task-dashboard {
padding-top: 0;
}
.mod-right-split .markdown-preview-view.markdown-rendered.task-dashboard h1 {
display: none;
}
.mod-right-split .markdown-preview-view.markdown-rendered.task-dashboard h2 {
margin-block-start: .25em;
margin-bottom:0;
font-size: 1em;
font-weight:700
}
.mod-right-split .markdown-preview-view.markdown-rendered.task-dashboard ul,
.mod-right-split .markdown-preview-view.markdown-rendered.task-dashboard ul {
margin-block-start: calc(var(--p-spacing)/3);
}
.markdown-preview-view.is-readable-line-width.task-dashboard .markdown-preview-sizer>div
{
--max-width: 100%
}
.workspace-tab-header[aria-label="Dashboard - Tasks"] .workspace-tab-header-inner-icon {
content: "";
height: 20px;
width: 20px;
background-repeat: no-repeat;
background-position-y: 2px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23879a09' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='2' width='8' height='4' rx='1' ry='1'%3E%3C/rect%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'%3E%3C/path%3E%3Cpath d='M12 11h4'%3E%3C/path%3E%3Cpath d='M12 16h4'%3E%3C/path%3E%3Cpath d='M8 11h.01'%3E%3C/path%3E%3Cpath d='M8 16h.01'%3E%3C/path%3E%3C/svg%3E");
background-size: 18px 18px;
}
.workspace-tab-header[aria-label="Dashboard - Tasks"] .workspace-tab-header-status-container,
.workspace-tab-header[aria-label="Dashboard - Tasks"] .workspace-tab-header-inner-icon svg {
display: none;
}
/* Remove inline title */
.task-dashboard .mod-header {
display: none
}
/* color */
.task-dashboard {
--text-normal: var(--tx2)
}
.task-dashboard .task-due {
border: none;
}
/* Change the Tasks Text Element to an "inline-flex" Element */
.task-dashboard .tasks-list-text {
display: inline-flex;
max-width: 100%;
}
.task-dashboard span.task-description {
flex: 2;
min-width: 0;
width: 300px;
white-space: nowrap;
display: block;
overflow: hidden;
text-overflow: ellipsis;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment