fix(图表): 辅助线提示框触发区域颜色不明显

This commit is contained in:
wisonic 2024-08-18 17:25:49 +08:00
parent 4218985615
commit 45f9701b26

View File

@ -219,7 +219,7 @@ onMounted(() => {
<template #header>
<div class="assist-line-cfg-header">
<span class="ed-dialog__title">{{ t('chart.assist_line') }}</span>
<el-tooltip class="item" effect="dark" placement="top">
<el-tooltip class="item" effect="ndark" placement="top">
<template #content>
<span> {{ t('chart.assist_line_tip') }}</span>
</template>
@ -379,4 +379,13 @@ span {
font-size: 14px;
}
}
.hint-icon {
cursor: pointer;
font-size: 14px;
color: #646a73;
&.hint-icon--dark {
color: #a6a6a6;
}
}
</style>