mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
# Description I changed something so long ago but didn't make sure others were changed to follow. --- <details><summary><h1>Media</h1></summary> <p>      </p> </details> --- # Changelog 🆑 - fix: Fixed many buttons being yellow instead of red --------- Signed-off-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> Co-authored-by: Timfa <timfalken@hotmail.com> (cherry picked from commit ca703ab8d367bbdfc4ab115af4a01964ff597e5f)
30 lines
1.6 KiB
XML
30 lines
1.6 KiB
XML
<DefaultWindow xmlns="https://spacestation14.io"
|
|
xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client" Title="{Loc 'nuke-user-interface-title'}" MinSize="256 256" SetSize="256 256">
|
|
<BoxContainer Orientation="Vertical" HorizontalExpand="True" VerticalExpand="True">
|
|
<!-- First status label -->
|
|
<PanelContainer Margin="0 0 0 5">
|
|
<PanelContainer.PanelOverride>
|
|
<gfx:StyleBoxFlat BackgroundColor="#001c00" />
|
|
</PanelContainer.PanelOverride>
|
|
<Label Name="FirstStatusLabel"/>
|
|
</PanelContainer>
|
|
<!-- Second status label -->
|
|
<PanelContainer Margin="0 0 0 5">
|
|
<PanelContainer.PanelOverride>
|
|
<gfx:StyleBoxFlat BackgroundColor="#001c00" />
|
|
</PanelContainer.PanelOverride>
|
|
<Label Name="SecondStatusLabel"/>
|
|
</PanelContainer>
|
|
<BoxContainer Orientation="Horizontal">
|
|
<GridContainer Columns="3" Name="KeypadGrid">
|
|
<!-- Keypad is filled by code -->
|
|
</GridContainer>
|
|
<BoxContainer Orientation="Vertical" HorizontalExpand="True" Margin="5 0">
|
|
<Button Name="EjectButton" Text="{Loc 'nuke-user-interface-eject-button'}" Margin="0 0 0 5" Access="Public"/>
|
|
<Button Name="AnchorButton" Text="{Loc 'nuke-user-interface-anchor-button'}" Margin="0 0 0 5" Access="Public"/>
|
|
<Button Name="ArmButton" Text="{Loc 'nuke-user-interface-arm-button'}" Access="Public" StyleClasses="Danger"/>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</DefaultWindow>
|