| 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
 | | .stencil-app { |  |   display: flex; |  |   padding: 0; |  |   font-family: sans-serif; |  |   |  |   .app-stencil { |  |     position: relative; |  |     width: 300px; |  |     border: 1px solid #f0f0f0; |  |   } |  |   |  |   .app-content { |  |     flex: 1; |  |     height: 380px; |  |     margin-right: 8px; |  |     margin-left: 8px; |  |     box-shadow: 0 0 10px 1px #e9e9e9; |  |   } |  | } |  |   |  | .x6-node.node-active .x6-port .x6-port-body { |  |   visibility: visible; |  | } |  |   |  | .my-context-menu { |  |   width: 150px; |  |   // height: 100px; |  |   background: #fff; |  |   position: absolute; |  |   border-radius: 10px; |  |   overflow: hidden; |  |   border: 1px #000 solid; |  | } |  |   |  | .right-menu-button { |  |   background: #fff; |  |   padding: 5px 10px; |  |   color: #000; |  |   text-align: center; |  |   cursor: pointer; |  | } |  |   |  | .right-menu-button:hover { |  |   background: rgb(22,119,255); |  |   color: #fff; |  | } | 
 |