Skip to content

Commit 8a6b734

Browse files
committed
fix: bug fix
1 parent f9983e7 commit 8a6b734

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed
Lines changed: 2 additions & 2 deletions
Loading

frontend/src/views/chat/chat-block/ChartBlock.vue

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -673,9 +673,25 @@ function exportToImage() {
673673
position: absolute;
674674
top: 12px;
675675
right: 12px;
676+
color: #1f2329;
677+
display: none;
678+
background-color: transparent !important;
676679
677680
border-color: #dee0e3;
678681
box-shadow: 0px 4px 8px 0px #1f23291a;
682+
&:hover,
683+
&:focus {
684+
color: #1cba90;
685+
}
686+
687+
&:active {
688+
color: #189e7a;
689+
}
690+
}
691+
&:hover {
692+
.input-icon {
693+
display: flex;
694+
}
679695
}
680696
}
681697
</style>

frontend/src/views/chat/chat-block/ChartPopover.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const handleDefaultChatChange = (val: any) => {
5050
@click="firstItem"
5151
>
5252
<component :is="currentIcon" />
53-
<el-icon style="transform: scale(0.75)" class="expand" size="16">
53+
<el-icon style="color: #646a73" class="expand" size="12">
5454
<icon_expand_down_filled></icon_expand_down_filled>
5555
</el-icon>
5656
</div>
@@ -65,7 +65,7 @@ const handleDefaultChatChange = (val: any) => {
6565
:class="chartType === ele.value && 'isActive'"
6666
@click="handleDefaultChatChange(ele)"
6767
>
68-
<el-icon size="16">
68+
<el-icon style="color: #646a73" size="16">
6969
<component :is="ele.icon" />
7070
</el-icon>
7171
<div class="model-name">{{ ele.name }}</div>

0 commit comments

Comments
 (0)