2025-04-04 12:19:34 +00:00
|
|
|
/*
|
|
|
|
|
* Default Layout Theme
|
|
|
|
|
*
|
|
|
|
|
* Created for jquery.layout
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2010
|
|
|
|
|
* Fabrizio Balliano (http://www.fabrizioballiano.net)
|
|
|
|
|
* Kevin Dalman (http://allpro.net)
|
|
|
|
|
*
|
|
|
|
|
* Dual licensed under the GPL (http://www.gnu.org/licenses/gpl.html)
|
|
|
|
|
* and MIT (http://www.opensource.org/licenses/mit-license.php) licenses.
|
|
|
|
|
*
|
|
|
|
|
* Last Updated: 2010-02-10
|
|
|
|
|
* NOTE: For best code readability, view this with a fixed-space font and tabs equal to 4-chars
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* DEFAULT FONT
|
|
|
|
|
* Just to make demo-pages look better - not actually relevant to Layout!
|
|
|
|
|
*/
|
|
|
|
|
/*body {
|
|
|
|
|
font-family: Geneva, Arial, Helvetica, sans-serif;
|
|
|
|
|
font-size: 100%;
|
|
|
|
|
*font-size: 80%;
|
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* PANES & CONTENT-DIVs
|
|
|
|
|
*/
|
|
|
|
|
.ui-layout-pane { /* all 'panes' */
|
|
|
|
|
background: #FFF;
|
|
|
|
|
border: 1px solid #BBB;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
/* DO NOT add scrolling (or padding) to 'panes' that have a content-div,
|
|
|
|
|
otherwise you may get double-scrollbars - on the pane AND on the content-div
|
|
|
|
|
- use ui-layout-wrapper class if pane has a content-div
|
|
|
|
|
- use ui-layout-container if pane has an inner-layout
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */
|
|
|
|
|
.ui-layout-content {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
position: relative; /* contain floated or positioned elements */
|
|
|
|
|
overflow: auto; /* add scrolling to content-div */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* UTILITY CLASSES
|
|
|
|
|
* Must come AFTER pane-class above so will override
|
|
|
|
|
* These classes are NOT auto-generated and are NOT used by Layout
|
|
|
|
|
*/
|
|
|
|
|
.layout-child-container,
|
|
|
|
|
.layout-content-container {
|
|
|
|
|
padding: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.layout-child-container {
|
|
|
|
|
border: 0; /* remove border because inner-layout-panes probably have borders */
|
|
|
|
|
}
|
|
|
|
|
.layout-scroll {
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
.layout-hide {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* RESIZER-BARS
|
|
|
|
|
*/
|
|
|
|
|
.ui-layout-resizer { /* all 'resizer-bars' */
|
|
|
|
|
background: #DDD;
|
|
|
|
|
border: 1px solid #BBB;
|
|
|
|
|
border-width: 0;
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-resizer-drag { /* REAL resizer while resize in progress */
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-resizer-hover { /* affects both open and closed states */
|
|
|
|
|
}
|
|
|
|
|
/* NOTE: It looks best when 'hover' and 'dragging' are set to the same color,
|
|
|
|
|
otherwise color shifts while dragging when bar can't keep up with mouse */
|
|
|
|
|
.ui-layout-resizer-open-hover , /* hover-color to 'resize' */
|
|
|
|
|
.ui-layout-resizer-dragging { /* resizer beging 'dragging' */
|
|
|
|
|
background: #C4E1A4;
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-resizer-dragging { /* CLONED resizer being dragged */
|
|
|
|
|
border: 1px solid #BBB;
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-resizer-north-dragging,
|
|
|
|
|
.ui-layout-resizer-south-dragging {
|
|
|
|
|
border-width: 1px 0;
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-resizer-west-dragging,
|
|
|
|
|
.ui-layout-resizer-east-dragging {
|
|
|
|
|
border-width: 0 1px;
|
|
|
|
|
}
|
|
|
|
|
/* NOTE: Add a 'dragging-limit' color to provide visual feedback when resizer hits min/max size limits */
|
|
|
|
|
.ui-layout-resizer-dragging-limit { /* CLONED resizer at min or max size-limit */
|
|
|
|
|
background: #E1A4A4; /* red */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-layout-resizer-closed-hover { /* hover-color to 'slide open' */
|
|
|
|
|
background: #EBD5AA;
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-resizer-sliding { /* resizer when pane is 'slid open' */
|
|
|
|
|
opacity: .10; /* show only a slight shadow */
|
|
|
|
|
filter: alpha(opacity=10);
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-resizer-sliding-hover { /* sliding resizer - hover */
|
|
|
|
|
opacity: 1.00; /* on-hover, show the resizer-bar normally */
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
}
|
|
|
|
|
/* sliding resizer - add 'outside-border' to resizer on-hover
|
|
|
|
|
* this sample illustrates how to target specific panes and states */
|
|
|
|
|
.ui-layout-resizer-north-sliding-hover { border-bottom-width: 1px; }
|
|
|
|
|
.ui-layout-resizer-south-sliding-hover { border-top-width: 1px; }
|
|
|
|
|
.ui-layout-resizer-west-sliding-hover { border-right-width: 1px; }
|
|
|
|
|
.ui-layout-resizer-east-sliding-hover { border-left-width: 1px; }
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* TOGGLER-BUTTONS
|
|
|
|
|
*/
|
|
|
|
|
.ui-layout-toggler {
|
|
|
|
|
border: 1px solid #BBB; /* match pane-border */
|
|
|
|
|
background-color: #BBB;
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-resizer-hover .ui-layout-toggler {
|
|
|
|
|
opacity: .60;
|
|
|
|
|
filter: alpha(opacity=60);
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-toggler-hover , /* need when NOT resizable */
|
|
|
|
|
.ui-layout-resizer-hover .ui-layout-toggler-hover { /* need specificity when IS resizable */
|
|
|
|
|
background-color: #FC6;
|
|
|
|
|
opacity: 1.00;
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-toggler-north ,
|
|
|
|
|
.ui-layout-toggler-south {
|
|
|
|
|
border-width: 0 1px; /* left/right borders */
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-toggler-west ,
|
|
|
|
|
.ui-layout-toggler-east {
|
|
|
|
|
border-width: 1px 0; /* top/bottom borders */
|
|
|
|
|
}
|
|
|
|
|
/* hide the toggler-button when the pane is 'slid open' */
|
|
|
|
|
.ui-layout-resizer-sliding .ui-layout-toggler {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
* style the text we put INSIDE the togglers
|
|
|
|
|
*/
|
|
|
|
|
.ui-layout-toggler .content {
|
|
|
|
|
color: #666;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* PANE-MASKS
|
|
|
|
|
* these styles are hard-coded on mask elems, but are also
|
|
|
|
|
* included here as !important to ensure will overrides any generic styles
|
|
|
|
|
*/
|
|
|
|
|
.ui-layout-mask {
|
|
|
|
|
border: none !important;
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
overflow: hidden !important;
|
|
|
|
|
position: absolute !important;
|
|
|
|
|
opacity: 0 !important;
|
|
|
|
|
filter: Alpha(Opacity="0") !important;
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-mask-inside-pane { /* masks always inside pane EXCEPT when pane is an iframe */
|
|
|
|
|
top: 0 !important;
|
|
|
|
|
left: 0 !important;
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
height: 100% !important;
|
|
|
|
|
}
|
|
|
|
|
div.ui-layout-mask {} /* standard mask for iframes */
|
|
|
|
|
iframe.ui-layout-mask {} /* extra mask for objects/applets */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Default printing styles
|
|
|
|
|
*/
|
|
|
|
|
@media print {
|
|
|
|
|
/*
|
|
|
|
|
* Unless you want to print the layout as it appears onscreen,
|
|
|
|
|
* these html/body styles are needed to allow the content to 'flow'
|
|
|
|
|
*/
|
|
|
|
|
html {
|
|
|
|
|
height: auto !important;
|
|
|
|
|
overflow: visible !important;
|
|
|
|
|
}
|
|
|
|
|
body.ui-layout-container {
|
|
|
|
|
position: static !important;
|
|
|
|
|
top: auto !important;
|
|
|
|
|
bottom: auto !important;
|
|
|
|
|
left: auto !important;
|
|
|
|
|
right: auto !important;
|
|
|
|
|
/* only IE6 has container width & height set by Layout */
|
|
|
|
|
_width: auto !important;
|
|
|
|
|
_height: auto !important;
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-resizer, .ui-layout-toggler {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
* Default pane print styles disables positioning, borders and backgrounds.
|
|
|
|
|
* You can modify these styles however it suit your needs.
|
|
|
|
|
*/
|
|
|
|
|
.ui-layout-pane {
|
|
|
|
|
border: none !important;
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
position: relative !important;
|
|
|
|
|
top: auto !important;
|
|
|
|
|
bottom: auto !important;
|
|
|
|
|
left: auto !important;
|
|
|
|
|
right: auto !important;
|
|
|
|
|
width: auto !important;
|
|
|
|
|
height: auto !important;
|
|
|
|
|
overflow: visible !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-04-06 22:54:52 +00:00
|
|
|
/*! jQuery UI - v1.13.0 - 2021-10-07
|
2025-04-04 12:19:34 +00:00
|
|
|
* http://jqueryui.com
|
2025-04-06 22:54:52 +00:00
|
|
|
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
|
|
|
|
|
* To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
|
|
|
|
|
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
2025-04-04 12:19:34 +00:00
|
|
|
|
2025-04-06 22:54:52 +00:00
|
|
|
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup > .ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup > .ui-controlgroup-item:focus,.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical > .ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:
|
2025-04-04 12:19:34 +00:00
|
|
|
.introjs-overlay {
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 999999;
|
|
|
|
|
background-color: #000;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
background: -moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
|
|
|
|
|
background: -webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.4)),color-stop(100%,rgba(0,0,0,0.9)));
|
|
|
|
|
background: -webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
|
|
|
|
|
background: -o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
|
|
|
|
|
background: -ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
|
|
|
|
|
background: radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
|
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000',endColorstr='#e6000000',GradientType=1);
|
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
|
|
|
|
filter: alpha(opacity=50);
|
|
|
|
|
-webkit-transition: all 0.3s ease-out;
|
|
|
|
|
-moz-transition: all 0.3s ease-out;
|
|
|
|
|
-ms-transition: all 0.3s ease-out;
|
|
|
|
|
-o-transition: all 0.3s ease-out;
|
|
|
|
|
transition: all 0.3s ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-fixParent {
|
|
|
|
|
z-index: auto !important;
|
|
|
|
|
opacity: 1.0 !important;
|
|
|
|
|
position: absolute !important;
|
|
|
|
|
-webkit-transform: none !important;
|
|
|
|
|
-moz-transform: none !important;
|
|
|
|
|
-ms-transform: none !important;
|
|
|
|
|
-o-transform: none !important;
|
|
|
|
|
transform: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-showElement,
|
|
|
|
|
tr.introjs-showElement > td,
|
|
|
|
|
tr.introjs-showElement > th {
|
|
|
|
|
z-index: 9999999 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-disableInteraction {
|
|
|
|
|
z-index: 99999999 !important;
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-relativePosition,
|
|
|
|
|
tr.introjs-showElement > td,
|
|
|
|
|
tr.introjs-showElement > th {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-helperLayer {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 9999998;
|
|
|
|
|
background-color: #FFF;
|
|
|
|
|
background-color: rgba(255,255,255,.9);
|
|
|
|
|
border: 1px solid #777;
|
|
|
|
|
border: 1px solid rgba(0,0,0,.5);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
box-shadow: 0 2px 15px rgba(0,0,0,.4);
|
|
|
|
|
-webkit-transition: all 0.3s ease-out;
|
|
|
|
|
-moz-transition: all 0.3s ease-out;
|
|
|
|
|
-ms-transition: all 0.3s ease-out;
|
|
|
|
|
-o-transition: all 0.3s ease-out;
|
|
|
|
|
transition: all 0.3s ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-tooltipReferenceLayer {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 10000000;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
-webkit-transition: all 0.3s ease-out;
|
|
|
|
|
-moz-transition: all 0.3s ease-out;
|
|
|
|
|
-ms-transition: all 0.3s ease-out;
|
|
|
|
|
-o-transition: all 0.3s ease-out;
|
|
|
|
|
transition: all 0.3s ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-helperLayer *,
|
|
|
|
|
.introjs-helperLayer *:before,
|
|
|
|
|
.introjs-helperLayer *:after {
|
|
|
|
|
-webkit-box-sizing: content-box;
|
|
|
|
|
-moz-box-sizing: content-box;
|
|
|
|
|
-ms-box-sizing: content-box;
|
|
|
|
|
-o-box-sizing: content-box;
|
|
|
|
|
box-sizing: content-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-helperNumberLayer {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 5px;
|
|
|
|
|
/*left: -16px;*/
|
|
|
|
|
left: 50%;
|
|
|
|
|
z-index: 9999999999 !important;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
font-family: Arial, verdana, tahoma;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: white;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-shadow: 1px 1px 1px rgba(0,0,0,.3);
|
|
|
|
|
background: #ff3019; /* Old browsers */
|
|
|
|
|
background: -webkit-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Chrome10+,Safari5.1+ */
|
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff3019), color-stop(100%, #cf0404)); /* Chrome,Safari4+ */
|
|
|
|
|
background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6+ */
|
|
|
|
|
background: -ms-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* IE10+ */
|
|
|
|
|
background: -o-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Opera 11.10+ */
|
|
|
|
|
background: linear-gradient(to bottom, #ff3019 0%, #cf0404 100%); /* W3C */
|
|
|
|
|
width: 20px;
|
|
|
|
|
height:20px;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
border: 3px solid white;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3019', endColorstr='#cf0404', GradientType=0); /* IE6-9 */
|
|
|
|
|
filter: progid:DXImageTransform.Microsoft.Shadow(direction=135, strength=2, color=ff0000); /* IE10 text shadows */
|
|
|
|
|
box-shadow: 0 2px 5px rgba(0,0,0,.4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-arrow {
|
|
|
|
|
border: 5px solid white;
|
|
|
|
|
content:'';
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
.introjs-arrow.top {
|
|
|
|
|
top: -10px;
|
|
|
|
|
border-top-color:transparent;
|
|
|
|
|
border-right-color:transparent;
|
|
|
|
|
border-bottom-color:white;
|
|
|
|
|
border-left-color:transparent;
|
|
|
|
|
}
|
|
|
|
|
.introjs-arrow.top-right {
|
|
|
|
|
top: -10px;
|
|
|
|
|
right: 10px;
|
|
|
|
|
border-top-color:transparent;
|
|
|
|
|
border-right-color:transparent;
|
|
|
|
|
border-bottom-color:white;
|
|
|
|
|
border-left-color:transparent;
|
|
|
|
|
}
|
|
|
|
|
.introjs-arrow.top-middle {
|
|
|
|
|
top: -10px;
|
|
|
|
|
left: 50%;
|
|
|
|
|
margin-left: -5px;
|
|
|
|
|
border-top-color:transparent;
|
|
|
|
|
border-right-color:transparent;
|
|
|
|
|
border-bottom-color:white;
|
|
|
|
|
border-left-color:transparent;
|
|
|
|
|
}
|
|
|
|
|
.introjs-arrow.right {
|
|
|
|
|
right: -10px;
|
|
|
|
|
top: 10px;
|
|
|
|
|
border-top-color:transparent;
|
|
|
|
|
border-right-color:transparent;
|
|
|
|
|
border-bottom-color:transparent;
|
|
|
|
|
border-left-color:white;
|
|
|
|
|
}
|
|
|
|
|
.introjs-arrow.right-bottom {
|
|
|
|
|
bottom:10px;
|
|
|
|
|
right: -10px;
|
|
|
|
|
border-top-color:transparent;
|
|
|
|
|
border-right-color:transparent;
|
|
|
|
|
border-bottom-color:transparent;
|
|
|
|
|
border-left-color:white;
|
|
|
|
|
}
|
|
|
|
|
.introjs-arrow.bottom {
|
|
|
|
|
bottom: -10px;
|
|
|
|
|
border-top-color:white;
|
|
|
|
|
border-right-color:transparent;
|
|
|
|
|
border-bottom-color:transparent;
|
|
|
|
|
border-left-color:transparent;
|
|
|
|
|
}
|
|
|
|
|
.introjs-arrow.left {
|
|
|
|
|
left: -10px;
|
|
|
|
|
top: 10px;
|
|
|
|
|
border-top-color:transparent;
|
|
|
|
|
border-right-color:white;
|
|
|
|
|
border-bottom-color:transparent;
|
|
|
|
|
border-left-color:transparent;
|
|
|
|
|
}
|
|
|
|
|
.introjs-arrow.left-bottom {
|
|
|
|
|
left: -10px;
|
|
|
|
|
bottom:10px;
|
|
|
|
|
border-top-color:transparent;
|
|
|
|
|
border-right-color:white;
|
|
|
|
|
border-bottom-color:transparent;
|
|
|
|
|
border-left-color:transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-tooltip {
|
|
|
|
|
position: absolute;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
background-color: white;
|
|
|
|
|
min-width: 200px;
|
|
|
|
|
max-width: 600px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
box-shadow: 0 1px 10px rgba(0,0,0,.4);
|
|
|
|
|
-webkit-transition: opacity 0.1s ease-out;
|
|
|
|
|
-moz-transition: opacity 0.1s ease-out;
|
|
|
|
|
-ms-transition: opacity 0.1s ease-out;
|
|
|
|
|
-o-transition: opacity 0.1s ease-out;
|
|
|
|
|
transition: opacity 0.1s ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-tooltipbuttons {
|
|
|
|
|
text-align: right;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
|
|
|
|
|
Changed by Afshin Mehrabani
|
|
|
|
|
*/
|
|
|
|
|
.introjs-button {
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0.3em 0.8em;
|
|
|
|
|
border: 1px solid #d4d4d4;
|
|
|
|
|
margin: 0;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-shadow: 1px 1px 0 #fff;
|
|
|
|
|
font: 11px/normal sans-serif;
|
|
|
|
|
color: #333;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
outline: none;
|
|
|
|
|
background-color: #ececec;
|
|
|
|
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
|
|
|
|
|
background-image: -moz-linear-gradient(#f4f4f4, #ececec);
|
|
|
|
|
background-image: -o-linear-gradient(#f4f4f4, #ececec);
|
|
|
|
|
background-image: linear-gradient(#f4f4f4, #ececec);
|
|
|
|
|
-webkit-background-clip: padding;
|
|
|
|
|
-moz-background-clip: padding;
|
|
|
|
|
-o-background-clip: padding-box;
|
|
|
|
|
/*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
|
|
|
|
|
-webkit-border-radius: 0.2em;
|
|
|
|
|
-moz-border-radius: 0.2em;
|
|
|
|
|
border-radius: 0.2em;
|
|
|
|
|
/* IE hacks */
|
|
|
|
|
zoom: 1;
|
|
|
|
|
*display: inline;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-button:hover {
|
|
|
|
|
border-color: #bcbcbc;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
box-shadow: 0px 1px 1px #e3e3e3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-button:focus,
|
|
|
|
|
.introjs-button:active {
|
|
|
|
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ececec), to(#f4f4f4));
|
|
|
|
|
background-image: -moz-linear-gradient(#ececec, #f4f4f4);
|
|
|
|
|
background-image: -o-linear-gradient(#ececec, #f4f4f4);
|
|
|
|
|
background-image: linear-gradient(#ececec, #f4f4f4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* overrides extra padding on button elements in Firefox */
|
|
|
|
|
.introjs-button::-moz-focus-inner {
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-skipbutton {
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
color: #7a7a7a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-prevbutton {
|
|
|
|
|
-webkit-border-radius: 0.2em 0 0 0.2em;
|
|
|
|
|
-moz-border-radius: 0.2em 0 0 0.2em;
|
|
|
|
|
border-radius: 0.2em 0 0 0.2em;
|
|
|
|
|
border-right: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-nextbutton {
|
|
|
|
|
-webkit-border-radius: 0 0.2em 0.2em 0;
|
|
|
|
|
-moz-border-radius: 0 0.2em 0.2em 0;
|
|
|
|
|
border-radius: 0 0.2em 0.2em 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
|
|
|
|
|
color: #9a9a9a;
|
|
|
|
|
border-color: #d4d4d4;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
cursor: default;
|
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
|
background-image: none;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-bullets {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.introjs-bullets ul {
|
|
|
|
|
clear: both;
|
|
|
|
|
margin: 15px auto 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
.introjs-bullets ul li {
|
|
|
|
|
list-style: none;
|
|
|
|
|
float: left;
|
|
|
|
|
margin: 0 2px;
|
|
|
|
|
}
|
|
|
|
|
.introjs-bullets ul li a {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
background: #ccc;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
-moz-border-radius: 10px;
|
|
|
|
|
-webkit-border-radius: 10px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
.introjs-bullets ul li a:hover {
|
|
|
|
|
background: #999;
|
|
|
|
|
}
|
|
|
|
|
.introjs-bullets ul li a.active {
|
|
|
|
|
background: #999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjs-progress {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
height: 10px;
|
|
|
|
|
margin: 10px 0 5px 0;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background-color: #ecf0f1
|
|
|
|
|
}
|
|
|
|
|
.introjs-progressbar {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 0%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
line-height: 10px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background-color: #08c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.introjsFloatingElement {
|
|
|
|
|
position: absolute;
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
left: 50%;
|
|
|
|
|
top: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{cursor:pointer;*cursor:hand}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../img/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../img/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../img/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../img/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../img/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#fff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#abb9d3}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f5f5f5}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#a9b7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#f9f9f9}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad4}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:#f5f5f5}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b3cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a7b5ce}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.
|
|
|
|
|
|
|
|
|
|
.pmui-pmlabelfield .pmui-textlabel {
|
|
|
|
|
background: #aaaaaa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
.pmui-gridpanel {
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
}*/
|
|
|
|
|
.pmui-gridpanel-pager .list-item-ajax a {
|
|
|
|
|
position: relative;
|
|
|
|
|
float: left;
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
line-height: 1.42857143;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: #428bca;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
margin: 0 0 0 -1px;
|
|
|
|
|
min-width: inherit;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-gridpanel-pager .list-item-ajax {
|
|
|
|
|
margin: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-gridpanel-gotoPage {
|
|
|
|
|
padding: 6px 14px 6px 14px;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
background-color: #f7f7f7;
|
|
|
|
|
text-align: left;
|
|
|
|
|
color: #555;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-gridpanel-pager .list-item-ajax a:hover {
|
|
|
|
|
color: #2a6496;
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
border-color: #ddd;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*@import "base";
|
|
|
|
|
|
|
|
|
|
.pmui-pmform {
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.pmui-background {
|
|
|
|
|
background-color: $PMUI-FORM-BACKGROUND;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-window-footer {
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
padding-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-window-footer > button-solid {
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.pmui-window-footer > a.button-solid {
|
|
|
|
|
margin-left: 7px;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
background: $MAFE-FORM-BUTTONS-BACKGROUND;
|
|
|
|
|
padding: 6px 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.pmui-form-footer > a.button-solid {
|
|
|
|
|
margin-left: 7px;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
background: $MAFE-FORM-BUTTONS-BACKGROUND;
|
|
|
|
|
padding: 6px 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-buttonpanel {
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
font-family: 'SourceSansProRegular', Arial, Tahoma, Verdana;
|
|
|
|
|
background: #fff;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*IE9*/
|
|
|
|
|
/**::selection*/
|
|
|
|
|
/*.content_control::selection
|
|
|
|
|
{
|
|
|
|
|
background-color:transparent;
|
|
|
|
|
}
|
|
|
|
|
.content_control::-moz-selection
|
|
|
|
|
{
|
|
|
|
|
background-color:transparent;
|
|
|
|
|
}*/
|
|
|
|
|
* {
|
|
|
|
|
/*You just need this if you are only concerned with android and not desktop browsers.*/
|
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* BPMN */
|
|
|
|
|
#p-center-layout {
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-moz-user-select: -moz-none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Canvas
|
|
|
|
|
*/
|
|
|
|
|
.pmui-pmcanvas {
|
|
|
|
|
background-image: url(../img/bg_designer.gif);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ToolbarPanel
|
|
|
|
|
*/
|
|
|
|
|
.mafe-toolbarpanel-btn {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
list-style: none;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbarpanel-btn-span {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbarpanel-btn-img {
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbarpanel-tooltip {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
-webkit-box-shadow: 0 0 5px #aaa;
|
|
|
|
|
-moz-box-shadow: 0 0 5px #aaa;
|
|
|
|
|
box-shadow: 0 0 5px #aaa;
|
|
|
|
|
background-color: #6D87B7;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-email {
|
|
|
|
|
background: url(../img/email.png) no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* For buttons that are on the north from the Layout
|
|
|
|
|
*/
|
|
|
|
|
.ui-layout-north a {
|
|
|
|
|
margin-left: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Shapes
|
|
|
|
|
*/
|
|
|
|
|
.mafe-shape-sprite {
|
|
|
|
|
background: url("../img/mafe_sprite.png") no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[class^="mafe-activity-task-"],
|
|
|
|
|
[class*=" mafe-activity-task-"],
|
|
|
|
|
[class^="mafe-event-"],
|
|
|
|
|
[class*=" mafe-event-"],
|
|
|
|
|
[class^="mafe-gateway-"],
|
|
|
|
|
[class*=" mafe-gateway-"],
|
|
|
|
|
[class^="PM-decorator_"],
|
|
|
|
|
[class*=" PM-decorator_"],
|
|
|
|
|
[class^="mafe-usertask-marker-"],
|
|
|
|
|
[class*=" mafe-usertask-marker-"],
|
|
|
|
|
[class^="mafe-sendtask-marker-"],
|
|
|
|
|
[class*=" mafe-sendtask-marker-"],
|
|
|
|
|
[class^="mafe-receivetask-marker-"],
|
|
|
|
|
[class*=" mafe-receivetask-marker-"],
|
|
|
|
|
[class^="mafe-usertask-marker-"],
|
|
|
|
|
[class*=" mafe-usertask-marker-"],
|
|
|
|
|
[class^="mafe-servicetask-marker-"],
|
|
|
|
|
[class*=" mafe-servicetask-marker-"],
|
|
|
|
|
[class^="mafe-scripttask-marker-"],
|
|
|
|
|
[class*=" mafe-scripttask-marker-"],
|
|
|
|
|
[class^="mafe-manualtask-marker-"],
|
|
|
|
|
[class*=" mafe-manualtask-marker-"],
|
|
|
|
|
[class^="mafe-businessrule-marker-"],
|
|
|
|
|
[class*=" mafe-businessrule-marker-"],
|
|
|
|
|
[class^="mafe-collapsed-marker-"],
|
|
|
|
|
[class*="mafe-parallel-marker-"],
|
|
|
|
|
[class*="mafe-sequential-marker-"],
|
|
|
|
|
[class*="mafe-loop-marker-"],
|
|
|
|
|
[class*="mafe-style-error-marker-"],
|
|
|
|
|
[class^="mafe-data"],
|
|
|
|
|
[class*=" mafe-data"],
|
|
|
|
|
[class^="mafe-message"],
|
|
|
|
|
[class*=" mafe-message"],
|
|
|
|
|
[class^="mafe-sequence"],
|
|
|
|
|
[class*=" mafe-sequence"],
|
|
|
|
|
[class^="mafe-association"],
|
|
|
|
|
[class*=" mafe-association"],
|
|
|
|
|
[class^="mafe-default"],
|
|
|
|
|
[class*=" mafe-default"] {
|
|
|
|
|
background-image: url("../img/mafe_sprite.png");
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: -565px -510px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-activity-task-red {
|
|
|
|
|
background-color: #BD0A17;
|
|
|
|
|
border: 1px solid #72020C;
|
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
|
-ms-border-radius: 3px;
|
|
|
|
|
-o-border-radius: 3px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-activity-task-green {
|
|
|
|
|
background-color: #1B7909;
|
|
|
|
|
border: 1px solid #0F5502;
|
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
|
-ms-border-radius: 3px;
|
|
|
|
|
-o-border-radius: 3px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-activity-task-orange {
|
|
|
|
|
background-color: #C57701;
|
|
|
|
|
border: 1px solid #965B02;
|
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
|
-ms-border-radius: 3px;
|
|
|
|
|
-o-border-radius: 3px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-activity-task-silver {
|
|
|
|
|
background-color: #AAA8A6;
|
|
|
|
|
border: 1px solid #6F6D6C;
|
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
|
-ms-border-radius: 3px;
|
|
|
|
|
-o-border-radius: 3px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-artifact-group {
|
|
|
|
|
border: 1px dashed #995E06;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-artifact-annotation {
|
|
|
|
|
/*background-color: #fbf1ce;*/
|
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
|
-ms-border-radius: 3px;
|
|
|
|
|
-o-border-radius: 3px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-artifact-annotation-close {
|
|
|
|
|
float: right;
|
|
|
|
|
background: url("../img/delete.png") no-repeat center;
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-layer-line-vertical {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border-left-width: 1px;
|
|
|
|
|
border-left-style: solid;
|
|
|
|
|
border-left-color: red;
|
|
|
|
|
border-top-width: 0px;
|
|
|
|
|
border-top-style: solid;
|
|
|
|
|
border-top-color: red;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-layer-line-horizontal {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border-left-width: 0px;
|
|
|
|
|
border-left-style: solid;
|
|
|
|
|
border-left-color: red;
|
|
|
|
|
border-top-width: 1px;
|
|
|
|
|
border-top-style: solid;
|
|
|
|
|
border-top-color: red;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-participant {
|
|
|
|
|
background-color: white;
|
|
|
|
|
border: 2px solid #3b4753;
|
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
|
-ms-border-radius: 3px;
|
|
|
|
|
-o-border-radius: 3px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
/*-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);*/
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-pool {
|
|
|
|
|
border: 2px solid #3b4753;
|
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
|
-ms-border-radius: 3px;
|
|
|
|
|
-o-border-radius: 3px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
/*-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);*/
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
background-color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*mafe sprite*/
|
|
|
|
|
.mafe-association_100_target_bottom {
|
|
|
|
|
background-position: 0 -9162px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_100_target_left {
|
|
|
|
|
background-position: 0 -9184px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_100_target_right {
|
|
|
|
|
background-position: 0 -9251px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_100_target_top {
|
|
|
|
|
background-position: 0 -9173px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_125_target_bottom {
|
|
|
|
|
background-position: 0 -9048px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_125_target_left {
|
|
|
|
|
background-position: 0 -9136px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_125_target_right {
|
|
|
|
|
background-position: 0 -9149px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_125_target_top {
|
|
|
|
|
background-position: 0 -9093px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_150_target_bottom {
|
|
|
|
|
background-position: 0 -8993px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_150_target_left {
|
|
|
|
|
background-position: 0 -11416px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_150_target_right {
|
|
|
|
|
background-position: 0 -9106px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_150_target_top {
|
|
|
|
|
background-position: 0 -9018px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_50_target_bottom {
|
|
|
|
|
background-position: 0 -9791px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_50_target_left {
|
|
|
|
|
background-position: 0 -9797px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_50_target_right {
|
|
|
|
|
background-position: 0 -9893px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_50_target_top {
|
|
|
|
|
background-position: 0 -9824px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_75_target_bottom {
|
|
|
|
|
background-position: 0 -9506px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_75_target_left {
|
|
|
|
|
background-position: 0 -9525px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_75_target_right {
|
|
|
|
|
background-position: 0 -9569px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-association_75_target_top {
|
|
|
|
|
background-position: 0 -9533px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-businessrule-marker-10 {
|
|
|
|
|
background-position: 0 -11431px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-businessrule-marker-15 {
|
|
|
|
|
background-position: 0 -11360px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-businessrule-marker-21 {
|
|
|
|
|
background-position: 0 -11225px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-businessrule-marker-26 {
|
|
|
|
|
background-position: 0 -11334px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-businessrule-marker-31 {
|
|
|
|
|
background-position: 0 -11441px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-collapsed-marker-10 {
|
|
|
|
|
background-position: 0 -9008px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-collapsed-marker-15 {
|
|
|
|
|
background-position: 0 -8518px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-collapsed-marker-21 {
|
|
|
|
|
background-position: 0 -8357px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-collapsed-marker-26 {
|
|
|
|
|
background-position: 0 -8378px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-collapsed-marker-31 {
|
|
|
|
|
background-position: 0 -8947px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-datainput-marker-10 {
|
|
|
|
|
background-position: 0 -9322px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-datainput-marker-15 {
|
|
|
|
|
background-position: 0 -8978px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-datainput-marker-21 {
|
|
|
|
|
background-position: 0 -8616px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-datainput-marker-26 {
|
|
|
|
|
background-position: 0 -8548px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-datainput-marker-31 {
|
|
|
|
|
background-position: 0 -11179px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-dataobject-100 {
|
|
|
|
|
background-position: 0 -8010px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-dataobject-125 {
|
|
|
|
|
background-position: 0 -7886px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-dataobject-150 {
|
|
|
|
|
background-position: 0 -11000px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-dataobject-50 {
|
|
|
|
|
background-position: 0 -8650px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-dataobject-75 {
|
|
|
|
|
background-position: 0 -8242px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-dataoutput-marker-10 {
|
|
|
|
|
background-position: 0 -9433px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-dataoutput-marker-15 {
|
|
|
|
|
background-position: 0 -9033px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-dataoutput-marker-21 {
|
|
|
|
|
background-position: 0 -8906px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-dataoutput-marker-26 {
|
|
|
|
|
background-position: 0 -8870px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-dataoutput-marker-31 {
|
|
|
|
|
background-position: 0 -11385px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-datastore-20 {
|
|
|
|
|
background-position: 0 -7643px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-datastore-30 {
|
|
|
|
|
background-position: 0 -5709px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-datastore-41 {
|
|
|
|
|
background-position: 0 -3780px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-datastore-51 {
|
|
|
|
|
background-position: 0 -1972px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-datastore-61 {
|
|
|
|
|
background-position: 0 -4076px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_100_source_bottom {
|
|
|
|
|
background-position: 0 -9577px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_100_source_left {
|
|
|
|
|
background-position: 0 -9605px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_100_source_right {
|
|
|
|
|
background-position: 0 -9588px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_100_source_top {
|
|
|
|
|
background-position: 0 -9558px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_125_source_bottom {
|
|
|
|
|
background-position: 0 -9443px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_125_source_left {
|
|
|
|
|
background-position: 0 -9480px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_125_source_right {
|
|
|
|
|
background-position: 0 -9493px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_125_source_top {
|
|
|
|
|
background-position: 0 -9456px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_150_source_bottom {
|
|
|
|
|
background-position: 0 -9262px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_150_source_left {
|
|
|
|
|
background-position: 0 -9061px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_150_source_right {
|
|
|
|
|
background-position: 0 -9077px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_150_source_top {
|
|
|
|
|
background-position: 0 -9347px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_50_source_bottom {
|
|
|
|
|
background-position: 0 -9984px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_50_source_left {
|
|
|
|
|
background-position: 0 -9974px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_50_source_right {
|
|
|
|
|
background-position: 0 -9963px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_50_source_top {
|
|
|
|
|
background-position: 0 -9979px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_75_source_bottom {
|
|
|
|
|
background-position: 0 -9877px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_75_source_left {
|
|
|
|
|
background-position: 0 -9922px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_75_source_right {
|
|
|
|
|
background-position: 0 -9899px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-default_75_source_top {
|
|
|
|
|
background-position: 0 -9885px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-compensationthrow-16 {
|
|
|
|
|
background-position: 0 -7394px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-compensationthrow-24 {
|
|
|
|
|
background-position: 0 -5883px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-compensationthrow-33 {
|
|
|
|
|
background-position: 0 -3335px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-compensationthrow-41 {
|
|
|
|
|
background-position: 0 -1080px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-compensationthrow-49 {
|
|
|
|
|
background-position: 0 -198px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-conditional-16 {
|
|
|
|
|
background-position: 0 -8083px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-conditional-24 {
|
|
|
|
|
background-position: 0 -6889px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-conditional-33 {
|
|
|
|
|
background-position: 0 -5277px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-conditional-41 {
|
|
|
|
|
background-position: 0 -4137px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-conditional-49 {
|
|
|
|
|
background-position: 0 -3401px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-empty-16 {
|
|
|
|
|
background-position: 0 -7963px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-empty-24 {
|
|
|
|
|
background-position: 0 -6680px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-empty-33 {
|
|
|
|
|
background-position: 0 -4610px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-empty-41 {
|
|
|
|
|
background-position: 0 -2426px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-empty-49 {
|
|
|
|
|
background-position: 0 -1031px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-errorcatch-1 {
|
|
|
|
|
background-position: 0 -11375px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-errorcatch-16 {
|
|
|
|
|
background-position: 0 -10867px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-errorcatch-2 {
|
|
|
|
|
background-position: 0 -11061px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-errorcatch-24 {
|
|
|
|
|
background-position: 0 -10426px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-errorcatch-3 {
|
|
|
|
|
background-position: 0 -10664px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-errorcatch-33 {
|
|
|
|
|
background-position: 0 -9203px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-errorcatch-4 {
|
|
|
|
|
background-position: 0 -10328px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-errorcatch-41 {
|
|
|
|
|
background-position: 0 -7458px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-errorcatch-49 {
|
|
|
|
|
background-position: 0 -5931px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-errorcatch-5 {
|
|
|
|
|
background-position: 0 -10798px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-linkcatch-16 {
|
|
|
|
|
background-position: 0 -7555px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-linkcatch-24 {
|
|
|
|
|
background-position: 0 -5980px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-linkcatch-33 {
|
|
|
|
|
background-position: 0 -3673px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-linkcatch-41 {
|
|
|
|
|
background-position: 0 -1387px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-linkcatch-49 {
|
|
|
|
|
background-position: 0 -357px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-linkthrow-16 {
|
|
|
|
|
background-position: 0 -7499px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-linkthrow-24 {
|
|
|
|
|
background-position: 0 -6028px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-linkthrow-33 {
|
|
|
|
|
background-position: 0 -3887px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-linkthrow-41 {
|
|
|
|
|
background-position: 0 -1651px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-linkthrow-49 {
|
|
|
|
|
background-position: 0 -702px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagecatch-16 {
|
|
|
|
|
background-position: 0 -7742px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagecatch-24 {
|
|
|
|
|
background-position: 0 -6165px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagecatch-33 {
|
|
|
|
|
background-position: 0 -3994px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagecatch-41 {
|
|
|
|
|
background-position: 0 -2072px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagecatch-49 {
|
|
|
|
|
background-position: 0 -849px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagecatch-enabled-16 {
|
|
|
|
|
background-position: 0 -11246px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagecatch-enabled-24 {
|
|
|
|
|
background-position: 0 -10819px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagecatch-enabled-33 {
|
|
|
|
|
background-position: 0 -10565px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagecatch-enabled-41 {
|
|
|
|
|
background-position: 0 -10235px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagecatch-enabled-49 {
|
|
|
|
|
background-position: 0 -9616px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagethrow-16 {
|
|
|
|
|
background-position: 0 -11318px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagethrow-24 {
|
|
|
|
|
background-position: 0 -10940px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagethrow-33 {
|
|
|
|
|
background-position: 0 -10631px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagethrow-41 {
|
|
|
|
|
background-position: 0 -10359px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-messagethrow-49 {
|
|
|
|
|
background-position: 0 -10145px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-multiplecatch-16 {
|
|
|
|
|
background-position: 0 -7426px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-multiplecatch-24 {
|
|
|
|
|
background-position: 0 -5835px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-multiplecatch-33 {
|
|
|
|
|
background-position: 0 -3014px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-multiplecatch-41 {
|
|
|
|
|
background-position: 0 -949px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-multiplecatch-49 {
|
|
|
|
|
background-position: 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-multiplethrow-16 {
|
|
|
|
|
background-position: 0 -7258px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-multiplethrow-24 {
|
|
|
|
|
background-position: 0 -5739px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-multiplethrow-33 {
|
|
|
|
|
background-position: 0 -3269px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-multiplethrow-41 {
|
|
|
|
|
background-position: 0 -1305px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-multiplethrow-49 {
|
|
|
|
|
background-position: 0 -604px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-parallelcatch-16 {
|
|
|
|
|
background-position: 0 -7338px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-parallelcatch-24 {
|
|
|
|
|
background-position: 0 -5787px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-parallelcatch-33 {
|
|
|
|
|
background-position: 0 -3047px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-parallelcatch-41 {
|
|
|
|
|
background-position: 0 -1223px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-parallelcatch-49 {
|
|
|
|
|
background-position: 0 -455px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-signalcatch-16 {
|
|
|
|
|
background-position: 0 -7587px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-signalcatch-24 {
|
|
|
|
|
background-position: 0 -6100px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-signalcatch-33 {
|
|
|
|
|
background-position: 0 -3821px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-signalcatch-41 {
|
|
|
|
|
background-position: 0 -1428px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-signalcatch-49 {
|
|
|
|
|
background-position: 0 -98px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-signalthrow-16 {
|
|
|
|
|
background-position: 0 -7603px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-signalthrow-24 {
|
|
|
|
|
background-position: 0 -6076px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-signalthrow-33 {
|
|
|
|
|
background-position: 0 -3854px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-signalthrow-41 {
|
|
|
|
|
background-position: 0 -1559px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-signalthrow-49 {
|
|
|
|
|
background-position: 0 -800px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-timer-16 {
|
|
|
|
|
background-position: 0 -7854px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-timer-24 {
|
|
|
|
|
background-position: 0 -6369px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-timer-33 {
|
|
|
|
|
background-position: 0 -4372px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-timer-41 {
|
|
|
|
|
background-position: 0 -2344px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-boundary-timer-49 {
|
|
|
|
|
background-position: 0 -1733px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-cancelthrow-16 {
|
|
|
|
|
background-position: 0 -7726px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-cancelthrow-24 {
|
|
|
|
|
background-position: 0 -6503px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-cancelthrow-33 {
|
|
|
|
|
background-position: 0 -4528px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-cancelthrow-41 {
|
|
|
|
|
background-position: 0 -2508px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-cancelthrow-49 {
|
|
|
|
|
background-position: 0 -1872px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-compensationthrow-16 {
|
|
|
|
|
background-position: 0 -7758px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-compensationthrow-24 {
|
|
|
|
|
background-position: 0 -6575px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-compensationthrow-33 {
|
|
|
|
|
background-position: 0 -4899px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-compensationthrow-41 {
|
|
|
|
|
background-position: 0 -3146px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-compensationthrow-49 {
|
|
|
|
|
background-position: 0 -2254px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-email-16 {
|
|
|
|
|
background-position: 0 -8288px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-email-24 {
|
|
|
|
|
background-position: 0 -7290px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-email-33 {
|
|
|
|
|
background-position: 0 -6823px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-email-41 {
|
|
|
|
|
background-position: 0 -6230px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-email-49 {
|
|
|
|
|
background-position: 0 -5458px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-empty-16 {
|
|
|
|
|
background-position: 0 -8481px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-empty-24 {
|
|
|
|
|
background-position: 0 -7515px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-empty-33 {
|
|
|
|
|
background-position: 0 -6704px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-empty-41 {
|
|
|
|
|
background-position: 0 -5589px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-empty-49 {
|
|
|
|
|
background-position: 0 -4479px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-errorthrow-16 {
|
|
|
|
|
background-position: 0 -8168px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-errorthrow-24 {
|
|
|
|
|
background-position: 0 -7186px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-errorthrow-33 {
|
|
|
|
|
background-position: 0 -6312px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-errorthrow-41 {
|
|
|
|
|
background-position: 0 -5195px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-errorthrow-49 {
|
|
|
|
|
background-position: 0 -4561px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-messagethrow-16 {
|
|
|
|
|
background-position: 0 -8304px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-messagethrow-24 {
|
|
|
|
|
background-position: 0 -7314px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-messagethrow-33 {
|
|
|
|
|
background-position: 0 -6856px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-messagethrow-41 {
|
|
|
|
|
background-position: 0 -6271px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-messagethrow-49 {
|
|
|
|
|
background-position: 0 -5507px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-multiplethrow-16 {
|
|
|
|
|
background-position: 0 -7710px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-multiplethrow-24 {
|
|
|
|
|
background-position: 0 -6551px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-multiplethrow-33 {
|
|
|
|
|
background-position: 0 -4866px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-multiplethrow-41 {
|
|
|
|
|
background-position: 0 -3550px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-multiplethrow-49 {
|
|
|
|
|
background-position: 0 -2639px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-signalthrow-16 {
|
|
|
|
|
background-position: 0 -8272px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-signalthrow-24 {
|
|
|
|
|
background-position: 0 -7370px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-signalthrow-33 {
|
|
|
|
|
background-position: 0 -6985px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-signalthrow-41 {
|
|
|
|
|
background-position: 0 -6441px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-signalthrow-49 {
|
|
|
|
|
background-position: 0 -5660px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-terminatethrow-16 {
|
|
|
|
|
background-position: 0 -8404px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-terminatethrow-24 {
|
|
|
|
|
background-position: 0 -7234px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-terminatethrow-33 {
|
|
|
|
|
background-position: 0 -6737px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-terminatethrow-41 {
|
|
|
|
|
background-position: 0 -6189px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-end-terminatethrow-49 {
|
|
|
|
|
background-position: 0 -5343px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-compensationthrow-16 {
|
|
|
|
|
background-position: 0 -7410px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-compensationthrow-24 {
|
|
|
|
|
background-position: 0 -5907px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-compensationthrow-33 {
|
|
|
|
|
background-position: 0 -3368px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-compensationthrow-41 {
|
|
|
|
|
background-position: 0 -1121px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-compensationthrow-49 {
|
|
|
|
|
background-position: 0 -247px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-conditional-16 {
|
|
|
|
|
background-position: 0 -8099px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-conditional-24 {
|
|
|
|
|
background-position: 0 -6913px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-conditional-33 {
|
|
|
|
|
background-position: 0 -5310px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-conditional-41 {
|
|
|
|
|
background-position: 0 -4178px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-conditional-49 {
|
|
|
|
|
background-position: 0 -3450px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-email-16 {
|
|
|
|
|
background-position: 0 -8115px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-email-24 {
|
|
|
|
|
background-position: 0 -7018px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-email-33 {
|
|
|
|
|
background-position: 0 -5392px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-email-41 {
|
|
|
|
|
background-position: 0 -4219px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-email-49 {
|
|
|
|
|
background-position: 0 -2867px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-linkcatch-16 {
|
|
|
|
|
background-position: 0 -7571px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-linkcatch-24 {
|
|
|
|
|
background-position: 0 -6004px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-linkcatch-33 {
|
|
|
|
|
background-position: 0 -3706px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-linkcatch-41 {
|
|
|
|
|
background-position: 0 -1469px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-linkcatch-49 {
|
|
|
|
|
background-position: 0 -406px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-linkthrow-16 {
|
|
|
|
|
background-position: 0 -7539px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-linkthrow-24 {
|
|
|
|
|
background-position: 0 -6052px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-linkthrow-33 {
|
|
|
|
|
background-position: 0 -3920px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-linkthrow-41 {
|
|
|
|
|
background-position: 0 -1692px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-linkthrow-49 {
|
|
|
|
|
background-position: 0 -751px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-messagecatch-16 {
|
|
|
|
|
background-position: 0 -11272px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-messagecatch-24 {
|
|
|
|
|
background-position: 0 -10843px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-messagecatch-33 {
|
|
|
|
|
background-position: 0 -10598px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-messagecatch-41 {
|
|
|
|
|
background-position: 0 -2303px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-messagecatch-419 {
|
|
|
|
|
background-position: 0 -10194px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-messagecatch-49 {
|
|
|
|
|
background-position: 0 -10070px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-messagethrow-16 {
|
|
|
|
|
background-position: 0 -8131px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-messagethrow-24 {
|
|
|
|
|
background-position: 0 -7042px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-messagethrow-33 {
|
|
|
|
|
background-position: 0 -5425px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-messagethrow-41 {
|
|
|
|
|
background-position: 0 -4260px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-messagethrow-49 {
|
|
|
|
|
background-position: 0 -2916px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-multiplecatch-16 {
|
|
|
|
|
background-position: 0 -7442px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-multiplecatch-24 {
|
|
|
|
|
background-position: 0 -5859px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-multiplecatch-33 {
|
|
|
|
|
background-position: 0 -3080px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-multiplecatch-41 {
|
|
|
|
|
background-position: 0 -990px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-multiplecatch-49 {
|
|
|
|
|
background-position: 0 -49px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-multiplethrow-16 {
|
|
|
|
|
background-position: 0 -7274px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-multiplethrow-24 {
|
|
|
|
|
background-position: 0 -5763px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-multiplethrow-33 {
|
|
|
|
|
background-position: 0 -3302px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-multiplethrow-41 {
|
|
|
|
|
background-position: 0 -1346px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-multiplethrow-49 {
|
|
|
|
|
background-position: 0 -653px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-parallelcatch-16 {
|
|
|
|
|
background-position: 0 -7354px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-parallelcatch-24 {
|
|
|
|
|
background-position: 0 -5811px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-parallelcatch-33 {
|
|
|
|
|
background-position: 0 -3113px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-parallelcatch-41 {
|
|
|
|
|
background-position: 0 -1264px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-parallelcatch-49 {
|
|
|
|
|
background-position: 0 -504px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-signalcatch-16 {
|
|
|
|
|
background-position: 0 -8051px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-signalcatch-24 {
|
|
|
|
|
background-position: 0 -6937px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-signalcatch-33 {
|
|
|
|
|
background-position: 0 -5162px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-signalcatch-41 {
|
|
|
|
|
background-position: 0 -3953px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-signalcatch-49 {
|
|
|
|
|
background-position: 0 -2205px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-signalthrow-16 {
|
|
|
|
|
background-position: 0 -8067px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-signalthrow-24 {
|
|
|
|
|
background-position: 0 -6961px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-signalthrow-33 {
|
|
|
|
|
background-position: 0 -5556px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-signalthrow-41 {
|
|
|
|
|
background-position: 0 -4301px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-signalthrow-49 {
|
|
|
|
|
background-position: 0 -2965px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-timer-16 {
|
|
|
|
|
background-position: 0 -7870px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-timer-24 {
|
|
|
|
|
background-position: 0 -6393px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-timer-33 {
|
|
|
|
|
background-position: 0 -4405px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-timer-41 {
|
|
|
|
|
background-position: 0 -2385px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-intermediate-timer-49 {
|
|
|
|
|
background-position: 0 -1782px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-conditional-16 {
|
|
|
|
|
background-position: 0 -7838px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-conditional-24 {
|
|
|
|
|
background-position: 0 -6527px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-conditional-33 {
|
|
|
|
|
background-position: 0 -4737px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-conditional-41 {
|
|
|
|
|
background-position: 0 -3739px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-conditional-49 {
|
|
|
|
|
background-position: 0 -2818px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-empty-16 {
|
|
|
|
|
background-position: 0 -8226px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-empty-24 {
|
|
|
|
|
background-position: 0 -7619px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-empty-33 {
|
|
|
|
|
background-position: 0 -6623px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-empty-41 {
|
|
|
|
|
background-position: 0 -5236px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-empty-49 {
|
|
|
|
|
background-position: 0 -4027px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-messagecatch-16 {
|
|
|
|
|
background-position: 0 -8184px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-messagecatch-24 {
|
|
|
|
|
background-position: 0 -7210px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-messagecatch-33 {
|
|
|
|
|
background-position: 0 -6770px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-messagecatch-41 {
|
|
|
|
|
background-position: 0 -6124px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-messagecatch-49 {
|
|
|
|
|
background-position: 0 -5023px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-multiplecatch-16 {
|
|
|
|
|
background-position: 0 -7774px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-multiplecatch-24 {
|
|
|
|
|
background-position: 0 -6656px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-multiplecatch-33 {
|
|
|
|
|
background-position: 0 -4833px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-multiplecatch-41 {
|
|
|
|
|
background-position: 0 -2777px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-multiplecatch-49 {
|
|
|
|
|
background-position: 0 -2023px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-parallelcatch-16 {
|
|
|
|
|
background-position: 0 -7694px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-parallelcatch-24 {
|
|
|
|
|
background-position: 0 -6599px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-parallelcatch-33 {
|
|
|
|
|
background-position: 0 -4770px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-parallelcatch-41 {
|
|
|
|
|
background-position: 0 -3591px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-parallelcatch-49 {
|
|
|
|
|
background-position: 0 -2549px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-signalcatch-16 {
|
|
|
|
|
background-position: 0 -7806px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-signalcatch-24 {
|
|
|
|
|
background-position: 0 -6417px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-signalcatch-33 {
|
|
|
|
|
background-position: 0 -4643px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-signalcatch-41 {
|
|
|
|
|
background-position: 0 -3187px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-signalcatch-48 {
|
|
|
|
|
background-position: 0 -2688px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-signalcatch-49 {
|
|
|
|
|
background-position: 0 -7822px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-timer-16 {
|
|
|
|
|
background-position: 0 -7790px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-timer-24 {
|
|
|
|
|
background-position: 0 -6345px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-timer-33 {
|
|
|
|
|
background-position: 0 -10471px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-timer-41 {
|
|
|
|
|
background-position: 0 -2467px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-event-start-timer-49 {
|
|
|
|
|
background-position: 0 -1510px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-complex-20 {
|
|
|
|
|
background-position: 0 -7126px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-complex-30 {
|
|
|
|
|
background-position: 0 -5132px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-complex-41 {
|
|
|
|
|
background-position: 0 -3632px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-complex-51 {
|
|
|
|
|
background-position: 0 -2113px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-complex-61 {
|
|
|
|
|
background-position: 0 -4962px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-eventbased-20 {
|
|
|
|
|
background-position: 0 -7086px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-eventbased-30 {
|
|
|
|
|
background-position: 0 -4803px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-eventbased-41 {
|
|
|
|
|
background-position: 0 -2164px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-eventbased-51 {
|
|
|
|
|
background-position: 0 -553px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-eventbased-61 {
|
|
|
|
|
background-position: 0 -296px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-exclusive-20 {
|
|
|
|
|
background-position: 0 -7166px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-exclusive-30 {
|
|
|
|
|
background-position: 0 -5102px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-exclusive-41 {
|
|
|
|
|
background-position: 0 -3228px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-exclusive-51 {
|
|
|
|
|
background-position: 0 -1921px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-exclusive-61 {
|
|
|
|
|
background-position: 0 -10009px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-exclusiveeventbased-20 {
|
|
|
|
|
background-position: 0 -7106px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-exclusiveeventbased-30 {
|
|
|
|
|
background-position: 0 -4932px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-exclusiveeventbased-41 {
|
|
|
|
|
background-position: 0 -2598px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-exclusiveeventbased-51 {
|
|
|
|
|
background-position: 0 -898px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-exclusiveeventbased-61 {
|
|
|
|
|
background-position: 0 -1162px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-inclusive-20 {
|
|
|
|
|
background-position: 0 -7066px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-inclusive-30 {
|
|
|
|
|
background-position: 0 -5072px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-inclusive-41 {
|
|
|
|
|
background-position: 0 -2736px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-inclusive-51 {
|
|
|
|
|
background-position: 0 -1600px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-inclusive-61 {
|
|
|
|
|
background-position: 0 -8420px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-parallel-20 {
|
|
|
|
|
background-position: 0 -7146px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-parallel-30 {
|
|
|
|
|
background-position: 0 -5630px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-parallel-41 {
|
|
|
|
|
background-position: 0 -4438px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-parallel-51 {
|
|
|
|
|
background-position: 0 -3499px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-parallel-61 {
|
|
|
|
|
background-position: 0 -10504px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-paralleleventbased-20 {
|
|
|
|
|
background-position: 0 -6803px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-paralleleventbased-30 {
|
|
|
|
|
background-position: 0 -4342px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-paralleleventbased-41 {
|
|
|
|
|
background-position: 0 -1831px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-paralleleventbased-51 {
|
|
|
|
|
background-position: 0 -147px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-gateway-paralleleventbased-61 {
|
|
|
|
|
background-position: 0 -4676px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-loop-marker-10 {
|
|
|
|
|
background-position: 0 -8937px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-loop-marker-15 {
|
|
|
|
|
background-position: 0 -8588px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-loop-marker-21 {
|
|
|
|
|
background-position: 0 -8497px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-loop-marker-26 {
|
|
|
|
|
background-position: 0 -8200px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-loop-marker-31 {
|
|
|
|
|
background-position: 0 -7979px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-manualtask-marker-10 {
|
|
|
|
|
background-position: 0 -11288px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-manualtask-marker-15 {
|
|
|
|
|
background-position: 0 -10964px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-manualtask-marker-21 {
|
|
|
|
|
background-position: 0 -10777px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-manualtask-marker-26 {
|
|
|
|
|
background-position: 0 -10690px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-manualtask-marker-31 {
|
|
|
|
|
background-position: 0 -10716px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_100_source_bottom,
|
|
|
|
|
.mafe-message_100_source_top,
|
|
|
|
|
.mafe-message_100_source_left,
|
|
|
|
|
.mafe-message_100_source_right {
|
|
|
|
|
background-position: 0 -8859px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_100_target_bottom {
|
|
|
|
|
background-position: 0 -8806px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_100_target_left {
|
|
|
|
|
background-position: 0 -8795px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_100_target_right {
|
|
|
|
|
background-position: 0 -8784px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_100_target_top {
|
|
|
|
|
background-position: 0 -8817px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_125_source_bottom,
|
|
|
|
|
.mafe-message_125_source_top,
|
|
|
|
|
.mafe-message_125_source_left,
|
|
|
|
|
.mafe-message_125_source_right {
|
|
|
|
|
background-position: 0 -8726px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_125_target_bottom {
|
|
|
|
|
background-position: 0 -8637px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_125_target_left {
|
|
|
|
|
background-position: 0 -8685px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_125_target_right {
|
|
|
|
|
background-position: 0 -8698px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_125_target_top {
|
|
|
|
|
background-position: 0 -8603px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_150_source_bottom,
|
|
|
|
|
.mafe-message_150_source_top,
|
|
|
|
|
.mafe-message_150_source_left,
|
|
|
|
|
.mafe-message_150_source_right {
|
|
|
|
|
background-position: 0 -8739px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_150_target_bottom {
|
|
|
|
|
background-position: 0 -8769px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_150_target_left {
|
|
|
|
|
background-position: 0 -8754px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_150_target_right {
|
|
|
|
|
background-position: 0 -8711px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_150_target_top {
|
|
|
|
|
background-position: 0 -8670px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_50_source_bottom,
|
|
|
|
|
.mafe-message_50_source_top,
|
|
|
|
|
.mafe-message_50_source_left,
|
|
|
|
|
.mafe-message_50_source_right {
|
|
|
|
|
background-position: 0 -9725px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_50_target_bottom {
|
|
|
|
|
background-position: 0 -9599px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_50_target_left {
|
|
|
|
|
background-position: 0 -9402px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_50_target_right {
|
|
|
|
|
background-position: 0 -9408px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_50_target_top {
|
|
|
|
|
background-position: 0 -9541px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_75_source_bottom,
|
|
|
|
|
.mafe-message_75_source_top,
|
|
|
|
|
.mafe-message_75_source_left,
|
|
|
|
|
.mafe-message_75_source_right {
|
|
|
|
|
background-position: 0 -9414px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_75_target_bottom {
|
|
|
|
|
background-position: 0 -9278px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_75_target_left {
|
|
|
|
|
background-position: 0 -9128px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_75_target_right {
|
|
|
|
|
background-position: 0 -9195px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-message_75_target_top {
|
|
|
|
|
background-position: 0 -9286px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-parallel-marker-10 {
|
|
|
|
|
background-position: 0 -9989px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-parallel-marker-15 {
|
|
|
|
|
background-position: 0 -9907px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-parallel-marker-21 {
|
|
|
|
|
background-position: 0 -9803px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-parallel-marker-26 {
|
|
|
|
|
background-position: 0 -9691px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-parallel-marker-31 {
|
|
|
|
|
background-position: 0 -9846px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-receivetask-marker-10 {
|
|
|
|
|
background-position: 0 -11298px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-receivetask-marker-15 {
|
|
|
|
|
background-position: 0 -11133px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-receivetask-marker-21 {
|
|
|
|
|
background-position: 0 -10979px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-receivetask-marker-26 {
|
|
|
|
|
background-position: 0 -10914px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-receivetask-marker-31 {
|
|
|
|
|
background-position: 0 -10883px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-scripttask-marker-10 {
|
|
|
|
|
background-position: 0 -11262px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-scripttask-marker-15 {
|
|
|
|
|
background-position: 0 -10762px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-scripttask-marker-21 {
|
|
|
|
|
background-position: 0 -10450px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-scripttask-marker-26 {
|
|
|
|
|
background-position: 0 -10400px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-scripttask-marker-31 {
|
|
|
|
|
background-position: 0 -10297px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sendtask-marker-10 {
|
|
|
|
|
background-position: 0 -11308px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sendtask-marker-15 {
|
|
|
|
|
background-position: 0 -11210px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sendtask-marker-21 {
|
|
|
|
|
background-position: 0 -11148px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sendtask-marker-26 {
|
|
|
|
|
background-position: 0 -11076px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sendtask-marker-31 {
|
|
|
|
|
background-position: 0 -11102px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_100_target_bottom {
|
|
|
|
|
background-position: 0 -9547px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_100_target_left {
|
|
|
|
|
background-position: 1px -9469px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_100_target_right {
|
|
|
|
|
background-position: -1px -9422px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_100_target_top {
|
|
|
|
|
background-position: 0 -9514px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_125_target_bottom {
|
|
|
|
|
background-position: 0 -9363px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_125_target_left {
|
|
|
|
|
background-position: 1px -9376px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_125_target_right {
|
|
|
|
|
background-position: 0 -9294px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_125_target_top {
|
|
|
|
|
background-position: 0 -9389px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_150_target_bottom {
|
|
|
|
|
background-position: 0 -9307px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_150_target_left {
|
|
|
|
|
background-position: 2px -11472px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_150_target_right {
|
|
|
|
|
background-position: -1px -9332px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_150_target_top {
|
|
|
|
|
background-position: 0 -9235px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_50_target_bottom {
|
|
|
|
|
background-position: 0 -9951px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_50_target_left {
|
|
|
|
|
background-position: 0 -9957px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_50_target_right {
|
|
|
|
|
background-position: 0 -9968px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_50_target_top {
|
|
|
|
|
background-position: 0 -9945px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_75_target_bottom {
|
|
|
|
|
background-position: 0 -9752px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_75_target_left {
|
|
|
|
|
background-position: 0 -9838px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_75_target_right {
|
|
|
|
|
background-position: 0 -9830px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequence_75_target_top {
|
|
|
|
|
background-position: 0 -9717px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequential-marker-10 {
|
|
|
|
|
background-position: 0 -9999px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequential-marker-15 {
|
|
|
|
|
background-position: 0 -9930px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequential-marker-21 {
|
|
|
|
|
background-position: 0 -9731px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequential-marker-26 {
|
|
|
|
|
background-position: 0 -9665px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-sequential-marker-31 {
|
|
|
|
|
background-position: 0 -9760px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-servicetask-marker-10 {
|
|
|
|
|
background-position: 0 -11169px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-servicetask-marker-15 {
|
|
|
|
|
background-position: 0 -10747px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-servicetask-marker-21 {
|
|
|
|
|
background-position: 0 -10276px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-servicetask-marker-26 {
|
|
|
|
|
background-position: 0 -10119px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-servicetask-marker-31 {
|
|
|
|
|
background-position: 0 -8828px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-usertask-marker-10 {
|
|
|
|
|
background-position: 0 -8927px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-usertask-marker-15 {
|
|
|
|
|
background-position: 0 -8533px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-usertask-marker-21 {
|
|
|
|
|
background-position: 0 -6482px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-usertask-marker-26 {
|
|
|
|
|
background-position: 0 -7937px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-usertask-marker-31 {
|
|
|
|
|
background-position: 0 -7663px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*******end sprite***********/
|
|
|
|
|
.mafe-toolbar-sprite {
|
|
|
|
|
background-image: url(../img/bpmn_sprite_with_zoom.png);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-size {
|
|
|
|
|
width: 17px;
|
|
|
|
|
height: 17px;
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 2px 0 2px 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-container {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-rectangle-size {
|
|
|
|
|
width: 17px;
|
|
|
|
|
height: 13px;
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 2px 0 2px 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* PMTask Menu
|
|
|
|
|
*/
|
|
|
|
|
.mafe-menu-task-steps {
|
|
|
|
|
background: url(../img/steps.png) no-repeat;
|
|
|
|
|
background-size: 20px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-menu-users-action {
|
|
|
|
|
background: url(../img/users.png) no-repeat;
|
|
|
|
|
background-size: 20px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-menu-delete-rules-action {
|
|
|
|
|
background: url(../img/delete_rules.png) no-repeat;
|
|
|
|
|
background-size: 20px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-menu-delete-action {
|
|
|
|
|
background: url(../img/delete.png) no-repeat;
|
|
|
|
|
background-size: 20px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-menu-properties-action {
|
|
|
|
|
background: url(../img/dynaforms.gif) no-repeat;
|
|
|
|
|
background-size: 20px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tree Menu
|
|
|
|
|
*/
|
|
|
|
|
.mafe-menu-tree-disable {
|
|
|
|
|
background: url(../img/deactivate.png) no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-menu-tree-enable {
|
|
|
|
|
background: url(../img/activate.png) no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Sub process Menu
|
|
|
|
|
*/
|
|
|
|
|
.mafe-menu-rules-action {
|
|
|
|
|
background: url(../img/rules.png) no-repeat;
|
|
|
|
|
background-size: 20px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Toolbar Menu
|
|
|
|
|
*/
|
|
|
|
|
.mafe-menu-toolbar-blank-dynaform {
|
|
|
|
|
background: url(../img/form.gif) no-repeat;
|
|
|
|
|
background-size: 20px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-menu-toolbar-copyimport-dynaform {
|
|
|
|
|
background: url(../img/edit-table.png) no-repeat;
|
|
|
|
|
background-size: 20px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-label-annotation span {
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Input Document
|
|
|
|
|
*/
|
|
|
|
|
.mafe-inputDocument-newinput {
|
|
|
|
|
background-position: 0 -199px;
|
|
|
|
|
margin: 10px 0 10px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* BUTTON UID*/
|
|
|
|
|
/*a.mafe-button-uid:link,a.mafe-button-uid:visited{
|
|
|
|
|
display: block;
|
|
|
|
|
color: #e77e23;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
background: #fdf8e2;
|
|
|
|
|
width: 90%;
|
|
|
|
|
height: 24px;
|
|
|
|
|
margin: 4px auto;
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
-webkit-transition: all .4s;
|
|
|
|
|
-moz-transition: all .4s;
|
|
|
|
|
-ms-transition: all .4s;
|
|
|
|
|
-o-transition: all .4s;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-uid:hover {
|
|
|
|
|
filter: alpha(opacity=70);
|
|
|
|
|
-moz-opacity: 0.70;
|
|
|
|
|
-khtml-opacity: 0.70;
|
|
|
|
|
opacity: 0.70;
|
|
|
|
|
}
|
|
|
|
|
.mafe-button-uid .pmui-button-label {
|
|
|
|
|
color: #e77e23;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
}*/
|
|
|
|
|
/* BUTTON NEW*/
|
|
|
|
|
/*a.mafe-button-new:link,a.mafe-button-new:visited{
|
|
|
|
|
float: right;
|
|
|
|
|
display: block;
|
|
|
|
|
color: #fff;
|
|
|
|
|
line-height: 45px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
background: #e77e23 url(../img/ico_mor2.png) no-repeat 5px center;
|
|
|
|
|
background-size : 25px;
|
|
|
|
|
padding: 6px 38px 6px 33px;
|
|
|
|
|
-webkit-transition: all .4s;
|
|
|
|
|
-moz-transition: all .4s;
|
|
|
|
|
-ms-transition: all .4s;
|
|
|
|
|
-o-transition: all .4s;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
max-width: 80%;
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-new:hover{
|
|
|
|
|
background: #e77e23 url(../img/ico_mor2.png) no-repeat 96% center;
|
|
|
|
|
background-size : 25px;
|
|
|
|
|
padding: 6px 38px 6px 33px;
|
|
|
|
|
}
|
|
|
|
|
.mafe-button-new .pmui-button-label {
|
|
|
|
|
text-transform:capitalize;
|
|
|
|
|
}*/
|
|
|
|
|
/* BUTTON EDIT*/
|
|
|
|
|
/*a.mafe-button-edit:link,a.mafe-button-edit:visited {
|
|
|
|
|
display: block;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 32px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
background: #19bd9b;
|
|
|
|
|
height: 32px;
|
|
|
|
|
margin: 0 3px;
|
|
|
|
|
-webkit-transition: all .4s;
|
|
|
|
|
-moz-transition: all .4s;
|
|
|
|
|
-ms-transition: all .4s;
|
|
|
|
|
-o-transition: all .4s;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
filter: alpha(opacity=80);
|
|
|
|
|
-moz-opacity: 0.80;
|
|
|
|
|
-khtml-opacity: 0.80;
|
|
|
|
|
opacity: 0.80;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-edit:hover{
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
-moz-opacity: 1.00;
|
|
|
|
|
-khtml-opacity: 1.00;
|
|
|
|
|
opacity: 1.00;
|
|
|
|
|
}*/
|
|
|
|
|
/* BUTTON DELETE*/
|
|
|
|
|
/*a.mafe-button-delete:link,a.mafe-button-delete:visited {
|
|
|
|
|
display: block;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 32px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
background: #e84c3d;
|
|
|
|
|
height: 32px;
|
|
|
|
|
margin: 0 3px;
|
|
|
|
|
-webkit-transition: all .4s;
|
|
|
|
|
-moz-transition: all .4s;
|
|
|
|
|
-ms-transition: all .4s;
|
|
|
|
|
-o-transition: all .4s;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
filter: alpha(opacity=80);
|
|
|
|
|
-moz-opacity: 0.80;
|
|
|
|
|
-khtml-opacity: 0.80;
|
|
|
|
|
opacity: 0.80;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-delete:hover {
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
-moz-opacity: 1.00;
|
|
|
|
|
-khtml-opacity: 1.00;
|
|
|
|
|
opacity: 1.00;
|
|
|
|
|
}*/
|
|
|
|
|
/* BUTTON PROPERTIES*/
|
|
|
|
|
/*a.mafe-button-properties:link,a.mafe-button-properties:visited {
|
|
|
|
|
display: block;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 32px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
background: #3D78E5;
|
|
|
|
|
height: 32px;
|
|
|
|
|
margin: 0 3px;
|
|
|
|
|
-webkit-transition: all .4s;
|
|
|
|
|
-moz-transition: all .4s;
|
|
|
|
|
-ms-transition: all .4s;
|
|
|
|
|
-o-transition: all .4s;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
filter: alpha(opacity=80);
|
|
|
|
|
-moz-opacity: 0.80;
|
|
|
|
|
-khtml-opacity: 0.80;
|
|
|
|
|
opacity: 0.80;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-properties:hover {
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
-moz-opacity: 1.00;
|
|
|
|
|
-khtml-opacity: 1.00;
|
|
|
|
|
opacity: 1.00;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-img-delete {
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-img-delete .pmui-button-icon {
|
|
|
|
|
background-image: url(../img/delete.png);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 19px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-img-delete .pmui-button-label {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-img-edit {
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-img-edit .pmui-button-icon {
|
|
|
|
|
background-image: url(../img/edit.gif);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 23px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-img-edit .pmui-button-label {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.mafe-button-img-properties {
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-img-properties .pmui-button-icon {
|
|
|
|
|
background-image: url(../img/edit-table.png);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 17px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
}
|
|
|
|
|
a.mafe-button-img-properties .pmui-button-label {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-button-text{
|
|
|
|
|
background-color :#FDFDFD;
|
|
|
|
|
}
|
|
|
|
|
.mafe-button-text .pmui-button-label{
|
|
|
|
|
background-color :#FDFDFD;
|
|
|
|
|
color: black;
|
|
|
|
|
text-transform:capitalize;
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
/* ToolbarPanel */
|
|
|
|
|
.mafe-toolbarpanel-btn {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
list-style: none;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbarpanel-btn-span {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbarpanel-btn-img {
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbarpanel-tooltip {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
-webkit-box-shadow: 0 0 5px #aaa;
|
|
|
|
|
-moz-box-shadow: 0 0 5px #aaa;
|
|
|
|
|
box-shadow: 0 0 5px #aaa;
|
|
|
|
|
background-color: #6D87B7;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Styles for arrows
|
|
|
|
|
*/
|
|
|
|
|
.mafe-decorator_50_target_right {
|
|
|
|
|
border-bottom: 3px solid transparent;
|
|
|
|
|
border-top: 3px solid transparent;
|
|
|
|
|
border-right: 6px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_75_target_right {
|
|
|
|
|
border-bottom: 4px solid transparent;
|
|
|
|
|
border-top: 4px solid transparent;
|
|
|
|
|
border-right: 8px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_100_target_right {
|
|
|
|
|
border-bottom: 5px solid transparent;
|
|
|
|
|
border-top: 5px solid transparent;
|
|
|
|
|
border-right: 10px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_125_target_right {
|
|
|
|
|
border-bottom: 6px solid transparent;
|
|
|
|
|
border-top: 6px solid transparent;
|
|
|
|
|
border-right: 12px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_150_target_right {
|
|
|
|
|
border-bottom: 7px solid transparent;
|
|
|
|
|
border-top: 7px solid transparent;
|
|
|
|
|
border-right: 14px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_50_target_bottom {
|
|
|
|
|
border-left: 3px solid transparent;
|
|
|
|
|
border-right: 3px solid transparent;
|
|
|
|
|
border-bottom: 6px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_75_target_bottom {
|
|
|
|
|
border-left: 4px solid transparent;
|
|
|
|
|
border-right: 4px solid transparent;
|
|
|
|
|
border-bottom: 8px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_100_target_bottom {
|
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
|
border-bottom: 10px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_125_target_bottom {
|
|
|
|
|
border-left: 6px solid transparent;
|
|
|
|
|
border-right: 6px solid transparent;
|
|
|
|
|
border-bottom: 12px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_150_target_bottom {
|
|
|
|
|
border-left: 7px solid transparent;
|
|
|
|
|
border-right: 7px solid transparent;
|
|
|
|
|
border-bottom: 14px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_50_target_left {
|
|
|
|
|
border-bottom: 3px solid transparent;
|
|
|
|
|
border-top: 3px solid transparent;
|
|
|
|
|
border-left: 6px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_75_target_left {
|
|
|
|
|
border-bottom: 4px solid transparent;
|
|
|
|
|
border-top: 4px solid transparent;
|
|
|
|
|
border-left: 8px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_100_target_left {
|
|
|
|
|
border-bottom: 5px solid transparent;
|
|
|
|
|
border-top: 5px solid transparent;
|
|
|
|
|
border-left: 10px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_125_target_left {
|
|
|
|
|
border-bottom: 6px solid transparent;
|
|
|
|
|
border-top: 6px solid transparent;
|
|
|
|
|
border-left: 12px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_150_target_left {
|
|
|
|
|
border-bottom: 7px solid transparent;
|
|
|
|
|
border-top: 7px solid transparent;
|
|
|
|
|
border-left: 14px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_50_target_top {
|
|
|
|
|
border-left: 3px solid transparent;
|
|
|
|
|
border-right: 3px solid transparent;
|
|
|
|
|
border-top: 6px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_75_target_top {
|
|
|
|
|
border-left: 4px solid transparent;
|
|
|
|
|
border-right: 4px solid transparent;
|
|
|
|
|
border-top: 8px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_100_target_top {
|
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
|
border-top: 10px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_125_target_top {
|
|
|
|
|
border-left: 6px solid transparent;
|
|
|
|
|
border-right: 6px solid transparent;
|
|
|
|
|
border-top: 12px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-decorator_150_target_top {
|
|
|
|
|
border-left: 7px solid transparent;
|
|
|
|
|
border-right: 7px solid transparent;
|
|
|
|
|
border-top: 14px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ---------------------------- NAV ---------------------------- */
|
|
|
|
|
.navBar {
|
|
|
|
|
background: #3397e2;
|
|
|
|
|
color: #fff;
|
|
|
|
|
height: auto;
|
|
|
|
|
left: 0px;
|
|
|
|
|
position: fixed;
|
|
|
|
|
/*top: 1px;*/
|
|
|
|
|
width: 97%;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
padding: 0 1% 0 2%;
|
|
|
|
|
display: none;
|
|
|
|
|
border: 1px solid #2979b8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navBar .head {
|
|
|
|
|
background-color: #3b4753;
|
|
|
|
|
cursor: move;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navBar nav {
|
|
|
|
|
position: relative;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
height: 35px;
|
|
|
|
|
float: right;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navBar nav ul {
|
|
|
|
|
position: relative;
|
|
|
|
|
list-style: none;
|
|
|
|
|
height: 35px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navBar nav ul li {
|
|
|
|
|
float: right;
|
|
|
|
|
border-right: 1px solid #70b5ec;
|
|
|
|
|
border-left: 1px solid #70b5ec;
|
|
|
|
|
padding: 2px 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navBar nav ul li:hover {
|
|
|
|
|
background-color: #2979b4;
|
|
|
|
|
border-right: 1px solid #2979b8;
|
|
|
|
|
border-left: 1px solid #2979b8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navBar nav ul li:last-child {
|
|
|
|
|
border: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navBar nav ul li a {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
color: #fff;
|
|
|
|
|
line-height: 31px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
height: 29px;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
-webkit-transition: all .4s;
|
|
|
|
|
-moz-transition: all .4s;
|
|
|
|
|
-ms-transition: all .4s;
|
|
|
|
|
-o-transition: all .4s;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navBar nav ul li b {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
color: #fff;
|
|
|
|
|
line-height: 31px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
height: 29px;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
-webkit-transition: all .4s;
|
|
|
|
|
-moz-transition: all .4s;
|
|
|
|
|
-ms-transition: all .4s;
|
|
|
|
|
-o-transition: all .4s;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navBar nav ul li input {
|
|
|
|
|
height: 31px;
|
|
|
|
|
width: 58px;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navBar .processName {
|
|
|
|
|
width: 55%;
|
|
|
|
|
float: left;
|
|
|
|
|
/*border: 1px solid red; */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navBar .buttonSection {
|
|
|
|
|
/*border: 1px solid green; */
|
|
|
|
|
width: 40%;
|
|
|
|
|
/* don't want this */
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navBar h2 {
|
|
|
|
|
/*float: left;*/
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 700px;
|
|
|
|
|
line-height: 35px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.mafe-button-save:link, a.mafe-button-save:visited {
|
|
|
|
|
width: 70px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-save-process {
|
|
|
|
|
color: white;
|
|
|
|
|
background: #19bd9b;
|
|
|
|
|
-webkit-transition: all .6s;
|
|
|
|
|
-moz-transition: all .6s;
|
|
|
|
|
-ms-transition: all .6s;
|
|
|
|
|
-o-transition: all .6s;
|
|
|
|
|
transition: all .6s;
|
|
|
|
|
border-left: 1px solid lightgray !important;
|
|
|
|
|
border-right: 1px solid lightgray !important;
|
|
|
|
|
border-bottom: 1px solid lightgray !important;
|
|
|
|
|
padding-right: 25px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li.mafe-redo {
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li.mafe-undo {
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.mafe-button-save:hover {
|
|
|
|
|
/*background: #16a085 !important;*/
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-dropdown-zoom {
|
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-dropdown-zoom option {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.mafe-button-fullscreen:link, a.mafe-button-fullscreen:visited {
|
|
|
|
|
float: left;
|
|
|
|
|
display: block;
|
|
|
|
|
outline: none;
|
|
|
|
|
text-indent: -9000px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
background: url(../img/mafe-tools.png) no-repeat;
|
|
|
|
|
background-position: 0 -1036px;
|
|
|
|
|
width: 11px;
|
|
|
|
|
margin: 0 5px 0 5px;
|
|
|
|
|
-webkit-transition: all .6s;
|
|
|
|
|
-moz-transition: all .6s;
|
|
|
|
|
-ms-transition: all .6s;
|
|
|
|
|
-o-transition: all .6s;
|
|
|
|
|
transition: all .6s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.mafe-button-fullscreen:hover {
|
|
|
|
|
-ms-transform: scale(1);
|
|
|
|
|
-webkit-transform: scale(1);
|
|
|
|
|
-moz-transform: scale(1);
|
|
|
|
|
-o-transform: scale(1);
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ---------------------------- NAV ---------------------------- */
|
|
|
|
|
/* ---------------------------- PANELES ---------------------------- */
|
|
|
|
|
.content {
|
|
|
|
|
/*position: relative;
|
|
|
|
|
background: url(../img/bg_designer.gif) repeat;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 700px;
|
|
|
|
|
overflow: auto;*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes {
|
|
|
|
|
/*right: 20px;*/
|
|
|
|
|
border: 1px solid #d6d7d9;
|
|
|
|
|
background-color: #e9e9e9;
|
|
|
|
|
/*width: 88px;*/
|
|
|
|
|
padding-top: 5px;
|
|
|
|
|
padding-bottom: 5px;
|
|
|
|
|
/*overflow: visible;*/
|
|
|
|
|
z-index: 1;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 35px;
|
|
|
|
|
left: 0px;
|
|
|
|
|
height: 31px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes .head {
|
|
|
|
|
background-color: #d5d8dd;
|
|
|
|
|
height: 16px;
|
|
|
|
|
cursor: move;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes .head a {
|
|
|
|
|
float: right;
|
|
|
|
|
display: block;
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
-webkit-transition: all .4s;
|
|
|
|
|
-moz-transition: all .4s;
|
|
|
|
|
-ms-transition: all .4s;
|
|
|
|
|
-o-transition: all .4s;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes .head a:hover {
|
|
|
|
|
filter: alpha(opacity=70);
|
|
|
|
|
-moz-opacity: 0.70;
|
|
|
|
|
-khtml-opacity: 0.70;
|
|
|
|
|
opacity: 0.70;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes ul:nth-child(2) {
|
|
|
|
|
border-top: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes ul:last-child {
|
|
|
|
|
border-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes ul {
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
list-style: none;
|
|
|
|
|
width: 96%;
|
|
|
|
|
margin: 0 0%;
|
|
|
|
|
padding: 4px 0;
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes ul li {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
margin: 0 4px;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes ul li a {
|
|
|
|
|
float: left;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
color: #fff;
|
|
|
|
|
line-height: 10px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
padding: 3px 4px;
|
|
|
|
|
-webkit-transition: all .4s;
|
|
|
|
|
-moz-transition: all .4s;
|
|
|
|
|
-ms-transition: all .4s;
|
|
|
|
|
-o-transition: all .4s;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content_controls {
|
|
|
|
|
top: 90px;
|
|
|
|
|
right: 20px;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
border: 1px solid #d8dbdf;
|
|
|
|
|
background-color: #3397e2;
|
|
|
|
|
width: 200px;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
position: fixed;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content_controls .head {
|
|
|
|
|
background-color: #3b4753;
|
|
|
|
|
height: 18px;
|
|
|
|
|
cursor: move;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content_controls .head a {
|
|
|
|
|
float: right;
|
|
|
|
|
display: block;
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
-webkit-transition: all .4s;
|
|
|
|
|
-moz-transition: all .4s;
|
|
|
|
|
-ms-transition: all .4s;
|
|
|
|
|
-o-transition: all .4s;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content_controls .head a:hover {
|
|
|
|
|
filter: alpha(opacity=70);
|
|
|
|
|
-moz-opacity: 0.70;
|
|
|
|
|
-khtml-opacity: 0.70;
|
|
|
|
|
opacity: 0.70;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content_controls ul {
|
|
|
|
|
float: left;
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
list-style: none;
|
|
|
|
|
width: 96%;
|
|
|
|
|
margin: 0 2%;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content_controls ul li:first-child {
|
|
|
|
|
border-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content_controls ul li:last-child {
|
|
|
|
|
border-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content_controls ul li {
|
|
|
|
|
float: left;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
border-bottom: 1px solid #20669D;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 3px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content_controls ul li:hover {
|
|
|
|
|
background-color: #2979b4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content_controls ul li a {
|
|
|
|
|
float: left;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
color: #fff;
|
|
|
|
|
line-height: 23px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
padding: 3px 3px;
|
|
|
|
|
-webkit-border-radius: 1px;
|
|
|
|
|
-moz-border-radius: 1px;
|
|
|
|
|
border-radius: 1px;
|
|
|
|
|
-webkit-transition: all .4s;
|
|
|
|
|
-moz-transition: all .4s;
|
|
|
|
|
-ms-transition: all .4s;
|
|
|
|
|
-o-transition: all .4s;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content_controls li {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.btn_create {
|
|
|
|
|
float: right;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0px;
|
|
|
|
|
top: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.btn_create:link, a.btn_create:visited {
|
|
|
|
|
float: right;
|
|
|
|
|
display: block;
|
|
|
|
|
color: #fff;
|
|
|
|
|
line-height: 23px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
background: transparent url(../img/btn_create.png) no-repeat center !important;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 23px;
|
|
|
|
|
padding: 3px 0;
|
|
|
|
|
filter: alpha(opacity=50);
|
|
|
|
|
-moz-opacity: 0.50;
|
|
|
|
|
-khtml-opacity: 0.50;
|
|
|
|
|
-webkit-transition: all .6s;
|
|
|
|
|
-moz-transition: all .6s;
|
|
|
|
|
-ms-transition: all .6s;
|
|
|
|
|
-o-transition: all .6s;
|
|
|
|
|
transition: all .6s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.btn_create span {
|
|
|
|
|
filter: alpha(opacity=0);
|
|
|
|
|
-moz-opacity: 0.00;
|
|
|
|
|
-khtml-opacity: 0.00;
|
|
|
|
|
opacity: 0.00;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.btn_create:hover {
|
|
|
|
|
background: #20bb99 url(../img/btn_create.png) no-repeat 5px center !important;
|
|
|
|
|
width: 45px;
|
|
|
|
|
height: 23px;
|
|
|
|
|
padding: 3px 0 3px 18px;
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
-moz-opacity: 1.00;
|
|
|
|
|
-khtml-opacity: 1.00;
|
|
|
|
|
opacity: 1.00;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.btn_create:hover span {
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
-moz-opacity: 1.00;
|
|
|
|
|
-khtml-opacity: 1.00;
|
|
|
|
|
opacity: 1.00;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes_legend {
|
|
|
|
|
/*top: 1px;*/
|
|
|
|
|
/*right: 20px;*/
|
|
|
|
|
border: 1px solid #d6d7d9;
|
|
|
|
|
background-color: #e9e9e9;
|
|
|
|
|
width: 250px;
|
|
|
|
|
padding-bottom: 2px;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
position: fixed;
|
|
|
|
|
right: 20px;
|
|
|
|
|
top: 70px;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes_legend .head {
|
|
|
|
|
background-color: #d5d8dd;
|
|
|
|
|
height: 16px;
|
|
|
|
|
cursor: move;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes_legend .head a {
|
|
|
|
|
float: right;
|
|
|
|
|
display: block;
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
-webkit-transition: all .4s;
|
|
|
|
|
-moz-transition: all .4s;
|
|
|
|
|
-ms-transition: all .4s;
|
|
|
|
|
-o-transition: all .4s;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes_legend .head a:hover {
|
|
|
|
|
filter: alpha(opacity=70);
|
|
|
|
|
-moz-opacity: 0.70;
|
|
|
|
|
-khtml-opacity: 0.70;
|
|
|
|
|
opacity: 0.70;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes_legend .icon-legend {
|
|
|
|
|
height: 20px;
|
|
|
|
|
width: 50px;
|
|
|
|
|
margin: 5px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_shapes_legend .text-legend {
|
|
|
|
|
font-size: small;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-top: 9px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ---------------------------- PANELES ---------------------------- */
|
|
|
|
|
/* ---------------------------- ELEMENTOS BASE ---------------------------- */
|
|
|
|
|
.bold {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.small {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color2 {
|
|
|
|
|
color: #f46500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ---------------------------- ELEMENTOS BASE ---------------------------- */
|
|
|
|
|
.mafe-shapes-toggle {
|
|
|
|
|
background-image: url("../img/shapes-toogle.png");
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
float: right;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-shapes-plus {
|
|
|
|
|
background-image: url("../img/plus.png");
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
float: right;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-shapes-refresh {
|
|
|
|
|
background-image: url("../img/shapes-refresh.png");
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
float: right;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
background-size: 10px;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-process-object {
|
|
|
|
|
color: white;
|
|
|
|
|
margin-top: 3px;
|
|
|
|
|
margin-left: 7px;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
toolbar sprite
|
|
|
|
|
*/
|
|
|
|
|
.mafe-sprite, .mafe-fullscream, .mafe-toolbar-annotation, .mafe-toolbar-blackbox, .mafe-toolbar-boundary, .mafe-toolbar-data-object, .mafe-toolbar-data-store, .mafe-toolbar-end-message, .mafe-toolbar-end, .mafe-toolbar-gateway-exclusive, .mafe-toolbar-gateway-inclusive, .mafe-toolbar-gateway-parallel, .mafe-toolbar-group, .mafe-toolbar-horizontal-line, .mafe-toolbar-horizontal-text, .mafe-toolbar-intermediate-receive-mesage, .mafe-toolbar-intermediate-send-mesage, .mafe-toolbar-lane, .mafe-toolbar-participant, .mafe-toolbar-pool, .mafe-toolbar-start-message, .mafe-toolbar-start-timer, .mafe-toolbar-start, .mafe-toolbar-subprocess, .mafe-toolbar-task, .mafe-toolbar-vertical-line, .mafe-toolbar-vertical-text, .mafe-button-redo, .mafe-button-undo, .mafe-button-close, .mafe-toolbar-lasso, .mafe-toolbar-help, .mafe-toolbar-end-email, .mafe-toolbar-intermediate-email, .mafe-toolbar-event-intermediate-timer, .mafe-toolbar-event-start-timer, .mafe-toolbar-validation, .mafe-validator-close, .mafe-icon-error, .mafe-icon-warning {
|
|
|
|
|
background: url("../img/mafe-tools.png") no-repeat;
|
|
|
|
|
width: 23px;
|
|
|
|
|
height: 23px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-button-close {
|
|
|
|
|
background-position: 0 -966px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-button-close:hover, .mafe-button-close.button-close_hover, .mafe-button-close.button-close-hover {
|
|
|
|
|
background-position: 0 -1156px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-button-redo {
|
|
|
|
|
background-position: 0 -888px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-button-redo:hover, .mafe-button-redo.button-redo_hover, .mafe-button-redo.button-redo-hover {
|
|
|
|
|
background-position: 0 -863px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-button-undo {
|
|
|
|
|
background-position: 0 -837px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-button-undo:hover, .mafe-button-undo.button-undo_hover, .mafe-button-undo.button-undo-hover {
|
|
|
|
|
background-position: 0 -913px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-fullscream {
|
|
|
|
|
background-position: 0 -1036px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-icon-error {
|
|
|
|
|
background-position: 0 -1256px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-icon-warning {
|
|
|
|
|
background-position: 0 -1271px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-plus {
|
|
|
|
|
background-position: 0 -790px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-shapes-refresh {
|
|
|
|
|
background-position: 0 -952px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-shapes-toogle {
|
|
|
|
|
background-position: 0 -938px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-annotation {
|
|
|
|
|
background-position: 0 -730px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-blackbox {
|
|
|
|
|
background-position: 0 -530px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-boundary {
|
|
|
|
|
background-position: 0 -120px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-data-object {
|
|
|
|
|
background-position: 0 -1066px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-data-store {
|
|
|
|
|
background-position: 0 -300px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-easy {
|
|
|
|
|
background-position: 0 -450px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-end-email {
|
|
|
|
|
background-position: 0 -390px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-end-message {
|
|
|
|
|
background-position: 0 -150px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-end {
|
|
|
|
|
background-position: 0 -240px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-event-intermediate-timer {
|
|
|
|
|
background-position: 0 -270px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-event-start-timer {
|
|
|
|
|
background-position: 0 -620px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-gateway-exclusive {
|
|
|
|
|
background-position: 0 -420px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-gateway-inclusive {
|
|
|
|
|
background-position: 0 -360px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-gateway-parallel {
|
|
|
|
|
background-position: 0 -470px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-group {
|
|
|
|
|
background-position: 0 -560px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-help {
|
|
|
|
|
background-position: 0 -680px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-help:hover, .mafe-toolbar-help.toolbar-help_hover, .mafe-toolbar-help.toolbar-help-hover {
|
|
|
|
|
background-position: 0 -705px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-horizontal-line {
|
|
|
|
|
background-position: 0 -1196px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-horizontal-text {
|
|
|
|
|
background-position: 0 -807px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-intermediate-email {
|
|
|
|
|
background-position: 0 -210px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-intermediate-receive-mesage {
|
|
|
|
|
background-position: 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-intermediate-send-mesage {
|
|
|
|
|
background-position: 0 -30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-lane {
|
|
|
|
|
background-position: 0 -500px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-lasso {
|
|
|
|
|
background-position: 0 -330px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-participant {
|
|
|
|
|
background-position: 0 -1096px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-pool {
|
|
|
|
|
background-position: 0 -590px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-start-message {
|
|
|
|
|
background-position: 0 -60px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-start-timer {
|
|
|
|
|
background-position: 0 -650px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-start {
|
|
|
|
|
background-position: 0 -180px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-subprocess {
|
|
|
|
|
background-position: 0 -1006px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-task {
|
|
|
|
|
background-position: 0 -1126px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-validation {
|
|
|
|
|
background-position: 0 -90px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-vertical-line {
|
|
|
|
|
background-position: 0 -1226px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-toolbar-vertical-text {
|
|
|
|
|
background-position: 0 -760px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-validator-close {
|
|
|
|
|
background-position: 0 -1176px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-validator-close:hover, .mafe-validator-close.validator-close_hover, .mafe-validator-close.validator-close-hover {
|
|
|
|
|
background-position: 0 -986px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*end toolbar sprite**/
|
|
|
|
|
span.mafe-button-redo {
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span.mafe-button-undo {
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span.mafe-button-close {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 7px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span.mafe-validator-close {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 4px 8px 4px 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.mafe-close {
|
|
|
|
|
margin: -1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span.mafe-toolbar-help {
|
|
|
|
|
width: 23px;
|
|
|
|
|
height: 23px;
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span.mafe-toolbar-validation {
|
|
|
|
|
width: 9px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tooltip for actions
|
|
|
|
|
*/
|
|
|
|
|
.mafe-action-tooltip {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
background-color: #ECF0F1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tooltip Black
|
|
|
|
|
*/
|
|
|
|
|
.ui-tooltip.mafe-action-tooltip-black {
|
|
|
|
|
background: black;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Rotate Label **/
|
|
|
|
|
.rotateText {
|
|
|
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
|
|
|
|
-ms-transform: rotate(-90deg);
|
|
|
|
|
/* IE9+ */
|
|
|
|
|
-moz-transform: rotate(-90deg);
|
|
|
|
|
/* Firefox */
|
|
|
|
|
-o-transform: rotate(-90deg);
|
|
|
|
|
/* Opera */
|
|
|
|
|
-webkit-transform: rotate(-90deg);
|
|
|
|
|
/* Safari & Chrome */
|
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
|
display: block;
|
|
|
|
|
float: center;
|
|
|
|
|
margin: 0 10px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rotateControl {
|
|
|
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
|
|
|
|
-ms-transform: rotate(90deg);
|
|
|
|
|
/* IE9+ */
|
|
|
|
|
-moz-transform: rotate(90deg);
|
|
|
|
|
/* Firefox */
|
|
|
|
|
-o-transform: rotate(90deg);
|
|
|
|
|
/* Opera */
|
|
|
|
|
-webkit-transform: rotate(90deg);
|
|
|
|
|
/* Safari & Chrome */
|
|
|
|
|
transform: rotate(90deg);
|
|
|
|
|
display: block;
|
|
|
|
|
float: right;
|
|
|
|
|
margin: 0 10px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-textarea-resize .pmui-textareacontrol {
|
|
|
|
|
resize: vertical;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropableClass {
|
|
|
|
|
background-color: #e2eae3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.loader {
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0px;
|
|
|
|
|
top: 0px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
background: url("../img/loading.gif") 50% 50% no-repeat #f9f9f9;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screencast {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 480px;
|
|
|
|
|
height: 161px;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
background: url("../img/bpmnProcessmaker.gif") 50% 50% no-repeat #f9f9f9;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.startcoronahelp {
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 100px;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
background: url("../img/startcoronahelp.png") 50% 50% no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-button-menu {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0px;
|
|
|
|
|
bottom: 2px;
|
|
|
|
|
padding-top: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-button-menu img {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-button-menu-option {
|
|
|
|
|
padding: 7px;
|
|
|
|
|
color: black;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: absolute;
|
|
|
|
|
height: 14px;
|
|
|
|
|
width: 107px;
|
|
|
|
|
border: 1px solid lightgray;
|
|
|
|
|
background-color: #e8e8e8;
|
|
|
|
|
top: 2px;
|
|
|
|
|
left: -6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-button-menu-option:hover {
|
|
|
|
|
background-color: lightgray;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-button-menu-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-can-connect-layer {
|
|
|
|
|
background-color: #9dee9d;
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-can-not-connect-layer {
|
|
|
|
|
background-color: #f590a5;
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.arrow_box {
|
|
|
|
|
position: absolute;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
border: 1px solid #BCBCBC;
|
|
|
|
|
padding-right: 5px;
|
|
|
|
|
font-size: smaller;
|
|
|
|
|
width: auto;
|
|
|
|
|
min-width: 27%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.arrow_box:after, .arrow_box:before {
|
|
|
|
|
right: 100%;
|
|
|
|
|
top: 10px;
|
|
|
|
|
border: solid transparent;
|
|
|
|
|
content: " ";
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.arrow_box:after {
|
|
|
|
|
border-color: rgba(255, 255, 255, 0);
|
|
|
|
|
border-right-color: #ffffff;
|
|
|
|
|
border-width: 7px;
|
|
|
|
|
margin-top: -7px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.arrow_box:before {
|
|
|
|
|
border-color: rgba(188, 188, 188, 0);
|
|
|
|
|
border-right-color: #BCBCBC;
|
|
|
|
|
border-width: 8px;
|
|
|
|
|
margin-top: -8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bpmn_validator {
|
|
|
|
|
/* background: #3397e2; */
|
|
|
|
|
height: auto;
|
|
|
|
|
/* left: 0px; */
|
|
|
|
|
/* position: fixed; */
|
|
|
|
|
/* top: 68%; */
|
|
|
|
|
width: 99.4%;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
/* display: none; */
|
|
|
|
|
border: 4px solid #E5E5E5;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
width: 100%;
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.validator_header {
|
|
|
|
|
height: 28px;
|
|
|
|
|
background-color: #262A35;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.validator_body {
|
|
|
|
|
background-color: white;
|
|
|
|
|
font-size: smaller;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.validator-close {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i.mafe-icon-error {
|
|
|
|
|
float: left;
|
|
|
|
|
height: 15px;
|
|
|
|
|
height: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i.mafe-icon-warning {
|
|
|
|
|
float: left;
|
|
|
|
|
height: 15px;
|
|
|
|
|
height: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.validator_header h2 {
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 28px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table.dataTable thead th, table.dataTable thead td {
|
|
|
|
|
padding: 10px 18px;
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
background-color: #B6B6B6;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dataTables_wrapper.no-footer .dataTables_scrollBody {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-06 22:54:52 +00:00
|
|
|
.mafe-toolbarpanel-switch {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tgl-label {
|
|
|
|
|
top: -5px;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tgl {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-btn::selection {
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
.tgl + .tgl-btn {
|
|
|
|
|
outline: 0;
|
|
|
|
|
display: block;
|
|
|
|
|
width: 3em;
|
|
|
|
|
height: 1.5em;
|
|
|
|
|
position: relative;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
.tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: block;
|
|
|
|
|
content: "";
|
|
|
|
|
width: 50%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
.tgl + .tgl-btn:after {
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
.tgl + .tgl-btn:before {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.tgl:checked + .tgl-btn:after {
|
|
|
|
|
left: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tgl-light + .tgl-btn {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
background: #7b7c80;
|
|
|
|
|
border-radius: 2em;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
transition: all .4s ease;
|
|
|
|
|
}
|
|
|
|
|
.tgl-light + .tgl-btn:after {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: #d1d0d0;
|
|
|
|
|
transition: all .2s ease;
|
|
|
|
|
}
|
|
|
|
|
.tgl-light:checked + .tgl-btn {
|
|
|
|
|
background: #3397e2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.switch {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 60px;
|
|
|
|
|
height: 34px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.switch input {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider {
|
|
|
|
|
position: absolute;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background-color: #ccc;
|
|
|
|
|
-webkit-transition: .4s;
|
|
|
|
|
transition: .4s;
|
|
|
|
|
height: 27px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider:before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
content: "";
|
|
|
|
|
height: 20px;
|
|
|
|
|
width: 20px;
|
|
|
|
|
left: 4px;
|
|
|
|
|
bottom: 4px;
|
|
|
|
|
background-color: white;
|
|
|
|
|
-webkit-transition: .4s;
|
|
|
|
|
transition: .4s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input:checked + .slider {
|
|
|
|
|
background-color: #2196F3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input:focus + .slider {
|
|
|
|
|
box-shadow: 0 0 1px #2196F3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input:checked + .slider:before {
|
|
|
|
|
-webkit-transform: translateX(26px);
|
|
|
|
|
-ms-transform: translateX(26px);
|
|
|
|
|
transform: translateX(26px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Rounded sliders */
|
|
|
|
|
.slider.round {
|
|
|
|
|
border-radius: 34px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider.round:before {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-04 12:19:34 +00:00
|
|
|
/*
|
|
|
|
|
* Sprite Validator Icons
|
|
|
|
|
*/
|
|
|
|
|
.mafe-sprite, .mafe-style-error-marker-10, .mafe-style-error-marker-14, .mafe-style-error-marker-17, .mafe-style-error-marker-21, .mafe-style-error-marker-7, .mafe-style-warning-marker-10, .mafe-style-warning-marker-14, .mafe-style-warning-marker-17, .mafe-style-warning-marker-21, .mafe-style-warning-marker-7 {
|
|
|
|
|
background-image: url("../img/mafe-validate.png");
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Icons for Errors */
|
|
|
|
|
.mafe-style-error-marker-10 {
|
|
|
|
|
background-position: 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-style-error-marker-14 {
|
|
|
|
|
background-position: 0 -10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-style-error-marker-17 {
|
|
|
|
|
background-position: 0 -24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-style-error-marker-21 {
|
|
|
|
|
background-position: 0 -41px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-style-error-marker-7 {
|
|
|
|
|
background-position: 0 -62px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Icons for Warning */
|
|
|
|
|
.mafe-style-warning-marker-10 {
|
|
|
|
|
background-position: 0 -69px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-style-warning-marker-14 {
|
|
|
|
|
background-position: 0 -78px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-style-warning-marker-17 {
|
|
|
|
|
background-position: 0 -91px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-style-warning-marker-21 {
|
|
|
|
|
background-position: 0 -107px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-style-warning-marker-7 {
|
|
|
|
|
background-position: 0 -127px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.crown-container {
|
|
|
|
|
z-index: auto;
|
|
|
|
|
display: table;
|
|
|
|
|
padding-left: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.crown-container .row {
|
|
|
|
|
display: table-row;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.crown-container .row .item-crown {
|
|
|
|
|
display: table-cell;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-task {
|
|
|
|
|
background: url("../img/corona-task.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-task:hover {
|
|
|
|
|
background: url("../img/corona-task.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #87cbff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-gateway-exclusive {
|
|
|
|
|
background: url("../img/corona-gateway-exclusive.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-gateway-exclusive:hover {
|
|
|
|
|
background: url("../img/corona-gateway-exclusive.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #87cbff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-intermediate {
|
|
|
|
|
background: url("../img/corona-intermediate.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-intermediate:hover {
|
|
|
|
|
background: url("../img/corona-intermediate.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #87cbff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-end {
|
|
|
|
|
background: url("../img/corona-end.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-end:hover {
|
|
|
|
|
background: url("../img/corona-end.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #87cbff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-flow {
|
|
|
|
|
background: url("../img/corona-flow.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-flow:hover {
|
|
|
|
|
background: url("../img/corona-flow.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #87cbff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-settings {
|
|
|
|
|
background: url("../img/corona-settings.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-settings:hover {
|
|
|
|
|
background: url("../img/corona-settings.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #87cbff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-delete {
|
|
|
|
|
background: url("../img/corona-delete.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-delete:hover {
|
|
|
|
|
background: url("../img/corona-delete.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #87cbff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-textfield-rename {
|
|
|
|
|
background: url("../img/corona-textfield-rename.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-corona-textfield-rename:hover {
|
|
|
|
|
background: url("../img/corona-textfield-rename.png") no-repeat center;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
background-color: #87cbff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*Dynaform Creation Buttons*/
|
|
|
|
|
.pmui .mafeButton .pmMafeButtonsIconBlack {
|
|
|
|
|
background: #474747 url(../img/form.png) no-repeat center;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
height: 55px;
|
|
|
|
|
width: 100px;
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui .mafeButton .pmMafeButtonsIconPMTable {
|
|
|
|
|
background: #474747 url(../img/table.png) no-repeat center;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
height: 55px;
|
|
|
|
|
width: 80px;
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui .mafeButton .pmMafeButtonsIconCopy {
|
|
|
|
|
background: #474747 url(../img/copy_import.png) no-repeat center;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
height: 55px;
|
|
|
|
|
width: 80px;
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui.varButton-delete {
|
|
|
|
|
background: #e84c3d;
|
|
|
|
|
padding: 0 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui.varButton-edit {
|
|
|
|
|
background: #19bd9b;
|
|
|
|
|
padding: 0 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* AccordionItem */
|
|
|
|
|
.pmui-accordion-item-header {
|
|
|
|
|
background-color: #DFE8F6;
|
|
|
|
|
border-top: 1px solid #ada9a9;
|
|
|
|
|
border-bottom: 1px solid #ada9a9;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*.pmtrigger .newPmtrigger .pmui-treepanel-node-icon{
|
|
|
|
|
background: grey;
|
|
|
|
|
}*/
|
|
|
|
|
.pmcustomtrigger .pmui-treepanel-node-icon {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: -62px -294px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmcopytrigger .pmui-treepanel-node-icon {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: -62px -294px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmfunction .pmui-treepanel-node-father .pmui-treepanel-node-collapsed .pmui-treepanel-node-icon {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: -62px -294px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*accordion*/
|
|
|
|
|
.pmcustomtrigger {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: -63px -250px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmcopytrigger {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: -65px -271px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmFunctions {
|
|
|
|
|
background: url(../img/triggerWizard.png) no-repeat;
|
|
|
|
|
background-position: -66px -120px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmTrSharepoint {
|
|
|
|
|
background: url(../img/triggerWizard.png) no-repeat;
|
|
|
|
|
background-position: -79px -92px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmTrAlfresco {
|
|
|
|
|
background: url(../img/triggerWizard.png) no-repeat;
|
|
|
|
|
background-position: -72px -223px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmSugar {
|
|
|
|
|
background: url(../img/triggerWizard.png) no-repeat;
|
|
|
|
|
background-position: -68px -152px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmTalend {
|
|
|
|
|
background: url(../img/triggerWizard.png) no-repeat;
|
|
|
|
|
background-position: -85px -48px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-tooltip {
|
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.mafe-designer-assigment-button {
|
|
|
|
|
background-color: #d7d9dd;
|
|
|
|
|
font-size: 10;
|
|
|
|
|
text-transform: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-designer-assigment-grid .pmui-gridpanelcell {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-grid-button {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
height: 0;
|
|
|
|
|
padding: 0px 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-grid-button.button-icon-user .button-icon {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: 1px -195px;
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 17px;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-grid-button.button-icon-group .button-icon {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: -2px -135px;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 17px;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-grid-button .button-label {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-designer-assigment-grid .pmui-gridpanelcolumn {
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
padding: 0px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-designer-assigment-grid .mafe-assigment-panel {
|
|
|
|
|
padding: 0px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* PANEL */
|
|
|
|
|
/*
|
|
|
|
|
.mafe-assigment-panel .pmui-panel {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.mafe-assigment-panel-right{
|
|
|
|
|
background-color:#eaebed;
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-assigment-panel-global {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
padding-right: 0px;
|
|
|
|
|
} */
|
|
|
|
|
/* TEXT SEARCH */
|
|
|
|
|
.pmui.pmui-textfield.mafe-assigment-search {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* BUTTONS SEARCH */
|
|
|
|
|
/* GRID ASSIGNES*/
|
|
|
|
|
/*.mafe-designer-assigment-grid {
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
text-align: left;
|
|
|
|
|
padding: 0px 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-designer-assigment-grid .pmui-gridpanel-table{
|
|
|
|
|
min-height: 0em;
|
|
|
|
|
}*/
|
|
|
|
|
.pmui-pmtooltipmessage .pmui-button-label {
|
|
|
|
|
color: #999999;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmtooltipmessage .mafe-tooltip-close {
|
|
|
|
|
background: transparent;
|
|
|
|
|
margin: 0px 0px;
|
|
|
|
|
padding: 0px 0px;
|
|
|
|
|
width: auto;
|
|
|
|
|
height: auto;
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmtooltipmessage .mafe-tooltip-header {
|
|
|
|
|
background: #EEF1F6;
|
|
|
|
|
margin: 0px 7px;
|
|
|
|
|
padding: 4px 0px;
|
|
|
|
|
width: auto;
|
|
|
|
|
height: 6px;
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmtooltipmessage .mafe-tooltip-body {
|
|
|
|
|
background: #EEF1F6;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmtooltipmessage {
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
font-size: 10;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
-webkit-box-shadow: 2px 2px 5px 0px #999;
|
|
|
|
|
-moz-box-shadow: 2px 2px 5px 0px #999;
|
|
|
|
|
filter: shadow(color=#999999, direction=135, strength=2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#list-usersIngroup {
|
|
|
|
|
width: 175px;
|
|
|
|
|
max-height: 100px;
|
|
|
|
|
background: #eef1f6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#list-usersIngroup #list-usersIngroup-iem {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: block;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
width: 175px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#tooltipmessagecustombody {
|
|
|
|
|
float: left;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#tooltipmessagecustom #header {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
background-color: #e7e7e7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#tooltipmessagecustom #header a {
|
|
|
|
|
float: right;
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui .mafe-button-img-properties .button-icon {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: -91px -270px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui .mafe-button-img-edit .button-icon {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: -89px -292px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui .mafe-button-img-delete .button-icon {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: -62px -294px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui .mafe-button-img-delete .button-icon, .pmui .mafe-button-img-edit .button-icon, .pmui .mafe-button-img-properties .button-icon {
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.mafe-button-img-properties, a.mafe-button-img-delete, a.mafe-button-img-edit {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui .mafe-button-img-properties .button-icon {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: -91px -270px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui .mafe-button-img-edit .button-icon {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: -89px -292px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui .mafe-button-img-delete .button-icon {
|
|
|
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
|
|
|
|
background-position: -62px -294px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui .mafe-button-img-delete .button-icon, .pmui .mafe-button-img-edit .button-icon, .pmui .mafe-button-img-properties .button-icon {
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.mafe-button-img-properties, a.mafe-button-img-delete, a.mafe-button-img-edit {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.itemsSteps .pmui-treepanel-node-father > .pmui-treepanel-node-title .pmui-treepanel-node-icon {
|
|
|
|
|
background-image: none;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.itemsSteps .pmui-treepanel-node-leaf .pmui-treepanel-node-icon {
|
|
|
|
|
background-image: none;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.treePanelTriggers .pmui-treepanel-node-father > .pmui-treepanel-node-title .pmui-treepanel-node-icon {
|
|
|
|
|
background-image: none;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.treePanelTriggers .pmui-treepanel-node-leaf .pmui-treepanel-node-icon {
|
|
|
|
|
background-image: none;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.itemsSteps {
|
|
|
|
|
border-radius: 7px;
|
|
|
|
|
background: white;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.treePanelTriggers {
|
|
|
|
|
border-radius: '7px';
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
width: 216px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#accordionPanelTriggers .pmui-gridpanelcell-content {
|
|
|
|
|
padding: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-step-arrow-up {
|
|
|
|
|
background: url(../img/arrow-up.png) no-repeat;
|
|
|
|
|
background-size: 20px 10px;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-step-arrow-down {
|
|
|
|
|
background: url(../img/arrow-down.png) no-repeat;
|
|
|
|
|
background-size: 20px 10px;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.steps-placeholder {
|
|
|
|
|
background: rgba(128, 128, 128, 0.3);
|
|
|
|
|
border: 1px dashed #888;
|
|
|
|
|
list-style: none;
|
|
|
|
|
height: 2em;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #9b9b9b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.steps-placeholder .placeholder-index {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 7px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@charset "UTF-8";
|
|
|
|
|
.mafe-col {
|
|
|
|
|
background: #676767;
|
|
|
|
|
/*background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
|
|
|
|
background: -moz-linear-gradient(top, #b0b1b3 0%, #939497 10%, #727375 91%, #595959 100%);
|
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b0b1b3), color-stop(10%,#939497), color-stop(91%,#727375), color-stop(100%,#595959));
|
|
|
|
|
background: -webkit-linear-gradient(top, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
|
|
|
|
background: -o-linear-gradient(top, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
|
|
|
|
background: -ms-linear-gradient(top, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
|
|
|
|
background: linear-gradient(to bottom, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0b1b3', endColorstr='#595959',GradientType=0 );*/
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
width: auto;
|
|
|
|
|
padding: 6px 15px;
|
|
|
|
|
font-weight: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-body-properties {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-field-labelCell {
|
|
|
|
|
padding: 2px;
|
|
|
|
|
border-bottom: 1px solid #D6D6D6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-rowfield:hover {
|
|
|
|
|
background: #D6D6D6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-field-labelCell .pmui-textcontrol {
|
|
|
|
|
border: 1px solid white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-field-labelCell .pmui-textcontrol, .mafe-field-labelCell .pmui-dropdownlistcontrol {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-table-properties tr:nth-child(odd) {
|
|
|
|
|
background-color: #E5E5E5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-table-properties tr:nth-child(even) {
|
|
|
|
|
background-color: #F2F2F2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-field-labelCell .pmui-button {
|
|
|
|
|
color: #4e4d4d;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
float: right;
|
|
|
|
|
border: 1px solid #b1b1b1;
|
|
|
|
|
background: -moz-linear-gradient(top, #ffffff 0%, #eaeaea 10%, #cfcfcf 91%, #bababa 100%);
|
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(10%, #eaeaea), color-stop(91%, #cfcfcf), color-stop(100%, #bababa));
|
|
|
|
|
background: -webkit-linear-gradient(top, #ffffff 0%, #eaeaea 10%, #cfcfcf 90%, #bababa 100%);
|
|
|
|
|
background: -o-linear-gradient(top, #ffffff 0%, #eaeaea 10%, #cfcfcf 90%, #bababa 100%);
|
|
|
|
|
background: -ms-linear-gradient(top, #ffffff 0%, #eaeaea 10%, #cfcfcf 90%, #bababa 100%);
|
|
|
|
|
background: linear-gradient(to bottom, #ffffff 0%, #eaeaea 10%, #cfcfcf 90%, #bababa 100%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-rowfield .error {
|
|
|
|
|
outline: 1px solid #ecc3c2;
|
|
|
|
|
border: 1px solid white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-rowfield.error {
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmformgrid {
|
|
|
|
|
padding: 1em 0 1em 1em;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
background: #f1f1f1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-initialrow {
|
|
|
|
|
height: 10em !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-head,
|
|
|
|
|
.pmdesigner-formgrid-headrow,
|
|
|
|
|
.pmdesigner-formgrid-headcell {
|
|
|
|
|
padding: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-textMessageContent {
|
|
|
|
|
color: #777f8b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*.pmdesigner-mainpanel-slec,
|
|
|
|
|
.pmdesigner-formgrid,
|
|
|
|
|
.pmdesigner-formgrid-bodyrow,
|
|
|
|
|
.pmdesigner-formgrid-bodycell {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
border: 1px dotted #c0c0c0;
|
|
|
|
|
}*/
|
|
|
|
|
.pmdesigner-formgrid-bodyrow {
|
|
|
|
|
background: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodyrow:hover .pmdesigner-formgrid-bodycell {
|
|
|
|
|
background: #F0F0F0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-rowhandler {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
background: url("../img/moveUpDown.png") no-repeat center rgba(224, 222, 222, 0.8);
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0.3em;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
color: white;
|
|
|
|
|
cursor: move;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-window.pmdesigner-dropdownconfig .pmui-window-body {
|
|
|
|
|
padding: 0 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-gridfieldcell.gridfieldcell-bodycell.pmui-containeritembehavior-hover,
|
|
|
|
|
.pmdesigner-formgrid-bodycell.pmui-containeritembehavior-hover {
|
|
|
|
|
border-style: dashed;
|
|
|
|
|
background: #FCF8D6;
|
|
|
|
|
border-color: #e9ca27;
|
|
|
|
|
border-width: 2px;
|
|
|
|
|
color: orange;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell {
|
|
|
|
|
min-height: 2em;
|
|
|
|
|
background: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unique-cell {
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
color: #aaa8a8;
|
|
|
|
|
height: 5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
.pmdesigner-formgrid-bodycell.pmdesigner-active,
|
|
|
|
|
.pmdesigner-formgrid-bodyrow:hover .pmdesigner-formgrid-bodycell.pmdesigner-active
|
|
|
|
|
{
|
|
|
|
|
background: #ECECE9;
|
|
|
|
|
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod?EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
|
|
|
|
background: -moz-linear-gradient(top, #ffffff 0%, #eaeaea 10%, #cfcfcf 91%, #bababa 100%);
|
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(10%,#eaeaea), color-stop(91%,#cfcfcf), color-stop(100%,#bababa));
|
|
|
|
|
background: -webkit-linear-gradient(top, #ffffff 0%,#F1F3CA 10%,#cfcfcf 91%,#bababa 100%);
|
|
|
|
|
background: -o-linear-gradient(top, #ffffff 0%,#eaeaea 10%,#cfcfcf 91%,#bababa 100%);
|
|
|
|
|
background: -ms-linear-gradient(top, #ffffff 0%,#eaeaea 10%,#cfcfcf 91%,#bababa 100%);
|
|
|
|
|
background: linear-gradient(to bottom, #ffffff 0%,#eaeaea 10%,#cfcfcf 91%,#bababa 100%);
|
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#cfcfcf',GradientType=0 );
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
.pmdesigner-formgrid-bodycell.pmdesigner-active,
|
|
|
|
|
.pmdesigner-formgrid-bodyrow:hover .pmdesigner-formgrid-bodycell.pmdesigner-active,
|
|
|
|
|
.pmui-gridfieldcell.gridfieldcell-bodycell.pmdesigner-active {
|
|
|
|
|
background: #C0C0C0;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell .pmui-field-label {
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-headcell {
|
|
|
|
|
width: 8.333333333333%;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pmdesigner-mainpanel .pmui-contextmenu-target {
|
|
|
|
|
background: #F0F0F0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formpanel {
|
|
|
|
|
display: block;
|
|
|
|
|
border: 1px solid #e0e0e0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formpanel:hover {
|
|
|
|
|
background: #e0e0e0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui.ui-layout-pane.right-layout-panel {
|
|
|
|
|
padding: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui.pmui-panel.pmdesigner-layout-eastpanel {
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbox-title {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
background: linear-gradient(to bottom, #ffffff 0%, #eaeaea 10%, #cfcfcf 90%, #bababa 100%);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*.pmui-accordion-item-header {
|
|
|
|
|
background: #b0b1b3;
|
|
|
|
|
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod?EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
|
|
|
|
background: -moz-linear-gradient(top, #b0b1b3 0%, #939497 10%, #727375 91%, #595959 100%);
|
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b0b1b3), color-stop(10%,#939497), color-stop(91%,#727375), color-stop(100%,#595959));
|
|
|
|
|
background: -webkit-linear-gradient(top, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
|
|
|
|
background: -o-linear-gradient(top, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
|
|
|
|
background: -ms-linear-gradient(top, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
|
|
|
|
background: linear-gradient(to bottom, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0b1b3', endColorstr='#595959',GradientType=0 );
|
|
|
|
|
color: #F0F0F0;
|
|
|
|
|
border-color: #888;
|
|
|
|
|
}*/
|
|
|
|
|
.pmui-containeritembehavior-placeholder {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
background: rgba(128, 128, 128, 0.3);
|
|
|
|
|
border: 2px #888 dashed;
|
|
|
|
|
list-style: none;
|
|
|
|
|
height: 2em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
.pmui.pmui-listpanel.components-list {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
.toolbox-title {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
background: #2d3e50;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui.pmui-listpanel.components-list .pmui-listitem {
|
|
|
|
|
background: none;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui.pmui-listpanel.components-list .pmui-listitem:hover {
|
|
|
|
|
background: #e0e0e0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-controlslist .pmui-listitem .pmui-listitem-icon, .otherControlsList-list .pmui-listitem .pmui-listitem-icon {
|
|
|
|
|
background-image: url(../img/cmp-icons.png);
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.cmp-text .pmui-listitem-icon {
|
|
|
|
|
background-position: 0 -128px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.cmp-dropdown .pmui-listitem-icon {
|
|
|
|
|
background-position: 0 -144px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.cmp-checkbox .pmui-listitem-icon {
|
|
|
|
|
background-position: 0 -32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.cmp-radio .pmui-listitem-icon {
|
|
|
|
|
background-position: 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.cmp-label .pmui-listitem-icon {
|
|
|
|
|
background-position: 0 -64px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.cmp-datetime .pmui-listitem-icon {
|
|
|
|
|
background-position: 0 -16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.cmp-fieldset .pmui-listitem-icon {
|
|
|
|
|
background-position: 0 -80px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.cmp-formpanel .pmui-listitem-icon {
|
|
|
|
|
background-position: 0 -48px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.cmp-textarea .pmui-listitem-icon {
|
|
|
|
|
background-position: 0 -96px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.controls-submit .pmui-listitem-icon {
|
|
|
|
|
background: url("../img/submit.png") no-repeat;
|
|
|
|
|
width: 33px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.controls-button .pmui-listitem-icon {
|
|
|
|
|
background: url("../img/button.png") no-repeat;
|
|
|
|
|
width: 33px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.grid-field .pmui-listitem-icon {
|
|
|
|
|
background: url("../img/icon_grid.png") no-repeat;
|
|
|
|
|
width: 33px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.label-field .pmui-listitem-icon {
|
|
|
|
|
background: url("../img/label.png") no-repeat;
|
|
|
|
|
width: 33px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.subForm-field .pmui-listitem-icon {
|
|
|
|
|
background: url("../img/subform.png") no-repeat;
|
|
|
|
|
width: 33px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.fiel-field .pmui-listitem-icon {
|
|
|
|
|
background: url("../img/file2.png") no-repeat;
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subFormList-list .pmdesigner-subform .pmui-listitem-icon {
|
|
|
|
|
background: url("../img/subform.png") no-repeat;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.image-field .pmui-listitem-icon {
|
|
|
|
|
background: url("../img/image.png") no-repeat;
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.link-field .pmui-listitem-icon {
|
|
|
|
|
background: url("../img/link.png") no-repeat;
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-listitem.controls-title .pmui-listitem-icon {
|
|
|
|
|
background-position: 0 -112px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-window.pmdesigner-controlselector .pmui-window-body {
|
|
|
|
|
padding: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-window.pmdesigner-dependencyFieldWindow .pmui-window-body {
|
|
|
|
|
padding: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pm-titleListFields {
|
|
|
|
|
margin-left: 40px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pm-titleListDependent {
|
|
|
|
|
margin-left: 14px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pm-dependentFieldsGrid .pmui-button {
|
|
|
|
|
background: #e84c3d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pm-listFieldGrid .pmui-button {
|
|
|
|
|
background: #19bd9b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-dependencyFieldWindow .pmui-window-body {
|
|
|
|
|
background: #faf8f8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pm_labelfield .pmui-textcontrol {
|
|
|
|
|
border: 1px white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pm-listFieldGrid .pmui-gridpanelcell-content {
|
|
|
|
|
padding: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pm-dependentFieldsGrid .pmui-gridpanelcell-content {
|
|
|
|
|
padding: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pm-listFieldGrid .pmui-gridpanel-toolbar {
|
|
|
|
|
height: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pm-dependentFieldsGrid .pmui-gridpanel-toolbar {
|
|
|
|
|
height: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid {
|
|
|
|
|
/*background: rgb(150, 150, 150);*/
|
|
|
|
|
width: 99%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid .emptyform {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 10em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*.pmdesigner-formgrid-bodyrow.my_row{
|
|
|
|
|
border-left: 3px solid #c0c0c0;
|
|
|
|
|
border-bottom: 3px solid #c0c0c0;
|
|
|
|
|
}*/
|
|
|
|
|
.pmdesigner-formgrid-bodycell.pmui-textcontrol {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell .pmui-buttonfield .pmui-field-control {
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell .pmui-datetimefield .icon-field {
|
|
|
|
|
background: url("../img/calendar.png") no-repeat;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0.6em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmsuggestfield .icon-field {
|
|
|
|
|
background: url("../img/suggest.png") no-repeat;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0.6em;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*.pmdesigner-formgrid-bodycell .pmui-field-textLabel{
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: inherit;
|
|
|
|
|
}*/
|
|
|
|
|
.pmdesigner-formgrid-bodycell .pmui-field-label {
|
|
|
|
|
padding: 6px 3px 6px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell .pmui-field-textLabel {
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell.colspan_12-11 .pmui-field-control {
|
|
|
|
|
width: 73%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell.colspan_10-9 .pmui-field-control {
|
|
|
|
|
width: 72%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell.colspan_8-7 .pmui-field-control {
|
|
|
|
|
width: 70%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell.colspan_6 .pmui-field-control {
|
|
|
|
|
width: 69%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell.colspan_5 .pmui-field-control {
|
|
|
|
|
width: 68%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell.colspan_4 .pmui-field-control {
|
|
|
|
|
width: 65%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell.colspan_3 .pmui-field-control {
|
|
|
|
|
width: 61%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell.colspan_2 .pmui-field-control {
|
|
|
|
|
width: 53%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell.colspan_1 .pmui-field-control {
|
|
|
|
|
width: 26%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell .pmui-buttonfield .pmui-field-control {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*custom styles formdesigner*/
|
|
|
|
|
/*///////////////////////////////////////////////////////
|
|
|
|
|
/
|
|
|
|
|
/
|
|
|
|
|
/
|
|
|
|
|
/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/
|
|
|
|
|
/
|
|
|
|
|
/
|
|
|
|
|
/*/
|
|
|
|
|
#designer-body .pmui-accordion-item-body {
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
padding: 0 5px 0 5px;
|
|
|
|
|
background: #e0e0e0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-mainlayout, #designer-body .right-layout-panel, .pmdesigner-layout-eastpanel {
|
|
|
|
|
background: #f1f1f1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .pmui-accordion-item-body .pmui-listitem {
|
|
|
|
|
padding: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .pmui.pmui-listpanel.components-list .pmui-listitem {
|
|
|
|
|
color: white;
|
|
|
|
|
border-bottom: 2px solid #d6d6d6;
|
|
|
|
|
background: white;
|
|
|
|
|
cursor: move;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .pmui.pmui-listpanel.components-list .pmui-listitem:hover {
|
|
|
|
|
color: black;
|
|
|
|
|
background: #e0e0e0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .pmListItem-buttonEdit {
|
|
|
|
|
background: white;
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .pmui.pmui-listpanel.components-list .pmui-listitem:hover .pmListItem-buttonEdit {
|
|
|
|
|
background-color: #19bd9b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .pmui-accordion-item-header {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .pmui-accordion-item-container {
|
|
|
|
|
border-left: 1px solid white;
|
|
|
|
|
border-right: 1px solid white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .pmui-accordion-item-header .pmui-textcontrol {
|
|
|
|
|
outline: none;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .right-layout-panel .pmui-listpanel-toolbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .pmui-accordion-item-header {
|
|
|
|
|
background: #676E7C;
|
|
|
|
|
color: white;
|
|
|
|
|
border-color: #d8dbdf;
|
|
|
|
|
padding: 3px 0 6px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .otherControlsList-list {
|
|
|
|
|
background: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .otherControlsList-list .pmui-listitem {
|
|
|
|
|
background: white;
|
|
|
|
|
color: black;
|
|
|
|
|
border-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .otherControlsList-list .pmui-listitem:hover {
|
|
|
|
|
background: #e0e0e0;
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .ui-layout-pane {
|
|
|
|
|
overflow: initial;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body {
|
|
|
|
|
background: #c0c0c0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .label-other-controls {
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .pmdesigner-formgrid-tableContainer {
|
|
|
|
|
overflow: auto;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 97%;
|
|
|
|
|
border: 1px solid #C0C0C0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#otherControlsList-firstItem .pmui-listitem-text, #otherControlsList-secondItem .pmui-listitem-text {
|
|
|
|
|
/*display: none;*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#idOtherControlsList .pmui-listitem-text {
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 50px;
|
|
|
|
|
top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .formGrid-freeCell {
|
|
|
|
|
width: 98%;
|
|
|
|
|
height: 36px;
|
|
|
|
|
border: 3px dotted #888888;
|
|
|
|
|
background: #c0c0c0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-propertiestable {
|
|
|
|
|
background: white;
|
|
|
|
|
padding: 0 2px 0 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-field.formview-view .pmui-textcontrol,
|
|
|
|
|
.pmui-field.formview-view .pmui-dropdownlistcontrol,
|
|
|
|
|
.pmui-field.formview-view .pmui-textareacontrol,
|
|
|
|
|
.pmui-field.formview-view .pmui-passwordcontrol,
|
|
|
|
|
.pmui-field.formview-view .pmui-uploadcontrol,
|
|
|
|
|
.pmui-field.formview-view .pmui-datetimecontrol {
|
|
|
|
|
border: 1px solid white;
|
|
|
|
|
background: #ECECEC;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-field.formview-disabled .pmui-textcontrol,
|
|
|
|
|
.pmui-field.formview-disabled .pmui-dropdownlistcontrol,
|
|
|
|
|
.pmui-field.formview-disabled .pmui-textareacontrol,
|
|
|
|
|
.pmui-field.formview-disabled .pmui-passwordcontrol,
|
|
|
|
|
.pmui-field.formview-disabled .pmui-uploadcontrol,
|
|
|
|
|
.pmui-field.formview-disabled .pmui-datetimecontrol {
|
|
|
|
|
color: #757575;
|
|
|
|
|
background: #ECECEC;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#designer-body .pmui-accordion-panel-container #first-item .pmui-accordion-item-body {
|
|
|
|
|
height: 200px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#third-item .pmui-accordion-item-body {
|
|
|
|
|
height: 850px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmTextContainer1 {
|
|
|
|
|
width: 60px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
margin: 1px;
|
|
|
|
|
color: #ee710f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmTextContainer1 span, .pmNameContent {
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmTextContainer2 {
|
|
|
|
|
width: auto;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #21366d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmNameContent {
|
|
|
|
|
width: 130px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell .pmui-pmsub-titlefield h5 {
|
|
|
|
|
background-color: #9FA1AA;
|
|
|
|
|
color: white;
|
|
|
|
|
margin: 0.5em 0 0.5em 0;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell.pmdesigner-active .pmui-pmsub-titlefield h5 {
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell .pmui-pmtitlefield h4 {
|
|
|
|
|
background-color: #383D41;
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
margin: 0.5em 0 0.5em 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-formgrid-bodycell.pmdesigner-active .pmui-pmtitlefield h4 {
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-itemcontrol-x {
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
vertical-align: super;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #e7e7e7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-itemcontrol-x:hover {
|
|
|
|
|
color: #8b8888;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-itemcontrol-itemselected,
|
|
|
|
|
.pmdesigner-itemcontrol-optselected,
|
|
|
|
|
.pmdesigner-itemcontrol-bracketsselected {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-itemcontrol-itemselected > a {
|
|
|
|
|
background: #f5f2f2;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
margin: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-itemcontrol-itemselected > a:hover {
|
|
|
|
|
background: #e7e7e7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-itemcontrol-bracketsselected > a {
|
|
|
|
|
color: red;
|
|
|
|
|
padding: 1px;
|
|
|
|
|
background: #f5f2f2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-itemcontrol-optselected > a {
|
|
|
|
|
color: blue;
|
|
|
|
|
padding: 1px;
|
|
|
|
|
background: #f5f2f2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* areacontrol*/
|
|
|
|
|
.pmdesigner-areacontrol {
|
|
|
|
|
background: white;
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-suggestcontrol {
|
|
|
|
|
height: 20%;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-suggestcontrol input {
|
|
|
|
|
height: 20px;
|
|
|
|
|
width: 90%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-suggestfields {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 52%;
|
|
|
|
|
z-index: 5;
|
|
|
|
|
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
|
|
|
|
|
-webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
|
|
|
|
|
-moz-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-suggestfields ul {
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-suggestfields a {
|
|
|
|
|
display: block;
|
|
|
|
|
background: #DFDFDF;
|
|
|
|
|
color: #2d3e50;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
padding: 0.4em 0.6em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-suggestfields li {
|
|
|
|
|
left: 0px;
|
|
|
|
|
top: 0px;
|
|
|
|
|
width: auto;
|
|
|
|
|
height: auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-suggestfields a:hover {
|
|
|
|
|
background: #838486;
|
|
|
|
|
color: white;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-areacontrol-operations {
|
|
|
|
|
height: 10%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-areacontrol-operationsitem {
|
|
|
|
|
background: #c4c9ca;
|
|
|
|
|
height: 12px;
|
|
|
|
|
padding: 3px 9px;
|
|
|
|
|
margin: 0 2px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-areacontrol-operationsitem:hover {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmdesigner-areacontrol-areaformula {
|
|
|
|
|
height: auto;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
background: #f5f2f2;
|
|
|
|
|
padding: 10px 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridFieldItem .pmui-field-label {
|
|
|
|
|
background: #888888;
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: initial;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridFieldItem .pmui-field-control {
|
|
|
|
|
padding: 3%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridFieldItem {
|
|
|
|
|
padding: initial;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gridfielditem-header {
|
|
|
|
|
border-bottom: 1px solid #c0c0c0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridFieldItem-textarea .pmui-textareacontrol {
|
|
|
|
|
resize: vertical;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridFieldItem-configFieldIcon {
|
|
|
|
|
background: url("../img/config.png") no-repeat white;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 20%;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridFieldItem-suggest .icon-field {
|
|
|
|
|
background: url("../img/suggest.png") no-repeat;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0.7em;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridFieldItem-datetime .icon-field {
|
|
|
|
|
background: url("../img/datetime.png") no-repeat;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0.7em;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-gridfield .gridfieldcell-bodycell {
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
float: left;
|
|
|
|
|
background: white;
|
|
|
|
|
border-left: 1px solid #c0c0c0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-gridfield .GridField-list {
|
|
|
|
|
padding: 1px;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
background: #c0c0c0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*GridField-black-cell-contain
|
|
|
|
|
GridField-black-cell-icon
|
|
|
|
|
GridField-black-cell-message
|
|
|
|
|
*/
|
|
|
|
|
.gridfieldcell-bodycell .GridField-black-cell-icon {
|
|
|
|
|
background: url(../img/addControl.png) no-repeat;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 50%;
|
|
|
|
|
margin-left: 20%;
|
|
|
|
|
display: block;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gridfieldcell-bodycell .GridField-black-cell-contain {
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: black;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*.pmui-gridfield {
|
|
|
|
|
box-sizing : border-box;
|
|
|
|
|
border : 2px solid #c0c0c0;
|
|
|
|
|
padding : 5px 5px 5px 8px;
|
|
|
|
|
}*/
|
|
|
|
|
.GridFieldItem.GridFieldItem-text .GridFieldItem-iconControl {
|
|
|
|
|
background: url(../img/inputext.png) no-repeat;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
width: 89%;
|
|
|
|
|
padding: 7px 0px 7px 0;
|
|
|
|
|
margin: 2% 0 0 4%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridFieldItem.GridFieldItem-textarea .GridFieldItem-iconControl {
|
|
|
|
|
background: url(../img/textarea.png) no-repeat;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
width: 89%;
|
|
|
|
|
padding: 7px 0px 7px 0;
|
|
|
|
|
margin: 2% 0 0 4%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridFieldItem.GridFieldItem-dropdown .GridFieldItem-iconControl {
|
|
|
|
|
background: url(../img/select.png) no-repeat;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
width: 89%;
|
|
|
|
|
padding: 7px 0px 7px 0;
|
|
|
|
|
margin: 2% 0 0 4%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridFieldItem.GridFieldItem-checkbox .GridFieldItem-iconControl {
|
|
|
|
|
background: url(../img/checkbox.png) no-repeat;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
width: 47%;
|
|
|
|
|
height: 14px;
|
|
|
|
|
/* padding: 25px 75px 1px 1px; */
|
|
|
|
|
margin: 3% 0 0 25%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridFieldItem.GridFieldItem-radio .GridFieldItem-iconControl {
|
|
|
|
|
background: url(../img/radio.png) no-repeat;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
width: 47%;
|
|
|
|
|
height: 14px;
|
|
|
|
|
/* padding: 25px 75px 1px 1px; */
|
|
|
|
|
margin: 3% 0 0 25%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridFieldItem.GridFieldItem-suggest .GridFieldItem-iconControl {
|
|
|
|
|
background: url(../img/inputext.png) no-repeat;
|
|
|
|
|
width: 80%;
|
|
|
|
|
height: 1.7em;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
margin: 2% 1% 1% 11%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.GridField-listContainer {
|
|
|
|
|
overflow: auto;
|
|
|
|
|
height: inherit;
|
|
|
|
|
padding-left: 9px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmimagefield-imageContainer {
|
|
|
|
|
background: url(../img/image.png) no-repeat center #e7e7e7;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmimagefield-commentContainer {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmlinkfield.PMLinkField-noUrl .PMLinkField-link {
|
|
|
|
|
background: url("../img/link_web.png") no-repeat center;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
height: 30px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmlinkfield.PMLinkField-noUrl .PMLinkField-linkContainer {
|
|
|
|
|
text-align: center;
|
|
|
|
|
background-color: #F5F5F5;
|
|
|
|
|
border: 1px solid #DFDDDD;
|
|
|
|
|
height: 30px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmlinkfield .PMLinkField-linkContainer {
|
|
|
|
|
padding-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmlinkfield .PMLinkField-linkContainer .PMLinkField-link {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
color: #53539e;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmlinkfield.PMLinkField-noUrl .PMLinkField-linkContainer {
|
|
|
|
|
padding-top: initial;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pm-textlabelfield .pmui-textlabel-field {
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmformfield .pmFormField-formContainer {
|
|
|
|
|
text-align: center;
|
|
|
|
|
background-color: #F5F5F5;
|
|
|
|
|
border: 1px solid #DFDDDD;
|
|
|
|
|
height: 30px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding-bottom: 2px;
|
|
|
|
|
padding-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmformfield .pmFormField-formIcon {
|
|
|
|
|
background: url("../img/subform.png") no-repeat;
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmformfield .pmui-field-label {
|
|
|
|
|
background: #d3d0d0;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pmui-pmformfield .pmFormField-editIcon {
|
|
|
|
|
background: url("../img/edit.png") no-repeat;
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "SourceSansPro";
|
|
|
|
|
src: url('../fonts/SourceSansPro-Regular/SourceSansPro-Regular-webfont.eot');
|
|
|
|
|
src: url('../fonts/SourceSansPro-Regular/SourceSansPro-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/SourceSansPro-Regular/SourceSansPro-Regular-webfont.ttf') format('truetype'), url('../fonts/SourceSansPro-Regular/SourceSansPro-Regular-webfont.eot') format('embedded-opentype'), url('../fonts/SourceSansPro-Regular/SourceSansPro-Regular-webfont.woff') format('woff'), url('../fonts/SourceSansPro-Regular/SourceSansPro-Regular-webfont.svg') format('svg');
|
|
|
|
|
}
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "SourceSansProBold";
|
|
|
|
|
src: url('../fonts/SourceSansPro-Bold/SourceSansPro-Bold-webfont.eot');
|
|
|
|
|
src: url('../fonts/SourceSansPro-Bold/SourceSansPro-Bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/SourceSansPro-Bold/SourceSansPro-Bold-webfont.ttf') format('truetype'), url('../fonts/SourceSansPro-Bold/SourceSansPro-Bold-webfont.eot') format('embedded-opentype'), url('../fonts/SourceSansPro-Bold/SourceSansPro-Bold-webfont.woff') format('woff'), url('../fonts/SourceSansPro-Bold/SourceSansPro-Bold-webfont.svg') format('svg');
|
|
|
|
|
}
|
|
|
|
|
body {
|
|
|
|
|
font-family: 'SourceSansProRegular', Arial, Tahoma, Verdana;
|
|
|
|
|
background: #fff;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
.fd-list {
|
|
|
|
|
/*list-style: none;*/
|
|
|
|
|
border-color: #bbb;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-width: 0 0 1px 0;
|
|
|
|
|
background: #f8f8f8;
|
|
|
|
|
font-size:11px;
|
|
|
|
|
padding: 0.3em;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.fd-list:nth-child(odd) {
|
|
|
|
|
background: #eaebed;
|
|
|
|
|
}
|
|
|
|
|
.fd-list:hover {
|
|
|
|
|
background: #e0e0e0;
|
|
|
|
|
}
|
|
|
|
|
.fd-list-responsive {
|
|
|
|
|
position: relative;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
width: 54px;
|
|
|
|
|
height: 54px;
|
|
|
|
|
float: left;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background: white;
|
|
|
|
|
margin: 4px;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
border: 1px solid darkgray;
|
|
|
|
|
}
|
|
|
|
|
.fd-button-panel{
|
|
|
|
|
text-align: right;
|
|
|
|
|
border-top: 1px solid #e5e5e5;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
.fd-button {
|
|
|
|
|
font-family: "SourceSansPro", Arial, Tahoma, Verdana;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
background-color: #1e91d1;
|
|
|
|
|
text-align: center;
|
|
|
|
|
transition: all .5s;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
margin: 0px 0px 0px 10px;
|
|
|
|
|
padding: 7px 20px;
|
|
|
|
|
}
|
|
|
|
|
.fd-button:hover {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
}
|
|
|
|
|
.fd-button-success {
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
background-color: #1fbc99;
|
|
|
|
|
border: 1px solid #1ba385;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
.fd-button-link {
|
|
|
|
|
color: #383838;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
background: none;
|
|
|
|
|
padding: initial;
|
|
|
|
|
}
|
|
|
|
|
.fd-button-create {
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
background-color: #1fbc99;
|
|
|
|
|
border: 1px solid #1ba385;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
background: #1fbc99 url(../img/ico_mor2.png) no-repeat 5px center;
|
|
|
|
|
}
|
|
|
|
|
.fd-button-yes{
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
background-color: #1fbc99;
|
|
|
|
|
border: 1px solid #1ba385;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
.fd-button-no{
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
background-color: #e4655f;
|
|
|
|
|
border: 1px solid #e14333;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
.fd-table tr:nth-child(odd) {
|
|
|
|
|
background-color: #E5E5E5;
|
|
|
|
|
}
|
|
|
|
|
.fd-table tr:nth-child(even) {
|
|
|
|
|
background-color: #F2F2F2;
|
|
|
|
|
}
|
|
|
|
|
.fd-tbody {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
}
|
|
|
|
|
.fd-table-th {
|
|
|
|
|
background: #3397e1;
|
|
|
|
|
color : white;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
padding: 6px 15px;
|
|
|
|
|
font-weight: inherit;
|
|
|
|
|
}
|
|
|
|
|
.fd-table-td {
|
|
|
|
|
padding: 2px;
|
|
|
|
|
border-bottom: 1px solid #D6D6D6;
|
|
|
|
|
}
|
|
|
|
|
.fd-table-td-error {
|
|
|
|
|
border: 1px solid red;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-placeholder {
|
|
|
|
|
background: rgba(128, 128, 128, 0.3);
|
|
|
|
|
border: 1px dashed #888;
|
|
|
|
|
height: 40px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-top:6px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid {
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
border:1px solid #C0C0C0;
|
|
|
|
|
height:84px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin:20px 6px 6px 6px;
|
|
|
|
|
padding:6px;
|
|
|
|
|
white-space:nowrap;
|
|
|
|
|
/*overflow-x: scroll;
|
|
|
|
|
width: 600px;*/
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid > * {
|
|
|
|
|
padding: 1px 1px 1px 1px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 130px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
border:1px solid #C0C0C0;
|
|
|
|
|
margin-right:1px;
|
|
|
|
|
margin-top:20px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-placeholder {
|
|
|
|
|
background: rgba(128, 128, 128, 0.3);
|
|
|
|
|
border: 1px dashed #888;
|
|
|
|
|
height: 59px;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
.grid-item-field{
|
|
|
|
|
margin:20px 6px 6px 6px;
|
|
|
|
|
padding:4px;
|
|
|
|
|
position:relative;
|
|
|
|
|
border:1px solid white;
|
|
|
|
|
height: 30px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-field-label{
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 20px;
|
|
|
|
|
width: 60px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-contentRequired {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 20px;
|
|
|
|
|
left: 65px;
|
|
|
|
|
color:red;
|
|
|
|
|
display:none;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-text {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-textarea {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-dropdown {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-checkbox {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-checkgroup {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-radio {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-datetime {
|
|
|
|
|
height: 17px;
|
|
|
|
|
border: 1px solid #c0c0c0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-suggest {
|
|
|
|
|
height: 17px;
|
|
|
|
|
border: 1px solid #c0c0c0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-suggest-placeholder{
|
|
|
|
|
color: gray;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-hidden {
|
|
|
|
|
height: 17px;
|
|
|
|
|
border: 1px dashed #c0c0c0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 1px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-title {
|
|
|
|
|
padding: 4px;
|
|
|
|
|
font-family: "Montserrat",sans-serif;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
background: white;
|
|
|
|
|
color: #555151;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 1px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-subtitle {
|
|
|
|
|
padding: 3px;
|
|
|
|
|
font-family: "Montserrat",sans-serif;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
background: white;
|
|
|
|
|
color: #555151;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 1px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-annotation {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 1px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top:18px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
height: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-link {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top:18px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
height: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-image {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
height: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-file {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
height: 18px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-submit {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 1px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-button {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 1px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-panel{
|
|
|
|
|
border: 1px solid #DADADA;
|
|
|
|
|
background-color: #F6F5F3;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 1px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 1px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
height: 34px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-msgpanel{
|
|
|
|
|
border: 1px solid #DADADA;
|
|
|
|
|
background-color: #F6F5F3;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 1px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 1px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
height: 34px;
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-geomap {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
height: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-qrcode {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
height: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-signature {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
height: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-imagem {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
height: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-audiom {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
height: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-videom {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 70px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
top: 18px;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
height: 18px;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-griditem-gridtitle{
|
|
|
|
|
position:absolute;
|
|
|
|
|
border:none;
|
|
|
|
|
margin:0px;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
left:6px;
|
|
|
|
|
width:auto;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-griditem-gridplaceholder{
|
|
|
|
|
position:absolute;
|
|
|
|
|
border:none;
|
|
|
|
|
margin:25px 0px 0px 0px;
|
|
|
|
|
color:gray;
|
|
|
|
|
left:6px;
|
|
|
|
|
width:auto;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-griditem-columnRequired {
|
|
|
|
|
color: red;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-text-column {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-textarea-column {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 100%;
|
|
|
|
|
resize: vertical;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-dropdown-column {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.fd-gridForm-grid-link-column {
|
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
color: blue;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
.fd-designer-button{
|
|
|
|
|
display:inline-block;
|
|
|
|
|
border-left:1px solid #70b5ec;
|
|
|
|
|
padding: 5px 6px;
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
width:24px;
|
|
|
|
|
height:24px;
|
|
|
|
|
}
|
|
|
|
|
.fd-designer-button:hover{
|
|
|
|
|
background: #2481c5;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.fd-drag-drop{
|
|
|
|
|
vertical-align:top;
|
|
|
|
|
cursor: move;
|
|
|
|
|
}
|
|
|
|
|
.fd-drag-drop-placeholder{
|
|
|
|
|
background: rgba(128, 128, 128, 0.3);
|
|
|
|
|
border: 2px dashed #888;
|
|
|
|
|
height: 31px;
|
|
|
|
|
}
|
|
|
|
|
.fd-tooltip-date-format>div{
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
height: 400px;
|
|
|
|
|
width: 309px;
|
|
|
|
|
}
|
|
|
|
|
.fd-tooltip{
|
|
|
|
|
padding:3px;
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
}
|
|
|
|
|
.fd-message-error{
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: #F5736D;
|
|
|
|
|
padding: 4px 10px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul.CodeMirror-hints {
|
|
|
|
|
z-index: 10000;
|
|
|
|
|
}
|
|
|
|
|
.ui-accordion-header {
|
|
|
|
|
color:white;
|
|
|
|
|
background:#3397e1;
|
|
|
|
|
border-top: 1px solid #3397e1;
|
|
|
|
|
border-bottom:1px solid #262932;
|
|
|
|
|
border-left:1px solid #262932;
|
|
|
|
|
border-right:1px solid #262932;
|
|
|
|
|
border-radius:initial;
|
|
|
|
|
font-size:12px;
|
|
|
|
|
text-align:center;
|
|
|
|
|
}
|
|
|
|
|
.ui-accordion-header.ui-state-active {
|
|
|
|
|
background: white;
|
|
|
|
|
color:#3397e1;
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-pane-north{
|
|
|
|
|
border:1px solid #2979b8;
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-pane-center{
|
|
|
|
|
border-top: none;
|
|
|
|
|
border-right: none;
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
|
|
|
|
.ui-layout-toggler-west div {
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 35px;
|
|
|
|
|
}
|
|
|
|
|
.ui-datepicker {
|
|
|
|
|
border: 1px solid #DADADA;
|
|
|
|
|
background: #fcfdfd;
|
|
|
|
|
color: #222222;
|
|
|
|
|
}
|
|
|
|
|
.ui-datepicker-header {
|
|
|
|
|
border: 1px solid #fcfdfd;
|
|
|
|
|
background: white;
|
|
|
|
|
color: black;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
.ui-datepicker .ui-state-default:not(.ui-state-active):not(.ui-state-highlight) {
|
|
|
|
|
border: 1px solid #DADADA;
|
|
|
|
|
background: #fcfdfd;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #2e6e9e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* -- begin PMPopOver -- */
|
|
|
|
|
|
|
|
|
|
.mafe-popover {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 1010;
|
|
|
|
|
display: none;
|
|
|
|
|
padding: 1px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
background-clip: padding-box;
|
|
|
|
|
border: 1px solid rgba(0,0,0,.2);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
|
|
|
|
box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
|
|
|
|
white-space: normal;
|
|
|
|
|
text-align: center;
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
-webkit-transition: opacity .15s linear;
|
|
|
|
|
transition: opacity .15s linear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover.in {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover-content {
|
|
|
|
|
padding: 9px 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover>.arrow, .mafe-popover>.arrow:after {
|
|
|
|
|
position: absolute;
|
|
|
|
|
display: block;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border-color: transparent;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover>.arrow:after {
|
|
|
|
|
border-width: 10px;
|
|
|
|
|
content: "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover.right>.arrow:after {
|
|
|
|
|
content: " ";
|
|
|
|
|
left: 1px;
|
|
|
|
|
bottom: -10px;
|
|
|
|
|
border-left-width: 0;
|
|
|
|
|
border-right-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover.left>.arrow:after {
|
|
|
|
|
content: " ";
|
|
|
|
|
right: 1px;
|
|
|
|
|
bottom: -10px;
|
|
|
|
|
border-right-width: 0;
|
|
|
|
|
border-left-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover.top>.arrow:after {
|
|
|
|
|
content: " ";
|
|
|
|
|
bottom: 1px;
|
|
|
|
|
right: -10px;
|
|
|
|
|
border-bottom-width: 0;
|
|
|
|
|
border-top-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover.bottom>.arrow:after {
|
|
|
|
|
content: " ";
|
|
|
|
|
top: 1px;
|
|
|
|
|
right: -10px;
|
|
|
|
|
border-top-width: 0;
|
|
|
|
|
border-bottom-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover>.arrow {
|
|
|
|
|
border-width: 11px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover.right>.arrow {
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: -11px;
|
|
|
|
|
margin-top: -11px;
|
|
|
|
|
border-left-width: 0;
|
|
|
|
|
border-right-color: rgba(0,0,0,.25);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover.left>.arrow {
|
|
|
|
|
top: 50%;
|
|
|
|
|
right: -11px;
|
|
|
|
|
margin-top: -11px;
|
|
|
|
|
border-right-width: 0;
|
|
|
|
|
border-left-color: rgba(0,0,0,.25);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover.top>.arrow {
|
|
|
|
|
right: 50%;
|
|
|
|
|
bottom: -11px;
|
|
|
|
|
margin-right: -11px;
|
|
|
|
|
border-bottom-width: 0;
|
|
|
|
|
border-top-color: rgba(0,0,0,.25);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover.bottom>.arrow {
|
|
|
|
|
right: 50%;
|
|
|
|
|
top: -11px;
|
|
|
|
|
margin-right: -11px;
|
|
|
|
|
border-top-width: 0;
|
|
|
|
|
border-bottom-color: rgba(0,0,0,.25);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover :before, .mafe-popover :after {
|
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* -- end PMPopOver -- */
|
|
|
|
|
|
|
|
|
|
.mafe-deprecated-control {
|
|
|
|
|
line-height: 1;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-deprecated-control::before {
|
|
|
|
|
font-family: FontAwesome;
|
|
|
|
|
content: "\f12a";
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
width: 1.2em;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
height: 1.2em;
|
|
|
|
|
background: red;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 1.2em;
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-popover.deprecated {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-deprecated-title {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #B65858;
|
|
|
|
|
backgroud: none;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.deprecated-ok-btn {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
text-align: center;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
background-image: none;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #5cb85c;
|
|
|
|
|
border-color: #4cae4c;
|
|
|
|
|
padding: 5px 10px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid-item-field .mafe-deprecated-control {
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 1.2em;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-alert {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
padding: 15px 30px 15px 15px;
|
|
|
|
|
border: 1px solid #ebccd1;
|
|
|
|
|
color: #a94442;
|
|
|
|
|
background-color: #f2dede;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mafe-alert .button-close {
|
|
|
|
|
background: none;
|
|
|
|
|
border: none;
|
|
|
|
|
color: inherit;
|
|
|
|
|
position: relative;
|
|
|
|
|
right: -22px;
|
|
|
|
|
float: right;
|
|
|
|
|
outline: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pm-mafe-grid-item .mafe-deprecated-control {
|
|
|
|
|
float: left;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.datetime-gadget-class {
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
2025-04-06 22:54:52 +00:00
|
|
|
.ui-widget {
|
|
|
|
|
font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-widget-overlay {
|
|
|
|
|
opacity: .73 !important;
|
|
|
|
|
background: #343131 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-accordion .ui-accordion-header {
|
|
|
|
|
display: block;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: relative;
|
|
|
|
|
margin: 2px 0 0 0;
|
|
|
|
|
padding: 0.5em 0.5em 0.5em 0.7em;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|