From 112d1348292ec28fd64cd038808b11209b9bd521 Mon Sep 17 00:00:00 2001 From: Tw93 Date: Wed, 18 Mar 2026 15:17:03 +0800 Subject: [PATCH] fix(ui): unify ICON_LIST dot size with ICON_SOLID MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change ICON_LIST from • (small bullet) to ● (filled circle) so both checkbox indicators and list bullets render at the same balanced size. --- lib/core/base.sh | 2 +- scripts/check.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/base.sh b/lib/core/base.sh index 5479fa3..af0009e 100644 --- a/lib/core/base.sh +++ b/lib/core/base.sh @@ -34,7 +34,7 @@ readonly ICON_ERROR="☻" readonly ICON_WARNING="◎" readonly ICON_EMPTY="○" readonly ICON_SOLID="●" -readonly ICON_LIST="•" +readonly ICON_LIST="●" readonly ICON_SUBLIST="↳" readonly ICON_ARROW="➤" readonly ICON_DRY_RUN="→" diff --git a/scripts/check.sh b/scripts/check.sh index 20e3dff..8debbec 100755 --- a/scripts/check.sh +++ b/scripts/check.sh @@ -53,7 +53,7 @@ NC='\033[0m' readonly ICON_SUCCESS="✓" readonly ICON_ERROR="☻" readonly ICON_WARNING="●" -readonly ICON_LIST="•" +readonly ICON_LIST="●" echo -e "${BLUE}=== Mole Check, ${MODE} ===${NC}\n"