Init
This commit is contained in:
4462
.obsidian/plugins/obsidian-core-search-assistant-plugin/main.js
vendored
Normal file
4462
.obsidian/plugins/obsidian-core-search-assistant-plugin/main.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
.obsidian/plugins/obsidian-core-search-assistant-plugin/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-core-search-assistant-plugin/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-core-search-assistant-plugin",
|
||||
"name": "Core Search Assistant",
|
||||
"version": "0.9.1",
|
||||
"minAppVersion": "0.15.6",
|
||||
"description": "Enhance built-in search: keyboard interface, card preview, bigger preview",
|
||||
"author": "qawatake",
|
||||
"authorUrl": "https://github.com/qawatake/obsidian-core-search-assistant-plugin",
|
||||
"isDesktopOnly": true
|
||||
}
|
60
.obsidian/plugins/obsidian-core-search-assistant-plugin/styles.css
vendored
Normal file
60
.obsidian/plugins/obsidian-core-search-assistant-plugin/styles.css
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
/* search result item */
|
||||
.core-search-assistant_search-result-items-focus .tree-item-self {
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-normal);
|
||||
}
|
||||
.core-search-assistant_search-result-items-focus .tree-item-flair {
|
||||
background-color: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
}
|
||||
|
||||
/* outline on search mode */
|
||||
body {
|
||||
--search-mode-outline: var(--interactive-accent);
|
||||
}
|
||||
|
||||
/* option modal */
|
||||
.core-search-assistant_option-modal div.modal {
|
||||
background-color: var(--background-primary);
|
||||
}
|
||||
.core-search-assistant_option-modal kbd.suggestion-hotkey {
|
||||
float: right;
|
||||
margin-left: 0;
|
||||
margin-right: 10px;
|
||||
padding: 0 10px;
|
||||
font-size: 12px;
|
||||
border-radius: 4px;
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
.core-search-assistant_option-modal span.suggestion-icon {
|
||||
float: left;
|
||||
margin-left: 0;
|
||||
padding: 0 10px;
|
||||
height: 1.5em;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.core-search-assistant_option-modal div.suggestion-item {
|
||||
position: relative;
|
||||
padding-left: 10px;
|
||||
cursor: default;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
.core-search-assistant_option-modal div.suggestion-item.is-selected {
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
/*
|
||||
text color
|
||||
*/
|
||||
span {
|
||||
--highlight-search-match: var(--text-normal);
|
||||
}
|
||||
|
||||
/*
|
||||
background color
|
||||
*/
|
||||
span {
|
||||
--highlight-search-match-bg: var(--text-highlight-bg);
|
||||
--focus-search-match-bg: #ff9633;
|
||||
}
|
Reference in New Issue
Block a user