This commit is contained in:
CortexCore 2024-08-03 17:44:50 +08:00
parent a256dc33ed
commit 80ab7aa1b8
2 changed files with 34 additions and 0 deletions

View File

@ -150,6 +150,7 @@ namespace BITKit.UX
if (nextPanel.IsWindow)
{
WindowEntryGruop.Entry(nextPanel);
History.Push(CurrentPanel);
return;
}
WindowEntryGruop.Entry(-1);

View File

@ -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;
}