diff --git a/public_html/assets/css/main.css b/public_html/assets/css/main.css index d0b7da0..3fb8453 100644 --- a/public_html/assets/css/main.css +++ b/public_html/assets/css/main.css @@ -1385,6 +1385,12 @@ a.txt-logout:hover{ border: 0px; } +/* 첫 줄(버튼 줄) 테두리 제거 + 칸 사이 여백 */ +.form-config-search table.td-search tr:first-child td{ + border: 0px; + padding: 10px 8px; +} + .form-config-search table.td-search .td-title{ min-width: 100px; @@ -2335,9 +2341,13 @@ tr.status-X { ============================ */ .radio-segment { display: flex; + align-items: center; + gap: 5px; + height: 40px; border: 1px solid #ccc; - border-radius: 10px; - overflow: hidden; + border-radius: 999px; /* 바깥 테두리 알약 모양 */ + padding: 5px; /* 상하좌우 여백 균등 (gap과 동일) */ + box-sizing: border-box; width: 100%; } @@ -2358,11 +2368,12 @@ tr.status-X { text-align: center; align-items: center; justify-content: center; - padding: 8px 0; + padding: 5px 16px; background: #e7e7e7; color: #333; font-weight: 500; - height: 100%; + border-radius: 999px; /* 알약 모양 */ + transition: background 0.45s ease; } .radio-segment input[type="radio"]:checked + span { @@ -2370,13 +2381,12 @@ tr.status-X { color: #333; } -/* horizontal radius */ -.radio-segment label:first-child span { - border-radius: 5px 0 0 5px; +/* 마우스 오버 */ +.radio-segment span:hover { + background: #f0f0f0; } - -.radio-segment label:last-child span { - border-radius: 0 5px 5px 0; +.radio-segment input[type="radio"]:checked + span:hover { + background: #fff0b8; } /* check box */ @@ -2450,18 +2460,20 @@ tr.status-X { .radio-segment { flex-direction: column; width: 100%; + height: auto; + gap: 6px; /* 세로로 쌓일 때 버튼 사이 간격 */ + border-radius: 16px; /* 세로일 땐 살짝만 둥글게 */ + padding: 8px; } .radio-segment label { width: 100%; } - .radio-segment label:first-child span { - border-radius: 5px 5px 0 0; - } - - .radio-segment label:last-child span { - border-radius: 0 0 5px 5px; + /* 세로일 때 각 버튼은 살짝 둥근 알약 유지 */ + .radio-segment span { + border-radius: 20px; + padding: 8px 16px; } } diff --git a/public_html/doc/customer_list.php b/public_html/doc/customer_list.php index 11f9c1b..3bd9d13 100644 --- a/public_html/doc/customer_list.php +++ b/public_html/doc/customer_list.php @@ -384,7 +384,7 @@ $(document).ready(function(){ -
+