nextSkin
@@ -10,8 +10,9 @@ use ProcessMaker\Model\User;
|
||||
$conf = new Configurations();
|
||||
|
||||
$oHeadPublisher = headPublisher::getSingleton();
|
||||
$oHeadPublisher->addExtJsScript("cases/main", false); //Adding a javascript file .js
|
||||
$oHeadPublisher->addContent("cases/main"); //Adding a html file .html.
|
||||
// $oHeadPublisher->addExtJsScript("cases/main", false); //Adding a javascript file .js
|
||||
// $oHeadPublisher->addContent("cases/main"); //Adding a html file .html.
|
||||
// $oHeadPublisher->addContent("cases/viena"); //Adding a html file .html.
|
||||
|
||||
$keyMem = "USER_PREFERENCES" . $_SESSION["USER_LOGGED"];
|
||||
$memcache = PMmemcached::getSingleton(config("system.workspace"));
|
||||
@@ -163,4 +164,4 @@ ScriptVariables::add('userId', User::getId($_SESSION['USER_LOGGED']));
|
||||
ScriptVariables::add('userConfig', array(
|
||||
"usr_uid" => $_SESSION['USER_LOGGED']
|
||||
));
|
||||
echo View::make('Views::home.home', compact("userCanAccess"))->render();
|
||||
G::RenderPage("publish", "viena");
|
||||
4853
workflow/engine/skinEngine/next/baseCss/ext-all-notheme.css
Normal file
6790
workflow/engine/skinEngine/next/baseCss/ext-all.css
Normal file
105
workflow/engine/skinEngine/next/block.php
Normal file
@@ -0,0 +1,105 @@
|
||||
<?php
|
||||
if (function_exists("http_response_code")) {
|
||||
http_response_code(200);
|
||||
}
|
||||
|
||||
$http = G::is_https() ? "https" : "http";
|
||||
$host = $_SERVER["SERVER_NAME"] . (($_SERVER["SERVER_PORT"] != "80") ? ":" . $_SERVER["SERVER_PORT"] : "");
|
||||
|
||||
$urlLogin = $http . "://" . $host . "/sys/en/neoclassic/login/login";
|
||||
$urlHome = $urlLogin;
|
||||
|
||||
if (isset($_GET["url"]) && $_GET["url"] != "") {
|
||||
|
||||
$url = urldecode($_GET["url"]);
|
||||
$url = explode("/", $url);
|
||||
|
||||
$sysSys = "";
|
||||
$sysLang = "";
|
||||
$sysSkin = "";
|
||||
|
||||
if (isset($url[1]) && preg_match("/^sys(.+)$/", $url[1], $match)) {
|
||||
$sysSys = $match[1];
|
||||
|
||||
// Check if sys path exists
|
||||
$checkDir = PATH_DATA . "sites/" . $sysSys;
|
||||
if (!is_dir($checkDir)) {
|
||||
$sysSys = '';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (isset($url[2])) {
|
||||
$sysLang = $url[2];
|
||||
}
|
||||
|
||||
if (isset($url[3])) {
|
||||
$sysSkin = $url[3];
|
||||
|
||||
// Check if sys path exists
|
||||
$checkDir = PATH_SKIN_ENGINE . $sysSkin;
|
||||
if (!is_dir($checkDir)) {
|
||||
// Try this again
|
||||
$checkDir = PATH_CUSTOM_SKINS . $sysSkin;
|
||||
if (!is_dir($checkDir)) {
|
||||
$sysSkin = '';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($sysSys != "" && $sysLang != "" && $sysSkin != "") {
|
||||
$urlLogin = $http . "://" . $host . "/sys" . $sysSys . "/" . $sysLang . "/" . $sysSkin . "/login/login";
|
||||
$urlHome = $http . "://" . $host . "/sys" . $sysSys . "/" . $sysLang . "/" . $sysSkin . "/cases/main";
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="shortcut icon" href="../images/favicon.ico" type="image/x-icon"/>
|
||||
<link href="../lib/pmdynaform/libs/bootstrap-3.1.1/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="css2/block.css" type="text/css" rel="stylesheet"/>
|
||||
</head>
|
||||
<body class="nav-md special-page" style="margin: 0px; overflow: auto;">
|
||||
<div class="container body ">
|
||||
|
||||
<div class="main_container">
|
||||
|
||||
<!-- page content -->
|
||||
<div class="col-md-12">
|
||||
<div class="col-middle">
|
||||
<div class="text-center">
|
||||
<p><img src="images/fa-hand-pointer-o.png"></p>
|
||||
</div>
|
||||
<div class="text-center text-error">
|
||||
<h1>Hi there, please check your tabs!</h1>
|
||||
<p><b>A browser instance of ProcessMaker is actually open.</b> You can start only one at the time.
|
||||
For more information:
|
||||
</p>
|
||||
<div class="mid_center">
|
||||
<a type="button" class="btn btn-success btn-lg" href="http://wiki.processmaker.com">Click here
|
||||
to see our Wiki</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /page content -->
|
||||
|
||||
<!-- footer content -->
|
||||
<div id="footer">
|
||||
<div class="container">
|
||||
<p><img src="images/processmaker.logow.png"></p>
|
||||
<p class="muted credit">Supplied free of charge with no support, certification, warranty, maintenance nor indemnity by ProcessMaker and its Certified Partners<br>
|
||||
Copyright © 2003-2015 ProcessMaker, Inc. All rights reserved. </p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
55
workflow/engine/skinEngine/next/config.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<skinConfiguration>
|
||||
<information>
|
||||
<id>00000000000000000000000000000002</id>
|
||||
<name>neoclassic</name>
|
||||
<description>New default skin</description>
|
||||
<author>ProcessMaker Team</author>
|
||||
<version>1.0</version>
|
||||
<createDate>2012-05-06</createDate>
|
||||
<modifiedDate>2012-05-06</modifiedDate>
|
||||
</information>
|
||||
<cssFiles>
|
||||
<skin>
|
||||
<cssFile file="style.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
<cssFile file="form.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
<cssFile file="sprite_ie7.css" enabledBrowsers="ie7" disabledBrowsers="ALL"></cssFile>
|
||||
<cssFile file="sprite.css" enabledBrowsers="ALL" disabledBrowsers="ie7"></cssFile>
|
||||
<cssFile file="rtl.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
<cssFile file="loginStyle.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
</skin>
|
||||
<blank>
|
||||
<cssFile file="style.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
<cssFile file="form.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
<cssFile file="sprite_ie7.css" enabledBrowsers="ie7" disabledBrowsers="ALL"></cssFile>
|
||||
<cssFile file="sprite.css" enabledBrowsers="ALL" disabledBrowsers="ie7"></cssFile>
|
||||
<cssFile file="rtl.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
</blank>
|
||||
<raw>
|
||||
</raw>
|
||||
<submenu>
|
||||
<cssFile file="style.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
<cssFile file="form.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
<cssFile file="sprite_ie7.css" enabledBrowsers="ie7" disabledBrowsers="ALL"></cssFile>
|
||||
<cssFile file="sprite.css" enabledBrowsers="ALL" disabledBrowsers="ie7"></cssFile>
|
||||
<cssFile file="rtl.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
</submenu>
|
||||
<tracker>
|
||||
<cssFile file="style.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
<cssFile file="form.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
<cssFile file="sprite_ie7.css" enabledBrowsers="ie7" disabledBrowsers="ALL"></cssFile>
|
||||
<cssFile file="sprite.css" enabledBrowsers="ALL" disabledBrowsers="ie7"></cssFile>
|
||||
<cssFile file="rtl.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
</tracker>
|
||||
<extjs>
|
||||
<cssFile file="xtheme-gray.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
<cssFile file="pmos-xtheme-gray.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
<cssFile file="sprite_ie7.css" enabledBrowsers="ie7" disabledBrowsers="ALL"></cssFile>
|
||||
<cssFile file="sprite.css" enabledBrowsers="ALL" disabledBrowsers="ie7"></cssFile>
|
||||
<cssFile file="rtl.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
</extjs>
|
||||
<viena>
|
||||
<cssFile file="app.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
</viena>
|
||||
</cssFiles>
|
||||
</skinConfiguration>
|
||||
445
workflow/engine/skinEngine/next/css/app.css
Normal file
1136
workflow/engine/skinEngine/next/css/form.css
Normal file
232
workflow/engine/skinEngine/next/css/jscolors.css
Normal file
@@ -0,0 +1,232 @@
|
||||
/*!
|
||||
* Variables
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('/skins/neoclassic/fonts/OpenSans-Light-webfont.woff') format('woff'), url('/skins/neoclassic/fonts/OpenSans-Light-webfont.ttf') format('truetype'), url('/skins/neoclassic/fonts/OpenSans-Light-webfont.svg#OpenSansLight') format('svg');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('/skins/neoclassic/fonts/OpenSans-LightItalic-webfont.woff') format('woff'), url('/skins/neoclassic/fonts/OpenSans-LightItalic-webfont.ttf') format('truetype'), url('/skins/neoclassic/fonts/OpenSans-LightItalic-webfont.svg#OpenSansLightItalic') format('svg');
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('/skins/neoclassic/fonts/OpenSans-Regular-webfont.woff') format('woff'), url('/skins/neoclassic/fonts/OpenSans-Regular-webfont.ttf') format('truetype'), url('/skins/neoclassic/fonts/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('/skins/neoclassic/fonts/OpenSans-Italic-webfont.woff') format('woff'), url('/skins/neoclassic/fonts/OpenSans-Italic-webfont.ttf') format('truetype'), url('/skins/neoclassic/fonts/OpenSans-Italic-webfont.svg#OpenSansItalic') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('/skins/neoclassic/fonts/OpenSans-Semibold-webfont.woff') format('woff'), url('/skins/neoclassic/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'), url('/skins/neoclassic/fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('/skins/neoclassic/fonts/OpenSans-SemiboldItalic-webfont.woff') format('woff'), url('/skins/neoclassic/fonts/OpenSans-SemiboldItalic-webfont.ttf') format('truetype'), url('/skins/neoclassic/fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
/*Colores*/
|
||||
.btn {
|
||||
background-image: none;
|
||||
color: #333333;
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
||||
background-color: #f1f1f1;
|
||||
background-image: -moz-linear-gradient(top, #ffffff, #dddddd);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#dddddd));
|
||||
background-image: -webkit-linear-gradient(top, #ffffff, #dddddd);
|
||||
background-image: -o-linear-gradient(top, #ffffff, #dddddd);
|
||||
background-image: linear-gradient(to bottom, #ffffff, #dddddd);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffdddddd', GradientType=0);
|
||||
border-color: #dddddd #dddddd #b7b7b7;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #dddddd;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#dddddd');
|
||||
border: 1px solid #ccc;
|
||||
font-size: 10px;
|
||||
font-weight: 400;
|
||||
text-transform: capitalize;
|
||||
text-decoration: none;
|
||||
line-height: 14px;
|
||||
color: #000;
|
||||
}
|
||||
.btn:hover,
|
||||
.btn:focus,
|
||||
.btn:active,
|
||||
.btn.active,
|
||||
.btn.disabled,
|
||||
.btn[disabled] {
|
||||
color: #333333;
|
||||
background-color: #dddddd;
|
||||
*background-color: #d0d0d0;
|
||||
}
|
||||
.btn:active,
|
||||
.btn.active {
|
||||
background-color: #c4c4c4 \9;
|
||||
}
|
||||
.btn:hover {
|
||||
color: #333333;
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
||||
background-color: #ebebeb;
|
||||
background-image: -moz-linear-gradient(top, #dddddd, #ffffff);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dddddd), to(#ffffff));
|
||||
background-image: -webkit-linear-gradient(top, #dddddd, #ffffff);
|
||||
background-image: -o-linear-gradient(top, #dddddd, #ffffff);
|
||||
background-image: linear-gradient(to bottom, #dddddd, #ffffff);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdddddd', endColorstr='#ffffffff', GradientType=0);
|
||||
border-color: #ffffff #ffffff #d9d9d9;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #ffffff;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dddddd', EndColorStr='#ffffff');
|
||||
border: 1px solid #aaa;
|
||||
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
||||
}
|
||||
.btn:hover:hover,
|
||||
.btn:hover:focus,
|
||||
.btn:hover:active,
|
||||
.btn:hover.active,
|
||||
.btn:hover.disabled,
|
||||
.btn:hover[disabled] {
|
||||
color: #333333;
|
||||
background-color: #ffffff;
|
||||
*background-color: #f2f2f2;
|
||||
}
|
||||
.btn:hover:active,
|
||||
.btn:hover.active {
|
||||
background-color: #e6e6e6 \9;
|
||||
}
|
||||
.btn:focus {
|
||||
border: 1px solid #45626F;
|
||||
outline: 0;
|
||||
}
|
||||
.btn:focus::-moz-focus-inner {
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
.btn-over {
|
||||
color: #333333;
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
||||
background-color: #ebebeb;
|
||||
background-image: -moz-linear-gradient(top, #dddddd, #ffffff);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dddddd), to(#ffffff));
|
||||
background-image: -webkit-linear-gradient(top, #dddddd, #ffffff);
|
||||
background-image: -o-linear-gradient(top, #dddddd, #ffffff);
|
||||
background-image: linear-gradient(to bottom, #dddddd, #ffffff);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdddddd', endColorstr='#ffffffff', GradientType=0);
|
||||
border-color: #ffffff #ffffff #d9d9d9;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #ffffff;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dddddd', EndColorStr='#ffffff');
|
||||
border: 1px solid #aaa;
|
||||
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
||||
}
|
||||
.btn-over:hover,
|
||||
.btn-over:focus,
|
||||
.btn-over:active,
|
||||
.btn-over.active,
|
||||
.btn-over.disabled,
|
||||
.btn-over[disabled] {
|
||||
color: #333333;
|
||||
background-color: #ffffff;
|
||||
*background-color: #f2f2f2;
|
||||
}
|
||||
.btn-over:active,
|
||||
.btn-over.active {
|
||||
background-color: #e6e6e6 \9;
|
||||
}
|
||||
.btn-focus {
|
||||
border: 1px solid #45626F;
|
||||
outline: 0;
|
||||
}
|
||||
.btn-focus::-moz-focus-inner {
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
.btn-no-button {
|
||||
background: none;
|
||||
filter: none;
|
||||
border: 1px transparent solid;
|
||||
}
|
||||
.link {
|
||||
color: #00a1e4;
|
||||
text-decoration: none;
|
||||
}
|
||||
.link:hover {
|
||||
color: #00597e;
|
||||
}
|
||||
.link-hover {
|
||||
color: #00597e;
|
||||
}
|
||||
/*
|
||||
botones del tinymce
|
||||
.o2k7Skin .mceButton{
|
||||
.btn();
|
||||
}
|
||||
*/html {
|
||||
cursor: text;
|
||||
}
|
||||
.editbox {
|
||||
margin: .4em;
|
||||
padding: 0;
|
||||
font-family: monospace;
|
||||
font-size: 10pt;
|
||||
color: black;
|
||||
}
|
||||
pre.code,
|
||||
.editbox {
|
||||
color: #666666;
|
||||
}
|
||||
.editbox p {
|
||||
margin: 0;
|
||||
}
|
||||
span.js-punctuation {
|
||||
color: #666666;
|
||||
}
|
||||
span.js-operator {
|
||||
color: #666666;
|
||||
}
|
||||
span.js-keyword {
|
||||
color: #770088;
|
||||
}
|
||||
span.js-atom {
|
||||
color: #228811;
|
||||
}
|
||||
span.js-variable {
|
||||
color: black;
|
||||
}
|
||||
span.js-variabledef {
|
||||
color: #0000FF;
|
||||
}
|
||||
span.js-localvariable {
|
||||
color: #004499;
|
||||
}
|
||||
span.js-property {
|
||||
color: black;
|
||||
}
|
||||
span.js-comment {
|
||||
color: #AA7700;
|
||||
}
|
||||
span.js-string {
|
||||
color: #AA2222;
|
||||
}
|
||||
287
workflow/engine/skinEngine/next/css/loginStyle.css
Normal file
@@ -0,0 +1,287 @@
|
||||
/*
|
||||
* LOGIN PM3 STYLES
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: "Chivo";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
src: local("?"), url("/fonts/Chivo-Regular.ttf") format("truetype");
|
||||
}
|
||||
|
||||
body.login {
|
||||
background-color: #444;
|
||||
background: url(/images/backgroundpm3.jpg);
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.vertical-offset-100 {
|
||||
padding-top: 90px;
|
||||
}
|
||||
|
||||
img.img-responsive {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.img-responsive {
|
||||
display: block;
|
||||
height: auto;
|
||||
margin: auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.login .panel {
|
||||
border-radius: 0;
|
||||
padding: 20px;
|
||||
}
|
||||
.panel {
|
||||
background-color: rgba(255, 255, 255, 0.8);
|
||||
border: 1px solid transparent;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
||||
margin-bottom: 20px;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
|
||||
}
|
||||
|
||||
.login .panel-default > .panel-heading {
|
||||
background: none repeat scroll 0 0 transparent;
|
||||
}
|
||||
|
||||
|
||||
.login .panel-heading {
|
||||
border-bottom: 1px solid transparent;
|
||||
border-top-left-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
padding: 5px 1px;
|
||||
}
|
||||
|
||||
|
||||
.module_app_input___gray {
|
||||
font-family: "Chivo",sans-serif;
|
||||
background-color: #fff;
|
||||
background-image: none;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||||
color: #555;
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
height: 34px;
|
||||
line-height: 1.42857;
|
||||
padding: 6px 12px;
|
||||
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
|
||||
width: 100%;
|
||||
}
|
||||
.login .module_app_input___gray_file{
|
||||
background-color: #fff;
|
||||
background-image: none;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||||
color: #555;
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
//height: 45px;
|
||||
box-sizing: border-box;
|
||||
//padding-top: 12px;
|
||||
line-height: 1.42857;
|
||||
//padding: 9px 12px;
|
||||
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
|
||||
width: 100%;
|
||||
}
|
||||
.form-signin .module_app_input___gray {
|
||||
border-radius: 0;
|
||||
box-sizing: border-box;
|
||||
color: #444;
|
||||
font-family: "Open Sans",Arial,Helvetica,sans-serif;
|
||||
//font-family: "Chivo",sans-serif;
|
||||
font-size: 16px;
|
||||
height: 45px;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
|
||||
.form-signin .module_app_input___gray:-ms-input-placeholder {
|
||||
font-family: "Open Sans",Arial,Helvetica,sans-serif;
|
||||
color:#999;
|
||||
}
|
||||
|
||||
.module_app_input___gray::-moz-placeholder {
|
||||
color: #999;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.login .panel h3 {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
color: #444;
|
||||
font-family: "Montserrat",sans-serif;
|
||||
font-weight: 400;
|
||||
margin: 0 0 30px;
|
||||
}
|
||||
p {
|
||||
font-size: 16px;
|
||||
line-height: 1.5em;
|
||||
margin: 0 0 10px;
|
||||
}
|
||||
|
||||
.panel-body table{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.button-login-cancel{
|
||||
background-image: none;
|
||||
width: 100%;
|
||||
color: #fff;
|
||||
border-radius: 6px;
|
||||
font-size: 18px;
|
||||
line-height: 1.33;
|
||||
padding: 10px 16px;
|
||||
display: block;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
width: 100%;
|
||||
background: none repeat scroll 0 0 #e4655f;
|
||||
border: 1px solid #e14333;
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
//transition: all 0.3s ease-in-out 0s;
|
||||
max-width: 400px;
|
||||
filter:none;
|
||||
}
|
||||
|
||||
.button-login-cancel:hover{
|
||||
background-color: #e14333;
|
||||
background-image:none;
|
||||
color: #fff;
|
||||
filter:none;
|
||||
}
|
||||
|
||||
.button-login-success{
|
||||
background-image: none;
|
||||
width: 100%;
|
||||
color: #fff;
|
||||
border-radius: 6px;
|
||||
font-size: 18px;
|
||||
line-height: 1.33;
|
||||
padding: 10px 16px;
|
||||
display: block;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
width: 100%;
|
||||
background: none repeat scroll 0 0 #1fbc99;
|
||||
border: 1px solid #1fbc99;
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
//transition: all 0.3s ease-in-out 0s;
|
||||
max-width: 400px;
|
||||
filter:none;
|
||||
}
|
||||
|
||||
.button-login-success:hover{
|
||||
background-color: #1ba385;
|
||||
background-image:none;
|
||||
color: #fff;
|
||||
filter:none;
|
||||
}
|
||||
|
||||
|
||||
.login-message{
|
||||
border: 1px solid transparent;
|
||||
border-radius: 4px;
|
||||
margin-bottom: 20px;
|
||||
padding: 15px;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
line-height: 1.42857;
|
||||
}
|
||||
|
||||
.login #temporalMessageWARNING{
|
||||
padding: 15px;
|
||||
background-color: #ffc85c;
|
||||
border-color: #db9d22;
|
||||
color: #4d380d;
|
||||
}
|
||||
|
||||
.login #temporalMessageERROR{
|
||||
padding: 15px;
|
||||
background-color: #e87a75;
|
||||
border-color: #e14333;
|
||||
color: #5a1212;
|
||||
}
|
||||
|
||||
.login #temporalMessageINFO{
|
||||
padding: 15px;
|
||||
background-color: #44afff;
|
||||
border-color: #2481c5;
|
||||
color: #0a263c;
|
||||
}
|
||||
|
||||
|
||||
.login #temporalMessageTD {
|
||||
border-width: 0px;
|
||||
font-size: normal 6pt !important;
|
||||
height: 25px !important;
|
||||
padding: 0 0px !important;
|
||||
background-size: 100% 100% !important;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.footer-login span{
|
||||
color: white;
|
||||
font-weight: 900;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.login_result span{
|
||||
margin-bottom: 6px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
.login .module_app_inputFailed___gray{
|
||||
font-family: "Chivo",sans-serif;
|
||||
background-color: #fff;
|
||||
background-image: none;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||||
color: #555;
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
height: 45px;
|
||||
line-height: 1.42857;
|
||||
padding: 9px 12px;
|
||||
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
|
||||
width: 100%;
|
||||
border:1px solid #e14333;
|
||||
}
|
||||
|
||||
.page-wrap{
|
||||
height: auto;
|
||||
margin: 0 auto -60px;
|
||||
min-height: 95%;
|
||||
padding: 0 0 60px;
|
||||
}
|
||||
|
||||
.page-wrap:after{
|
||||
width: 100%;
|
||||
display:block;
|
||||
clear:both;
|
||||
}
|
||||
|
||||
.footer-login{
|
||||
text-align: center;
|
||||
height: auto;
|
||||
margin: -0px auto 0;
|
||||
}
|
||||
|
||||
#form[FORGOT_PASWORD_LINK]{
|
||||
font-family: Chivo;
|
||||
font-size: 14px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
1878
workflow/engine/skinEngine/next/css/pmos-xtheme-gray.css
Normal file
598
workflow/engine/skinEngine/next/css/printstyle.css
Normal file
682
workflow/engine/skinEngine/next/css/rtl.css
Normal file
2947
workflow/engine/skinEngine/next/css/sprite.css
Normal file
186
workflow/engine/skinEngine/next/css/sprite_ie.css
Normal file
@@ -0,0 +1,186 @@
|
||||
/*!
|
||||
* Variables
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('/skins/neoclassic/fonts/OpenSans-Light-webfont.woff') format('woff'), url('/skins/neoclassic/fonts/OpenSans-Light-webfont.ttf') format('truetype'), url('/skins/neoclassic/fonts/OpenSans-Light-webfont.svg#OpenSansLight') format('svg');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('/skins/neoclassic/fonts/OpenSans-LightItalic-webfont.woff') format('woff'), url('/skins/neoclassic/fonts/OpenSans-LightItalic-webfont.ttf') format('truetype'), url('/skins/neoclassic/fonts/OpenSans-LightItalic-webfont.svg#OpenSansLightItalic') format('svg');
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('/skins/neoclassic/fonts/OpenSans-Regular-webfont.woff') format('woff'), url('/skins/neoclassic/fonts/OpenSans-Regular-webfont.ttf') format('truetype'), url('/skins/neoclassic/fonts/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('/skins/neoclassic/fonts/OpenSans-Italic-webfont.woff') format('woff'), url('/skins/neoclassic/fonts/OpenSans-Italic-webfont.ttf') format('truetype'), url('/skins/neoclassic/fonts/OpenSans-Italic-webfont.svg#OpenSansItalic') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('/skins/neoclassic/fonts/OpenSans-Semibold-webfont.woff') format('woff'), url('/skins/neoclassic/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'), url('/skins/neoclassic/fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src: url('/skins/neoclassic/fonts/OpenSans-SemiboldItalic-webfont.woff') format('woff'), url('/skins/neoclassic/fonts/OpenSans-SemiboldItalic-webfont.ttf') format('truetype'), url('/skins/neoclassic/fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
/*Colores*/
|
||||
.btn {
|
||||
background-image: none;
|
||||
color: #333333;
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
||||
background-color: #f1f1f1;
|
||||
background-image: -moz-linear-gradient(top, #ffffff, #dddddd);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#dddddd));
|
||||
background-image: -webkit-linear-gradient(top, #ffffff, #dddddd);
|
||||
background-image: -o-linear-gradient(top, #ffffff, #dddddd);
|
||||
background-image: linear-gradient(to bottom, #ffffff, #dddddd);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffdddddd', GradientType=0);
|
||||
border-color: #dddddd #dddddd #b7b7b7;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #dddddd;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#dddddd');
|
||||
border: 1px solid #ccc;
|
||||
font-size: 10px;
|
||||
font-weight: 400;
|
||||
text-transform: capitalize;
|
||||
text-decoration: none;
|
||||
line-height: 14px;
|
||||
color: #000;
|
||||
}
|
||||
.btn:hover,
|
||||
.btn:focus,
|
||||
.btn:active,
|
||||
.btn.active,
|
||||
.btn.disabled,
|
||||
.btn[disabled] {
|
||||
color: #333333;
|
||||
background-color: #dddddd;
|
||||
*background-color: #d0d0d0;
|
||||
}
|
||||
.btn:active,
|
||||
.btn.active {
|
||||
background-color: #c4c4c4 \9;
|
||||
}
|
||||
.btn:hover {
|
||||
color: #333333;
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
||||
background-color: #ebebeb;
|
||||
background-image: -moz-linear-gradient(top, #dddddd, #ffffff);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dddddd), to(#ffffff));
|
||||
background-image: -webkit-linear-gradient(top, #dddddd, #ffffff);
|
||||
background-image: -o-linear-gradient(top, #dddddd, #ffffff);
|
||||
background-image: linear-gradient(to bottom, #dddddd, #ffffff);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdddddd', endColorstr='#ffffffff', GradientType=0);
|
||||
border-color: #ffffff #ffffff #d9d9d9;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #ffffff;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dddddd', EndColorStr='#ffffff');
|
||||
border: 1px solid #aaa;
|
||||
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
||||
}
|
||||
.btn:hover:hover,
|
||||
.btn:hover:focus,
|
||||
.btn:hover:active,
|
||||
.btn:hover.active,
|
||||
.btn:hover.disabled,
|
||||
.btn:hover[disabled] {
|
||||
color: #333333;
|
||||
background-color: #ffffff;
|
||||
*background-color: #f2f2f2;
|
||||
}
|
||||
.btn:hover:active,
|
||||
.btn:hover.active {
|
||||
background-color: #e6e6e6 \9;
|
||||
}
|
||||
.btn:focus {
|
||||
border: 1px solid #45626F;
|
||||
outline: 0;
|
||||
}
|
||||
.btn:focus::-moz-focus-inner {
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
.btn-over {
|
||||
color: #333333;
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
||||
background-color: #ebebeb;
|
||||
background-image: -moz-linear-gradient(top, #dddddd, #ffffff);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dddddd), to(#ffffff));
|
||||
background-image: -webkit-linear-gradient(top, #dddddd, #ffffff);
|
||||
background-image: -o-linear-gradient(top, #dddddd, #ffffff);
|
||||
background-image: linear-gradient(to bottom, #dddddd, #ffffff);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdddddd', endColorstr='#ffffffff', GradientType=0);
|
||||
border-color: #ffffff #ffffff #d9d9d9;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
*background-color: #ffffff;
|
||||
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
||||
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dddddd', EndColorStr='#ffffff');
|
||||
border: 1px solid #aaa;
|
||||
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
||||
}
|
||||
.btn-over:hover,
|
||||
.btn-over:focus,
|
||||
.btn-over:active,
|
||||
.btn-over.active,
|
||||
.btn-over.disabled,
|
||||
.btn-over[disabled] {
|
||||
color: #333333;
|
||||
background-color: #ffffff;
|
||||
*background-color: #f2f2f2;
|
||||
}
|
||||
.btn-over:active,
|
||||
.btn-over.active {
|
||||
background-color: #e6e6e6 \9;
|
||||
}
|
||||
.btn-focus {
|
||||
border: 1px solid #45626F;
|
||||
outline: 0;
|
||||
}
|
||||
.btn-focus::-moz-focus-inner {
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
.btn-no-button {
|
||||
background: none;
|
||||
filter: none;
|
||||
border: 1px transparent solid;
|
||||
}
|
||||
.link {
|
||||
color: #00a1e4;
|
||||
text-decoration: none;
|
||||
}
|
||||
.link:hover {
|
||||
color: #00597e;
|
||||
}
|
||||
.link-hover {
|
||||
color: #00597e;
|
||||
}
|
||||
/*
|
||||
botones del tinymce
|
||||
.o2k7Skin .mceButton{
|
||||
.btn();
|
||||
}
|
||||
*/
|
||||
3492
workflow/engine/skinEngine/next/css/style.css
Normal file
1764
workflow/engine/skinEngine/next/css/xtheme-gray.css
Normal file
92
workflow/engine/skinEngine/next/css2/block.css
Normal file
@@ -0,0 +1,92 @@
|
||||
*, *:before, *:after {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Helvetica Neue", Roboto, Arial, "Droid Sans", sans-serif;
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
line-height: 1.471;
|
||||
}
|
||||
|
||||
.special-page {
|
||||
color: #fff;
|
||||
background: #3397e2;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.col-md-55, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
|
||||
position: relative;
|
||||
min-height: 1px;
|
||||
float: left;
|
||||
padding-right: 10px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.col-middle {
|
||||
margin-top: 5%;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 0 10px;
|
||||
}
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.text-error {
|
||||
background: rgba(255,255,255,0.9);
|
||||
color: #000;
|
||||
padding: 25px 0;
|
||||
margin: 120px 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-size: 36px;
|
||||
font-weight: 500;
|
||||
line-height: 1.1;
|
||||
color: inherit;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
b, strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
.mid_center {
|
||||
width: 370px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
.btn-success {
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
border-radius: 2px;
|
||||
font-size: 1.4rem;
|
||||
cursor: pointer;
|
||||
background: #1fbc99;
|
||||
border: 1px solid #1ba385;
|
||||
}
|
||||
|
||||
.buttons, button, .btn {
|
||||
margin-right: 5px;
|
||||
}
|
||||
#push, #footer {
|
||||
height: 60px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
287
workflow/engine/skinEngine/next/css2/style1.css
Normal file
@@ -0,0 +1,287 @@
|
||||
|
||||
/* Reset */
|
||||
* {
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Body */
|
||||
body {
|
||||
background: url(../images/background.jpg) no-repeat top #00B4CD;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* No borders around images */
|
||||
img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* Warp around everything */
|
||||
#warp {
|
||||
margin: 0 auto;
|
||||
margin-top: 10px;
|
||||
width: 985px;
|
||||
font-family: Helvetica;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
#header_top {
|
||||
background: url(../images/top.png) no-repeat;
|
||||
width: 985px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
/* Header content */
|
||||
#header {
|
||||
background: url(../images/box_bg.png) repeat-y;
|
||||
width: 985px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Page title */
|
||||
#header h2 {
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
/* Subtitle */
|
||||
#header h5 {
|
||||
margin-top: 5px;
|
||||
padding-bottom: 15px;
|
||||
color: #acacac;
|
||||
}
|
||||
|
||||
/* Content div */
|
||||
#content {
|
||||
background: url(../images/content_bg.png) repeat-y;
|
||||
width: 985px;
|
||||
}
|
||||
|
||||
/* The info text */
|
||||
#text {
|
||||
float: left;
|
||||
margin: 10px 0 10px 60px;
|
||||
width: 420px;
|
||||
/* IE margin fix */
|
||||
display: inline;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
/* The info text P */
|
||||
#text p {
|
||||
margin-top: 5px;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
color: #292929;
|
||||
}
|
||||
|
||||
/* The links list */
|
||||
|
||||
/* The list items */
|
||||
|
||||
/* The links */
|
||||
#text a {
|
||||
color: #292929;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Link hover */
|
||||
#text a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* The book icon */
|
||||
#book {
|
||||
float: right;
|
||||
width: 472px;
|
||||
height: 332px;
|
||||
margin: 20px 20px 10px 0;
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
#footer {
|
||||
background: url(../images/box_bg.png) repeat-y;
|
||||
width: 985px;
|
||||
|
||||
}
|
||||
|
||||
/* Footer bottom */
|
||||
#footer_bottom {
|
||||
background: url(../images/bottom.png) no-repeat;
|
||||
width: 985px;
|
||||
height: 28px;
|
||||
|
||||
}
|
||||
|
||||
/* Twitter icon */
|
||||
#twitter {
|
||||
margin: 10px 0px 0px 60px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* The tweet text */
|
||||
#twitter_text {
|
||||
float: left;
|
||||
margin-left: 10px;
|
||||
margin-top: 15px;
|
||||
width: 300px;
|
||||
color: #878787;
|
||||
float: left;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
/* Twitter links */
|
||||
#twitter_text a {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Search form */
|
||||
#searchform {
|
||||
float: right;
|
||||
margin: 15px 60px 0px 0px;
|
||||
/* IE margin fix */
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/* Search input */
|
||||
input#search {
|
||||
background: url(../images/searchfield_bg.png) no-repeat;
|
||||
border: none;
|
||||
height: 31px;
|
||||
width: 244px;
|
||||
float: right;
|
||||
line-height: 30px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
/* The Send button */
|
||||
input#submit {
|
||||
border: none;
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
height: 31px;
|
||||
width: 74px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
input:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
/* Social media */
|
||||
#socialmedia {
|
||||
margin-top: 5px;
|
||||
margin-right: 40px;
|
||||
margin-bottom: 10px;
|
||||
display: inline;
|
||||
list-style: none;
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Social media list items */
|
||||
#socialmedia a{
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* COLOR CHANGER */
|
||||
#colorchanger {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#showChanger {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
#colors {
|
||||
padding: 10px;
|
||||
background: #425a5e;
|
||||
height: 17px;
|
||||
}
|
||||
|
||||
/* The div around the color change links */
|
||||
.colorbox {
|
||||
width:15px;
|
||||
height:15px;
|
||||
border:1px solid #050505;
|
||||
float:left;
|
||||
margin:0px 2px;
|
||||
cursor:pointer;
|
||||
display:block;
|
||||
}
|
||||
|
||||
/* Blue */
|
||||
.colorblue {
|
||||
background-color:#1e82ac;
|
||||
}
|
||||
/* Blue Hover */
|
||||
.colorblue:hover {
|
||||
background-color:#177197;
|
||||
}
|
||||
|
||||
/* Red */
|
||||
.colorred {
|
||||
background-color:#cc2b2b;
|
||||
}
|
||||
/* Red Hover */
|
||||
.colorred:hover {
|
||||
background-color:#af1a1a;
|
||||
}
|
||||
|
||||
/* Grey */
|
||||
.colorgrey {
|
||||
background-color:#4d4d4d;
|
||||
}
|
||||
/* Grey Hover */
|
||||
.colorgrey:hover {
|
||||
background-color:#7c7c7c;
|
||||
}
|
||||
|
||||
/* Brown */
|
||||
.colorbrown {
|
||||
background-color:#4b3a15;
|
||||
}
|
||||
/* Brown Hover */
|
||||
.colorbrown:hover {
|
||||
background-color:#5e4b20;
|
||||
}
|
||||
|
||||
/* Green */
|
||||
.colorgreen {
|
||||
background-color:#6c8b2f;
|
||||
}
|
||||
/* Green Hover */
|
||||
.cologreen:hover {
|
||||
background-color:#7da137;
|
||||
}
|
||||
/* Page title */
|
||||
#header h2 {
|
||||
color: #187086;
|
||||
}
|
||||
|
||||
/* Page links */
|
||||
#text a:hover {
|
||||
color: #16687d;
|
||||
}
|
||||
|
||||
/* Search button */
|
||||
input#submit {
|
||||
background: url(../images/searchbutton_bg.png) no-repeat;
|
||||
}
|
||||
|
||||
/* Twitter links */
|
||||
#twitter_text a {
|
||||
color: #135869;
|
||||
}
|
||||
#textInfo{
|
||||
list-style: square inside none;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
line-height: 20px;
|
||||
}
|
||||
#textInfo li{
|
||||
padding: 5px 0px;
|
||||
text-align: justify;
|
||||
}
|
||||
147
workflow/engine/skinEngine/next/error404.php
Normal file
@@ -0,0 +1,147 @@
|
||||
<?php if (function_exists("http_response_code")) {
|
||||
http_response_code(404);
|
||||
}
|
||||
|
||||
$http = G::is_https() ? "https" : "http";
|
||||
$host = $_SERVER["SERVER_NAME"] . (($_SERVER["SERVER_PORT"] != "80")? ":" . $_SERVER["SERVER_PORT"] : "");
|
||||
|
||||
$urlLogin = $http . "://" . $host . "/sys/en/neoclassic/login/login";
|
||||
$urlHome = $urlLogin;
|
||||
|
||||
if (isset($_GET["url"]) && $_GET["url"] != "") {
|
||||
|
||||
$url = urldecode($_GET["url"]);
|
||||
$url = explode("/", $url);
|
||||
|
||||
$sysSys = "";
|
||||
$sysLang = "";
|
||||
$sysSkin = "";
|
||||
|
||||
if (isset($url[1]) && preg_match("/^sys(.+)$/", $url[1], $match)) {
|
||||
$sysSys = $match[1];
|
||||
|
||||
// Check if sys path exists
|
||||
$checkDir = PATH_DATA."sites/".$sysSys;
|
||||
if(!is_dir($checkDir)) {
|
||||
$sysSys = '';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (isset($url[2])) {
|
||||
$sysLang = $url[2];
|
||||
}
|
||||
|
||||
if (isset($url[3])) {
|
||||
$sysSkin = $url[3];
|
||||
|
||||
// Check if sys path exists
|
||||
$checkDir = PATH_SKIN_ENGINE.$sysSkin;
|
||||
if(!is_dir($checkDir)) {
|
||||
// Try this again
|
||||
$checkDir = PATH_CUSTOM_SKINS.$sysSkin;
|
||||
if(!is_dir($checkDir)) {
|
||||
$sysSkin = '';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($sysSys != "" && $sysLang != "" && $sysSkin != "") {
|
||||
$urlLogin = $http . "://" . $host . "/sys" . $sysSys . "/" . $sysLang . "/" . $sysSkin . "/login/login";
|
||||
$urlHome = $http . "://" . $host . "/sys" . $sysSys . "/" . $sysLang . "/" . $sysSkin . "/cases/main";
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<META http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon"/>
|
||||
<link href="css2/style1.css" type="text/css" rel="stylesheet"/>
|
||||
</head>
|
||||
<body style="margin: 0px; overflow: auto;">
|
||||
<!-- Warp around everything -->
|
||||
<div id="warp">
|
||||
|
||||
|
||||
<!-- Header top -->
|
||||
<div id="header_top"></div>
|
||||
<!-- End header top -->
|
||||
|
||||
|
||||
<!-- Header -->
|
||||
<div id="header">
|
||||
<table border="0" cellspacing="0" cellpadding="0" width="90%">
|
||||
<tr>
|
||||
<td align="center">
|
||||
<h2>Oops, page not found!</h2>
|
||||
<h5>This page may be busy or the URL incorrect.</h5>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- End Header -->
|
||||
|
||||
|
||||
<!-- The content div -->
|
||||
<div id="content">
|
||||
|
||||
<!-- text -->
|
||||
<div id="text">
|
||||
<!-- The info text -->
|
||||
<strong>Possible reasons: </strong>
|
||||
<ul id="textInfo">
|
||||
<li>The link is broken. This may occur when you receive a link via email but your client software adds line breaks, thus distorting long URLs.</li>
|
||||
<li>The page you requested is no longer active.</li>
|
||||
<li>There is a spelling mistake in the link, in case you entered the URL into the browser's address toolbar.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<br/>
|
||||
<h3>What you can do?</h3>
|
||||
<!-- End info text -->
|
||||
<br/>
|
||||
<!-- Page links -->
|
||||
<ul id="textInfo">
|
||||
<li>You might try retyping the URL and trying again.</li>
|
||||
<li>Or we could take you back to the <a href="<?php echo htmlspecialchars($urlHome); ?>">home page.</a></li>
|
||||
<li>Or you could start again from the <a href="<?php echo htmlspecialchars($urlLogin); ?>">login page.</a></li>
|
||||
</ul>
|
||||
<!-- End page links -->
|
||||
</div>
|
||||
<!-- End info text -->
|
||||
|
||||
|
||||
<!-- Book icon -->
|
||||
<img id="book" src="images/img-01.png" alt="Book iCon" />
|
||||
<!-- End Book icon -->
|
||||
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
<!-- End Content -->
|
||||
|
||||
|
||||
<!-- Footer -->
|
||||
<div id="footer" style="padding-top: 10px; color: #878787; font-size: 10px; text-align: center;">
|
||||
<span>© Copyright 2000 - <?php echo date("Y"); ?> </span>
|
||||
</div>
|
||||
<!-- End Footer -->
|
||||
|
||||
|
||||
<!-- Footer bottom -->
|
||||
<div id="footer_bottom"></div>
|
||||
<!-- End Footer bottom -->
|
||||
|
||||
|
||||
<!-- Social Media list -->
|
||||
|
||||
|
||||
<!-- End Social media -->
|
||||
<div style="clear:both;"></div>
|
||||
|
||||
|
||||
</div>
|
||||
<!-- End Warp around everything -->
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
64
workflow/engine/skinEngine/next/extJsInitLoad.html
Normal file
@@ -0,0 +1,64 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon"/>
|
||||
{header}
|
||||
<style>
|
||||
#loading-mask{
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
width:100%;
|
||||
height:100%;
|
||||
z-index:20000;
|
||||
background-color:white;
|
||||
}
|
||||
#loading{
|
||||
position:absolute;
|
||||
left:40%;
|
||||
top:37%;
|
||||
padding:2px;
|
||||
z-index:20001;
|
||||
height:auto;
|
||||
}
|
||||
#loading a {
|
||||
color:#225588;
|
||||
}
|
||||
#loading .loading-indicator{
|
||||
background:white;
|
||||
color:#444;
|
||||
font:bold 13px tahoma,arial,helvetica;
|
||||
padding:10px;
|
||||
margin:0;
|
||||
height:auto;
|
||||
}
|
||||
#loading-msg {
|
||||
font: bold 11px arial,tahoma,sans-serif;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="loading-mask" style=""></div>
|
||||
<div id="loading">
|
||||
<div class="loading-indicator">
|
||||
<center>
|
||||
<img src="/images/gears.gif"/><br />
|
||||
<span id="loading-msg">Loading styles and images...</span><br />
|
||||
<a href="http://www.processmaker.com">
|
||||
<img src="/images/processmaker.logo.jpg" border="0"/>
|
||||
</a>
|
||||
</center>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">document.getElementById('loading-msg').innerHTML = 'Loading Core API...';</script>
|
||||
<script type='text/javascript' src='/js/ext/ext-base.js'></script>
|
||||
<script type="text/javascript">document.getElementById('loading-msg').innerHTML = 'Loading UI Components...';</script>
|
||||
<script type='text/javascript' src='/js/ext/ext-all.js'></script>
|
||||
<script type="text/javascript">document.getElementById('loading-msg').innerHTML = 'Loading UI Extensions';</script>
|
||||
<script type="text/javascript">document.getElementById('loading-msg').innerHTML = 'Initializing...';</script>
|
||||
{styles}
|
||||
|
||||
{bodyTemplate}
|
||||
</body>
|
||||
</html>
|
||||
BIN
workflow/engine/skinEngine/next/images/background.jpg
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
workflow/engine/skinEngine/next/images/background2.jpg
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
workflow/engine/skinEngine/next/images/bottom.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
workflow/engine/skinEngine/next/images/box_bg.png
Normal file
|
After Width: | Height: | Size: 267 B |
BIN
workflow/engine/skinEngine/next/images/colortab.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
workflow/engine/skinEngine/next/images/colosa.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
workflow/engine/skinEngine/next/images/content_bg.png
Normal file
|
After Width: | Height: | Size: 277 B |
BIN
workflow/engine/skinEngine/next/images/fa-hand-pointer-o.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
workflow/engine/skinEngine/next/images/img-01.png
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
workflow/engine/skinEngine/next/images/img-02.png
Normal file
|
After Width: | Height: | Size: 60 KiB |