feat: 테이블 테두리 및 라운드 제거, 검색 필터 제목 제거

- 모든 테이블 컴포넌트의 외곽 테두리(border) 제거
- 테이블 컨테이너의 라운드(rounded-lg) 제거
- 테이블 행 구분선(border-b)은 유지하여 데이터 구분
- FlowWidget과 TableListComponent에 동일한 스타일 적용
- 검색 필터 영역의 회색 배경(bg-muted/30) 제거
- 검색 필터 제목 제거
- AdvancedSearchFilters 컴포넌트의 '검색 필터' 제목 제거
This commit is contained in:
kjs
2025-10-30 15:39:39 +09:00
parent 0e9e5f29cf
commit 4010273d67
67 changed files with 2546 additions and 741 deletions

View File

@@ -102,10 +102,10 @@ function getThemeClasses(theme: string, customColor?: string) {
if (theme === "custom" && customColor) {
// 사용자 지정 색상 사용
return {
container: "text-white",
date: "text-white/80",
time: "text-white",
timezone: "text-white/70",
container: "text-primary-foreground",
date: "text-primary-foreground/80",
time: "text-primary-foreground",
timezone: "text-primary-foreground/70",
style: { backgroundColor: customColor },
};
}
@@ -118,16 +118,16 @@ function getThemeClasses(theme: string, customColor?: string) {
timezone: "text-muted-foreground",
},
dark: {
container: "bg-gray-900 text-white",
date: "text-muted-foreground",
time: "text-white",
timezone: "text-muted-foreground",
container: "bg-foreground text-background",
date: "text-background/80",
time: "text-background",
timezone: "text-background/70",
},
custom: {
container: "bg-gradient-to-br from-primary to-purple-500 text-white",
date: "text-primary/70",
time: "text-white",
timezone: "text-primary/80",
container: "bg-gradient-to-br from-primary to-primary/80 text-primary-foreground",
date: "text-primary-foreground/70",
time: "text-primary-foreground",
timezone: "text-primary-foreground/80",
},
};