diff options
author | Juan Cadavid | 2016-01-22 23:22:26 +0000 |
---|---|---|
committer | Gerrit Code Review @ Eclipse.org | 2016-01-25 17:28:18 +0000 |
commit | 00f3ff688838ab5e60e6f9735efbc1fca88c1367 (patch) | |
tree | fc0b0f2f483e8c39788d6307e996df52480d8c5b /extraplugins | |
parent | 1c3e3feb0720e81de32acfe5e3ce9e4093d0a28a (diff) | |
download | org.eclipse.papyrus-00f3ff688838ab5e60e6f9735efbc1fca88c1367.tar.gz org.eclipse.papyrus-00f3ff688838ab5e60e6f9735efbc1fca88c1367.tar.xz org.eclipse.papyrus-00f3ff688838ab5e60e6f9735efbc1fca88c1367.zip |
[BPMN] Make special-type tasks (manual, script,...) show their icon by
default
Change-Id: I4f198dd342b7a82f717d9654177b7f832c239c84
Signed-off-by: Juan Cadavid <juan.cadavid@cea.fr>
Diffstat (limited to 'extraplugins')
-rw-r--r-- | extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.common/css/style.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.common/css/style.css b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.common/css/style.css index ed9cf3192c5..4d86416fe72 100644 --- a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.common/css/style.css +++ b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.common/css/style.css @@ -75,42 +75,49 @@ OpaqueAction > Compartment[kind="symbol"] { fillColor: white; displayTags: false; svgFile: "platform:/plugin/org.eclipse.papyrus.bpmn.diagram.common/shapes/ManualTask.svg"; + shapeVisibility: true; } [appliedStereotypes~="BPMNProfile::ReceiveTask"]{ fillColor: white; displayTags: false; svgFile: "platform:/plugin/org.eclipse.papyrus.bpmn.diagram.common/shapes/ReceiveTask.svg"; + shapeVisibility: true; } [appliedStereotypes~="BPMNProfile::UserTask"]{ fillColor: white; displayTags: false; svgFile: "platform:/plugin/org.eclipse.papyrus.bpmn.diagram.common/shapes/UserTask.svg"; + shapeVisibility: true; } [appliedStereotypes~="BPMNProfile::ScriptTask"]{ fillColor: white; displayTags: false; svgFile: "platform:/plugin/org.eclipse.papyrus.bpmn.diagram.common/shapes/ScriptTask.svg"; + shapeVisibility: true; } [appliedStereotypes~="BPMNProfile::BusinessRuleTask"]{ fillColor: white; displayTags: false; svgFile: "platform:/plugin/org.eclipse.papyrus.bpmn.diagram.common/shapes/BusinessRuleTask.svg"; + shapeVisibility: true; } [appliedStereotypes~="BPMNProfile::SendTask"]{ fillColor: white; displayTags: false; svgFile: "platform:/plugin/org.eclipse.papyrus.bpmn.diagram.common/shapes/SendTask.svg"; + shapeVisibility: true; } [appliedStereotypes~="BPMNProfile::ServiceTask"]{ fillColor: white; displayTags: false; svgFile: "platform:/plugin/org.eclipse.papyrus.bpmn.diagram.common/shapes/ServiceTask.svg"; + shapeVisibility: true; } |