1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 05:52:55 +08:00

Adjust some layout

This commit is contained in:
smoogipoo 2021-07-12 14:07:21 +09:00
parent ac26374a93
commit b4b0b862ef
2 changed files with 23 additions and 9 deletions

View File

@ -34,7 +34,7 @@ namespace osu.Game.Screens.OnlinePlay.Components
{ {
AutoSizeAxes = Axes.Both, AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal, Direction = FillDirection.Horizontal,
Spacing = new Vector2(2), Spacing = new Vector2(4),
Children = new Drawable[] Children = new Drawable[]
{ {
statusPill = new StatusPill(), statusPill = new StatusPill(),

View File

@ -98,7 +98,7 @@ namespace osu.Game.Screens.OnlinePlay.Lounge.Components
Room = room; Room = room;
RelativeSizeAxes = Axes.X; RelativeSizeAxes = Axes.X;
Height = height + SELECTION_BORDER_WIDTH * 2; Height = height;
CornerRadius = corner_radius + SELECTION_BORDER_WIDTH / 2; CornerRadius = corner_radius + SELECTION_BORDER_WIDTH / 2;
Masking = true; Masking = true;
} }
@ -125,11 +125,6 @@ namespace osu.Game.Screens.OnlinePlay.Lounge.Components
}, },
Children = new Drawable[] Children = new Drawable[]
{ {
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4Extensions.FromHex(@"#27302E"),
},
new Container new Container
{ {
Anchor = Anchor.CentreRight, Anchor = Anchor.CentreRight,
@ -138,10 +133,29 @@ namespace osu.Game.Screens.OnlinePlay.Lounge.Components
FillMode = FillMode.Fill, FillMode = FillMode.Fill,
Child = new OnlinePlayBackgroundSprite(BeatmapSetCoverType.List) { RelativeSizeAxes = Axes.Both } Child = new OnlinePlayBackgroundSprite(BeatmapSetCoverType.List) { RelativeSizeAxes = Axes.Both }
}, },
new Box new GridContainer
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Colour = ColourInfo.GradientHorizontal(Color4Extensions.FromHex(@"#27302E"), Color4Extensions.FromHex(@"#27302E").Opacity(0.3f)) ColumnDimensions = new[]
{
new Dimension(GridSizeMode.Relative, 0.2f)
},
Content = new[]
{
new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4Extensions.FromHex(@"#27302E"),
},
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = ColourInfo.GradientHorizontal(Color4Extensions.FromHex(@"#27302E"), Color4Extensions.FromHex(@"#27302E").Opacity(0.3f))
},
}
}
}, },
new Container new Container
{ {