懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
提交 | 用户 | 时间
8286c6 1 @font-face {
2     font-family: 'ActivitiModeler';
3     src: url('../fonts/activiti-admin-webfont.eot');
4     src: url('../fonts/activiti-admin-webfont.eot?#iefix') format('embedded-opentype'),
5          url('../fonts/activiti-admin-webfont.woff') format('woff'),
6          url('../fonts/activiti-admin-webfont.ttf') format('truetype'),
7          url('../fonts/activiti-admin-webfont.svg#activitimodelerregular') format('svg');
8     font-weight: normal;
9     font-style: normal;
10 }
11
12 .row-no-gutter .col-xs-9 {
13     padding-left: 0px;
14     padding-right: 0px;
15     z-index: 50;
16 }
17
18 .row-no-gutter .col-xs-3 {
19     padding-left: 0px;
20     padding-right: 0px;
21     z-index: 100;
22 }
23
24 .editor-item-picker {
25     height: 400px;
26     max-height: 400px;
27     min-height: 400px;
28     overflow: auto;
29 }
30
31 .editor-item-picker-component {
32     height: 185px;
33     max-height: 185px;
34     overflow: hidden;
35 }
36
37 .editor-toolbar {
38     padding-left: 5px;
39 }
40
41 .editor-toolbar > .btn-group {
42     margin: 12px 15px 0px 0px;
43 }
44
45 .editor-toolbar  > .btn-group.pull-right {
46     margin: 0;
47 }
48
49 .editor-toolbar .btn.btn-inverse {
50     font-size: 24px;
51     color: #FFFFFF;
52     border-color: rgba(0, 0, 0, 0);
53     padding: 3px 6px 0px 6px;
54     box-shadow: none;
55     text-shadow: none;
56     text-align: center;
57     border: none;
58     margin: 0px 0px 0px 5px;
59     height: 36px;
60     min-width: 36px;
61 }
62 .editor-toolbar .btn.btn-inverse.pressed {
63     background-color: #287d92;
64     color: #174753;
65 }
66
67 .editor-toolbar .btn.btn-inverse.disabled, .editor-toolbar .btn.btn-inverse[disabled], .editor-toolbar .btn.btn-inverse[disabled]:active, .editor-toolbar .btn.btn-inverse[disabled]:hover {
68     background-color: #668b94;
69     border-color: #668b94;
70 }
71
72 .editor-toolbar .btn.btn-inverse.separator {
73     background: transparent;
74     padding: 4px 5px 0px 5px;
75     width: 1px;
76     min-width: 1px;
77 }
78
79 .editor-toolbar .toolbar-separator {
80     background: #a4acb9;
81     width: 1px;
82     height: 30px;
83 }
84
85 .stencils {
86     border-right: 1pt solid #c7cacd;
87     overflow: auto;
88     z-index: 5000;
89 }
90
91 .stencils ul {
92     padding-left: 0;
93 }
94
95 .stencils > div {
96     margin-top: 10px;
97 }
98
99 .stencil-group {
100     list-style: none;
101     list-style-position: outside;
102     margin: 0px 15px 0px 0px;
103 }
104
105
106 .stencil-group > li {
107     list-style: none;
108     list-style-position: outside;
109     margin: 0px 0px 5px 15px;
110     background-color: #ffffff;
111     font-family: Arial, Regular;
112     font-size: 17px;
113     color: #323437;
114 }
115
116 .stencil-group > li > span {
117     margin-left: 5px;
118     padding-top:5px;
119     padding-bottom: 5px;
120     display: block;
121     cursor: pointer;
122 }
123
124 .stencil-group > li > span > i {
125     font-size: 12px;    
126     line-height: 17px;
127 }
128 .stencil-group > li > ul {
129     list-style: none;
130     list-style-position: inside;
131     background-color: transparent;
132     margin: 0px;
133     overflow: hidden;
134     padding-left: 20px;
135 }
136
137 .stencil-group.collapsed > li {
138     color: #000000;
139 }
140 .stencil-group.collapsed > li > ul {
141     max-height: 0px;
142     padding-top: 0;
143     padding-bottom: 0;
144 }
145
146 .stencil-group-non-root > li {
147     background-color: #ffffff;
148 }
149
150 .stencil-item {
151     cursor: pointer;
152     padding: 5px;
153 }
154
155 .root-stencil-item {
156     margin: 0 0 0 15px;
157     font-family: Arial, Regular;
158     font-size: 17px;
159 }
160
161 .ui-draggable.stencil-item.stencil-item-dragged {
162     display: block;
163     text-overflow: ellipsis;
164     white-space: nowrap;
165 }
166
167
168 /* Modeling Canvas
169 -------------------------------- */
170 div.canvas-wrapper {
171     overflow: auto;
172     background-color: #F8F8F8;
173 }
174
175 .canvas_resize_indicator i {
176     font-size: 15px;
177     color: #ffffff;
178     cursor: pointer;
179 }
180
181 .canvas_resize_indicator.N, .canvas_resize_indicator.S, .canvas_resize_indicator.E, .canvas_resize_indicator.W {
182     background: #5fbcd3;
183     height: 17px;
184     width: 17px;
185     text-align: center;
186     -webkit-border-radius:3px;
187     -moz-border-radius:3px;
188     border-radius:3px;
189 }
190
191 #canvas-grow-N.canvas_resize_indicator, #canvas-shrink-S.canvas_resize_indicator {
192     margin: 0;
193     top: auto;
194 }
195
196 #canvas-grow-S.canvas_resize_indicator, #canvas-shrink-N.canvas_resize_indicator {
197     margin: 0;
198     bottom: auto;
199 }
200
201 #canvas-grow-E.canvas_resize_indicator, #canvas-shrink-W.canvas_resize_indicator {
202     margin: 0;
203     right: auto;
204 }
205
206 #canvas-grow-W.canvas_resize_indicator, #canvas-shrink-E.canvas_resize_indicator {
207     margin: 0;
208     left: auto;
209 }
210
211 .x-panel-body.x-panel-body-noheader.x-panel-body-noborder, .ORYX_Editor x-panel {
212     background-color: #F8F8F8;
213 }
214
215 .canvas-message {
216     position: absolute;
217     top: 60px;
218     right: 10px;
219     background: transparent;
220     font-size: 10pt;
221 }
222
223
224 div.propertySection {
225     height: 250px;
226     background-color: #e8edf1;
227     margin-bottom: 0px;
228 }
229
230 .selected-item-title {
231     font-size: 25px;
232     font-weight: bold;
233     padding: 8px 0 8px 8px;
234     border-bottom: 1px solid #a4acb9;
235     cursor: pointer;
236 }
237
238 .selected-item-title a {
239     display: block;
240     color: #1a1a1a;
241 }
242
243 .selected-item-title .glyphicon {
244     line-height: 25px;
245     font-size: 14px;
246 }
247
248 .selected-item-title a:hover, .selected-item-title a:focus {
249     color: #1a1a1a;
250     text-decoration: none;
251 }
252
253 .selected-item-section > div > .pull-right {
254     line-height: 50px;
255     margin: 0px 10px;
256     font-size: 14px;
257 }
258
259 .selected-item-body .property-row {
260     float: left;
261     width: 50%;
262     border: 0;
263     margin: 0;
264     padding: 0;
265     font-size: 13px;
266     overflow: hidden;
267 }
268
269 .selected-item-body .property-row:hover {
270     background-color: #d7dfe6;    
271 }
272
273 .selected-item-body {
274     padding: 0;
275     overflow: auto;
276     height: 199px;
277 }
278
279 .selected-item-body > div {
280     overflow: hidden;    
281     margin: 5px 20px;
282 }
283
284 .property-row > span {
285     display: block;
286     float: left;
287     margin: 2px 2%;
288     padding: 0;    
289     min-height: 25px;
290 }
291
292 .property-row span.value {
293     cursor: pointer;
294     width: 46%;
295     padding: 0;
296     margin: 0;
297 }
298
299 .property-row span.value:hover {
300     cursor: pointer;
301 }
302
303 .property-row span.title {
304     font-size: 13px;
305     font-weight: bold;
306     width: 46%;
307 }
308
309 .property-row span.title-removed {
310     font-size: 13px;
311     font-weight: normal;
312     width: 46%;
313 }
314
315 .propertySection.collapsed {
316     max-height: 50px;
317     height: 50px;
318     overflow: hidden;
319 }
320
321 .propertySection.collapsed .selected-item-title {
322     border: none;
323 }
324
325 .property-row input[type="text"] {
326     height: 25px;
327     margin: 2px 0;
328     padding: 0px 5px;
329     width: 100%;
330     outline: none;
331     border:none !important;
332     box-shadow:none !important;
333 }
334
335 .default-grid {
336     border: 1px solid rgb(212,212,212);
337     width: 100%;
338     height: 300px;
339     margin-bottom: 10px;
340 }
341
342 .kis-listener-grid {
343     border: 1px solid rgb(212,212,212);
344     width: 100%;
345     height: 200px;
346     margin-bottom: 10px;
347 }
348
349 .kis-field-grid {
350     border: 1px solid rgb(212,212,212);
351     width: 100%;
352     height: 150px;
353     margin-bottom: 10px;
354 }
355
356 .saving-text {
357     display: table;
358     margin: 0 auto;
359     padding: 20px 0 0px 0;
360 }
361
362
363 .form-property-checkbox {
364     margin:0;
365 }
366
367 /* Oryx overrides
368 -------------------------------- */
369 ul.x-menu-list {
370     list-style: none;
371     list-style-position: inside;
372     width: 200px;
373     background-color: #FFFFFF;
374     border: 1px solid #E1E2E5;
375     -webkit-border-radius:3px;
376     -moz-border-radius:3px;
377     border-radius:3px;
378     padding: 3px;
379 }
380
381 img.x-menu-item-icon  {
382     width: auto;
383     height: auto;
384     margin-right: 5px;
385 }
386
387 li.x-menu-list-item {
388     margin: 3px 0px;
389 }
390
391 li.x-menu-list-item.x-menu-item-active {
392     background-color: #EFEFEF;
393 }
394
395 li.x-menu-list-item a {
396     color: #000000;
397 }
398
399 li.x-menu-list-item.x-menu-item-active a {
400     text-decoration: none;
401 }
402
403 .sequence-flow-order-element {
404     margin: 12px 0 12px 0;
405 }
406
407 /* Editor icon font */
408 .editor-icon {
409     position: relative;
410     top: 1px;
411     display: inline-block;
412     font-family: 'ActivitiModeler';
413     font-style: normal;
414     font-weight: 400;
415     line-height: 1;
416     -webkit-font-smoothing: antialiased;
417     -moz-osx-font-smoothing: grayscale;
418 }
419
420 .editor-icon-save:before {
421     content: 'a';
422 }
423
424 .editor-icon-edit:before {
425     content: 'b';
426 }
427
428 .editor-icon-cut:before {
429     content: 'c';
430 }
431
432 .editor-icon-copy:before {
433     content: 'd';
434 }
435
436 .editor-icon-paste:before {
437     content: 'e';
438 }
439 .editor-icon-delete:before {
440     content: 'f';
441 }
442 .editor-icon-redo:before {
443     content: 'h';
444 }
445 .editor-icon-undo:before {
446     content: 'g';
447 }
448 .editor-icon-same-size:before {
449     content: 'i';
450 }
451 .editor-icon-zoom-in:before {
452     content: 'k';
453 }
454 .editor-icon-zoom-out:before {
455     content: 'l';
456 }
457 .editor-icon-zoom-actual:before {
458     content: 'm';
459 }
460 .editor-icon-zoom-fit:before {
461     content: 'j';
462 }
463 .editor-icon-bendpoint-add:before {
464     content: 'n';
465 }
466 .editor-icon-bendpoint-remove:before {
467     content: 'o';
468 }
469 .editor-icon-align-horizontal:before {
470     content: 'p';
471 }
472 .editor-icon-align-vertical:before {
473     content: 'q';
474 }
475 .editor-icon-close:before {
476     content: "X";
477 }