From 02e49a0f471fcd50e70835458d196615f03c39cc Mon Sep 17 00:00:00 2001 From: Kerwin Bryant Date: Thu, 10 Apr 2025 09:10:16 +0800 Subject: Fix vertical centering of file tree icons and use entryIcon for submodules/symlinks (#34137) In the file tree, the icons are not vertically centered, which affects the overall visual consistency. Currently, the icons of submodules and symlinks do not adopt the value of entryIcon, resulting in inconsistent icon display. before: ![3000-gogitea-gitea-y4ulxr46c4k ws-us118 gitpod io_test_test gitea_src_branch_main_README md (3)](https://github.com/user-attachments/assets/d521b89f-909a-43f9-8f39-787b0243b159) after: ![3000-gogitea-gitea-y4ulxr46c4k ws-us118 gitpod io_test_test gitea_src_branch_main_README md (2)](https://github.com/user-attachments/assets/4866807f-c890-4709-b595-7086011e5231) --------- Co-authored-by: silverwind --- web_src/js/components/ViewFileTreeItem.vue | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'web_src/js/components/ViewFileTreeItem.vue') diff --git a/web_src/js/components/ViewFileTreeItem.vue b/web_src/js/components/ViewFileTreeItem.vue index 69e26dbc33..c39fa1f4ae 100644 --- a/web_src/js/components/ViewFileTreeItem.vue +++ b/web_src/js/components/ViewFileTreeItem.vue @@ -58,7 +58,8 @@ const doGotoSubModule = () => { >
- + + {{ item.entryName }}
@@ -70,7 +71,8 @@ const doGotoSubModule = () => { >
- + + {{ item.entryName }}
@@ -83,7 +85,7 @@ const doGotoSubModule = () => {
- + {{ item.entryName }}
@@ -95,13 +97,12 @@ const doGotoSubModule = () => { >
- - +
- + {{ item.entryName }}
@@ -154,7 +155,7 @@ const doGotoSubModule = () => { grid-area: content; display: flex; align-items: center; - gap: 0.25em; + gap: 0.5em; text-overflow: ellipsis; min-width: 0; } -- cgit v1.2.3