54 lines
1.2 KiB
Plaintext
54 lines
1.2 KiB
Plaintext
/* UTKTreeListWindow 루트 요소 - 부모 높이를 꽉 채움 */
|
|
UTKTreeListWindow {
|
|
flex-grow: 1;
|
|
height: 100%;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.tree-menu-container {
|
|
background-color: rgb(37, 37, 38);
|
|
flex-grow: 1; /* 부모 영역을 채우도록 확장 */
|
|
height: 100%; /* 높이 100%로 꽉 채움 */
|
|
align-self: flex-start; /* 왼쪽 정렬 */
|
|
padding: 5px;
|
|
padding-top: 10px;
|
|
padding-bottom: 25px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
width: 300px;
|
|
}
|
|
|
|
.search-field {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
|
|
.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');
|
|
}
|
|
|
|
|