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

Adjust visuals slightly further (and remove double-gray application)

This commit is contained in:
Dean Herbert 2022-09-09 16:12:54 +09:00
parent f3fc8af6ee
commit bffc9555bf
2 changed files with 6 additions and 5 deletions

View File

@ -35,7 +35,7 @@ namespace osu.Game.Rulesets.Catch.Tests
}
[Test]
public void TestInputField()
public void TestBasic()
{
AddStep("show overlay", () => catchTouchInputMapper.Show());
}

View File

@ -63,7 +63,7 @@ namespace osu.Game.Rulesets.Catch.UI
{
RelativeSizeAxes = Axes.Both,
Width = 0.5f,
Colour = colours.GrayC,
Colour = colours.Gray9,
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
},
@ -81,7 +81,7 @@ namespace osu.Game.Rulesets.Catch.UI
{
RelativeSizeAxes = Axes.Both,
Width = 0.5f,
Colour = colours.GrayC,
Colour = colours.Gray9,
},
rightDashBox = new InputArea(TouchCatchAction.DashRight, trackedActionSources)
{
@ -223,13 +223,14 @@ namespace osu.Game.Rulesets.Catch.UI
new Container
{
RelativeSizeAxes = Axes.Both,
Masking = true,
CornerRadius = 10,
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Alpha = 0.2f,
Colour = OsuColour.Gray(0.8f),
Alpha = 0.15f,
},
highlightOverlay = new Box
{