File tree Expand file tree Collapse file tree 3 files changed +34
-4
lines changed
webview-ui/src/components Expand file tree Collapse file tree 3 files changed +34
-4
lines changed Original file line number Diff line number Diff line change @@ -238,10 +238,12 @@ export const ChatRowContent = ({
238
238
]
239
239
case "followup" :
240
240
return [
241
- < span
242
- className = "codicon codicon-question"
243
- style = { { color : normalColor , marginBottom : "-1.5px" } } > </ span > ,
244
- < span style = { { color : normalColor , fontWeight : "bold" } } > Roo has a question:</ span > ,
241
+ < div className = "flex items-center gap-2 p-2" >
242
+ < span
243
+ className = "codicon codicon-question"
244
+ style = { { color : normalColor , marginBottom : "-1.5px" } } > </ span >
245
+ ,< span style = { { color : normalColor , fontWeight : "bold" } } > Roo has a question:</ span > ,
246
+ </ div > ,
245
247
]
246
248
default :
247
249
return [ null , null ]
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import { BackspaceIcon, ChatBubbleOvalLeftIcon } from "@heroicons/react/24/outli
12
12
import { vscBadgeBackground , vscEditorBackground , vscInputBackground } from "../ui"
13
13
import { DownloadIcon } from "@radix-ui/react-icons"
14
14
import { ChevronDownIcon , ChevronUpIcon } from "@radix-ui/react-icons"
15
+ import { Tail } from "../ui/tail"
15
16
16
17
interface TaskHeaderProps {
17
18
task : ClineMessage
@@ -357,6 +358,7 @@ const TaskHeader: React.FC<TaskHeaderProps> = ({
357
358
</ div >
358
359
</ >
359
360
) }
361
+ < Tail />
360
362
</ div >
361
363
{ /* {apiProvider === "" && (
362
364
<div
Original file line number Diff line number Diff line change
1
+ import * as React from "react"
2
+ import { cn } from "../../lib/utils"
3
+ import { vscEditorBackground } from "."
4
+
5
+ interface TailProps extends React . HTMLAttributes < SVGElement > {
6
+ className ?: string
7
+ }
8
+
9
+ const Tail = React . forwardRef < SVGSVGElement , TailProps > ( ( { className, ...props } , ref ) => {
10
+ return (
11
+ < div className = "absolute z-10 bottom-[-7px] right-[-4px]" >
12
+ { /* sdfasdf */ }
13
+ < svg xmlns = "http://www.w3.org/2000/svg" width = "16" height = "16" viewBox = "0 0 16 16" fill = "none" >
14
+ < path
15
+ d = "M10.5 13.7039C6.80663 11.782 7.15173 11.3646 1.74219 11.8676L11.8696 1.70312C11.166 6.11013 12.1259 7.5877 14 9C16.2799 10.7182 16.0686 12.1951 15.2132 13.4846C14.3363 14.8066 12.5221 14.7561 10.5 13.7039Z"
16
+ fill = { vscEditorBackground }
17
+ // fill="#FFFFFF"
18
+ />
19
+ </ svg >
20
+ </ div >
21
+ )
22
+ } )
23
+
24
+ Tail . displayName = "Tail"
25
+
26
+ export { Tail }
You can’t perform that action at this time.
0 commit comments