diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index 55e7ec0949..40d256813e 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -344,6 +344,16 @@ namespace Content.Client.Stylesheets chatFilterButton.SetPatchMargin(StyleBox.Margin.All, 5); chatFilterButton.SetPadding(StyleBox.Margin.All, 2); + var outputPanelScrollDownButtonTex = resCache.GetTexture("/Textures/Interface/Nano/rounded_button_half_bordered.svg.96dpi.png"); + var outputPanelScrollDownButton = new StyleBoxTexture + { + Texture = outputPanelScrollDownButtonTex, + }; + outputPanelScrollDownButton.SetPatchMargin(StyleBox.Margin.All, 5); + outputPanelScrollDownButton.SetPadding(StyleBox.Margin.All, 2); + outputPanelScrollDownButton.SetPadding(StyleBox.Margin.Top, 0); + outputPanelScrollDownButton.SetPadding(StyleBox.Margin.Bottom, 0); + var smallButtonTex = resCache.GetTexture("/Textures/Interface/Nano/button_small.svg.96dpi.png"); var smallButtonBase = new StyleBoxTexture { @@ -1307,6 +1317,7 @@ namespace Content.Client.Stylesheets { new StyleProperty(Button.StylePropertyStyleBox, chatChannelButton), }), + // chat filter button new StyleRule(new SelectorElement(typeof(ContainerButton), new[] {StyleClassChatFilterOptionButton}, null, null), new[] { @@ -1329,6 +1340,11 @@ namespace Content.Client.Stylesheets new StyleProperty(Control.StylePropertyModulateSelf, ButtonColorDisabled), }), + // output panel scroll button + Element