Skip to content

Commit

Permalink
Fix broken chevron icons for carousel.
Browse files Browse the repository at this point in the history
Color should use text-color, then the icon is visible in all themes.
  • Loading branch information
uhafner committed Jan 21, 2024
1 parent 87cf46a commit 4664a3e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ mvn clean install || { echo "Build failed"; exit 1; }

echo "Installing plugin in $JENKINS_HOME"

rm -rf $JENKINS_HOME/plugins/echarts-api-plugin*
cp -fv target/echarts-api.hpi $JENKINS_HOME/plugins/echarts-api.jpi
rm -rf $JENKINS_HOME/plugins/font-awesome-api-plugin*
cp -fv target/font-awesome-api.hpi $JENKINS_HOME/plugins/font-awesome-api.jpi

CURRENT_UID="$(id -u):$(id -g)"
export CURRENT_UID
Expand Down
4 changes: 2 additions & 2 deletions bin/skip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ mvn -o clean install -Pskip || { echo "Build failed"; exit 1; }

echo "Installing plugin in $JENKINS_HOME"

rm -rf $JENKINS_HOME/plugins/echarts-api-plugin*
cp -fv target/echarts-api.hpi $JENKINS_HOME/plugins/echarts-api.jpi
rm -rf $JENKINS_HOME/plugins/font-awesome-api-plugin*
cp -fv target/font-awesome-api.hpi $JENKINS_HOME/plugins/font-awesome-api.jpi

CURRENT_UID="$(id -u):$(id -g)"
export CURRENT_UID
Expand Down
4 changes: 4 additions & 0 deletions src/main/webapp/css/jenkins-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@
border-radius: 5px;
transition: 0.2s ease;
}

svg.fa-svg-icon {
color: var(--text-color);
}

0 comments on commit 4664a3e

Please sign in to comment.