Skip to content

Commit

Permalink
Merge pull request #1661 from janfaracik/patch-1
Browse files Browse the repository at this point in the history
Use success colour variable rather than hardcoded colour
  • Loading branch information
uhafner authored Jan 14, 2024
2 parents cc2888d + a4e09a9 commit 9acbee4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugin/src/main/webapp/css/custom-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

.no-issues-banner {
padding: 30px;
color: #009688;
color: var(--success-color);
height: 200px;
width: 200px;
}
Expand Down
6 changes: 3 additions & 3 deletions plugin/src/main/webapp/css/pull-request-portlet.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

.no-issues-banner {
padding: 20px;
fill: #009688;
fill: var(--success-color);
}

.no-new-issues-banner {
fill: #009688;
fill: var(--success-color);
width: 30px;
height: 30px;
}

.no-issues-body {
transform: translateY(10%);
}
}

0 comments on commit 9acbee4

Please sign in to comment.