This commit is contained in:
2026-06-25 13:43:12 -05:00
parent dfc2c9b475
commit d8342a6475
9 changed files with 395 additions and 31 deletions

View File

@@ -7074,6 +7074,141 @@ input:read-only {
text-align: center;
}
.vcenter-trace-modal {
display: grid;
gap: 12px;
max-height: min(74vh, 820px);
overflow: auto;
padding-right: 2px;
}
.trace-toolbar {
position: sticky;
top: 0;
z-index: 2;
display: flex;
gap: 12px;
align-items: center;
justify-content: space-between;
padding: 12px;
border: 1px solid rgba(139, 224, 255, .14);
border-radius: 16px;
background: rgba(6, 12, 28, .92);
backdrop-filter: blur(14px);
}
.trace-toolbar div {
display: grid;
gap: 3px;
}
.trace-toolbar strong {
color: rgba(255, 255, 255, .9);
}
.trace-toolbar span {
color: rgba(219, 227, 255, .58);
font-size: .78rem;
}
.trace-entry {
display: grid;
gap: 10px;
padding: 12px;
border: 1px solid rgba(139, 224, 255, .12);
border-radius: 16px;
background:
linear-gradient(135deg, rgba(88, 221, 255, .06), rgba(166, 112, 255, .035)),
rgba(3, 8, 18, .52);
}
.trace-entry-header {
display: flex;
flex-wrap: wrap;
gap: 8px;
align-items: center;
}
.trace-entry-header.warning {
color: #f8c66a;
}
.trace-method,
.trace-entry-header strong,
.trace-entry-header small {
display: inline-flex;
align-items: center;
min-height: 25px;
padding: 4px 9px;
border-radius: 999px;
background: rgba(139, 224, 255, .1);
border: 1px solid rgba(139, 224, 255, .14);
font-size: .74rem;
text-transform: uppercase;
letter-spacing: .08em;
}
.trace-entry-header .status-ok {
color: #8ef5c0;
border-color: rgba(102, 242, 181, .24);
background: rgba(102, 242, 181, .08);
}
.trace-entry-header .status-warn {
color: #f8c66a;
border-color: rgba(248, 198, 106, .24);
background: rgba(248, 198, 106, .08);
}
.trace-entry-header .status-error {
color: #ff9aaa;
border-color: rgba(255, 124, 152, .28);
background: rgba(255, 65, 112, .08);
}
.trace-url {
display: block;
padding: 9px 10px;
border: 1px solid rgba(139, 224, 255, .1);
border-radius: 12px;
color: #99e8ff;
background: rgba(0, 0, 0, .22);
overflow-wrap: anywhere;
}
.trace-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
}
.trace-entry h4 {
margin: 0 0 6px;
color: rgba(151, 221, 255, .78);
font-size: .68rem;
letter-spacing: .14em;
text-transform: uppercase;
}
.trace-entry pre {
margin: 0;
max-height: 260px;
overflow: auto;
padding: 11px;
border: 1px solid rgba(139, 224, 255, .1);
border-radius: 12px;
color: rgba(231, 244, 255, .84);
background: rgba(0, 0, 0, .3);
white-space: pre-wrap;
overflow-wrap: anywhere;
font-size: .74rem;
line-height: 1.45;
}
.trace-body {
max-height: 360px;
}
@media (max-width: 1180px) {
.deployment-section-body.three,
.deployment-section-body.two,
@@ -7082,7 +7217,8 @@ input:read-only {
.relationship-row,
.intune-deployment-form .installer-analyze-row,
.vcenter-filter-grid,
.vcenter-options-grid {
.vcenter-options-grid,
.trace-grid {
grid-template-columns: 1fr;
}