vault backup: 2025-12-04 09:12:56
This commit is contained in:
42
.obsidian/plugins/home-tab/data.json
vendored
Normal file
42
.obsidian/plugins/home-tab/data.json
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"logoType": "default",
|
||||
"logo": {
|
||||
"lucideIcon": "",
|
||||
"imagePath": "",
|
||||
"imageLink": ""
|
||||
},
|
||||
"logoScale": 1.2,
|
||||
"iconColorType": "default",
|
||||
"wordmark": "Obsidian",
|
||||
"customFont": "interfaceFont",
|
||||
"fontSize": "4em",
|
||||
"fontColorType": "default",
|
||||
"fontWeight": 600,
|
||||
"maxResults": 5,
|
||||
"showbookmarkedFiles": true,
|
||||
"showRecentFiles": false,
|
||||
"maxRecentFiles": 5,
|
||||
"storeRecentFile": true,
|
||||
"showPath": true,
|
||||
"selectionHighlight": "default",
|
||||
"showShortcuts": true,
|
||||
"markdownOnly": false,
|
||||
"unresolvedLinks": false,
|
||||
"recentFilesStore": [
|
||||
{
|
||||
"filepath": "各种笔记.md",
|
||||
"timestamp": 1764810697242
|
||||
},
|
||||
{
|
||||
"filepath": "绿联 nas.md",
|
||||
"timestamp": 1764810665008
|
||||
}
|
||||
],
|
||||
"bookmarkedFileStore": [],
|
||||
"searchDelay": 0,
|
||||
"replaceNewTabs": true,
|
||||
"newTabOnStart": false,
|
||||
"closePreviousSessionTabs": false,
|
||||
"omnisearch": false,
|
||||
"showOmnisearchExcerpt": true
|
||||
}
|
||||
12062
.obsidian/plugins/home-tab/main.js
vendored
Normal file
12062
.obsidian/plugins/home-tab/main.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
.obsidian/plugins/home-tab/manifest.json
vendored
Normal file
10
.obsidian/plugins/home-tab/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "home-tab",
|
||||
"name": "Home tab",
|
||||
"version": "1.2.1",
|
||||
"minAppVersion": "1.6.0",
|
||||
"description": "A browser-like search tab for your local files.",
|
||||
"author": "Renso",
|
||||
"authorUrl": "https://github.com/olrenso",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
101
.obsidian/plugins/home-tab/styles.css
vendored
Normal file
101
.obsidian/plugins/home-tab/styles.css
vendored
Normal file
@@ -0,0 +1,101 @@
|
||||
.home-tab-suggestion-description, .home-tab-suggestion-filepath, .home-tab-suggestion-tip{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: left;
|
||||
|
||||
color: var(--text-faint);
|
||||
}
|
||||
.home-tab-suggestion-description, .home-tab-suggestion-tip{
|
||||
font-size: var(--font-ui-small)
|
||||
}
|
||||
.home-tab-suggestion-filepath{
|
||||
font-size: var(--font-ui-smaller);
|
||||
margin-left: var(--size-4-3);
|
||||
}
|
||||
.home-tab-suggestion-description svg, .home-tab-suggestion-filepath svg{
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.home-tab-suggestion-container{
|
||||
width: 50%;
|
||||
min-width: 250px;
|
||||
max-width: 700px;
|
||||
margin: 0 auto;
|
||||
|
||||
background: var(--background-modifier-form-field);
|
||||
|
||||
border: var(--input-border-width) solid var(--background-modifier-border);
|
||||
border-top-color: var(--background-secondary);
|
||||
border-radius: 0 0 var(--input-radius) var(--input-radius);
|
||||
}
|
||||
|
||||
.home-tab-searchbar.embedded+.home-tab-suggestion-container, .home-tab-suggestion-container.is-phone{
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
|
||||
.home-tab-suggestion-container .suggestion{
|
||||
flex: 1;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.home-tab-suggestion-title{
|
||||
display: flex;
|
||||
/* flex-wrap: wrap; */
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.home-tab-suggestion-title.is-unresolved{
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.home-tab-suggestion-file-tag{
|
||||
min-width: fit-content;
|
||||
}
|
||||
.suggestion.use-accent-color .is-selected .home-tab-suggestion-title.is-unresolved{
|
||||
color: var(--text-on-accent);
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.suggestion.use-accent-color .is-selected{
|
||||
background-color: var(--interactive-accent);
|
||||
}
|
||||
.suggestion.use-accent-color .is-selected,
|
||||
.suggestion.use-accent-color .is-selected .home-tab-suggestion-filepath,
|
||||
.suggestion.use-accent-color .is-selected .home-tab-suggestion-description,
|
||||
.suggestion.use-accent-color .is-selected .home-tab-suggestion-tip{
|
||||
color: var(--text-on-accent);
|
||||
}
|
||||
|
||||
.suggester-additional-info{
|
||||
border-top: 1px solid var(--background-secondary);
|
||||
font-size: var(--font-ui-smaller);
|
||||
color: var(--text-muted);
|
||||
padding: var(--size-4-2);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.home-tab-hotkey-suggestions{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-evenly;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.home-tab-searchbar.is-active{
|
||||
border-bottom: none !important;
|
||||
border-bottom-left-radius: 0 !important;
|
||||
border-bottom-right-radius: 0 !important;
|
||||
}
|
||||
|
||||
.wide-input-container{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.setting-item-info.compressed{
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.setting-item-info.ultra-compressed{
|
||||
width: 20%;
|
||||
}
|
||||
Reference in New Issue
Block a user