We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22997f4 commit 06cef41Copy full SHA for 06cef41
1 file changed
dashboard/src/views/ConversationPage.vue
@@ -202,6 +202,8 @@
202
v-else
203
class="conversation-messages-container"
204
style="background-color: var(--v-theme-surface);"
205
+ role="region"
206
+ :aria-label="tm('history.title')"
207
tabindex="0"
208
@wheel.stop>
209
<!-- 空对话提示 -->
@@ -1113,6 +1115,11 @@ export default {
1113
1115
background-color: #f9f9f9;
1114
1116
}
1117
1118
+.conversation-messages-container:focus-visible {
1119
+ outline: 2px solid rgba(var(--v-theme-primary), 0.6);
1120
+ outline-offset: 2px;
1121
+}
1122
+
1123
/* 暗色模式下的聊天消息容器 */
1124
.v-theme--dark .conversation-messages-container {
1125
background-color: #1e1e1e;
0 commit comments