summaryrefslogtreecommitdiffstats
path: root/web_src/js
diff options
context:
space:
mode:
authorYarden Shoham <git@yardenshoham.com>2023-05-19 20:03:09 +0300
committerGitHub <noreply@github.com>2023-05-19 17:03:09 +0000
commitc641a22f2a7f5c404accb67f6aea4a000f7f6e80 (patch)
tree431e4a837cb988957ea307781b5fa91b4c2d69f1 /web_src/js
parenta103b79f60948fa8ee44f95304716f3d354a8c15 (diff)
downloadgitea-c641a22f2a7f5c404accb67f6aea4a000f7f6e80.tar.gz
gitea-c641a22f2a7f5c404accb67f6aea4a000f7f6e80.zip
Mute repo names in dashboard repo list (#24811)
# Before ![image](https://github.com/go-gitea/gitea/assets/20454870/24b80212-4a4d-44a7-99d5-a8c6b207225e) # After ![image](https://github.com/go-gitea/gitea/assets/20454870/565b242a-f65d-450c-b43b-c4539a0f8b28) Signed-off-by: Yarden Shoham <git@yardenshoham.com> Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'web_src/js')
-rw-r--r--web_src/js/components/DashboardRepoList.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/components/DashboardRepoList.vue b/web_src/js/components/DashboardRepoList.vue
index 84ee886618..a434eee436 100644
--- a/web_src/js/components/DashboardRepoList.vue
+++ b/web_src/js/components/DashboardRepoList.vue
@@ -71,7 +71,7 @@
<div v-if="repos.length" class="ui attached table segment gt-rounded-bottom">
<ul class="repo-owner-name-list">
<li v-for="repo in repos" :key="repo.id">
- <a class="repo-list-link gt-df gt-ac gt-sb" :href="repo.link">
+ <a class="repo-list-link muted gt-df gt-ac gt-sb" :href="repo.link">
<div class="item-name gt-df gt-ac gt-f1">
<svg-icon :name="repoIcon(repo)" :size="16" class-name="gt-mr-2"/>
<div class="text gt-bold truncate gt-ml-1">{{ repo.full_name }}</div>