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

@@ -31,6 +31,14 @@
--color-input: hsl(var(--input));
--color-ring: hsl(var(--ring));
/* Success, Warning, Info Colors */
--color-success: hsl(var(--success));
--color-success-foreground: hsl(var(--success-foreground));
--color-warning: hsl(var(--warning));
--color-warning-foreground: hsl(var(--warning-foreground));
--color-info: hsl(var(--info));
--color-info-foreground: hsl(var(--info-foreground));
/* Chart Colors */
--color-chart-1: hsl(var(--chart-1));
--color-chart-2: hsl(var(--chart-2));
@@ -80,6 +88,18 @@
--input: 214.3 31.8% 91.4%;
--ring: 222.2 84% 4.9%;
/* Success Colors (Emerald) */
--success: 142 76% 36%;
--success-foreground: 0 0% 100%;
/* Warning Colors (Amber) */
--warning: 38 92% 50%;
--warning-foreground: 0 0% 100%;
/* Info Colors (Cyan) */
--info: 188 94% 43%;
--info-foreground: 0 0% 100%;
/* Chart Colors */
--chart-1: 12 76% 61%;
--chart-2: 173 58% 39%;
@@ -123,6 +143,18 @@
--input: 217.2 32.6% 17.5%;
--ring: 212.7 26.8% 83.9%;
/* Success Colors (Emerald) - Dark */
--success: 142 76% 36%;
--success-foreground: 0 0% 100%;
/* Warning Colors (Amber) - Dark */
--warning: 38 92% 50%;
--warning-foreground: 0 0% 100%;
/* Info Colors (Cyan) - Dark */
--info: 188 94% 43%;
--info-foreground: 0 0% 100%;
/* Chart Colors - Dark */
--chart-1: 220 70% 50%;
--chart-2: 160 60% 45%;