Compare commits

...

2 Commits

Author SHA1 Message Date
alex edd8882fa0 Merge branch 'dev' of ssh://git.commumedia.org:2222/alex/headquarter into dev 2026-05-24 19:25:52 +00:00
alex 760369b102 fix: constrain loading overlays to components
- Add position: relative to create-session-form-wrapper so overlay fills only the form
- Remove text from instance busy overlay, show only spinner
- Delete progress indicator now fills only the target card
2026-05-24 19:25:42 +00:00
2 changed files with 4 additions and 1 deletions
@@ -224,7 +224,6 @@ export const InstanceList = ({ projectId, repoId, projectName, repoName, toolTyp
{busyInstanceId === instance.id && (
<div className="instance-busy-overlay">
<Icon name="loading" size="md" />
<span>Working...</span>
</div>
)}
<div className="instance-info">
+4
View File
@@ -2885,6 +2885,10 @@ a.nav-item,
pointer-events: none;
}
.create-session-form-wrapper {
position: relative;
}
.loading-overlay {
position: absolute;
top: 0;