diff --git a/Src/Unity/Scripts/UX/Service/UXService.cs b/Src/Unity/Scripts/UX/Service/UXService.cs index b5d4f1a..d459a6e 100644 --- a/Src/Unity/Scripts/UX/Service/UXService.cs +++ b/Src/Unity/Scripts/UX/Service/UXService.cs @@ -150,6 +150,7 @@ namespace BITKit.UX if (nextPanel.IsWindow) { WindowEntryGruop.Entry(nextPanel); + History.Push(CurrentPanel); return; } WindowEntryGruop.Entry(-1); diff --git a/Src/Unity/UX/Common/Common.uss b/Src/Unity/UX/Common/Common.uss index c0ca4f6..f1dc73d 100644 --- a/Src/Unity/UX/Common/Common.uss +++ b/Src/Unity/UX/Common/Common.uss @@ -226,6 +226,25 @@ Label.tl { Button { } +#unity-progress-bar { + max-width: none; + max-height: none; + min-width: auto; + min-height: auto; +} + +#unity-progress-bar Label { + margin-top: 0; + margin-right: 0; + margin-bottom: 0; + margin-left: 0; + padding-top: 0; + padding-right: 0; + padding-bottom: 0; + padding-left: 0; + font-size: 8px; +} + #unity-progress-bar > VisualElement > VisualElement { } @@ -379,3 +398,17 @@ TranslucentVisualElement { Foldout Toggle Label { color: rgb(0, 0, 0); } + +.container-ma-4 > * { + margin-top: 4px; + margin-right: 4px; + margin-bottom: 4px; + margin-left: 4px; +} + +.container-ma-8 > * { + margin-top: 8px; + margin-right: 8px; + margin-bottom: 8px; + margin-left: 8px; +}