diff --git a/Content.Client/UserInterface/NanoStyle.cs b/Content.Client/UserInterface/NanoStyle.cs index 8c2f01f9a9..92bcc9b1fb 100644 --- a/Content.Client/UserInterface/NanoStyle.cs +++ b/Content.Client/UserInterface/NanoStyle.cs @@ -100,28 +100,28 @@ namespace Content.Client.UserInterface var vScrollBarGrabberNormal = new StyleBoxFlat { - BackgroundColor = Color.Gray, ContentMarginLeftOverride = 10 + BackgroundColor = Color.Gray.WithAlpha(0.35f), ContentMarginLeftOverride = 10 }; var vScrollBarGrabberHover = new StyleBoxFlat { - BackgroundColor = new Color(140, 140, 140), ContentMarginLeftOverride = 10 + BackgroundColor = new Color(140, 140, 140).WithAlpha(0.35f), ContentMarginLeftOverride = 10 }; var vScrollBarGrabberGrabbed = new StyleBoxFlat { - BackgroundColor = new Color(160, 160, 160), ContentMarginLeftOverride = 10 + BackgroundColor = new Color(160, 160, 160).WithAlpha(0.35f), ContentMarginLeftOverride = 10 }; var hScrollBarGrabberNormal = new StyleBoxFlat { - BackgroundColor = Color.Gray, ContentMarginTopOverride = 10 + BackgroundColor = Color.Gray.WithAlpha(0.35f), ContentMarginTopOverride = 10 }; var hScrollBarGrabberHover = new StyleBoxFlat { - BackgroundColor = new Color(140, 140, 140), ContentMarginTopOverride = 10 + BackgroundColor = new Color(140, 140, 140).WithAlpha(0.35f), ContentMarginTopOverride = 10 }; var hScrollBarGrabberGrabbed = new StyleBoxFlat { - BackgroundColor = new Color(160, 160, 160), ContentMarginTopOverride = 10 + BackgroundColor = new Color(160, 160, 160).WithAlpha(0.35f), ContentMarginTopOverride = 10 }; var progressBarBackground = new StyleBoxFlat