vault backup: 2025-12-09 15:53:37
Some checks failed
Deploy Quartz site to GitHub Pages / build (push) Has been cancelled
Some checks failed
Deploy Quartz site to GitHub Pages / build (push) Has been cancelled
This commit is contained in:
3
content/.obsidian/community-plugins.json
vendored
3
content/.obsidian/community-plugins.json
vendored
@@ -8,5 +8,6 @@
|
|||||||
"emoji-shortcodes",
|
"emoji-shortcodes",
|
||||||
"obsidian42-brat",
|
"obsidian42-brat",
|
||||||
"agent-client",
|
"agent-client",
|
||||||
"manual-sorting"
|
"manual-sorting",
|
||||||
|
"obsidian-icon-folder"
|
||||||
]
|
]
|
||||||
31
content/.obsidian/plugins/obsidian-icon-folder/data.json
vendored
Normal file
31
content/.obsidian/plugins/obsidian-icon-folder/data.json
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
"settings": {
|
||||||
|
"migrated": 6,
|
||||||
|
"iconPacksPath": ".obsidian/icons",
|
||||||
|
"fontSize": 16,
|
||||||
|
"emojiStyle": "native",
|
||||||
|
"iconColor": null,
|
||||||
|
"recentlyUsedIcons": [],
|
||||||
|
"recentlyUsedIconsSize": 10,
|
||||||
|
"rules": [],
|
||||||
|
"extraMargin": {
|
||||||
|
"top": 0,
|
||||||
|
"right": 4,
|
||||||
|
"bottom": 0,
|
||||||
|
"left": 0
|
||||||
|
},
|
||||||
|
"iconInTabsEnabled": false,
|
||||||
|
"iconInTitleEnabled": false,
|
||||||
|
"iconInTitlePosition": "above",
|
||||||
|
"iconInFrontmatterEnabled": false,
|
||||||
|
"iconInFrontmatterFieldName": "icon",
|
||||||
|
"iconColorInFrontmatterFieldName": "iconColor",
|
||||||
|
"iconsBackgroundCheckEnabled": false,
|
||||||
|
"iconsInNotesEnabled": true,
|
||||||
|
"iconsInLinksEnabled": true,
|
||||||
|
"iconIdentifier": ":",
|
||||||
|
"lucideIconPackType": "native",
|
||||||
|
"debugMode": false,
|
||||||
|
"useInternalPlugins": false
|
||||||
|
}
|
||||||
|
}
|
||||||
7158
content/.obsidian/plugins/obsidian-icon-folder/main.js
vendored
Normal file
7158
content/.obsidian/plugins/obsidian-icon-folder/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
content/.obsidian/plugins/obsidian-icon-folder/manifest.json
vendored
Normal file
10
content/.obsidian/plugins/obsidian-icon-folder/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"id": "obsidian-icon-folder",
|
||||||
|
"name": "Iconize",
|
||||||
|
"version": "2.14.7",
|
||||||
|
"minAppVersion": "0.9.12",
|
||||||
|
"description": "Add icons to anything you desire in Obsidian, including files, folders, and text.",
|
||||||
|
"author": "Florian Woelki",
|
||||||
|
"authorUrl": "https://florianwoelki.com/",
|
||||||
|
"isDesktopOnly": false
|
||||||
|
}
|
||||||
120
content/.obsidian/plugins/obsidian-icon-folder/styles.css
vendored
Normal file
120
content/.obsidian/plugins/obsidian-icon-folder/styles.css
vendored
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
.iconize-inline-title-wrapper {
|
||||||
|
width: var(--line-width);
|
||||||
|
max-width: var(--max-width);
|
||||||
|
margin-inline: var(--content-margin);
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-title-icon {
|
||||||
|
max-width: var(--max-width);
|
||||||
|
margin-right: var(--size-4-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-icon-in-link {
|
||||||
|
transform: translateY(20%);
|
||||||
|
margin-right: var(--size-2-2);
|
||||||
|
display: inline-flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-icon {
|
||||||
|
border: 1px solid transparent;
|
||||||
|
margin: 0px 4px 0px 0px;
|
||||||
|
display: flex;
|
||||||
|
align-self: center;
|
||||||
|
margin: auto 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-folder-title,
|
||||||
|
.nav-file-title {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-setting input[type='color'] {
|
||||||
|
margin: 0 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-modal.prompt-results {
|
||||||
|
margin: 0;
|
||||||
|
overflow-y: auto;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
||||||
|
}
|
||||||
|
|
||||||
|
.prompt .iconize-subheadline {
|
||||||
|
margin-top: 12px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: gray;
|
||||||
|
grid-column-start: 1;
|
||||||
|
grid-column-end: 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 640px) {
|
||||||
|
.iconize-modal.prompt-results {
|
||||||
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||||
|
}
|
||||||
|
.prompt .iconize-subheadline {
|
||||||
|
grid-column-end: 4;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-modal.prompt-results .suggestion-item {
|
||||||
|
cursor: pointer;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 13px;
|
||||||
|
color: var(--text-muted);
|
||||||
|
padding: 16px 8px;
|
||||||
|
line-break: auto;
|
||||||
|
word-break: break-word;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-modal.prompt-results .suggestion-item.suggestion-item__center {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-icon-preview {
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-icon-preview img {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-icon-preview svg {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
color: currentColor;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-dragover {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-dragover-el {
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
color: var(--text-normal);
|
||||||
|
background-color: var(--background-secondary-alt);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Custom rule modal. */
|
||||||
|
.iconize-custom-modal .modal-content {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconize-custom-modal .modal-content input {
|
||||||
|
width: 100%;
|
||||||
|
margin-right: 0.5rem;
|
||||||
|
}
|
||||||
3
content/.obsidian/workspace.json
vendored
3
content/.obsidian/workspace.json
vendored
@@ -82,8 +82,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"direction": "horizontal",
|
"direction": "horizontal",
|
||||||
"width": 235.50390243530273,
|
"width": 235.50390243530273
|
||||||
"collapsed": true
|
|
||||||
},
|
},
|
||||||
"right": {
|
"right": {
|
||||||
"id": "0948c66181b40af9",
|
"id": "0948c66181b40af9",
|
||||||
|
|||||||
Reference in New Issue
Block a user