aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/components
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2023-07-04 11:59:47 +0200
committerGitHub <noreply@github.com>2023-07-04 09:59:47 +0000
commit0006169f38f757e35c61169cb0a5da051ff696fe (patch)
tree3e82199feb12574f32f17a10a1d54e26e3cf06cc /web_src/js/components
parent9958642502f8b505f97589d7a7f5357e8dfc04e3 (diff)
downloadgitea-0006169f38f757e35c61169cb0a5da051ff696fe.tar.gz
gitea-0006169f38f757e35c61169cb0a5da051ff696fe.zip
Actions list enhancements (#25601)
Various small enhancements to the actions list. Before and after: <img width="1264" alt="Screenshot 2023-06-30 at 00 11 40" src="https://github.com/go-gitea/gitea/assets/115237/bb4162ee-cdcf-4a73-b05e-f9521562edbb"> <img width="1264" alt="Screenshot 2023-06-30 at 00 09 51" src="https://github.com/go-gitea/gitea/assets/115237/52a70ea9-4bb3-406e-904b-0fdaafde9582"> --------- Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'web_src/js/components')
-rw-r--r--web_src/js/components/RepoActionView.vue11
1 files changed, 5 insertions, 6 deletions
diff --git a/web_src/js/components/RepoActionView.vue b/web_src/js/components/RepoActionView.vue
index c247967161..f244720fe0 100644
--- a/web_src/js/components/RepoActionView.vue
+++ b/web_src/js/components/RepoActionView.vue
@@ -20,12 +20,12 @@
</div>
<div class="action-commit-summary">
{{ run.commit.localeCommit }}
- <a :href="run.commit.link">{{ run.commit.shortSHA }}</a>
+ <a class="muted" :href="run.commit.link">{{ run.commit.shortSHA }}</a>
+ {{ run.commit.localePushedBy }}
+ <a class="muted" :href="run.commit.pusher.link">{{ run.commit.pusher.displayName }}</a>
<span class="ui label" v-if="run.commit.shortSHA">
<a :href="run.commit.branch.link">{{ run.commit.branch.name }}</a>
</span>
- {{ run.commit.localePushedBy }}
- <a :href="run.commit.pusher.link">{{ run.commit.pusher.displayName }}</a>
</div>
</div>
<div class="action-view-body">
@@ -507,7 +507,6 @@ export function initRepositoryActionView() {
.action-view-header {
margin-top: 8px;
- margin-bottom: 4px;
}
.action-info-summary {
@@ -522,14 +521,14 @@ export function initRepositoryActionView() {
.action-info-summary-title-text {
font-size: 20px;
- margin: 0 0 0 5px;
+ margin: 0 0 0 8px;
flex: 1;
}
.action-commit-summary {
display: flex;
gap: 5px;
- margin: 5px 0 0 25px;
+ margin: 0 0 0 28px;
}
.action-view-left, .action-view-right {