10735 lines
240 KiB
CSS
10735 lines
240 KiB
CSS
|
|
/* BASICS */
|
||
|
|
|
||
|
|
.CodeMirror {
|
||
|
|
/* Set height, width, borders, and global font properties here */
|
||
|
|
font-family: monospace;
|
||
|
|
height: 300px;
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* PADDING */
|
||
|
|
|
||
|
|
.CodeMirror-lines {
|
||
|
|
padding: 4px 0; /* Vertical padding around content */
|
||
|
|
}
|
||
|
|
.CodeMirror pre {
|
||
|
|
padding: 0 4px; /* Horizontal padding of content */
|
||
|
|
}
|
||
|
|
|
||
|
|
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
||
|
|
background-color: white; /* The little square between H and V scrollbars */
|
||
|
|
}
|
||
|
|
|
||
|
|
/* GUTTER */
|
||
|
|
|
||
|
|
.CodeMirror-gutters {
|
||
|
|
border-right: 1px solid #ddd;
|
||
|
|
background-color: #f7f7f7;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
.CodeMirror-linenumbers {}
|
||
|
|
.CodeMirror-linenumber {
|
||
|
|
padding: 0 3px 0 5px;
|
||
|
|
min-width: 20px;
|
||
|
|
text-align: right;
|
||
|
|
color: #999;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.CodeMirror-guttermarker { color: black; }
|
||
|
|
.CodeMirror-guttermarker-subtle { color: #999; }
|
||
|
|
|
||
|
|
/* CURSOR */
|
||
|
|
|
||
|
|
.CodeMirror-cursor {
|
||
|
|
border-left: 1px solid black;
|
||
|
|
border-right: none;
|
||
|
|
width: 0;
|
||
|
|
}
|
||
|
|
/* Shown when moving in bi-directional text */
|
||
|
|
.CodeMirror div.CodeMirror-secondarycursor {
|
||
|
|
border-left: 1px solid silver;
|
||
|
|
}
|
||
|
|
.cm-fat-cursor .CodeMirror-cursor {
|
||
|
|
width: auto;
|
||
|
|
border: 0 !important;
|
||
|
|
background: #7e7;
|
||
|
|
}
|
||
|
|
.cm-fat-cursor div.CodeMirror-cursors {
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.cm-animate-fat-cursor {
|
||
|
|
width: auto;
|
||
|
|
border: 0;
|
||
|
|
-webkit-animation: blink 1.06s steps(1) infinite;
|
||
|
|
-moz-animation: blink 1.06s steps(1) infinite;
|
||
|
|
animation: blink 1.06s steps(1) infinite;
|
||
|
|
background-color: #7e7;
|
||
|
|
}
|
||
|
|
@-moz-keyframes blink {
|
||
|
|
0% {}
|
||
|
|
50% { background-color: transparent; }
|
||
|
|
100% {}
|
||
|
|
}
|
||
|
|
@-webkit-keyframes blink {
|
||
|
|
0% {}
|
||
|
|
50% { background-color: transparent; }
|
||
|
|
100% {}
|
||
|
|
}
|
||
|
|
@keyframes blink {
|
||
|
|
0% {}
|
||
|
|
50% { background-color: transparent; }
|
||
|
|
100% {}
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Can style cursor different in overwrite (non-insert) mode */
|
||
|
|
.CodeMirror-overwrite .CodeMirror-cursor {}
|
||
|
|
|
||
|
|
.cm-tab { display: inline-block; text-decoration: inherit; }
|
||
|
|
|
||
|
|
.CodeMirror-rulers {
|
||
|
|
position: absolute;
|
||
|
|
left: 0; right: 0; top: -50px; bottom: -20px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.CodeMirror-ruler {
|
||
|
|
border-left: 1px solid #ccc;
|
||
|
|
top: 0; bottom: 0;
|
||
|
|
position: absolute;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* DEFAULT THEME */
|
||
|
|
|
||
|
|
.cm-s-default .cm-header {color: blue;}
|
||
|
|
.cm-s-default .cm-quote {color: #090;}
|
||
|
|
.cm-negative {color: #d44;}
|
||
|
|
.cm-positive {color: #292;}
|
||
|
|
.cm-header, .cm-strong {font-weight: bold;}
|
||
|
|
.cm-em {font-style: italic;}
|
||
|
|
.cm-link {text-decoration: underline;}
|
||
|
|
.cm-strikethrough {text-decoration: line-through;}
|
||
|
|
|
||
|
|
.cm-s-default .cm-keyword {color: #708;}
|
||
|
|
.cm-s-default .cm-atom {color: #219;}
|
||
|
|
.cm-s-default .cm-number {color: #164;}
|
||
|
|
.cm-s-default .cm-def {color: #00f;}
|
||
|
|
.cm-s-default .cm-variable,
|
||
|
|
.cm-s-default .cm-punctuation,
|
||
|
|
.cm-s-default .cm-property,
|
||
|
|
.cm-s-default .cm-operator {}
|
||
|
|
.cm-s-default .cm-variable-2 {color: #05a;}
|
||
|
|
.cm-s-default .cm-variable-3 {color: #085;}
|
||
|
|
.cm-s-default .cm-comment {color: #a50;}
|
||
|
|
.cm-s-default .cm-string {color: #a11;}
|
||
|
|
.cm-s-default .cm-string-2 {color: #f50;}
|
||
|
|
.cm-s-default .cm-meta {color: #555;}
|
||
|
|
.cm-s-default .cm-qualifier {color: #555;}
|
||
|
|
.cm-s-default .cm-builtin {color: #30a;}
|
||
|
|
.cm-s-default .cm-bracket {color: #997;}
|
||
|
|
.cm-s-default .cm-tag {color: #170;}
|
||
|
|
.cm-s-default .cm-attribute {color: #00c;}
|
||
|
|
.cm-s-default .cm-hr {color: #999;}
|
||
|
|
.cm-s-default .cm-link {color: #00c;}
|
||
|
|
|
||
|
|
.cm-s-default .cm-error {color: #f00;}
|
||
|
|
.cm-invalidchar {color: #f00;}
|
||
|
|
|
||
|
|
.CodeMirror-composing { border-bottom: 2px solid; }
|
||
|
|
|
||
|
|
/* Default styles for common addons */
|
||
|
|
|
||
|
|
div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
|
||
|
|
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
|
||
|
|
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
|
||
|
|
.CodeMirror-activeline-background {background: #e8f2ff;}
|
||
|
|
|
||
|
|
/* STOP */
|
||
|
|
|
||
|
|
/* The rest of this file contains styles related to the mechanics of
|
||
|
|
the editor. You probably shouldn't touch them. */
|
||
|
|
|
||
|
|
.CodeMirror {
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
background: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.CodeMirror-scroll {
|
||
|
|
overflow: scroll !important; /* Things will break if this is overridden */
|
||
|
|
/* 30px is the magic margin used to hide the element's real scrollbars */
|
||
|
|
/* See overflow: hidden in .CodeMirror */
|
||
|
|
margin-bottom: -30px; margin-right: -30px;
|
||
|
|
padding-bottom: 30px;
|
||
|
|
height: 100%;
|
||
|
|
outline: none; /* Prevent dragging from highlighting the element */
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.CodeMirror-sizer {
|
||
|
|
position: relative;
|
||
|
|
border-right: 30px solid transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* The fake, visible scrollbars. Used to force redraw during scrolling
|
||
|
|
before actual scrolling happens, thus preventing shaking and
|
||
|
|
flickering artifacts. */
|
||
|
|
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
||
|
|
position: absolute;
|
||
|
|
z-index: 6;
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.CodeMirror-vscrollbar {
|
||
|
|
right: 0; top: 0;
|
||
|
|
overflow-x: hidden;
|
||
|
|
overflow-y: scroll;
|
||
|
|
}
|
||
|
|
.CodeMirror-hscrollbar {
|
||
|
|
bottom: 0; left: 0;
|
||
|
|
overflow-y: hidden;
|
||
|
|
overflow-x: scroll;
|
||
|
|
}
|
||
|
|
.CodeMirror-scrollbar-filler {
|
||
|
|
right: 0; bottom: 0;
|
||
|
|
}
|
||
|
|
.CodeMirror-gutter-filler {
|
||
|
|
left: 0; bottom: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.CodeMirror-gutters {
|
||
|
|
position: absolute; left: 0; top: 0;
|
||
|
|
min-height: 100%;
|
||
|
|
z-index: 3;
|
||
|
|
}
|
||
|
|
.CodeMirror-gutter {
|
||
|
|
white-space: normal;
|
||
|
|
height: 100%;
|
||
|
|
display: inline-block;
|
||
|
|
vertical-align: top;
|
||
|
|
margin-bottom: -30px;
|
||
|
|
}
|
||
|
|
.CodeMirror-gutter-wrapper {
|
||
|
|
position: absolute;
|
||
|
|
z-index: 4;
|
||
|
|
background: none !important;
|
||
|
|
border: none !important;
|
||
|
|
}
|
||
|
|
.CodeMirror-gutter-background {
|
||
|
|
position: absolute;
|
||
|
|
top: 0; bottom: 0;
|
||
|
|
z-index: 4;
|
||
|
|
}
|
||
|
|
.CodeMirror-gutter-elt {
|
||
|
|
position: absolute;
|
||
|
|
cursor: default;
|
||
|
|
z-index: 4;
|
||
|
|
}
|
||
|
|
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
|
||
|
|
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
|
||
|
|
|
||
|
|
.CodeMirror-lines {
|
||
|
|
cursor: text;
|
||
|
|
min-height: 1px; /* prevents collapsing before first draw */
|
||
|
|
}
|
||
|
|
.CodeMirror pre {
|
||
|
|
/* Reset some styles that the rest of the page might have set */
|
||
|
|
-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
|
||
|
|
border-width: 0;
|
||
|
|
background: transparent;
|
||
|
|
font-family: inherit;
|
||
|
|
font-size: inherit;
|
||
|
|
margin: 0;
|
||
|
|
white-space: pre;
|
||
|
|
word-wrap: normal;
|
||
|
|
line-height: inherit;
|
||
|
|
color: inherit;
|
||
|
|
z-index: 2;
|
||
|
|
position: relative;
|
||
|
|
overflow: visible;
|
||
|
|
-webkit-tap-highlight-color: transparent;
|
||
|
|
-webkit-font-variant-ligatures: contextual;
|
||
|
|
font-variant-ligatures: contextual;
|
||
|
|
}
|
||
|
|
.CodeMirror-wrap pre {
|
||
|
|
word-wrap: break-word;
|
||
|
|
white-space: pre-wrap;
|
||
|
|
word-break: normal;
|
||
|
|
}
|
||
|
|
|
||
|
|
.CodeMirror-linebackground {
|
||
|
|
position: absolute;
|
||
|
|
left: 0; right: 0; top: 0; bottom: 0;
|
||
|
|
z-index: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.CodeMirror-linewidget {
|
||
|
|
position: relative;
|
||
|
|
z-index: 2;
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.CodeMirror-widget {}
|
||
|
|
|
||
|
|
.CodeMirror-rtl pre { direction: rtl; }
|
||
|
|
|
||
|
|
.CodeMirror-code {
|
||
|
|
outline: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Force content-box sizing for the elements where we expect it */
|
||
|
|
.CodeMirror-scroll,
|
||
|
|
.CodeMirror-sizer,
|
||
|
|
.CodeMirror-gutter,
|
||
|
|
.CodeMirror-gutters,
|
||
|
|
.CodeMirror-linenumber {
|
||
|
|
-moz-box-sizing: content-box;
|
||
|
|
box-sizing: content-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.CodeMirror-measure {
|
||
|
|
position: absolute;
|
||
|
|
width: 100%;
|
||
|
|
height: 0;
|
||
|
|
overflow: hidden;
|
||
|
|
visibility: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.CodeMirror-cursor {
|
||
|
|
position: absolute;
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
.CodeMirror-measure pre { position: static; }
|
||
|
|
|
||
|
|
div.CodeMirror-cursors {
|
||
|
|
visibility: hidden;
|
||
|
|
position: relative;
|
||
|
|
z-index: 3;
|
||
|
|
}
|
||
|
|
div.CodeMirror-dragcursors {
|
||
|
|
visibility: visible;
|
||
|
|
}
|
||
|
|
|
||
|
|
.CodeMirror-focused div.CodeMirror-cursors {
|
||
|
|
visibility: visible;
|
||
|
|
}
|
||
|
|
|
||
|
|
.CodeMirror-selected { background: #d9d9d9; }
|
||
|
|
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
|
||
|
|
.CodeMirror-crosshair { cursor: crosshair; }
|
||
|
|
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
|
||
|
|
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
|
||
|
|
|
||
|
|
.cm-searching {
|
||
|
|
background: #ffa;
|
||
|
|
background: rgba(255, 255, 0, .4);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Used to force a border model for a node */
|
||
|
|
.cm-force-border { padding-right: .1px; }
|
||
|
|
|
||
|
|
@media print {
|
||
|
|
/* Hide the cursor when printing */
|
||
|
|
.CodeMirror div.CodeMirror-cursors {
|
||
|
|
visibility: hidden;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/* See issue #2901 */
|
||
|
|
.cm-tab-wrap-hack:after { content: ''; }
|
||
|
|
|
||
|
|
/* Help users use markselection to safely style text background */
|
||
|
|
span.CodeMirror-selectedtext { background: none; }
|
||
|
|
|
||
|
|
.CodeMirror-hints {
|
||
|
|
position: absolute;
|
||
|
|
z-index: 10;
|
||
|
|
overflow: hidden;
|
||
|
|
list-style: none;
|
||
|
|
|
||
|
|
margin: 0;
|
||
|
|
padding: 2px;
|
||
|
|
|
||
|
|
-webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
|
||
|
|
-moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
|
||
|
|
box-shadow: 2px 3px 5px rgba(0,0,0,.2);
|
||
|
|
border-radius: 3px;
|
||
|
|
border: 1px solid silver;
|
||
|
|
|
||
|
|
background: white;
|
||
|
|
font-size: 90%;
|
||
|
|
font-family: monospace;
|
||
|
|
|
||
|
|
max-height: 20em;
|
||
|
|
overflow-y: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.CodeMirror-hint {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0 4px;
|
||
|
|
border-radius: 2px;
|
||
|
|
white-space: pre;
|
||
|
|
color: black;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
li.CodeMirror-hint-active {
|
||
|
|
background: #08f;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @class PMUI.panel.AccordionPanel */
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The default background-color for AccordionPanel-header
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The default background-color for AccordionPanel-body
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The default background-color for AccordionPanel-body
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The default background-color for AccordionPanel-header
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The default background-color for AccordionItem-header
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The default background-color for AccordionItem-header
|
||
|
|
*/
|
||
|
|
/** @class PMUI.ui.Button */
|
||
|
|
/**
|
||
|
|
* @var {number}
|
||
|
|
* The font-size for the default button
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The color for the default button
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The background-color for the default button
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {number}
|
||
|
|
* The button-opacity for the default button
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The button-opacity for the default button when the button is hover
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The button-link for the default button
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The button-link color for the default button when the button is hover
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The button-background color for the default button when the button is disabled
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The button-color for the default button when the button is disabled
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The button-opacity for the default button when the button is disabled
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The button-background color for the default button when the button is disabled and hover
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* @var {color}
|
||
|
|
* The button-opacity for the default button when the button is disabled and hover
|
||
|
|
*/
|
||
|
|
/** @class PMUI.ui.Button */
|
||
|
|
/**
|
||
|
|
* Creates a default pmui button.
|
||
|
|
* @param {class} $base base class
|
||
|
|
* @param {number} [$button_fontSize] font size
|
||
|
|
* @param {color} [$button_color] font color
|
||
|
|
* @param {button_backgroundColor} [$button_backgroundColor] background color
|
||
|
|
* @param {number} [$button_opacity] opacity
|
||
|
|
* @param {color} [$button-hover_opacity] button hover opacity
|
||
|
|
* @param {color} [$button-link_color] button link color
|
||
|
|
* @param {color} [$button-link-hover_color] button-link-hover_color
|
||
|
|
* @param {color} [$button-disabled_backgroundColor] button-disabled_backgroundColor
|
||
|
|
* @param {color} [$button-disabled_color] button-disabled_color
|
||
|
|
* @param {color} [$button-disabled_opacity] button-disabled_opacity
|
||
|
|
* @param {color} [$button-disabled-hover_backgroundColor] button-disabled-hover_backgroundColor
|
||
|
|
* @param {color} [$button-disabled-hover_opacity] button-disabled-hover_opacity
|
||
|
|
*/
|
||
|
|
/*@include font-face("SourceSansPro", font-files("SourceSansPro-Regular/SourceSansPro-Regular-webfont.ttf", "SourceSansPro-Regular/SourceSansPro-Regular-webfont.eot", "SourceSansPro-Regular/SourceSansPro-Regular-webfont.woff", "SourceSansPro-Regular/SourceSansPro-Regular-webfont.svg"),"SourceSansPro-Regular/SourceSansPro-Regular-webfont.eot");
|
||
|
|
@include font-face("SourceSansProBold", font-files("SourceSansPro-Bold/SourceSansPro-Bold-webfont.ttf", "SourceSansPro-Bold/SourceSansPro-Bold-webfont.eot", "SourceSansPro-Bold/SourceSansPro-Bold-webfont.woff", "SourceSansPro-Bold/SourceSansPro-Bold-webfont.svg"),"SourceSansPro-Bold/SourceSansPro-Bold-webfont.eot");*/
|
||
|
|
@font-face {
|
||
|
|
font-family: "Chivo";
|
||
|
|
src: url('../fonts/Chivo/Chivo-Black.ttf?1608295698') format('truetype'), url('../fonts/Chivo/Chivo-BlackItalic.ttf?1608295698') format('truetype'), url('../fonts/Chivo/Chivo-Italic.ttf?1608295698') format('truetype'), url('../fonts/Chivo/Chivo-Regular.ttf?1608295698') format('truetype');
|
||
|
|
}
|
||
|
|
@font-face {
|
||
|
|
font-family: "Montserrat";
|
||
|
|
src: url('../fonts/Montserrat/Montserrat-Bold.ttf?1608295698') format('truetype'), url('../fonts/Montserrat/Montserrat-Regular.ttf?1608295698') format('truetype');
|
||
|
|
}
|
||
|
|
.pmui-sprite-sprite, .pmui-sprite-arrow-down, .pmui-sprite-arrow-next, .pmui-sprite-arrow-previous, .pmui-sprite-arrow-right, .pmui-sprite-arrow-up, .pmui-sprite-delete-16, .pmui-sprite-error-64, .pmui-sprite-error, .pmui-sprite-grid-arrow-down, .pmui-sprite-grid-arrow-up, .pmui-sprite-help, .pmui-sprite-info-64, .pmui-sprite-information, .pmui-sprite-question-64, .pmui-sprite-success-64, .pmui-sprite-warning-64, .pmui-sprite-warning, .pmui-sprite-window-close, .pmui-accordion-item-closed, .pmui-accordion-item-expanded, .pmui-gridpanel-pagelink.pmui-gridpanel-nextbutton .pmui-icon, .pmui-gridpanel-pagelink.pmui-gridpanel-previousbutton .pmui-icon, .pmui-gridpanelcolumn.pmui-sortable.pmui-sort-asc .pmui-grid-sort-icon, .pmui-gridpanelcolumn.pmui-sortable.pmui-sort-desc .pmui-grid-sort-icon, .pmui-icon-help, .pmui-icon-info, .pmui-icon-error, .pmui-icon-warning, .pmui-messagewindow-icon-error, .pmui-messagewindow-icon-warning, .pmui-messagewindow-icon-info, .pmui-messagewindow-icon-success, .pmui-messagewindow-icon-confirm {
|
||
|
|
background-image: url('../img/pmui-sprite-s947c1ade08.png');
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-arrow-down {
|
||
|
|
background-position: 0 0;
|
||
|
|
height: 6px;
|
||
|
|
width: 11px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-arrow-next {
|
||
|
|
background-position: 0 -6px;
|
||
|
|
height: 13px;
|
||
|
|
width: 9px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-arrow-previous {
|
||
|
|
background-position: 0 -19px;
|
||
|
|
height: 13px;
|
||
|
|
width: 9px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-arrow-right {
|
||
|
|
background-position: 0 -32px;
|
||
|
|
height: 16px;
|
||
|
|
width: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-arrow-up {
|
||
|
|
background-position: 0 -48px;
|
||
|
|
height: 6px;
|
||
|
|
width: 11px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-delete-16 {
|
||
|
|
background-position: 0 -54px;
|
||
|
|
height: 16px;
|
||
|
|
width: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-error-64 {
|
||
|
|
background-position: 0 -70px;
|
||
|
|
height: 64px;
|
||
|
|
width: 64px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-error {
|
||
|
|
background-position: 0 -134px;
|
||
|
|
height: 16px;
|
||
|
|
width: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-grid-arrow-down {
|
||
|
|
background-position: 0 -150px;
|
||
|
|
height: 6px;
|
||
|
|
width: 11px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-grid-arrow-up {
|
||
|
|
background-position: 0 -156px;
|
||
|
|
height: 6px;
|
||
|
|
width: 11px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-help {
|
||
|
|
background-position: 0 -162px;
|
||
|
|
height: 18px;
|
||
|
|
width: 18px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-info-64 {
|
||
|
|
background-position: 0 -180px;
|
||
|
|
height: 64px;
|
||
|
|
width: 64px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-information {
|
||
|
|
background-position: 0 -244px;
|
||
|
|
height: 16px;
|
||
|
|
width: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-question-64 {
|
||
|
|
background-position: 0 -260px;
|
||
|
|
height: 64px;
|
||
|
|
width: 64px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-success-64 {
|
||
|
|
background-position: 0 -324px;
|
||
|
|
height: 64px;
|
||
|
|
width: 64px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-warning-64 {
|
||
|
|
background-position: 0 -388px;
|
||
|
|
height: 64px;
|
||
|
|
width: 64px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-warning {
|
||
|
|
background-position: 0 -452px;
|
||
|
|
height: 16px;
|
||
|
|
width: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-sprite-window-close {
|
||
|
|
background-position: 0 -468px;
|
||
|
|
height: 14px;
|
||
|
|
width: 18px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Title assignment */
|
||
|
|
.mafe-designer-assigment-title {
|
||
|
|
left: 15px !important;
|
||
|
|
font-weight: 700;
|
||
|
|
color: #2d3e50;
|
||
|
|
background: transparent;
|
||
|
|
margin-top: 15px;
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel.mafe-designer-assigment-grid input {
|
||
|
|
border: 1px solid #cdd2d5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-tableContainer {
|
||
|
|
overflow: inherit !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gridPanel-smooth .mafe-button-delete {
|
||
|
|
border: 1px solid white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-form .pmui-formpanel {
|
||
|
|
text-align: initial;
|
||
|
|
overflow: inherit !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-show {
|
||
|
|
background-color: red;
|
||
|
|
color: white;
|
||
|
|
background-color: #7CC2F9;
|
||
|
|
padding: 0 15px;
|
||
|
|
text-transform: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-edit {
|
||
|
|
background-color: #1fbc99;
|
||
|
|
padding: 0 12px;
|
||
|
|
text-transform: none;
|
||
|
|
line-height: 26px !important;
|
||
|
|
height: 26px !important;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-edit:hover {
|
||
|
|
background: #1ba385;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-edit-assign-no-hover {
|
||
|
|
background-image: url(../img/plus_.png);
|
||
|
|
background-position: 99% 50%;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-color: inherit;
|
||
|
|
background-color: #3397e1;
|
||
|
|
padding: 0 12px;
|
||
|
|
text-transform: none;
|
||
|
|
line-height: 26px !important;
|
||
|
|
height: 26px !important;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-edit-assign {
|
||
|
|
background-image: url(../img/arrow-grid.png);
|
||
|
|
background-position: 99% 50%;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-color: inherit;
|
||
|
|
padding: 0 12px;
|
||
|
|
text-transform: none;
|
||
|
|
line-height: 26px !important;
|
||
|
|
height: 26px !important;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-edit-assign:hover {
|
||
|
|
background-image: url(../img/arrow-grid.png);
|
||
|
|
background-position: 99% 50%;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-color: #e0e0e0;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-editstep {
|
||
|
|
background-color: #1fbc99;
|
||
|
|
padding: 0 12px;
|
||
|
|
text-transform: none;
|
||
|
|
line-height: 26px !important;
|
||
|
|
height: 26px !important;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-editstep:hover {
|
||
|
|
background: #1ba385;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-condition-trigger {
|
||
|
|
line-height: 18px !important;
|
||
|
|
height: 40px !important;
|
||
|
|
top: -2px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-properties {
|
||
|
|
background-color: white;
|
||
|
|
padding: 0 5px;
|
||
|
|
text-transform: none;
|
||
|
|
line-height: 28px !important;
|
||
|
|
height: 28px !important;
|
||
|
|
color: #3397e1;
|
||
|
|
border: 1px solid #3397e1;
|
||
|
|
-moz-box-shadow: inset 0 0 0 1px #3397e1;
|
||
|
|
-webkit-box-shadow: inset 0 0 0 1px #3397e1;
|
||
|
|
box-shadow: inset 0 0 0 1px #3397e1;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-properties:hover {
|
||
|
|
background: #3397e1;
|
||
|
|
color: #fff;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-delete {
|
||
|
|
background-color: #e4655f;
|
||
|
|
border: 1px solid #e14333;
|
||
|
|
padding: 0 4px;
|
||
|
|
text-transform: none;
|
||
|
|
line-height: 26px !important;
|
||
|
|
height: 26px !important;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-delete:hover {
|
||
|
|
background: #e14333;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-delete-assign-no-hover {
|
||
|
|
background-image: url("../img/close_.png");
|
||
|
|
background-position: 99% 50%;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-color: inherit;
|
||
|
|
padding: 0 12px;
|
||
|
|
text-transform: none;
|
||
|
|
line-height: 26px !important;
|
||
|
|
height: 26px !important;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-delete-assign {
|
||
|
|
background-image: url("../img/close-grid.png");
|
||
|
|
background-position: 99% 50%;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-color: inherit;
|
||
|
|
padding: 0 12px;
|
||
|
|
text-transform: none;
|
||
|
|
line-height: 26px !important;
|
||
|
|
height: 26px !important;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-delete-assign:hover {
|
||
|
|
background-image: url("../img/close-grid.png");
|
||
|
|
background-position: 99% 50%;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-color: #e0e0e0;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
#gridUsers .mafe-button-edit {
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
#gridUsers .mafe-button-edit, #gridUsers .mafe-button-delete {
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-create {
|
||
|
|
background-color: #1fbc99;
|
||
|
|
border: 1px solid #1ba385;
|
||
|
|
float: right;
|
||
|
|
padding: 0 15px 0 38px;
|
||
|
|
background: #1fbc99 url(../img/ico_mor2.png) no-repeat 5px center;
|
||
|
|
font-size: 16px;
|
||
|
|
margin-top: 3px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
margin-right: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-create:hover {
|
||
|
|
background-color: #1ba385;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-webentry-link {
|
||
|
|
width: 485px;
|
||
|
|
overflow: hidden;
|
||
|
|
white-space: nowrap;
|
||
|
|
display: inline-block;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
a.mafe-button-create:hover{
|
||
|
|
background: #1ba385 url(../img/ico_mor2.png) no-repeat 95% center;
|
||
|
|
padding: 0 45px 0 15px;
|
||
|
|
opacity : 1;
|
||
|
|
background-color: #1ba385;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
}*/
|
||
|
|
.mafe-gridPanel {
|
||
|
|
margin: 0 2% 0 2%;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* MAFE ASSIGMENT*/
|
||
|
|
.mafe-tabpanel-assignment {
|
||
|
|
padding-top: 1%;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* MAFE ASSIGMENT*/
|
||
|
|
.mafe-panel {
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-panel-assignment-white {
|
||
|
|
vertical-align: top;
|
||
|
|
padding-left: 2%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-panel-assignment-smooth {
|
||
|
|
vertical-align: top;
|
||
|
|
background-color: #eaebed;
|
||
|
|
padding-left: 2%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-designer-assigment-grid {
|
||
|
|
left: 14px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-designer-assigment-grid .pmui-gridpanel-tableContainer {
|
||
|
|
border: 1px solid #e5e5e5;
|
||
|
|
margin: 0 6% 0 0%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-designer-assigment-grid .pmui-gridpanel-table {
|
||
|
|
min-height: 0em;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-designer-assigment-grid .pmui-gridpanelcell-content {
|
||
|
|
padding: 0 0 0 0;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*.mafe-designer-assigment-grid .mafe-button-edit {
|
||
|
|
background-color: #FFFFFF;
|
||
|
|
}*/
|
||
|
|
/*.mafe-designer-assigment-grid .mafe-button-delete {
|
||
|
|
background-color: #FFFFFF;
|
||
|
|
border: 1px solid white;
|
||
|
|
}*/
|
||
|
|
/*
|
||
|
|
.mafe-designer-assigment-grid tr:hover .mafe-button-delete {
|
||
|
|
background-color: #e53d3d;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-designer-assigment-grid tr:hover .mafe-button-edit{
|
||
|
|
background-color: #19bd9b;
|
||
|
|
}*/
|
||
|
|
.mafe-panel-assignment-smooth .mafe-designer-assigment-grid {
|
||
|
|
background-color: #eaebed;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*option selector */
|
||
|
|
.mafe-assigment-buttons {
|
||
|
|
margin: 9px 0 2px 0;
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-assigment-buttons .pmui-switch-buttonitem {
|
||
|
|
margin-right: 7px;
|
||
|
|
border-radius: 0 0 0 0;
|
||
|
|
font-size: 11px;
|
||
|
|
border: 0px solid rgba(45, 62, 82, 0.1);
|
||
|
|
background-color: rgba(45, 62, 82, 0.1);
|
||
|
|
padding: 8px 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-assigment-buttons .pmui-switch-buttonitem:hover {
|
||
|
|
border: 0px solid rgba(45, 62, 82, 0.1);
|
||
|
|
border-radius: 0 0 0 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-assigment-buttons .pmui-switch-buttonitem-selected {
|
||
|
|
font-size: 11px;
|
||
|
|
margin-right: 7px;
|
||
|
|
border-radius: 0 0 0 0;
|
||
|
|
background: #2d3e50;
|
||
|
|
border: 0px solid #2d3e50;
|
||
|
|
padding: 8px 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-assigment-buttons .pmui-switch-buttonitem-selected:hover {
|
||
|
|
border: 0px solid #2d3e50;
|
||
|
|
border-radius: 0 0 0 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-switch-buttonitem.pmui-switch-icon-all .pmui-switch-buttonitem-icon {
|
||
|
|
height: 22px;
|
||
|
|
display: inline-block;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-switch-buttonitem-selected.pmui-switch-icon-all .pmui-switch-buttonitem-icon {
|
||
|
|
height: 22px;
|
||
|
|
display: inline-block;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-switch-buttonitem.pmui-switch-icon-user .pmui-switch-buttonitem-icon {
|
||
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
||
|
|
background-position: 0px -173px;
|
||
|
|
width: 33px;
|
||
|
|
height: 22px;
|
||
|
|
display: inline-block;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-switch-buttonitem-selected.pmui-switch-icon-user .pmui-switch-buttonitem-icon {
|
||
|
|
background: url(../img/i_us_white.png) no-repeat;
|
||
|
|
background-position: 0px 0px;
|
||
|
|
width: 33px;
|
||
|
|
height: 22px;
|
||
|
|
display: inline-block;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-switch-buttonitem.pmui-switch-icon-group .pmui-switch-buttonitem-icon {
|
||
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
||
|
|
background-position: 0px -113px;
|
||
|
|
width: 33px;
|
||
|
|
height: 22px;
|
||
|
|
display: inline-block;
|
||
|
|
vertical-align: middle;
|
||
|
|
margin: 0 6px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-switch-buttonitem-selected.pmui-switch-icon-group .pmui-switch-buttonitem-icon {
|
||
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
||
|
|
background-position: 0px -91px;
|
||
|
|
width: 33px;
|
||
|
|
height: 22px;
|
||
|
|
display: inline-block;
|
||
|
|
vertical-align: middle;
|
||
|
|
margin: 0 6px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-grid-panel-empty {
|
||
|
|
background: url(../img/i_group_big.png) no-repeat center;
|
||
|
|
height: none;
|
||
|
|
text-align: center;
|
||
|
|
padding-top: 120px;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-grid-panel-empty span {
|
||
|
|
font-size: 18px;
|
||
|
|
color: #777777;
|
||
|
|
font-style: normal;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* STEPS SUPERVISOR*/
|
||
|
|
.mafe-panel-smooth {
|
||
|
|
background-color: #eaebed;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gridPanel-smooth .pmui-gridpanel-tableContainer {
|
||
|
|
border: 1px solid #e5e5e5;
|
||
|
|
margin: 0 6% 0 0%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gridPanel-smooth .pmui-gridpanel-table {
|
||
|
|
min-height: 0em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gridPanel-smooth .pmui-gridpanelcell-content {
|
||
|
|
padding: 0 0 0 0;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gridPanel-smooth .mafe-button-edit {
|
||
|
|
background-color: #FFFFFF;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gridPanel-smooth .mafe-button-delete {
|
||
|
|
background-color: #FFFFFF;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gridPanel-smooth tr:hover .mafe-button-delete {
|
||
|
|
background-color: #e53d3d;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gridPanel-smooth tr:hover .mafe-button-edit {
|
||
|
|
background-color: #19bd9b;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-item-header {
|
||
|
|
background: #3397e1 !important;
|
||
|
|
color: white;
|
||
|
|
border-color: #2481c5;
|
||
|
|
border-top: 1px solid #2081C8 !important;
|
||
|
|
border-bottom: 1px solid #068CED !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-panel-body {
|
||
|
|
border: 1px solid #eee;
|
||
|
|
min-height: 200px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-item-container {
|
||
|
|
border-left: none !important;
|
||
|
|
border-right: none !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-border-panel {
|
||
|
|
border: 1px solid #aeb5b6;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-hidden-fields-panel {
|
||
|
|
list-style-type: none;
|
||
|
|
border: 1px solid #C0C0C0;
|
||
|
|
height: 50px;
|
||
|
|
width: 100%;
|
||
|
|
margin-top: 2px;
|
||
|
|
bottom: 1px;
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-hidden-fields-panel > * {
|
||
|
|
margin: 5px 0px 5px 5px;
|
||
|
|
padding: 2px;
|
||
|
|
float: left;
|
||
|
|
height: 34px;
|
||
|
|
width: 90px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-hidden-fields-panel-name {
|
||
|
|
font-size: 10px;
|
||
|
|
border: 2px dotted #C0C0C0;
|
||
|
|
height: 15px;
|
||
|
|
margin: 3px;
|
||
|
|
line-height: 150%;
|
||
|
|
width: 80px;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-hidden-fields-panel-label {
|
||
|
|
font-size: 9px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-hidden-fields-panel-label-isSelected {
|
||
|
|
background-color: gainsboro;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-footer {
|
||
|
|
top: 0px;
|
||
|
|
left: 10px;
|
||
|
|
width: 95%;
|
||
|
|
height: 13px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#gridUsers .pmui-gridpanel-footer,
|
||
|
|
#gridUserList .pmui-gridpanel-footer,
|
||
|
|
#gridUsersAD .pmui-gridpanel-footer,
|
||
|
|
#gridUserListAD .pmui-gridpanel-footer {
|
||
|
|
position: initial;
|
||
|
|
top: inherit;
|
||
|
|
left: initial;
|
||
|
|
width: 95%;
|
||
|
|
margin-top: inherit;
|
||
|
|
height: 13px;
|
||
|
|
padding-top: 1px !important;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-footer {
|
||
|
|
padding: 10px 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#gridUserList .pmui-gridpanel-tableContainer,
|
||
|
|
#gridUsers .pmui-gridpanel-tableContainer,
|
||
|
|
#gridUsersAD .pmui-gridpanel-tableContainer,
|
||
|
|
#gridUserListAD .pmui-gridpanel-tableContainer {
|
||
|
|
height: 245px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-total {
|
||
|
|
vertical-align: super;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_controls ul li {
|
||
|
|
padding: 1px 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-footer-dinamic .pmui-gridpanel-pager {
|
||
|
|
padding: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#gridUsers .pmui-gridpanel-searchload.load {
|
||
|
|
left: 310px;
|
||
|
|
top: 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field-control-table td {
|
||
|
|
padding: 0px 45px 0px 20px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
#gridAcceptedValues .pmui-gridpanel-footer {
|
||
|
|
top: 0px;
|
||
|
|
left: 10px;
|
||
|
|
width: 89%;
|
||
|
|
height: 13px;
|
||
|
|
padding-top: 1px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.clearlooks2 .mceFocus .mceTop .mceCenter {
|
||
|
|
background: #3397e1 !important;
|
||
|
|
color: white !important;
|
||
|
|
text-align: left !important;
|
||
|
|
padding: 10px 15px !important;
|
||
|
|
cursor: move !important;
|
||
|
|
font-size: 14px !important;
|
||
|
|
border-bottom: 1px solid #e5e5e5 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.clearlooks2 .mceBottom .mceCenter {
|
||
|
|
left: 5px !important;
|
||
|
|
width: 100% !important;
|
||
|
|
background: none !important;
|
||
|
|
background-color: white !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.clearlooks2 {
|
||
|
|
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4) !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.clearlooks2 a.mceResizeW {
|
||
|
|
background-color: white !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.clearlooks2 a.mceResizeE {
|
||
|
|
background-color: white !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.clearlooks2 .mceResize {
|
||
|
|
background: none !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.clearlooks2 .mceClose {
|
||
|
|
background: url("../img/mafe-tools.png") no-repeat !important;
|
||
|
|
background-position: 0 -966px !important;
|
||
|
|
width: 20px !important;
|
||
|
|
height: 20px !important;
|
||
|
|
margin-top: -1px !important;
|
||
|
|
margin-right: 3px !important;
|
||
|
|
opacity: inherit !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.clearlooks2 .mceClose:hover {
|
||
|
|
background: url("../img/mafe-tools.png") no-repeat !important;
|
||
|
|
background-position: 0 -1156px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.clearlooks2 .mceFocus .mceMax {
|
||
|
|
visibility: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.clearlooks2 .mceFocus .mceMed {
|
||
|
|
background: url(../img/mafe-tools.png) no-repeat !important;
|
||
|
|
background-position: 0 -966px !important;
|
||
|
|
width: 27px !important;
|
||
|
|
height: 20px !important;
|
||
|
|
margin-top: -3px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window-close {
|
||
|
|
margin-top: 0px !important;
|
||
|
|
outline: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window-close .button-icon {
|
||
|
|
background: url("../img/mafe-tools.png") no-repeat !important;
|
||
|
|
background-position: 0 -966px !important;
|
||
|
|
width: 20px !important;
|
||
|
|
height: 20px !important;
|
||
|
|
margin-top: 0px !important;
|
||
|
|
opacity: inherit !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window-close .button-icon:hover {
|
||
|
|
background: url("../img/mafe-tools.png") no-repeat !important;
|
||
|
|
background-position: 0 -1156px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pagelink.disable,
|
||
|
|
.pmui-gridpanel-pagelink.pmui-gridpanel-nextbutton.disable,
|
||
|
|
.pmui-gridpanel-pagelink.pmui-gridpanel-previousbutton.disable {
|
||
|
|
background: #D6D2D2;
|
||
|
|
color: #ffffff;
|
||
|
|
cursor: default;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-submenu-option {
|
||
|
|
padding: 10px;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
#buttonCriteriaField {
|
||
|
|
background: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-activity-task-red {
|
||
|
|
background-color: #ce0615;
|
||
|
|
border: 1px solid #9f0614;
|
||
|
|
-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);
|
||
|
|
}
|
||
|
|
|
||
|
|
.list-suggest-item :hover {
|
||
|
|
background-color: #e0e0e0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.list-suggest-item.single-label :hover {
|
||
|
|
background-color: initial;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
#ActionsByEmailPanel #customGridPanelControls {
|
||
|
|
border: 1px solid #c0c0c0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#customGridPanel .pmui-formpanel {
|
||
|
|
padding: 3px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
#customGridPanelControls #firstPanel {
|
||
|
|
float: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
#thirdPanel .pmui-button {
|
||
|
|
padding: 5px 10px 5px 10px;
|
||
|
|
width: 75px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
#thirdPanel .pmui-button {
|
||
|
|
padding: 5px 10px 5px 10px;
|
||
|
|
width: 75px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.propertiesTask-accordionItem {
|
||
|
|
right: 6px;
|
||
|
|
position: absolute;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.propertiesTask-accordionButton {
|
||
|
|
padding: 0px 7px 3px 7px;
|
||
|
|
border: 1px solid;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.propertiesTask-accordionButton:hover {
|
||
|
|
background: #2481c5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-delete.propertiesTask-accordionButton,
|
||
|
|
.mafe-button-edit.propertiesTask-accordionButton {
|
||
|
|
line-height: initial !important;
|
||
|
|
border-right: none;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-edit.propertiesTask-accordionButton {
|
||
|
|
border: none;
|
||
|
|
border-right: 1px solid;
|
||
|
|
}
|
||
|
|
|
||
|
|
#stepsAssignAccordion .pmui-accordion-item-header {
|
||
|
|
cursor: move;
|
||
|
|
}
|
||
|
|
|
||
|
|
#idAssignment .pmui-accordion-item-header,
|
||
|
|
#idRouting .pmui-accordion-item-header {
|
||
|
|
cursor: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
#stepsAssignTree .pmui-treepanel-list {
|
||
|
|
width: 300px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#stepsAssignTree .pmui-treepanel-node-collapsed {
|
||
|
|
cursor: move;
|
||
|
|
}
|
||
|
|
|
||
|
|
#stepsMainContainer .pmui-field-label,
|
||
|
|
#stepsMainContainer .pmui-textannotationfield {
|
||
|
|
padding: 0px 10px 0px 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#stepsMainContainer .mafe-gridPanel {
|
||
|
|
margin: 0px !important;
|
||
|
|
padding: 0px 10px 0px 10px;
|
||
|
|
border: 1px solid;
|
||
|
|
border-color: #c0c0c0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#stepsMainContainer .pmui-accordion-item-body {
|
||
|
|
padding: 3px;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
#stepsAssignAccordion .pmui-accordion-item-title {
|
||
|
|
width: 400px;
|
||
|
|
text-transform: none;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: hidden;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
#mainContainer #collapse-button {
|
||
|
|
width: 160px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-activity-task {
|
||
|
|
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: 12px;
|
||
|
|
/*-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);*/
|
||
|
|
-moz-box-sizing: border-box;
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-activity-task-disabled {
|
||
|
|
background-color: white;
|
||
|
|
border: 2px solid #a5adb4;
|
||
|
|
-webkit-border-radius: 3px;
|
||
|
|
-moz-border-radius: 3px;
|
||
|
|
-ms-border-radius: 3px;
|
||
|
|
-o-border-radius: 3px;
|
||
|
|
border-radius: 12px;
|
||
|
|
/*-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;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmactivity .pmui-label span {
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmevent .pmui-label span {
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmgateway .pmui-label span {
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmpool .pmui-label > first-child {
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.rotateText {
|
||
|
|
color: #3b4753;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-activity-subprocess {
|
||
|
|
background-color: white;
|
||
|
|
border: 4px solid #3b4753;
|
||
|
|
-webkit-border-radius: 3px;
|
||
|
|
-moz-border-radius: 3px;
|
||
|
|
-ms-border-radius: 3px;
|
||
|
|
-o-border-radius: 3px;
|
||
|
|
border-radius: 12px;
|
||
|
|
/*-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-activity-subprocess-disabled {
|
||
|
|
background-color: white;
|
||
|
|
border: 3px solid #a5adb4;
|
||
|
|
-webkit-border-radius: 3px;
|
||
|
|
-moz-border-radius: 3px;
|
||
|
|
-ms-border-radius: 3px;
|
||
|
|
-o-border-radius: 3px;
|
||
|
|
border-radius: 12px;
|
||
|
|
/*-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;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmactivity .pmui-label span {
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmdata .pmui-label span {
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-connection .pmui-label span {
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-intersection {
|
||
|
|
bacground-color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.dragConnectHandler {
|
||
|
|
background-color: #FAB606;
|
||
|
|
border-radius: 50%;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*.dragConnectHandler.ui-draggable-dragging {
|
||
|
|
background: green;
|
||
|
|
z-index:200;
|
||
|
|
}
|
||
|
|
*/
|
||
|
|
.dropConnectHandler {
|
||
|
|
background-color: #3b4753;
|
||
|
|
border-radius: 50%;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*.dropConnectHandler.ui-draggable-dragging {
|
||
|
|
background: #0317FC;
|
||
|
|
z-index:200;
|
||
|
|
}*/
|
||
|
|
.dropConnectHandler.ui-state-active {
|
||
|
|
background: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.dropConnectHandler .ui-state-hover {
|
||
|
|
background: green;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui {
|
||
|
|
font-family: Chivo-regular, sans-serif;
|
||
|
|
font-size: inherit;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window-modal {
|
||
|
|
position: fixed;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
background-color: rgba(0, 0, 0, 0.4);
|
||
|
|
left: 0;
|
||
|
|
top: 0;
|
||
|
|
z-index: 100;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window {
|
||
|
|
display: inline-block;
|
||
|
|
position: absolute;
|
||
|
|
background-color: #FFF;
|
||
|
|
-moz-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
|
||
|
|
-webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
|
||
|
|
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window-header {
|
||
|
|
background: #3397e1;
|
||
|
|
color: #FFF;
|
||
|
|
text-align: left;
|
||
|
|
padding: 10px 15px;
|
||
|
|
cursor: move;
|
||
|
|
font-size: 14px;
|
||
|
|
border-bottom: 1px solid #e5e5e5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window-close.pmui-button {
|
||
|
|
border: none;
|
||
|
|
padding: 0px 6px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window .pmui-window-close .button-icon:hover {
|
||
|
|
/*
|
||
|
|
//@include transform(scale(0.90));
|
||
|
|
//@include opacity(0.7);
|
||
|
|
-moz-opacity:$window-close_hover-opacity;
|
||
|
|
-khtml-opacity:$window-close_hover-opacity;
|
||
|
|
opacity: $window-close_hover-opacity;
|
||
|
|
-ms-transform:$window-close_hover-transform;
|
||
|
|
-webkit-transform:$window-close_hover-transform;
|
||
|
|
-moz-transform:$window-close_hover-transform;
|
||
|
|
-o-transform:$window-close_hover-transform;
|
||
|
|
filter: alpha(opacity=70);*/
|
||
|
|
color: #000;
|
||
|
|
text-decoration: none;
|
||
|
|
cursor: pointer;
|
||
|
|
opacity: .5;
|
||
|
|
filter: alpha(opacity=50);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui.pmui-window-close {
|
||
|
|
/*background: none;*/
|
||
|
|
padding: 0;
|
||
|
|
cursor: pointer;
|
||
|
|
background: 0 0;
|
||
|
|
border: 0;
|
||
|
|
-webkit-appearance: none;
|
||
|
|
margin: -3px 0 0 0;
|
||
|
|
}
|
||
|
|
.pmui.pmui-window-close .button-icon {
|
||
|
|
/*display: inline-block;
|
||
|
|
height: 15px;
|
||
|
|
width: 18px;*/
|
||
|
|
float: right;
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 700;
|
||
|
|
color: #000;
|
||
|
|
text-shadow: 0 1px 0 #fff;
|
||
|
|
opacity: .2;
|
||
|
|
filter: alpha(opacity=20);
|
||
|
|
font-family: "Chivo";
|
||
|
|
}
|
||
|
|
.pmui.pmui-window-close .button-label {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window-title {
|
||
|
|
text-transform: none;
|
||
|
|
display: block;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: hidden;
|
||
|
|
font-family: Chivo-regular, sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window-body {
|
||
|
|
background-color: #FFF;
|
||
|
|
padding: 0px 0px;
|
||
|
|
overflow: auto;
|
||
|
|
text-align: inherit;
|
||
|
|
font-family: "SourceSansPro";
|
||
|
|
-moz-box-sizing: border-box;
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window-toolbar-top,
|
||
|
|
.pmui-window-toolbar-bottom {
|
||
|
|
overflow: hidden;
|
||
|
|
padding: 10px;
|
||
|
|
width: 100%;
|
||
|
|
box-sizing: border-box;
|
||
|
|
-moz-box-sizing: border-box;
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window .pmui-buttonpanel .pmui-button {
|
||
|
|
margin-left: 5px;
|
||
|
|
margin-right: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
.pmui-window .pmui-buttonpanel .pmui-link{
|
||
|
|
margin-left:3.5px;
|
||
|
|
margin-right:3.5px;
|
||
|
|
padding: initial;
|
||
|
|
font-size : $window-panelButtons_fontSize;
|
||
|
|
}
|
||
|
|
.pmui-window .pmui-buttonpanel .pmui-textlabel {
|
||
|
|
margin-left : 3.5px;
|
||
|
|
margin-right : 3.5px
|
||
|
|
}*/
|
||
|
|
.pmui-window .pmui-buttonpanel {
|
||
|
|
padding: 10px;
|
||
|
|
border-top: 1px solid #e5e5e5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-panel-header {
|
||
|
|
padding-top: 5px;
|
||
|
|
height: 25px;
|
||
|
|
background-color: #93c4ea;
|
||
|
|
text-align: center;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-panel-header span {
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-panel-body {
|
||
|
|
border-top: 1px solid #c3d8e9;
|
||
|
|
border-bottom: 0px;
|
||
|
|
height: 357px;
|
||
|
|
width: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-panel-footer {
|
||
|
|
height: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-panel-container {
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* AccordionItem */
|
||
|
|
.pmui-accordion-item-header {
|
||
|
|
background-color: #DFE8F6;
|
||
|
|
border-top: 1px solid #c3d8e9;
|
||
|
|
border-bottom: 1px solid #c3d8e9;
|
||
|
|
overflow-wrap: break-word;
|
||
|
|
padding: 2px;
|
||
|
|
color: white;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-item-body {
|
||
|
|
overflow: auto;
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-item-footer {
|
||
|
|
overflow: auto;
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-item-container {
|
||
|
|
height: auto;
|
||
|
|
width: auto;
|
||
|
|
border-left: 1px solid #c3d8e9;
|
||
|
|
border-right: 1px solid #c3d8e9;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-item-iconbase {
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
display: inline-block;
|
||
|
|
height: 16px;
|
||
|
|
margin: 0 5px 0 5px;
|
||
|
|
width: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-item-closed {
|
||
|
|
background-position: 0 -32px;
|
||
|
|
height: 16px;
|
||
|
|
width: 16px;
|
||
|
|
opacity: 0.6;
|
||
|
|
filter: alpha(opacity=60);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion-item-expanded {
|
||
|
|
background-position: 0 0;
|
||
|
|
height: 6px;
|
||
|
|
width: 11px;
|
||
|
|
opacity: 0.6;
|
||
|
|
filter: alpha(opacity=60);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-accordion .pmui-accordion-item-iconContainer {
|
||
|
|
cursor: pointer;
|
||
|
|
padding: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-button {
|
||
|
|
font-size: 14px;
|
||
|
|
display: inline-block;
|
||
|
|
text-decoration: none;
|
||
|
|
padding: 11px 35px;
|
||
|
|
/*@include border-radius($PMUI-DEFAULT-BORDER-RADIUS);*/
|
||
|
|
-webkit-border-radius: 2px;
|
||
|
|
-moz-border-radius: 2px;
|
||
|
|
-ms-border-radius: 2px;
|
||
|
|
-o-border-radius: 2px;
|
||
|
|
border-radius: 2px;
|
||
|
|
background-color: #1e91d1;
|
||
|
|
color: #FFF;
|
||
|
|
text-align: center;
|
||
|
|
-webkit-transition: all .5s;
|
||
|
|
-moz-transition: all .5s;
|
||
|
|
-ms-transition: all .5s;
|
||
|
|
-o-transition: all .5s;
|
||
|
|
transition: all .5s;
|
||
|
|
-moz-box-sizing: border-box;
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-button.pmui-error:hover {
|
||
|
|
background: #e14333;
|
||
|
|
opacity: 1;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-button.pmui-warning:hover {
|
||
|
|
background: #db9d22;
|
||
|
|
opacity: 1;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-button.pmui-success:hover {
|
||
|
|
background: #1ba385;
|
||
|
|
opacity: 1;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-button.pmui-info:hover {
|
||
|
|
background: #3397e1;
|
||
|
|
opacity: 1;
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-button.pmui-link {
|
||
|
|
color: #383838;
|
||
|
|
text-decoration: underline;
|
||
|
|
background: none;
|
||
|
|
padding: initial;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-button.pmui-success {
|
||
|
|
color: #fff;
|
||
|
|
background-color: #1fbc99;
|
||
|
|
border: 1px solid #1ba385;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-button.pmui-info {
|
||
|
|
color: #fff;
|
||
|
|
background-color: #3397e1;
|
||
|
|
border: 1px solid #3397e1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-button.pmui-warning {
|
||
|
|
color: #fff;
|
||
|
|
background-color: #EE9B26;
|
||
|
|
border: 1px solid #d58512;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-button.pmui-error {
|
||
|
|
color: #fff;
|
||
|
|
background-color: #e4655f;
|
||
|
|
border: 1px solid #e14333;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-button.pmui-disabled {
|
||
|
|
background-color: #BEBEBE;
|
||
|
|
color: #F7F7F7;
|
||
|
|
opacity: 0.8;
|
||
|
|
pointer-events: none;
|
||
|
|
cursor: default;
|
||
|
|
border: 1px solid #AAA8A8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button-disabled:hover {
|
||
|
|
opacity: 0.8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-button.pmui-link.pmui-disabled {
|
||
|
|
background-color: inherit;
|
||
|
|
color: #CCC8C8;
|
||
|
|
opacity: inherit;
|
||
|
|
border: inherit;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-flashmessage {
|
||
|
|
color: #DDD;
|
||
|
|
background: rgba(0, 0, 0, 0.8);
|
||
|
|
padding: 12px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-flashmessage.pmui-info {
|
||
|
|
background: rgba(30, 145, 209, 0.8);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-flashmessage.pmui-error {
|
||
|
|
background: rgba(255, 0, 0, 0.8);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-flashmessage.pmui-success {
|
||
|
|
background: rgba(0, 143, 97, 0.8);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-flashmessage-list {
|
||
|
|
margin: 0;
|
||
|
|
-webkit-padding-start: 20px;
|
||
|
|
-moz-padding-start: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-optionsselectorfield a {
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-switch-buttonitem {
|
||
|
|
background-color: #ebebeb;
|
||
|
|
border: 1px solid #d3d3d3;
|
||
|
|
color: #555555;
|
||
|
|
border-bottom-right-radius: 4px;
|
||
|
|
border-bottom-left-radius: 4px;
|
||
|
|
border-top-right-radius: 4px;
|
||
|
|
border-top-left-radius: 4px;
|
||
|
|
display: inline-block;
|
||
|
|
position: relative;
|
||
|
|
padding: 5px 10px 5px 10px;
|
||
|
|
line-height: normal;
|
||
|
|
cursor: pointer;
|
||
|
|
margin: 0em;
|
||
|
|
vertical-align: middle;
|
||
|
|
text-align: center;
|
||
|
|
text-transform: none;
|
||
|
|
text-indent: 0px;
|
||
|
|
text-shadow: none;
|
||
|
|
overflow: visible;
|
||
|
|
word-spacing: normal;
|
||
|
|
font: -webkit-small-control;
|
||
|
|
letter-spacing: normal;
|
||
|
|
border-bottom-right-radius: 4px;
|
||
|
|
border-bottom-left-radius: 4px;
|
||
|
|
border-top-right-radius: 4px;
|
||
|
|
border-top-left-radius: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-switch-buttonitem:hover {
|
||
|
|
border-bottom-right-radius: 4px;
|
||
|
|
border-bottom-left-radius: 4px;
|
||
|
|
border-top-right-radius: 4px;
|
||
|
|
border-top-left-radius: 4px;
|
||
|
|
border: 1px solid #d3d3d3;
|
||
|
|
color: #333;
|
||
|
|
background-color: #d8d8d8;
|
||
|
|
border-color: #adadad;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-switch-buttonitem-selected {
|
||
|
|
border-bottom-right-radius: 4px;
|
||
|
|
border-bottom-left-radius: 4px;
|
||
|
|
border-top-right-radius: 4px;
|
||
|
|
border-top-left-radius: 4px;
|
||
|
|
border: 1px solid #3276B1;
|
||
|
|
background-color: #3276B1;
|
||
|
|
color: #ffffff;
|
||
|
|
border-bottom-right-radius: 4px;
|
||
|
|
border-bottom-left-radius: 4px;
|
||
|
|
border-top-right-radius: 4px;
|
||
|
|
border-top-left-radius: 4px;
|
||
|
|
display: inline-block;
|
||
|
|
position: relative;
|
||
|
|
padding: 5px 10px 5px 10px;
|
||
|
|
line-height: normal;
|
||
|
|
cursor: pointer;
|
||
|
|
margin: 0em;
|
||
|
|
vertical-align: middle;
|
||
|
|
text-align: center;
|
||
|
|
text-transform: none;
|
||
|
|
text-indent: 0px;
|
||
|
|
text-shadow: none;
|
||
|
|
overflow: visible;
|
||
|
|
word-spacing: normal;
|
||
|
|
font: -webkit-small-control;
|
||
|
|
letter-spacing: normal;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-switch-buttonitem-disabled {
|
||
|
|
border-bottom-right-radius: 4px;
|
||
|
|
border-bottom-left-radius: 4px;
|
||
|
|
border-top-right-radius: 4px;
|
||
|
|
border-top-left-radius: 4px;
|
||
|
|
border: 1px solid #d3d3d3;
|
||
|
|
background-color: #e5e5e5;
|
||
|
|
color: #d3cfcf;
|
||
|
|
cursor: default;
|
||
|
|
border-bottom-right-radius: 4px;
|
||
|
|
border-bottom-left-radius: 4px;
|
||
|
|
border-top-right-radius: 4px;
|
||
|
|
border-top-left-radius: 4px;
|
||
|
|
display: inline-block;
|
||
|
|
position: relative;
|
||
|
|
padding: 5px 10px 5px 10px;
|
||
|
|
line-height: normal;
|
||
|
|
cursor: pointer;
|
||
|
|
margin: 0em;
|
||
|
|
vertical-align: middle;
|
||
|
|
text-align: center;
|
||
|
|
text-transform: none;
|
||
|
|
text-indent: 0px;
|
||
|
|
text-shadow: none;
|
||
|
|
overflow: visible;
|
||
|
|
word-spacing: normal;
|
||
|
|
font: -webkit-small-control;
|
||
|
|
letter-spacing: normal;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menu {
|
||
|
|
font-family: Tahoma, Arial, Verdana;
|
||
|
|
font-size: 12px;
|
||
|
|
border: 1px solid #d5d8dc;
|
||
|
|
display: inline-block;
|
||
|
|
list-style: none;
|
||
|
|
background: #F0F0F0;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menuoption {
|
||
|
|
position: relative;
|
||
|
|
-moz-transition: all 0.3s;
|
||
|
|
-o-transition: all 0.3s;
|
||
|
|
-webkit-transition: all 0.3s;
|
||
|
|
transition: all 0.3s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menuoption:hover {
|
||
|
|
background: #444;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menuoption.pmui-disabled:hover {
|
||
|
|
background: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menuoption-title {
|
||
|
|
display: block;
|
||
|
|
padding: 0.4em 0.6em;
|
||
|
|
text-decoration: none;
|
||
|
|
color: #2d3e50;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-disabled .pmui-menuoption-title {
|
||
|
|
cursor: default;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menuoption-text {
|
||
|
|
line-height: 1.84em;
|
||
|
|
padding-right: 15px;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-disabled .pmui-menuoption-text {
|
||
|
|
color: #bbb;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menuoption:hover > .pmui-menuoption-title {
|
||
|
|
color: #F0F0F0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menuoption.pmui-father > .pmui-menuoption-title {
|
||
|
|
background: url(images/arrow-right-b.png) no-repeat right content-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menuoption.pmui-father:hover > .pmui-menuoption-title {
|
||
|
|
background-image: url(images/arrow-right-w.png);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menuoption.pmui-father.pmui-disabled > .pmui-menuoption-title,
|
||
|
|
.pmui-menuoption.pmui-father.pmui-disabled:hover > .pmui-menuoption-title {
|
||
|
|
background-image: url(images/arrow-right-d.png);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menuseparatoritem {
|
||
|
|
border-top: 1px solid #d8d8d8;
|
||
|
|
border-bottom: 1px solid #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menuoption:hover > .pmui-menu {
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menuoption.pmui-disabled:hover > .pmui-menu {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-menu .pmui-menu {
|
||
|
|
display: none;
|
||
|
|
position: absolute !important;
|
||
|
|
left: 100% !important;
|
||
|
|
top: 0 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker {
|
||
|
|
font-size: 12px;
|
||
|
|
width: 200px;
|
||
|
|
position: absolute;
|
||
|
|
border: #888 1px solid;
|
||
|
|
color: #000;
|
||
|
|
background-color: #F8F8F8;
|
||
|
|
-webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
|
||
|
|
-moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
|
||
|
|
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datetimecontrol {
|
||
|
|
border: 1px solid #ccc;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker input {
|
||
|
|
border: #888 1px solid;
|
||
|
|
font-size: 0.8em;
|
||
|
|
text-align: center;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker a {
|
||
|
|
text-decoration: none;
|
||
|
|
color: inherit;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-header {
|
||
|
|
font-size: 1.2em;
|
||
|
|
background-color: #F8F8F8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-head-table {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-month-selector select,
|
||
|
|
.pmui-datepicker-year-selector select {
|
||
|
|
background: none;
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-month-selector {
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-year-selector {
|
||
|
|
text-align: right;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-table {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-table tr {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-table td {
|
||
|
|
text-align: center;
|
||
|
|
background: #F0F0F0;
|
||
|
|
padding: 1px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-table td a {
|
||
|
|
display: block;
|
||
|
|
background-color: #F8F8F8;
|
||
|
|
color: #000;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-table td a:hover,
|
||
|
|
.pmui-datepicker-table td .selected {
|
||
|
|
background-color: #D0D0D0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-table thead th {
|
||
|
|
font-size: 0.8em;
|
||
|
|
color: #000;
|
||
|
|
background-color: #F8F8F8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-disabled-date {
|
||
|
|
color: #888;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-footer {
|
||
|
|
padding: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-footer div {
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-datepicker-button {
|
||
|
|
font-family: Arial;
|
||
|
|
background-color: #C0C0C0;
|
||
|
|
padding: 1px;
|
||
|
|
border: solid #888;
|
||
|
|
border-width: 1px;
|
||
|
|
margin: 1px;
|
||
|
|
/*color:$datepicker-button_color;*/
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel {
|
||
|
|
background-color: #FFF;
|
||
|
|
font-size: 14px;
|
||
|
|
vertical-align: top;
|
||
|
|
font-family: "SourceSansPro", Arial, Tahoma, Verdana;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-tableContainer {
|
||
|
|
border: 0px solid #e5e5e5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-table {
|
||
|
|
border-collapse: collapse;
|
||
|
|
min-height: 3em;
|
||
|
|
background-color: #fff;
|
||
|
|
width: 100%;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelcolumn {
|
||
|
|
border-right: 2px solid #fff;
|
||
|
|
/*padding: 5px 10px;*/
|
||
|
|
color: #fff;
|
||
|
|
font-size: 14px;
|
||
|
|
background: #3397e1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelcell {
|
||
|
|
border-right: 2px solid #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelcolumn.pmui-sortable {
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel.pmui-sortable.pmui-sort-asc,
|
||
|
|
.pmui-gridpanel.pmui-sortable.pmui-sort-desc {
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-position: right;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelrow {
|
||
|
|
border-bottom: 1px solid #e5e5e5;
|
||
|
|
line-height: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelrow.ui-draggable > .pmui-gridpanelcell:first-child,
|
||
|
|
.pmui-gridpanel-tbody.ui-sortable .pmui-gridpanelrow > .pmui-gridpanelcell:first-child {
|
||
|
|
background-image: url(images/bg_dd.png);
|
||
|
|
background-position: 2px center;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelrow.ui-draggable,
|
||
|
|
.pmui-gridpanel-tbody.ui-sortable .pmui-gridpanelrow {
|
||
|
|
cursor: move;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelrow:hover {
|
||
|
|
background: #e0e0e0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pager {
|
||
|
|
display: inline-block;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-gotoPage {
|
||
|
|
width: 40px;
|
||
|
|
margin: 0 2px 0 2px;
|
||
|
|
height: 20px;
|
||
|
|
text-align: center;
|
||
|
|
border: 1px solid #ddd;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-footer.pmui-gridpanel-total {
|
||
|
|
vertical-align: super;
|
||
|
|
font-size: 13px;
|
||
|
|
padding: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pager-current {
|
||
|
|
text-decoration: none;
|
||
|
|
float: left;
|
||
|
|
color: #0493E5;
|
||
|
|
font-size: 14px;
|
||
|
|
line-height: 26px;
|
||
|
|
font-weight: normal;
|
||
|
|
text-align: center;
|
||
|
|
border: 1px solid #ddd;
|
||
|
|
min-width: 14px;
|
||
|
|
padding: 0 11px;
|
||
|
|
margin: 0 5px 0 0;
|
||
|
|
background: #FFF;
|
||
|
|
background: #0493E5;
|
||
|
|
color: #FFF;
|
||
|
|
cursor: default;
|
||
|
|
margin-left: -7px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pager-ellipse {
|
||
|
|
background: none;
|
||
|
|
border: none;
|
||
|
|
border-radius: 0;
|
||
|
|
box-shadow: none;
|
||
|
|
font-weight: bold;
|
||
|
|
cursor: default;
|
||
|
|
text-decoration: none;
|
||
|
|
float: left;
|
||
|
|
color: #0493E5;
|
||
|
|
font-size: 14px;
|
||
|
|
line-height: 26px;
|
||
|
|
font-weight: normal;
|
||
|
|
text-align: center;
|
||
|
|
border: 1px solid #ddd;
|
||
|
|
min-width: 14px;
|
||
|
|
padding: 0 7px;
|
||
|
|
margin: 0 5px 0 0;
|
||
|
|
background: #FFF;
|
||
|
|
margin-left: -7px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pager li a {
|
||
|
|
text-decoration: none;
|
||
|
|
float: left;
|
||
|
|
color: #0493E5;
|
||
|
|
font-size: 14px;
|
||
|
|
line-height: 26px;
|
||
|
|
font-weight: normal;
|
||
|
|
text-align: center;
|
||
|
|
border: 1px solid #ddd;
|
||
|
|
min-width: 14px;
|
||
|
|
padding: 0 11px;
|
||
|
|
margin: 0 5px 0 0;
|
||
|
|
background: #FFF;
|
||
|
|
margin-left: -7px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pager li a:hover {
|
||
|
|
text-decoration: none;
|
||
|
|
background: #0493E5;
|
||
|
|
color: #FFF;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pager li {
|
||
|
|
display: inline-block;
|
||
|
|
margin: 0 1px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pagelink {
|
||
|
|
float: left;
|
||
|
|
display: block;
|
||
|
|
color: #2d3e50;
|
||
|
|
padding: 4px 7px;
|
||
|
|
height: 13px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pagelink,
|
||
|
|
.pmui-gridpanel-pagelink.pmui-gridpanel-nextbutton,
|
||
|
|
.pmui-gridpanel-pagelink.pmui-gridpanel-previousbutton {
|
||
|
|
text-decoration: none;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pagelink.pmui-gridpanel-nextbutton .pmui-icon {
|
||
|
|
background-position: 0 -6px;
|
||
|
|
height: 13px;
|
||
|
|
width: 9px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pagelink.pmui-gridpanel-previousbutton .pmui-icon {
|
||
|
|
background-position: 0 -19px;
|
||
|
|
height: 13px;
|
||
|
|
width: 9px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pagelink {
|
||
|
|
float: left;
|
||
|
|
display: block;
|
||
|
|
color: #2d3e50;
|
||
|
|
padding: 4px 7px;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pagelink:hover {
|
||
|
|
filter: alpha(opacity=0.7);
|
||
|
|
-moz-opacity: 0.7;
|
||
|
|
-khtml-opacity: 0.7;
|
||
|
|
opacity: 0.7;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pagelink.pmui-active {
|
||
|
|
color: #fff;
|
||
|
|
background: #2d3e50;
|
||
|
|
-webkit-border-radius: 2px;
|
||
|
|
-moz-border-radius: 2px;
|
||
|
|
border-radius: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-toolbar {
|
||
|
|
padding: 5px 0px;
|
||
|
|
text-align: left;
|
||
|
|
height: 40px;
|
||
|
|
margin: 4px 0 4px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-footer {
|
||
|
|
text-align: center;
|
||
|
|
padding: 10px 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-statusbar {
|
||
|
|
text-align: left;
|
||
|
|
font-size: 12px;
|
||
|
|
margin-top: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelcell-content,
|
||
|
|
.pmui-gridpanelColumn-title {
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: hidden;
|
||
|
|
position: relative;
|
||
|
|
-moz-box-sizing: border-box;
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelcell-content {
|
||
|
|
display: inline-block;
|
||
|
|
color: #333;
|
||
|
|
text-align: left;
|
||
|
|
padding: 1px 5px 1px 5px;
|
||
|
|
margin-left: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelColumn-title {
|
||
|
|
display: block;
|
||
|
|
padding: 9px 5px;
|
||
|
|
text-align: left;
|
||
|
|
font-weight: initial;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-grid-sort-icon {
|
||
|
|
position: absolute;
|
||
|
|
width: 11px;
|
||
|
|
height: 1em;
|
||
|
|
right: 5px;
|
||
|
|
display: none;
|
||
|
|
top: 9px;
|
||
|
|
}
|
||
|
|
.pmui-gridpanelcolumn.pmui-sortable.pmui-sort-asc .pmui-grid-sort-icon {
|
||
|
|
background-position: 0 -150px;
|
||
|
|
height: 6px;
|
||
|
|
width: 11px;
|
||
|
|
}
|
||
|
|
.pmui-gridpanelcolumn.pmui-sortable.pmui-sort-desc .pmui-grid-sort-icon {
|
||
|
|
background-position: 0 -156px;
|
||
|
|
height: 6px;
|
||
|
|
width: 11px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelcolumn.pmui-sortable.pmui-sort-asc .pmui-gridpanelColumn-title,
|
||
|
|
.pmui-gridpanelcolumn.pmui-sortable.pmui-sort-desc .pmui-gridpanelColumn-title {
|
||
|
|
padding-right: 20px;
|
||
|
|
-webkit-transition: all .6s;
|
||
|
|
-moz-transition: all .6s;
|
||
|
|
-ms-transition: all .6s;
|
||
|
|
-o-transition: all .6s;
|
||
|
|
transition: all .6s;
|
||
|
|
}
|
||
|
|
.pmui-gridpanelcolumn.pmui-sortable.pmui-sort-asc .pmui-gridpanelColumn-title:hover,
|
||
|
|
.pmui-gridpanelcolumn.pmui-sortable.pmui-sort-desc .pmui-gridpanelColumn-title:hover {
|
||
|
|
filter: alpha(opacity=0.7);
|
||
|
|
-moz-opacity: 0.7;
|
||
|
|
-khtml-opacity: 0.7;
|
||
|
|
opacity: 0.7;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelcolumn.pmui-sortable .pmui-grid-sort-icon {
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-active-row {
|
||
|
|
background: antiquewhite;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-emptyrow td {
|
||
|
|
padding: 0.5em;
|
||
|
|
font-style: italic;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelrow-deleteButton {
|
||
|
|
width: 16px;
|
||
|
|
height: 16px;
|
||
|
|
padding: 2px;
|
||
|
|
background: #e0e0e0;
|
||
|
|
position: absolute;
|
||
|
|
top: -16px;
|
||
|
|
right: 0px;
|
||
|
|
-moz-border-radius: 100% 100% 0px 0px;
|
||
|
|
-webkit-border-radius: 100% 100% 0px 0px;
|
||
|
|
border-radius: 100% 100% 0px 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanelrow-deleteButton a {
|
||
|
|
display: inline-block;
|
||
|
|
/*@include pmui-sprite-sprite(delete-16);*/
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-searchload.load {
|
||
|
|
background: url(../img/loading.gif) no-repeat center;
|
||
|
|
background-size: contain;
|
||
|
|
height: 20px;
|
||
|
|
width: 20px;
|
||
|
|
position: absolute;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tabpanel {
|
||
|
|
background: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tabpanel-container {
|
||
|
|
background: #FFF;
|
||
|
|
overflow: visible !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tabpanel-tabs {
|
||
|
|
padding: 0;
|
||
|
|
margin: 0;
|
||
|
|
border-bottom: 1px solid #ddd;
|
||
|
|
width: 92%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tabitem {
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: normal;
|
||
|
|
text-transform: none;
|
||
|
|
margin: 0 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tab-ref {
|
||
|
|
display: block;
|
||
|
|
color: #337ab7;
|
||
|
|
text-decoration: none;
|
||
|
|
background: #FFF;
|
||
|
|
padding: 0.6em 0.9em;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tabitem.pmui-active .pmui-tab-ref {
|
||
|
|
color: #555;
|
||
|
|
background: FFF;
|
||
|
|
border: 1px solid #ddd;
|
||
|
|
border-top: 3px solid #3397e1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tabitem:hover .pmui-tab-ref {
|
||
|
|
color: #555;
|
||
|
|
background: #FFF;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tab_title {
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: inherit;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tabpanel-left .pmui-tabpanel-tabs {
|
||
|
|
border-bottom: 0;
|
||
|
|
padding-right: 6px;
|
||
|
|
}
|
||
|
|
.pmui-tabpanel-left .pmui-tabitem {
|
||
|
|
clear: both;
|
||
|
|
text-align: left;
|
||
|
|
/*width: 100%;*/
|
||
|
|
margin: 2px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-collapsibleBar {
|
||
|
|
width: 5px;
|
||
|
|
background: white;
|
||
|
|
border-left: 1px solid #dadfe4;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tab-icon {
|
||
|
|
float: left;
|
||
|
|
width: auto;
|
||
|
|
height: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-textcontrol,
|
||
|
|
.pmui-dropdownlistcontrol,
|
||
|
|
.pmui-textareacontrol,
|
||
|
|
.pmui-passwordcontrol,
|
||
|
|
.pmui-uploadcontrol,
|
||
|
|
.pmui-datetimecontrol {
|
||
|
|
font-size: 14px;
|
||
|
|
border-radius: 2px;
|
||
|
|
-moz-box-sizing: border-box;
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
background: #fff;
|
||
|
|
display: inline-block;
|
||
|
|
text-align: 'left';
|
||
|
|
padding: 4px 6px;
|
||
|
|
color: #000;
|
||
|
|
border: 1px solid #adafb2;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-textcontrol, .pmui-passwordcontrol {
|
||
|
|
color: #000;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-textcontrol:-ms-input-placeholder, .pmui-passwordcontrol:-ms-input-placeholder {
|
||
|
|
color: #AAAAAA;
|
||
|
|
}
|
||
|
|
|
||
|
|
select.pmui-dropdownlistcontrol {
|
||
|
|
height: 36px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-textareacontrol {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-selectablecontrol span {
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field-label {
|
||
|
|
display: block;
|
||
|
|
text-align: left;
|
||
|
|
width: 160px;
|
||
|
|
padding: 6px 20px 6px 10px;
|
||
|
|
color: #2d3e50;
|
||
|
|
font-size: 14px;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field {
|
||
|
|
padding: 4px 0;
|
||
|
|
-moz-box-sizing: border-box;
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
background: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field-label,
|
||
|
|
.pmui-field-control {
|
||
|
|
/*float: left;*/
|
||
|
|
display: inline-block;
|
||
|
|
text-align: left;
|
||
|
|
margin-right: 5px;
|
||
|
|
-moz-box-sizing: border-box;
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-textannotationfield {
|
||
|
|
color: #2d3e50;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-textannotationfield .pmui-field-label {
|
||
|
|
margin: 0px;
|
||
|
|
color: inherit;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field-control-er {
|
||
|
|
color: #f00;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field-required {
|
||
|
|
color: #e84c3d;
|
||
|
|
padding-top: 3px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field .pmui-textlabel {
|
||
|
|
clear: both;
|
||
|
|
color: #fff;
|
||
|
|
font-size: 12px;
|
||
|
|
background: #F5736D;
|
||
|
|
padding: 4px 10px;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field-colon {
|
||
|
|
color: #000;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field .error {
|
||
|
|
outline: 1px solid #ecc3c2;
|
||
|
|
border: 1px solid white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field-control-table {
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field-control-table {
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
padding: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field-control-table td {
|
||
|
|
padding: 0px 45px 0px 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field-message {
|
||
|
|
text-align: left;
|
||
|
|
position: absolute;
|
||
|
|
z-index: 100;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui.pmui-textannotationfield {
|
||
|
|
clear: both;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tooltip .pmui-icon {
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
display: inline-block;
|
||
|
|
margin-left: 3px;
|
||
|
|
float: right;
|
||
|
|
margin-top: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-icon-help {
|
||
|
|
background-position: 0 -162px;
|
||
|
|
height: 18px;
|
||
|
|
width: 18px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-icon-info {
|
||
|
|
background-position: 0 -244px;
|
||
|
|
height: 16px;
|
||
|
|
width: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-icon-error {
|
||
|
|
background-position: 0 -134px;
|
||
|
|
height: 16px;
|
||
|
|
width: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-icon-warning {
|
||
|
|
background-position: 0 -452px;
|
||
|
|
height: 16px;
|
||
|
|
width: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tooltip {
|
||
|
|
margin-left: 5px;
|
||
|
|
border-radius: 1em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tooltip-message {
|
||
|
|
margin: 0 5px 0 3px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui .pmui-tooltip-mode-normal .pmui-tooltip-message {
|
||
|
|
font-size: 0.8em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field-message-container {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-tooltip-category-error {
|
||
|
|
color: #F00;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-tooltip {
|
||
|
|
max-width: 350px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-form {
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-form-title,
|
||
|
|
.pmui-form-footer {
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-form-header {
|
||
|
|
padding: 0.4em;
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-form-title {
|
||
|
|
font-size: 1.2em;
|
||
|
|
margin: 0;
|
||
|
|
line-height: 100%;
|
||
|
|
overflow: hidden;
|
||
|
|
white-space: nowrap;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-form fieldset {
|
||
|
|
border-color: #c7c7c7;
|
||
|
|
color: #2d3e50;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*.pmui-form .pmui-buttonpanel a {
|
||
|
|
color: #fff;
|
||
|
|
font-size: 16px;
|
||
|
|
background: $form-buttonBar_background;
|
||
|
|
margin-right: 10px;
|
||
|
|
-webkit-border-radius: 4px;
|
||
|
|
-moz-border-radius: 4px;
|
||
|
|
border-radius: 4px;
|
||
|
|
padding: 0px 15px;
|
||
|
|
border: 1px solid #2D9663;
|
||
|
|
}
|
||
|
|
.pmui .pmui-buttonpanel .button-link{
|
||
|
|
color : #000000;
|
||
|
|
text-decoration: underline;
|
||
|
|
background : inherit;
|
||
|
|
padding : 0px 5px 0px 5px;
|
||
|
|
}*/
|
||
|
|
.pmui-form .pmui-formpanel {
|
||
|
|
text-align: initial;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel {
|
||
|
|
display: inline-block;
|
||
|
|
height: 360px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel-list {
|
||
|
|
list-style: none;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
vertical-align: top;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel-node .pmui-treepanel-list {
|
||
|
|
margin-left: 18px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel-node-title {
|
||
|
|
text-decoration: none;
|
||
|
|
color: #000;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel-node {
|
||
|
|
background: url(images/elbow-line.gif) repeat-y left top;
|
||
|
|
list-style-type: none;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
overflow: hidden;
|
||
|
|
white-space: nowrap;
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel,
|
||
|
|
.pmui-treepanel-node {
|
||
|
|
font-size: 14px;
|
||
|
|
background: inherit;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel-node,
|
||
|
|
.pmui-treepanel-list > .pmui-treepanel-node:last-child {
|
||
|
|
background: url(images/elbow-end.gif) no-repeat left top;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel-node-icon {
|
||
|
|
display: inline-block;
|
||
|
|
margin-right: 3px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel-node-elbow {
|
||
|
|
width: 16px;
|
||
|
|
margin-right: 3px;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel-emptymessage {
|
||
|
|
font-style: italic;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel-toolbar {
|
||
|
|
margin: 1em 0.5em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel .pmui-treepanel-node {
|
||
|
|
background: url(images/elbow-line.gif) repeat-y top left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel-node .pmui-treepanel-node-elbow {
|
||
|
|
background: url(images/elbow-end.gif) no-repeat top left;
|
||
|
|
}
|
||
|
|
|
||
|
|
ul.pmui-treepanel > .pmui-treepanel-node:last-child {
|
||
|
|
background: url(images/elbow-end.gif) no-repeat top left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel-node.pmui-treepanel-node-father > .pmui-treepanel-node-title .pmui-treepanel-node-elbow {
|
||
|
|
background: url(images/elbow-minus-nl.gif) no-repeat center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-treepanel-node.pmui-treepanel-node-father.pmui-treepanel-node-collapsed > .pmui-treepanel-node-title .pmui-treepanel-node-elbow {
|
||
|
|
background: url(images/elbow-plus-nl.gif) no-repeat center;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*.pmui-buttonpanel {
|
||
|
|
padding : 7px;
|
||
|
|
border-bottom : 1px solid $button-panel_borderColor
|
||
|
|
}*/
|
||
|
|
.pmui-messagewindow-container {
|
||
|
|
margin: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-messagewindow-container tr,
|
||
|
|
.pmui-messagewindow-container tr td {
|
||
|
|
margin: 0;
|
||
|
|
border: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-messagewindow-icon {
|
||
|
|
display: inline-block;
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-messagewindow-icon-error {
|
||
|
|
background-position: 0 -70px;
|
||
|
|
height: 64px;
|
||
|
|
width: 64px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-messagewindow-icon-warning {
|
||
|
|
background-position: 0 -388px;
|
||
|
|
height: 64px;
|
||
|
|
width: 64px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-messagewindow-icon-info {
|
||
|
|
background-position: 0 -180px;
|
||
|
|
height: 64px;
|
||
|
|
width: 64px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-messagewindow-icon-success {
|
||
|
|
background-position: 0 -324px;
|
||
|
|
height: 64px;
|
||
|
|
width: 64px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-messagewindow-icon-confirm {
|
||
|
|
background-position: 0 -260px;
|
||
|
|
height: 64px;
|
||
|
|
width: 64px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window-body {
|
||
|
|
font-Size: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-error {
|
||
|
|
background-color: inherit;
|
||
|
|
/*.pmui-buttonpanel .pmui-button {
|
||
|
|
background-color : $windowMessage-error-header_background-color;
|
||
|
|
}
|
||
|
|
.pmui-buttonpanel .pmui-link {
|
||
|
|
background : none;
|
||
|
|
}*/
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-error .pmui-window-header {
|
||
|
|
background-color: #e4655f;
|
||
|
|
padding: 7px 15px;
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-error .pmui-window-body {
|
||
|
|
background-color: white;
|
||
|
|
color: #58585b;
|
||
|
|
font-size: 14px;
|
||
|
|
padding: 20px 30px 20px 30px;
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-error .pmui-messagewindow-message {
|
||
|
|
font-size: 14px;
|
||
|
|
-webkit-user-select: text;
|
||
|
|
-moz-user-select: text;
|
||
|
|
user-select: text;
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-error .pmui-window-footer {
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-warning {
|
||
|
|
background-color: inherit;
|
||
|
|
/*.pmui-buttonpanel .pmui-button {
|
||
|
|
background-color : $windowMessage-warning-header_background-color ;
|
||
|
|
}
|
||
|
|
.pmui-buttonpanel .pmui-link {
|
||
|
|
background : none;
|
||
|
|
}*/
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-warning .pmui-window-header {
|
||
|
|
background-color: #edb60b;
|
||
|
|
padding: 7px 15px;
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-warning .pmui-window-body {
|
||
|
|
background-color: white;
|
||
|
|
color: #58585b;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-warning .pmui-messagewindow-message {
|
||
|
|
font-size: 14px;
|
||
|
|
-webkit-user-select: text;
|
||
|
|
-moz-user-select: text;
|
||
|
|
user-select: text;
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-warning .pmui-window-footer {
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-success {
|
||
|
|
background-color: inherit;
|
||
|
|
/*.pmui-buttonpanel .pmui-button {
|
||
|
|
background-color : $windowMessage-success-header_background-color;
|
||
|
|
}
|
||
|
|
.pmui-buttonpanel .pmui-link {
|
||
|
|
background : none;
|
||
|
|
}*/
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-success .pmui-window-header {
|
||
|
|
background-color: #2ddfb7;
|
||
|
|
padding: 7px 15px;
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-success .pmui-window-body {
|
||
|
|
background-color: white;
|
||
|
|
color: #58585b;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-success .pmui-messagewindow-message {
|
||
|
|
font-size: 14px;
|
||
|
|
-webkit-user-select: text;
|
||
|
|
-moz-user-select: text;
|
||
|
|
user-select: text;
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-success .pmui-window-footer {
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-default {
|
||
|
|
background-color: inherit;
|
||
|
|
/*.pmui-buttonpanel .pmui-button {
|
||
|
|
background-color : $windowMessage-default-header_background-color;
|
||
|
|
}
|
||
|
|
.pmui-buttonpanel .pmui-link {
|
||
|
|
background : none;
|
||
|
|
}*/
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-default .pmui-window-header {
|
||
|
|
background-color: #44afff;
|
||
|
|
padding: 7px 15px;
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-default .pmui-window-body {
|
||
|
|
background-color: white;
|
||
|
|
color: #58585b;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-default .pmui-messagewindow-message {
|
||
|
|
font-size: 14px;
|
||
|
|
-webkit-user-select: text;
|
||
|
|
-moz-user-select: text;
|
||
|
|
user-select: text;
|
||
|
|
}
|
||
|
|
.pmui-windowmessage.pmui-windowmessage-default .pmui-window-footer {
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-windowmessage .pmui-buttonpanel .pmui-button {
|
||
|
|
padding-left: 25px;
|
||
|
|
padding-right: 25px;
|
||
|
|
border-radius: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-windowmessage .pmui-buttonpanel .pmui-textlabel {
|
||
|
|
margin-left: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-windowmessage .pmui-buttonpanel .pmui-link {
|
||
|
|
padding: initial;
|
||
|
|
margin-left: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-windowmessage .pmui-window-footer {
|
||
|
|
padding: 10px;
|
||
|
|
border-top: 1px solid #e5e5e5;
|
||
|
|
background: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-windowmessage .pmui-window-body {
|
||
|
|
padding: 20px 30px 20px 30px;
|
||
|
|
font-family: Chivo-regular, sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-windowmessage .pmui-textlabel {
|
||
|
|
font-size: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-windowmessage .pmui-buttonpanel .pmui-button {
|
||
|
|
margin-left: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-windowmessage .pmui-window-title {
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-toolbaritem {
|
||
|
|
display: inline-block;
|
||
|
|
margin: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listpanel {
|
||
|
|
border: 1px solid #bbb;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem {
|
||
|
|
border: solid 1px #bbb;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listpanel-title,
|
||
|
|
.pmui-listpanel-toolbar,
|
||
|
|
.pmui-listpanel-statusbar {
|
||
|
|
padding: 0.5em;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listpanel-title {
|
||
|
|
min-height: 1em;
|
||
|
|
background: #5f6c79;
|
||
|
|
color: #FFF;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listpanel-toolbar {
|
||
|
|
font-size: 0.8em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listpanel-statusbar {
|
||
|
|
background: #E9E9E9;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listpanel-list {
|
||
|
|
overflow: auto;
|
||
|
|
border-color: #bbb;
|
||
|
|
border-style: solid;
|
||
|
|
border-width: 2px 0;
|
||
|
|
padding: 0;
|
||
|
|
margin: 0;
|
||
|
|
border-collapse: collapse;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem {
|
||
|
|
list-style: none;
|
||
|
|
border-color: #bbb;
|
||
|
|
border-style: solid;
|
||
|
|
border-width: 0 0 1px 0;
|
||
|
|
padding: 0.5em;
|
||
|
|
background: #f8f8f8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listpanel-list > .pmui-listitem:last-child {
|
||
|
|
border-bottom: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem:nth-child(odd) {
|
||
|
|
background: #eaebed;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem:hover {
|
||
|
|
background: #e0e0e0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem-icon,
|
||
|
|
.pmui-listitem-text {
|
||
|
|
display: inline-block;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem-icon {
|
||
|
|
margin-right: 0.3em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem .pmui-toolbar.pmui-listitem-actions {
|
||
|
|
text-align: right;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui.ui-layout-pane {
|
||
|
|
border: 1px solid #BBB;
|
||
|
|
padding: 2px;
|
||
|
|
/*alerta*/
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
* Default Layout Theme
|
||
|
|
*
|
||
|
|
* Created for jquery.layout
|
||
|
|
*
|
||
|
|
* Copyright (c) 2010
|
||
|
|
* Fabrizio Balliano (http://www.fabrizioballiano.net)
|
||
|
|
* Kevin Dalman (http://allpro.net)
|
||
|
|
*
|
||
|
|
* Dual licensed under the GPL (http://www.gnu.org/licenses/gpl.html)
|
||
|
|
* and MIT (http://www.opensource.org/licenses/mit-license.php) licenses.
|
||
|
|
*
|
||
|
|
* Last Updated: 2010-02-10
|
||
|
|
* NOTE: For best code readability, view this with a fixed-space font and tabs equal to 4-chars
|
||
|
|
*/
|
||
|
|
|
||
|
|
/*
|
||
|
|
* DEFAULT FONT
|
||
|
|
* Just to make demo-pages look better - not actually relevant to Layout!
|
||
|
|
*/
|
||
|
|
/*body {
|
||
|
|
font-family: Geneva, Arial, Helvetica, sans-serif;
|
||
|
|
font-size: 100%;
|
||
|
|
*font-size: 80%;
|
||
|
|
}*/
|
||
|
|
|
||
|
|
/*
|
||
|
|
* PANES & CONTENT-DIVs
|
||
|
|
*/
|
||
|
|
.ui-layout-pane { /* all 'panes' */
|
||
|
|
background: #FFF;
|
||
|
|
border: 1px solid #BBB;
|
||
|
|
padding: 2px;
|
||
|
|
overflow: auto;
|
||
|
|
/* DO NOT add scrolling (or padding) to 'panes' that have a content-div,
|
||
|
|
otherwise you may get double-scrollbars - on the pane AND on the content-div
|
||
|
|
- use ui-layout-wrapper class if pane has a content-div
|
||
|
|
- use ui-layout-container if pane has an inner-layout
|
||
|
|
*/
|
||
|
|
}
|
||
|
|
/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */
|
||
|
|
.ui-layout-content {
|
||
|
|
padding: 10px;
|
||
|
|
position: relative; /* contain floated or positioned elements */
|
||
|
|
overflow: auto; /* add scrolling to content-div */
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
* UTILITY CLASSES
|
||
|
|
* Must come AFTER pane-class above so will override
|
||
|
|
* These classes are NOT auto-generated and are NOT used by Layout
|
||
|
|
*/
|
||
|
|
.layout-child-container,
|
||
|
|
.layout-content-container {
|
||
|
|
padding: 0;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.layout-child-container {
|
||
|
|
border: 0; /* remove border because inner-layout-panes probably have borders */
|
||
|
|
}
|
||
|
|
.layout-scroll {
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
.layout-hide {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
* RESIZER-BARS
|
||
|
|
*/
|
||
|
|
.ui-layout-resizer { /* all 'resizer-bars' */
|
||
|
|
background: #DDD;
|
||
|
|
border: 1px solid #BBB;
|
||
|
|
border-width: 0;
|
||
|
|
}
|
||
|
|
.ui-layout-resizer-drag { /* REAL resizer while resize in progress */
|
||
|
|
}
|
||
|
|
.ui-layout-resizer-hover { /* affects both open and closed states */
|
||
|
|
}
|
||
|
|
/* NOTE: It looks best when 'hover' and 'dragging' are set to the same color,
|
||
|
|
otherwise color shifts while dragging when bar can't keep up with mouse */
|
||
|
|
.ui-layout-resizer-open-hover , /* hover-color to 'resize' */
|
||
|
|
.ui-layout-resizer-dragging { /* resizer beging 'dragging' */
|
||
|
|
background: #C4E1A4;
|
||
|
|
}
|
||
|
|
.ui-layout-resizer-dragging { /* CLONED resizer being dragged */
|
||
|
|
border: 1px solid #BBB;
|
||
|
|
}
|
||
|
|
.ui-layout-resizer-north-dragging,
|
||
|
|
.ui-layout-resizer-south-dragging {
|
||
|
|
border-width: 1px 0;
|
||
|
|
}
|
||
|
|
.ui-layout-resizer-west-dragging,
|
||
|
|
.ui-layout-resizer-east-dragging {
|
||
|
|
border-width: 0 1px;
|
||
|
|
}
|
||
|
|
/* NOTE: Add a 'dragging-limit' color to provide visual feedback when resizer hits min/max size limits */
|
||
|
|
.ui-layout-resizer-dragging-limit { /* CLONED resizer at min or max size-limit */
|
||
|
|
background: #E1A4A4; /* red */
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-layout-resizer-closed-hover { /* hover-color to 'slide open' */
|
||
|
|
background: #EBD5AA;
|
||
|
|
}
|
||
|
|
.ui-layout-resizer-sliding { /* resizer when pane is 'slid open' */
|
||
|
|
opacity: .10; /* show only a slight shadow */
|
||
|
|
filter: alpha(opacity=10);
|
||
|
|
}
|
||
|
|
.ui-layout-resizer-sliding-hover { /* sliding resizer - hover */
|
||
|
|
opacity: 1.00; /* on-hover, show the resizer-bar normally */
|
||
|
|
filter: alpha(opacity=100);
|
||
|
|
}
|
||
|
|
/* sliding resizer - add 'outside-border' to resizer on-hover
|
||
|
|
* this sample illustrates how to target specific panes and states */
|
||
|
|
.ui-layout-resizer-north-sliding-hover { border-bottom-width: 1px; }
|
||
|
|
.ui-layout-resizer-south-sliding-hover { border-top-width: 1px; }
|
||
|
|
.ui-layout-resizer-west-sliding-hover { border-right-width: 1px; }
|
||
|
|
.ui-layout-resizer-east-sliding-hover { border-left-width: 1px; }
|
||
|
|
|
||
|
|
/*
|
||
|
|
* TOGGLER-BUTTONS
|
||
|
|
*/
|
||
|
|
.ui-layout-toggler {
|
||
|
|
border: 1px solid #BBB; /* match pane-border */
|
||
|
|
background-color: #BBB;
|
||
|
|
}
|
||
|
|
.ui-layout-resizer-hover .ui-layout-toggler {
|
||
|
|
opacity: .60;
|
||
|
|
filter: alpha(opacity=60);
|
||
|
|
}
|
||
|
|
.ui-layout-toggler-hover , /* need when NOT resizable */
|
||
|
|
.ui-layout-resizer-hover .ui-layout-toggler-hover { /* need specificity when IS resizable */
|
||
|
|
background-color: #FC6;
|
||
|
|
opacity: 1.00;
|
||
|
|
filter: alpha(opacity=100);
|
||
|
|
}
|
||
|
|
.ui-layout-toggler-north ,
|
||
|
|
.ui-layout-toggler-south {
|
||
|
|
border-width: 0 1px; /* left/right borders */
|
||
|
|
}
|
||
|
|
.ui-layout-toggler-west ,
|
||
|
|
.ui-layout-toggler-east {
|
||
|
|
border-width: 1px 0; /* top/bottom borders */
|
||
|
|
}
|
||
|
|
/* hide the toggler-button when the pane is 'slid open' */
|
||
|
|
.ui-layout-resizer-sliding .ui-layout-toggler {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
/*
|
||
|
|
* style the text we put INSIDE the togglers
|
||
|
|
*/
|
||
|
|
.ui-layout-toggler .content {
|
||
|
|
color: #666;
|
||
|
|
font-size: 12px;
|
||
|
|
font-weight: bold;
|
||
|
|
width: 100%;
|
||
|
|
padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
* PANE-MASKS
|
||
|
|
* these styles are hard-coded on mask elems, but are also
|
||
|
|
* included here as !important to ensure will overrides any generic styles
|
||
|
|
*/
|
||
|
|
.ui-layout-mask {
|
||
|
|
border: none !important;
|
||
|
|
padding: 0 !important;
|
||
|
|
margin: 0 !important;
|
||
|
|
overflow: hidden !important;
|
||
|
|
position: absolute !important;
|
||
|
|
opacity: 0 !important;
|
||
|
|
filter: Alpha(Opacity="0") !important;
|
||
|
|
}
|
||
|
|
.ui-layout-mask-inside-pane { /* masks always inside pane EXCEPT when pane is an iframe */
|
||
|
|
top: 0 !important;
|
||
|
|
left: 0 !important;
|
||
|
|
width: 100% !important;
|
||
|
|
height: 100% !important;
|
||
|
|
}
|
||
|
|
div.ui-layout-mask {} /* standard mask for iframes */
|
||
|
|
iframe.ui-layout-mask {} /* extra mask for objects/applets */
|
||
|
|
|
||
|
|
/*
|
||
|
|
* Default printing styles
|
||
|
|
*/
|
||
|
|
@media print {
|
||
|
|
/*
|
||
|
|
* Unless you want to print the layout as it appears onscreen,
|
||
|
|
* these html/body styles are needed to allow the content to 'flow'
|
||
|
|
*/
|
||
|
|
html {
|
||
|
|
height: auto !important;
|
||
|
|
overflow: visible !important;
|
||
|
|
}
|
||
|
|
body.ui-layout-container {
|
||
|
|
position: static !important;
|
||
|
|
top: auto !important;
|
||
|
|
bottom: auto !important;
|
||
|
|
left: auto !important;
|
||
|
|
right: auto !important;
|
||
|
|
/* only IE6 has container width & height set by Layout */
|
||
|
|
_width: auto !important;
|
||
|
|
_height: auto !important;
|
||
|
|
}
|
||
|
|
.ui-layout-resizer, .ui-layout-toggler {
|
||
|
|
display: none !important;
|
||
|
|
}
|
||
|
|
/*
|
||
|
|
* Default pane print styles disables positioning, borders and backgrounds.
|
||
|
|
* You can modify these styles however it suit your needs.
|
||
|
|
*/
|
||
|
|
.ui-layout-pane {
|
||
|
|
border: none !important;
|
||
|
|
background: transparent !important;
|
||
|
|
position: relative !important;
|
||
|
|
top: auto !important;
|
||
|
|
bottom: auto !important;
|
||
|
|
left: auto !important;
|
||
|
|
right: auto !important;
|
||
|
|
width: auto !important;
|
||
|
|
height: auto !important;
|
||
|
|
overflow: visible !important;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
/*! 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 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
/* 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 !important;
|
||
|
|
opacity: 1.0 !important;
|
||
|
|
position: absolute !important;
|
||
|
|
-webkit-transform: none !important;
|
||
|
|
-moz-transform: none !important;
|
||
|
|
-ms-transform: none !important;
|
||
|
|
-o-transform: none !important;
|
||
|
|
transform: none !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-showElement,
|
||
|
|
tr.introjs-showElement > td,
|
||
|
|
tr.introjs-showElement > th {
|
||
|
|
z-index: 9999999 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-disableInteraction {
|
||
|
|
z-index: 99999999 !important;
|
||
|
|
position: absolute;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-relativePosition,
|
||
|
|
tr.introjs-showElement > td,
|
||
|
|
tr.introjs-showElement > th {
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-helperLayer {
|
||
|
|
position: fixed;
|
||
|
|
z-index: 9999998;
|
||
|
|
background-color: #FFF;
|
||
|
|
background-color: rgba(255,255,255,.9);
|
||
|
|
border: 1px solid #777;
|
||
|
|
border: 1px solid rgba(0,0,0,.5);
|
||
|
|
border-radius: 4px;
|
||
|
|
box-shadow: 0 2px 15px rgba(0,0,0,.4);
|
||
|
|
-webkit-transition: all 0.3s ease-out;
|
||
|
|
-moz-transition: all 0.3s ease-out;
|
||
|
|
-ms-transition: all 0.3s ease-out;
|
||
|
|
-o-transition: all 0.3s ease-out;
|
||
|
|
transition: all 0.3s ease-out;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-tooltipReferenceLayer {
|
||
|
|
position: fixed;
|
||
|
|
z-index: 10000000;
|
||
|
|
background-color: transparent;
|
||
|
|
-webkit-transition: all 0.3s ease-out;
|
||
|
|
-moz-transition: all 0.3s ease-out;
|
||
|
|
-ms-transition: all 0.3s ease-out;
|
||
|
|
-o-transition: all 0.3s ease-out;
|
||
|
|
transition: all 0.3s ease-out;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-helperLayer *,
|
||
|
|
.introjs-helperLayer *:before,
|
||
|
|
.introjs-helperLayer *:after {
|
||
|
|
-webkit-box-sizing: content-box;
|
||
|
|
-moz-box-sizing: content-box;
|
||
|
|
-ms-box-sizing: content-box;
|
||
|
|
-o-box-sizing: content-box;
|
||
|
|
box-sizing: content-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-helperNumberLayer {
|
||
|
|
position: absolute;
|
||
|
|
top: 5px;
|
||
|
|
/*left: -16px;*/
|
||
|
|
left: 50%;
|
||
|
|
z-index: 9999999999 !important;
|
||
|
|
padding: 2px;
|
||
|
|
font-family: Arial, verdana, tahoma;
|
||
|
|
font-size: 13px;
|
||
|
|
font-weight: bold;
|
||
|
|
color: white;
|
||
|
|
text-align: center;
|
||
|
|
text-shadow: 1px 1px 1px rgba(0,0,0,.3);
|
||
|
|
background: #ff3019; /* Old browsers */
|
||
|
|
background: -webkit-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Chrome10+,Safari5.1+ */
|
||
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff3019), color-stop(100%, #cf0404)); /* Chrome,Safari4+ */
|
||
|
|
background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6+ */
|
||
|
|
background: -ms-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* IE10+ */
|
||
|
|
background: -o-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Opera 11.10+ */
|
||
|
|
background: linear-gradient(to bottom, #ff3019 0%, #cf0404 100%); /* W3C */
|
||
|
|
width: 20px;
|
||
|
|
height:20px;
|
||
|
|
line-height: 20px;
|
||
|
|
border: 3px solid white;
|
||
|
|
border-radius: 50%;
|
||
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3019', endColorstr='#cf0404', GradientType=0); /* IE6-9 */
|
||
|
|
filter: progid:DXImageTransform.Microsoft.Shadow(direction=135, strength=2, color=ff0000); /* IE10 text shadows */
|
||
|
|
box-shadow: 0 2px 5px rgba(0,0,0,.4);
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-arrow {
|
||
|
|
border: 5px solid white;
|
||
|
|
content:'';
|
||
|
|
position: absolute;
|
||
|
|
}
|
||
|
|
.introjs-arrow.top {
|
||
|
|
top: -10px;
|
||
|
|
border-top-color:transparent;
|
||
|
|
border-right-color:transparent;
|
||
|
|
border-bottom-color:white;
|
||
|
|
border-left-color:transparent;
|
||
|
|
}
|
||
|
|
.introjs-arrow.top-right {
|
||
|
|
top: -10px;
|
||
|
|
right: 10px;
|
||
|
|
border-top-color:transparent;
|
||
|
|
border-right-color:transparent;
|
||
|
|
border-bottom-color:white;
|
||
|
|
border-left-color:transparent;
|
||
|
|
}
|
||
|
|
.introjs-arrow.top-middle {
|
||
|
|
top: -10px;
|
||
|
|
left: 50%;
|
||
|
|
margin-left: -5px;
|
||
|
|
border-top-color:transparent;
|
||
|
|
border-right-color:transparent;
|
||
|
|
border-bottom-color:white;
|
||
|
|
border-left-color:transparent;
|
||
|
|
}
|
||
|
|
.introjs-arrow.right {
|
||
|
|
right: -10px;
|
||
|
|
top: 10px;
|
||
|
|
border-top-color:transparent;
|
||
|
|
border-right-color:transparent;
|
||
|
|
border-bottom-color:transparent;
|
||
|
|
border-left-color:white;
|
||
|
|
}
|
||
|
|
.introjs-arrow.right-bottom {
|
||
|
|
bottom:10px;
|
||
|
|
right: -10px;
|
||
|
|
border-top-color:transparent;
|
||
|
|
border-right-color:transparent;
|
||
|
|
border-bottom-color:transparent;
|
||
|
|
border-left-color:white;
|
||
|
|
}
|
||
|
|
.introjs-arrow.bottom {
|
||
|
|
bottom: -10px;
|
||
|
|
border-top-color:white;
|
||
|
|
border-right-color:transparent;
|
||
|
|
border-bottom-color:transparent;
|
||
|
|
border-left-color:transparent;
|
||
|
|
}
|
||
|
|
.introjs-arrow.left {
|
||
|
|
left: -10px;
|
||
|
|
top: 10px;
|
||
|
|
border-top-color:transparent;
|
||
|
|
border-right-color:white;
|
||
|
|
border-bottom-color:transparent;
|
||
|
|
border-left-color:transparent;
|
||
|
|
}
|
||
|
|
.introjs-arrow.left-bottom {
|
||
|
|
left: -10px;
|
||
|
|
bottom:10px;
|
||
|
|
border-top-color:transparent;
|
||
|
|
border-right-color:white;
|
||
|
|
border-bottom-color:transparent;
|
||
|
|
border-left-color:transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-tooltip {
|
||
|
|
position: absolute;
|
||
|
|
padding: 10px;
|
||
|
|
background-color: white;
|
||
|
|
min-width: 200px;
|
||
|
|
max-width: 600px;
|
||
|
|
border-radius: 3px;
|
||
|
|
box-shadow: 0 1px 10px rgba(0,0,0,.4);
|
||
|
|
-webkit-transition: opacity 0.1s ease-out;
|
||
|
|
-moz-transition: opacity 0.1s ease-out;
|
||
|
|
-ms-transition: opacity 0.1s ease-out;
|
||
|
|
-o-transition: opacity 0.1s ease-out;
|
||
|
|
transition: opacity 0.1s ease-out;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-tooltipbuttons {
|
||
|
|
text-align: right;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
|
||
|
|
Changed by Afshin Mehrabani
|
||
|
|
*/
|
||
|
|
.introjs-button {
|
||
|
|
position: relative;
|
||
|
|
overflow: visible;
|
||
|
|
display: inline-block;
|
||
|
|
padding: 0.3em 0.8em;
|
||
|
|
border: 1px solid #d4d4d4;
|
||
|
|
margin: 0;
|
||
|
|
text-decoration: none;
|
||
|
|
text-shadow: 1px 1px 0 #fff;
|
||
|
|
font: 11px/normal sans-serif;
|
||
|
|
color: #333;
|
||
|
|
white-space: nowrap;
|
||
|
|
cursor: pointer;
|
||
|
|
outline: none;
|
||
|
|
background-color: #ececec;
|
||
|
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
|
||
|
|
background-image: -moz-linear-gradient(#f4f4f4, #ececec);
|
||
|
|
background-image: -o-linear-gradient(#f4f4f4, #ececec);
|
||
|
|
background-image: linear-gradient(#f4f4f4, #ececec);
|
||
|
|
-webkit-background-clip: padding;
|
||
|
|
-moz-background-clip: padding;
|
||
|
|
-o-background-clip: padding-box;
|
||
|
|
/*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
|
||
|
|
-webkit-border-radius: 0.2em;
|
||
|
|
-moz-border-radius: 0.2em;
|
||
|
|
border-radius: 0.2em;
|
||
|
|
/* IE hacks */
|
||
|
|
zoom: 1;
|
||
|
|
*display: inline;
|
||
|
|
margin-top: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-button:hover {
|
||
|
|
border-color: #bcbcbc;
|
||
|
|
text-decoration: none;
|
||
|
|
box-shadow: 0px 1px 1px #e3e3e3;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-button:focus,
|
||
|
|
.introjs-button:active {
|
||
|
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ececec), to(#f4f4f4));
|
||
|
|
background-image: -moz-linear-gradient(#ececec, #f4f4f4);
|
||
|
|
background-image: -o-linear-gradient(#ececec, #f4f4f4);
|
||
|
|
background-image: linear-gradient(#ececec, #f4f4f4);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* overrides extra padding on button elements in Firefox */
|
||
|
|
.introjs-button::-moz-focus-inner {
|
||
|
|
padding: 0;
|
||
|
|
border: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-skipbutton {
|
||
|
|
margin-right: 5px;
|
||
|
|
color: #7a7a7a;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-prevbutton {
|
||
|
|
-webkit-border-radius: 0.2em 0 0 0.2em;
|
||
|
|
-moz-border-radius: 0.2em 0 0 0.2em;
|
||
|
|
border-radius: 0.2em 0 0 0.2em;
|
||
|
|
border-right: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-nextbutton {
|
||
|
|
-webkit-border-radius: 0 0.2em 0.2em 0;
|
||
|
|
-moz-border-radius: 0 0.2em 0.2em 0;
|
||
|
|
border-radius: 0 0.2em 0.2em 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
|
||
|
|
color: #9a9a9a;
|
||
|
|
border-color: #d4d4d4;
|
||
|
|
box-shadow: none;
|
||
|
|
cursor: default;
|
||
|
|
background-color: #f4f4f4;
|
||
|
|
background-image: none;
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-bullets {
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.introjs-bullets ul {
|
||
|
|
clear: both;
|
||
|
|
margin: 15px auto 0;
|
||
|
|
padding: 0;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
.introjs-bullets ul li {
|
||
|
|
list-style: none;
|
||
|
|
float: left;
|
||
|
|
margin: 0 2px;
|
||
|
|
}
|
||
|
|
.introjs-bullets ul li a {
|
||
|
|
display: block;
|
||
|
|
width: 6px;
|
||
|
|
height: 6px;
|
||
|
|
background: #ccc;
|
||
|
|
border-radius: 10px;
|
||
|
|
-moz-border-radius: 10px;
|
||
|
|
-webkit-border-radius: 10px;
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
.introjs-bullets ul li a:hover {
|
||
|
|
background: #999;
|
||
|
|
}
|
||
|
|
.introjs-bullets ul li a.active {
|
||
|
|
background: #999;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjs-progress {
|
||
|
|
overflow: hidden;
|
||
|
|
height: 10px;
|
||
|
|
margin: 10px 0 5px 0;
|
||
|
|
border-radius: 4px;
|
||
|
|
background-color: #ecf0f1
|
||
|
|
}
|
||
|
|
.introjs-progressbar {
|
||
|
|
float: left;
|
||
|
|
width: 0%;
|
||
|
|
height: 100%;
|
||
|
|
font-size: 10px;
|
||
|
|
line-height: 10px;
|
||
|
|
text-align: center;
|
||
|
|
background-color: #08c;
|
||
|
|
}
|
||
|
|
|
||
|
|
.introjsFloatingElement {
|
||
|
|
position: absolute;
|
||
|
|
height: 0;
|
||
|
|
width: 0;
|
||
|
|
left: 50%;
|
||
|
|
top: 50%;
|
||
|
|
}
|
||
|
|
|
||
|
|
table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{cursor:pointer;*cursor:hand}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../img/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../img/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../img/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../img/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../img/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#fff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#abb9d3}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f5f5f5}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#a9b7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#f9f9f9}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad4}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:#f5f5f5}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b3cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a7b5ce}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.
|
||
|
|
|
||
|
|
.pmui-pmlabelfield .pmui-textlabel {
|
||
|
|
background: #aaaaaa;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
.pmui-gridpanel {
|
||
|
|
padding: 10px 20px;
|
||
|
|
}*/
|
||
|
|
.pmui-gridpanel-pager .list-item-ajax a {
|
||
|
|
position: relative;
|
||
|
|
float: left;
|
||
|
|
padding: 6px 12px;
|
||
|
|
line-height: 1.42857143;
|
||
|
|
text-decoration: none;
|
||
|
|
color: #428bca;
|
||
|
|
background-color: #fff;
|
||
|
|
border: 1px solid #ddd;
|
||
|
|
margin: 0 0 0 -1px;
|
||
|
|
min-width: inherit;
|
||
|
|
font-size: 14px;
|
||
|
|
border-radius: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pager .list-item-ajax {
|
||
|
|
margin: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-gotoPage {
|
||
|
|
padding: 6px 14px 6px 14px;
|
||
|
|
margin: 0px;
|
||
|
|
background-color: #f7f7f7;
|
||
|
|
text-align: left;
|
||
|
|
color: #555;
|
||
|
|
border-radius: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridpanel-pager .list-item-ajax a:hover {
|
||
|
|
color: #2a6496;
|
||
|
|
background-color: #eee;
|
||
|
|
border-color: #ddd;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*@import "base";
|
||
|
|
|
||
|
|
.pmui-pmform {
|
||
|
|
margin-left: 20px;
|
||
|
|
margin-right: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
.pmui-background {
|
||
|
|
background-color: $PMUI-FORM-BACKGROUND;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window-footer {
|
||
|
|
padding-left: 20px;
|
||
|
|
padding-right: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window-footer > button-solid {
|
||
|
|
margin-left: 5px;
|
||
|
|
margin-right: 5px;
|
||
|
|
margin-bottom: 5px;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
div.pmui-window-footer > a.button-solid {
|
||
|
|
margin-left: 7px;
|
||
|
|
margin-top: 5px;
|
||
|
|
margin-bottom: 5px;
|
||
|
|
background: $MAFE-FORM-BUTTONS-BACKGROUND;
|
||
|
|
padding: 6px 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
div.pmui-form-footer > a.button-solid {
|
||
|
|
margin-left: 7px;
|
||
|
|
margin-top: 5px;
|
||
|
|
margin-bottom: 5px;
|
||
|
|
background: $MAFE-FORM-BUTTONS-BACKGROUND;
|
||
|
|
padding: 6px 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-buttonpanel {
|
||
|
|
padding-right: 10px;
|
||
|
|
padding-left: 10px;
|
||
|
|
text-align: right;
|
||
|
|
}*/
|
||
|
|
|
||
|
|
body {
|
||
|
|
font-family: 'SourceSansProRegular', Arial, Tahoma, Verdana;
|
||
|
|
background: #fff;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*IE9*/
|
||
|
|
/**::selection*/
|
||
|
|
/*.content_control::selection
|
||
|
|
{
|
||
|
|
background-color:transparent;
|
||
|
|
}
|
||
|
|
.content_control::-moz-selection
|
||
|
|
{
|
||
|
|
background-color:transparent;
|
||
|
|
}*/
|
||
|
|
* {
|
||
|
|
/*You just need this if you are only concerned with android and not desktop browsers.*/
|
||
|
|
-webkit-tap-highlight-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* BPMN */
|
||
|
|
#p-center-layout {
|
||
|
|
-webkit-user-select: none;
|
||
|
|
-moz-user-select: -moz-none;
|
||
|
|
user-select: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Canvas
|
||
|
|
*/
|
||
|
|
.pmui-pmcanvas {
|
||
|
|
background-image: url(../img/bg_designer.gif);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* ToolbarPanel
|
||
|
|
*/
|
||
|
|
.mafe-toolbarpanel-btn {
|
||
|
|
text-decoration: none;
|
||
|
|
list-style: none;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbarpanel-btn-span {
|
||
|
|
font-size: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbarpanel-btn-img {
|
||
|
|
width: 30px;
|
||
|
|
height: 30px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbarpanel-tooltip {
|
||
|
|
font-size: 10px;
|
||
|
|
z-index: 9999;
|
||
|
|
max-width: 300px;
|
||
|
|
-webkit-box-shadow: 0 0 5px #aaa;
|
||
|
|
-moz-box-shadow: 0 0 5px #aaa;
|
||
|
|
box-shadow: 0 0 5px #aaa;
|
||
|
|
background-color: #6D87B7;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-email {
|
||
|
|
background: url(../img/email.png) no-repeat;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
* For buttons that are on the north from the Layout
|
||
|
|
*/
|
||
|
|
.ui-layout-north a {
|
||
|
|
margin-left: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Shapes
|
||
|
|
*/
|
||
|
|
.mafe-shape-sprite {
|
||
|
|
background: url("../img/mafe_sprite.png") no-repeat;
|
||
|
|
}
|
||
|
|
|
||
|
|
[class^="mafe-activity-task-"],
|
||
|
|
[class*=" mafe-activity-task-"],
|
||
|
|
[class^="mafe-event-"],
|
||
|
|
[class*=" mafe-event-"],
|
||
|
|
[class^="mafe-gateway-"],
|
||
|
|
[class*=" mafe-gateway-"],
|
||
|
|
[class^="PM-decorator_"],
|
||
|
|
[class*=" PM-decorator_"],
|
||
|
|
[class^="mafe-usertask-marker-"],
|
||
|
|
[class*=" mafe-usertask-marker-"],
|
||
|
|
[class^="mafe-sendtask-marker-"],
|
||
|
|
[class*=" mafe-sendtask-marker-"],
|
||
|
|
[class^="mafe-receivetask-marker-"],
|
||
|
|
[class*=" mafe-receivetask-marker-"],
|
||
|
|
[class^="mafe-usertask-marker-"],
|
||
|
|
[class*=" mafe-usertask-marker-"],
|
||
|
|
[class^="mafe-servicetask-marker-"],
|
||
|
|
[class*=" mafe-servicetask-marker-"],
|
||
|
|
[class^="mafe-scripttask-marker-"],
|
||
|
|
[class*=" mafe-scripttask-marker-"],
|
||
|
|
[class^="mafe-manualtask-marker-"],
|
||
|
|
[class*=" mafe-manualtask-marker-"],
|
||
|
|
[class^="mafe-businessrule-marker-"],
|
||
|
|
[class*=" mafe-businessrule-marker-"],
|
||
|
|
[class^="mafe-collapsed-marker-"],
|
||
|
|
[class*="mafe-parallel-marker-"],
|
||
|
|
[class*="mafe-sequential-marker-"],
|
||
|
|
[class*="mafe-loop-marker-"],
|
||
|
|
[class*="mafe-style-error-marker-"],
|
||
|
|
[class^="mafe-data"],
|
||
|
|
[class*=" mafe-data"],
|
||
|
|
[class^="mafe-message"],
|
||
|
|
[class*=" mafe-message"],
|
||
|
|
[class^="mafe-sequence"],
|
||
|
|
[class*=" mafe-sequence"],
|
||
|
|
[class^="mafe-association"],
|
||
|
|
[class*=" mafe-association"],
|
||
|
|
[class^="mafe-default"],
|
||
|
|
[class*=" mafe-default"] {
|
||
|
|
background-image: url("../img/mafe_sprite.png");
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-position: -565px -510px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-activity-task-red {
|
||
|
|
background-color: #BD0A17;
|
||
|
|
border: 1px solid #72020C;
|
||
|
|
-webkit-border-radius: 3px;
|
||
|
|
-moz-border-radius: 3px;
|
||
|
|
-ms-border-radius: 3px;
|
||
|
|
-o-border-radius: 3px;
|
||
|
|
border-radius: 3px;
|
||
|
|
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-activity-task-green {
|
||
|
|
background-color: #1B7909;
|
||
|
|
border: 1px solid #0F5502;
|
||
|
|
-webkit-border-radius: 3px;
|
||
|
|
-moz-border-radius: 3px;
|
||
|
|
-ms-border-radius: 3px;
|
||
|
|
-o-border-radius: 3px;
|
||
|
|
border-radius: 3px;
|
||
|
|
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-activity-task-orange {
|
||
|
|
background-color: #C57701;
|
||
|
|
border: 1px solid #965B02;
|
||
|
|
-webkit-border-radius: 3px;
|
||
|
|
-moz-border-radius: 3px;
|
||
|
|
-ms-border-radius: 3px;
|
||
|
|
-o-border-radius: 3px;
|
||
|
|
border-radius: 3px;
|
||
|
|
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-activity-task-silver {
|
||
|
|
background-color: #AAA8A6;
|
||
|
|
border: 1px solid #6F6D6C;
|
||
|
|
-webkit-border-radius: 3px;
|
||
|
|
-moz-border-radius: 3px;
|
||
|
|
-ms-border-radius: 3px;
|
||
|
|
-o-border-radius: 3px;
|
||
|
|
border-radius: 3px;
|
||
|
|
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-artifact-group {
|
||
|
|
border: 1px dashed #995E06;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-artifact-annotation {
|
||
|
|
/*background-color: #fbf1ce;*/
|
||
|
|
-webkit-border-radius: 3px;
|
||
|
|
-moz-border-radius: 3px;
|
||
|
|
-ms-border-radius: 3px;
|
||
|
|
-o-border-radius: 3px;
|
||
|
|
border-radius: 3px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-artifact-annotation-close {
|
||
|
|
float: right;
|
||
|
|
background: url("../img/delete.png") no-repeat center;
|
||
|
|
width: 10px;
|
||
|
|
height: 10px;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-layer-line-vertical {
|
||
|
|
visibility: visible;
|
||
|
|
background-color: transparent;
|
||
|
|
border-left-width: 1px;
|
||
|
|
border-left-style: solid;
|
||
|
|
border-left-color: red;
|
||
|
|
border-top-width: 0px;
|
||
|
|
border-top-style: solid;
|
||
|
|
border-top-color: red;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-layer-line-horizontal {
|
||
|
|
background-color: transparent;
|
||
|
|
border-left-width: 0px;
|
||
|
|
border-left-style: solid;
|
||
|
|
border-left-color: red;
|
||
|
|
border-top-width: 1px;
|
||
|
|
border-top-style: solid;
|
||
|
|
border-top-color: red;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-participant {
|
||
|
|
background-color: white;
|
||
|
|
border: 2px solid #3b4753;
|
||
|
|
-webkit-border-radius: 3px;
|
||
|
|
-moz-border-radius: 3px;
|
||
|
|
-ms-border-radius: 3px;
|
||
|
|
-o-border-radius: 3px;
|
||
|
|
border-radius: 6px;
|
||
|
|
/*-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);*/
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-pool {
|
||
|
|
border: 2px solid #3b4753;
|
||
|
|
-webkit-border-radius: 3px;
|
||
|
|
-moz-border-radius: 3px;
|
||
|
|
-ms-border-radius: 3px;
|
||
|
|
-o-border-radius: 3px;
|
||
|
|
border-radius: 6px;
|
||
|
|
/*-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
|
||
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);*/
|
||
|
|
box-sizing: border-box;
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*mafe sprite*/
|
||
|
|
.mafe-association_100_target_bottom {
|
||
|
|
background-position: 0 -9162px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_100_target_left {
|
||
|
|
background-position: 0 -9184px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_100_target_right {
|
||
|
|
background-position: 0 -9251px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_100_target_top {
|
||
|
|
background-position: 0 -9173px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_125_target_bottom {
|
||
|
|
background-position: 0 -9048px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_125_target_left {
|
||
|
|
background-position: 0 -9136px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_125_target_right {
|
||
|
|
background-position: 0 -9149px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_125_target_top {
|
||
|
|
background-position: 0 -9093px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_150_target_bottom {
|
||
|
|
background-position: 0 -8993px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_150_target_left {
|
||
|
|
background-position: 0 -11416px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_150_target_right {
|
||
|
|
background-position: 0 -9106px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_150_target_top {
|
||
|
|
background-position: 0 -9018px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_50_target_bottom {
|
||
|
|
background-position: 0 -9791px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_50_target_left {
|
||
|
|
background-position: 0 -9797px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_50_target_right {
|
||
|
|
background-position: 0 -9893px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_50_target_top {
|
||
|
|
background-position: 0 -9824px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_75_target_bottom {
|
||
|
|
background-position: 0 -9506px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_75_target_left {
|
||
|
|
background-position: 0 -9525px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_75_target_right {
|
||
|
|
background-position: 0 -9569px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-association_75_target_top {
|
||
|
|
background-position: 0 -9533px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-businessrule-marker-10 {
|
||
|
|
background-position: 0 -11431px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-businessrule-marker-15 {
|
||
|
|
background-position: 0 -11360px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-businessrule-marker-21 {
|
||
|
|
background-position: 0 -11225px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-businessrule-marker-26 {
|
||
|
|
background-position: 0 -11334px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-businessrule-marker-31 {
|
||
|
|
background-position: 0 -11441px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-collapsed-marker-10 {
|
||
|
|
background-position: 0 -9008px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-collapsed-marker-15 {
|
||
|
|
background-position: 0 -8518px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-collapsed-marker-21 {
|
||
|
|
background-position: 0 -8357px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-collapsed-marker-26 {
|
||
|
|
background-position: 0 -8378px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-collapsed-marker-31 {
|
||
|
|
background-position: 0 -8947px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-datainput-marker-10 {
|
||
|
|
background-position: 0 -9322px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-datainput-marker-15 {
|
||
|
|
background-position: 0 -8978px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-datainput-marker-21 {
|
||
|
|
background-position: 0 -8616px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-datainput-marker-26 {
|
||
|
|
background-position: 0 -8548px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-datainput-marker-31 {
|
||
|
|
background-position: 0 -11179px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-dataobject-100 {
|
||
|
|
background-position: 0 -8010px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-dataobject-125 {
|
||
|
|
background-position: 0 -7886px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-dataobject-150 {
|
||
|
|
background-position: 0 -11000px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-dataobject-50 {
|
||
|
|
background-position: 0 -8650px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-dataobject-75 {
|
||
|
|
background-position: 0 -8242px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-dataoutput-marker-10 {
|
||
|
|
background-position: 0 -9433px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-dataoutput-marker-15 {
|
||
|
|
background-position: 0 -9033px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-dataoutput-marker-21 {
|
||
|
|
background-position: 0 -8906px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-dataoutput-marker-26 {
|
||
|
|
background-position: 0 -8870px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-dataoutput-marker-31 {
|
||
|
|
background-position: 0 -11385px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-datastore-20 {
|
||
|
|
background-position: 0 -7643px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-datastore-30 {
|
||
|
|
background-position: 0 -5709px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-datastore-41 {
|
||
|
|
background-position: 0 -3780px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-datastore-51 {
|
||
|
|
background-position: 0 -1972px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-datastore-61 {
|
||
|
|
background-position: 0 -4076px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_100_source_bottom {
|
||
|
|
background-position: 0 -9577px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_100_source_left {
|
||
|
|
background-position: 0 -9605px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_100_source_right {
|
||
|
|
background-position: 0 -9588px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_100_source_top {
|
||
|
|
background-position: 0 -9558px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_125_source_bottom {
|
||
|
|
background-position: 0 -9443px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_125_source_left {
|
||
|
|
background-position: 0 -9480px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_125_source_right {
|
||
|
|
background-position: 0 -9493px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_125_source_top {
|
||
|
|
background-position: 0 -9456px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_150_source_bottom {
|
||
|
|
background-position: 0 -9262px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_150_source_left {
|
||
|
|
background-position: 0 -9061px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_150_source_right {
|
||
|
|
background-position: 0 -9077px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_150_source_top {
|
||
|
|
background-position: 0 -9347px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_50_source_bottom {
|
||
|
|
background-position: 0 -9984px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_50_source_left {
|
||
|
|
background-position: 0 -9974px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_50_source_right {
|
||
|
|
background-position: 0 -9963px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_50_source_top {
|
||
|
|
background-position: 0 -9979px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_75_source_bottom {
|
||
|
|
background-position: 0 -9877px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_75_source_left {
|
||
|
|
background-position: 0 -9922px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_75_source_right {
|
||
|
|
background-position: 0 -9899px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-default_75_source_top {
|
||
|
|
background-position: 0 -9885px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-compensationthrow-16 {
|
||
|
|
background-position: 0 -7394px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-compensationthrow-24 {
|
||
|
|
background-position: 0 -5883px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-compensationthrow-33 {
|
||
|
|
background-position: 0 -3335px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-compensationthrow-41 {
|
||
|
|
background-position: 0 -1080px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-compensationthrow-49 {
|
||
|
|
background-position: 0 -198px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-conditional-16 {
|
||
|
|
background-position: 0 -8083px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-conditional-24 {
|
||
|
|
background-position: 0 -6889px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-conditional-33 {
|
||
|
|
background-position: 0 -5277px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-conditional-41 {
|
||
|
|
background-position: 0 -4137px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-conditional-49 {
|
||
|
|
background-position: 0 -3401px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-empty-16 {
|
||
|
|
background-position: 0 -7963px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-empty-24 {
|
||
|
|
background-position: 0 -6680px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-empty-33 {
|
||
|
|
background-position: 0 -4610px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-empty-41 {
|
||
|
|
background-position: 0 -2426px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-empty-49 {
|
||
|
|
background-position: 0 -1031px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-errorcatch-1 {
|
||
|
|
background-position: 0 -11375px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-errorcatch-16 {
|
||
|
|
background-position: 0 -10867px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-errorcatch-2 {
|
||
|
|
background-position: 0 -11061px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-errorcatch-24 {
|
||
|
|
background-position: 0 -10426px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-errorcatch-3 {
|
||
|
|
background-position: 0 -10664px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-errorcatch-33 {
|
||
|
|
background-position: 0 -9203px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-errorcatch-4 {
|
||
|
|
background-position: 0 -10328px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-errorcatch-41 {
|
||
|
|
background-position: 0 -7458px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-errorcatch-49 {
|
||
|
|
background-position: 0 -5931px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-errorcatch-5 {
|
||
|
|
background-position: 0 -10798px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-linkcatch-16 {
|
||
|
|
background-position: 0 -7555px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-linkcatch-24 {
|
||
|
|
background-position: 0 -5980px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-linkcatch-33 {
|
||
|
|
background-position: 0 -3673px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-linkcatch-41 {
|
||
|
|
background-position: 0 -1387px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-linkcatch-49 {
|
||
|
|
background-position: 0 -357px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-linkthrow-16 {
|
||
|
|
background-position: 0 -7499px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-linkthrow-24 {
|
||
|
|
background-position: 0 -6028px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-linkthrow-33 {
|
||
|
|
background-position: 0 -3887px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-linkthrow-41 {
|
||
|
|
background-position: 0 -1651px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-linkthrow-49 {
|
||
|
|
background-position: 0 -702px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagecatch-16 {
|
||
|
|
background-position: 0 -7742px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagecatch-24 {
|
||
|
|
background-position: 0 -6165px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagecatch-33 {
|
||
|
|
background-position: 0 -3994px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagecatch-41 {
|
||
|
|
background-position: 0 -2072px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagecatch-49 {
|
||
|
|
background-position: 0 -849px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagecatch-enabled-16 {
|
||
|
|
background-position: 0 -11246px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagecatch-enabled-24 {
|
||
|
|
background-position: 0 -10819px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagecatch-enabled-33 {
|
||
|
|
background-position: 0 -10565px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagecatch-enabled-41 {
|
||
|
|
background-position: 0 -10235px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagecatch-enabled-49 {
|
||
|
|
background-position: 0 -9616px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagethrow-16 {
|
||
|
|
background-position: 0 -11318px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagethrow-24 {
|
||
|
|
background-position: 0 -10940px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagethrow-33 {
|
||
|
|
background-position: 0 -10631px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagethrow-41 {
|
||
|
|
background-position: 0 -10359px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-messagethrow-49 {
|
||
|
|
background-position: 0 -10145px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-multiplecatch-16 {
|
||
|
|
background-position: 0 -7426px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-multiplecatch-24 {
|
||
|
|
background-position: 0 -5835px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-multiplecatch-33 {
|
||
|
|
background-position: 0 -3014px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-multiplecatch-41 {
|
||
|
|
background-position: 0 -949px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-multiplecatch-49 {
|
||
|
|
background-position: 0 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-multiplethrow-16 {
|
||
|
|
background-position: 0 -7258px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-multiplethrow-24 {
|
||
|
|
background-position: 0 -5739px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-multiplethrow-33 {
|
||
|
|
background-position: 0 -3269px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-multiplethrow-41 {
|
||
|
|
background-position: 0 -1305px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-multiplethrow-49 {
|
||
|
|
background-position: 0 -604px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-parallelcatch-16 {
|
||
|
|
background-position: 0 -7338px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-parallelcatch-24 {
|
||
|
|
background-position: 0 -5787px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-parallelcatch-33 {
|
||
|
|
background-position: 0 -3047px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-parallelcatch-41 {
|
||
|
|
background-position: 0 -1223px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-parallelcatch-49 {
|
||
|
|
background-position: 0 -455px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-signalcatch-16 {
|
||
|
|
background-position: 0 -7587px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-signalcatch-24 {
|
||
|
|
background-position: 0 -6100px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-signalcatch-33 {
|
||
|
|
background-position: 0 -3821px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-signalcatch-41 {
|
||
|
|
background-position: 0 -1428px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-signalcatch-49 {
|
||
|
|
background-position: 0 -98px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-signalthrow-16 {
|
||
|
|
background-position: 0 -7603px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-signalthrow-24 {
|
||
|
|
background-position: 0 -6076px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-signalthrow-33 {
|
||
|
|
background-position: 0 -3854px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-signalthrow-41 {
|
||
|
|
background-position: 0 -1559px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-signalthrow-49 {
|
||
|
|
background-position: 0 -800px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-timer-16 {
|
||
|
|
background-position: 0 -7854px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-timer-24 {
|
||
|
|
background-position: 0 -6369px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-timer-33 {
|
||
|
|
background-position: 0 -4372px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-timer-41 {
|
||
|
|
background-position: 0 -2344px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-boundary-timer-49 {
|
||
|
|
background-position: 0 -1733px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-cancelthrow-16 {
|
||
|
|
background-position: 0 -7726px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-cancelthrow-24 {
|
||
|
|
background-position: 0 -6503px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-cancelthrow-33 {
|
||
|
|
background-position: 0 -4528px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-cancelthrow-41 {
|
||
|
|
background-position: 0 -2508px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-cancelthrow-49 {
|
||
|
|
background-position: 0 -1872px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-compensationthrow-16 {
|
||
|
|
background-position: 0 -7758px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-compensationthrow-24 {
|
||
|
|
background-position: 0 -6575px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-compensationthrow-33 {
|
||
|
|
background-position: 0 -4899px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-compensationthrow-41 {
|
||
|
|
background-position: 0 -3146px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-compensationthrow-49 {
|
||
|
|
background-position: 0 -2254px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-email-16 {
|
||
|
|
background-position: 0 -8288px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-email-24 {
|
||
|
|
background-position: 0 -7290px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-email-33 {
|
||
|
|
background-position: 0 -6823px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-email-41 {
|
||
|
|
background-position: 0 -6230px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-email-49 {
|
||
|
|
background-position: 0 -5458px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-empty-16 {
|
||
|
|
background-position: 0 -8481px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-empty-24 {
|
||
|
|
background-position: 0 -7515px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-empty-33 {
|
||
|
|
background-position: 0 -6704px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-empty-41 {
|
||
|
|
background-position: 0 -5589px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-empty-49 {
|
||
|
|
background-position: 0 -4479px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-errorthrow-16 {
|
||
|
|
background-position: 0 -8168px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-errorthrow-24 {
|
||
|
|
background-position: 0 -7186px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-errorthrow-33 {
|
||
|
|
background-position: 0 -6312px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-errorthrow-41 {
|
||
|
|
background-position: 0 -5195px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-errorthrow-49 {
|
||
|
|
background-position: 0 -4561px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-messagethrow-16 {
|
||
|
|
background-position: 0 -8304px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-messagethrow-24 {
|
||
|
|
background-position: 0 -7314px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-messagethrow-33 {
|
||
|
|
background-position: 0 -6856px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-messagethrow-41 {
|
||
|
|
background-position: 0 -6271px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-messagethrow-49 {
|
||
|
|
background-position: 0 -5507px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-multiplethrow-16 {
|
||
|
|
background-position: 0 -7710px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-multiplethrow-24 {
|
||
|
|
background-position: 0 -6551px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-multiplethrow-33 {
|
||
|
|
background-position: 0 -4866px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-multiplethrow-41 {
|
||
|
|
background-position: 0 -3550px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-multiplethrow-49 {
|
||
|
|
background-position: 0 -2639px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-signalthrow-16 {
|
||
|
|
background-position: 0 -8272px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-signalthrow-24 {
|
||
|
|
background-position: 0 -7370px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-signalthrow-33 {
|
||
|
|
background-position: 0 -6985px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-signalthrow-41 {
|
||
|
|
background-position: 0 -6441px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-signalthrow-49 {
|
||
|
|
background-position: 0 -5660px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-terminatethrow-16 {
|
||
|
|
background-position: 0 -8404px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-terminatethrow-24 {
|
||
|
|
background-position: 0 -7234px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-terminatethrow-33 {
|
||
|
|
background-position: 0 -6737px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-terminatethrow-41 {
|
||
|
|
background-position: 0 -6189px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-end-terminatethrow-49 {
|
||
|
|
background-position: 0 -5343px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-compensationthrow-16 {
|
||
|
|
background-position: 0 -7410px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-compensationthrow-24 {
|
||
|
|
background-position: 0 -5907px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-compensationthrow-33 {
|
||
|
|
background-position: 0 -3368px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-compensationthrow-41 {
|
||
|
|
background-position: 0 -1121px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-compensationthrow-49 {
|
||
|
|
background-position: 0 -247px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-conditional-16 {
|
||
|
|
background-position: 0 -8099px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-conditional-24 {
|
||
|
|
background-position: 0 -6913px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-conditional-33 {
|
||
|
|
background-position: 0 -5310px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-conditional-41 {
|
||
|
|
background-position: 0 -4178px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-conditional-49 {
|
||
|
|
background-position: 0 -3450px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-email-16 {
|
||
|
|
background-position: 0 -8115px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-email-24 {
|
||
|
|
background-position: 0 -7018px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-email-33 {
|
||
|
|
background-position: 0 -5392px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-email-41 {
|
||
|
|
background-position: 0 -4219px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-email-49 {
|
||
|
|
background-position: 0 -2867px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-linkcatch-16 {
|
||
|
|
background-position: 0 -7571px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-linkcatch-24 {
|
||
|
|
background-position: 0 -6004px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-linkcatch-33 {
|
||
|
|
background-position: 0 -3706px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-linkcatch-41 {
|
||
|
|
background-position: 0 -1469px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-linkcatch-49 {
|
||
|
|
background-position: 0 -406px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-linkthrow-16 {
|
||
|
|
background-position: 0 -7539px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-linkthrow-24 {
|
||
|
|
background-position: 0 -6052px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-linkthrow-33 {
|
||
|
|
background-position: 0 -3920px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-linkthrow-41 {
|
||
|
|
background-position: 0 -1692px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-linkthrow-49 {
|
||
|
|
background-position: 0 -751px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-messagecatch-16 {
|
||
|
|
background-position: 0 -11272px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-messagecatch-24 {
|
||
|
|
background-position: 0 -10843px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-messagecatch-33 {
|
||
|
|
background-position: 0 -10598px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-messagecatch-41 {
|
||
|
|
background-position: 0 -2303px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-messagecatch-419 {
|
||
|
|
background-position: 0 -10194px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-messagecatch-49 {
|
||
|
|
background-position: 0 -10070px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-messagethrow-16 {
|
||
|
|
background-position: 0 -8131px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-messagethrow-24 {
|
||
|
|
background-position: 0 -7042px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-messagethrow-33 {
|
||
|
|
background-position: 0 -5425px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-messagethrow-41 {
|
||
|
|
background-position: 0 -4260px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-messagethrow-49 {
|
||
|
|
background-position: 0 -2916px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-multiplecatch-16 {
|
||
|
|
background-position: 0 -7442px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-multiplecatch-24 {
|
||
|
|
background-position: 0 -5859px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-multiplecatch-33 {
|
||
|
|
background-position: 0 -3080px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-multiplecatch-41 {
|
||
|
|
background-position: 0 -990px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-multiplecatch-49 {
|
||
|
|
background-position: 0 -49px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-multiplethrow-16 {
|
||
|
|
background-position: 0 -7274px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-multiplethrow-24 {
|
||
|
|
background-position: 0 -5763px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-multiplethrow-33 {
|
||
|
|
background-position: 0 -3302px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-multiplethrow-41 {
|
||
|
|
background-position: 0 -1346px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-multiplethrow-49 {
|
||
|
|
background-position: 0 -653px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-parallelcatch-16 {
|
||
|
|
background-position: 0 -7354px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-parallelcatch-24 {
|
||
|
|
background-position: 0 -5811px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-parallelcatch-33 {
|
||
|
|
background-position: 0 -3113px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-parallelcatch-41 {
|
||
|
|
background-position: 0 -1264px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-parallelcatch-49 {
|
||
|
|
background-position: 0 -504px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-signalcatch-16 {
|
||
|
|
background-position: 0 -8051px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-signalcatch-24 {
|
||
|
|
background-position: 0 -6937px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-signalcatch-33 {
|
||
|
|
background-position: 0 -5162px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-signalcatch-41 {
|
||
|
|
background-position: 0 -3953px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-signalcatch-49 {
|
||
|
|
background-position: 0 -2205px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-signalthrow-16 {
|
||
|
|
background-position: 0 -8067px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-signalthrow-24 {
|
||
|
|
background-position: 0 -6961px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-signalthrow-33 {
|
||
|
|
background-position: 0 -5556px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-signalthrow-41 {
|
||
|
|
background-position: 0 -4301px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-signalthrow-49 {
|
||
|
|
background-position: 0 -2965px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-timer-16 {
|
||
|
|
background-position: 0 -7870px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-timer-24 {
|
||
|
|
background-position: 0 -6393px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-timer-33 {
|
||
|
|
background-position: 0 -4405px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-timer-41 {
|
||
|
|
background-position: 0 -2385px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-intermediate-timer-49 {
|
||
|
|
background-position: 0 -1782px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-conditional-16 {
|
||
|
|
background-position: 0 -7838px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-conditional-24 {
|
||
|
|
background-position: 0 -6527px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-conditional-33 {
|
||
|
|
background-position: 0 -4737px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-conditional-41 {
|
||
|
|
background-position: 0 -3739px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-conditional-49 {
|
||
|
|
background-position: 0 -2818px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-empty-16 {
|
||
|
|
background-position: 0 -8226px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-empty-24 {
|
||
|
|
background-position: 0 -7619px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-empty-33 {
|
||
|
|
background-position: 0 -6623px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-empty-41 {
|
||
|
|
background-position: 0 -5236px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-empty-49 {
|
||
|
|
background-position: 0 -4027px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-messagecatch-16 {
|
||
|
|
background-position: 0 -8184px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-messagecatch-24 {
|
||
|
|
background-position: 0 -7210px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-messagecatch-33 {
|
||
|
|
background-position: 0 -6770px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-messagecatch-41 {
|
||
|
|
background-position: 0 -6124px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-messagecatch-49 {
|
||
|
|
background-position: 0 -5023px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-multiplecatch-16 {
|
||
|
|
background-position: 0 -7774px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-multiplecatch-24 {
|
||
|
|
background-position: 0 -6656px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-multiplecatch-33 {
|
||
|
|
background-position: 0 -4833px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-multiplecatch-41 {
|
||
|
|
background-position: 0 -2777px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-multiplecatch-49 {
|
||
|
|
background-position: 0 -2023px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-parallelcatch-16 {
|
||
|
|
background-position: 0 -7694px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-parallelcatch-24 {
|
||
|
|
background-position: 0 -6599px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-parallelcatch-33 {
|
||
|
|
background-position: 0 -4770px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-parallelcatch-41 {
|
||
|
|
background-position: 0 -3591px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-parallelcatch-49 {
|
||
|
|
background-position: 0 -2549px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-signalcatch-16 {
|
||
|
|
background-position: 0 -7806px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-signalcatch-24 {
|
||
|
|
background-position: 0 -6417px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-signalcatch-33 {
|
||
|
|
background-position: 0 -4643px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-signalcatch-41 {
|
||
|
|
background-position: 0 -3187px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-signalcatch-48 {
|
||
|
|
background-position: 0 -2688px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-signalcatch-49 {
|
||
|
|
background-position: 0 -7822px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-timer-16 {
|
||
|
|
background-position: 0 -7790px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-timer-24 {
|
||
|
|
background-position: 0 -6345px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-timer-33 {
|
||
|
|
background-position: 0 -10471px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-timer-41 {
|
||
|
|
background-position: 0 -2467px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-event-start-timer-49 {
|
||
|
|
background-position: 0 -1510px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-complex-20 {
|
||
|
|
background-position: 0 -7126px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-complex-30 {
|
||
|
|
background-position: 0 -5132px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-complex-41 {
|
||
|
|
background-position: 0 -3632px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-complex-51 {
|
||
|
|
background-position: 0 -2113px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-complex-61 {
|
||
|
|
background-position: 0 -4962px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-eventbased-20 {
|
||
|
|
background-position: 0 -7086px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-eventbased-30 {
|
||
|
|
background-position: 0 -4803px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-eventbased-41 {
|
||
|
|
background-position: 0 -2164px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-eventbased-51 {
|
||
|
|
background-position: 0 -553px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-eventbased-61 {
|
||
|
|
background-position: 0 -296px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-exclusive-20 {
|
||
|
|
background-position: 0 -7166px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-exclusive-30 {
|
||
|
|
background-position: 0 -5102px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-exclusive-41 {
|
||
|
|
background-position: 0 -3228px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-exclusive-51 {
|
||
|
|
background-position: 0 -1921px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-exclusive-61 {
|
||
|
|
background-position: 0 -10009px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-exclusiveeventbased-20 {
|
||
|
|
background-position: 0 -7106px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-exclusiveeventbased-30 {
|
||
|
|
background-position: 0 -4932px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-exclusiveeventbased-41 {
|
||
|
|
background-position: 0 -2598px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-exclusiveeventbased-51 {
|
||
|
|
background-position: 0 -898px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-exclusiveeventbased-61 {
|
||
|
|
background-position: 0 -1162px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-inclusive-20 {
|
||
|
|
background-position: 0 -7066px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-inclusive-30 {
|
||
|
|
background-position: 0 -5072px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-inclusive-41 {
|
||
|
|
background-position: 0 -2736px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-inclusive-51 {
|
||
|
|
background-position: 0 -1600px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-inclusive-61 {
|
||
|
|
background-position: 0 -8420px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-parallel-20 {
|
||
|
|
background-position: 0 -7146px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-parallel-30 {
|
||
|
|
background-position: 0 -5630px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-parallel-41 {
|
||
|
|
background-position: 0 -4438px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-parallel-51 {
|
||
|
|
background-position: 0 -3499px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-parallel-61 {
|
||
|
|
background-position: 0 -10504px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-paralleleventbased-20 {
|
||
|
|
background-position: 0 -6803px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-paralleleventbased-30 {
|
||
|
|
background-position: 0 -4342px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-paralleleventbased-41 {
|
||
|
|
background-position: 0 -1831px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-paralleleventbased-51 {
|
||
|
|
background-position: 0 -147px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-gateway-paralleleventbased-61 {
|
||
|
|
background-position: 0 -4676px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-loop-marker-10 {
|
||
|
|
background-position: 0 -8937px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-loop-marker-15 {
|
||
|
|
background-position: 0 -8588px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-loop-marker-21 {
|
||
|
|
background-position: 0 -8497px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-loop-marker-26 {
|
||
|
|
background-position: 0 -8200px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-loop-marker-31 {
|
||
|
|
background-position: 0 -7979px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-manualtask-marker-10 {
|
||
|
|
background-position: 0 -11288px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-manualtask-marker-15 {
|
||
|
|
background-position: 0 -10964px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-manualtask-marker-21 {
|
||
|
|
background-position: 0 -10777px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-manualtask-marker-26 {
|
||
|
|
background-position: 0 -10690px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-manualtask-marker-31 {
|
||
|
|
background-position: 0 -10716px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_100_source_bottom,
|
||
|
|
.mafe-message_100_source_top,
|
||
|
|
.mafe-message_100_source_left,
|
||
|
|
.mafe-message_100_source_right {
|
||
|
|
background-position: 0 -8859px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_100_target_bottom {
|
||
|
|
background-position: 0 -8806px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_100_target_left {
|
||
|
|
background-position: 0 -8795px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_100_target_right {
|
||
|
|
background-position: 0 -8784px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_100_target_top {
|
||
|
|
background-position: 0 -8817px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_125_source_bottom,
|
||
|
|
.mafe-message_125_source_top,
|
||
|
|
.mafe-message_125_source_left,
|
||
|
|
.mafe-message_125_source_right {
|
||
|
|
background-position: 0 -8726px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_125_target_bottom {
|
||
|
|
background-position: 0 -8637px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_125_target_left {
|
||
|
|
background-position: 0 -8685px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_125_target_right {
|
||
|
|
background-position: 0 -8698px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_125_target_top {
|
||
|
|
background-position: 0 -8603px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_150_source_bottom,
|
||
|
|
.mafe-message_150_source_top,
|
||
|
|
.mafe-message_150_source_left,
|
||
|
|
.mafe-message_150_source_right {
|
||
|
|
background-position: 0 -8739px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_150_target_bottom {
|
||
|
|
background-position: 0 -8769px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_150_target_left {
|
||
|
|
background-position: 0 -8754px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_150_target_right {
|
||
|
|
background-position: 0 -8711px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_150_target_top {
|
||
|
|
background-position: 0 -8670px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_50_source_bottom,
|
||
|
|
.mafe-message_50_source_top,
|
||
|
|
.mafe-message_50_source_left,
|
||
|
|
.mafe-message_50_source_right {
|
||
|
|
background-position: 0 -9725px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_50_target_bottom {
|
||
|
|
background-position: 0 -9599px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_50_target_left {
|
||
|
|
background-position: 0 -9402px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_50_target_right {
|
||
|
|
background-position: 0 -9408px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_50_target_top {
|
||
|
|
background-position: 0 -9541px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_75_source_bottom,
|
||
|
|
.mafe-message_75_source_top,
|
||
|
|
.mafe-message_75_source_left,
|
||
|
|
.mafe-message_75_source_right {
|
||
|
|
background-position: 0 -9414px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_75_target_bottom {
|
||
|
|
background-position: 0 -9278px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_75_target_left {
|
||
|
|
background-position: 0 -9128px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_75_target_right {
|
||
|
|
background-position: 0 -9195px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-message_75_target_top {
|
||
|
|
background-position: 0 -9286px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-parallel-marker-10 {
|
||
|
|
background-position: 0 -9989px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-parallel-marker-15 {
|
||
|
|
background-position: 0 -9907px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-parallel-marker-21 {
|
||
|
|
background-position: 0 -9803px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-parallel-marker-26 {
|
||
|
|
background-position: 0 -9691px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-parallel-marker-31 {
|
||
|
|
background-position: 0 -9846px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-receivetask-marker-10 {
|
||
|
|
background-position: 0 -11298px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-receivetask-marker-15 {
|
||
|
|
background-position: 0 -11133px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-receivetask-marker-21 {
|
||
|
|
background-position: 0 -10979px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-receivetask-marker-26 {
|
||
|
|
background-position: 0 -10914px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-receivetask-marker-31 {
|
||
|
|
background-position: 0 -10883px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-scripttask-marker-10 {
|
||
|
|
background-position: 0 -11262px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-scripttask-marker-15 {
|
||
|
|
background-position: 0 -10762px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-scripttask-marker-21 {
|
||
|
|
background-position: 0 -10450px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-scripttask-marker-26 {
|
||
|
|
background-position: 0 -10400px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-scripttask-marker-31 {
|
||
|
|
background-position: 0 -10297px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sendtask-marker-10 {
|
||
|
|
background-position: 0 -11308px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sendtask-marker-15 {
|
||
|
|
background-position: 0 -11210px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sendtask-marker-21 {
|
||
|
|
background-position: 0 -11148px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sendtask-marker-26 {
|
||
|
|
background-position: 0 -11076px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sendtask-marker-31 {
|
||
|
|
background-position: 0 -11102px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_100_target_bottom {
|
||
|
|
background-position: 0 -9547px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_100_target_left {
|
||
|
|
background-position: 1px -9469px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_100_target_right {
|
||
|
|
background-position: -1px -9422px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_100_target_top {
|
||
|
|
background-position: 0 -9514px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_125_target_bottom {
|
||
|
|
background-position: 0 -9363px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_125_target_left {
|
||
|
|
background-position: 1px -9376px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_125_target_right {
|
||
|
|
background-position: 0 -9294px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_125_target_top {
|
||
|
|
background-position: 0 -9389px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_150_target_bottom {
|
||
|
|
background-position: 0 -9307px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_150_target_left {
|
||
|
|
background-position: 2px -11472px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_150_target_right {
|
||
|
|
background-position: -1px -9332px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_150_target_top {
|
||
|
|
background-position: 0 -9235px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_50_target_bottom {
|
||
|
|
background-position: 0 -9951px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_50_target_left {
|
||
|
|
background-position: 0 -9957px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_50_target_right {
|
||
|
|
background-position: 0 -9968px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_50_target_top {
|
||
|
|
background-position: 0 -9945px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_75_target_bottom {
|
||
|
|
background-position: 0 -9752px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_75_target_left {
|
||
|
|
background-position: 0 -9838px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_75_target_right {
|
||
|
|
background-position: 0 -9830px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequence_75_target_top {
|
||
|
|
background-position: 0 -9717px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequential-marker-10 {
|
||
|
|
background-position: 0 -9999px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequential-marker-15 {
|
||
|
|
background-position: 0 -9930px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequential-marker-21 {
|
||
|
|
background-position: 0 -9731px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequential-marker-26 {
|
||
|
|
background-position: 0 -9665px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-sequential-marker-31 {
|
||
|
|
background-position: 0 -9760px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-servicetask-marker-10 {
|
||
|
|
background-position: 0 -11169px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-servicetask-marker-15 {
|
||
|
|
background-position: 0 -10747px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-servicetask-marker-21 {
|
||
|
|
background-position: 0 -10276px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-servicetask-marker-26 {
|
||
|
|
background-position: 0 -10119px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-servicetask-marker-31 {
|
||
|
|
background-position: 0 -8828px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-usertask-marker-10 {
|
||
|
|
background-position: 0 -8927px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-usertask-marker-15 {
|
||
|
|
background-position: 0 -8533px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-usertask-marker-21 {
|
||
|
|
background-position: 0 -6482px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-usertask-marker-26 {
|
||
|
|
background-position: 0 -7937px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-usertask-marker-31 {
|
||
|
|
background-position: 0 -7663px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*******end sprite***********/
|
||
|
|
.mafe-toolbar-sprite {
|
||
|
|
background-image: url(../img/bpmn_sprite_with_zoom.png);
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
width: 16px;
|
||
|
|
height: 16px;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-size {
|
||
|
|
width: 17px;
|
||
|
|
height: 17px;
|
||
|
|
display: block;
|
||
|
|
margin: 2px 0 2px 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-container {
|
||
|
|
padding-left: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-rectangle-size {
|
||
|
|
width: 17px;
|
||
|
|
height: 13px;
|
||
|
|
display: block;
|
||
|
|
margin: 2px 0 2px 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* PMTask Menu
|
||
|
|
*/
|
||
|
|
.mafe-menu-task-steps {
|
||
|
|
background: url(../img/steps.png) no-repeat;
|
||
|
|
background-size: 20px 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-menu-users-action {
|
||
|
|
background: url(../img/users.png) no-repeat;
|
||
|
|
background-size: 20px 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-menu-delete-rules-action {
|
||
|
|
background: url(../img/delete_rules.png) no-repeat;
|
||
|
|
background-size: 20px 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-menu-delete-action {
|
||
|
|
background: url(../img/delete.png) no-repeat;
|
||
|
|
background-size: 20px 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-menu-properties-action {
|
||
|
|
background: url(../img/dynaforms.gif) no-repeat;
|
||
|
|
background-size: 20px 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Tree Menu
|
||
|
|
*/
|
||
|
|
.mafe-menu-tree-disable {
|
||
|
|
background: url(../img/deactivate.png) no-repeat;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-menu-tree-enable {
|
||
|
|
background: url(../img/activate.png) no-repeat;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Sub process Menu
|
||
|
|
*/
|
||
|
|
.mafe-menu-rules-action {
|
||
|
|
background: url(../img/rules.png) no-repeat;
|
||
|
|
background-size: 20px 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Toolbar Menu
|
||
|
|
*/
|
||
|
|
.mafe-menu-toolbar-blank-dynaform {
|
||
|
|
background: url(../img/form.gif) no-repeat;
|
||
|
|
background-size: 20px 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-menu-toolbar-copyimport-dynaform {
|
||
|
|
background: url(../img/edit-table.png) no-repeat;
|
||
|
|
background-size: 20px 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-label-annotation span {
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Input Document
|
||
|
|
*/
|
||
|
|
.mafe-inputDocument-newinput {
|
||
|
|
background-position: 0 -199px;
|
||
|
|
margin: 10px 0 10px 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* BUTTON UID*/
|
||
|
|
/*a.mafe-button-uid:link,a.mafe-button-uid:visited{
|
||
|
|
display: block;
|
||
|
|
color: #e77e23;
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 24px;
|
||
|
|
text-align: center;
|
||
|
|
text-decoration: none;
|
||
|
|
text-transform: uppercase;
|
||
|
|
background: #fdf8e2;
|
||
|
|
width: 90%;
|
||
|
|
height: 24px;
|
||
|
|
margin: 4px auto;
|
||
|
|
padding: 0 5px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
}
|
||
|
|
a.mafe-button-uid:hover {
|
||
|
|
filter: alpha(opacity=70);
|
||
|
|
-moz-opacity: 0.70;
|
||
|
|
-khtml-opacity: 0.70;
|
||
|
|
opacity: 0.70;
|
||
|
|
}
|
||
|
|
.mafe-button-uid .pmui-button-label {
|
||
|
|
color: #e77e23;
|
||
|
|
font-weight:bold;
|
||
|
|
}*/
|
||
|
|
/* BUTTON NEW*/
|
||
|
|
/*a.mafe-button-new:link,a.mafe-button-new:visited{
|
||
|
|
float: right;
|
||
|
|
display: block;
|
||
|
|
color: #fff;
|
||
|
|
line-height: 45px;
|
||
|
|
text-decoration: none;
|
||
|
|
background: #e77e23 url(../img/ico_mor2.png) no-repeat 5px center;
|
||
|
|
background-size : 25px;
|
||
|
|
padding: 6px 38px 6px 33px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
max-width: 80%;
|
||
|
|
height: auto;
|
||
|
|
}
|
||
|
|
a.mafe-button-new:hover{
|
||
|
|
background: #e77e23 url(../img/ico_mor2.png) no-repeat 96% center;
|
||
|
|
background-size : 25px;
|
||
|
|
padding: 6px 38px 6px 33px;
|
||
|
|
}
|
||
|
|
.mafe-button-new .pmui-button-label {
|
||
|
|
text-transform:capitalize;
|
||
|
|
}*/
|
||
|
|
/* BUTTON EDIT*/
|
||
|
|
/*a.mafe-button-edit:link,a.mafe-button-edit:visited {
|
||
|
|
display: block;
|
||
|
|
color: #fff;
|
||
|
|
font-size: 14px;
|
||
|
|
line-height: 32px;
|
||
|
|
text-align: center;
|
||
|
|
text-decoration: none;
|
||
|
|
text-transform: uppercase;
|
||
|
|
background: #19bd9b;
|
||
|
|
height: 32px;
|
||
|
|
margin: 0 3px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
filter: alpha(opacity=80);
|
||
|
|
-moz-opacity: 0.80;
|
||
|
|
-khtml-opacity: 0.80;
|
||
|
|
opacity: 0.80;
|
||
|
|
}
|
||
|
|
a.mafe-button-edit:hover{
|
||
|
|
filter: alpha(opacity=100);
|
||
|
|
-moz-opacity: 1.00;
|
||
|
|
-khtml-opacity: 1.00;
|
||
|
|
opacity: 1.00;
|
||
|
|
}*/
|
||
|
|
/* BUTTON DELETE*/
|
||
|
|
/*a.mafe-button-delete:link,a.mafe-button-delete:visited {
|
||
|
|
display: block;
|
||
|
|
color: #fff;
|
||
|
|
font-size: 14px;
|
||
|
|
line-height: 32px;
|
||
|
|
text-align: center;
|
||
|
|
text-decoration: none;
|
||
|
|
text-transform: uppercase;
|
||
|
|
background: #e84c3d;
|
||
|
|
height: 32px;
|
||
|
|
margin: 0 3px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
filter: alpha(opacity=80);
|
||
|
|
-moz-opacity: 0.80;
|
||
|
|
-khtml-opacity: 0.80;
|
||
|
|
opacity: 0.80;
|
||
|
|
}
|
||
|
|
a.mafe-button-delete:hover {
|
||
|
|
filter: alpha(opacity=100);
|
||
|
|
-moz-opacity: 1.00;
|
||
|
|
-khtml-opacity: 1.00;
|
||
|
|
opacity: 1.00;
|
||
|
|
}*/
|
||
|
|
/* BUTTON PROPERTIES*/
|
||
|
|
/*a.mafe-button-properties:link,a.mafe-button-properties:visited {
|
||
|
|
display: block;
|
||
|
|
color: #fff;
|
||
|
|
font-size: 14px;
|
||
|
|
line-height: 32px;
|
||
|
|
text-align: center;
|
||
|
|
text-decoration: none;
|
||
|
|
text-transform: uppercase;
|
||
|
|
background: #3D78E5;
|
||
|
|
height: 32px;
|
||
|
|
margin: 0 3px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
filter: alpha(opacity=80);
|
||
|
|
-moz-opacity: 0.80;
|
||
|
|
-khtml-opacity: 0.80;
|
||
|
|
opacity: 0.80;
|
||
|
|
}
|
||
|
|
a.mafe-button-properties:hover {
|
||
|
|
filter: alpha(opacity=100);
|
||
|
|
-moz-opacity: 1.00;
|
||
|
|
-khtml-opacity: 1.00;
|
||
|
|
opacity: 1.00;
|
||
|
|
}
|
||
|
|
a.mafe-button-img-delete {
|
||
|
|
background: #ffffff;
|
||
|
|
padding: 0px;
|
||
|
|
margin: 0px;
|
||
|
|
}
|
||
|
|
a.mafe-button-img-delete .pmui-button-icon {
|
||
|
|
background-image: url(../img/delete.png);
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
display: inline-block;
|
||
|
|
width: 19px;
|
||
|
|
height: 18px;
|
||
|
|
}
|
||
|
|
a.mafe-button-img-delete .pmui-button-label {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
a.mafe-button-img-edit {
|
||
|
|
background: #ffffff;
|
||
|
|
padding: 0px;
|
||
|
|
margin: 0px;
|
||
|
|
}
|
||
|
|
a.mafe-button-img-edit .pmui-button-icon {
|
||
|
|
background-image: url(../img/edit.gif);
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
display: inline-block;
|
||
|
|
width: 23px;
|
||
|
|
height: 20px;
|
||
|
|
}
|
||
|
|
a.mafe-button-img-edit .pmui-button-label {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-img-properties {
|
||
|
|
background: #ffffff;
|
||
|
|
padding: 0px;
|
||
|
|
margin: 0px;
|
||
|
|
}
|
||
|
|
a.mafe-button-img-properties .pmui-button-icon {
|
||
|
|
background-image: url(../img/edit-table.png);
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
display: inline-block;
|
||
|
|
width: 17px;
|
||
|
|
height: 16px;
|
||
|
|
}
|
||
|
|
a.mafe-button-img-properties .pmui-button-label {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-text{
|
||
|
|
background-color :#FDFDFD;
|
||
|
|
}
|
||
|
|
.mafe-button-text .pmui-button-label{
|
||
|
|
background-color :#FDFDFD;
|
||
|
|
color: black;
|
||
|
|
text-transform:capitalize;
|
||
|
|
}
|
||
|
|
*/
|
||
|
|
/* ToolbarPanel */
|
||
|
|
.mafe-toolbarpanel-btn {
|
||
|
|
text-decoration: none;
|
||
|
|
list-style: none;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbarpanel-btn-span {
|
||
|
|
font-size: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbarpanel-btn-img {
|
||
|
|
width: 30px;
|
||
|
|
height: 30px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbarpanel-tooltip {
|
||
|
|
font-size: 10px;
|
||
|
|
z-index: 9999;
|
||
|
|
max-width: 300px;
|
||
|
|
-webkit-box-shadow: 0 0 5px #aaa;
|
||
|
|
-moz-box-shadow: 0 0 5px #aaa;
|
||
|
|
box-shadow: 0 0 5px #aaa;
|
||
|
|
background-color: #6D87B7;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Styles for arrows
|
||
|
|
*/
|
||
|
|
.mafe-decorator_50_target_right {
|
||
|
|
border-bottom: 3px solid transparent;
|
||
|
|
border-top: 3px solid transparent;
|
||
|
|
border-right: 6px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_75_target_right {
|
||
|
|
border-bottom: 4px solid transparent;
|
||
|
|
border-top: 4px solid transparent;
|
||
|
|
border-right: 8px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_100_target_right {
|
||
|
|
border-bottom: 5px solid transparent;
|
||
|
|
border-top: 5px solid transparent;
|
||
|
|
border-right: 10px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_125_target_right {
|
||
|
|
border-bottom: 6px solid transparent;
|
||
|
|
border-top: 6px solid transparent;
|
||
|
|
border-right: 12px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_150_target_right {
|
||
|
|
border-bottom: 7px solid transparent;
|
||
|
|
border-top: 7px solid transparent;
|
||
|
|
border-right: 14px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_50_target_bottom {
|
||
|
|
border-left: 3px solid transparent;
|
||
|
|
border-right: 3px solid transparent;
|
||
|
|
border-bottom: 6px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_75_target_bottom {
|
||
|
|
border-left: 4px solid transparent;
|
||
|
|
border-right: 4px solid transparent;
|
||
|
|
border-bottom: 8px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_100_target_bottom {
|
||
|
|
border-left: 5px solid transparent;
|
||
|
|
border-right: 5px solid transparent;
|
||
|
|
border-bottom: 10px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_125_target_bottom {
|
||
|
|
border-left: 6px solid transparent;
|
||
|
|
border-right: 6px solid transparent;
|
||
|
|
border-bottom: 12px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_150_target_bottom {
|
||
|
|
border-left: 7px solid transparent;
|
||
|
|
border-right: 7px solid transparent;
|
||
|
|
border-bottom: 14px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_50_target_left {
|
||
|
|
border-bottom: 3px solid transparent;
|
||
|
|
border-top: 3px solid transparent;
|
||
|
|
border-left: 6px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_75_target_left {
|
||
|
|
border-bottom: 4px solid transparent;
|
||
|
|
border-top: 4px solid transparent;
|
||
|
|
border-left: 8px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_100_target_left {
|
||
|
|
border-bottom: 5px solid transparent;
|
||
|
|
border-top: 5px solid transparent;
|
||
|
|
border-left: 10px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_125_target_left {
|
||
|
|
border-bottom: 6px solid transparent;
|
||
|
|
border-top: 6px solid transparent;
|
||
|
|
border-left: 12px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_150_target_left {
|
||
|
|
border-bottom: 7px solid transparent;
|
||
|
|
border-top: 7px solid transparent;
|
||
|
|
border-left: 14px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_50_target_top {
|
||
|
|
border-left: 3px solid transparent;
|
||
|
|
border-right: 3px solid transparent;
|
||
|
|
border-top: 6px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_75_target_top {
|
||
|
|
border-left: 4px solid transparent;
|
||
|
|
border-right: 4px solid transparent;
|
||
|
|
border-top: 8px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_100_target_top {
|
||
|
|
border-left: 5px solid transparent;
|
||
|
|
border-right: 5px solid transparent;
|
||
|
|
border-top: 10px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_125_target_top {
|
||
|
|
border-left: 6px solid transparent;
|
||
|
|
border-right: 6px solid transparent;
|
||
|
|
border-top: 12px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-decorator_150_target_top {
|
||
|
|
border-left: 7px solid transparent;
|
||
|
|
border-right: 7px solid transparent;
|
||
|
|
border-top: 14px solid black;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ---------------------------- NAV ---------------------------- */
|
||
|
|
.navBar {
|
||
|
|
background: #3397e2;
|
||
|
|
color: #fff;
|
||
|
|
height: auto;
|
||
|
|
left: 0px;
|
||
|
|
position: fixed;
|
||
|
|
/*top: 1px;*/
|
||
|
|
width: 97%;
|
||
|
|
z-index: 2;
|
||
|
|
padding: 0 1% 0 2%;
|
||
|
|
display: none;
|
||
|
|
border: 1px solid #2979b8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navBar .head {
|
||
|
|
background-color: #3b4753;
|
||
|
|
cursor: move;
|
||
|
|
font-size: 12px;
|
||
|
|
height: 16px;
|
||
|
|
overflow: hidden;
|
||
|
|
text-align: center;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navBar nav {
|
||
|
|
position: relative;
|
||
|
|
font-size: 11px;
|
||
|
|
height: 35px;
|
||
|
|
float: right;
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navBar nav ul {
|
||
|
|
position: relative;
|
||
|
|
list-style: none;
|
||
|
|
height: 35px;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navBar nav ul li {
|
||
|
|
float: right;
|
||
|
|
border-right: 1px solid #70b5ec;
|
||
|
|
border-left: 1px solid #70b5ec;
|
||
|
|
padding: 2px 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navBar nav ul li:hover {
|
||
|
|
background-color: #2979b4;
|
||
|
|
border-right: 1px solid #2979b8;
|
||
|
|
border-left: 1px solid #2979b8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navBar nav ul li:last-child {
|
||
|
|
border: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navBar nav ul li a {
|
||
|
|
display: inline-block;
|
||
|
|
color: #fff;
|
||
|
|
line-height: 31px;
|
||
|
|
text-align: center;
|
||
|
|
text-decoration: none;
|
||
|
|
background-color: transparent;
|
||
|
|
height: 29px;
|
||
|
|
padding: 0 10px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navBar nav ul li b {
|
||
|
|
display: inline-block;
|
||
|
|
color: #fff;
|
||
|
|
line-height: 31px;
|
||
|
|
text-align: center;
|
||
|
|
text-decoration: none;
|
||
|
|
background-color: transparent;
|
||
|
|
height: 29px;
|
||
|
|
padding: 0 10px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navBar nav ul li input {
|
||
|
|
height: 31px;
|
||
|
|
width: 58px;
|
||
|
|
padding: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navBar .processName {
|
||
|
|
width: 55%;
|
||
|
|
float: left;
|
||
|
|
/*border: 1px solid red; */
|
||
|
|
}
|
||
|
|
|
||
|
|
.navBar .buttonSection {
|
||
|
|
/*border: 1px solid green; */
|
||
|
|
width: 40%;
|
||
|
|
/* don't want this */
|
||
|
|
float: right;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navBar h2 {
|
||
|
|
/*float: left;*/
|
||
|
|
text-align: left;
|
||
|
|
font-size: 12px;
|
||
|
|
font-weight: 700px;
|
||
|
|
line-height: 35px;
|
||
|
|
margin: 0;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-save:link, a.mafe-button-save:visited {
|
||
|
|
width: 70px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-save-process {
|
||
|
|
color: white;
|
||
|
|
background: #19bd9b;
|
||
|
|
-webkit-transition: all .6s;
|
||
|
|
-moz-transition: all .6s;
|
||
|
|
-ms-transition: all .6s;
|
||
|
|
-o-transition: all .6s;
|
||
|
|
transition: all .6s;
|
||
|
|
border-left: 1px solid lightgray !important;
|
||
|
|
border-right: 1px solid lightgray !important;
|
||
|
|
border-bottom: 1px solid lightgray !important;
|
||
|
|
padding-right: 25px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
li.mafe-redo {
|
||
|
|
margin-top: -2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
li.mafe-undo {
|
||
|
|
margin-top: -2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-save:hover {
|
||
|
|
/*background: #16a085 !important;*/
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-dropdown-zoom {
|
||
|
|
-webkit-border-radius: 4px;
|
||
|
|
-moz-border-radius: 4px;
|
||
|
|
border-radius: 4px;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-dropdown-zoom option {
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-fullscreen:link, a.mafe-button-fullscreen:visited {
|
||
|
|
float: left;
|
||
|
|
display: block;
|
||
|
|
outline: none;
|
||
|
|
text-indent: -9000px;
|
||
|
|
text-decoration: none;
|
||
|
|
background: url(../img/mafe-tools.png) no-repeat;
|
||
|
|
background-position: 0 -1036px;
|
||
|
|
width: 11px;
|
||
|
|
margin: 0 5px 0 5px;
|
||
|
|
-webkit-transition: all .6s;
|
||
|
|
-moz-transition: all .6s;
|
||
|
|
-ms-transition: all .6s;
|
||
|
|
-o-transition: all .6s;
|
||
|
|
transition: all .6s;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-fullscreen:hover {
|
||
|
|
-ms-transform: scale(1);
|
||
|
|
-webkit-transform: scale(1);
|
||
|
|
-moz-transform: scale(1);
|
||
|
|
-o-transform: scale(1);
|
||
|
|
transform: scale(1);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ---------------------------- NAV ---------------------------- */
|
||
|
|
/* ---------------------------- PANELES ---------------------------- */
|
||
|
|
.content {
|
||
|
|
/*position: relative;
|
||
|
|
background: url(../img/bg_designer.gif) repeat;
|
||
|
|
width: 100%;
|
||
|
|
height: 700px;
|
||
|
|
overflow: auto;*/
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes {
|
||
|
|
/*right: 20px;*/
|
||
|
|
border: 1px solid #d6d7d9;
|
||
|
|
background-color: #e9e9e9;
|
||
|
|
/*width: 88px;*/
|
||
|
|
padding-top: 5px;
|
||
|
|
padding-bottom: 5px;
|
||
|
|
/*overflow: visible;*/
|
||
|
|
z-index: 1;
|
||
|
|
position: fixed;
|
||
|
|
top: 35px;
|
||
|
|
left: 0px;
|
||
|
|
height: 31px;
|
||
|
|
width: 100%;
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes .head {
|
||
|
|
background-color: #d5d8dd;
|
||
|
|
height: 16px;
|
||
|
|
cursor: move;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes .head a {
|
||
|
|
float: right;
|
||
|
|
display: block;
|
||
|
|
width: 30px;
|
||
|
|
height: 16px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes .head a:hover {
|
||
|
|
filter: alpha(opacity=70);
|
||
|
|
-moz-opacity: 0.70;
|
||
|
|
-khtml-opacity: 0.70;
|
||
|
|
opacity: 0.70;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes ul:nth-child(2) {
|
||
|
|
border-top: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes ul:last-child {
|
||
|
|
border-bottom: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes ul {
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
list-style: none;
|
||
|
|
width: 96%;
|
||
|
|
margin: 0 0%;
|
||
|
|
padding: 4px 0;
|
||
|
|
display: inline;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes ul li {
|
||
|
|
display: inline-block;
|
||
|
|
margin-top: 2px;
|
||
|
|
margin: 0 4px;
|
||
|
|
margin-top: 2px;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes ul li a {
|
||
|
|
float: left;
|
||
|
|
display: inline-block;
|
||
|
|
color: #fff;
|
||
|
|
line-height: 10px;
|
||
|
|
text-align: center;
|
||
|
|
text-decoration: none;
|
||
|
|
padding: 3px 4px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_controls {
|
||
|
|
top: 90px;
|
||
|
|
right: 20px;
|
||
|
|
font-size: 11px;
|
||
|
|
border: 1px solid #d8dbdf;
|
||
|
|
background-color: #3397e2;
|
||
|
|
width: 200px;
|
||
|
|
z-index: 1;
|
||
|
|
position: fixed;
|
||
|
|
font-weight: 700;
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_controls .head {
|
||
|
|
background-color: #3b4753;
|
||
|
|
height: 18px;
|
||
|
|
cursor: move;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_controls .head a {
|
||
|
|
float: right;
|
||
|
|
display: block;
|
||
|
|
width: 30px;
|
||
|
|
height: 16px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_controls .head a:hover {
|
||
|
|
filter: alpha(opacity=70);
|
||
|
|
-moz-opacity: 0.70;
|
||
|
|
-khtml-opacity: 0.70;
|
||
|
|
opacity: 0.70;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_controls ul {
|
||
|
|
float: left;
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
list-style: none;
|
||
|
|
width: 96%;
|
||
|
|
margin: 0 2%;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_controls ul li:first-child {
|
||
|
|
border-top: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_controls ul li:last-child {
|
||
|
|
border-bottom: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_controls ul li {
|
||
|
|
float: left;
|
||
|
|
display: inline-block;
|
||
|
|
border-bottom: 1px solid #20669D;
|
||
|
|
width: 100%;
|
||
|
|
margin: 0;
|
||
|
|
padding: 3px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_controls ul li:hover {
|
||
|
|
background-color: #2979b4;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_controls ul li a {
|
||
|
|
float: left;
|
||
|
|
display: inline-block;
|
||
|
|
color: #fff;
|
||
|
|
line-height: 23px;
|
||
|
|
text-align: center;
|
||
|
|
text-decoration: none;
|
||
|
|
padding: 3px 3px;
|
||
|
|
-webkit-border-radius: 1px;
|
||
|
|
-moz-border-radius: 1px;
|
||
|
|
border-radius: 1px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content_controls li {
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.btn_create {
|
||
|
|
float: right;
|
||
|
|
position: absolute;
|
||
|
|
right: 0px;
|
||
|
|
top: 1px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.btn_create:link, a.btn_create:visited {
|
||
|
|
float: right;
|
||
|
|
display: block;
|
||
|
|
color: #fff;
|
||
|
|
line-height: 23px;
|
||
|
|
text-decoration: none;
|
||
|
|
background: transparent url(../img/btn_create.png) no-repeat center !important;
|
||
|
|
width: 20px;
|
||
|
|
height: 23px;
|
||
|
|
padding: 3px 0;
|
||
|
|
filter: alpha(opacity=50);
|
||
|
|
-moz-opacity: 0.50;
|
||
|
|
-khtml-opacity: 0.50;
|
||
|
|
-webkit-transition: all .6s;
|
||
|
|
-moz-transition: all .6s;
|
||
|
|
-ms-transition: all .6s;
|
||
|
|
-o-transition: all .6s;
|
||
|
|
transition: all .6s;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.btn_create span {
|
||
|
|
filter: alpha(opacity=0);
|
||
|
|
-moz-opacity: 0.00;
|
||
|
|
-khtml-opacity: 0.00;
|
||
|
|
opacity: 0.00;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.btn_create:hover {
|
||
|
|
background: #20bb99 url(../img/btn_create.png) no-repeat 5px center !important;
|
||
|
|
width: 45px;
|
||
|
|
height: 23px;
|
||
|
|
padding: 3px 0 3px 18px;
|
||
|
|
filter: alpha(opacity=100);
|
||
|
|
-moz-opacity: 1.00;
|
||
|
|
-khtml-opacity: 1.00;
|
||
|
|
opacity: 1.00;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.btn_create:hover span {
|
||
|
|
filter: alpha(opacity=100);
|
||
|
|
-moz-opacity: 1.00;
|
||
|
|
-khtml-opacity: 1.00;
|
||
|
|
opacity: 1.00;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes_legend {
|
||
|
|
/*top: 1px;*/
|
||
|
|
/*right: 20px;*/
|
||
|
|
border: 1px solid #d6d7d9;
|
||
|
|
background-color: #e9e9e9;
|
||
|
|
width: 250px;
|
||
|
|
padding-bottom: 2px;
|
||
|
|
overflow: visible;
|
||
|
|
z-index: 1;
|
||
|
|
position: fixed;
|
||
|
|
right: 20px;
|
||
|
|
top: 70px;
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes_legend .head {
|
||
|
|
background-color: #d5d8dd;
|
||
|
|
height: 16px;
|
||
|
|
cursor: move;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes_legend .head a {
|
||
|
|
float: right;
|
||
|
|
display: block;
|
||
|
|
width: 30px;
|
||
|
|
height: 16px;
|
||
|
|
-webkit-transition: all .4s;
|
||
|
|
-moz-transition: all .4s;
|
||
|
|
-ms-transition: all .4s;
|
||
|
|
-o-transition: all .4s;
|
||
|
|
transition: all .4s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes_legend .head a:hover {
|
||
|
|
filter: alpha(opacity=70);
|
||
|
|
-moz-opacity: 0.70;
|
||
|
|
-khtml-opacity: 0.70;
|
||
|
|
opacity: 0.70;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes_legend .icon-legend {
|
||
|
|
height: 20px;
|
||
|
|
width: 50px;
|
||
|
|
margin: 5px;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_shapes_legend .text-legend {
|
||
|
|
font-size: small;
|
||
|
|
display: inline-block;
|
||
|
|
margin-top: 9px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ---------------------------- PANELES ---------------------------- */
|
||
|
|
/* ---------------------------- ELEMENTOS BASE ---------------------------- */
|
||
|
|
.bold {
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
|
||
|
|
.small {
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.color2 {
|
||
|
|
color: #f46500;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ---------------------------- ELEMENTOS BASE ---------------------------- */
|
||
|
|
.mafe-shapes-toggle {
|
||
|
|
background-image: url("../img/shapes-toogle.png");
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
float: right;
|
||
|
|
cursor: pointer;
|
||
|
|
width: 16px;
|
||
|
|
height: 16px;
|
||
|
|
margin-top: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-shapes-plus {
|
||
|
|
background-image: url("../img/plus.png");
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
float: right;
|
||
|
|
cursor: pointer;
|
||
|
|
width: 16px;
|
||
|
|
height: 16px;
|
||
|
|
margin-top: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-shapes-refresh {
|
||
|
|
background-image: url("../img/shapes-refresh.png");
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
float: right;
|
||
|
|
cursor: pointer;
|
||
|
|
width: 16px;
|
||
|
|
height: 14px;
|
||
|
|
background-size: 10px;
|
||
|
|
margin-top: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-process-object {
|
||
|
|
color: white;
|
||
|
|
margin-top: 3px;
|
||
|
|
margin-left: 7px;
|
||
|
|
float: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
toolbar sprite
|
||
|
|
*/
|
||
|
|
.mafe-sprite, .mafe-fullscream, .mafe-toolbar-annotation, .mafe-toolbar-blackbox, .mafe-toolbar-boundary, .mafe-toolbar-data-object, .mafe-toolbar-data-store, .mafe-toolbar-end-message, .mafe-toolbar-end, .mafe-toolbar-gateway-exclusive, .mafe-toolbar-gateway-inclusive, .mafe-toolbar-gateway-parallel, .mafe-toolbar-group, .mafe-toolbar-horizontal-line, .mafe-toolbar-horizontal-text, .mafe-toolbar-intermediate-receive-mesage, .mafe-toolbar-intermediate-send-mesage, .mafe-toolbar-lane, .mafe-toolbar-participant, .mafe-toolbar-pool, .mafe-toolbar-start-message, .mafe-toolbar-start-timer, .mafe-toolbar-start, .mafe-toolbar-subprocess, .mafe-toolbar-task, .mafe-toolbar-vertical-line, .mafe-toolbar-vertical-text, .mafe-button-redo, .mafe-button-undo, .mafe-button-close, .mafe-toolbar-lasso, .mafe-toolbar-help, .mafe-toolbar-end-email, .mafe-toolbar-intermediate-email, .mafe-toolbar-event-intermediate-timer, .mafe-toolbar-event-start-timer, .mafe-toolbar-validation, .mafe-validator-close, .mafe-icon-error, .mafe-icon-warning {
|
||
|
|
background: url("../img/mafe-tools.png") no-repeat;
|
||
|
|
width: 23px;
|
||
|
|
height: 23px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-close {
|
||
|
|
background-position: 0 -966px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-close:hover, .mafe-button-close.button-close_hover, .mafe-button-close.button-close-hover {
|
||
|
|
background-position: 0 -1156px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-redo {
|
||
|
|
background-position: 0 -888px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-redo:hover, .mafe-button-redo.button-redo_hover, .mafe-button-redo.button-redo-hover {
|
||
|
|
background-position: 0 -863px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-undo {
|
||
|
|
background-position: 0 -837px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-undo:hover, .mafe-button-undo.button-undo_hover, .mafe-button-undo.button-undo-hover {
|
||
|
|
background-position: 0 -913px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-fullscream {
|
||
|
|
background-position: 0 -1036px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-icon-error {
|
||
|
|
background-position: 0 -1256px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-icon-warning {
|
||
|
|
background-position: 0 -1271px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-plus {
|
||
|
|
background-position: 0 -790px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-shapes-refresh {
|
||
|
|
background-position: 0 -952px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-shapes-toogle {
|
||
|
|
background-position: 0 -938px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-annotation {
|
||
|
|
background-position: 0 -730px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-blackbox {
|
||
|
|
background-position: 0 -530px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-boundary {
|
||
|
|
background-position: 0 -120px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-data-object {
|
||
|
|
background-position: 0 -1066px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-data-store {
|
||
|
|
background-position: 0 -300px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-easy {
|
||
|
|
background-position: 0 -450px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-end-email {
|
||
|
|
background-position: 0 -390px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-end-message {
|
||
|
|
background-position: 0 -150px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-end {
|
||
|
|
background-position: 0 -240px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-event-intermediate-timer {
|
||
|
|
background-position: 0 -270px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-event-start-timer {
|
||
|
|
background-position: 0 -620px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-gateway-exclusive {
|
||
|
|
background-position: 0 -420px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-gateway-inclusive {
|
||
|
|
background-position: 0 -360px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-gateway-parallel {
|
||
|
|
background-position: 0 -470px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-group {
|
||
|
|
background-position: 0 -560px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-help {
|
||
|
|
background-position: 0 -680px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-help:hover, .mafe-toolbar-help.toolbar-help_hover, .mafe-toolbar-help.toolbar-help-hover {
|
||
|
|
background-position: 0 -705px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-horizontal-line {
|
||
|
|
background-position: 0 -1196px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-horizontal-text {
|
||
|
|
background-position: 0 -807px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-intermediate-email {
|
||
|
|
background-position: 0 -210px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-intermediate-receive-mesage {
|
||
|
|
background-position: 0 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-intermediate-send-mesage {
|
||
|
|
background-position: 0 -30px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-lane {
|
||
|
|
background-position: 0 -500px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-lasso {
|
||
|
|
background-position: 0 -330px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-participant {
|
||
|
|
background-position: 0 -1096px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-pool {
|
||
|
|
background-position: 0 -590px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-start-message {
|
||
|
|
background-position: 0 -60px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-start-timer {
|
||
|
|
background-position: 0 -650px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-start {
|
||
|
|
background-position: 0 -180px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-subprocess {
|
||
|
|
background-position: 0 -1006px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-task {
|
||
|
|
background-position: 0 -1126px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-validation {
|
||
|
|
background-position: 0 -90px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-vertical-line {
|
||
|
|
background-position: 0 -1226px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-toolbar-vertical-text {
|
||
|
|
background-position: 0 -760px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-validator-close {
|
||
|
|
background-position: 0 -1176px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-validator-close:hover, .mafe-validator-close.validator-close_hover, .mafe-validator-close.validator-close-hover {
|
||
|
|
background-position: 0 -986px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*end toolbar sprite**/
|
||
|
|
span.mafe-button-redo {
|
||
|
|
width: 22px;
|
||
|
|
height: 24px;
|
||
|
|
display: block;
|
||
|
|
margin-top: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
span.mafe-button-undo {
|
||
|
|
width: 22px;
|
||
|
|
height: 24px;
|
||
|
|
display: block;
|
||
|
|
margin-top: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
span.mafe-button-close {
|
||
|
|
width: 20px;
|
||
|
|
height: 20px;
|
||
|
|
display: block;
|
||
|
|
margin-top: 7px;
|
||
|
|
}
|
||
|
|
|
||
|
|
span.mafe-validator-close {
|
||
|
|
width: 20px;
|
||
|
|
height: 20px;
|
||
|
|
display: block;
|
||
|
|
margin: 4px 8px 4px 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-close {
|
||
|
|
margin: -1px;
|
||
|
|
}
|
||
|
|
|
||
|
|
span.mafe-toolbar-help {
|
||
|
|
width: 23px;
|
||
|
|
height: 23px;
|
||
|
|
display: block;
|
||
|
|
margin-top: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
span.mafe-toolbar-validation {
|
||
|
|
width: 9px;
|
||
|
|
height: 20px;
|
||
|
|
display: block;
|
||
|
|
margin-top: 6px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Tooltip for actions
|
||
|
|
*/
|
||
|
|
.mafe-action-tooltip {
|
||
|
|
font-size: 10px;
|
||
|
|
background-color: #ECF0F1;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Tooltip Black
|
||
|
|
*/
|
||
|
|
.ui-tooltip.mafe-action-tooltip-black {
|
||
|
|
background: black;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** Rotate Label **/
|
||
|
|
.rotateText {
|
||
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
||
|
|
-ms-transform: rotate(-90deg);
|
||
|
|
/* IE9+ */
|
||
|
|
-moz-transform: rotate(-90deg);
|
||
|
|
/* Firefox */
|
||
|
|
-o-transform: rotate(-90deg);
|
||
|
|
/* Opera */
|
||
|
|
-webkit-transform: rotate(-90deg);
|
||
|
|
/* Safari & Chrome */
|
||
|
|
transform: rotate(-90deg);
|
||
|
|
display: block;
|
||
|
|
float: center;
|
||
|
|
margin: 0 10px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.rotateControl {
|
||
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
||
|
|
-ms-transform: rotate(90deg);
|
||
|
|
/* IE9+ */
|
||
|
|
-moz-transform: rotate(90deg);
|
||
|
|
/* Firefox */
|
||
|
|
-o-transform: rotate(90deg);
|
||
|
|
/* Opera */
|
||
|
|
-webkit-transform: rotate(90deg);
|
||
|
|
/* Safari & Chrome */
|
||
|
|
transform: rotate(90deg);
|
||
|
|
display: block;
|
||
|
|
float: right;
|
||
|
|
margin: 0 10px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-textarea-resize .pmui-textareacontrol {
|
||
|
|
resize: vertical;
|
||
|
|
}
|
||
|
|
|
||
|
|
.dropableClass {
|
||
|
|
background-color: #e2eae3;
|
||
|
|
}
|
||
|
|
|
||
|
|
.loader {
|
||
|
|
position: fixed;
|
||
|
|
left: 0px;
|
||
|
|
top: 0px;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
z-index: 9999;
|
||
|
|
background: url("../img/loading.gif") 50% 50% no-repeat #f9f9f9;
|
||
|
|
}
|
||
|
|
|
||
|
|
.screencast {
|
||
|
|
position: relative;
|
||
|
|
width: 480px;
|
||
|
|
height: 161px;
|
||
|
|
z-index: 9999;
|
||
|
|
background: url("../img/bpmnProcessmaker.gif") 50% 50% no-repeat #f9f9f9;
|
||
|
|
}
|
||
|
|
|
||
|
|
.startcoronahelp {
|
||
|
|
position: relative;
|
||
|
|
height: 100px;
|
||
|
|
z-index: 9999;
|
||
|
|
background: url("../img/startcoronahelp.png") 50% 50% no-repeat;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-menu {
|
||
|
|
display: inline-block;
|
||
|
|
vertical-align: top;
|
||
|
|
position: absolute;
|
||
|
|
top: 0px;
|
||
|
|
bottom: 2px;
|
||
|
|
padding-top: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-menu img {
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-menu-option {
|
||
|
|
padding: 7px;
|
||
|
|
color: black;
|
||
|
|
cursor: pointer;
|
||
|
|
position: absolute;
|
||
|
|
height: 14px;
|
||
|
|
width: 107px;
|
||
|
|
border: 1px solid lightgray;
|
||
|
|
background-color: #e8e8e8;
|
||
|
|
top: 2px;
|
||
|
|
left: -6px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-menu-option:hover {
|
||
|
|
background-color: lightgray;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-button-menu-container {
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-can-connect-layer {
|
||
|
|
background-color: #9dee9d;
|
||
|
|
opacity: 0.4;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-can-not-connect-layer {
|
||
|
|
background-color: #f590a5;
|
||
|
|
opacity: 0.4;
|
||
|
|
}
|
||
|
|
|
||
|
|
.arrow_box {
|
||
|
|
position: absolute;
|
||
|
|
background: #ffffff;
|
||
|
|
border: 1px solid #BCBCBC;
|
||
|
|
padding-right: 5px;
|
||
|
|
font-size: smaller;
|
||
|
|
width: auto;
|
||
|
|
min-width: 27%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.arrow_box:after, .arrow_box:before {
|
||
|
|
right: 100%;
|
||
|
|
top: 10px;
|
||
|
|
border: solid transparent;
|
||
|
|
content: " ";
|
||
|
|
height: 0;
|
||
|
|
width: 0;
|
||
|
|
position: absolute;
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.arrow_box:after {
|
||
|
|
border-color: rgba(255, 255, 255, 0);
|
||
|
|
border-right-color: #ffffff;
|
||
|
|
border-width: 7px;
|
||
|
|
margin-top: -7px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.arrow_box:before {
|
||
|
|
border-color: rgba(188, 188, 188, 0);
|
||
|
|
border-right-color: #BCBCBC;
|
||
|
|
border-width: 8px;
|
||
|
|
margin-top: -8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.bpmn_validator {
|
||
|
|
/* background: #3397e2; */
|
||
|
|
height: auto;
|
||
|
|
/* left: 0px; */
|
||
|
|
/* position: fixed; */
|
||
|
|
/* top: 68%; */
|
||
|
|
width: 99.4%;
|
||
|
|
z-index: 2;
|
||
|
|
/* display: none; */
|
||
|
|
border: 4px solid #E5E5E5;
|
||
|
|
visibility: hidden;
|
||
|
|
width: 100%;
|
||
|
|
position: fixed;
|
||
|
|
bottom: 0;
|
||
|
|
left: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.validator_header {
|
||
|
|
height: 28px;
|
||
|
|
background-color: #262A35;
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.validator_body {
|
||
|
|
background-color: white;
|
||
|
|
font-size: smaller;
|
||
|
|
}
|
||
|
|
|
||
|
|
.validator-close {
|
||
|
|
float: right;
|
||
|
|
}
|
||
|
|
|
||
|
|
i.mafe-icon-error {
|
||
|
|
float: left;
|
||
|
|
height: 15px;
|
||
|
|
height: 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
i.mafe-icon-warning {
|
||
|
|
float: left;
|
||
|
|
height: 15px;
|
||
|
|
height: 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.validator_header h2 {
|
||
|
|
text-align: left;
|
||
|
|
font-size: 12px;
|
||
|
|
line-height: 28px;
|
||
|
|
margin: 0;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
margin-left: 10px;
|
||
|
|
float: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
table.dataTable thead th, table.dataTable thead td {
|
||
|
|
padding: 10px 18px;
|
||
|
|
border-bottom: none;
|
||
|
|
background-color: #B6B6B6;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.dataTables_wrapper.no-footer .dataTables_scrollBody {
|
||
|
|
border-bottom: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
* 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;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-tooltip {
|
||
|
|
overflow-wrap: break-word;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
.mafe-designer-assigment-button {
|
||
|
|
background-color: #d7d9dd;
|
||
|
|
font-size: 10;
|
||
|
|
text-transform: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-designer-assigment-grid .pmui-gridpanelcell {
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-grid-button {
|
||
|
|
background-color: transparent;
|
||
|
|
height: 0;
|
||
|
|
padding: 0px 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-grid-button.button-icon-user .button-icon {
|
||
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
||
|
|
background-position: 1px -195px;
|
||
|
|
width: 14px;
|
||
|
|
height: 17px;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-grid-button.button-icon-group .button-icon {
|
||
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
||
|
|
background-position: -2px -135px;
|
||
|
|
width: 22px;
|
||
|
|
height: 17px;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-grid-button .button-label {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-designer-assigment-grid .pmui-gridpanelcolumn {
|
||
|
|
background-color: #FFFFFF;
|
||
|
|
padding: 0px 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-designer-assigment-grid .mafe-assigment-panel {
|
||
|
|
padding: 0px 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* PANEL */
|
||
|
|
/*
|
||
|
|
.mafe-assigment-panel .pmui-panel {
|
||
|
|
background-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
.mafe-assigment-panel-right{
|
||
|
|
background-color:#eaebed;
|
||
|
|
padding-left: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-assigment-panel-global {
|
||
|
|
background-color: transparent;
|
||
|
|
padding-left: 20px;
|
||
|
|
padding-right: 0px;
|
||
|
|
} */
|
||
|
|
/* TEXT SEARCH */
|
||
|
|
.pmui.pmui-textfield.mafe-assigment-search {
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* BUTTONS SEARCH */
|
||
|
|
/* GRID ASSIGNES*/
|
||
|
|
/*.mafe-designer-assigment-grid {
|
||
|
|
background-color: #FFFFFF;
|
||
|
|
text-align: left;
|
||
|
|
padding: 0px 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-designer-assigment-grid .pmui-gridpanel-table{
|
||
|
|
min-height: 0em;
|
||
|
|
}*/
|
||
|
|
.pmui-pmtooltipmessage .pmui-button-label {
|
||
|
|
color: #999999;
|
||
|
|
font-size: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmtooltipmessage .mafe-tooltip-close {
|
||
|
|
background: transparent;
|
||
|
|
margin: 0px 0px;
|
||
|
|
padding: 0px 0px;
|
||
|
|
width: auto;
|
||
|
|
height: auto;
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmtooltipmessage .mafe-tooltip-header {
|
||
|
|
background: #EEF1F6;
|
||
|
|
margin: 0px 7px;
|
||
|
|
padding: 4px 0px;
|
||
|
|
width: auto;
|
||
|
|
height: 6px;
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmtooltipmessage .mafe-tooltip-body {
|
||
|
|
background: #EEF1F6;
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmtooltipmessage {
|
||
|
|
background: #FFFFFF;
|
||
|
|
font-size: 10;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
-webkit-box-shadow: 2px 2px 5px 0px #999;
|
||
|
|
-moz-box-shadow: 2px 2px 5px 0px #999;
|
||
|
|
filter: shadow(color=#999999, direction=135, strength=2);
|
||
|
|
}
|
||
|
|
|
||
|
|
#list-usersIngroup {
|
||
|
|
width: 175px;
|
||
|
|
max-height: 100px;
|
||
|
|
background: #eef1f6;
|
||
|
|
}
|
||
|
|
|
||
|
|
#list-usersIngroup #list-usersIngroup-iem {
|
||
|
|
font-size: 13px;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
overflow: hidden;
|
||
|
|
display: block;
|
||
|
|
white-space: nowrap;
|
||
|
|
width: 175px;
|
||
|
|
color: #333333;
|
||
|
|
}
|
||
|
|
|
||
|
|
#tooltipmessagecustombody {
|
||
|
|
float: left;
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#tooltipmessagecustom #header {
|
||
|
|
width: 100%;
|
||
|
|
padding: 2px;
|
||
|
|
height: 20px;
|
||
|
|
box-sizing: border-box;
|
||
|
|
background-color: #e7e7e7;
|
||
|
|
}
|
||
|
|
|
||
|
|
#tooltipmessagecustom #header a {
|
||
|
|
float: right;
|
||
|
|
margin-right: 4px;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui .mafe-button-img-properties .button-icon {
|
||
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
||
|
|
background-position: -91px -270px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui .mafe-button-img-edit .button-icon {
|
||
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
||
|
|
background-position: -89px -292px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui .mafe-button-img-delete .button-icon {
|
||
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
||
|
|
background-position: -62px -294px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui .mafe-button-img-delete .button-icon, .pmui .mafe-button-img-edit .button-icon, .pmui .mafe-button-img-properties .button-icon {
|
||
|
|
width: 18px;
|
||
|
|
height: 18px;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-img-properties, a.mafe-button-img-delete, a.mafe-button-img-edit {
|
||
|
|
background-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui .mafe-button-img-properties .button-icon {
|
||
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
||
|
|
background-position: -91px -270px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui .mafe-button-img-edit .button-icon {
|
||
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
||
|
|
background-position: -89px -292px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui .mafe-button-img-delete .button-icon {
|
||
|
|
background: url(../img/mafe-sprite.png) no-repeat;
|
||
|
|
background-position: -62px -294px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui .mafe-button-img-delete .button-icon, .pmui .mafe-button-img-edit .button-icon, .pmui .mafe-button-img-properties .button-icon {
|
||
|
|
width: 18px;
|
||
|
|
height: 18px;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.mafe-button-img-properties, a.mafe-button-img-delete, a.mafe-button-img-edit {
|
||
|
|
background-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.itemsSteps .pmui-treepanel-node-father > .pmui-treepanel-node-title .pmui-treepanel-node-icon {
|
||
|
|
background-image: none;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.itemsSteps .pmui-treepanel-node-leaf .pmui-treepanel-node-icon {
|
||
|
|
background-image: none;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.treePanelTriggers .pmui-treepanel-node-father > .pmui-treepanel-node-title .pmui-treepanel-node-icon {
|
||
|
|
background-image: none;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.treePanelTriggers .pmui-treepanel-node-leaf .pmui-treepanel-node-icon {
|
||
|
|
background-image: none;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.itemsSteps {
|
||
|
|
border-radius: 7px;
|
||
|
|
background: white;
|
||
|
|
box-sizing: border-box;
|
||
|
|
border: 1px solid #ccc;
|
||
|
|
}
|
||
|
|
|
||
|
|
.treePanelTriggers {
|
||
|
|
border-radius: '7px';
|
||
|
|
border: 1px solid #ccc;
|
||
|
|
width: 216px;
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
#accordionPanelTriggers .pmui-gridpanelcell-content {
|
||
|
|
padding: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-step-arrow-up {
|
||
|
|
background: url(../img/arrow-up.png) no-repeat;
|
||
|
|
background-size: 20px 10px;
|
||
|
|
width: 20px;
|
||
|
|
height: 10px;
|
||
|
|
margin: 0px;
|
||
|
|
padding: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-step-arrow-down {
|
||
|
|
background: url(../img/arrow-down.png) no-repeat;
|
||
|
|
background-size: 20px 10px;
|
||
|
|
width: 20px;
|
||
|
|
height: 10px;
|
||
|
|
margin: 0px;
|
||
|
|
padding: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.steps-placeholder {
|
||
|
|
background: rgba(128, 128, 128, 0.3);
|
||
|
|
border: 1px dashed #888;
|
||
|
|
list-style: none;
|
||
|
|
height: 2em;
|
||
|
|
text-align: center;
|
||
|
|
color: #9b9b9b;
|
||
|
|
}
|
||
|
|
|
||
|
|
.steps-placeholder .placeholder-index {
|
||
|
|
display: block;
|
||
|
|
padding: 7px;
|
||
|
|
}
|
||
|
|
|
||
|
|
@charset "UTF-8";
|
||
|
|
.mafe-col {
|
||
|
|
background: #676767;
|
||
|
|
/*background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
||
|
|
background: -moz-linear-gradient(top, #b0b1b3 0%, #939497 10%, #727375 91%, #595959 100%);
|
||
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b0b1b3), color-stop(10%,#939497), color-stop(91%,#727375), color-stop(100%,#595959));
|
||
|
|
background: -webkit-linear-gradient(top, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
||
|
|
background: -o-linear-gradient(top, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
||
|
|
background: -ms-linear-gradient(top, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
||
|
|
background: linear-gradient(to bottom, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
||
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0b1b3', endColorstr='#595959',GradientType=0 );*/
|
||
|
|
color: white;
|
||
|
|
font-size: 12px;
|
||
|
|
width: auto;
|
||
|
|
padding: 6px 15px;
|
||
|
|
font-weight: inherit;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-body-properties {
|
||
|
|
font-size: 11px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-field-labelCell {
|
||
|
|
padding: 2px;
|
||
|
|
border-bottom: 1px solid #D6D6D6;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-rowfield:hover {
|
||
|
|
background: #D6D6D6;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-field-labelCell .pmui-textcontrol {
|
||
|
|
border: 1px solid white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-field-labelCell .pmui-textcontrol, .mafe-field-labelCell .pmui-dropdownlistcontrol {
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-table-properties tr:nth-child(odd) {
|
||
|
|
background-color: #E5E5E5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-table-properties tr:nth-child(even) {
|
||
|
|
background-color: #F2F2F2;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-field-labelCell .pmui-button {
|
||
|
|
color: #4e4d4d;
|
||
|
|
border-radius: 2px;
|
||
|
|
float: right;
|
||
|
|
border: 1px solid #b1b1b1;
|
||
|
|
background: -moz-linear-gradient(top, #ffffff 0%, #eaeaea 10%, #cfcfcf 91%, #bababa 100%);
|
||
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(10%, #eaeaea), color-stop(91%, #cfcfcf), color-stop(100%, #bababa));
|
||
|
|
background: -webkit-linear-gradient(top, #ffffff 0%, #eaeaea 10%, #cfcfcf 90%, #bababa 100%);
|
||
|
|
background: -o-linear-gradient(top, #ffffff 0%, #eaeaea 10%, #cfcfcf 90%, #bababa 100%);
|
||
|
|
background: -ms-linear-gradient(top, #ffffff 0%, #eaeaea 10%, #cfcfcf 90%, #bababa 100%);
|
||
|
|
background: linear-gradient(to bottom, #ffffff 0%, #eaeaea 10%, #cfcfcf 90%, #bababa 100%);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-rowfield .error {
|
||
|
|
outline: 1px solid #ecc3c2;
|
||
|
|
border: 1px solid white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-rowfield.error {
|
||
|
|
color: red;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmformgrid {
|
||
|
|
padding: 1em 0 1em 1em;
|
||
|
|
box-sizing: border-box;
|
||
|
|
background: #f1f1f1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-initialrow {
|
||
|
|
height: 10em !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-head,
|
||
|
|
.pmdesigner-formgrid-headrow,
|
||
|
|
.pmdesigner-formgrid-headcell {
|
||
|
|
padding: 0;
|
||
|
|
height: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-textMessageContent {
|
||
|
|
color: #777f8b;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*.pmdesigner-mainpanel-slec,
|
||
|
|
.pmdesigner-formgrid,
|
||
|
|
.pmdesigner-formgrid-bodyrow,
|
||
|
|
.pmdesigner-formgrid-bodycell {
|
||
|
|
box-sizing: border-box;
|
||
|
|
border-collapse: collapse;
|
||
|
|
border: 1px dotted #c0c0c0;
|
||
|
|
}*/
|
||
|
|
.pmdesigner-formgrid-bodyrow {
|
||
|
|
background: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodyrow:hover .pmdesigner-formgrid-bodycell {
|
||
|
|
background: #F0F0F0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-rowhandler {
|
||
|
|
box-sizing: border-box;
|
||
|
|
background: url("../img/moveUpDown.png") no-repeat center rgba(224, 222, 222, 0.8);
|
||
|
|
display: inline-block;
|
||
|
|
padding: 0.3em;
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
color: white;
|
||
|
|
cursor: move;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window.pmdesigner-dropdownconfig .pmui-window-body {
|
||
|
|
padding: 0 1em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridfieldcell.gridfieldcell-bodycell.pmui-containeritembehavior-hover,
|
||
|
|
.pmdesigner-formgrid-bodycell.pmui-containeritembehavior-hover {
|
||
|
|
border-style: dashed;
|
||
|
|
background: #FCF8D6;
|
||
|
|
border-color: #e9ca27;
|
||
|
|
border-width: 2px;
|
||
|
|
color: orange;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell {
|
||
|
|
min-height: 2em;
|
||
|
|
background: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.unique-cell {
|
||
|
|
text-align: center;
|
||
|
|
font-size: 30px;
|
||
|
|
color: #aaa8a8;
|
||
|
|
height: 5em;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
.pmdesigner-formgrid-bodycell.pmdesigner-active,
|
||
|
|
.pmdesigner-formgrid-bodyrow:hover .pmdesigner-formgrid-bodycell.pmdesigner-active
|
||
|
|
{
|
||
|
|
background: #ECECE9;
|
||
|
|
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod?EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
||
|
|
background: -moz-linear-gradient(top, #ffffff 0%, #eaeaea 10%, #cfcfcf 91%, #bababa 100%);
|
||
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(10%,#eaeaea), color-stop(91%,#cfcfcf), color-stop(100%,#bababa));
|
||
|
|
background: -webkit-linear-gradient(top, #ffffff 0%,#F1F3CA 10%,#cfcfcf 91%,#bababa 100%);
|
||
|
|
background: -o-linear-gradient(top, #ffffff 0%,#eaeaea 10%,#cfcfcf 91%,#bababa 100%);
|
||
|
|
background: -ms-linear-gradient(top, #ffffff 0%,#eaeaea 10%,#cfcfcf 91%,#bababa 100%);
|
||
|
|
background: linear-gradient(to bottom, #ffffff 0%,#eaeaea 10%,#cfcfcf 91%,#bababa 100%);
|
||
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#cfcfcf',GradientType=0 );
|
||
|
|
}
|
||
|
|
*/
|
||
|
|
.pmdesigner-formgrid-bodycell.pmdesigner-active,
|
||
|
|
.pmdesigner-formgrid-bodyrow:hover .pmdesigner-formgrid-bodycell.pmdesigner-active,
|
||
|
|
.pmui-gridfieldcell.gridfieldcell-bodycell.pmdesigner-active {
|
||
|
|
background: #C0C0C0;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell .pmui-field-label {
|
||
|
|
color: inherit;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-headcell {
|
||
|
|
width: 8.333333333333%;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
#pmdesigner-mainpanel .pmui-contextmenu-target {
|
||
|
|
background: #F0F0F0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formpanel {
|
||
|
|
display: block;
|
||
|
|
border: 1px solid #e0e0e0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formpanel:hover {
|
||
|
|
background: #e0e0e0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui.ui-layout-pane.right-layout-panel {
|
||
|
|
padding: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui.pmui-panel.pmdesigner-layout-eastpanel {
|
||
|
|
overflow-x: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.toolbox-title {
|
||
|
|
display: block;
|
||
|
|
padding: 5px;
|
||
|
|
background: linear-gradient(to bottom, #ffffff 0%, #eaeaea 10%, #cfcfcf 90%, #bababa 100%);
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*.pmui-accordion-item-header {
|
||
|
|
background: #b0b1b3;
|
||
|
|
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod?EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
||
|
|
background: -moz-linear-gradient(top, #b0b1b3 0%, #939497 10%, #727375 91%, #595959 100%);
|
||
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b0b1b3), color-stop(10%,#939497), color-stop(91%,#727375), color-stop(100%,#595959));
|
||
|
|
background: -webkit-linear-gradient(top, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
||
|
|
background: -o-linear-gradient(top, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
||
|
|
background: -ms-linear-gradient(top, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
||
|
|
background: linear-gradient(to bottom, #b0b1b3 0%,#939497 10%,#727375 91%,#595959 100%);
|
||
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0b1b3', endColorstr='#595959',GradientType=0 );
|
||
|
|
color: #F0F0F0;
|
||
|
|
border-color: #888;
|
||
|
|
}*/
|
||
|
|
.pmui-containeritembehavior-placeholder {
|
||
|
|
visibility: visible;
|
||
|
|
background: rgba(128, 128, 128, 0.3);
|
||
|
|
border: 2px #888 dashed;
|
||
|
|
list-style: none;
|
||
|
|
height: 2em;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*
|
||
|
|
.pmui.pmui-listpanel.components-list {
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
*/
|
||
|
|
.toolbox-title {
|
||
|
|
display: block;
|
||
|
|
padding: 0.5em;
|
||
|
|
font-size: 15px;
|
||
|
|
background: #2d3e50;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui.pmui-listpanel.components-list .pmui-listitem {
|
||
|
|
background: none;
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui.pmui-listpanel.components-list .pmui-listitem:hover {
|
||
|
|
background: #e0e0e0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-controlslist .pmui-listitem .pmui-listitem-icon, .otherControlsList-list .pmui-listitem .pmui-listitem-icon {
|
||
|
|
background-image: url(../img/cmp-icons.png);
|
||
|
|
width: 16px;
|
||
|
|
height: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.cmp-text .pmui-listitem-icon {
|
||
|
|
background-position: 0 -128px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.cmp-dropdown .pmui-listitem-icon {
|
||
|
|
background-position: 0 -144px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.cmp-checkbox .pmui-listitem-icon {
|
||
|
|
background-position: 0 -32px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.cmp-radio .pmui-listitem-icon {
|
||
|
|
background-position: 0 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.cmp-label .pmui-listitem-icon {
|
||
|
|
background-position: 0 -64px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.cmp-datetime .pmui-listitem-icon {
|
||
|
|
background-position: 0 -16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.cmp-fieldset .pmui-listitem-icon {
|
||
|
|
background-position: 0 -80px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.cmp-formpanel .pmui-listitem-icon {
|
||
|
|
background-position: 0 -48px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.cmp-textarea .pmui-listitem-icon {
|
||
|
|
background-position: 0 -96px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.controls-submit .pmui-listitem-icon {
|
||
|
|
background: url("../img/submit.png") no-repeat;
|
||
|
|
width: 33px;
|
||
|
|
height: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.controls-button .pmui-listitem-icon {
|
||
|
|
background: url("../img/button.png") no-repeat;
|
||
|
|
width: 33px;
|
||
|
|
height: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.grid-field .pmui-listitem-icon {
|
||
|
|
background: url("../img/icon_grid.png") no-repeat;
|
||
|
|
width: 33px;
|
||
|
|
height: 30px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.label-field .pmui-listitem-icon {
|
||
|
|
background: url("../img/label.png") no-repeat;
|
||
|
|
width: 33px;
|
||
|
|
height: 30px;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.subForm-field .pmui-listitem-icon {
|
||
|
|
background: url("../img/subform.png") no-repeat;
|
||
|
|
width: 33px;
|
||
|
|
height: 30px;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.fiel-field .pmui-listitem-icon {
|
||
|
|
background: url("../img/file2.png") no-repeat;
|
||
|
|
width: 24px;
|
||
|
|
height: 25px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.subFormList-list .pmdesigner-subform .pmui-listitem-icon {
|
||
|
|
background: url("../img/subform.png") no-repeat;
|
||
|
|
width: 20px;
|
||
|
|
height: 20px;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.image-field .pmui-listitem-icon {
|
||
|
|
background: url("../img/image.png") no-repeat;
|
||
|
|
width: 24px;
|
||
|
|
height: 25px;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.link-field .pmui-listitem-icon {
|
||
|
|
background: url("../img/link.png") no-repeat;
|
||
|
|
width: 24px;
|
||
|
|
height: 25px;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-listitem.controls-title .pmui-listitem-icon {
|
||
|
|
background-position: 0 -112px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window.pmdesigner-controlselector .pmui-window-body {
|
||
|
|
padding: 1em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-window.pmdesigner-dependencyFieldWindow .pmui-window-body {
|
||
|
|
padding: 1em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pm-titleListFields {
|
||
|
|
margin-left: 40px;
|
||
|
|
font-weight: bold;
|
||
|
|
font-size: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pm-titleListDependent {
|
||
|
|
margin-left: 14px;
|
||
|
|
font-weight: bold;
|
||
|
|
font-size: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pm-dependentFieldsGrid .pmui-button {
|
||
|
|
background: #e84c3d;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pm-listFieldGrid .pmui-button {
|
||
|
|
background: #19bd9b;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-dependencyFieldWindow .pmui-window-body {
|
||
|
|
background: #faf8f8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pm_labelfield .pmui-textcontrol {
|
||
|
|
border: 1px white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pm-listFieldGrid .pmui-gridpanelcell-content {
|
||
|
|
padding: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pm-dependentFieldsGrid .pmui-gridpanelcell-content {
|
||
|
|
padding: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pm-listFieldGrid .pmui-gridpanel-toolbar {
|
||
|
|
height: 30px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pm-dependentFieldsGrid .pmui-gridpanel-toolbar {
|
||
|
|
height: 30px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid {
|
||
|
|
/*background: rgb(150, 150, 150);*/
|
||
|
|
width: 99%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid .emptyform {
|
||
|
|
width: 100%;
|
||
|
|
height: 10em;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*.pmdesigner-formgrid-bodyrow.my_row{
|
||
|
|
border-left: 3px solid #c0c0c0;
|
||
|
|
border-bottom: 3px solid #c0c0c0;
|
||
|
|
}*/
|
||
|
|
.pmdesigner-formgrid-bodycell.pmui-textcontrol {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell .pmui-buttonfield .pmui-field-control {
|
||
|
|
width: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell .pmui-datetimefield .icon-field {
|
||
|
|
background: url("../img/calendar.png") no-repeat;
|
||
|
|
display: inline-block;
|
||
|
|
padding: 0.6em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmsuggestfield .icon-field {
|
||
|
|
background: url("../img/suggest.png") no-repeat;
|
||
|
|
display: inline-block;
|
||
|
|
padding: 0.6em;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*.pmdesigner-formgrid-bodycell .pmui-field-textLabel{
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: hidden;
|
||
|
|
display: inline-block;
|
||
|
|
position: relative;
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
-moz-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
width: inherit;
|
||
|
|
}*/
|
||
|
|
.pmdesigner-formgrid-bodycell .pmui-field-label {
|
||
|
|
padding: 6px 3px 6px 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell .pmui-field-textLabel {
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: hidden;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell.colspan_12-11 .pmui-field-control {
|
||
|
|
width: 73%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell.colspan_10-9 .pmui-field-control {
|
||
|
|
width: 72%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell.colspan_8-7 .pmui-field-control {
|
||
|
|
width: 70%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell.colspan_6 .pmui-field-control {
|
||
|
|
width: 69%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell.colspan_5 .pmui-field-control {
|
||
|
|
width: 68%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell.colspan_4 .pmui-field-control {
|
||
|
|
width: 65%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell.colspan_3 .pmui-field-control {
|
||
|
|
width: 61%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell.colspan_2 .pmui-field-control {
|
||
|
|
width: 53%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell.colspan_1 .pmui-field-control {
|
||
|
|
width: 26%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell .pmui-buttonfield .pmui-field-control {
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*custom styles formdesigner*/
|
||
|
|
/*///////////////////////////////////////////////////////
|
||
|
|
/
|
||
|
|
/
|
||
|
|
/
|
||
|
|
/
|
||
|
|
|
||
|
|
|
||
|
|
/
|
||
|
|
/
|
||
|
|
/
|
||
|
|
/*/
|
||
|
|
#designer-body .pmui-accordion-item-body {
|
||
|
|
background: #FFFFFF;
|
||
|
|
padding: 0 5px 0 5px;
|
||
|
|
background: #e0e0e0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-mainlayout, #designer-body .right-layout-panel, .pmdesigner-layout-eastpanel {
|
||
|
|
background: #f1f1f1;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .pmui-accordion-item-body .pmui-listitem {
|
||
|
|
padding: 3px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .pmui.pmui-listpanel.components-list .pmui-listitem {
|
||
|
|
color: white;
|
||
|
|
border-bottom: 2px solid #d6d6d6;
|
||
|
|
background: white;
|
||
|
|
cursor: move;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .pmui.pmui-listpanel.components-list .pmui-listitem:hover {
|
||
|
|
color: black;
|
||
|
|
background: #e0e0e0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .pmListItem-buttonEdit {
|
||
|
|
background: white;
|
||
|
|
color: white;
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .pmui.pmui-listpanel.components-list .pmui-listitem:hover .pmListItem-buttonEdit {
|
||
|
|
background-color: #19bd9b;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .pmui-accordion-item-header {
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .pmui-accordion-item-container {
|
||
|
|
border-left: 1px solid white;
|
||
|
|
border-right: 1px solid white;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .pmui-accordion-item-header .pmui-textcontrol {
|
||
|
|
outline: none;
|
||
|
|
margin-left: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .right-layout-panel .pmui-listpanel-toolbar {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .pmui-accordion-item-header {
|
||
|
|
background: #676E7C;
|
||
|
|
color: white;
|
||
|
|
border-color: #d8dbdf;
|
||
|
|
padding: 3px 0 6px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .otherControlsList-list {
|
||
|
|
background: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .otherControlsList-list .pmui-listitem {
|
||
|
|
background: white;
|
||
|
|
color: black;
|
||
|
|
border-style: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .otherControlsList-list .pmui-listitem:hover {
|
||
|
|
background: #e0e0e0;
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .ui-layout-pane {
|
||
|
|
overflow: initial;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body {
|
||
|
|
background: #c0c0c0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .label-other-controls {
|
||
|
|
padding-left: 5px;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .pmdesigner-formgrid-tableContainer {
|
||
|
|
overflow: auto;
|
||
|
|
width: 100%;
|
||
|
|
height: 97%;
|
||
|
|
border: 1px solid #C0C0C0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#otherControlsList-firstItem .pmui-listitem-text, #otherControlsList-secondItem .pmui-listitem-text {
|
||
|
|
/*display: none;*/
|
||
|
|
}
|
||
|
|
|
||
|
|
#idOtherControlsList .pmui-listitem-text {
|
||
|
|
margin-left: 20px;
|
||
|
|
position: absolute;
|
||
|
|
left: 50px;
|
||
|
|
top: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .formGrid-freeCell {
|
||
|
|
width: 98%;
|
||
|
|
height: 36px;
|
||
|
|
border: 3px dotted #888888;
|
||
|
|
background: #c0c0c0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-propertiestable {
|
||
|
|
background: white;
|
||
|
|
padding: 0 2px 0 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field.formview-view .pmui-textcontrol,
|
||
|
|
.pmui-field.formview-view .pmui-dropdownlistcontrol,
|
||
|
|
.pmui-field.formview-view .pmui-textareacontrol,
|
||
|
|
.pmui-field.formview-view .pmui-passwordcontrol,
|
||
|
|
.pmui-field.formview-view .pmui-uploadcontrol,
|
||
|
|
.pmui-field.formview-view .pmui-datetimecontrol {
|
||
|
|
border: 1px solid white;
|
||
|
|
background: #ECECEC;
|
||
|
|
font-style: italic;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-field.formview-disabled .pmui-textcontrol,
|
||
|
|
.pmui-field.formview-disabled .pmui-dropdownlistcontrol,
|
||
|
|
.pmui-field.formview-disabled .pmui-textareacontrol,
|
||
|
|
.pmui-field.formview-disabled .pmui-passwordcontrol,
|
||
|
|
.pmui-field.formview-disabled .pmui-uploadcontrol,
|
||
|
|
.pmui-field.formview-disabled .pmui-datetimecontrol {
|
||
|
|
color: #757575;
|
||
|
|
background: #ECECEC;
|
||
|
|
}
|
||
|
|
|
||
|
|
#designer-body .pmui-accordion-panel-container #first-item .pmui-accordion-item-body {
|
||
|
|
height: 200px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#third-item .pmui-accordion-item-body {
|
||
|
|
height: 850px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmTextContainer1 {
|
||
|
|
width: 60px;
|
||
|
|
display: inline-block;
|
||
|
|
font-size: 12px;
|
||
|
|
margin: 1px;
|
||
|
|
color: #ee710f;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmTextContainer1 span, .pmNameContent {
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: hidden;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmTextContainer2 {
|
||
|
|
width: auto;
|
||
|
|
display: inline-block;
|
||
|
|
font-size: 12px;
|
||
|
|
color: #21366d;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmNameContent {
|
||
|
|
width: 130px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell .pmui-pmsub-titlefield h5 {
|
||
|
|
background-color: #9FA1AA;
|
||
|
|
color: white;
|
||
|
|
margin: 0.5em 0 0.5em 0;
|
||
|
|
padding: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell.pmdesigner-active .pmui-pmsub-titlefield h5 {
|
||
|
|
background: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell .pmui-pmtitlefield h4 {
|
||
|
|
background-color: #383D41;
|
||
|
|
color: white;
|
||
|
|
font-size: 18px;
|
||
|
|
padding: 10px;
|
||
|
|
margin: 0.5em 0 0.5em 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-formgrid-bodycell.pmdesigner-active .pmui-pmtitlefield h4 {
|
||
|
|
background: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-itemcontrol-x {
|
||
|
|
margin-left: 5px;
|
||
|
|
vertical-align: super;
|
||
|
|
cursor: pointer;
|
||
|
|
color: #e7e7e7;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-itemcontrol-x:hover {
|
||
|
|
color: #8b8888;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-itemcontrol-itemselected,
|
||
|
|
.pmdesigner-itemcontrol-optselected,
|
||
|
|
.pmdesigner-itemcontrol-bracketsselected {
|
||
|
|
position: relative;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-itemcontrol-itemselected > a {
|
||
|
|
background: #f5f2f2;
|
||
|
|
padding: 5px;
|
||
|
|
margin: 1px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-itemcontrol-itemselected > a:hover {
|
||
|
|
background: #e7e7e7;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-itemcontrol-bracketsselected > a {
|
||
|
|
color: red;
|
||
|
|
padding: 1px;
|
||
|
|
background: #f5f2f2;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-itemcontrol-optselected > a {
|
||
|
|
color: blue;
|
||
|
|
padding: 1px;
|
||
|
|
background: #f5f2f2;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* areacontrol*/
|
||
|
|
.pmdesigner-areacontrol {
|
||
|
|
background: white;
|
||
|
|
height: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-suggestcontrol {
|
||
|
|
height: 20%;
|
||
|
|
padding: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-suggestcontrol input {
|
||
|
|
height: 20px;
|
||
|
|
width: 90%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-suggestfields {
|
||
|
|
position: absolute;
|
||
|
|
width: 52%;
|
||
|
|
z-index: 5;
|
||
|
|
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
|
||
|
|
-webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
|
||
|
|
-moz-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-suggestfields ul {
|
||
|
|
list-style-type: none;
|
||
|
|
padding: 0;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-suggestfields a {
|
||
|
|
display: block;
|
||
|
|
background: #DFDFDF;
|
||
|
|
color: #2d3e50;
|
||
|
|
text-decoration: none;
|
||
|
|
padding: 0.4em 0.6em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-suggestfields li {
|
||
|
|
left: 0px;
|
||
|
|
top: 0px;
|
||
|
|
width: auto;
|
||
|
|
height: auto;
|
||
|
|
position: relative;
|
||
|
|
z-index: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-suggestfields a:hover {
|
||
|
|
background: #838486;
|
||
|
|
color: white;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-areacontrol-operations {
|
||
|
|
height: 10%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-areacontrol-operationsitem {
|
||
|
|
background: #c4c9ca;
|
||
|
|
height: 12px;
|
||
|
|
padding: 3px 9px;
|
||
|
|
margin: 0 2px;
|
||
|
|
text-align: center;
|
||
|
|
cursor: pointer;
|
||
|
|
border-radius: 3px;
|
||
|
|
opacity: 0.5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-areacontrol-operationsitem:hover {
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmdesigner-areacontrol-areaformula {
|
||
|
|
height: auto;
|
||
|
|
margin: 2px;
|
||
|
|
background: #f5f2f2;
|
||
|
|
padding: 10px 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridFieldItem .pmui-field-label {
|
||
|
|
background: #888888;
|
||
|
|
color: white;
|
||
|
|
font-size: 12px;
|
||
|
|
padding: 2px;
|
||
|
|
display: inline-block;
|
||
|
|
margin: initial;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridFieldItem .pmui-field-control {
|
||
|
|
padding: 3%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridFieldItem {
|
||
|
|
padding: initial;
|
||
|
|
}
|
||
|
|
|
||
|
|
.gridfielditem-header {
|
||
|
|
border-bottom: 1px solid #c0c0c0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridFieldItem-textarea .pmui-textareacontrol {
|
||
|
|
resize: vertical;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridFieldItem-configFieldIcon {
|
||
|
|
background: url("../img/config.png") no-repeat white;
|
||
|
|
display: inline-block;
|
||
|
|
width: 20%;
|
||
|
|
background-size: contain;
|
||
|
|
vertical-align: top;
|
||
|
|
height: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridFieldItem-suggest .icon-field {
|
||
|
|
background: url("../img/suggest.png") no-repeat;
|
||
|
|
display: inline-block;
|
||
|
|
padding: 0.7em;
|
||
|
|
background-size: contain;
|
||
|
|
vertical-align: top;
|
||
|
|
float: right;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridFieldItem-datetime .icon-field {
|
||
|
|
background: url("../img/datetime.png") no-repeat;
|
||
|
|
display: inline-block;
|
||
|
|
padding: 0.7em;
|
||
|
|
background-size: contain;
|
||
|
|
vertical-align: top;
|
||
|
|
float: right;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridfield .gridfieldcell-bodycell {
|
||
|
|
vertical-align: top;
|
||
|
|
float: left;
|
||
|
|
background: white;
|
||
|
|
border-left: 1px solid #c0c0c0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-gridfield .GridField-list {
|
||
|
|
padding: 1px;
|
||
|
|
margin: 0px;
|
||
|
|
background: #c0c0c0;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*GridField-black-cell-contain
|
||
|
|
GridField-black-cell-icon
|
||
|
|
GridField-black-cell-message
|
||
|
|
*/
|
||
|
|
.gridfieldcell-bodycell .GridField-black-cell-icon {
|
||
|
|
background: url(../img/addControl.png) no-repeat;
|
||
|
|
width: 100%;
|
||
|
|
height: 50%;
|
||
|
|
margin-left: 20%;
|
||
|
|
display: block;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.gridfieldcell-bodycell .GridField-black-cell-contain {
|
||
|
|
text-align: center;
|
||
|
|
text-align: center;
|
||
|
|
color: black;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*.pmui-gridfield {
|
||
|
|
box-sizing : border-box;
|
||
|
|
border : 2px solid #c0c0c0;
|
||
|
|
padding : 5px 5px 5px 8px;
|
||
|
|
}*/
|
||
|
|
.GridFieldItem.GridFieldItem-text .GridFieldItem-iconControl {
|
||
|
|
background: url(../img/inputext.png) no-repeat;
|
||
|
|
background-size: contain;
|
||
|
|
width: 89%;
|
||
|
|
padding: 7px 0px 7px 0;
|
||
|
|
margin: 2% 0 0 4%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridFieldItem.GridFieldItem-textarea .GridFieldItem-iconControl {
|
||
|
|
background: url(../img/textarea.png) no-repeat;
|
||
|
|
background-size: contain;
|
||
|
|
width: 89%;
|
||
|
|
padding: 7px 0px 7px 0;
|
||
|
|
margin: 2% 0 0 4%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridFieldItem.GridFieldItem-dropdown .GridFieldItem-iconControl {
|
||
|
|
background: url(../img/select.png) no-repeat;
|
||
|
|
background-size: contain;
|
||
|
|
width: 89%;
|
||
|
|
padding: 7px 0px 7px 0;
|
||
|
|
margin: 2% 0 0 4%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridFieldItem.GridFieldItem-checkbox .GridFieldItem-iconControl {
|
||
|
|
background: url(../img/checkbox.png) no-repeat;
|
||
|
|
background-size: cover;
|
||
|
|
width: 47%;
|
||
|
|
height: 14px;
|
||
|
|
/* padding: 25px 75px 1px 1px; */
|
||
|
|
margin: 3% 0 0 25%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridFieldItem.GridFieldItem-radio .GridFieldItem-iconControl {
|
||
|
|
background: url(../img/radio.png) no-repeat;
|
||
|
|
background-size: cover;
|
||
|
|
width: 47%;
|
||
|
|
height: 14px;
|
||
|
|
/* padding: 25px 75px 1px 1px; */
|
||
|
|
margin: 3% 0 0 25%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridFieldItem.GridFieldItem-suggest .GridFieldItem-iconControl {
|
||
|
|
background: url(../img/inputext.png) no-repeat;
|
||
|
|
width: 80%;
|
||
|
|
height: 1.7em;
|
||
|
|
background-size: contain;
|
||
|
|
margin: 2% 1% 1% 11%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.GridField-listContainer {
|
||
|
|
overflow: auto;
|
||
|
|
height: inherit;
|
||
|
|
padding-left: 9px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmimagefield-imageContainer {
|
||
|
|
background: url(../img/image.png) no-repeat center #e7e7e7;
|
||
|
|
padding: 15px;
|
||
|
|
background-size: contain;
|
||
|
|
opacity: 0.5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmimagefield-commentContainer {
|
||
|
|
font-size: 12px;
|
||
|
|
font-style: italic;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmlinkfield.PMLinkField-noUrl .PMLinkField-link {
|
||
|
|
background: url("../img/link_web.png") no-repeat center;
|
||
|
|
background-size: contain;
|
||
|
|
height: 30px;
|
||
|
|
width: 100%;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmlinkfield.PMLinkField-noUrl .PMLinkField-linkContainer {
|
||
|
|
text-align: center;
|
||
|
|
background-color: #F5F5F5;
|
||
|
|
border: 1px solid #DFDDDD;
|
||
|
|
height: 30px;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmlinkfield .PMLinkField-linkContainer {
|
||
|
|
padding-top: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmlinkfield .PMLinkField-linkContainer .PMLinkField-link {
|
||
|
|
text-decoration: underline;
|
||
|
|
color: #53539e;
|
||
|
|
font-style: italic;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmlinkfield.PMLinkField-noUrl .PMLinkField-linkContainer {
|
||
|
|
padding-top: initial;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pm-textlabelfield .pmui-textlabel-field {
|
||
|
|
margin-left: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmformfield .pmFormField-formContainer {
|
||
|
|
text-align: center;
|
||
|
|
background-color: #F5F5F5;
|
||
|
|
border: 1px solid #DFDDDD;
|
||
|
|
height: 30px;
|
||
|
|
width: 100%;
|
||
|
|
padding-bottom: 2px;
|
||
|
|
padding-top: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmformfield .pmFormField-formIcon {
|
||
|
|
background: url("../img/subform.png") no-repeat;
|
||
|
|
width: 28px;
|
||
|
|
height: 28px;
|
||
|
|
display: inline-block;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmformfield .pmui-field-label {
|
||
|
|
background: #d3d0d0;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pmui-pmformfield .pmFormField-editIcon {
|
||
|
|
background: url("../img/edit.png") no-repeat;
|
||
|
|
width: 18px;
|
||
|
|
height: 18px;
|
||
|
|
display: inline-block;
|
||
|
|
background-size: contain;
|
||
|
|
float: right;
|
||
|
|
}
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: "SourceSansPro";
|
||
|
|
src: url('../fonts/SourceSansPro-Regular/SourceSansPro-Regular-webfont.eot');
|
||
|
|
src: url('../fonts/SourceSansPro-Regular/SourceSansPro-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/SourceSansPro-Regular/SourceSansPro-Regular-webfont.ttf') format('truetype'), url('../fonts/SourceSansPro-Regular/SourceSansPro-Regular-webfont.eot') format('embedded-opentype'), url('../fonts/SourceSansPro-Regular/SourceSansPro-Regular-webfont.woff') format('woff'), url('../fonts/SourceSansPro-Regular/SourceSansPro-Regular-webfont.svg') format('svg');
|
||
|
|
}
|
||
|
|
@font-face {
|
||
|
|
font-family: "SourceSansProBold";
|
||
|
|
src: url('../fonts/SourceSansPro-Bold/SourceSansPro-Bold-webfont.eot');
|
||
|
|
src: url('../fonts/SourceSansPro-Bold/SourceSansPro-Bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/SourceSansPro-Bold/SourceSansPro-Bold-webfont.ttf') format('truetype'), url('../fonts/SourceSansPro-Bold/SourceSansPro-Bold-webfont.eot') format('embedded-opentype'), url('../fonts/SourceSansPro-Bold/SourceSansPro-Bold-webfont.woff') format('woff'), url('../fonts/SourceSansPro-Bold/SourceSansPro-Bold-webfont.svg') format('svg');
|
||
|
|
}
|
||
|
|
body {
|
||
|
|
font-family: 'SourceSansProRegular', Arial, Tahoma, Verdana;
|
||
|
|
background: #fff;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
.fd-list {
|
||
|
|
/*list-style: none;*/
|
||
|
|
border-color: #bbb;
|
||
|
|
border-style: solid;
|
||
|
|
border-width: 0 0 1px 0;
|
||
|
|
background: #f8f8f8;
|
||
|
|
font-size:11px;
|
||
|
|
padding: 0.3em;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
.fd-list:nth-child(odd) {
|
||
|
|
background: #eaebed;
|
||
|
|
}
|
||
|
|
.fd-list:hover {
|
||
|
|
background: #e0e0e0;
|
||
|
|
}
|
||
|
|
.fd-list-responsive {
|
||
|
|
position: relative;
|
||
|
|
font-size: 11px;
|
||
|
|
width: 54px;
|
||
|
|
height: 54px;
|
||
|
|
float: left;
|
||
|
|
text-align: center;
|
||
|
|
background: white;
|
||
|
|
margin: 4px;
|
||
|
|
padding: 2px;
|
||
|
|
border: 1px solid darkgray;
|
||
|
|
}
|
||
|
|
.fd-button-panel{
|
||
|
|
text-align: right;
|
||
|
|
border-top: 1px solid #e5e5e5;
|
||
|
|
position: absolute;
|
||
|
|
right: 0;
|
||
|
|
bottom: 0;
|
||
|
|
left: 0;
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
.fd-button {
|
||
|
|
font-family: "SourceSansPro", Arial, Tahoma, Verdana;
|
||
|
|
font-size: 14px;
|
||
|
|
display: inline-block;
|
||
|
|
text-decoration: none;
|
||
|
|
background-color: #1e91d1;
|
||
|
|
text-align: center;
|
||
|
|
transition: all .5s;
|
||
|
|
box-sizing: border-box;
|
||
|
|
border-radius: 2px;
|
||
|
|
margin: 0px 0px 0px 10px;
|
||
|
|
padding: 7px 20px;
|
||
|
|
}
|
||
|
|
.fd-button:hover {
|
||
|
|
opacity: 1;
|
||
|
|
opacity: 0.8;
|
||
|
|
}
|
||
|
|
.fd-button-success {
|
||
|
|
color: #fff !important;
|
||
|
|
background-color: #1fbc99;
|
||
|
|
border: 1px solid #1ba385;
|
||
|
|
font-size: 16px;
|
||
|
|
}
|
||
|
|
.fd-button-link {
|
||
|
|
color: #383838;
|
||
|
|
text-decoration: underline;
|
||
|
|
background: none;
|
||
|
|
padding: initial;
|
||
|
|
}
|
||
|
|
.fd-button-create {
|
||
|
|
color: #fff !important;
|
||
|
|
background-color: #1fbc99;
|
||
|
|
border: 1px solid #1ba385;
|
||
|
|
font-size: 16px;
|
||
|
|
background: #1fbc99 url(../img/ico_mor2.png) no-repeat 5px center;
|
||
|
|
}
|
||
|
|
.fd-button-yes{
|
||
|
|
color: #fff !important;
|
||
|
|
background-color: #1fbc99;
|
||
|
|
border: 1px solid #1ba385;
|
||
|
|
font-size: 16px;
|
||
|
|
}
|
||
|
|
.fd-button-no{
|
||
|
|
color: #fff !important;
|
||
|
|
background-color: #e4655f;
|
||
|
|
border: 1px solid #e14333;
|
||
|
|
font-size: 16px;
|
||
|
|
}
|
||
|
|
.fd-table tr:nth-child(odd) {
|
||
|
|
background-color: #E5E5E5;
|
||
|
|
}
|
||
|
|
.fd-table tr:nth-child(even) {
|
||
|
|
background-color: #F2F2F2;
|
||
|
|
}
|
||
|
|
.fd-tbody {
|
||
|
|
font-size: 11px;
|
||
|
|
}
|
||
|
|
.fd-table-th {
|
||
|
|
background: #3397e1;
|
||
|
|
color : white;
|
||
|
|
font-size: 11px;
|
||
|
|
padding: 6px 15px;
|
||
|
|
font-weight: inherit;
|
||
|
|
}
|
||
|
|
.fd-table-td {
|
||
|
|
padding: 2px;
|
||
|
|
border-bottom: 1px solid #D6D6D6;
|
||
|
|
}
|
||
|
|
.fd-table-td-error {
|
||
|
|
border: 1px solid red;
|
||
|
|
}
|
||
|
|
.fd-gridForm-placeholder {
|
||
|
|
background: rgba(128, 128, 128, 0.3);
|
||
|
|
border: 1px dashed #888;
|
||
|
|
height: 40px;
|
||
|
|
width: 100%;
|
||
|
|
margin-top:6px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid {
|
||
|
|
list-style-type: none;
|
||
|
|
border:1px solid #C0C0C0;
|
||
|
|
height:84px;
|
||
|
|
overflow: hidden;
|
||
|
|
margin:20px 6px 6px 6px;
|
||
|
|
padding:6px;
|
||
|
|
white-space:nowrap;
|
||
|
|
/*overflow-x: scroll;
|
||
|
|
width: 600px;*/
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid > * {
|
||
|
|
padding: 1px 1px 1px 1px;
|
||
|
|
display: inline-block;
|
||
|
|
width: 130px;
|
||
|
|
text-align: left;
|
||
|
|
overflow: hidden;
|
||
|
|
vertical-align: top;
|
||
|
|
border:1px solid #C0C0C0;
|
||
|
|
margin-right:1px;
|
||
|
|
margin-top:20px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-placeholder {
|
||
|
|
background: rgba(128, 128, 128, 0.3);
|
||
|
|
border: 1px dashed #888;
|
||
|
|
height: 59px;
|
||
|
|
margin-top: 20px;
|
||
|
|
}
|
||
|
|
.grid-item-field{
|
||
|
|
margin:20px 6px 6px 6px;
|
||
|
|
padding:4px;
|
||
|
|
position:relative;
|
||
|
|
border:1px solid white;
|
||
|
|
height: 30px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-field-label{
|
||
|
|
position: absolute;
|
||
|
|
top: 20px;
|
||
|
|
width: 60px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-contentRequired {
|
||
|
|
position: absolute;
|
||
|
|
top: 20px;
|
||
|
|
left: 65px;
|
||
|
|
color:red;
|
||
|
|
display:none;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-text {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-textarea {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-dropdown {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-checkbox {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
height: 18px;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-checkgroup {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
height: 18px;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-radio {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
height: 18px;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-datetime {
|
||
|
|
height: 17px;
|
||
|
|
border: 1px solid #c0c0c0;
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-suggest {
|
||
|
|
height: 17px;
|
||
|
|
border: 1px solid #c0c0c0;
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-suggest-placeholder{
|
||
|
|
color: gray;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-hidden {
|
||
|
|
height: 17px;
|
||
|
|
border: 1px dashed #c0c0c0;
|
||
|
|
position: absolute;
|
||
|
|
left: 1px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-title {
|
||
|
|
padding: 4px;
|
||
|
|
font-family: "Montserrat",sans-serif;
|
||
|
|
font-size: 20px;
|
||
|
|
border-radius: 3px;
|
||
|
|
background: white;
|
||
|
|
color: #555151;
|
||
|
|
position: absolute;
|
||
|
|
left: 1px;
|
||
|
|
right: 1px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-subtitle {
|
||
|
|
padding: 3px;
|
||
|
|
font-family: "Montserrat",sans-serif;
|
||
|
|
font-size: 15px;
|
||
|
|
border-radius: 3px;
|
||
|
|
background: white;
|
||
|
|
color: #555151;
|
||
|
|
position: absolute;
|
||
|
|
left: 1px;
|
||
|
|
right: 1px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-annotation {
|
||
|
|
position: absolute;
|
||
|
|
left: 1px;
|
||
|
|
right: 1px;
|
||
|
|
top:18px;
|
||
|
|
overflow: hidden;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
height: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-link {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top:18px;
|
||
|
|
overflow: hidden;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
height: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-image {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
height: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-file {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
height: 18px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-submit {
|
||
|
|
position: absolute;
|
||
|
|
left: 1px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-button {
|
||
|
|
position: absolute;
|
||
|
|
left: 1px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-panel{
|
||
|
|
border: 1px solid #DADADA;
|
||
|
|
background-color: #F6F5F3;
|
||
|
|
font-weight: bold;
|
||
|
|
position: absolute;
|
||
|
|
left: 1px;
|
||
|
|
right: 1px;
|
||
|
|
top: 1px;
|
||
|
|
overflow: hidden;
|
||
|
|
height: 34px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-msgpanel{
|
||
|
|
border: 1px solid #DADADA;
|
||
|
|
background-color: #F6F5F3;
|
||
|
|
font-weight: bold;
|
||
|
|
position: absolute;
|
||
|
|
left: 1px;
|
||
|
|
right: 1px;
|
||
|
|
top: 1px;
|
||
|
|
overflow: hidden;
|
||
|
|
height: 34px;
|
||
|
|
color: red;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-geomap {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
height: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-qrcode {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
height: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-signature {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
height: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-imagem {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
height: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-audiom {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
height: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-videom {
|
||
|
|
position: absolute;
|
||
|
|
left: 70px;
|
||
|
|
right: 1px;
|
||
|
|
top: 18px;
|
||
|
|
border: 1px solid #e7e7e7;
|
||
|
|
height: 18px;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-griditem-gridtitle{
|
||
|
|
position:absolute;
|
||
|
|
border:none;
|
||
|
|
margin:0px;
|
||
|
|
font-weight:bold;
|
||
|
|
left:6px;
|
||
|
|
width:auto;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-griditem-gridplaceholder{
|
||
|
|
position:absolute;
|
||
|
|
border:none;
|
||
|
|
margin:25px 0px 0px 0px;
|
||
|
|
color:gray;
|
||
|
|
left:6px;
|
||
|
|
width:auto;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-griditem-columnRequired {
|
||
|
|
color: red;
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-text-column {
|
||
|
|
box-sizing: border-box;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-textarea-column {
|
||
|
|
box-sizing: border-box;
|
||
|
|
width: 100%;
|
||
|
|
resize: vertical;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-dropdown-column {
|
||
|
|
box-sizing: border-box;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.fd-gridForm-grid-link-column {
|
||
|
|
margin-bottom: 2px;
|
||
|
|
color: blue;
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|
||
|
|
.fd-designer-button{
|
||
|
|
display:inline-block;
|
||
|
|
border-left:1px solid #70b5ec;
|
||
|
|
padding: 5px 6px;
|
||
|
|
cursor:pointer;
|
||
|
|
width:24px;
|
||
|
|
height:24px;
|
||
|
|
}
|
||
|
|
.fd-designer-button:hover{
|
||
|
|
background: #2481c5;
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
.fd-drag-drop{
|
||
|
|
vertical-align:top;
|
||
|
|
cursor: move;
|
||
|
|
}
|
||
|
|
.fd-drag-drop-placeholder{
|
||
|
|
background: rgba(128, 128, 128, 0.3);
|
||
|
|
border: 2px dashed #888;
|
||
|
|
height: 31px;
|
||
|
|
}
|
||
|
|
.fd-tooltip-date-format>div{
|
||
|
|
overflow-x: hidden;
|
||
|
|
overflow-y: scroll;
|
||
|
|
height: 400px;
|
||
|
|
width: 309px;
|
||
|
|
}
|
||
|
|
.fd-tooltip{
|
||
|
|
padding:3px;
|
||
|
|
border-radius: 0px;
|
||
|
|
}
|
||
|
|
.fd-message-error{
|
||
|
|
color: #fff;
|
||
|
|
background: #F5736D;
|
||
|
|
padding: 4px 10px;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
ul.CodeMirror-hints {
|
||
|
|
z-index: 10000;
|
||
|
|
}
|
||
|
|
.ui-accordion-header {
|
||
|
|
color:white;
|
||
|
|
background:#3397e1;
|
||
|
|
border-top: 1px solid #3397e1;
|
||
|
|
border-bottom:1px solid #262932;
|
||
|
|
border-left:1px solid #262932;
|
||
|
|
border-right:1px solid #262932;
|
||
|
|
border-radius:initial;
|
||
|
|
font-size:12px;
|
||
|
|
text-align:center;
|
||
|
|
}
|
||
|
|
.ui-accordion-header.ui-state-active {
|
||
|
|
background: white;
|
||
|
|
color:#3397e1;
|
||
|
|
}
|
||
|
|
.ui-layout-pane-north{
|
||
|
|
border:1px solid #2979b8;
|
||
|
|
}
|
||
|
|
.ui-layout-pane-center{
|
||
|
|
border-top: none;
|
||
|
|
border-right: none;
|
||
|
|
border-bottom: none;
|
||
|
|
}
|
||
|
|
.ui-layout-toggler-west div {
|
||
|
|
width: 8px;
|
||
|
|
height: 35px;
|
||
|
|
}
|
||
|
|
.ui-datepicker {
|
||
|
|
border: 1px solid #DADADA;
|
||
|
|
background: #fcfdfd;
|
||
|
|
color: #222222;
|
||
|
|
}
|
||
|
|
.ui-datepicker-header {
|
||
|
|
border: 1px solid #fcfdfd;
|
||
|
|
background: white;
|
||
|
|
color: black;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
.ui-datepicker .ui-state-default:not(.ui-state-active):not(.ui-state-highlight) {
|
||
|
|
border: 1px solid #DADADA;
|
||
|
|
background: #fcfdfd;
|
||
|
|
font-weight: bold;
|
||
|
|
color: #2e6e9e;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* -- begin PMPopOver -- */
|
||
|
|
|
||
|
|
.mafe-popover {
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
z-index: 1010;
|
||
|
|
display: none;
|
||
|
|
padding: 1px;
|
||
|
|
background-color: #fff;
|
||
|
|
background-clip: padding-box;
|
||
|
|
border: 1px solid rgba(0,0,0,.2);
|
||
|
|
border-radius: 6px;
|
||
|
|
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
||
|
|
box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
||
|
|
white-space: normal;
|
||
|
|
text-align: center;
|
||
|
|
max-width: 300px;
|
||
|
|
opacity: 0;
|
||
|
|
-webkit-transition: opacity .15s linear;
|
||
|
|
transition: opacity .15s linear;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover.in {
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover-content {
|
||
|
|
padding: 9px 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover>.arrow, .mafe-popover>.arrow:after {
|
||
|
|
position: absolute;
|
||
|
|
display: block;
|
||
|
|
width: 0;
|
||
|
|
height: 0;
|
||
|
|
border-color: transparent;
|
||
|
|
border-style: solid;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover>.arrow:after {
|
||
|
|
border-width: 10px;
|
||
|
|
content: "";
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover.right>.arrow:after {
|
||
|
|
content: " ";
|
||
|
|
left: 1px;
|
||
|
|
bottom: -10px;
|
||
|
|
border-left-width: 0;
|
||
|
|
border-right-color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover.left>.arrow:after {
|
||
|
|
content: " ";
|
||
|
|
right: 1px;
|
||
|
|
bottom: -10px;
|
||
|
|
border-right-width: 0;
|
||
|
|
border-left-color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover.top>.arrow:after {
|
||
|
|
content: " ";
|
||
|
|
bottom: 1px;
|
||
|
|
right: -10px;
|
||
|
|
border-bottom-width: 0;
|
||
|
|
border-top-color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover.bottom>.arrow:after {
|
||
|
|
content: " ";
|
||
|
|
top: 1px;
|
||
|
|
right: -10px;
|
||
|
|
border-top-width: 0;
|
||
|
|
border-bottom-color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover>.arrow {
|
||
|
|
border-width: 11px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover.right>.arrow {
|
||
|
|
top: 50%;
|
||
|
|
left: -11px;
|
||
|
|
margin-top: -11px;
|
||
|
|
border-left-width: 0;
|
||
|
|
border-right-color: rgba(0,0,0,.25);
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover.left>.arrow {
|
||
|
|
top: 50%;
|
||
|
|
right: -11px;
|
||
|
|
margin-top: -11px;
|
||
|
|
border-right-width: 0;
|
||
|
|
border-left-color: rgba(0,0,0,.25);
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover.top>.arrow {
|
||
|
|
right: 50%;
|
||
|
|
bottom: -11px;
|
||
|
|
margin-right: -11px;
|
||
|
|
border-bottom-width: 0;
|
||
|
|
border-top-color: rgba(0,0,0,.25);
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover.bottom>.arrow {
|
||
|
|
right: 50%;
|
||
|
|
top: -11px;
|
||
|
|
margin-right: -11px;
|
||
|
|
border-top-width: 0;
|
||
|
|
border-bottom-color: rgba(0,0,0,.25);
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover :before, .mafe-popover :after {
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
-moz-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* -- end PMPopOver -- */
|
||
|
|
|
||
|
|
.mafe-deprecated-control {
|
||
|
|
line-height: 1;
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
right: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-deprecated-control::before {
|
||
|
|
font-family: FontAwesome;
|
||
|
|
content: "\f12a";
|
||
|
|
color: white;
|
||
|
|
font-size: 10px;
|
||
|
|
width: 1.2em;
|
||
|
|
cursor: pointer;
|
||
|
|
height: 1.2em;
|
||
|
|
background: red;
|
||
|
|
display: inline-block;
|
||
|
|
text-align: center;
|
||
|
|
line-height: 1.2em;
|
||
|
|
border-radius: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-popover.deprecated {
|
||
|
|
font-size: 11px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-deprecated-title {
|
||
|
|
font-size: 12px;
|
||
|
|
color: #B65858;
|
||
|
|
backgroud: none;
|
||
|
|
text-align: center;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
|
||
|
|
.deprecated-ok-btn {
|
||
|
|
display: inline-block;
|
||
|
|
margin-bottom: 0;
|
||
|
|
font-weight: 400;
|
||
|
|
text-align: center;
|
||
|
|
vertical-align: middle;
|
||
|
|
cursor: pointer;
|
||
|
|
background-image: none;
|
||
|
|
border: 1px solid transparent;
|
||
|
|
white-space: nowrap;
|
||
|
|
-webkit-user-select: none;
|
||
|
|
-moz-user-select: none;
|
||
|
|
-ms-user-select: none;
|
||
|
|
user-select: none;
|
||
|
|
color: #fff;
|
||
|
|
background-color: #5cb85c;
|
||
|
|
border-color: #4cae4c;
|
||
|
|
padding: 5px 10px;
|
||
|
|
font-size: 12px;
|
||
|
|
line-height: 1.5;
|
||
|
|
border-radius: 3px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.grid-item-field .mafe-deprecated-control {
|
||
|
|
left: 0;
|
||
|
|
width: 1.2em;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-alert {
|
||
|
|
font-size: 12px;
|
||
|
|
text-align: left;
|
||
|
|
font-weight: normal;
|
||
|
|
padding: 15px 30px 15px 15px;
|
||
|
|
border: 1px solid #ebccd1;
|
||
|
|
color: #a94442;
|
||
|
|
background-color: #f2dede;
|
||
|
|
border-radius: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mafe-alert .button-close {
|
||
|
|
background: none;
|
||
|
|
border: none;
|
||
|
|
color: inherit;
|
||
|
|
position: relative;
|
||
|
|
right: -22px;
|
||
|
|
float: right;
|
||
|
|
outline: none;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pm-mafe-grid-item .mafe-deprecated-control {
|
||
|
|
float: left;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.datetime-gadget-class {
|
||
|
|
position: absolute;
|
||
|
|
}
|
||
|
|
|