forked from bptlab/fCM-design-support
-
Notifications
You must be signed in to change notification settings - Fork 1
/
terminationconditionmodeler.less
66 lines (54 loc) · 1.14 KB
/
terminationconditionmodeler.less
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
.tc-root {
padding: 10px;
font-size: 16px;
}
.tc-root.no-dataclass::before {
content: 'Please create data classes before modeling the termination condition';
color: gray;
}
.tc-root.no-dataclass * {
visibility: hidden;
}
.tc-conjunction > .tc-operands > .operand:not(:first-of-type):before {
content: " ∧ ";
}
.tc-disjunction > .tc-operands > .operand:not(:first-of-type):before {
content: " ∨ "
}
.tc-literal, .tc-operands {
display: inline;
}
.tc-literal > button {
background-color: #29487D;
color: white;
border-width: 0px;
}
.tc-operands {
margin-right: 20px;
}
.tc-operation > button {
background-color: #29487D;
color: white;
border-width: 0px;
margin-right: 2px;
}
.tc-operation, .tc-literal {
//border: 1px solid gray;
padding: 1px;
margin: 1px;
margin-top: 5px;
width: fit-content;
background-color: white;
}
.tc-dataclass, .tc-datastate {
display: inline;
padding: 1px;
position: relative;
cursor: default;
}
.tc-datastate {
margin-right: 5px;
}
.tc-dataclass:hover, .tc-datastate:hover {
background-color: lightgray;
}