1- // TODO: extract the relevant bits, decouple from Rovo Dev styles
2- import 'src/rovo-dev/ui/RovoDev.css' ;
1+ import './Suggestions.css' ;
32
43import { Checkbox } from '@atlaskit/checkbox' ;
54import { HelperMessage } from '@atlaskit/form' ;
@@ -83,14 +82,17 @@ const AISuggestionFooter: React.FC<{
8382 ? 'Thank you for your feedback! Your input helps us improve Rovo Dev.'
8483 : 'Please provide feedback to improve Rovo Dev work item generation' }
8584 </ HelperMessage >
86- < div className = "chat-message-actions" style = { { display : 'flex' , gap : '2px' , marginTop : '10px' } } >
85+ < div
86+ className = "ai-suggestion-feedback-actions"
87+ style = { { display : 'flex' , gap : '2px' , marginTop : '10px' } }
88+ >
8789 < div style = { { flex : 1 } } > </ div >
8890 < Tooltip content = "Helpful" >
8991 < button
9092 onClick = { ( ) => handleFeedback ( true ) }
9193 type = "button"
9294 aria-label = "like-response-button"
93- className = "chat-message -action"
95+ className = "ai-suggestion-feedback -action"
9496 style = { { visibility : feedbackSent ? 'hidden' : 'visible' } }
9597 >
9698 < ThumbsUpIcon label = "thumbs-up" spacing = "none" />
@@ -103,7 +105,7 @@ const AISuggestionFooter: React.FC<{
103105 } }
104106 type = "button"
105107 aria-label = "dislike-response-button"
106- className = "chat-message -action"
108+ className = "ai-suggestion-feedback -action"
107109 style = { { visibility : feedbackSent ? 'hidden' : 'visible' } }
108110 >
109111 < ThumbsDownIcon label = "thumbs-down" spacing = "none" />
0 commit comments