From 6a32594268faccd9a8dba4cbd54f72934e42fe29 Mon Sep 17 00:00:00 2001 From: hyowons Date: Mon, 8 Jun 2026 16:46:26 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EA=B3=84=EC=A2=8C=EB=AA=85=20=EC=A2=85?= =?UTF-8?q?=EB=AA=A9=EB=AA=85=20=EC=98=86(=EC=9E=91=EA=B2=8C),=20=ED=83=9C?= =?UTF-8?q?=EA=B7=B8=20=EB=B3=B4=EC=9C=A0=20=EC=99=BC=EC=AA=BD,=20?= =?UTF-8?q?=E2=98=85=20=EB=B9=84=EC=A4=91=20=EC=98=A4=EB=A5=B8=EC=AA=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit line1=뱃지+종목명+계좌명(작게), line2=태그+보유+비중%+★. line3 제거(2줄). Co-Authored-By: Claude Opus 4.8 --- agents/stock/workspace/scripts/behive_web.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/agents/stock/workspace/scripts/behive_web.py b/agents/stock/workspace/scripts/behive_web.py index b0c57c4..88c4a71 100644 --- a/agents/stock/workspace/scripts/behive_web.py +++ b/agents/stock/workspace/scripts/behive_web.py @@ -2677,9 +2677,8 @@ def _render_holding_row(r: dict, total_value: int, show_day_change: bool = False return f'''
-
{_buy_rank_badge(buy_amount)}{stock}
-
{star}보유 {qty:,}주{_pending_badges_html(r)}{weight:.2f}%{acct_label}
-
{tag_chip}
+
{_buy_rank_badge(buy_amount)}{stock}{acct_label}
+
{tag_chip}보유 {qty:,}주{_pending_badges_html(r)}{weight:.2f}%{star}
{summary_journal_html}
@@ -4043,6 +4042,7 @@ details.row + .section-label { margin-top: 14px; padding-top: 24px; border-top-c .line1 { display: flex; align-items: center; gap: 6px; min-width: 0; flex-wrap: wrap; row-gap: 4px; } /* 보유행 1줄: 뱃지+당일마크+종목명+계좌 한 줄 고정(nowrap). 이름 길면 .stock 이 ellipsis 로 줄어듦. */ .line1-held { flex-wrap: nowrap; } +.acct-mini { font-size: 10px; color: #7a7f8c; flex: none; } /* 종목명 오른쪽 계좌명 작게 */ .stock { font-size: 14px; font-weight: 600; color: #f0f0f0; letter-spacing: -0.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; } .stock.stock-sm { font-size: 12px; } /* 이름 10자+ */ .stock.stock-xs { font-size: 10.5px; } /* 이름 14자+ */