File tree Expand file tree Collapse file tree 2 files changed +14
-5
lines changed
packages/module/src/ChatbotConversationHistoryNav Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 3535 }
3636
3737 // Drawer search and actions
38+ .pf-chatbot__history-search-actions {
39+ .pf-v6-c-button.pf-m-control {
40+ --pf-v6-c-button--m-control--PaddingInlineStart : var (--pf-t--global--spacer--control--horizontal--compact );
41+ --pf-v6-c-button--m-control--PaddingInlineEnd : var (--pf-t--global--spacer--control--horizontal--compact );
42+ }
43+ }
44+
3845 .pf-chatbot__input {
3946 width : 100% ;
4047 }
Original file line number Diff line number Diff line change @@ -322,11 +322,13 @@ export const ChatbotConversationHistoryNav: FunctionComponent<ChatbotConversatio
322322 }
323323
324324 return searchActionStart || searchActionEnd ? (
325- < InputGroup >
326- { searchActionStart && < InputGroupItem > { searchActionStart } </ InputGroupItem > }
327- { searchInputContainer && < InputGroupItem isFill > { searchInputContainer } </ InputGroupItem > }
328- { searchActionEnd && < InputGroupItem > { searchActionEnd } </ InputGroupItem > }
329- </ InputGroup >
325+ < div className = "pf-chatbot__history-search-actions" >
326+ < InputGroup >
327+ { searchActionStart && < InputGroupItem > { searchActionStart } </ InputGroupItem > }
328+ { searchInputContainer && < InputGroupItem isFill > { searchInputContainer } </ InputGroupItem > }
329+ { searchActionEnd && < InputGroupItem > { searchActionEnd } </ InputGroupItem > }
330+ </ InputGroup >
331+ </ div >
330332 ) : (
331333 searchInputContainer
332334 ) ;
You can’t perform that action at this time.
0 commit comments