This commit is contained in:
CortexCore
2025-04-14 15:39:28 +08:00
parent c1273357de
commit d8b8ddb8b6
23 changed files with 447 additions and 116 deletions

View File

@@ -1,11 +1,11 @@
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" editor-extension-mode="False">
<Style src="project://database/Assets/BITKit/Unity/UX/Common/Common.uss?fileID=7433441132597879392&amp;guid=a3a69d3518fd02b489e721f3c5b0b539&amp;type=3#Common" />
<Style src="project://database/Assets/BITKit/Unity/UX/BITQuest.uss?fileID=7433441132597879392&amp;guid=5c2d746d52de8e340b788034994ee23e&amp;type=3#BITQuest" />
<Kamgam.UIToolkitBlurredBackground.BlurredBackground name="quest-element" Blur-Tint="#000000C8" class="quest" style="padding-top: 4px; padding-right: 8px; padding-bottom: 4px; padding-left: 8px; margin-top: 4px; margin-right: 8px; margin-bottom: 4px; margin-left: 8px;">
<ui:VisualElement name="quest-element" Blur-Tint="#000000C8" class="quest" style="padding-top: 4px; padding-right: 8px; padding-bottom: 4px; padding-left: 8px; margin-top: 4px; margin-right: 8px; margin-bottom: 4px; margin-left: 8px;">
<ui:VisualElement name="Header" class="flex-horizontal">
<ui:VisualElement name="VisualElement--0" class="quest-icon game-icon" />
<ui:Label text="NewQuest" display-tooltip-when-elided="true" name="Label--0" class="quest-title" />
</ui:VisualElement>
<ui:Label text="Fnish This Quest" display-tooltip-when-elided="true" name="Label--1" class="quest-description" />
</Kamgam.UIToolkitBlurredBackground.BlurredBackground>
</ui:VisualElement>
</ui:UXML>

View File

@@ -7,6 +7,14 @@ ScrollView {
--unity-metrics-single_line-height: 500px;
}
ScrollView Scroller.unity-scroller{
width: 8;
}
ScrollView Scroller.unity-scroller * {
width: 8;
}
TabBar Button:disabled {
opacity: 1;
}

View File

@@ -39,7 +39,7 @@ Slider.material {
}
.material Button {
background-color: rgba(26, 115, 232, 0.06);
background-color: rgba(26, 115, 232, 0.13);
border-left-width: 0;
border-right-width: 0;
border-top-width: 0;
@@ -219,3 +219,23 @@ Slider.material {
min-width: 128px;
opacity: 0.8;
}
.unity-base-field.variant-text #unity-text-input {
background-color: rgba(0, 0, 0, 0);
border-top-width: 0;
border-right-width: 0;
border-bottom-width: 0;
border-left-width: 0;
}
.material TabBar.variable-square Button {
width: 64px;
height: 64px;
max-width: 64px;
max-height: 64px;
min-width: 64px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}