From b94e01531484febf56496e5309817f973ef1895c Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 1 Apr 2019 20:05:45 +0200 Subject: [PATCH] Style UI tooltips. --- Content.Client/UserInterface/NanoStyle.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Content.Client/UserInterface/NanoStyle.cs b/Content.Client/UserInterface/NanoStyle.cs index 33d52b3ae7..70b149b0d4 100644 --- a/Content.Client/UserInterface/NanoStyle.cs +++ b/Content.Client/UserInterface/NanoStyle.cs @@ -333,6 +333,12 @@ namespace Content.Client.UserInterface { new StyleProperty(CheckBox.StylePropertyHSeparation, 3), }), + + // Tooltip + new StyleRule(new SelectorElement(typeof(Tooltip), null, null, null), new [] + { + new StyleProperty(PanelContainer.StylePropertyPanel, new StyleBoxFlat { BackgroundColor = new Color(21, 21, 26)}) + }), }); } }