From 21fe455fd641d68032654c76c3ac5b3f1302a9b1 Mon Sep 17 00:00:00 2001 From: Starry Date: Tue, 21 May 2024 23:11:23 +0800 Subject: [PATCH] fix: browser log display (#396) --- src/views/dashboard/related/log/LogTable/Index.vue | 4 ++-- .../dashboard/related/log/LogTable/LogBrowser.vue | 13 +++---------- .../dashboard/related/log/LogTable/LogDetail.vue | 4 ++-- 3 files changed, 7 insertions(+), 14 deletions(-) diff --git a/src/views/dashboard/related/log/LogTable/Index.vue b/src/views/dashboard/related/log/LogTable/Index.vue index 0162ca5f..8b60f33c 100644 --- a/src/views/dashboard/related/log/LogTable/Index.vue +++ b/src/views/dashboard/related/log/LogTable/Index.vue @@ -42,14 +42,14 @@ limitations under the License. --> @closed="showDetail = false" :title="t('logDetail')" > - + @@ -62,15 +55,15 @@ limitations under the License. --> } .log-item.selected { - background: rgba(0, 0, 0, 0.04); + background: rgb(0 0 0 / 4%); } .log-item:not(.level0):hover { - background: rgba(0, 0, 0, 0.04); + background: rgb(0 0 0 / 4%); } .log-item:hover { - background: rgba(0, 0, 0, 0.04) !important; + background: rgb(0 0 0 / 4%) !important; } .log-item > div { diff --git a/src/views/dashboard/related/log/LogTable/LogDetail.vue b/src/views/dashboard/related/log/LogTable/LogDetail.vue index cf6def6f..98d89632 100644 --- a/src/views/dashboard/related/log/LogTable/LogDetail.vue +++ b/src/views/dashboard/related/log/LogTable/LogDetail.vue @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. -->