Spaces:
Sleeping
Sleeping
| /* | |
| * 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 ; | |
| padding: 0 ; | |
| margin: 0 ; | |
| overflow: hidden ; | |
| position: absolute ; | |
| opacity: 0 ; | |
| filter: Alpha(Opacity="0") ; | |
| } | |
| .ui-layout-mask-inside-pane { /* masks always inside pane EXCEPT when pane is an iframe */ | |
| top: 0 ; | |
| left: 0 ; | |
| width: 100% ; | |
| height: 100% ; | |
| } | |
| 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 ; | |
| overflow: visible ; | |
| } | |
| body.ui-layout-container { | |
| position: static ; | |
| top: auto ; | |
| bottom: auto ; | |
| left: auto ; | |
| right: auto ; | |
| /* only IE6 has container width & height set by Layout */ | |
| _width: auto ; | |
| _height: auto ; | |
| } | |
| .ui-layout-resizer, .ui-layout-toggler { | |
| display: none ; | |
| } | |
| /* | |
| * Default pane print styles disables positioning, borders and backgrounds. | |
| * You can modify these styles however it suit your needs. | |
| */ | |
| .ui-layout-pane { | |
| border: none ; | |
| background: transparent ; | |
| position: relative ; | |
| top: auto ; | |
| bottom: auto ; | |
| left: auto ; | |
| right: auto ; | |
| width: auto ; | |
| height: auto ; | |
| overflow: visible ; | |
| } | |
| } | |
| /*! jQuery UI - v1.10.3 - 2013-09-02 | |
| * http://jqueryui.com | |
| * Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css | |
| * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=11px&cornerRadius=5px&bgColorHeader=%235c9ccc&bgTextureHeader=gloss_wave&bgImgOpacityHeader=55&borderColorHeader=%234297d7&fcHeader=%23ffffff&iconColorHeader=%23d8e7f3&bgColorContent=%23fcfdfd&bgTextureContent=inset_hard&bgImgOpacityContent=100&borderColorContent=%23a6c9e2&fcContent=%23222222&iconColorContent=%23469bdd&bgColorDefault=%23dfeffc&bgTextureDefault=glass&bgImgOpacityDefault=85&borderColorDefault=%23c5dbec&fcDefault=%232e6e9e&iconColorDefault=%236da8d5&bgColorHover=%23d0e5f5&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=%2379b7e7&fcHover=%231d5987&iconColorHover=%23217bc0&bgColorActive=%23f5f8f9&bgTextureActive=inset_hard&bgImgOpacityActive=100&borderColorActive=%2379b7e7&fcActive=%23e17009&iconColorActive=%23f9bd01&bgColorHighlight=%23fbec88&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=%23fad42e&fcHighlight=%23363636&iconColorHighlight=%232e83ff&bgColorError=%23fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=%23cd0a0a&fcError=%23cd0a0a&iconColorError=%23cd0a0a&bgColorOverlay=%23aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=%23aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px | |
| * Copyright 2013 jQuery Foundation and other contributors Licensed MIT */ | |
| /* Layout helpers | |
| ----------------------------------*/ | |
| .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-clearfix { | |
| min-height: 0; /* support: IE7 */ | |
| } | |
| .ui-helper-zfix { | |
| width: 100%; | |
| height: 100%; | |
| top: 0; | |
| left: 0; | |
| position: absolute; | |
| opacity: 0; | |
| filter:Alpha(Opacity=0); | |
| } | |
| .ui-front { | |
| z-index: 100; | |
| } | |
| /* Interaction Cues | |
| ----------------------------------*/ | |
| .ui-state-disabled { | |
| cursor: default ; | |
| } | |
| /* Icons | |
| ----------------------------------*/ | |
| /* states and images */ | |
| .ui-icon { | |
| display: block; | |
| text-indent: -99999px; | |
| overflow: hidden; | |
| background-repeat: no-repeat; | |
| } | |
| /* Misc visuals | |
| ----------------------------------*/ | |
| /* Overlays */ | |
| .ui-widget-overlay { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| } | |
| .ui-resizable { | |
| position: relative; | |
| } | |
| .ui-resizable-handle { | |
| position: absolute; | |
| font-size: 0.1px; | |
| display: block; | |
| } | |
| .ui-resizable-disabled .ui-resizable-handle, | |
| .ui-resizable-autohide .ui-resizable-handle { | |
| display: none; | |
| } | |
| .ui-resizable-n { | |
| cursor: n-resize; | |
| height: 7px; | |
| width: 100%; | |
| top: -5px; | |
| left: 0; | |
| } | |
| .ui-resizable-s { | |
| cursor: s-resize; | |
| height: 7px; | |
| width: 100%; | |
| bottom: -5px; | |
| left: 0; | |
| } | |
| .ui-resizable-e { | |
| cursor: e-resize; | |
| width: 7px; | |
| right: -5px; | |
| top: 0; | |
| height: 100%; | |
| } | |
| .ui-resizable-w { | |
| cursor: w-resize; | |
| width: 7px; | |
| left: -5px; | |
| top: 0; | |
| height: 100%; | |
| } | |
| .ui-resizable-se { | |
| cursor: se-resize; | |
| width: 12px; | |
| height: 12px; | |
| right: 1px; | |
| bottom: 1px; | |
| } | |
| .ui-resizable-sw { | |
| cursor: sw-resize; | |
| width: 9px; | |
| height: 9px; | |
| left: -5px; | |
| bottom: -5px; | |
| } | |
| .ui-resizable-nw { | |
| cursor: nw-resize; | |
| width: 9px; | |
| height: 9px; | |
| left: -5px; | |
| top: -5px; | |
| } | |
| .ui-resizable-ne { | |
| cursor: ne-resize; | |
| width: 9px; | |
| height: 9px; | |
| right: -5px; | |
| top: -5px; | |
| } | |
| .ui-selectable-helper { | |
| position: absolute; | |
| z-index: 100; | |
| border: 1px dotted black; | |
| } | |
| .ui-accordion .ui-accordion-header { | |
| display: block; | |
| cursor: pointer; | |
| position: relative; | |
| margin-top: 2px; | |
| padding: .5em .5em .5em .7em; | |
| min-height: 0; /* support: IE7 */ | |
| } | |
| .ui-accordion .ui-accordion-icons { | |
| padding-left: 2.2em; | |
| } | |
| .ui-accordion .ui-accordion-noicons { | |
| padding-left: .7em; | |
| } | |
| .ui-accordion .ui-accordion-icons .ui-accordion-icons { | |
| padding-left: 2.2em; | |
| } | |
| .ui-accordion .ui-accordion-header .ui-accordion-header-icon { | |
| position: absolute; | |
| left: .5em; | |
| top: 50%; | |
| margin-top: -8px; | |
| } | |
| .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-button { | |
| display: inline-block; | |
| position: relative; | |
| padding: 0; | |
| line-height: normal; | |
| margin-right: .1em; | |
| cursor: pointer; | |
| vertical-align: middle; | |
| text-align: center; | |
| overflow: visible; /* removes extra width in IE */ | |
| } | |
| .ui-button, | |
| .ui-button:link, | |
| .ui-button:visited, | |
| .ui-button:hover, | |
| .ui-button:active { | |
| text-decoration: none; | |
| } | |
| /* to make room for the icon, a width needs to be set here */ | |
| .ui-button-icon-only { | |
| width: 2.2em; | |
| } | |
| /* button elements seem to need a little more width */ | |
| button.ui-button-icon-only { | |
| width: 2.4em; | |
| } | |
| .ui-button-icons-only { | |
| width: 3.4em; | |
| } | |
| button.ui-button-icons-only { | |
| width: 3.7em; | |
| } | |
| /* button text element */ | |
| .ui-button .ui-button-text { | |
| display: block; | |
| line-height: normal; | |
| } | |
| .ui-button-text-only .ui-button-text { | |
| padding: .4em 1em; | |
| } | |
| .ui-button-icon-only .ui-button-text, | |
| .ui-button-icons-only .ui-button-text { | |
| padding: .4em; | |
| text-indent: -9999999px; | |
| } | |
| .ui-button-text-icon-primary .ui-button-text, | |
| .ui-button-text-icons .ui-button-text { | |
| padding: .4em 1em .4em 2.1em; | |
| } | |
| .ui-button-text-icon-secondary .ui-button-text, | |
| .ui-button-text-icons .ui-button-text { | |
| padding: .4em 2.1em .4em 1em; | |
| } | |
| .ui-button-text-icons .ui-button-text { | |
| padding-left: 2.1em; | |
| padding-right: 2.1em; | |
| } | |
| /* no icon support for input elements, provide padding by default */ | |
| input.ui-button { | |
| padding: .4em 1em; | |
| } | |
| /* button icon element(s) */ | |
| .ui-button-icon-only .ui-icon, | |
| .ui-button-text-icon-primary .ui-icon, | |
| .ui-button-text-icon-secondary .ui-icon, | |
| .ui-button-text-icons .ui-icon, | |
| .ui-button-icons-only .ui-icon { | |
| position: absolute; | |
| top: 50%; | |
| margin-top: -8px; | |
| } | |
| .ui-button-icon-only .ui-icon { | |
| left: 50%; | |
| margin-left: -8px; | |
| } | |
| .ui-button-text-icon-primary .ui-button-icon-primary, | |
| .ui-button-text-icons .ui-button-icon-primary, | |
| .ui-button-icons-only .ui-button-icon-primary { | |
| left: .5em; | |
| } | |
| .ui-button-text-icon-secondary .ui-button-icon-secondary, | |
| .ui-button-text-icons .ui-button-icon-secondary, | |
| .ui-button-icons-only .ui-button-icon-secondary { | |
| right: .5em; | |
| } | |
| /* button sets */ | |
| .ui-buttonset { | |
| margin-right: 7px; | |
| } | |
| .ui-buttonset .ui-button { | |
| margin-left: 0; | |
| margin-right: -.3em; | |
| } | |
| /* workarounds */ | |
| /* reset extra padding in Firefox, see h5bp.com/l */ | |
| input.ui-button::-moz-focus-inner, | |
| button.ui-button::-moz-focus-inner { | |
| border: 0; | |
| padding: 0; | |
| } | |
| .ui-datepicker { | |
| width: 17em; | |
| padding: .2em .2em 0; | |
| display: none; | |
| } | |
| .ui-datepicker .ui-datepicker-header { | |
| position: relative; | |
| padding: .2em 0; | |
| } | |
| .ui-datepicker .ui-datepicker-prev, | |
| .ui-datepicker .ui-datepicker-next { | |
| position: absolute; | |
| top: 2px; | |
| width: 1.8em; | |
| height: 1.8em; | |
| } | |
| .ui-datepicker .ui-datepicker-prev-hover, | |
| .ui-datepicker .ui-datepicker-next-hover { | |
| top: 1px; | |
| } | |
| .ui-datepicker .ui-datepicker-prev { | |
| left: 2px; | |
| } | |
| .ui-datepicker .ui-datepicker-next { | |
| right: 2px; | |
| } | |
| .ui-datepicker .ui-datepicker-prev-hover { | |
| left: 1px; | |
| } | |
| .ui-datepicker .ui-datepicker-next-hover { | |
| right: 1px; | |
| } | |
| .ui-datepicker .ui-datepicker-prev span, | |
| .ui-datepicker .ui-datepicker-next span { | |
| display: block; | |
| position: absolute; | |
| left: 50%; | |
| margin-left: -8px; | |
| top: 50%; | |
| margin-top: -8px; | |
| } | |
| .ui-datepicker .ui-datepicker-title { | |
| margin: 0 2.3em; | |
| line-height: 1.8em; | |
| text-align: center; | |
| } | |
| .ui-datepicker .ui-datepicker-title select { | |
| font-size: 1em; | |
| margin: 1px 0; | |
| } | |
| .ui-datepicker select.ui-datepicker-month-year { | |
| width: 100%; | |
| } | |
| .ui-datepicker select.ui-datepicker-month, | |
| .ui-datepicker select.ui-datepicker-year { | |
| width: 49%; | |
| } | |
| .ui-datepicker table { | |
| width: 100%; | |
| font-size: .9em; | |
| border-collapse: collapse; | |
| margin: 0 0 .4em; | |
| } | |
| .ui-datepicker th { | |
| padding: .7em .3em; | |
| text-align: center; | |
| font-weight: bold; | |
| border: 0; | |
| } | |
| .ui-datepicker td { | |
| border: 0; | |
| padding: 1px; | |
| } | |
| .ui-datepicker td span, | |
| .ui-datepicker td a { | |
| display: block; | |
| padding: .2em; | |
| text-align: right; | |
| text-decoration: none; | |
| } | |
| .ui-datepicker .ui-datepicker-buttonpane { | |
| background-image: none; | |
| margin: .7em 0 0 0; | |
| padding: 0 .2em; | |
| border-left: 0; | |
| border-right: 0; | |
| border-bottom: 0; | |
| } | |
| .ui-datepicker .ui-datepicker-buttonpane button { | |
| float: right; | |
| margin: .5em .2em .4em; | |
| cursor: pointer; | |
| padding: .2em .6em .3em .6em; | |
| width: auto; | |
| overflow: visible; | |
| } | |
| .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { | |
| float: left; | |
| } | |
| /* with multiple calendars */ | |
| .ui-datepicker.ui-datepicker-multi { | |
| width: auto; | |
| } | |
| .ui-datepicker-multi .ui-datepicker-group { | |
| float: left; | |
| } | |
| .ui-datepicker-multi .ui-datepicker-group table { | |
| width: 95%; | |
| margin: 0 auto .4em; | |
| } | |
| .ui-datepicker-multi-2 .ui-datepicker-group { | |
| width: 50%; | |
| } | |
| .ui-datepicker-multi-3 .ui-datepicker-group { | |
| width: 33.3%; | |
| } | |
| .ui-datepicker-multi-4 .ui-datepicker-group { | |
| width: 25%; | |
| } | |
| .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, | |
| .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { | |
| border-left-width: 0; | |
| } | |
| .ui-datepicker-multi .ui-datepicker-buttonpane { | |
| clear: left; | |
| } | |
| .ui-datepicker-row-break { | |
| clear: both; | |
| width: 100%; | |
| font-size: 0; | |
| } | |
| /* RTL support */ | |
| .ui-datepicker-rtl { | |
| direction: rtl; | |
| } | |
| .ui-datepicker-rtl .ui-datepicker-prev { | |
| right: 2px; | |
| left: auto; | |
| } | |
| .ui-datepicker-rtl .ui-datepicker-next { | |
| left: 2px; | |
| right: auto; | |
| } | |
| .ui-datepicker-rtl .ui-datepicker-prev:hover { | |
| right: 1px; | |
| left: auto; | |
| } | |
| .ui-datepicker-rtl .ui-datepicker-next:hover { | |
| left: 1px; | |
| right: auto; | |
| } | |
| .ui-datepicker-rtl .ui-datepicker-buttonpane { | |
| clear: right; | |
| } | |
| .ui-datepicker-rtl .ui-datepicker-buttonpane button { | |
| float: left; | |
| } | |
| .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, | |
| .ui-datepicker-rtl .ui-datepicker-group { | |
| float: right; | |
| } | |
| .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, | |
| .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { | |
| border-right-width: 0; | |
| border-left-width: 1px; | |
| } | |
| .ui-dialog { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| padding: .2em; | |
| outline: 0; | |
| } | |
| .ui-dialog .ui-dialog-titlebar { | |
| padding: .4em 1em; | |
| position: relative; | |
| } | |
| .ui-dialog .ui-dialog-title { | |
| float: left; | |
| margin: .1em 0; | |
| white-space: nowrap; | |
| width: 90%; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| } | |
| .ui-dialog .ui-dialog-titlebar-close { | |
| position: absolute; | |
| right: .3em; | |
| top: 50%; | |
| width: 21px; | |
| margin: -10px 0 0 0; | |
| padding: 1px; | |
| height: 20px; | |
| } | |
| .ui-dialog .ui-dialog-content { | |
| position: relative; | |
| border: 0; | |
| padding: .5em 1em; | |
| background: none; | |
| overflow: auto; | |
| } | |
| .ui-dialog .ui-dialog-buttonpane { | |
| text-align: left; | |
| border-width: 1px 0 0 0; | |
| background-image: none; | |
| margin-top: .5em; | |
| padding: .3em 1em .5em .4em; | |
| } | |
| .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { | |
| float: right; | |
| } | |
| .ui-dialog .ui-dialog-buttonpane button { | |
| margin: .5em .4em .5em 0; | |
| cursor: pointer; | |
| } | |
| .ui-dialog .ui-resizable-se { | |
| width: 12px; | |
| height: 12px; | |
| right: -5px; | |
| bottom: -5px; | |
| background-position: 16px 16px; | |
| } | |
| .ui-draggable .ui-dialog-titlebar { | |
| cursor: move; | |
| } | |
| .ui-menu { | |
| list-style: none; | |
| padding: 2px; | |
| margin: 0; | |
| display: block; | |
| outline: none; | |
| } | |
| .ui-menu .ui-menu { | |
| margin-top: -3px; | |
| position: absolute; | |
| } | |
| .ui-menu .ui-menu-item { | |
| margin: 0; | |
| padding: 0; | |
| width: 100%; | |
| /* support: IE10, see #8844 */ | |
| list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); | |
| } | |
| .ui-menu .ui-menu-divider { | |
| margin: 5px -2px 5px -2px; | |
| height: 0; | |
| font-size: 0; | |
| line-height: 0; | |
| border-width: 1px 0 0 0; | |
| } | |
| .ui-menu .ui-menu-item a { | |
| text-decoration: none; | |
| display: block; | |
| padding: 2px .4em; | |
| line-height: 1.5; | |
| min-height: 0; /* support: IE7 */ | |
| font-weight: normal; | |
| } | |
| .ui-menu .ui-menu-item a.ui-state-focus, | |
| .ui-menu .ui-menu-item a.ui-state-active { | |
| font-weight: normal; | |
| margin: -1px; | |
| } | |
| .ui-menu .ui-state-disabled { | |
| font-weight: normal; | |
| margin: .4em 0 .2em; | |
| line-height: 1.5; | |
| } | |
| .ui-menu .ui-state-disabled a { | |
| cursor: default; | |
| } | |
| /* icon support */ | |
| .ui-menu-icons { | |
| position: relative; | |
| } | |
| .ui-menu-icons .ui-menu-item a { | |
| position: relative; | |
| padding-left: 2em; | |
| } | |
| /* left-aligned */ | |
| .ui-menu .ui-icon { | |
| position: absolute; | |
| top: .2em; | |
| left: .2em; | |
| } | |
| /* right-aligned */ | |
| .ui-menu .ui-menu-icon { | |
| position: static; | |
| float: right; | |
| } | |
| .ui-progressbar { | |
| height: 2em; | |
| text-align: left; | |
| overflow: hidden; | |
| } | |
| .ui-progressbar .ui-progressbar-value { | |
| margin: -1px; | |
| height: 100%; | |
| } | |
| .ui-progressbar .ui-progressbar-overlay { | |
| background: url("images/animated-overlay.gif"); | |
| height: 100%; | |
| filter: alpha(opacity=25); | |
| opacity: 0.25; | |
| } | |
| .ui-progressbar-indeterminate .ui-progressbar-value { | |
| background-image: none; | |
| } | |
| .ui-slider { | |
| position: relative; | |
| text-align: left; | |
| } | |
| .ui-slider .ui-slider-handle { | |
| position: absolute; | |
| z-index: 2; | |
| width: 1.2em; | |
| height: 1.2em; | |
| cursor: default; | |
| } | |
| .ui-slider .ui-slider-range { | |
| position: absolute; | |
| z-index: 1; | |
| font-size: .7em; | |
| display: block; | |
| border: 0; | |
| background-position: 0 0; | |
| } | |
| /* For IE8 - See #6727 */ | |
| .ui-slider.ui-state-disabled .ui-slider-handle, | |
| .ui-slider.ui-state-disabled .ui-slider-range { | |
| filter: inherit; | |
| } | |
| .ui-slider-horizontal { | |
| height: .8em; | |
| } | |
| .ui-slider-horizontal .ui-slider-handle { | |
| top: -.3em; | |
| margin-left: -.6em; | |
| } | |
| .ui-slider-horizontal .ui-slider-range { | |
| top: 0; | |
| height: 100%; | |
| } | |
| .ui-slider-horizontal .ui-slider-range-min { | |
| left: 0; | |
| } | |
| .ui-slider-horizontal .ui-slider-range-max { | |
| right: 0; | |
| } | |
| .ui-slider-vertical { | |
| width: .8em; | |
| height: 100px; | |
| } | |
| .ui-slider-vertical .ui-slider-handle { | |
| left: -.3em; | |
| margin-left: 0; | |
| margin-bottom: -.6em; | |
| } | |
| .ui-slider-vertical .ui-slider-range { | |
| left: 0; | |
| width: 100%; | |
| } | |
| .ui-slider-vertical .ui-slider-range-min { | |
| bottom: 0; | |
| } | |
| .ui-slider-vertical .ui-slider-range-max { | |
| top: 0; | |
| } | |
| .ui-spinner { | |
| position: relative; | |
| display: inline-block; | |
| overflow: hidden; | |
| padding: 0; | |
| vertical-align: middle; | |
| } | |
| .ui-spinner-input { | |
| border: none; | |
| background: none; | |
| color: inherit; | |
| padding: 0; | |
| margin: .2em 0; | |
| vertical-align: middle; | |
| margin-left: .4em; | |
| margin-right: 22px; | |
| } | |
| .ui-spinner-button { | |
| width: 16px; | |
| height: 50%; | |
| font-size: .5em; | |
| padding: 0; | |
| margin: 0; | |
| text-align: center; | |
| position: absolute; | |
| cursor: default; | |
| display: block; | |
| overflow: hidden; | |
| right: 0; | |
| } | |
| /* more specificity required here to overide default borders */ | |
| .ui-spinner a.ui-spinner-button { | |
| border-top: none; | |
| border-bottom: none; | |
| border-right: none; | |
| } | |
| /* vertical centre icon */ | |
| .ui-spinner .ui-icon { | |
| position: absolute; | |
| margin-top: -8px; | |
| top: 50%; | |
| left: 0; | |
| } | |
| .ui-spinner-up { | |
| top: 0; | |
| } | |
| .ui-spinner-down { | |
| bottom: 0; | |
| } | |
| /* TR overrides */ | |
| .ui-spinner .ui-icon-triangle-1-s { | |
| /* need to fix icons sprite */ | |
| background-position: -65px -16px; | |
| } | |
| .ui-tabs { | |
| position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ | |
| padding: .2em; | |
| } | |
| .ui-tabs .ui-tabs-nav { | |
| margin: 0; | |
| padding: .2em .2em 0; | |
| } | |
| .ui-tabs .ui-tabs-nav li { | |
| list-style: none; | |
| float: left; | |
| position: relative; | |
| top: 0; | |
| margin: 1px .2em 0 0; | |
| border-bottom-width: 0; | |
| padding: 0; | |
| white-space: nowrap; | |
| } | |
| .ui-tabs .ui-tabs-nav li a { | |
| float: left; | |
| padding: .5em 1em; | |
| text-decoration: none; | |
| } | |
| .ui-tabs .ui-tabs-nav li.ui-tabs-active { | |
| margin-bottom: -1px; | |
| padding-bottom: 1px; | |
| } | |
| .ui-tabs .ui-tabs-nav li.ui-tabs-active a, | |
| .ui-tabs .ui-tabs-nav li.ui-state-disabled a, | |
| .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { | |
| cursor: text; | |
| } | |
| .ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ | |
| .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { | |
| cursor: pointer; | |
| } | |
| .ui-tabs .ui-tabs-panel { | |
| display: block; | |
| border-width: 0; | |
| padding: 1em 1.4em; | |
| background: none; | |
| } | |
| .ui-tooltip { | |
| padding: 8px; | |
| position: absolute; | |
| z-index: 9999; | |
| max-width: 300px; | |
| -webkit-box-shadow: 0 0 5px #aaa; | |
| box-shadow: 0 0 5px #aaa; | |
| } | |
| body .ui-tooltip { | |
| border-width: 2px; | |
| } | |
| /* Component containers | |
| ----------------------------------*/ | |
| .ui-widget { | |
| font-family: Lucida Grande,Lucida Sans,Arial,sans-serif; | |
| font-size: 11px; | |
| } | |
| .ui-widget .ui-widget { | |
| font-size: 1em; | |
| } | |
| .ui-widget input, | |
| .ui-widget select, | |
| .ui-widget textarea, | |
| .ui-widget button { | |
| font-family: Lucida Grande,Lucida Sans,Arial,sans-serif; | |
| font-size: 1em; | |
| } | |
| .ui-widget-content { | |
| border-right: 1px solid #a6c9e2; | |
| border-left: 1px solid #a6c9e2; | |
| border-bottom: 1px solid #a6c9e2; | |
| background: #fcfdfd url(images/ui-bg_inset-hard_100_fcfdfd_1x100.png) 50% bottom repeat-x; | |
| color: #222222; | |
| } | |
| .ui-widget-content a { | |
| color: #222222; | |
| } | |
| .ui-widget-header { | |
| border: 1px solid #4297d7; | |
| background: #5c9ccc url(images/ui-bg_gloss-wave_55_5c9ccc_500x100.png) 50% 50% repeat-x; | |
| color: #ffffff; | |
| font-weight: bold; | |
| /*color: #ffffff; | |
| text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); | |
| background-color: #49afcd; | |
| *background-color: #2f96b4; | |
| background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); | |
| background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); | |
| background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); | |
| background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); | |
| background-image: linear-gradient(to bottom, #5bc0de, #2f96b4); | |
| background-repeat: repeat-x; | |
| border-color: #2f96b4 #2f96b4 #1f6377; | |
| border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); | |
| filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0); | |
| filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);*/ | |
| } | |
| .ui-widget-header a { | |
| color: #ffffff; | |
| } | |
| /* Interaction states | |
| ----------------------------------*/ | |
| .ui-state-default, | |
| .ui-widget-content .ui-state-default, | |
| .ui-widget-header .ui-state-default { | |
| border: 1px solid #c5dbec; | |
| background: #dfeffc url(images/ui-bg_glass_85_dfeffc_1x400.png) 50% 50% repeat-x; | |
| font-weight: bold; | |
| color: #2e6e9e; | |
| } | |
| .ui-state-default a, | |
| .ui-state-default a:link, | |
| .ui-state-default a:visited { | |
| color: #2e6e9e; | |
| text-decoration: none; | |
| } | |
| .ui-state-hover, | |
| .ui-widget-content .ui-state-hover, | |
| .ui-widget-header .ui-state-hover, | |
| .ui-state-focus, | |
| .ui-widget-content .ui-state-focus, | |
| .ui-widget-header .ui-state-focus { | |
| border: 1px solid #79b7e7; | |
| background: #d0e5f5 url(images/ui-bg_glass_75_d0e5f5_1x400.png) 50% 50% repeat-x; | |
| font-weight: bold; | |
| color: #1d5987; | |
| } | |
| .ui-state-hover a, | |
| .ui-state-hover a:hover, | |
| .ui-state-hover a:link, | |
| .ui-state-hover a:visited { | |
| color: #1d5987; | |
| text-decoration: none; | |
| } | |
| .ui-state-active, | |
| .ui-widget-content .ui-state-active, | |
| .ui-widget-header .ui-state-active { | |
| border: 1px solid #79b7e7; | |
| background: #f5f8f9 url(images/ui-bg_inset-hard_100_f5f8f9_1x100.png) 50% 50% repeat-x; | |
| font-weight: bold; | |
| color: #e17009; | |
| } | |
| .ui-state-active a, | |
| .ui-state-active a:link, | |
| .ui-state-active a:visited { | |
| color: #e17009; | |
| text-decoration: none; | |
| } | |
| /* Interaction Cues | |
| ----------------------------------*/ | |
| .ui-state-highlight, | |
| .ui-widget-content .ui-state-highlight, | |
| .ui-widget-header .ui-state-highlight { | |
| border: 1px solid #fad42e; | |
| background: #fbec88 url(images/ui-bg_flat_55_fbec88_40x100.png) 50% 50% repeat-x; | |
| color: #363636; | |
| } | |
| .ui-state-highlight a, | |
| .ui-widget-content .ui-state-highlight a, | |
| .ui-widget-header .ui-state-highlight a { | |
| color: #363636; | |
| } | |
| .ui-state-error, | |
| .ui-widget-content .ui-state-error, | |
| .ui-widget-header .ui-state-error { | |
| border: 1px solid #cd0a0a; | |
| background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; | |
| color: #cd0a0a; | |
| } | |
| .ui-state-error a, | |
| .ui-widget-content .ui-state-error a, | |
| .ui-widget-header .ui-state-error a { | |
| color: #cd0a0a; | |
| } | |
| .ui-state-error-text, | |
| .ui-widget-content .ui-state-error-text, | |
| .ui-widget-header .ui-state-error-text { | |
| color: #cd0a0a; | |
| } | |
| .ui-priority-primary, | |
| .ui-widget-content .ui-priority-primary, | |
| .ui-widget-header .ui-priority-primary { | |
| font-weight: bold; | |
| } | |
| .ui-priority-secondary, | |
| .ui-widget-content .ui-priority-secondary, | |
| .ui-widget-header .ui-priority-secondary { | |
| opacity: .7; | |
| filter:Alpha(Opacity=70); | |
| font-weight: normal; | |
| } | |
| .ui-state-disabled, | |
| .ui-widget-content .ui-state-disabled, | |
| .ui-widget-header .ui-state-disabled { | |
| opacity: .35; | |
| filter:Alpha(Opacity=35); | |
| background-image: none; | |
| } | |
| .ui-state-disabled .ui-icon { | |
| filter:Alpha(Opacity=35); /* For IE8 - See #6059 */ | |
| } | |
| /* Icons | |
| ----------------------------------*/ | |
| /* states and images */ | |
| .ui-icon { | |
| width: 16px; | |
| height: 16px; | |
| } | |
| .ui-icon, | |
| .ui-widget-content .ui-icon { | |
| background-image: url(images/ui-icons_469bdd_256x240.png); | |
| } | |
| .ui-widget-header .ui-icon { | |
| background-image: url(images/ui-icons_d8e7f3_256x240.png); | |
| } | |
| .ui-state-default .ui-icon { | |
| background-image: url(images/ui-icons_6da8d5_256x240.png); | |
| } | |
| .ui-state-hover .ui-icon, | |
| .ui-state-focus .ui-icon { | |
| background-image: url(images/ui-icons_217bc0_256x240.png); | |
| } | |
| .ui-state-active .ui-icon { | |
| background-image: url(images/ui-icons_f9bd01_256x240.png); | |
| } | |
| .ui-state-highlight .ui-icon { | |
| background-image: url(images/ui-icons_2e83ff_256x240.png); | |
| } | |
| .ui-state-error .ui-icon, | |
| .ui-state-error-text .ui-icon { | |
| background-image: url(images/ui-icons_cd0a0a_256x240.png); | |
| } | |
| /* positioning */ | |
| .ui-icon-blank { background-position: 16px 16px; } | |
| .ui-icon-carat-1-n { background-position: 0 0; } | |
| .ui-icon-carat-1-ne { background-position: -16px 0; } | |
| .ui-icon-carat-1-e { background-position: -32px 0; } | |
| .ui-icon-carat-1-se { background-position: -48px 0; } | |
| .ui-icon-carat-1-s { background-position: -64px 0; } | |
| .ui-icon-carat-1-sw { background-position: -80px 0; } | |
| .ui-icon-carat-1-w { background-position: -96px 0; } | |
| .ui-icon-carat-1-nw { background-position: -112px 0; } | |
| .ui-icon-carat-2-n-s { background-position: -128px 0; } | |
| .ui-icon-carat-2-e-w { background-position: -144px 0; } | |
| .ui-icon-triangle-1-n { background-position: 0 -16px; } | |
| .ui-icon-triangle-1-ne { background-position: -16px -16px; } | |
| .ui-icon-triangle-1-e { background-position: -32px -16px; } | |
| .ui-icon-triangle-1-se { background-position: -48px -16px; } | |
| .ui-icon-triangle-1-s { background-position: -64px -16px; } | |
| .ui-icon-triangle-1-sw { background-position: -80px -16px; } | |
| .ui-icon-triangle-1-w { background-position: -96px -16px; } | |
| .ui-icon-triangle-1-nw { background-position: -112px -16px; } | |
| .ui-icon-triangle-2-n-s { background-position: -128px -16px; } | |
| .ui-icon-triangle-2-e-w { background-position: -144px -16px; } | |
| .ui-icon-arrow-1-n { background-position: 0 -32px; } | |
| .ui-icon-arrow-1-ne { background-position: -16px -32px; } | |
| .ui-icon-arrow-1-e { background-position: -32px -32px; } | |
| .ui-icon-arrow-1-se { background-position: -48px -32px; } | |
| .ui-icon-arrow-1-s { background-position: -64px -32px; } | |
| .ui-icon-arrow-1-sw { background-position: -80px -32px; } | |
| .ui-icon-arrow-1-w { background-position: -96px -32px; } | |
| .ui-icon-arrow-1-nw { background-position: -112px -32px; } | |
| .ui-icon-arrow-2-n-s { background-position: -128px -32px; } | |
| .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } | |
| .ui-icon-arrow-2-e-w { background-position: -160px -32px; } | |
| .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } | |
| .ui-icon-arrowstop-1-n { background-position: -192px -32px; } | |
| .ui-icon-arrowstop-1-e { background-position: -208px -32px; } | |
| .ui-icon-arrowstop-1-s { background-position: -224px -32px; } | |
| .ui-icon-arrowstop-1-w { background-position: -240px -32px; } | |
| .ui-icon-arrowthick-1-n { background-position: 0 -48px; } | |
| .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } | |
| .ui-icon-arrowthick-1-e { background-position: -32px -48px; } | |
| .ui-icon-arrowthick-1-se { background-position: -48px -48px; } | |
| .ui-icon-arrowthick-1-s { background-position: -64px -48px; } | |
| .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } | |
| .ui-icon-arrowthick-1-w { background-position: -96px -48px; } | |
| .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } | |
| .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } | |
| .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } | |
| .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } | |
| .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } | |
| .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } | |
| .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } | |
| .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } | |
| .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } | |
| .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } | |
| .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } | |
| .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } | |
| .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } | |
| .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } | |
| .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } | |
| .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } | |
| .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } | |
| .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } | |
| .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } | |
| .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } | |
| .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } | |
| .ui-icon-arrow-4 { background-position: 0 -80px; } | |
| .ui-icon-arrow-4-diag { background-position: -16px -80px; } | |
| .ui-icon-extlink { background-position: -32px -80px; } | |
| .ui-icon-newwin { background-position: -48px -80px; } | |
| .ui-icon-refresh { background-position: -64px -80px; } | |
| .ui-icon-shuffle { background-position: -80px -80px; } | |
| .ui-icon-transfer-e-w { background-position: -96px -80px; } | |
| .ui-icon-transferthick-e-w { background-position: -112px -80px; } | |
| .ui-icon-folder-collapsed { background-position: 0 -96px; } | |
| .ui-icon-folder-open { background-position: -16px -96px; } | |
| .ui-icon-document { background-position: -32px -96px; } | |
| .ui-icon-document-b { background-position: -48px -96px; } | |
| .ui-icon-note { background-position: -64px -96px; } | |
| .ui-icon-mail-closed { background-position: -80px -96px; } | |
| .ui-icon-mail-open { background-position: -96px -96px; } | |
| .ui-icon-suitcase { background-position: -112px -96px; } | |
| .ui-icon-comment { background-position: -128px -96px; } | |
| .ui-icon-person { background-position: -144px -96px; } | |
| .ui-icon-print { background-position: -160px -96px; } | |
| .ui-icon-trash { background-position: -176px -96px; } | |
| .ui-icon-locked { background-position: -192px -96px; } | |
| .ui-icon-unlocked { background-position: -208px -96px; } | |
| .ui-icon-bookmark { background-position: -224px -96px; } | |
| .ui-icon-tag { background-position: -240px -96px; } | |
| .ui-icon-home { background-position: 0 -112px; } | |
| .ui-icon-flag { background-position: -16px -112px; } | |
| .ui-icon-calendar { background-position: -32px -112px; } | |
| .ui-icon-cart { background-position: -48px -112px; } | |
| .ui-icon-pencil { background-position: -64px -112px; } | |
| .ui-icon-clock { background-position: -80px -112px; } | |
| .ui-icon-disk { background-position: -96px -112px; } | |
| .ui-icon-calculator { background-position: -112px -112px; } | |
| .ui-icon-zoomin { background-position: -128px -112px; } | |
| .ui-icon-zoomout { background-position: -144px -112px; } | |
| .ui-icon-search { background-position: -160px -112px; } | |
| .ui-icon-wrench { background-position: -176px -112px; } | |
| .ui-icon-gear { background-position: -192px -112px; } | |
| .ui-icon-heart { background-position: -208px -112px; } | |
| .ui-icon-star { background-position: -224px -112px; } | |
| .ui-icon-link { background-position: -240px -112px; } | |
| .ui-icon-cancel { background-position: 0 -128px; } | |
| .ui-icon-plus { background-position: -16px -128px; } | |
| .ui-icon-plusthick { background-position: -32px -128px; } | |
| .ui-icon-minus { background-position: -48px -128px; } | |
| .ui-icon-minusthick { background-position: -64px -128px; } | |
| .ui-icon-close { background-position: -80px -128px; } | |
| .ui-icon-closethick { background-position: -96px -128px; } | |
| .ui-icon-key { background-position: -112px -128px; } | |
| .ui-icon-lightbulb { background-position: -128px -128px; } | |
| .ui-icon-scissors { background-position: -144px -128px; } | |
| .ui-icon-clipboard { background-position: -160px -128px; } | |
| .ui-icon-copy { background-position: -176px -128px; } | |
| .ui-icon-contact { background-position: -192px -128px; } | |
| .ui-icon-image { background-position: -208px -128px; } | |
| .ui-icon-video { background-position: -224px -128px; } | |
| .ui-icon-script { background-position: -240px -128px; } | |
| .ui-icon-alert { background-position: 0 -144px; } | |
| .ui-icon-info { background-position: -16px -144px; } | |
| .ui-icon-notice { background-position: -32px -144px; } | |
| .ui-icon-help { background-position: -48px -144px; } | |
| .ui-icon-check { background-position: -64px -144px; } | |
| .ui-icon-bullet { background-position: -80px -144px; } | |
| .ui-icon-radio-on { background-position: -96px -144px; } | |
| .ui-icon-radio-off { background-position: -112px -144px; } | |
| .ui-icon-pin-w { background-position: -128px -144px; } | |
| .ui-icon-pin-s { background-position: -144px -144px; } | |
| .ui-icon-play { background-position: 0 -160px; } | |
| .ui-icon-pause { background-position: -16px -160px; } | |
| .ui-icon-seek-next { background-position: -32px -160px; } | |
| .ui-icon-seek-prev { background-position: -48px -160px; } | |
| .ui-icon-seek-end { background-position: -64px -160px; } | |
| .ui-icon-seek-start { background-position: -80px -160px; } | |
| /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ | |
| .ui-icon-seek-first { background-position: -80px -160px; } | |
| .ui-icon-stop { background-position: -96px -160px; } | |
| .ui-icon-eject { background-position: -112px -160px; } | |
| .ui-icon-volume-off { background-position: -128px -160px; } | |
| .ui-icon-volume-on { background-position: -144px -160px; } | |
| .ui-icon-power { background-position: 0 -176px; } | |
| .ui-icon-signal-diag { background-position: -16px -176px; } | |
| .ui-icon-signal { background-position: -32px -176px; } | |
| .ui-icon-battery-0 { background-position: -48px -176px; } | |
| .ui-icon-battery-1 { background-position: -64px -176px; } | |
| .ui-icon-battery-2 { background-position: -80px -176px; } | |
| .ui-icon-battery-3 { background-position: -96px -176px; } | |
| .ui-icon-circle-plus { background-position: 0 -192px; } | |
| .ui-icon-circle-minus { background-position: -16px -192px; } | |
| .ui-icon-circle-close { background-position: -32px -192px; } | |
| .ui-icon-circle-triangle-e { background-position: -48px -192px; } | |
| .ui-icon-circle-triangle-s { background-position: -64px -192px; } | |
| .ui-icon-circle-triangle-w { background-position: -80px -192px; } | |
| .ui-icon-circle-triangle-n { background-position: -96px -192px; } | |
| .ui-icon-circle-arrow-e { background-position: -112px -192px; } | |
| .ui-icon-circle-arrow-s { background-position: -128px -192px; } | |
| .ui-icon-circle-arrow-w { background-position: -144px -192px; } | |
| .ui-icon-circle-arrow-n { background-position: -160px -192px; } | |
| .ui-icon-circle-zoomin { background-position: -176px -192px; } | |
| .ui-icon-circle-zoomout { background-position: -192px -192px; } | |
| .ui-icon-circle-check { background-position: -208px -192px; } | |
| .ui-icon-circlesmall-plus { background-position: 0 -208px; } | |
| .ui-icon-circlesmall-minus { background-position: -16px -208px; } | |
| .ui-icon-circlesmall-close { background-position: -32px -208px; } | |
| .ui-icon-squaresmall-plus { background-position: -48px -208px; } | |
| .ui-icon-squaresmall-minus { background-position: -64px -208px; } | |
| .ui-icon-squaresmall-close { background-position: -80px -208px; } | |
| .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } | |
| .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } | |
| .ui-icon-grip-solid-vertical { background-position: -32px -224px; } | |
| .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } | |
| .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } | |
| .ui-icon-grip-diagonal-se { background-position: -80px -224px; } | |
| /* Misc visuals | |
| ----------------------------------*/ | |
| /* Corner radius */ | |
| .ui-corner-all, | |
| .ui-corner-top, | |
| .ui-corner-left, | |
| .ui-corner-tl { | |
| border-top-left-radius: 5px; | |
| } | |
| .ui-corner-all, | |
| .ui-corner-top, | |
| .ui-corner-right, | |
| .ui-corner-tr { | |
| border-top-right-radius: 5px; | |
| } | |
| .ui-corner-all, | |
| .ui-corner-bottom, | |
| .ui-corner-left, | |
| .ui-corner-bl { | |
| border-bottom-left-radius: 5px; | |
| } | |
| .ui-corner-all, | |
| .ui-corner-bottom, | |
| .ui-corner-right, | |
| .ui-corner-br { | |
| border-bottom-right-radius: 5px; | |
| } | |
| /* Overlays */ | |
| .ui-widget-overlay { | |
| background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; | |
| opacity: .3; | |
| filter: Alpha(Opacity=30); | |
| } | |
| .ui-widget-shadow { | |
| margin: -8px 0 0 -8px; | |
| padding: 8px; | |
| background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; | |
| opacity: .3; | |
| filter: Alpha(Opacity=30); | |
| border-radius: 8px; | |
| } | |
| .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 ; | |
| opacity: 1.0 ; | |
| position: absolute ; | |
| -webkit-transform: none ; | |
| -moz-transform: none ; | |
| -ms-transform: none ; | |
| -o-transform: none ; | |
| transform: none ; | |
| } | |
| .introjs-showElement, | |
| tr.introjs-showElement > td, | |
| tr.introjs-showElement > th { | |
| z-index: 9999999 ; | |
| } | |
| .introjs-disableInteraction { | |
| z-index: 99999999 ; | |
| 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 ; | |
| 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>.sorting_3{background-color:#a9b6d0}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#f9f9f9}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fbfbfb}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fdfdfd}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad4}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#adbbd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ebebeb}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#eee}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a1aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a2afc8}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a4b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px 4px 4px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{margin-left:0.5em}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none ;cursor:pointer;*cursor:hand;color:#333 ;border:1px solid transparent}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 ;border:1px solid #cacaca;background-color:#fff;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 ;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white ;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 ;padding:0 }.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table,.dataTables_wrapper.no-footer div.dataTables_scrollBody table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}} | |
| .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 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 ; | |
| border-right: 1px solid lightgray ; | |
| border-bottom: 1px solid lightgray ; | |
| padding-right: 25px ; | |
| } | |
| 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 ; | |
| 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 ; | |
| 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; | |
| } | |
| /* | |
| * 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; | |
| } | |
| .pmZimbra { | |
| background: url(../img/triggerWizard.png) no-repeat; | |
| background-position: -78px -15px; | |
| } | |
| .pmSugar { | |
| background: url(../img/triggerWizard.png) no-repeat; | |
| background-position: -68px -152px; | |
| } | |
| .pmTalend { | |
| background: url(../img/triggerWizard.png) no-repeat; | |
| background-position: -85px -48px; | |
| } | |
| .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 ; | |
| } | |
| .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 { | |
| 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 ; | |
| 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 ; | |
| 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 ; | |
| background-color: #1fbc99; | |
| border: 1px solid #1ba385; | |
| font-size: 16px; | |
| } | |
| .fd-button-no{ | |
| color: #fff ; | |
| 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; | |
| } | |