update
This commit is contained in:
@@ -14,7 +14,9 @@
|
||||
"enableJs": false,
|
||||
"viewFieldDisplayNullAsEmpty": false,
|
||||
"enableSyntaxHighlighting": true,
|
||||
"enableEditorRightClickMenu": true,
|
||||
"inputFieldTemplates": [],
|
||||
"buttonTemplates": [],
|
||||
"excludedFolders": [
|
||||
"templates"
|
||||
]
|
||||
|
||||
120
.obsidian/plugins/obsidian-meta-bind-plugin/main.js
vendored
120
.obsidian/plugins/obsidian-meta-bind-plugin/main.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"id": "obsidian-meta-bind-plugin",
|
||||
"name": "Meta Bind Plugin",
|
||||
"version": "0.11.0",
|
||||
"name": "Meta Bind",
|
||||
"version": "0.12.5",
|
||||
"minAppVersion": "1.4.0",
|
||||
"description": "This plugin can create input fields inside your notes and bind them to metadata fields.",
|
||||
"description": "Make your notes interactive with inline input fields, metadata displays, and buttons.",
|
||||
"author": "Moritz Jung",
|
||||
"authorUrl": "https://mprojectscode.github.io/",
|
||||
"helpUrl": "https://www.moritzjung.dev/obsidian-meta-bind-plugin-docs/",
|
||||
|
||||
@@ -485,6 +485,13 @@ a.mb-no-link {
|
||||
}
|
||||
|
||||
table.mb-html-table {
|
||||
}
|
||||
|
||||
td.mb-html-table-button-cell {
|
||||
--table-column-min-width: 10px;
|
||||
}
|
||||
|
||||
th.mb-html-table-button-cell {
|
||||
--table-column-min-width: 10px;
|
||||
}
|
||||
|
||||
@@ -492,6 +499,18 @@ table.mb-html-table {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.mb-flex-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: var(--size-4-2);
|
||||
}
|
||||
|
||||
.mb-flex-row > :first-child {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
/* --- HIGHLIGHTING CLASSES --- */
|
||||
.mb-highlight-test {
|
||||
color: #00bfbc;
|
||||
|
||||
Reference in New Issue
Block a user