Update plugins
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
parent
175a6dd1f1
commit
5eb96ecbaa
8 changed files with 1581 additions and 1470 deletions
3
.obsidian/core-plugins-migration.json
vendored
3
.obsidian/core-plugins-migration.json
vendored
|
@ -25,5 +25,6 @@
|
||||||
"workspaces": false,
|
"workspaces": false,
|
||||||
"file-recovery": true,
|
"file-recovery": true,
|
||||||
"publish": false,
|
"publish": false,
|
||||||
"sync": false
|
"sync": false,
|
||||||
|
"bookmarks": true
|
||||||
}
|
}
|
2
.obsidian/core-plugins.json
vendored
2
.obsidian/core-plugins.json
vendored
|
@ -13,7 +13,7 @@
|
||||||
"note-composer",
|
"note-composer",
|
||||||
"command-palette",
|
"command-palette",
|
||||||
"editor-status",
|
"editor-status",
|
||||||
"starred",
|
"bookmarks",
|
||||||
"outline",
|
"outline",
|
||||||
"word-count",
|
"word-count",
|
||||||
"file-recovery"
|
"file-recovery"
|
||||||
|
|
68
.obsidian/plugins/obsidian-kanban/main.js
vendored
68
.obsidian/plugins/obsidian-kanban/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-kanban",
|
"id": "obsidian-kanban",
|
||||||
"name": "Kanban",
|
"name": "Kanban",
|
||||||
"version": "1.5.2",
|
"version": "1.5.3",
|
||||||
"minAppVersion": "1.0.0",
|
"minAppVersion": "1.0.0",
|
||||||
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
||||||
"author": "mgmeyers",
|
"author": "mgmeyers",
|
||||||
|
|
2950
.obsidian/plugins/obsidian-outliner/main.js
vendored
2950
.obsidian/plugins/obsidian-outliner/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-outliner",
|
"id": "obsidian-outliner",
|
||||||
"name": "Outliner",
|
"name": "Outliner",
|
||||||
"version": "4.6.1",
|
"version": "4.6.7",
|
||||||
"minAppVersion": "1.0.0",
|
"minAppVersion": "1.1.16",
|
||||||
"description": "Work with your lists like in Workflowy or RoamResearch.",
|
"description": "Work with your lists like in Workflowy or RoamResearch.",
|
||||||
"author": "Viacheslav Slinko",
|
"author": "Viacheslav Slinko",
|
||||||
"authorUrl": "https://github.com/vslinko",
|
"authorUrl": "https://github.com/vslinko",
|
||||||
|
|
14
.obsidian/plugins/obsidian-outliner/styles.css
vendored
14
.obsidian/plugins/obsidian-outliner/styles.css
vendored
|
@ -1,14 +1,13 @@
|
||||||
/* lists */
|
/* lists and bullets */
|
||||||
.outliner-plugin-better-lists .cm-s-obsidian .HyperMD-list-line {
|
.outliner-plugin-better-lists .cm-s-obsidian .HyperMD-list-line {
|
||||||
padding-top: 0.4em;
|
padding-top: 0.4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* bullets */
|
.outliner-plugin-better-lists .cm-formatting-list-ul {
|
||||||
.outliner-plugin-better-bullets .cm-formatting-list-ul {
|
|
||||||
margin-right: 0.3em;
|
margin-right: 0.3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.outliner-plugin-better-bullets .list-bullet::after {
|
.outliner-plugin-better-lists .list-bullet::after {
|
||||||
width: 0.4em;
|
width: 0.4em;
|
||||||
height: 0.4em;
|
height: 0.4em;
|
||||||
background-color: var(--text-muted);
|
background-color: var(--text-muted);
|
||||||
|
@ -71,10 +70,15 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* drag-n-drop */
|
/* drag-n-drop */
|
||||||
.outliner-plugin-dragging-line {
|
.outliner-plugin-dropping-line {
|
||||||
background-color: hsla(var(--interactive-accent-hsl), 0.4);
|
background-color: hsla(var(--interactive-accent-hsl), 0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.outliner-plugin-dragging-line {
|
||||||
|
opacity: 0.5;
|
||||||
|
background-color: hsla(var(--interactive-accent-hsl), 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
.outliner-plugin-drop-zone {
|
.outliner-plugin-drop-zone {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
|
|
8
.obsidian/workspace.json
vendored
8
.obsidian/workspace.json
vendored
|
@ -60,6 +60,14 @@
|
||||||
"type": "starred",
|
"type": "starred",
|
||||||
"state": {}
|
"state": {}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f804e1fc8361c53c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue