File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
packages/chat-component/src Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -668,7 +668,7 @@ export class ChatComponent extends LitElement {
668668 title ="${ this . enableVoiceListening
669669 ? globalConfig . CHAT_VOICE_REC_BUTTON_LABEL_TEXT
670670 : globalConfig . CHAT_VOICE_BUTTON_LABEL_TEXT } "
671- class ="chatbox__button no-shadow ${ this . enableVoiceListening ? 'recording' : 'not-recording' } "
671+ class ="chatbox__button voice__input ${ this . enableVoiceListening ? 'recording' : 'not-recording' } "
672672 ?disabled ="${ ! this . showVoiceInput } "
673673 @click ="${ this . handleVoiceInput } "
674674 >
Original file line number Diff line number Diff line change @@ -367,8 +367,12 @@ export const mainStyle = css`
367367 width : 20px ;
368368 cursor : pointer;
369369 }
370- .no-shadow {
370+ .voice__input {
371371 box-shadow : none;
372+ background : transparent;
373+ border : none;
374+ cursor : pointer;
375+ width : 50px ;
372376 }
373377 .chatbox__input-container {
374378 display : flex;
You can’t perform that action at this time.
0 commit comments