Add prominent watch button to ready requests
Magent CI/CD / verify (push) Successful in 10m37s
Magent CI/CD / deploy-prod (push) Skipped
Magent CI/CD / deploy-beta (push) Successful in 15s

This commit is contained in:
2026-09-01 11:16:43 +12:00
parent b0eff9ffcf
commit 393b8c2a88
2 changed files with 61 additions and 3 deletions
+40
View File
@@ -2039,6 +2039,44 @@ button:disabled,
border-bottom: 0;
background: linear-gradient(90deg, rgba(14, 165, 233, 0.08), rgba(79, 70, 229, 0.08));
}
.request-next-step-main {
display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;
}
.request-next-step-copy {
display: grid;
gap: 7px;
min-width: 0;
}
.request-next-step-copy > strong { color: var(--ops-text); font-size: 1rem; line-height: 1.4; }
.request-next-step-copy > p { margin: 0; }
.request-watch-button {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-width: 240px;
min-height: 48px;
padding: 12px 20px;
border: 1px solid rgba(72, 224, 178, 0.62);
border-radius: var(--ops-radius);
background: linear-gradient(115deg, rgba(16, 185, 129, 0.92), rgba(14, 165, 233, 0.9));
color: #fff;
box-shadow: 0 10px 28px rgba(14, 165, 233, 0.16);
font-size: 0.84rem;
font-weight: 800;
text-decoration: none;
transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.request-watch-button:hover {
border-color: rgba(126, 255, 214, 0.9);
box-shadow: 0 12px 34px rgba(14, 165, 233, 0.24);
transform: translateY(-1px);
}
.request-watch-button > span { font-size: 1rem; }
.request-action-row,
.request-stage-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 6px; }
@@ -2266,6 +2304,8 @@ button:disabled,
.request-diagnostics-grid { grid-template-columns: 1fr; }
.request-action-row,
.request-stage-actions { display: grid; }
.request-next-step-main { align-items: stretch; flex-direction: column; }
.request-watch-button { width: 100%; min-width: 0; }
.request-action-row button,
.request-release button { width: 100%; }
.request-operation-heading { align-items: flex-start; flex-direction: column; }