Highlight all org-mode task states in HTML. Not just TODO, DONE.

- Make logic to extract, mark todo state in org.js more generic
- Add default todo state styling to html
This commit is contained in:
Debanjum Singh Solanky
2022-07-28 19:04:42 +04:00
parent f040b3f65c
commit 9f59897eeb
2 changed files with 15 additions and 16 deletions

View File

@@ -163,13 +163,15 @@
span.task-status {
color: white;
padding: 3.5px 3.5px 0;
margin: 5px;
margin-right: 5px;
border-radius: 5px;
background-color: #ed6f00;
}
span.task-status.todo {
background-color: rgb(39, 149, 182);
background-color: #048ba8
}
span.task-status.done {
background-color: rgb(81, 143, 31);
background-color: #06a77d;
}
</style>