File tree Expand file tree Collapse file tree 4 files changed +21
-2
lines changed
routes/chat/[agentId]/[conversationId] Expand file tree Collapse file tree 4 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,9 @@ File: Main Css File
8989@import " custom/pages/conversation" ;
9090@import " custom/pages/agent" ;
9191
92+ // Common
93+ @import " custom/common/animation" ;
94+
9295// RTL
9396// @import "custom/rtl/bootstrap-rtl";
9497// @import "custom/rtl/components-rtl";
Original file line number Diff line number Diff line change 1+ .css-animation {
2+ animation-duration : 0.8s ;
3+ animation-fill-mode : both ;
4+ }
5+
6+ .fade-in-from-none {
7+ animation-name : fadeInFromNone;
8+ }
9+
10+ @keyframes fadeInFromNone {
11+ from {
12+ opacity : 0 ;
13+ }
14+ to {
15+ opacity : 1 ;
16+ }
17+ }
Original file line number Diff line number Diff line change 287287}
288288
289289.chat-input-section {
290- border-top : 1px solid var (--#{$prefix}border-color );
291290 padding : 2vmin 2% ;
292291 height : 8% ;
293292}
Original file line number Diff line number Diff line change 10401040 < / div>
10411041 < / div>
10421042
1043- < div class = {` chat-input-section ${ ! loadEditor ? ' chat-input-hide' : ' ' } ` }>
1043+ < div class = {` chat-input-section css-animation ${ ! loadEditor ? ' chat-input-hide' : ' fade-in-from-none ' } ` }>
10441044 < div class = " row" >
10451045 {#if loadTextEditor}
10461046 < div class = " col-auto" >
You can’t perform that action at this time.
0 commit comments