This commit is contained in:
oscar.plaisant@icloud.com
2023-10-23 23:30:51 +02:00
parent f5b9c3d02c
commit 03ecc4a65b
3433 changed files with 1756195 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{
"addTaskProgressBarToHeading": true,
"addNumberToProgressBar": true,
"allowAlternateTaskStatus": true,
"alternativeMarks": "(x|X|-)",
"countSubLevel": true
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "obsidian-task-progress-bar",
"name": "Task Progress Bar",
"version": "1.6.1",
"minAppVersion": "0.15.2",
"description": "A task progress bar plugin for tasks in Obsidian.",
"author": "Boninall",
"authorUrl": "https://github.com/Quorafind",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,71 @@
/* Set Default Progress Bar For Plugin */
.cm-task-progress-bar {
display: inline-block;
position: relative;
margin-left: 5px;
margin-bottom: 1px;
}
.HyperMD-header .cm-task-progress-bar {
display: inline-block;
position: relative;
margin-left: 5px;
margin-bottom: 5px;
}
.progress-bar-inline {
border-radius: 10px;
height: 8px;
}
.progress-bar-inline-0 {
background-color: #AE431E;
}
.progress-bar-inline-1 {
background-color: #E5890A;
}
.progress-bar-inline-2 {
background-color: #B4C6A6;
}
.progress-bar-inline-3 {
background-color: #6BCB77;
}
.progress-bar-inline-4 {
background-color: #4D96FF;
}
.progress-bar-inline-background {
color: #000 !important;
background-color: #f1f1f1 !important;
border-radius: 10px;
flex-direction: row;
justify-content: flex-start;
align-items: center;
width: 85px;
}
/* Set Default Progress Bar With Number For Plugin */
.cm-task-progress-bar.with-number {
display: inline-flex;
align-items: center;
}
.HyperMD-header .cm-task-progress-bar.with-number .progress-bar-inline-background, .HyperMD-header .cm-task-progress-bar.with-number .progress-status {
margin-bottom: 5px;
}
.cm-task-progress-bar.with-number .progress-bar-inline-background {
margin-bottom: -2px;
width: 42px;
}
.cm-task-progress-bar.with-number .progress-status {
font-size: 13px;
margin-left: 3px;
}