File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
mpp-vscode/webview/src/components Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 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 ;
You can’t perform that action at this time.
0 commit comments