From 1d3dac3bec690f5c2b9be4b841533cbb4e14007b Mon Sep 17 00:00:00 2001 From: king Date: Fri, 14 Aug 2026 12:48:23 +0900 Subject: [PATCH] =?UTF-8?q?feat(cafe24):=20=EB=AC=B8=EB=B2=95=20=EA=B0=95?= =?UTF-8?q?=EC=A1=B0=20=ED=8E=B8=EC=A7=91=EA=B8=B0=20+=20=EC=86=8C?= =?UTF-8?q?=EC=8A=A4=20=EC=9E=90=EB=8F=99=20=EC=A0=95=EB=A6=AC,=20?= =?UTF-8?q?=EB=AA=A9=EB=A1=9D=20550px?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1) 검색 입력란이 거대했던 버그 .cf24-filters 가 세로 flex 인데 .cf24-search 에 flex:0 1 320px 을 줬다. 세로 방향에서는 flex-basis 가 '높이'로 적용돼 입력란이 320px 짜리 상자가 됐다. height:32px 로 한 줄에 고정했고, 그만큼 목록이 더 보인다. 2) 목록 550px 요청대로 왼쪽을 550px 로 넓혔다. 남은 폭(약 290px)이 상품명 몫이라 대부분 한 줄에 들어가고, 수정일도 월-일 시:분까지 보여준다. 컬럼은 번호·상품명·진열·판매·수정 5개 그대로다. 3) 문법 강조 편집기 색칠된
 위에 투명한 
+  {# 색칠된 
 위에 투명한 
+  
 
 
 {% if desc.separated_mobile or desc.mobile_differs %}
diff --git a/app/modules/cafe24/templates/cafe24/products.html b/app/modules/cafe24/templates/cafe24/products.html
index 75855c4..f115039 100644
--- a/app/modules/cafe24/templates/cafe24/products.html
+++ b/app/modules/cafe24/templates/cafe24/products.html
@@ -1,7 +1,7 @@
 {% extends "erp_base.html" %}
 
 {% block head_extra %}
-
+
 {% endblock %}
 
 {% block content %}
@@ -69,8 +69,8 @@
               {% if r.selling %}
               {% else %}{% endif %}
             
-            {# 좁은 칸이라 월-일만. 전체 값은 title 로 확인 #}
-            {{ r.updated_date[5:10] }}
+            {# 연도는 생략(월-일 시:분). 전체 값은 title 로 확인 #}
+            {{ r.updated_date[5:16] }}
           
           {% endfor %}
         
@@ -105,9 +105,92 @@
   var listQuery = {{ list_query | tojson }};
   var dirty = false;
 
+  /* ── 문법 강조 ──────────────────────────────────────────────
+     색칠된 
 를 투명한