更新: 89 个文件 - 2026-03-17 02:00:01
这个提交包含在:
@@ -963,6 +963,171 @@ select {
|
||||
text-underline-offset: 3px;
|
||||
}
|
||||
|
||||
.architecture-tree {
|
||||
display: grid;
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.architecture-callout {
|
||||
border-color: rgba(77, 141, 255, 0.28);
|
||||
background: rgba(77, 141, 255, 0.08);
|
||||
}
|
||||
|
||||
.arch-node,
|
||||
.arch-leaf {
|
||||
border: 1px solid rgba(148, 163, 184, 0.14);
|
||||
border-radius: 16px;
|
||||
background: rgba(255, 255, 255, 0.025);
|
||||
}
|
||||
|
||||
.arch-node + .arch-node,
|
||||
.arch-leaf + .arch-node,
|
||||
.arch-node + .arch-leaf,
|
||||
.arch-leaf + .arch-leaf {
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.arch-node summary {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.arch-node summary::-webkit-details-marker {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.arch-summary {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 14px;
|
||||
padding: 15px 16px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.arch-summary::after {
|
||||
content: "";
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
margin-top: 6px;
|
||||
border-right: 2px solid rgba(255, 255, 255, 0.72);
|
||||
border-bottom: 2px solid rgba(255, 255, 255, 0.72);
|
||||
transform: rotate(45deg);
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
.arch-node[open] > .arch-summary::after {
|
||||
transform: rotate(225deg);
|
||||
}
|
||||
|
||||
.arch-summary-main {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.arch-title {
|
||||
font-size: 0.98rem;
|
||||
}
|
||||
|
||||
.arch-summary-copy {
|
||||
color: var(--text-secondary);
|
||||
line-height: 1.5;
|
||||
font-size: 0.88rem;
|
||||
}
|
||||
|
||||
.arch-summary-meta {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-end;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.arch-body {
|
||||
display: grid;
|
||||
gap: 14px;
|
||||
padding: 0 16px 16px;
|
||||
}
|
||||
|
||||
.arch-badges {
|
||||
margin-top: -2px;
|
||||
}
|
||||
|
||||
.arch-stat-grid,
|
||||
.arch-field-grid,
|
||||
.arch-link-grid {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.arch-stat-grid {
|
||||
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||
}
|
||||
|
||||
.arch-stat,
|
||||
.arch-field,
|
||||
.arch-link-card {
|
||||
border: 1px solid rgba(148, 163, 184, 0.14);
|
||||
border-radius: 14px;
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
}
|
||||
|
||||
.arch-stat,
|
||||
.arch-field {
|
||||
padding: 12px 14px;
|
||||
}
|
||||
|
||||
.arch-stat-label,
|
||||
.arch-field-label,
|
||||
.arch-link-label {
|
||||
display: block;
|
||||
color: var(--text-secondary);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
font-size: 0.72rem;
|
||||
}
|
||||
|
||||
.arch-stat-value {
|
||||
display: block;
|
||||
margin-top: 8px;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.arch-field-value,
|
||||
.arch-link-copy {
|
||||
margin-top: 8px;
|
||||
color: var(--text-primary);
|
||||
line-height: 1.58;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.arch-link-grid {
|
||||
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
||||
}
|
||||
|
||||
.arch-link-card {
|
||||
display: block;
|
||||
padding: 12px 14px;
|
||||
transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
|
||||
}
|
||||
|
||||
.arch-link-card:hover {
|
||||
transform: translateY(-1px);
|
||||
border-color: rgba(77, 141, 255, 0.42);
|
||||
background: rgba(77, 141, 255, 0.08);
|
||||
}
|
||||
|
||||
.arch-children {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
padding-left: 14px;
|
||||
border-left: 1px solid rgba(148, 163, 184, 0.12);
|
||||
}
|
||||
|
||||
.arch-leaf {
|
||||
padding: 14px 16px;
|
||||
}
|
||||
|
||||
.json-card pre {
|
||||
margin: 0;
|
||||
max-height: 420px;
|
||||
@@ -1050,7 +1215,8 @@ select {
|
||||
.tag-row,
|
||||
.panel-meta,
|
||||
.viewer-toolbar,
|
||||
.dashboard-footer {
|
||||
.dashboard-footer,
|
||||
.arch-summary {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
在新工单中引用
屏蔽一个用户