This commit is contained in:
Oscar Plaisant
2024-10-01 11:38:50 +02:00
parent 695358527b
commit 5b65eb2b2a
178 changed files with 186337 additions and 103731 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,8 +1,8 @@
{
"id": "darlal-switcher-plus",
"name": "Quick Switcher++",
"version": "4.4.0",
"minAppVersion": "1.6.5",
"version": "4.5.1",
"minAppVersion": "1.6.7",
"description": "Enhanced Quick Switcher, search open panels, and symbols.",
"author": "darlal",
"authorUrl": "https://github.com/darlal/obsidian-switcher-plus",

View File

@@ -104,6 +104,29 @@
padding-left: calc(var(--symbol-base-padding) + (6 * var(--symbol-indent-padding)));
}
/* Wrapper container for rendered markdown content using MarkdownRenderer.render() */
.qsp-rendered-container {}
/* Override styles for child elements of rendered markdown content */
.qsp-rendered-container > * {
/* Remove start margin/padding so elements don't take up a bunch of extra
horizontal space */
margin-block-start: 0px;
margin-inline-start: 0px;
padding-block-start: 0px;
padding-inline-start: 0px;
/* Disable elements from reacting to mouse events, so things like links & tags don't
react to mouseover hover, etc.. */
pointer-events: none;
}
/* Rendered markdown content that starts with an Ordered List should keep it's start
margin so that the list number is displayed properly. Obsidian defaults to 40px */
.qsp-rendered-container > ol {
padding-inline-start: 40px;
margin-block-end: 0px;
}
/* command suggestion item */
.qsp-suggestion-command {}
@@ -158,6 +181,17 @@
/* flair icon for suggestions that represent an alias */
.qsp-alias-indicator {}
/* Quick Open indicator container element */
.qsp-quick-open-aux {
display: flex;
align-items: center;
align-self: center;
flex-shrink: 0;
}
/* Quick Open hotkey indicator element */
.qsp-quick-open-hotkey {}
/* headings level */
.qsp-headings-l1 {}
.qsp-headings-l2 {}
@@ -175,5 +209,5 @@
/* Prompt instructions element for facets in custom modes */
.qsp-prompt-instructions-facets {}
/* Prompt instructions element for mode triggers*/
/* Prompt instructions element for mode triggers */
.qsp-prompt-instructions-modes {}