File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ const ChatInput: React.FC<ChatInputProps> = ({
6262 position : "relative" ,
6363 boxSizing : "border-box" ,
6464 overflow : "hidden" ,
65+
66+ opacity : disabledChat ? 0.3 : 1 ,
67+ pointerEvents : disabledChat ? "none" : "auto" ,
6568 } }
6669 >
6770 < textarea
@@ -143,7 +146,7 @@ const ChatInput: React.FC<ChatInputProps> = ({
143146 textAlign : "center" ,
144147 } }
145148 >
146- < Caption1 > AI-Generated content may be incorrect</ Caption1 >
149+ < Caption1 > AI-generated content may be incorrect</ Caption1 >
147150 </ div >
148151 </ div >
149152 ) ;
Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ import {
1818 CheckmarkCircle24Regular ,
1919 AlertUrgent24Regular ,
2020 Sparkle20Filled ,
21+ ChatMultipleRegular ,
22+ ChatMultiple20Regular ,
2123} from "@fluentui/react-icons" ;
2224import "../styles/PlanPage.css" ;
2325import CoralShellColumn from "../coral/components/Layout/CoralShellColumn" ;
@@ -190,7 +192,7 @@ const PlanPage: React.FC = () => {
190192 < >
191193 < ContentToolbar
192194 panelTitle = { planData ?. plan ?. initial_goal || "Plan Details" }
193- panelIcon = { < Sparkle20Filled /> }
195+ panelIcon = { < ChatMultiple20Regular /> }
194196 >
195197 < PanelRightToggles >
196198 < ToggleButton
Original file line number Diff line number Diff line change 126126
127127 .user {
128128 background-color : var (--colorBrandBackground2 );
129- color : var (--colorNeutralForegroundOn2 );
129+ color : var (--colorNeutralForeground1 );
130130 align-self : flex-end;
131131 padding : 2px 16px ;
132132 border-radius : 6px ;
You can’t perform that action at this time.
0 commit comments