Merge pull request #7740 from ulleo/dev-v2

fix: 【数据大屏】icon色值不对,暗色下对应N600-DARK(#A6A6A6)
This commit is contained in:
ulleo 2024-01-22 16:24:50 +08:00 committed by GitHub
commit e105f811b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -607,7 +607,7 @@ const iconSize = computed<string>(() => {
</template>
<div
class="icons-container"
:class="{ 'is-editing': titleEditStatus }"
:class="{ 'is-editing': titleEditStatus, 'icons-container__dark': themes === 'dark' }"
v-if="trackMenu.length > 0 || state.title_remark.show"
>
<el-tooltip :effect="toolTip" placement="top" v-if="state.title_remark.show">
@ -712,6 +712,10 @@ const iconSize = computed<string>(() => {
color: #646a73;
&.icons-container__dark {
color: #a6a6a6;
}
&.is-editing {
gap: 6px;
}