Add outliner plugin
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
parent
8c89d39660
commit
cd8987e19d
3 changed files with 2686 additions and 0 deletions
2605
.obsidian/plugins/obsidian-outliner/main.js
vendored
Normal file
2605
.obsidian/plugins/obsidian-outliner/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-outliner/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-outliner/manifest.json
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "obsidian-outliner",
|
||||
"name": "Outliner",
|
||||
"version": "4.3.0",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Work with your lists like in Workflowy or RoamResearch.",
|
||||
"author": "Viacheslav Slinko",
|
||||
"authorUrl": "https://github.com/vslinko",
|
||||
"isDesktopOnly": false
|
||||
}
|
71
.obsidian/plugins/obsidian-outliner/styles.css
vendored
Normal file
71
.obsidian/plugins/obsidian-outliner/styles.css
vendored
Normal file
|
@ -0,0 +1,71 @@
|
|||
/* lists */
|
||||
.outliner-plugin-better-lists .cm-s-obsidian .HyperMD-list-line {
|
||||
padding-top: 0.4em;
|
||||
}
|
||||
|
||||
/* bullets */
|
||||
.outliner-plugin-better-bullets .cm-formatting-list-ul {
|
||||
margin-right: 0.3em;
|
||||
}
|
||||
|
||||
.outliner-plugin-better-bullets .list-bullet::after {
|
||||
width: 0.4em;
|
||||
height: 0.4em;
|
||||
background-color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* lines */
|
||||
.outliner-plugin-list-lines-scroller {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
padding: var(--file-margins);
|
||||
padding-left: 0;
|
||||
pointer-events: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.outliner-plugin-list-lines-content-container {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.outliner-plugin-list-line {
|
||||
pointer-events: auto;
|
||||
position: absolute;
|
||||
width: 5px;
|
||||
margin-left: 0.5ch;
|
||||
margin-top: 1em;
|
||||
z-index: 1;
|
||||
cursor: pointer;
|
||||
background: transparent;
|
||||
background-image: linear-gradient(
|
||||
to right,
|
||||
var(--text-faint) 1px,
|
||||
transparent 1px
|
||||
);
|
||||
background-position-x: 2px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.outliner-plugin-better-bullets .outliner-plugin-list-line {
|
||||
margin-top: 1.4em;
|
||||
}
|
||||
|
||||
.markdown-source-view.mod-cm6.is-readable-line-width
|
||||
.outliner-plugin-list-lines-content-container {
|
||||
max-width: 700px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.outliner-plugin-list-line:hover {
|
||||
background: var(--text-faint);
|
||||
}
|
||||
|
||||
.outliner-plugin-vertical-lines
|
||||
.markdown-source-view.mod-cm6
|
||||
.cm-hmd-list-indent
|
||||
.cm-indent::before {
|
||||
content: none;
|
||||
}
|
Loading…
Reference in a new issue