diff options
author | F1F7Y <64418963+F1F7Y@users.noreply.github.com> | 2024-09-10 23:43:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-10 23:43:36 +0200 |
commit | 525f671513eb3f80775399ba34a879b528d9a7a4 (patch) | |
tree | 2d36b73fd096708ec974ed1041eeab6cea9834ff /Northstar.Client/mod/resource/ui/menus/panels | |
parent | e2931190f9b37fc4ec171cd348d85eb96ed591a3 (diff) | |
download | NorthstarMods-525f671513eb3f80775399ba34a879b528d9a7a4.tar.gz NorthstarMods-525f671513eb3f80775399ba34a879b528d9a7a4.zip |
Rework mode select menu (#624)v1.28.0-rc5v1.28.0
Turns mode list from page based into a scrollable list that is categorised and supports filtering.
Diffstat (limited to 'Northstar.Client/mod/resource/ui/menus/panels')
-rw-r--r-- | Northstar.Client/mod/resource/ui/menus/panels/mode_select_button.res | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Northstar.Client/mod/resource/ui/menus/panels/mode_select_button.res b/Northstar.Client/mod/resource/ui/menus/panels/mode_select_button.res new file mode 100644 index 00000000..b361e4fa --- /dev/null +++ b/Northstar.Client/mod/resource/ui/menus/panels/mode_select_button.res @@ -0,0 +1,31 @@ +resource/ui/menus/panels/mode_select_button.res +{ + BtnMode + { + ControlName RuiButton + InheritProperties RuiSmallButton + classname ModButton + labelText "please show up" + wide 600 + tall 45 + + pin_to_sibling ControlBox + pin_corner_to_sibling LEFT + pin_to_sibling_corner RIGHT + } + + Header + { + ControlName Label + InheritProperties RuiSmallButton + wide 600 + labelText "labelText" + font Default_41 + fgcolor_override "255 255 255 255" + tall 45 + + pin_to_sibling ControlBox + pin_corner_to_sibling LEFT + pin_to_sibling_corner RIGHT + } +} |