feat: complete page ai hermes control checklist

This commit is contained in:
lix-2026
2026-05-14 18:24:30 +08:00
parent f257b2a014
commit 0fc9fa7551
7 changed files with 687 additions and 64 deletions
+69 -1
View File
@@ -2670,7 +2670,7 @@ body {
.wolai-page-ai-statusbar {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(68px, auto) minmax(72px, auto) auto;
grid-template-columns: minmax(0, 1fr) minmax(68px, auto) minmax(82px, auto) minmax(72px, auto) auto;
gap: 8px;
align-items: stretch;
}
@@ -2714,9 +2714,16 @@ body {
padding: 0 10px;
border: 1px solid rgba(27, 28, 28, 0.08);
border-radius: 8px;
background: #FFF;
color: #1B1C1C;
font-size: 12px;
text-decoration: none;
cursor: pointer;
}
.wolai-page-ai-settings-link:disabled {
color: #AAA6A0;
cursor: not-allowed;
}
.wolai-page-ai-topbar {
@@ -2811,6 +2818,67 @@ body {
gap: 8px;
}
.wolai-page-ai-tools-panel {
display: grid;
gap: 8px;
padding: 10px;
border: 1px solid rgba(27, 28, 28, 0.08);
border-radius: 8px;
background: #FAFAFA;
}
.wolai-page-ai-tools-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
color: #8B8782;
font-size: 11px;
line-height: 16px;
}
.wolai-page-ai-tools-head span:last-child {
min-width: 0;
overflow: hidden;
text-align: right;
text-overflow: ellipsis;
white-space: nowrap;
}
.wolai-page-ai-tool-list {
display: grid;
max-height: 96px;
gap: 6px;
overflow: auto;
}
.wolai-page-ai-tool-row {
display: grid;
gap: 2px;
padding: 6px 8px;
border-radius: 8px;
background: #FFF;
}
.wolai-page-ai-tool-name {
overflow: hidden;
color: #1B1C1C;
font-size: 12px;
font-weight: 600;
line-height: 16px;
text-overflow: ellipsis;
white-space: nowrap;
}
.wolai-page-ai-tool-meta {
overflow: hidden;
color: #8B8782;
font-size: 11px;
line-height: 16px;
text-overflow: ellipsis;
white-space: nowrap;
}
.wolai-page-ai-provider-group {
display: flex;
flex-wrap: wrap;