72 lines
1.6 KiB
Plaintext
72 lines
1.6 KiB
Plaintext
/*
|
|
* UTKComponentList.uss
|
|
*
|
|
* UTKComponentList 컴포넌트의 스타일 정의입니다.
|
|
* 테마 지원: var(--color-*) 변수 사용
|
|
*/
|
|
|
|
.tree-menu-container {
|
|
background-color: var(--color-bg-panel);
|
|
align-self: stretch;
|
|
padding: 5px;
|
|
padding-top: 0;
|
|
padding-right: 0;
|
|
padding-bottom: 0;
|
|
padding-left: 0;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.search-field {
|
|
margin-bottom: 20px;
|
|
margin-top: 0;
|
|
margin-right: 0;
|
|
margin-left: 0;
|
|
height: 24px;
|
|
}
|
|
|
|
/* ============================================
|
|
Clear 버튼 (Clear Button) - UTKButton 스타일 오버라이드
|
|
============================================ */
|
|
|
|
.search-clear-button {
|
|
width: 16px;
|
|
height: 16px;
|
|
min-width: 16px;
|
|
min-height: 16px;
|
|
border-width: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
align-self: center;
|
|
position: absolute;
|
|
right: 4px;
|
|
}
|
|
|
|
/* 카테고리 확장/축소 토글 화살표 스타일 */
|
|
.unity-tree-view__item-toggle #unity-checkmark {
|
|
background-image: resource('UIToolkit/Images/icon_down_22');
|
|
transition-property: rotate;
|
|
transition-duration: 0.15s;
|
|
}
|
|
|
|
/* 카테고리 항목: hover 시 배경 색상 변경 없음 */
|
|
.category-item:hover {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
/* 카테고리 항목: 선택 스타일도 비활성화 */
|
|
.category-item:checked {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
.category-item:hover:checked {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
.visibility-on {
|
|
background-image: resource('UIToolkit/Images/icon_eye_22x16');
|
|
}
|
|
|
|
.visibility-off {
|
|
background-image: resource('UIToolkit/Images/icon_eye_close_22x16');
|
|
}
|