Skip to content

Commit

Permalink
impl new css color schema
Browse files Browse the repository at this point in the history
Issue #357
  • Loading branch information
rsoika committed Sep 15, 2024
1 parent 822dde2 commit e47d7e0
Showing 1 changed file with 35 additions and 12 deletions.
47 changes: 35 additions & 12 deletions open-bpmn.glsp-client/open-bpmn-glsp/css/diagram.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@

/* BPMN Elements */
.task>.sprotty-node {
fill: #425C81;


fill: #84a1bd;
stroke-width: 1px;
stroke: var(--theia-foreground);
}

.event.startEvent>circle {
Expand All @@ -53,17 +57,13 @@
}

.event.intermediateCatchEvent>circle {
fill: #6f8dab;
stroke-width: 0px;
stroke: var(--theia-editor-foreground);
;
fill: #b6c7d9;
stroke: var(--theia-foreground);
}

.event.intermediateThrowEvent>circle {
fill: #6f8dab;
stroke-width: 0px;
stroke: var(--theia-editor-foreground);
;
fill: #b6c7d9;
stroke: var(--theia-foreground);
}

.event.boundaryEvent>circle {
Expand Down Expand Up @@ -120,16 +120,21 @@
}

.task .bpmn-text-node text {
fill: #f0f3f8;
fill: #f5f9ff;
text-anchor: middle;
}

.task .extension text {
fill: #f0f3f8;
fill: #f5f9ff;
font-size: 7pt;
text-anchor: start;
}

.task .icon path {
stroke-width: 0;
fill: #f5f9ff;
}

.BPMNLabel>.sprotty-node {
fill: transparent;
}
Expand Down Expand Up @@ -236,13 +241,31 @@
}


/* Extension Draft */
/* Extension Imixs-Workflow (draft) */
.intermediateCatchEvent.bpmnextension-imixs>circle {
fill: #2579afc2;
stroke-width: 2px;
stroke: #d48729;
}

.intermediateCatchEvent.bpmnextension-imixs .icon path {
stroke-width: 0;
fill: #f0f3f8;
}

.task.bpmnextension-imixs>.sprotty-node {
fill: #425C81;
stroke-width: 2px;
stroke: #d48729;
}

.task.bpmnextension-imixs .bpmn-text-node text {
fill: #f0f3f8;
text-anchor: middle;
}

.task.bpmnextension-imixs .extension text {
fill: #f0f3f8;
font-size: 7pt;
text-anchor: start;
}

0 comments on commit e47d7e0

Please sign in to comment.