From 96516fa288278cbddd1dd3d2905059bc82cf5818 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 19 Jul 2019 01:21:48 +0200 Subject: [PATCH] Make scrollbars less opaque. --- Content.Client/UserInterface/NanoStyle.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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