|
|
@ -377,7 +377,7 @@ export function initRepositoryActionView() { |
|
|
|
<button class="ui basic small compact button red" @click="cancelRun()" v-else-if="run.canCancel"> |
|
|
|
<button class="ui basic small compact button red" @click="cancelRun()" v-else-if="run.canCancel"> |
|
|
|
{{ locale.cancel }} |
|
|
|
{{ locale.cancel }} |
|
|
|
</button> |
|
|
|
</button> |
|
|
|
<button class="ui basic small compact button tw-mr-0 link-action" :data-url="`${run.link}/rerun`" v-else-if="run.canRerun"> |
|
|
|
<button class="ui basic small compact button tw-mr-0 tw-whitespace-nowrap link-action" :data-url="`${run.link}/rerun`" v-else-if="run.canRerun"> |
|
|
|
{{ locale.rerun_all }} |
|
|
|
{{ locale.rerun_all }} |
|
|
|
</button> |
|
|
|
</button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -386,8 +386,8 @@ export function initRepositoryActionView() { |
|
|
|
<a class="muted" :href="run.commit.link">{{ run.commit.shortSHA }}</a> |
|
|
|
<a class="muted" :href="run.commit.link">{{ run.commit.shortSHA }}</a> |
|
|
|
{{ run.commit.localePushedBy }} |
|
|
|
{{ run.commit.localePushedBy }} |
|
|
|
<a class="muted" :href="run.commit.pusher.link">{{ run.commit.pusher.displayName }}</a> |
|
|
|
<a class="muted" :href="run.commit.pusher.link">{{ run.commit.pusher.displayName }}</a> |
|
|
|
<span class="ui label" v-if="run.commit.shortSHA"> |
|
|
|
<span class="ui label tw-max-w-full" v-if="run.commit.shortSHA"> |
|
|
|
<a :href="run.commit.branch.link">{{ run.commit.branch.name }}</a> |
|
|
|
<a class="gt-ellipsis" :href="run.commit.branch.link">{{ run.commit.branch.name }}</a> |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -426,8 +426,8 @@ export function initRepositoryActionView() { |
|
|
|
|
|
|
|
|
|
|
|
<div class="action-view-right"> |
|
|
|
<div class="action-view-right"> |
|
|
|
<div class="job-info-header"> |
|
|
|
<div class="job-info-header"> |
|
|
|
<div class="job-info-header-left"> |
|
|
|
<div class="job-info-header-left gt-ellipsis"> |
|
|
|
<h3 class="job-info-header-title"> |
|
|
|
<h3 class="job-info-header-title gt-ellipsis"> |
|
|
|
{{ currentJob.title }} |
|
|
|
{{ currentJob.title }} |
|
|
|
</h3> |
|
|
|
</h3> |
|
|
|
<p class="job-info-header-detail"> |
|
|
|
<p class="job-info-header-detail"> |
|
|
@ -503,6 +503,7 @@ export function initRepositoryActionView() { |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
align-items: center; |
|
|
|
justify-content: space-between; |
|
|
|
justify-content: space-between; |
|
|
|
|
|
|
|
gap: 8px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.action-info-summary-title { |
|
|
|
.action-info-summary-title { |
|
|
@ -513,6 +514,7 @@ export function initRepositoryActionView() { |
|
|
|
font-size: 20px; |
|
|
|
font-size: 20px; |
|
|
|
margin: 0 0 0 8px; |
|
|
|
margin: 0 0 0 8px; |
|
|
|
flex: 1; |
|
|
|
flex: 1; |
|
|
|
|
|
|
|
overflow-wrap: anywhere; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.action-commit-summary { |
|
|
|
.action-commit-summary { |
|
|
@ -728,6 +730,10 @@ export function initRepositoryActionView() { |
|
|
|
font-size: 12px; |
|
|
|
font-size: 12px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.job-info-header-left { |
|
|
|
|
|
|
|
flex: 1; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.job-step-container { |
|
|
|
.job-step-container { |
|
|
|
max-height: 100%; |
|
|
|
max-height: 100%; |
|
|
|
border-radius: 0 0 var(--border-radius) var(--border-radius); |
|
|
|
border-radius: 0 0 var(--border-radius) var(--border-radius); |
|
|
|