feat:优化小细节输入框的样式

This commit is contained in:
Roe-xin
2025-12-17 10:03:43 +08:00
parent f18ca4fb9c
commit b0e1995897

View File

@ -195,6 +195,7 @@ export function getWebviewContent(iconUri?: string): string {
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
gap: 10px; gap: 10px;
margin-bottom: -17px;
} }
.mode-selector { .mode-selector {
display: flex; display: flex;
@ -208,12 +209,13 @@ export function getWebviewContent(iconUri?: string): string {
} }
.mode-selector select { .mode-selector select {
padding: 2px 4px; padding: 2px 4px;
background: transparent; background: var(--vscode-input-background);
color: var(--vscode-foreground); color: var(--vscode-foreground);
border: none; border: none;
cursor: pointer; cursor: pointer;
font-size: 12px; font-size: 12px;
outline: none; outline: none;
border-radius: 4px;
} }
.mode-selector select:hover { .mode-selector select:hover {
background: var(--vscode-list-hoverBackground); background: var(--vscode-list-hoverBackground);