From fee66f0fbf8a06a2bdf47e29a747ba905926d13d Mon Sep 17 00:00:00 2001 From: DianaXWiki Date: Wed, 10 Sep 2025 12:54:44 +0300 Subject: [PATCH 1/3] Align contact book --- www/profile/app-profile.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/www/profile/app-profile.less b/www/profile/app-profile.less index 85783f54b..cf8474521 100644 --- a/www/profile/app-profile.less +++ b/www/profile/app-profile.less @@ -179,6 +179,9 @@ display: flex; align-items: center; color: @cp-profile-is-your-friend; + svg { + margin: 0.1rem 0 0 0; + } } .cp-app-profile-friend-request { flex: 0; From 63576b004b8f1fbd16f5af2928d45577c81bfb6a Mon Sep 17 00:00:00 2001 From: DianaXWiki Date: Wed, 10 Sep 2025 13:09:40 +0300 Subject: [PATCH 2/3] Fix content icons disappearing in richtext --- www/pad/inner.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/pad/inner.js b/www/pad/inner.js index c7c8f8670..cbce897ff 100644 --- a/www/pad/inner.js +++ b/www/pad/inner.js @@ -968,6 +968,7 @@ define([ content.push(h('p.cp-pad-toc-'+level, a)); }); $toc.html('').append(content); + Lucide.createIcons(); }, 400); // apply patches, and try not to lose the cursor in the process! From 8b0e9a0a52e76bd0e548fb784cc757fbfb46e0cc Mon Sep 17 00:00:00 2001 From: DianaXWiki Date: Wed, 10 Sep 2025 13:47:34 +0300 Subject: [PATCH 3/3] Fix comments icons in richtext --- customize.dist/src/less2/include/comments.less | 10 ++++++++++ www/common/common-icons.js | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/customize.dist/src/less2/include/comments.less b/customize.dist/src/less2/include/comments.less index 814b75277..7b373a35d 100644 --- a/customize.dist/src/less2/include/comments.less +++ b/customize.dist/src/less2/include/comments.less @@ -70,6 +70,11 @@ button:not(:last-child) { margin-right: 5px; } + svg { + width: 1rem; + height: 1rem; + margin-right: 0.35rem; + } } .cp-comment-container { @@ -91,6 +96,11 @@ &:last-child { margin-bottom: 10px; } + svg { + width: 1rem; + height: 1rem; + margin-right: 0.35rem; + } } .cp-comment { &:not(:first-child) { diff --git a/www/common/common-icons.js b/www/common/common-icons.js index b4e0f0f47..fcce899dd 100644 --- a/www/common/common-icons.js +++ b/www/common/common-icons.js @@ -119,8 +119,8 @@ define([ "sort-amount-desc": "arrow-down-wide-narrow", "export-sheet": "sheet", "announcement": "megaphone", - "reply": "message-square-reply", - "comment": "message-square", + "reply": "reply", + "comment": "message-square-text", "file-image": "file-image", "snapshot": "camera", "certificate": "shield-check",