2025-11-27 13:41:37 +09:00
|
|
|
.tree-menu-container {
|
2025-12-29 20:13:54 +09:00
|
|
|
background-color: rgb(40, 44, 52);
|
|
|
|
|
flex-grow: 1;
|
2025-11-27 13:41:37 +09:00
|
|
|
padding: 5px;
|
|
|
|
|
padding-top: 25px;
|
|
|
|
|
padding-bottom: 25px;
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
padding-right: 20px;
|
2025-12-29 20:13:54 +09:00
|
|
|
width: 240px;
|
2025-11-27 13:41:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-field {
|
|
|
|
|
margin-bottom: 20px;
|
2025-12-29 20:13:54 +09:00
|
|
|
background-color: rgb(255, 255, 255);
|
|
|
|
|
border-radius: 4px;
|
2025-11-27 13:41:37 +09:00
|
|
|
height: 30px;
|
|
|
|
|
width: auto;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#search-field > #unity-text-input {
|
|
|
|
|
padding-top: 4px;
|
2025-12-29 20:13:54 +09:00
|
|
|
padding-right: 24px;
|
2025-11-27 13:41:37 +09:00
|
|
|
padding-bottom: 4px;
|
|
|
|
|
padding-left: 4px;
|
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
|
border-bottom-right-radius: 3px;
|
|
|
|
|
border-bottom-left-radius: 3px;
|
2025-12-29 20:13:54 +09:00
|
|
|
border-top-width: 0;
|
2025-11-27 13:41:37 +09:00
|
|
|
border-right-width: 0;
|
|
|
|
|
border-bottom-width: 0;
|
|
|
|
|
border-left-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#unity-checkmark {
|
|
|
|
|
-unity-background-image-tint-color: rgb(255, 255, 255);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#main-tree-view {
|
2025-12-29 20:13:54 +09:00
|
|
|
--unity-item-indent-width: 10;
|
2025-11-27 13:41:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#unity-tree-view__item-toggle > VisualElement > VisualElement {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
margin-right: 0;
|
2025-12-29 20:13:54 +09:00
|
|
|
width: 22px;
|
2025-11-27 13:41:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-tree-view__item-toggle {
|
2025-12-29 20:13:54 +09:00
|
|
|
margin-right: 5px;
|
2025-11-27 13:41:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-collection-view__item {
|
|
|
|
|
background-color: rgba(50, 50, 50, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-collection-view__item:hover {
|
|
|
|
|
background-color: rgba(0, 10, 37, 0.25);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-collection-view__item--selected {
|
|
|
|
|
background-color: rgba(0, 10, 37, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.visibility-toggle {
|
2025-12-29 20:13:54 +09:00
|
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
|
border-width: 0;
|
2025-11-27 13:41:37 +09:00
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding-right: 0;
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
margin-left: 0;
|
2025-12-29 20:13:54 +09:00
|
|
|
flex-shrink: 0;
|
|
|
|
|
background-image: resource('SHI/Images/icon_visibility_on_64');
|
2025-11-27 13:41:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.visibility-on {
|
|
|
|
|
background-image: resource('SHI/Images/icon_visibility_on_64');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.visibility-off {
|
|
|
|
|
background-image: resource('SHI/Images/icon_visibility_off_64');
|
|
|
|
|
}
|
2025-12-02 21:09:37 +09:00
|
|
|
|
|
|
|
|
.unity-scroller--vertical {
|
2025-12-29 20:13:54 +09:00
|
|
|
width: 6px;
|
2025-12-02 21:09:37 +09:00
|
|
|
margin-right: 4px;
|
2025-12-29 20:13:54 +09:00
|
|
|
margin-bottom: 0;
|
2025-12-02 21:09:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--vertical .unity-base-slider__tracker {
|
2025-12-29 20:13:54 +09:00
|
|
|
background-color: rgba(255, 255, 255, 0);
|
2025-12-02 21:09:37 +09:00
|
|
|
border-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--vertical .unity-base-slider__drag-container {
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--vertical .unity-base-slider__dragger {
|
2025-12-29 20:13:54 +09:00
|
|
|
background-color: rgb(216, 216, 216);
|
2025-12-02 21:09:37 +09:00
|
|
|
border-width: 0;
|
2025-12-29 20:13:54 +09:00
|
|
|
border-radius: 3px;
|
2025-12-02 21:09:37 +09:00
|
|
|
width: 6px;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--vertical .unity-repeat-button {
|
|
|
|
|
display: none;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--vertical .unity-slider {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--vertical .unity-base-field__input {
|
|
|
|
|
width: 6px;
|
|
|
|
|
min-width: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--horizontal {
|
2025-12-29 20:13:54 +09:00
|
|
|
height: 6px;
|
2025-12-02 21:09:37 +09:00
|
|
|
margin-bottom: 4px;
|
2025-12-29 20:13:54 +09:00
|
|
|
margin-right: 0;
|
2025-12-02 21:09:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--horizontal .unity-base-slider__tracker {
|
2025-12-29 20:13:54 +09:00
|
|
|
background-color: rgba(255, 255, 255, 0);
|
2025-12-02 21:09:37 +09:00
|
|
|
border-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--horizontal .unity-base-slider__drag-container {
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--horizontal .unity-base-slider__dragger {
|
2025-12-29 20:13:54 +09:00
|
|
|
background-color: rgb(216, 216, 216);
|
2025-12-02 21:09:37 +09:00
|
|
|
border-width: 0;
|
2025-12-29 20:13:54 +09:00
|
|
|
border-radius: 3px;
|
2025-12-02 21:09:37 +09:00
|
|
|
height: 6px;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--horizontal .unity-repeat-button {
|
|
|
|
|
display: none;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--horizontal .unity-slider {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unity-scroller--horizontal .unity-base-field__input {
|
|
|
|
|
height: 6px;
|
|
|
|
|
min-height: 6px;
|
|
|
|
|
}
|