完善客户端市场与对话能力

This commit is contained in:
baiyanyun
2026-07-13 09:11:24 +08:00
parent a69bb4b8a8
commit d08d30a7ab
16 changed files with 7541 additions and 147 deletions

View File

@@ -50,6 +50,56 @@
white-space: nowrap;
}
.updateNotice {
max-width: 128px;
height: 20px;
border-radius: 10px;
display: inline-flex;
align-items: center;
justify-content: center;
margin-top: 6px;
padding: 0 8px;
border: 1px solid transparent;
font: inherit;
font-size: 11px;
font-weight: 600;
line-height: 18px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
cursor: pointer;
transition:
opacity 0.16s ease,
transform 0.16s ease;
}
.updateNotice:disabled {
cursor: default;
}
.updateNotice:not(:disabled):hover {
opacity: 0.84;
transform: translateY(-1px);
}
.updateNoticeAvailable {
background: rgba(82, 196, 26, 0.12);
border-color: rgba(82, 196, 26, 0.25);
color: #3f9f12;
}
.updateNoticeDownloading {
background: rgba(22, 119, 255, 0.1);
border-color: rgba(22, 119, 255, 0.2);
color: #1677ff;
}
.updateNoticeInstall {
background: rgba(250, 173, 20, 0.12);
border-color: rgba(250, 173, 20, 0.25);
color: #d48806;
}
.historyTrigger {
width: 30px;
height: 30px;