view details btn fix

3clyp50 committed Jan 20, 2026 at 16:09 UTC 6aaadfaf2f7243eacba720a1879a57c5a872cd2d
1 file changed +6 -1
webui/components/messages/process-group/process-group.css
+6 -1
@@ -898,7 +898,12 @@
898 .step-detail-actions {
899 display: flex;
900 padding-left: 18px;
901 - margin-bottom: 1rem;
901 + min-height: 0; /* Required for grid collapse animation */
902 +}
903 +
904 +/* Hide View Details button when step is collapsed */
905 +.process-step:not(.step-expanded) > .process-step-detail > .step-detail-actions {
906 + display: none;
907 }
908
909