vault backup: 2024-12-12 21:37:21
This commit is contained in:
5
.obsidian/plugins/multi-properties/data.json
vendored
Normal file
5
.obsidian/plugins/multi-properties/data.json
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"overwrite": true,
|
||||
"recursive": true,
|
||||
"delimiter": ","
|
||||
}
|
3026
.obsidian/plugins/multi-properties/main.js
vendored
Normal file
3026
.obsidian/plugins/multi-properties/main.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
.obsidian/plugins/multi-properties/manifest.json
vendored
Normal file
10
.obsidian/plugins/multi-properties/manifest.json
vendored
Normal 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
|
||||
}
|
28
.obsidian/plugins/multi-properties/styles.css
vendored
Normal file
28
.obsidian/plugins/multi-properties/styles.css
vendored
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user