Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6e1a9f68694936fe4ae5960c2d7f25b5656f2cb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*****************************************************************************
 * Copyright (c) 2012 CEA LIST.
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Camille Letavernier (CEA LIST) camille.letavernier@cea.fr
 *****************************************************************************/

/**

This stylesheets declares the default style options for Papyrus. It mostly contains hacks to avoid
unwished behaviors, related to the base implementation (GMF, Papyrus...)

*/

* {
 	lineColor:black; /* Avoid the gray line-colors from default GMF connectors */
 	fontName:"Segoe UI"; /* Default font used in Papyrus. It is different from the GMF default */
}

/* For most Activity diagram nodes (e.g. initial, final, fork, decision, ...), 
 * the element icon is displayed next to the actual object. 
 * By default, we prevent this. 
 * 
 * For standard nodes (OpaqueAction, ...), they are not implemented at all, 
 * so a global selector will not have side effects (yet). 
 */
ActivityDiagram Activity * {
	elementIcon:false; 
}

/*
 * The Actor element icon is not useful either
 */
UseCaseDiagram Actor {
	elementIcon:false;
}

TimingDiagram * {
	gradient:none;
}

Back to the top