66 lines
1.5 KiB
Plaintext
66 lines
1.5 KiB
Plaintext
.tree-menu-container {
|
|
background-color: rgb(37, 37, 38);
|
|
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;
|
|
}
|
|
|
|
/* 카테고리 확장/축소 토글 화살표 스타일 */
|
|
.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-toggle {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
border-width: 0;
|
|
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;
|
|
flex-shrink: 0;
|
|
background-image: resource('UIToolkit/Images/icon_eye_22x16');
|
|
}
|
|
|
|
.visibility-on {
|
|
background-image: resource('UIToolkit/Images/icon_eye_22x16');
|
|
}
|
|
|
|
.visibility-off {
|
|
background-image: resource('UIToolkit/Images/icon_eye_close_22x16');
|
|
}
|