new StyleProperty("font-color", Color.FromHex("#E5E5E581")),
}),
+ // ItemStatus for hands
+ Element()
+ .Class(StyleClassItemStatusNotHeld)
+ .Prop("font", notoSansItalic10)
+ .Prop("font-color", ItemStatusNotHeldColor)
+ .Prop(nameof(Control.Margin), new Thickness(4, 0, 0, 2)),
+
+ Element()
+ .Class(StyleClassItemStatus)
+ .Prop(nameof(RichTextLabel.LineHeightScale), 0.7f)
+ .Prop(nameof(Control.Margin), new Thickness(4, 0, 0, 2)),
+
// Context Menu window
Element<PanelContainer>().Class(ContextMenuPopup.StyleClassContextMenuPopup)
.Prop(PanelContainer.StylePropertyPanel, contextMenuBackground),