mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 06:57:10 +00:00
Polish panel release metadata
This commit is contained in:
parent
fdf94feace
commit
4bb631c309
3 changed files with 4 additions and 5 deletions
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Codex Panel",
|
||||
"version": "0.1.0",
|
||||
"minAppVersion": "1.5.0",
|
||||
"description": "Run Codex from an Obsidian side panel.",
|
||||
"description": "Run Codex from a side panel.",
|
||||
"author": "murashit",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ export default class CodexPanelPlugin extends Plugin {
|
|||
|
||||
this.registerView(VIEW_TYPE_CODEX_PANEL, (leaf) => new CodexPanelView(leaf, this));
|
||||
|
||||
this.addRibbonIcon("terminal", "Open panel", () => {
|
||||
this.addRibbonIcon("bot-message-square", "Open panel", () => {
|
||||
void this.activateView();
|
||||
});
|
||||
|
||||
|
|
@ -242,7 +242,7 @@ class CodexPanelView extends ItemView {
|
|||
}
|
||||
|
||||
getIcon(): string {
|
||||
return "terminal";
|
||||
return "bot-message-square";
|
||||
}
|
||||
|
||||
refreshSettings(): void {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,6 @@
|
|||
--codex-panel-toolbar-button-gap: var(--size-2-1, 2px);
|
||||
--codex-panel-message-padding-y: var(--size-4-3, 12px);
|
||||
--codex-panel-composer-padding-y: var(--size-4-2, 8px);
|
||||
--codex-panel-composer-padding-bottom: calc(var(--font-text-size, 16px) * 2);
|
||||
--codex-panel-section-padding: var(--codex-panel-edge-padding-x);
|
||||
--codex-panel-section-gap: var(--size-4-2, 8px);
|
||||
--codex-panel-item-gap: var(--size-2-3, 6px);
|
||||
|
|
@ -1329,7 +1328,7 @@
|
|||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
gap: var(--codex-panel-section-gap);
|
||||
padding: var(--codex-panel-composer-padding-y) var(--codex-panel-edge-padding-x) var(--codex-panel-composer-padding-bottom);
|
||||
padding: var(--codex-panel-composer-padding-y) var(--codex-panel-edge-padding-x);
|
||||
border-top: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue