update
This commit is contained in:
7
.obsidian/plugins/obsidian-task-progress-bar/data.json
vendored
Normal file
7
.obsidian/plugins/obsidian-task-progress-bar/data.json
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"addTaskProgressBarToHeading": true,
|
||||
"addNumberToProgressBar": true,
|
||||
"allowAlternateTaskStatus": true,
|
||||
"alternativeMarks": "(x|X|-)",
|
||||
"countSubLevel": true
|
||||
}
|
27
.obsidian/plugins/obsidian-task-progress-bar/main.js
vendored
Normal file
27
.obsidian/plugins/obsidian-task-progress-bar/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-task-progress-bar/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-task-progress-bar/manifest.json
vendored
Normal 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
|
||||
}
|
71
.obsidian/plugins/obsidian-task-progress-bar/styles.css
vendored
Normal file
71
.obsidian/plugins/obsidian-task-progress-bar/styles.css
vendored
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user