vault backup: 2024-12-12 21:37:21

This commit is contained in:
2024-12-12 21:37:21 +01:00
parent a9676272f2
commit 5bfb39a2cd
295 changed files with 246402 additions and 0 deletions

View File

@ -0,0 +1,5 @@
{
"overwrite": true,
"recursive": true,
"delimiter": ","
}

3026
.obsidian/plugins/multi-properties/main.js vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,10 @@
{
"id": "multi-properties",
"name": "Multi Properties",
"version": "1.1.2",
"minAppVersion": "1.4.13",
"description": "Adds Properties to multiple notes at once. Either right-click a folder, or select multiple notes and right-click the selection.",
"author": "technohiker",
"authorUrl": "https://github.com/technohiker",
"isDesktopOnly": false
}

View File

@ -0,0 +1,28 @@
/* Basic button styling */
#multi-properties-modal a {
display: inline-block;
padding: var(--size-4-1) var(--size-4-2);
text-decoration: none;
background-color: var(--interactive-normal);
box-shadow: var(--input-shadow);
color: var(--text-normal);
border-radius: 4px; /* Rounded corners */
cursor: pointer;
text-align: center;
font-weight: var(--input-font-weight);
font-size: var(--font-ui-small);
}
/* Hover and focus styles */
#multi-properties-modal a:hover,
#multi-properties-modal a:focus {
outline: grey solid 2px;
}
/* Disabled style */
#multi-properties-modal a:disabled {
background-color: #ccc; /* Disabled background color */
border-color: #ccc; /* Disabled border color */
color: #999; /* Disabled text color */
cursor: not-allowed;
}