71 lines
1.7 KiB
Plaintext
71 lines
1.7 KiB
Plaintext
/*
|
|
* UTKImageListWindow.uss
|
|
*
|
|
* UTKImageListWindow 컴포넌트의 스타일 정의입니다.
|
|
* UTKImageList를 래핑하는 윈도우 형태의 컨테이너입니다.
|
|
* 테마 지원: var(--color-*) 변수 사용
|
|
*/
|
|
|
|
/* ============================================
|
|
윈도우 루트 (Window Root)
|
|
============================================ */
|
|
|
|
UTKImageListWindow {
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
/* ============================================
|
|
컨테이너 (Container)
|
|
============================================ */
|
|
|
|
.image-list-window-container {
|
|
background-color: var(--color-bg-panel);
|
|
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: var(--color-text-primary);
|
|
font-size: var(--font-size-label3);
|
|
-unity-font-definition: resource('Fonts/Pretendard/Pretendard-Medium');
|
|
-unity-font-style: normal;
|
|
margin: 0;
|
|
padding: 0;
|
|
-unity-text-align: middle-left;
|
|
}
|
|
|
|
/* ============================================
|
|
닫기 버튼 (Close Button) - UTKButton 스타일 오버라이드
|
|
============================================ */
|
|
|
|
.window-close-button {
|
|
width: 22px;
|
|
height: 22px;
|
|
min-width: 22px;
|
|
min-height: 22px;
|
|
border-width: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
align-self: center;
|
|
display: none; /* 기본 숨김, 필요시 flex로 변경 */
|
|
}
|