Skip to content

Commit

Permalink
Merge pull request #10 from ikedam/feature/JENKINS-71093_BrokenUI
Browse files Browse the repository at this point in the history
 [JENKINS-71093] Fix UI: dropdown should be displayed over another elements
  • Loading branch information
ikedam authored May 4, 2023
2 parents 29808ef + 41fe642 commit dbb90de
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 19 deletions.
19 changes: 5 additions & 14 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
/*
See the documentation for more options:
https://github.com/jenkins-infra/pipeline-library/
*/
// This should be updated manually.
// See: https://www.jenkins.io/changelog-stable/
def recentLts = '2.303.1'

buildPlugin(
configurations: [
[ platform: 'linux', jdk: '8' ],
[ platform: 'windows', jdk: '8' ],
[ platform: 'linux', jdk: '11', jenkins: recentLts ],
],
useContainerAgent: true,
)
configurations: [
[platform: 'linux', jdk: 17],
[platform: 'linux', jdk: 11],
[platform: 'windows', jdk: 11],
])
9 changes: 4 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.24</version>
<version>4.61</version>
<relativePath />
</parent>
<groupId>io.jenkins.plugins</groupId>
Expand All @@ -14,8 +14,7 @@
<properties>
<changelist>999999-SNAPSHOT</changelist>
<!-- Recommended versions: https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/#currently-recommended-versions -->
<jenkins.version>2.289.1</jenkins.version>
<java.level>8</java.level>
<jenkins.version>2.361.4</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
</properties>
<name>Editable Choice Plugin</name>
Expand Down Expand Up @@ -43,8 +42,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.277.x</artifactId>
<version>937.v51fde92016ed</version>
<artifactId>bom-2.361.x</artifactId>
<version>2025.v816d28f1e04f</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
}

.editable-choice-suggest .editable-choice-suggest-choices {
z-index: 999;
display: none;
position: absolute;
width: 100%;
Expand Down

0 comments on commit dbb90de

Please sign in to comment.