mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 15:44:04 +09:00
Split dropdown accent colour into hover and selection colours
This commit is contained in:
@ -19,12 +19,6 @@ namespace osu.Game.Overlays.Music
|
||||
{
|
||||
protected override bool ShowManageCollectionsItem => false;
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(OsuColour colours)
|
||||
{
|
||||
AccentColour = colours.Gray6;
|
||||
}
|
||||
|
||||
protected override CollectionDropdownHeader CreateCollectionHeader() => new CollectionsHeader();
|
||||
|
||||
protected override CollectionDropdownMenu CreateCollectionMenu() => new CollectionsMenu();
|
||||
@ -41,6 +35,7 @@ namespace osu.Game.Overlays.Music
|
||||
private void load(OsuColour colours)
|
||||
{
|
||||
BackgroundColour = colours.Gray4;
|
||||
HoverColour = SelectionColour = colours.Gray6;
|
||||
}
|
||||
}
|
||||
|
||||
@ -50,6 +45,7 @@ namespace osu.Game.Overlays.Music
|
||||
private void load(OsuColour colours)
|
||||
{
|
||||
BackgroundColour = colours.Gray4;
|
||||
BackgroundColourHover = colours.Gray6;
|
||||
}
|
||||
|
||||
public CollectionsHeader()
|
||||
|
Reference in New Issue
Block a user