Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Robust.Client/UserInterface/Controls/ContainerButton.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Numerics;
using Robust.Client.Graphics;
using Robust.Shared.Maths;
Expand All @@ -9,6 +9,8 @@ namespace Robust.Client.UserInterface.Controls
public class ContainerButton : BaseButton
{
public const string StylePropertyStyleBox = "stylebox";

[Obsolete("Use the Element<> selector or Parent/Child selectors instead.")]
public const string StyleClassButton = "button";
public const string StylePseudoClassNormal = "normal";
public const string StylePseudoClassPressed = "pressed";
Expand Down
Loading