Files
XRLib/Assets/Resources/UIToolkit/Window/UTKImageListWindow.uss
2025-12-31 20:02:36 +09:00

79 lines
1.8 KiB
Plaintext

/*
* UTKImageListWindow.uss
*
* UTKImageListWindow 컴포넌트의 스타일 정의입니다.
* UTKImageList를 래핑하는 윈도우 형태의 컨테이너입니다.
*/
/* ============================================
윈도우 루트 (Window Root)
============================================ */
UTKImageListWindow {
height: 100%;
position: absolute;
top: 0;
left: 0;
bottom: 0;
}
/* ============================================
컨테이너 (Container)
============================================ */
.image-list-window-container {
background-color: rgb(37, 37, 38);
height: 100%;
width: 300px;
padding: 10px 20px 25px 20px;
flex-grow: 1;
}
/* ============================================
헤더 (Header)
============================================ */
.window-header {
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
height: 24px;
flex-shrink: 0;
}
.window-title {
color: rgb(204, 204, 204);
font-size: 11px;
-unity-font-definition: resource('Fonts/Pretendard/Pretendard-Medium');
-unity-font-style: normal;
margin: 0;
padding: 0;
-unity-text-align: middle-left;
}
/* ============================================
닫기 버튼 (Close Button)
============================================ */
.window-close-button {
width: 22px;
height: 22px;
border-width: 0;
margin: 0;
padding: 0;
background-color: rgba(0, 0, 0, 0);
background-image: resource('UIToolkit/Images/btn_close_22');
align-self: center;
display: none; /* 기본 숨김, 필요시 flex로 변경 */
}
.window-close-button:hover {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 2px;
}
.window-close-button:active {
background-color: rgba(255, 255, 255, 0.2);
}