This commit is contained in:
Oscar Plaisant
2024-03-28 23:40:47 +01:00
parent 32037ae8e7
commit e5ada772ca
3475 changed files with 1433 additions and 69 deletions

View File

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

File diff suppressed because one or more lines are too long

View File

@@ -1,10 +0,0 @@
{
"id": "obsidian-task-progress-bar",
"name": "Task Progress Bar",
"version": "2.0.0",
"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

@@ -1,71 +0,0 @@
/* 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;
}