mirror of
https://github.com/andrepimenta/claude-code-chat.git
synced 2025-12-15 00:09:38 +00:00
Custom commands
This commit is contained in:
@@ -1051,6 +1051,7 @@ const styles = `
|
||||
color: var(--vscode-foreground);
|
||||
}
|
||||
|
||||
|
||||
/* Slash commands modal */
|
||||
.slash-commands-info {
|
||||
padding: 12px 16px;
|
||||
@@ -1114,6 +1115,46 @@ const styles = `
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
/* Custom command input */
|
||||
.custom-command-item {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.custom-command-input-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2px;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.command-prefix {
|
||||
font-size: 12px;
|
||||
color: var(--vscode-foreground);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.custom-command-input {
|
||||
background-color: var(--vscode-input-background);
|
||||
border: 1px solid var(--vscode-input-border);
|
||||
color: var(--vscode-input-foreground);
|
||||
padding: 2px 6px;
|
||||
border-radius: 3px;
|
||||
font-size: 11px;
|
||||
outline: none;
|
||||
min-width: 120px;
|
||||
font-family: var(--vscode-editor-font-family);
|
||||
}
|
||||
|
||||
.custom-command-input:focus {
|
||||
border-color: var(--vscode-focusBorder);
|
||||
box-shadow: 0 0 0 1px var(--vscode-focusBorder);
|
||||
}
|
||||
|
||||
.custom-command-input::placeholder {
|
||||
color: var(--vscode-input-placeholderForeground);
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.status {
|
||||
padding: 8px 12px;
|
||||
background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
|
||||
|
||||
Reference in New Issue
Block a user