style: 暗黑模式下文字反色

This commit is contained in:
TsMask
2024-08-23 19:05:35 +08:00
parent 255cf026a6
commit 07dce5a27e
2 changed files with 4 additions and 3 deletions

View File

@@ -435,7 +435,8 @@ onUnmounted(() => {
}
& #serverTimeDom {
color: #00000085;
color: inherit;
opacity: 0.85;
transition: all 0.3s;
}
}

View File

@@ -589,7 +589,7 @@ onMounted(() => {
@dblclick="listEdit(record)"
>
<template v-if="record['type'] === 'enum'">
{{ JSON.parse(record['filter'])[text] }}
{{ JSON.parse(record['filter'])[text] || '&nbsp;'}}
</template>
<template v-else>{{ `${text}` || '&nbsp;' }}</template>
<EditOutlined
@@ -934,7 +934,7 @@ onMounted(() => {
}
&__text-wrapper {
font-size: 16px;
color: #333;
color: inherit;
}
&__text-wrapper:hover &__icon {
display: inline-block;