1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 05:42:56 +08:00

Fix changelog alignment and italics usage

This commit is contained in:
Dean Herbert 2020-03-15 00:36:21 +09:00
parent 735396c6d6
commit 62ce503126

View File

@ -93,6 +93,7 @@ namespace osu.Game.Overlays.Changelog
Direction = FillDirection.Full, Direction = FillDirection.Full,
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y, AutoSizeAxes = Axes.Y,
TextAnchor = Anchor.BottomLeft,
} }
} }
}; };
@ -125,7 +126,7 @@ namespace osu.Game.Overlays.Changelog
title.AddText("by ", t => title.AddText("by ", t =>
{ {
t.Font = fontMedium.With(italics: true); t.Font = fontMedium;
t.Colour = entryColour; t.Colour = entryColour;
t.Padding = new MarginPadding { Left = 10 }; t.Padding = new MarginPadding { Left = 10 };
}); });
@ -138,7 +139,7 @@ namespace osu.Game.Overlays.Changelog
Id = entry.GithubUser.UserId.Value Id = entry.GithubUser.UserId.Value
}, t => }, t =>
{ {
t.Font = fontMedium.With(italics: true); t.Font = fontMedium;
t.Colour = entryColour; t.Colour = entryColour;
}); });
} }
@ -146,7 +147,7 @@ namespace osu.Game.Overlays.Changelog
{ {
title.AddLink(entry.GithubUser.DisplayName, entry.GithubUser.GithubUrl, t => title.AddLink(entry.GithubUser.DisplayName, entry.GithubUser.GithubUrl, t =>
{ {
t.Font = fontMedium.With(italics: true); t.Font = fontMedium;
t.Colour = entryColour; t.Colour = entryColour;
}); });
} }
@ -154,7 +155,7 @@ namespace osu.Game.Overlays.Changelog
{ {
title.AddText(entry.GithubUser.DisplayName, t => title.AddText(entry.GithubUser.DisplayName, t =>
{ {
t.Font = fontMedium.With(italics: true); t.Font = fontMedium;
t.Colour = entryColour; t.Colour = entryColour;
}); });
} }