Merge claude/2
This commit is contained in:
commit
0b32405f0a
@ -184,6 +184,10 @@
|
||||
but bigger and green. The delete button uses bootstrap red var(--status-danger);
|
||||
we use bootstrap green var(--status-success) for parity. */
|
||||
.tool-run-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 6px;
|
||||
background: rgba(var(--status-success-rgb), 0.12);
|
||||
border: 1px solid rgba(var(--status-success-rgb), 0.3);
|
||||
color: var(--status-success);
|
||||
@ -196,6 +200,8 @@
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
.tool-run-btn-icon { flex-shrink: 0; }
|
||||
.tool-run-btn-label { display: inline-block; }
|
||||
|
||||
.tool-run-btn:hover {
|
||||
background: rgba(var(--status-success-rgb), 0.22);
|
||||
|
||||
@ -377,7 +377,10 @@ class ToolsManager {
|
||||
</div>
|
||||
<div class="tool-action">
|
||||
<button class="${btnClass}" data-action="run" title="${escapeHtml(tool.label || tool.id)}">
|
||||
Run
|
||||
<svg class="tool-run-btn-icon" width="12" height="12" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
|
||||
<polygon points="6,4 20,12 6,20"></polygon>
|
||||
</svg>
|
||||
<span class="tool-run-btn-label">Run</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>`;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user