Skip to content

Commit 43aa914

Browse files
authored
fix double border and border-radius on empty action steps (#29845)
Before, double border-bottom and incorrect border-radius: <img width="914" alt="Screenshot 2024-03-16 at 14 46 31" src="https://github.com/go-gitea/gitea/assets/115237/6ea63c42-754c-420c-a0f5-c889a8507d9f"> After, both fixed: <img width="917" alt="Screenshot 2024-03-16 at 14 45 59" src="https://github.com/go-gitea/gitea/assets/115237/9d3f2dba-6b22-441d-8e99-5809d5f1f1c0">
1 parent ffeaf2d commit 43aa914

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

web_src/js/components/RepoActionView.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ export function initRepositoryActionView() {
457457
</div>
458458
</div>
459459
</div>
460-
<div class="job-step-container" ref="steps">
460+
<div class="job-step-container" ref="steps" v-if="currentJob.steps.length">
461461
<div class="job-step-section" v-for="(jobStep, i) in currentJob.steps" :key="i">
462462
<div class="job-step-summary" @click.stop="toggleStepLogs(i)" :class="currentJobStepsStates[i].expanded ? 'selected' : ''">
463463
<!-- If the job is done and the job step log is loaded for the first time, show the loading icon
@@ -686,11 +686,15 @@ export function initRepositoryActionView() {
686686
background-color: var(--color-console-bg);
687687
position: sticky;
688688
top: 0;
689-
border-radius: var(--border-radius) var(--border-radius) 0 0;
689+
border-radius: var(--border-radius);
690690
height: 60px;
691691
z-index: 1;
692692
}
693693
694+
.job-info-header:has(+ .job-step-container) {
695+
border-radius: var(--border-radius) var(--border-radius) 0 0;
696+
}
697+
694698
.job-info-header .job-info-header-title {
695699
color: var(--color-console-fg);
696700
font-size: 16px;

0 commit comments

Comments
 (0)