Files
tbd-station-14/Content.Client/UserInterface/Systems/Inventory/Controls/ItemStatusPanel.xaml
eoineoineoin 9b08c2c908 Fix some text overflow bugs in HUD (#26615)
* Don't clip text in item status

* Fix overflow in examine tooltip

---------

Co-authored-by: Eoin Mcloughlin <helloworld@eoinrul.es>
2024-03-31 20:07:13 -04:00

25 lines
1.0 KiB
XML

<controls:ItemStatusPanel
xmlns="https://spacestation14.io"
xmlns:controls="clr-namespace:Content.Client.UserInterface.Systems.Inventory.Controls"
xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
VerticalAlignment="Bottom"
HorizontalAlignment="Center"
MinSize="150 0">
<PanelContainer
Name="Panel"
ModulateSelfOverride="#FFFFFFE6"
HorizontalExpand="True">
<PanelContainer.PanelOverride>
<graphics:StyleBoxTexture
ContentMarginLeftOverride="6"
ContentMarginRightOverride="6"
ContentMarginTopOverride="4"
ContentMarginBottomOverride="4" />
</PanelContainer.PanelOverride>
<BoxContainer Orientation="Vertical" SeparationOverride="0">
<BoxContainer Name="StatusContents" Orientation="Vertical"/>
<Label Name="ItemNameLabel" StyleClasses="ItemStatus"/>
</BoxContainer>
</PanelContainer>
</controls:ItemStatusPanel>