Skip to content

Commit e294520

Browse files
committed
fix: 兼容dark模式文字颜色显示不清问题
1 parent 287421d commit e294520

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/views/bpm/processInstance/detail/index_new.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</div>
1414

1515
<div class="flex items-center gap-5 mb-10px text-13px">
16-
<div class="bg-gray-100 h-35px rounded-3xl flex items-center p-8px gap-2">
16+
<div class="bg-gray-100 h-35px rounded-3xl flex items-center p-8px gap-2 dark:color-gray-600">
1717
<img class="rounded-full h-28px" src="@/assets/imgs/avatar.jpg" alt="" />
1818
{{ processInstance?.startUser?.nickname }}
1919
</div>
@@ -48,7 +48,9 @@
4848

4949
<div class="h-60px" v-if="runningTask?.id">
5050
<el-divider class="!my-8px" />
51-
<div class="text-14px flex items-center color-#32373c font-bold btn-container">
51+
<div
52+
class="text-14px flex items-center color-#32373c dark:color-#fff font-bold btn-container"
53+
>
5254
<el-popover :visible="passVisible" placement="top-end" :width="500" trigger="click">
5355
<template #reference>
5456
<el-button plain type="success" @click="openPopover('1')">

0 commit comments

Comments
 (0)