-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
104 lines (85 loc) · 2.21 KB
/
styles.css
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
.aws-sfn-graph-container {
text-align: center;
position: relative;
background-color: var(--background-secondary);
margin-bottom: 2em;
}
.aws-sfn-graph-container.in-error {
color: var(--text-error);
padding: 2em;
}
.aws-sfn-graph-container svg {
overflow: hidden;
margin: auto;
display: block;
width: 100%;
height: 100%;
opacity: 1;
transition: opacity 250ms;
}
.aws-sfn-graph-container.loading svg {
opacity: 0;
}
.aws-sfn-graph-container .node>.shape {
stroke: var(--text-muted);
stroke-width: .6px;
fill: transparent;
}
.aws-sfn-graph-container .node.anchor>.shape {
stroke-width: 1px;
}
.aws-sfn-graph-container .node.state.Container>.shape,
.aws-sfn-graph-container .node.state.Pass>.shape,
.aws-sfn-graph-container .node.state.Wait>.shape {
stroke-dasharray: 5 2
}
.aws-sfn-graph-container marker {
fill: var(--text-muted)
}
.aws-sfn-graph-container path {
stroke: var(--text-muted);
background-color: var(--text-muted);
stroke-width: 1px
}
.aws-sfn-graph-container tspan {
font-weight: 400;
font-size: 12px;
text-shadow: none;
fill: var(--text-normal);
}
.aws-sfn-graph-container .node.state.Map>.shape {
fill: var(--background-secondary);
}
.aws-sfn-graph-container.colorized .node.state.Container>.shape,
.aws-sfn-graph-container.colorized .node.state.Map>.shape {
fill: var(--background-primary);
}
.aws-sfn-graph-container.colorized .node.state:not(.Container)>.shape {
stroke: var(--text-accent);
}
.aws-sfn-graph-container.colorized .node.anchor>.shape {
stroke: var(--text-accent);
fill: var(--text-accent);
}
.aws-sfn-graph-container.colorized .node.state.Fail>.shape {
stroke: var(--red);
}
.aws-sfn-graph-container.colorized .node.state.Succeed>.shape {
stroke: var(--green);
}
.aws-sfn-graph-container.colorized .node.state.Wait>.shape,
.aws-sfn-graph-container.colorized .node.state.Pass>.shape {
stroke: var(--text-normal);
}
.aws-sfn-graph-container.colorized .node.anchor tspan {
fill: #fff;
}
.aws-sfn-graph-container .aws-sfn-widget {
position: absolute;
top: 0;
right: 0;
}
.aws-sfn-graph-container .aws-sfn-widget button {
margin: 5px;
display: block;
}