- 카드 액션 버튼 36px→44px + 아이콘+텍스트 라벨 (모바일)
- 날짜 필터/입력 터치 타겟 36px min-height로 확대
- 빈 상태 메시지 모바일 적절하게 변경 ("드래그하여 이동"→"아직 항목이 없습니다")
- 완료 비우기 MobileSheet 확인 다이얼로그 (모바일)
- 완료 탭 내 "비우기" 버튼 추가
- SwipeableView 활성 탭 하단 인디케이터 + 44px 높이
- 폼 라벨 14px, 입력 16px (iOS 줌 방지)
- 모바일 컬럼/패널 배경·보더 제거로 공간 절약
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
126 lines
2.3 KiB
CSS
126 lines
2.3 KiB
CSS
/* MobileSheet — bottom sheet modal */
|
|
|
|
/* Backdrop */
|
|
.mobile-sheet__backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
backdrop-filter: blur(4px);
|
|
-webkit-backdrop-filter: blur(4px);
|
|
z-index: 400;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transition: opacity 0.25s var(--ease-out);
|
|
}
|
|
|
|
.mobile-sheet__backdrop.is-open {
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
/* Sheet */
|
|
.mobile-sheet {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
max-height: 90vh;
|
|
background: var(--bg-secondary);
|
|
border-top: 1px solid var(--line);
|
|
border-radius: var(--radius-xl) var(--radius-xl) 0 0;
|
|
z-index: 401;
|
|
display: flex;
|
|
flex-direction: column;
|
|
touch-action: none;
|
|
transform: translateY(100%);
|
|
transition: transform 0.3s var(--ease-out);
|
|
}
|
|
|
|
.mobile-sheet.is-open {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* Snap variants */
|
|
.mobile-sheet.snap-half {
|
|
max-height: 50vh;
|
|
}
|
|
|
|
/* Drag handle area */
|
|
.mobile-sheet__handle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 12px 0 8px;
|
|
cursor: grab;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.mobile-sheet__handle:active {
|
|
cursor: grabbing;
|
|
}
|
|
|
|
.mobile-sheet__handle-bar {
|
|
display: block;
|
|
width: 36px;
|
|
height: 4px;
|
|
background: var(--text-muted);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
/* Header */
|
|
.mobile-sheet__header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 20px 12px;
|
|
border-bottom: 1px solid var(--line);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.mobile-sheet__title {
|
|
font-family: var(--font-display);
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: var(--text-bright);
|
|
}
|
|
|
|
.mobile-sheet__close {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 44px;
|
|
min-height: 44px;
|
|
background: none;
|
|
border: none;
|
|
color: var(--text-dim);
|
|
cursor: pointer;
|
|
border-radius: var(--radius-sm);
|
|
-webkit-tap-highlight-color: transparent;
|
|
transition: color 0.18s var(--ease-out);
|
|
}
|
|
|
|
.mobile-sheet__close:hover {
|
|
color: var(--text);
|
|
}
|
|
|
|
/* Scrollable body */
|
|
.mobile-sheet__body {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 16px 20px;
|
|
padding-bottom: calc(20px + var(--safe-area-bottom));
|
|
overscroll-behavior: contain;
|
|
}
|
|
|
|
/* Reduced motion */
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.mobile-sheet__backdrop,
|
|
.mobile-sheet {
|
|
transition: none;
|
|
}
|
|
|
|
.mobile-sheet__close {
|
|
transition: none;
|
|
}
|
|
}
|