1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 04:42:58 +08:00

Recolour a few other existing dropdowns with same hover & selection colours

This commit is contained in:
Bartłomiej Dach 2021-10-19 22:47:18 +02:00
parent 61127a389c
commit 80da153697
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497
2 changed files with 4 additions and 2 deletions

View File

@ -50,7 +50,8 @@ namespace osu.Game.Overlays.Login
private void load(OsuColour colours)
{
BackgroundColour = colours.Gray3;
HoverColour = SelectionColour = colours.Gray5;
SelectionColour = colours.Gray4;
HoverColour = colours.Gray5;
}
protected override DrawableDropdownMenuItem CreateDrawableDropdownMenuItem(MenuItem item) => new DrawableUserDropdownMenuItem(item);

View File

@ -35,7 +35,8 @@ namespace osu.Game.Overlays.Music
private void load(OsuColour colours)
{
BackgroundColour = colours.Gray4;
HoverColour = SelectionColour = colours.Gray6;
SelectionColour = colours.Gray5;
HoverColour = colours.Gray6;
}
}