Update plugins
This commit is contained in:
parent
812994c940
commit
462805461e
9 changed files with 17497 additions and 13382 deletions
30085
.obsidian/plugins/dataview/main.js
vendored
30085
.obsidian/plugins/dataview/main.js
vendored
File diff suppressed because one or more lines are too long
2
.obsidian/plugins/dataview/manifest.json
vendored
2
.obsidian/plugins/dataview/manifest.json
vendored
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "dataview",
|
"id": "dataview",
|
||||||
"name": "Dataview",
|
"name": "Dataview",
|
||||||
"version": "0.4.26",
|
"version": "0.5.23",
|
||||||
"minAppVersion": "0.13.11",
|
"minAppVersion": "0.13.11",
|
||||||
"description": "Complex data views for the data-obsessed.",
|
"description": "Complex data views for the data-obsessed.",
|
||||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||||
|
|
56
.obsidian/plugins/dataview/styles.css
vendored
56
.obsidian/plugins/dataview/styles.css
vendored
|
@ -9,6 +9,10 @@
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table-view-table > tbody > tr:hover {
|
||||||
|
background-color: var(--text-selection);
|
||||||
|
}
|
||||||
|
|
||||||
.table-view-table > thead > tr > th {
|
.table-view-table > thead > tr > th {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: larger;
|
font-size: larger;
|
||||||
|
@ -28,6 +32,11 @@
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Live Preview padding fixes, specifically for DataviewJS custom HTML elements. */
|
||||||
|
.is-live-preview .block-language-dataviewjs > p, .is-live-preview .block-language-dataviewjs > span {
|
||||||
|
line-height: 1.0;
|
||||||
|
}
|
||||||
|
|
||||||
/** Rendered value styling for any view. */
|
/** Rendered value styling for any view. */
|
||||||
.dataview-result-list-root-ul {
|
.dataview-result-list-root-ul {
|
||||||
padding: 0em !important;
|
padding: 0em !important;
|
||||||
|
@ -39,7 +48,9 @@
|
||||||
padding-left: 8px;
|
padding-left: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Inline Field Rendering. */
|
/*******************/
|
||||||
|
/** Inline Fields **/
|
||||||
|
/*******************/
|
||||||
|
|
||||||
.dataview.inline-field-key {
|
.dataview.inline-field-key {
|
||||||
border-top-left-radius: 250px;
|
border-top-left-radius: 250px;
|
||||||
|
@ -69,3 +80,46 @@
|
||||||
background-color: var(--background-secondary-alt);
|
background-color: var(--background-secondary-alt);
|
||||||
color: var(--text-nav-selected);
|
color: var(--text-nav-selected);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***************/
|
||||||
|
/** Task View **/
|
||||||
|
/***************/
|
||||||
|
|
||||||
|
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||||
|
margin-top: 3px;
|
||||||
|
margin-bottom: 3px;
|
||||||
|
transition: 0.4s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||||
|
background-color: var(--text-selection);
|
||||||
|
box-shadow: -40px 0 0 var(--text-selection);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*****************/
|
||||||
|
/** Error Views **/
|
||||||
|
/*****************/
|
||||||
|
|
||||||
|
div.dataview-error-box {
|
||||||
|
width: 100%;
|
||||||
|
min-height: 150px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border: 4px dashed var(--background-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview-error-message {
|
||||||
|
color: var(--text-muted);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*************************/
|
||||||
|
/** Additional Metadata **/
|
||||||
|
/*************************/
|
||||||
|
|
||||||
|
.dataview.small-text {
|
||||||
|
font-size: smaller;
|
||||||
|
color: var(--text-selection);
|
||||||
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-kanban",
|
"id": "obsidian-kanban",
|
||||||
"name": "Kanban",
|
"name": "Kanban",
|
||||||
"version": "1.2.39",
|
"version": "1.2.40",
|
||||||
"minAppVersion": "0.12.3",
|
"minAppVersion": "0.12.3",
|
||||||
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
||||||
"author": "mgmeyers",
|
"author": "mgmeyers",
|
||||||
|
|
2
.obsidian/plugins/obsidian-kanban/styles.css
vendored
2
.obsidian/plugins/obsidian-kanban/styles.css
vendored
File diff suppressed because one or more lines are too long
709
.obsidian/plugins/obsidian-tasks-plugin/main.js
vendored
709
.obsidian/plugins/obsidian-tasks-plugin/main.js
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-tasks-plugin",
|
"id": "obsidian-tasks-plugin",
|
||||||
"name": "Tasks",
|
"name": "Tasks",
|
||||||
"version": "1.5.0",
|
"version": "1.6.0",
|
||||||
"minAppVersion": "0.13.21",
|
"minAppVersion": "0.13.21",
|
||||||
"description": "Task management for Obsidian",
|
"description": "Task management for Obsidian",
|
||||||
"author": "Martin Schenck",
|
"author": "Martin Schenck",
|
||||||
|
|
19
.obsidian/workspace
vendored
19
.obsidian/workspace
vendored
|
@ -4,11 +4,15 @@
|
||||||
"type": "split",
|
"type": "split",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "02fd55630b25d534",
|
"id": "fbc815e2fb142102",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "empty",
|
"type": "markdown",
|
||||||
"state": {}
|
"state": {
|
||||||
|
"file": "README.md",
|
||||||
|
"mode": "preview",
|
||||||
|
"source": false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -89,6 +93,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "backlink",
|
"type": "backlink",
|
||||||
"state": {
|
"state": {
|
||||||
|
"file": "README.md",
|
||||||
"collapseAll": true,
|
"collapseAll": true,
|
||||||
"extraContext": true,
|
"extraContext": true,
|
||||||
"sortOrder": "alphabetical",
|
"sortOrder": "alphabetical",
|
||||||
|
@ -144,8 +149,10 @@
|
||||||
"direction": "horizontal",
|
"direction": "horizontal",
|
||||||
"width": 760
|
"width": 760
|
||||||
},
|
},
|
||||||
"active": "02fd55630b25d534",
|
"active": "fbc815e2fb142102",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"README.md",
|
||||||
|
"_Attachments/preview.png",
|
||||||
"Daily Notes/2022-01-05.md",
|
"Daily Notes/2022-01-05.md",
|
||||||
"Daily Notes/2022-01-04.md",
|
"Daily Notes/2022-01-04.md",
|
||||||
"_Dashboard.md",
|
"_Dashboard.md",
|
||||||
|
@ -153,8 +160,6 @@
|
||||||
"Notes/Tasks.md",
|
"Notes/Tasks.md",
|
||||||
"_Kanban.md",
|
"_Kanban.md",
|
||||||
"Tasks/Untitled.md",
|
"Tasks/Untitled.md",
|
||||||
"Notes/Video.md",
|
"Notes/Video.md"
|
||||||
"Projects/~Sample/Requirements.md",
|
|
||||||
"~Sample/Requirements.md"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -23,7 +23,7 @@ be aligned:
|
||||||
|
|
||||||
The result should look similar to:
|
The result should look similar to:
|
||||||
|
|
||||||
![obsidian_preview](_/../_Attachments/preview.png)
|
![obsidian_preview](./../_Attachments/preview.png)
|
||||||
|
|
||||||
## Best Practices
|
## Best Practices
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue