Skip to content

Commit 31fb79f

Browse files
committed
Merge origin/master into feature/mpp-vscode
2 parents 27899f3 + 2dd0fd8 commit 31fb79f

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

mpp-vscode/webview/src/components/ChatInput.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,37 @@
6868
min-width: 0;
6969
}
7070

71+
.chat-textarea {
72+
flex: 1;
73+
padding: 10px 12px;
74+
border: 1px solid var(--input-border);
75+
background: var(--input-background);
76+
color: var(--input-foreground);
77+
border-radius: 6px;
78+
resize: none;
79+
font-family: inherit;
80+
font-size: inherit;
81+
line-height: 1.4;
82+
min-height: 40px;
83+
max-height: 150px;
84+
outline: none;
85+
transition: border-color 0.2s;
86+
}
87+
88+
.chat-textarea:focus {
89+
border-color: var(--accent);
90+
}
91+
92+
.chat-textarea:disabled {
93+
opacity: 0.6;
94+
cursor: not-allowed;
95+
}
96+
97+
.chat-textarea::placeholder {
98+
color: var(--foreground);
99+
opacity: 0.5;
100+
}
101+
71102
.input-actions {
72103
display: flex;
73104
gap: 4px;

0 commit comments

Comments
 (0)