From 3c49e96e02e6c6f97f194fb092c2ca053f891086 Mon Sep 17 00:00:00 2001 From: kuaifan Date: Tue, 11 Mar 2025 16:24:31 +0800 Subject: [PATCH] no message --- resources/assets/js/components/SearchBox.vue | 8 +++++++- resources/assets/sass/pages/components/chat-input.scss | 8 ++++---- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/resources/assets/js/components/SearchBox.vue b/resources/assets/js/components/SearchBox.vue index 7c20976cd..0379137a2 100755 --- a/resources/assets/js/components/SearchBox.vue +++ b/resources/assets/js/components/SearchBox.vue @@ -340,7 +340,7 @@ export default { if (item.complete_at) { tags.push({ name: this.$L('已完成'), - style: 'background-color:#ccc', + style: 'background-color:rgba(11,192,55,0.56)', }) } else if (item.overdue) { tags.push({ @@ -353,6 +353,12 @@ export default { style: 'background-color:#f80', }) } + if (item.archived_at) { + tags.push({ + name: this.$L('已归档'), + style: 'background-color:#ccc', + }) + } return { key, type: 'task', diff --git a/resources/assets/sass/pages/components/chat-input.scss b/resources/assets/sass/pages/components/chat-input.scss index 7cfae6875..bd6fae615 100755 --- a/resources/assets/sass/pages/components/chat-input.scss +++ b/resources/assets/sass/pages/components/chat-input.scss @@ -38,7 +38,7 @@ .chat-record { visibility: visible; opacity: 1; - z-index: 9; + z-index: 10; } } } @@ -318,7 +318,7 @@ position: absolute; top: 50%; left: 50%; - z-index: 2; + z-index: 20; transform: translate(-50%, -50%) scale(1); border-radius: 50%; background-color: $primary-color; @@ -334,7 +334,7 @@ position: absolute; top: 50%; left: 50%; - z-index: 3; + z-index: 30; transform: translate(-50%, -50%) scale(1); transition: all 0.3s ease; color: #ffffff; @@ -344,7 +344,7 @@ position: absolute; top: 50%; left: 50%; - z-index: 3; + z-index: 30; transform: translate(-50%, -50%) scale(1); display: flex; align-items: center;