1
0

vault backup: 2026-01-14 08:33:58
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 3m49s

This commit is contained in:
2026-01-14 08:33:58 +01:00
parent b87d669d6f
commit cbcd5d55db
4 changed files with 248 additions and 39 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
{"id":"agent-client","name":"Agent Client","version":"0.6.0-preview.2","minAppVersion":"0.15.0","description":"Chat with AI agents via the Agent Client Protocol directly from your vault.","author":"RAIT-09","authorUrl":"https://github.com/RAIT-09","fundingUrl":"https://www.buymeacoffee.com/rait09","isDesktopOnly":true}
{"id":"agent-client","name":"Agent Client","version":"0.6.0-preview.4","minAppVersion":"0.15.0","description":"Chat with AI agents via the Agent Client Protocol directly from your vault.","author":"RAIT-09","authorUrl":"https://github.com/RAIT-09","fundingUrl":"https://www.buymeacoffee.com/rait09","isDesktopOnly":true}

View File

@@ -1150,6 +1150,35 @@ If your plugin does not need CSS, delete this file.
text-decoration: line-through;
}
/* Diff Expand/Collapse Bar */
.agent-client-diff-expand-bar {
display: flex;
align-items: center;
justify-content: center;
padding: 6px 12px;
background-color: var(--background-secondary-alt);
border-top: 1px solid var(--background-modifier-border);
cursor: pointer;
user-select: none;
transition: background-color 0.1s ease;
}
.agent-client-diff-expand-bar:hover {
background-color: var(--background-modifier-hover);
}
.agent-client-diff-expand-text {
font-size: 11px;
color: var(--text-muted);
font-family: var(--font-monospace);
}
.agent-client-diff-expand-icon {
font-size: 0.8em;
color: var(--text-muted);
margin-left: 8px;
}
/* Tool Call Details */
.agent-client-tool-call-read-details,
.agent-client-tool-call-edit-details,