Refine launcher navigation and install list
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-04 14:41:04 +09:00
parent f6f716acd0
commit 0f6c0563db
10 changed files with 226 additions and 32 deletions

View File

@@ -1073,15 +1073,22 @@ body, button {
/* Left hand side of the settings UI, for navigation. */
#settingsContainerLeft {
display: flex;
flex-direction: column;
padding-top: 4%;
height: 100%;
width: 25%;
box-sizing: border-box;
}
.settingsTopActions {
padding: 0 0 18px 24px;
}
/* Settings navigation container. */
#settingsNavContainer {
height: 100%;
flex: 1;
display: flex;
flex-direction: column;
}
@@ -2469,13 +2476,14 @@ input:checked + .toggleSwitchSlider:before {
}
#landingContainer > #upper > #content {
display: inline-flex;
width: 70%;
width: 63%;
height: 100%;
}
#landingContainer > #upper > #right {
display: inline-flex;
width: 15%;
width: 22%;
height: 100%;
justify-content: flex-end;
}
/* Lower content container. */
@@ -2956,6 +2964,9 @@ input:checked + .toggleSwitchSlider:before {
position: relative;
top: 50px;
align-items: flex-end;
width: 100%;
padding-right: 26px;
box-sizing: border-box;
height: calc(100% - 50px);
}
@@ -2970,6 +2981,35 @@ input:checked + .toggleSwitchSlider:before {
position: relative;
}
#accountTriggerGroup {
display: flex;
align-items: flex-end;
gap: 14px;
}
#accountPreviewText {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 4px;
min-width: 150px;
}
#accountPreviewLabel {
font-size: 11px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.58);
}
#accountPreviewName {
font-size: 13px;
font-weight: 800;
color: #ffffff;
text-align: right;
text-shadow: 0px 0px 18px rgba(0, 0, 0, 0.6);
}
#avatarMenuButton {
padding: 0;
border: none;
@@ -2997,8 +3037,8 @@ input:checked + .toggleSwitchSlider:before {
overflow: hidden;
position: relative;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-repeat: no-repeat, no-repeat;
background-size: cover, 60%;
}
#avatarMenuButton:hover #avatarContainer,
@@ -4025,6 +4065,11 @@ input:checked + .toggleSwitchSlider:before {
overflow-y: auto;
}
.launcherPageTopBar {
display: flex;
justify-content: flex-start;
}
.launcherPageHeader {
display: flex;
align-items: flex-start;
@@ -4055,6 +4100,36 @@ input:checked + .toggleSwitchSlider:before {
color: rgba(255, 255, 255, 0.74);
}
.launcherBackButton {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 0;
border: none;
background: none;
color: rgba(255, 255, 255, 0.88);
font-size: 13px;
font-weight: 700;
letter-spacing: 0.04em;
cursor: pointer;
}
.launcherBackButton::before {
content: '←';
font-size: 16px;
}
.launcherBackButton:hover,
.launcherBackButton:focus {
color: #ffffff;
text-shadow: 0px 0px 16px rgba(255, 255, 255, 0.45);
outline: none;
}
.launcherBackButton:active {
color: rgba(255, 255, 255, 0.72);
}
.launcherPageActions,
.launcherCardActions,
#landingNavButtons {
@@ -4076,6 +4151,80 @@ input:checked + .toggleSwitchSlider:before {
gap: 16px;
}
.launcherListContainer {
display: flex;
flex-direction: column;
gap: 12px;
}
.launcherListItem {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 18px 20px;
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 18px;
background: rgba(15, 15, 15, 0.56);
backdrop-filter: blur(10px);
box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
cursor: pointer;
}
.launcherListItem[selected="true"] {
border-color: rgba(253, 197, 78, 0.7);
box-shadow: 0 22px 60px rgba(253, 197, 78, 0.14);
}
.launcherListItemMain {
min-width: 0;
flex: 1;
display: flex;
flex-direction: column;
gap: 8px;
}
.launcherListTitleRow {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 14px;
}
.launcherListTextGroup {
min-width: 0;
display: flex;
flex-direction: column;
gap: 6px;
}
.launcherListTitle {
margin: 0;
font-size: 20px;
color: #ffffff;
}
.launcherListMeta {
display: flex;
gap: 8px;
flex-wrap: wrap;
justify-content: flex-end;
}
.launcherListDescription {
margin: 0;
line-height: 1.5;
color: rgba(255, 255, 255, 0.76);
}
.launcherListActions {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 10px;
flex-wrap: wrap;
}
.launcherCard {
display: flex;
flex-direction: column;