Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<gitHubRepo>jenkinsci/pipeline-graph-view-plugin</gitHubRepo>
<!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. -->
<jenkins.baseline>2.528</jenkins.baseline>
<jenkins.version>2.534</jenkins.version>
<jenkins.version>2.567-rc38343.9c3f1c425c6d</jenkins.version>
<node.version>24.16.0</node.version>
<npm.version>11.15.0</npm.version>
<spotless.check.skip>false</spotless.check.skip>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
:root {
// can be removed and `--header-height` used directly when jenkins baseline is 2.507
--pgv-header-height: var(--header-height, 45.5938px);
--pgv-header-height: 58px;

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should provide a variable in Jenkins for this value...

--ansi-0: var(--black);
--ansi-1: var(--red);
--ansi-2: var(--green);
Expand All @@ -19,6 +18,11 @@
--ansi-15: oklch(from var(--ansi-7) calc(l * 1.25) c h);
}

// To remove when app-build-bar is default
body:not(:has(.app-build-bar)) {
--pgv-header-height: calc(var(--section-padding) * -1);
}

.ansi-fg-0 {
color: var(--ansi-0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
display: grid;
gap: var(--section-padding);
animation: fade-in 0.1s ease-in-out both;
padding-bottom: calc(var(--section-padding) + 0.325rem);

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aligns the scroll to bottom/top buttons a little nicer.

}

@keyframes fade-in {
Expand Down