File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
ts/components/conversation/right-panel/overlay/message-info Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -171,3 +171,9 @@ button,
171
171
fieldset {
172
172
padding : 0 ;
173
173
}
174
+
175
+ * :focus-visible {
176
+ // The FocusTrap we use adds a border around the focused element, even if TAB has not been pressed yet
177
+ // This hides the outline altogether. We might consider adding a new variable linked to a theme setting to fix this, for all users
178
+ outline : none ;
179
+ }
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ function CopyMessageBodyButton({ messageId }: WithMessageIdOpt) {
201
201
}
202
202
return (
203
203
< PanelIconButton
204
- text = { { token : 'copy ' } }
204
+ text = { { token : 'messageCopy ' } }
205
205
iconElement = { < PanelIconLucideIcon unicode = { LUCIDE_ICONS_UNICODE . COPY } /> }
206
206
onClick = { ( ) => {
207
207
clipboard . writeText ( messageBody || '' ) ;
You can’t perform that action at this time.
0 commit comments