chore(merge): 整合最新 main 与统一认证变更
ci / verify (pull_request) Successful in 12m18s
ci / verify (pull_request) Successful in 12m18s
合并远端生产 CI、依赖与 API 文档改动,保留统一认证和 SSF 能力。由于远端生产基线已占用 0062,将尚未发布的身份迁移整理为 0063 至 0068 的最终增量 Schema,移除仅用于开发期草稿升级的破坏性迁移步骤。 验证:go test ./...。其余生产门禁在合并提交后继续执行。
This commit is contained in:
@@ -120,6 +120,83 @@
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.agentResourceCard {
|
||||
display: grid;
|
||||
grid-template-columns: auto minmax(0, 1fr);
|
||||
gap: 16px;
|
||||
margin: 0 0 24px;
|
||||
padding: 18px;
|
||||
border: 1px solid #bfdbfe;
|
||||
border-radius: 12px;
|
||||
background: linear-gradient(135deg, #eff6ff 0%, #ffffff 70%);
|
||||
}
|
||||
|
||||
.agentResourceIcon {
|
||||
display: grid;
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
place-items: center;
|
||||
border-radius: 10px;
|
||||
background: #dbeafe;
|
||||
color: #1d4ed8;
|
||||
}
|
||||
|
||||
.agentResourceContent {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.agentResourceContent p {
|
||||
margin: 0;
|
||||
color: var(--text-soft);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.agentResourceTitle,
|
||||
.agentResourceActions,
|
||||
.agentResourceModules {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.agentResourceTitle {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.agentResourceTitle h2 {
|
||||
margin: 2px 0 0;
|
||||
font-size: 1.0625rem;
|
||||
}
|
||||
|
||||
.agentResourceTitle .eyebrow {
|
||||
color: #2563eb;
|
||||
}
|
||||
|
||||
.agentResourceModules {
|
||||
color: var(--text-soft);
|
||||
font-size: 0.8125rem;
|
||||
}
|
||||
|
||||
.agentResourceModules strong {
|
||||
color: var(--text-strong);
|
||||
}
|
||||
|
||||
.agentResourceActions {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.agentResourceMetadataLink {
|
||||
color: #2563eb;
|
||||
font-size: 0.8125rem;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.agentResourceMetadataLink:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.paramCard {
|
||||
margin-top: 18px;
|
||||
overflow: hidden;
|
||||
@@ -141,6 +218,7 @@
|
||||
.paramRow {
|
||||
display: grid;
|
||||
grid-template-columns: 150px 110px minmax(0, 1fr) 50px;
|
||||
align-items: start;
|
||||
gap: 12px;
|
||||
padding: 13px 16px;
|
||||
border-bottom: 1px solid #f0f2f5;
|
||||
@@ -148,11 +226,91 @@
|
||||
font-size: 0.8125rem;
|
||||
}
|
||||
|
||||
.paramRow[data-nested='true'] {
|
||||
background: #fbfcfe;
|
||||
}
|
||||
|
||||
.paramName {
|
||||
position: relative;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.paramName code {
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
.paramTreeMarker {
|
||||
position: absolute;
|
||||
top: -13px;
|
||||
width: 12px;
|
||||
height: 23px;
|
||||
border-bottom: 1px solid #cfd7e3;
|
||||
border-left: 1px solid #cfd7e3;
|
||||
border-radius: 0 0 0 4px;
|
||||
}
|
||||
|
||||
.paramRow em {
|
||||
color: #a16207;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.docsDetailContent {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
padding: 16px;
|
||||
color: var(--text-soft);
|
||||
font-size: 0.875rem;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.docsDetailContent p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.docsDetailContent pre {
|
||||
overflow: auto;
|
||||
margin: 0;
|
||||
padding: 14px;
|
||||
border-radius: 8px;
|
||||
background: #f7f8fa;
|
||||
color: var(--text-normal);
|
||||
font-size: 0.75rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.docsSteps {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
margin: 0;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.docsGuideActions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.docsStatusGrid {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(190px, auto) minmax(0, 1fr);
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.docsStatusGrid > * {
|
||||
margin: 0;
|
||||
padding: 13px 16px;
|
||||
border-bottom: 1px solid #f0f2f5;
|
||||
color: var(--text-soft);
|
||||
font-size: 0.8125rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.docsStatusGrid > code {
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.docsRunner {
|
||||
border-left: 1px solid var(--border);
|
||||
background: #fff;
|
||||
@@ -164,6 +322,40 @@
|
||||
padding: 0 16px 16px;
|
||||
}
|
||||
|
||||
.docsRunnerUnavailable {
|
||||
padding: 14px;
|
||||
border: 1px dashed var(--border);
|
||||
border-radius: 8px;
|
||||
background: var(--surface-muted);
|
||||
color: var(--text-soft);
|
||||
font-size: 0.8125rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.docsGuideAside header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-height: 58px;
|
||||
}
|
||||
|
||||
.docsGuideAside > div {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
padding: 18px 16px;
|
||||
color: var(--text-soft);
|
||||
font-size: 0.8125rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.docsGuideAside span,
|
||||
.docsGuideAside p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.docsGuideAside strong {
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.runnerResult {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
@@ -201,4 +393,16 @@
|
||||
.paramRow {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.docsStatusGrid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.agentResourceCard {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.agentResourceTitle {
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user