Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael ADAM2014-11-21 08:19:16 +0000
committerMickael ADAM2014-11-21 10:56:23 +0000
commit55b42a4ae77b3eb4f358ceaf9d4fc968cf353dbb (patch)
tree0dc73e0d9ab10d9d1ad13b7c76379c07221a472f /plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.theme/theme
parentff44d6aca47369d14702d9398d308dc3be711fbc (diff)
downloadorg.eclipse.papyrus-55b42a4ae77b3eb4f358ceaf9d4fc968cf353dbb.tar.gz
org.eclipse.papyrus-55b42a4ae77b3eb4f358ceaf9d4fc968cf353dbb.tar.xz
org.eclipse.papyrus-55b42a4ae77b3eb4f358ceaf9d4fc968cf353dbb.zip
436547: [Diagram] All shapes shall be refactored
https://bugs.eclipse.org/bugs/show_bug.cgi?id=436547 -Add CSS default properties for activityDiagram and ClassDiagram -Fix Some bug: -Duration/TimeObservation name is not well placed at creation -SVG figure is resized when the label is showed -Regression for batik test: deletion of unecessary dependencies Change-Id: I69c559080c409f9b2da48779f12f6f14db27db31 Signed-off-by: Mickael ADAM <mickael.adam@ALL4TEC.net>
Diffstat (limited to 'plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.theme/theme')
-rw-r--r--plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.theme/theme/papyrus_theme.css20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.theme/theme/papyrus_theme.css b/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.theme/theme/papyrus_theme.css
index 6ac50b4d5c2..416d090cbca 100644
--- a/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.theme/theme/papyrus_theme.css
+++ b/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.theme/theme/papyrus_theme.css
@@ -126,3 +126,23 @@ ParametricDiagram [appliedStereotypes~=ConstraintProperty] {
Label {
elementIcon: false;
}
+
+ActivityDiagram Activity *,InteractionOverviewDiagram Activity * {
+ elementIcon:false;
+}
+
+ClassDiagram Dependency{
+ fillColor:Black;
+ gradient:none;
+}
+
+/*
+ * The Actor element icon is not useful either
+ */
+UseCaseDiagram Actor {
+ elementIcon:false;
+}
+
+TimingDiagram * {
+ gradient:none;
+}

Back to the top