diff options
author | silverwind <me@silverwind.io> | 2024-03-06 23:20:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-06 22:20:05 +0000 |
commit | 9730d3a9af889f27a1026045ab650710a01841e5 (patch) | |
tree | 21e874f9d9cb74e9fda1884282f2c61a60ab33ee /routers | |
parent | 16f13265143ff08cb6c33e976998b262e94fe569 (diff) | |
download | gitea-9730d3a9af889f27a1026045ab650710a01841e5.tar.gz gitea-9730d3a9af889f27a1026045ab650710a01841e5.zip |
Update various logos and unify their filenames (#29637)
1. Checked all logos, updated 3 of them to newer versions.
2. Remove `open-with-` infix on the editor logos to be consistent with
other files.
<img width="626" alt="image"
src="https://github.com/go-gitea/gitea/assets/115237/3b2d9486-6e0a-45c6-b0e4-d38dc4c0b118">
Diffstat (limited to 'routers')
-rw-r--r-- | routers/web/repo/view.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/web/repo/view.go b/routers/web/repo/view.go index d47c926fa1..712d12705e 100644 --- a/routers/web/repo/view.go +++ b/routers/web/repo/view.go @@ -919,7 +919,7 @@ func prepareOpenWithEditorApps(ctx *context.Context) { schema, _, _ := strings.Cut(app.OpenURL, ":") var iconHTML template.HTML if schema == "vscode" || schema == "vscodium" || schema == "jetbrains" { - iconHTML = svg.RenderHTML(fmt.Sprintf("gitea-open-with-%s", schema), 16, "gt-mr-3") + iconHTML = svg.RenderHTML(fmt.Sprintf("gitea-%s", schema), 16, "gt-mr-3") } else { iconHTML = svg.RenderHTML("gitea-git", 16, "gt-mr-3") // TODO: it could support user's customized icon in the future } |