fix: move hidden input off-screen and fix branch loading
- Move terminal hidden input to off-screen position (-9999px) to prevent text selection/caret visibility on mobile - Add user-select: none to prevent any selection UI - Fix create-session-form to use new listRepositoryBranches API signature (projectId, repoId) and access response.branches/default_branch
This commit is contained in:
@@ -3152,13 +3152,15 @@ a.nav-item,
|
||||
}
|
||||
|
||||
.terminal-hidden-input {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
position: fixed;
|
||||
left: -9999px;
|
||||
top: -9999px;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
user-select: none;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
|
||||
/* Disable zoom on mobile terminal */
|
||||
|
||||
Reference in New Issue
Block a user