Skip to content

Commit

Permalink
Merge pull request #214 from camunda-community-hub/860-info-icons
Browse files Browse the repository at this point in the history
fix: remove misplaced condition expression info icons
  • Loading branch information
saig0 authored Jun 5, 2023
2 parents 5774e56 + 915a5e2 commit 0bdd3e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 7 additions & 1 deletion src/main/resources/public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}

.info-icon {
background: #007dffb2;
background-color: #00000030;
border-radius: 2px;
width: 18px;
height: 18px;
Expand All @@ -23,6 +23,12 @@
font-size: 12px;
padding-right: 1px;
margin-top: 5px;

transition: background-color 0.2s;
}

.info-icon:hover {
background-color: #007dffb2;
}

.overlay-button {
Expand Down
3 changes: 0 additions & 3 deletions src/main/resources/public/js/view-common.js
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,6 @@ function showInfoOfBpmnElement(element) {
if (metadata.jobType) {
info = "job type: " + metadata.jobType;
}
if (metadata.conditionExpression) {
info = "condition: " + metadata.conditionExpression;
}
if (metadata.timerDefinition) {
info = "timer: " + metadata.timerDefinition;
}
Expand Down

0 comments on commit 0bdd3e2

Please sign in to comment.