@dualbox/editor 1.0.19 → 1.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/css/plumb.css CHANGED
@@ -1,155 +0,0 @@
1
-
2
- .demo {
3
- /* for IE10+ touch devices */
4
- touch-action:none;
5
- }
6
-
7
- .dualbox-graph-canvas .marker-color-tag {
8
- height: 8px;
9
- margin: 0 3px 3px 0;
10
- padding: 0;
11
- width: 42px;
12
- line-height: 75pt;
13
- border-radius: 3px;
14
- display: block;
15
- width: 100%;
16
- }
17
-
18
- .input-color-tag {
19
- background-color: #F2D600;
20
- }
21
-
22
- .output-color-tag {
23
- background-color: #FFAB4A;
24
- }
25
-
26
- .ui-color-tag {
27
- background-color: #61BD4F;
28
- }
29
-
30
- .metanode-color-tag {
31
- background-color: #DDDDDD;
32
- }
33
-
34
- .input {
35
- }
36
-
37
- .output {
38
- }
39
-
40
- #flowchartWindow1 {
41
- top: 34em;
42
- left: 5em;
43
- }
44
-
45
- #flowchartWindow2 {
46
- top: 7em;
47
- left: 36em;
48
- }
49
-
50
- #flowchartWindow3 {
51
- top: 27em;
52
- left: 48em;
53
- }
54
-
55
- #flowchartWindow4 {
56
- top: 23em;
57
- left: 22em;
58
- }
59
-
60
- #flowchartWindow5 {
61
- top: 0em;
62
- left: 0em;
63
- }
64
-
65
- .dualbox-graph-canvas .jsplumb-connector {
66
- z-index: 4;
67
- }
68
-
69
- .dualbox-graph-canvas .jsplumb-endpoint {
70
- z-index: 30;
71
- }
72
- .dualbox-graph-canvas .inoutEndpointLabel, .endpointSourceLabel {
73
- box-shadow: 1px 1px 1px #716f6f;
74
- -o-box-shadow: 1px 1px 1px #716f6f;
75
- -webkit-box-shadow: 0px 1px 1px #716f6f;
76
- -moz-box-shadow: 1px 1px 1px #716f6f;
77
- z-index: 2000;
78
- transform:translate(0%,0%) !important; /* this shit is just to prevent jsplumb of centering the box on the endpoint... */
79
- }
80
- .dualbox-graph-canvas .descSpan {
81
- box-shadow: 1px 1px 1px #716f6f;
82
- -o-box-shadow: 1px 1px 1px #716f6f;
83
- -webkit-box-shadow: 0px 1px 1px #716f6f;
84
- -moz-box-shadow: 1px 1px 1px #716f6f;
85
- position: fixed;
86
- display:none;
87
- z-index:2010;
88
- }
89
-
90
- .dualbox-graph-canvas .aLabel {
91
- background-color: white;
92
- padding: 0.4em;
93
- font: 12px sans-serif;
94
- color: #444;
95
- z-index: 21;
96
- border: 1px dotted gray;
97
- opacity: 0.8;
98
- cursor: pointer;
99
- }
100
-
101
- .dualbox-graph-canvas .aLabel.jsplumb-hover {
102
- background-color: #5C96BC;
103
- color: white;
104
- border: 1px solid white;
105
- }
106
-
107
- .card.jsplumb-connected {
108
- /*border: 1px solid #a1a1a1; change border when connected to spot isolated elements as disabled*/
109
- }
110
-
111
- .jsplumb-drag {
112
- opacity:0.7 !important;
113
- }
114
-
115
- path, .jsplumb-endpoint {
116
- cursor: pointer;
117
- }
118
-
119
- .jsplumb-overlay {
120
- background-color:transparent;
121
- }
122
-
123
- .fileUpload {
124
- position: relative;
125
- overflow: hidden;
126
- margin: 10px;
127
- }
128
- .fileUpload input.upload {
129
- position: absolute;
130
- top: 0;
131
- right: 0;
132
- margin: 0;
133
- padding: 0;
134
- font-size: 20px;
135
- cursor: pointer;
136
- opacity: 0;
137
- filter: alpha(opacity=0);
138
- }
139
-
140
-
141
- .module-edit-modal-body .btn+.btn {
142
- margin-bottom: 0;
143
- margin-left: 5px;
144
- }
145
-
146
- .btn-add-node {
147
- width:46%;
148
- margin:1%;
149
- }
150
-
151
- button.close {
152
- position: absolute;
153
- right: 0;
154
- margin-right: 5px!important;
155
- }