mirror of
https://github.com/dataease/dataease.git
synced 2025-02-24 11:32:57 +08:00
Merge pull request #7740 from ulleo/dev-v2
fix: 【数据大屏】icon色值不对,暗色下对应N600-DARK(#A6A6A6)
This commit is contained in:
commit
e105f811b6
@ -607,7 +607,7 @@ const iconSize = computed<string>(() => {
|
|||||||
</template>
|
</template>
|
||||||
<div
|
<div
|
||||||
class="icons-container"
|
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"
|
v-if="trackMenu.length > 0 || state.title_remark.show"
|
||||||
>
|
>
|
||||||
<el-tooltip :effect="toolTip" placement="top" v-if="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;
|
color: #646a73;
|
||||||
|
|
||||||
|
&.icons-container__dark {
|
||||||
|
color: #a6a6a6;
|
||||||
|
}
|
||||||
|
|
||||||
&.is-editing {
|
&.is-editing {
|
||||||
gap: 6px;
|
gap: 6px;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user