1
0
Fork 0
forked from forgejo/forgejo

Merge pull request '[GITEA]: Render status of list items for Org mode' (#1071) from Gusted/forgejo:org-mode-li-status into forgejo-dependency

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/1071
This commit is contained in:
Gusted 2023-07-19 20:56:49 +00:00
commit ec9b2c47db
3 changed files with 31 additions and 0 deletions

View file

@ -556,3 +556,26 @@
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}
.file-view.markup.orgmode li.unchecked::before {
content: '[ ] ';
}
.file-view.markup.orgmode li.checked::before {
content: '[x] ';
}
.file-view.markup.orgmode li.indeterminate::before {
content: '[-] ';
}
/* This is only needed for <p> because they are literally acting as paragraphs,
* and thus having an ::before on the same line would force the paragraph to
* move to the next line. This can be avoided by an inline-block display that
* avoids that property while still having the other properties of the block
* display. */
.file-view.markup.orgmode li.unchecked > p,
.file-view.markup.orgmode li.checked > p,
.file-view.markup.orgmode li.indeterminate > p {
display: inline-block;
}