Fix launch cache sanitization and progress layout
Some checks failed
Build / release (macos-latest) (push) Has been cancelled
Build / release (ubuntu-latest) (push) Has been cancelled
Build / release (windows-latest) (push) Has been cancelled
Windows Smoke Test / windows-smoke (push) Has been cancelled

This commit is contained in:
2026-05-06 04:58:12 +09:00
parent e42ff9245c
commit 20677380b9
4 changed files with 81 additions and 1 deletions

View File

@@ -2547,6 +2547,12 @@ input:checked + .toggleSwitchSlider:before {
align-items: flex-end;
justify-content: flex-end;
}
#landingContainer > #lower > #right .bot_wrapper {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-end;
}
/*******************************************************************************
* *
@@ -3554,6 +3560,8 @@ input:checked + .toggleSwitchSlider:before {
top: 0;
display: inline-flex;
align-items: center;
justify-content: flex-end;
max-width: 100%;
}
/* The launch button. */
@@ -3589,11 +3597,18 @@ input:checked + .toggleSwitchSlider:before {
position: relative;
top: 12px;
display: none;
align-items: center;
justify-content: flex-end;
width: 100%;
max-width: 100%;
overflow: hidden;
}
/* Left side of launch details container, displays percentage and a divider. */
#launch_details_left {
display: flex;
align-items: center;
flex: 0 0 auto;
}
/* Span which displays percentage complete. */
@@ -3612,6 +3627,8 @@ input:checked + .toggleSwitchSlider:before {
display: flex;
flex-direction: column;
justify-content: center;
min-width: 0;
overflow: hidden;
}
/* Button which opens the server selection view. */
@@ -3650,6 +3667,7 @@ input:checked + .toggleSwitchSlider:before {
/* Span which displays information about the status of the launch process. */
#launch_details_text {
display: block;
font-size: 13px;
text-overflow: ellipsis;
white-space: nowrap;