Skip to content

Commit

Permalink
change placeholder node color
Browse files Browse the repository at this point in the history
  • Loading branch information
slavas490 committed Mar 29, 2024
1 parent f9bc230 commit eff6928
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ui/core/src/assets/styles/vis-styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ input.flow-chart-finder-input {
}

.fcn-placeholder {
color: #56ec00;
color: #f5e203;
}

.fcn-form {
Expand Down
10 changes: 5 additions & 5 deletions ui/core/src/views/Workflow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1723,16 +1723,16 @@ function condition(){
{
node: {
color: {
background: '#56ec00',
highlight: { background: '#56ec00' },
hover: { background: '#56ec00' }
background: '#f5e203',
highlight: { background: '#f5e203' },
hover: { background: '#f5e203' }
},
borderWidthSelected: 3
},
edge: {
font: { align: 'middle' },
arrows: 'to',
color: { color: '#56ec00', highlight: '#56ec00', hover: '#56ec00' }
color: { color: '#f5e203', highlight: '#f5e203', hover: '#f5e203' }
}
}],
to: Infinity,
Expand All @@ -1745,7 +1745,7 @@ function condition(){
icon: {
face: 'Material Design Icons',
code: '\u2B22',
color: '#56ec00'
color: '#f5e203'
},
events: {
dblclick: _.placeholderDblClick
Expand Down

0 comments on commit eff6928

Please sign in to comment.