removing neoclassic skin
@@ -74,14 +74,14 @@ Processmaker OAuth2
|
||||
#1. Registering an Application
|
||||
First Login on ProcessMaker and go to the following url:
|
||||
|
||||
Link: http://<your-pm-server>/sys<your-workspace>/en/neoclassic/oauth2/register
|
||||
Link: http://<your-pm-server>/sys<your-workspace>/en/lurana/oauth2/register
|
||||
Register your application and get your Client ID and Client Secret credentials.
|
||||
|
||||
#2. Request Authorization for an application
|
||||
|
||||
Authorize your app, with following url:
|
||||
|
||||
Link: http://<your-pm-server>/sys<your-workspace>/en/neoclassic/oauth2/authorize?response_type=code&client_id={your-client-d}&scope=view_processes%20edit_processes
|
||||
Link: http://<your-pm-server>/sys<your-workspace>/en/lurana/oauth2/authorize?response_type=code&client_id={your-client-d}&scope=view_processes%20edit_processes
|
||||
|
||||
Required Parameters | Description | Valid Values
|
||||
------------------- |:------------- |:---------------------------
|
||||
|
||||
@@ -113,7 +113,7 @@ workflow/engine/plugins/pmosCommunity/setupPage.xml
|
||||
workflow/engine/plugins/processTemplate.php
|
||||
workflow/engine/plugins/processTemplate/class.processTemplate.php
|
||||
workflow/engine/skinEngine/base/images/updating/page_background.png
|
||||
workflow/engine/skinEngine/neoclassic/images/updating/page_background.png
|
||||
workflow/engine/skinEngine/lurana/images/updating/page_background.png
|
||||
workflow/engine/src/ProcessMaker/Services/Api/Test2.php
|
||||
workflow/engine/src/ProcessMaker/Services/Api/Test3.php
|
||||
workflow/engine/src/Tests
|
||||
|
||||
@@ -4,7 +4,7 @@ Feature: Generate token Grant type - Authorization Code
|
||||
a workspace with open session and installed application
|
||||
|
||||
|
||||
# OAUTH /en/neoclassic/oauth2
|
||||
# OAUTH /en/lurana/oauth2
|
||||
# In order to generate a new token create a new CLIENT_ID and CLIENT_SECRET
|
||||
Scenario Outline: Create new CLIENT_ID and CLIENT_SECRET in order to generate a new token
|
||||
Given OAUTH register an application
|
||||
@@ -20,8 +20,8 @@ Feature: Generate token Grant type - Authorization Code
|
||||
Examples:
|
||||
|
||||
| Description | application_number | application_name | application_description | application_website | application_redirectUri |
|
||||
| Create token normal | 1 | Behat1 | Behat1 desc | http://www.processmaker.com | http://michelangelo-be.colosa.net/sysmichelangelo/en/neoclassic/oauth2/grant |
|
||||
| Create token normal | 2 | Behat2 | Behat2 desc | http://www.processmaker.com | http://michelangelo-be.colosa.net/sysmichelangelo/en/neoclassic/oauth2/grant |
|
||||
| Create token normal | 1 | Behat1 | Behat1 desc | http://www.processmaker.com | http://michelangelo-be.colosa.net/sysmichelangelo/en/lurana/oauth2/grant |
|
||||
| Create token normal | 2 | Behat2 | Behat2 desc | http://www.processmaker.com | http://michelangelo-be.colosa.net/sysmichelangelo/en/lurana/oauth2/grant |
|
||||
|
||||
|
||||
# GET /api/1.0/{workspace}/project/<project>/output-documents
|
||||
@@ -54,7 +54,7 @@ Feature: Generate token Grant type - Authorization Code
|
||||
| List Outputs in process "Process Complete BPMN" | 1455892245368ebeb11c1a5001393784 | 1 | Output Document | 2 |
|
||||
|
||||
|
||||
# POST /en/neoclassic/oauth2/access_token/expire
|
||||
# POST /en/lurana/oauth2/access_token/expire
|
||||
# Endpoint para hacer que expire los token creados en este script
|
||||
Scenario Outline: Expire token created in this script
|
||||
Given POST this data:
|
||||
@@ -85,7 +85,7 @@ Feature: Generate token Grant type - Authorization Code
|
||||
| List Outputs in process "Process Complete BPMN" | 1455892245368ebeb11c1a5001393784 | 1 | Output Document | 2 | Unauthorized |
|
||||
|
||||
|
||||
# POST /en/neoclassic/oauth2/refresh_token_<grant_number>
|
||||
# POST /en/lurana/oauth2/refresh_token_<grant_number>
|
||||
# Grant type Refresh Token
|
||||
Scenario Outline: Refresh token
|
||||
Given POST this data:
|
||||
@@ -128,7 +128,7 @@ Feature: Generate token Grant type - Authorization Code
|
||||
| List Outputs in process "Process Complete BPMN" | 1455892245368ebeb11c1a5001393784 | 1 | Output Document | 4 |
|
||||
|
||||
|
||||
# DELETE /en/neoclassic/oauth2
|
||||
# DELETE /en/lurana/oauth2
|
||||
# Endpoint para borrar el token creado en este script
|
||||
Scenario Outline: Delete all tokens created previously in this script
|
||||
Given that I want to delete a resource with the key "access_token_<application_number>" stored in session array
|
||||
|
||||
@@ -6,7 +6,7 @@ if (function_exists("http_response_code")) {
|
||||
$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";
|
||||
$urlLogin = $http . "://" . $host . "/sys/en/lurana/login/login";
|
||||
$urlHome = $urlLogin;
|
||||
|
||||
if (isset($_GET["url"]) && $_GET["url"] != "") {
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
$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";
|
||||
$urlLogin = $http . "://" . $host . "/sys/en/lurana/login/login";
|
||||
$urlHome = $urlLogin;
|
||||
|
||||
if (isset($_GET["url"]) && $_GET["url"] != "") {
|
||||
|
||||
@@ -853,34 +853,34 @@ class Bootstrap
|
||||
}
|
||||
|
||||
/**
|
||||
* streaming a big JS file with small js files
|
||||
* Dynamically generates and streams a CSS file by aggregating smaller CSS files.
|
||||
*
|
||||
* This function is designed to serve CSS content dynamically based on different skins or themes.
|
||||
* It reads configuration files to determine which CSS files to include, handles caching headers,
|
||||
* and performs browser-specific logic to ensure compatibility.
|
||||
*
|
||||
* @author Fernando Ontiveros Lira <fernando@colosa.com>
|
||||
* @access public
|
||||
* @param string $file
|
||||
* @return string
|
||||
* @param string $filename The name of the file, used to determine the skin and variant.
|
||||
* @return string The aggregated and minified CSS content.
|
||||
*/
|
||||
public static function streamCSSBigFile($filename)
|
||||
{
|
||||
// Set the content type to CSS and prevent MIME type sniffing
|
||||
header('Content-Type: text/css');
|
||||
header('X-Content-Type-Options: nosniff');
|
||||
|
||||
//First get Skin info
|
||||
// Parse the filename to extract skin name and variant
|
||||
$filenameParts = explode("-", $filename);
|
||||
$skinName = empty($filenameParts[0]) ? 'base' : $filenameParts[0];
|
||||
$skinVariant = "skin";
|
||||
$skinName = !empty($filenameParts[0]) ? $filenameParts[0] : 'base';
|
||||
$skinVariant = isset($filenameParts[1]) ? strtolower($filenameParts[1]) : 'skin';
|
||||
|
||||
if (isset($filenameParts[1])) {
|
||||
$skinVariant = strtolower($filenameParts[1]);
|
||||
// Normalize skin names
|
||||
if (in_array($skinName, ['jscolors', 'xmlcolors'])) {
|
||||
$skinName = 'classic';
|
||||
}
|
||||
|
||||
// Determine the configuration file path based on the skin name
|
||||
$configurationFile = '';
|
||||
if ($skinName == "jscolors") {
|
||||
$skinName = "classic";
|
||||
}
|
||||
if ($skinName == "xmlcolors") {
|
||||
$skinName = "classic";
|
||||
}
|
||||
if ($skinName == "classic") {
|
||||
$configurationFile = Bootstrap::ExpandPath("skinEngine") . 'base' . PATH_SEP . 'config.xml';
|
||||
} else {
|
||||
@@ -894,50 +894,49 @@ class Bootstrap
|
||||
$configurationFile = Bootstrap::ExpandPath("skinEngine") . $skinName . PATH_SEP . 'config.xml';
|
||||
}
|
||||
}
|
||||
// Fallback to base configuration if the specific one doesn't exist
|
||||
if (!file_exists($configurationFile)) {
|
||||
$configurationFile = Bootstrap::ExpandPath("skinEngine") . 'base' . PATH_SEP . 'config.xml';
|
||||
}
|
||||
}
|
||||
|
||||
$mtime = date('U');
|
||||
// Set caching headers
|
||||
$mtime = time();
|
||||
$gmt_mtime = gmdate("D, d M Y H:i:s", $mtime) . " GMT";
|
||||
$etag = '"' . Bootstrap::encryptOld($mtime . $filename) . '"';
|
||||
$expires = gmdate("D, d M Y H:i:s", $mtime + 30 * 24 * 60 * 60) . " GMT"; // 1 month
|
||||
|
||||
header('Pragma: cache');
|
||||
header('ETag: "' . Bootstrap::encryptOld($mtime . $filename) . '"');
|
||||
header("Last-Modified: " . $gmt_mtime);
|
||||
header('ETag: ' . $etag);
|
||||
header('Last-Modified: ' . $gmt_mtime);
|
||||
header('Cache-Control: public');
|
||||
header("Expires: " . gmdate("D, d M Y H:i:s", time() + 30 * 60 * 60 * 24) . " GMT"); //1 month
|
||||
//header("Expires: " . gmdate("D, d M Y H:i:s", time () + 60*60*24 ) . " GMT"); //1 day - tempor
|
||||
if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
|
||||
if ($_SERVER['HTTP_IF_MODIFIED_SINCE'] == $gmt_mtime) {
|
||||
header('HTTP/1.1 304 Not Modified');
|
||||
exit();
|
||||
}
|
||||
header('Expires: ' . $expires);
|
||||
|
||||
// Handle conditional requests for caching
|
||||
$ifModifiedSince = $_SERVER['HTTP_IF_MODIFIED_SINCE'] ?? null;
|
||||
$ifNoneMatch = $_SERVER['HTTP_IF_NONE_MATCH'] ?? null;
|
||||
|
||||
if (($ifModifiedSince && $ifModifiedSince === $gmt_mtime) ||
|
||||
($ifNoneMatch && str_replace('"', '', stripslashes($ifNoneMatch)) === Bootstrap::encryptOld($mtime . $filename))) {
|
||||
header('HTTP/1.1 304 Not Modified');
|
||||
exit();
|
||||
}
|
||||
|
||||
if (isset($_SERVER['HTTP_IF_NONE_MATCH'])) {
|
||||
if (str_replace('"', '', stripslashes($_SERVER['HTTP_IF_NONE_MATCH'])) == Bootstrap::encryptOld($mtime . $filename)) {
|
||||
header("HTTP/1.1 304 Not Modified");
|
||||
exit();
|
||||
}
|
||||
}
|
||||
|
||||
//Read Configuration File
|
||||
// Read and parse the configuration XML file
|
||||
$xmlConfiguration = file_get_contents($configurationFile);
|
||||
$xmlConfigurationObj = Bootstrap::xmlParser($xmlConfiguration);
|
||||
$baseSkinDirectory = dirname($configurationFile);
|
||||
$directorySize = Bootstrap::getDirectorySize($baseSkinDirectory);
|
||||
$mtime = $directorySize['maxmtime'];
|
||||
|
||||
//if userAgent (BROWSER) is MSIE we need special headers to avoid MSIE behaivor.
|
||||
//$userAgent = strtolower($_SERVER['HTTP_USER_AGENT']);
|
||||
|
||||
$outputHeader = "/* Autogenerated CSS file by gulliver framework \n";
|
||||
// Prepare the CSS output with a header comment
|
||||
$outputHeader = "/* Autogenerated CSS file by gulliver framework ** \n";
|
||||
$outputHeader .= " Skin: $filename\n";
|
||||
$mtimeNow = date('U');
|
||||
$gmt_mtimeNow = gmdate("D, d M Y H:i:s", $mtimeNow) . " GMT";
|
||||
$outputHeader .= " Date: $gmt_mtimeNow*/\n";
|
||||
$output = "";
|
||||
|
||||
//Base files
|
||||
// Include base CSS files based on the skin variant
|
||||
switch (strtolower($skinVariant)) {
|
||||
case "extjs":
|
||||
//Base
|
||||
@@ -952,7 +951,7 @@ class Bootstrap
|
||||
break;
|
||||
}
|
||||
|
||||
//Get Browser Info
|
||||
// Get browser information for compatibility checks
|
||||
$infoBrowser = Bootstrap::get_current_browser();
|
||||
$browserName = $infoBrowser['browser_working'];
|
||||
if (isset($infoBrowser[$browserName . '_data'])) {
|
||||
@@ -961,7 +960,7 @@ class Bootstrap
|
||||
}
|
||||
}
|
||||
|
||||
//Read Configuration File
|
||||
// Parse the configuration to get the list of CSS files to include
|
||||
$xmlConfiguration = file_get_contents($configurationFile);
|
||||
$xmlConfigurationObj = Bootstrap::xmlParser($xmlConfiguration);
|
||||
|
||||
@@ -972,6 +971,8 @@ class Bootstrap
|
||||
if (isset($skinFilesArray['__ATTRIBUTES__'])) {
|
||||
$skinFilesArray = array($skinFilesArray);
|
||||
}
|
||||
|
||||
// Iterate over each CSS file and include it if compatible with the current browser
|
||||
foreach ($skinFilesArray as $keyFile => $cssFileInfo) {
|
||||
$enabledBrowsers = explode(",", $cssFileInfo['__ATTRIBUTES__']['enabledBrowsers']);
|
||||
$disabledBrowsers = explode(",", $cssFileInfo['__ATTRIBUTES__']['disabledBrowsers']);
|
||||
@@ -999,8 +1000,14 @@ class Bootstrap
|
||||
}
|
||||
}
|
||||
|
||||
//Remove comments..
|
||||
$regex = array("`^([\t\s]+)`ism" => '', "`^\/\*(.+?)\*\/`ism" => "", "`([\n;]+)\/\*(.+?)\*\/`ism" => "$1", "`([\n;\s]+)//(.+?)[\n\r]`ism" => "$1\n", "`(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+`ism" => "\n");
|
||||
// Minify the CSS by removing comments and unnecessary whitespace
|
||||
$regex = array(
|
||||
"`^([\t\s]+)`ism" => '',
|
||||
"`^\/\*(.+?)\*\/`ism" => "",
|
||||
"`([\n;]+)\/\*(.+?)\*\/`ism" => "$1",
|
||||
"`([\n;\s]+)//(.+?)[\n\r]`ism" => "$1\n",
|
||||
"`(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+`ism" => "\n"
|
||||
);
|
||||
$output = preg_replace(array_keys($regex), $regex, $output);
|
||||
$output = $outputHeader . $output;
|
||||
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
<var name="APP_ENV" value="testing" />
|
||||
<var name="SYS_SYS" value="test" />
|
||||
<var name="SYS_LANG" value="en" />
|
||||
<var name="SYS_SKIN" value="neoclassic" />
|
||||
<var name="SYS_SKIN" value="lurana" />
|
||||
<var name="DB_ADAPTER" value="mysql" />
|
||||
<var name="DB_HOST" value="processmaker3" />
|
||||
<var name="DB_NAME" value="wf_test" />
|
||||
|
||||
@@ -25,11 +25,11 @@ Vue.use(ClientTable, {}, false, 'bootstrap3', {
|
||||
window.ProcessMaker = {
|
||||
apiClient: require('axios')
|
||||
};
|
||||
window.ProcessMaker.pluginBase = "/sysworkflow/en/neoclassic/viena/index.php";
|
||||
window.ProcessMaker.apiClient.defaults.baseURL = '/sysworkflow/en/neoclassic/viena/index.php/api/';
|
||||
window.ProcessMaker.pluginBase = "/sysworkflow/en/lurana/viena/index.php";
|
||||
window.ProcessMaker.apiClient.defaults.baseURL = '/sysworkflow/en/lurana/viena/index.php/api/';
|
||||
window.ProcessMaker.SYS_SYS = "workflow";
|
||||
window.ProcessMaker.SYS_LANG = "en";
|
||||
window.ProcessMaker.SYS_SKIN = "neoclassic";
|
||||
window.ProcessMaker.SYS_SKIN = "lurana";
|
||||
|
||||
let messages = {};
|
||||
messages[config.SYS_LANG] = config.TRANSLATIONS;
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
ROUTE_CASE: "/light/cases/{app_uid}/route-case",
|
||||
CLAIM_CASE: "/case/{app_uid}/claim",
|
||||
GET_FILE_VERSIONS: "/cases/{app_uid}/input-document/{app_doc_uid}/versions",
|
||||
REGISTER: "https:trial32.processmaker.com/syscolosa/en/neoclassic_pro/9893000714bdb2d52ecc317052629917/Trial_RequestPostMobile.php",
|
||||
REGISTER: "https:trial32.processmaker.com/syscolosa/en/lurana/9893000714bdb2d52ecc317052629917/Trial_RequestPostMobile.php",
|
||||
POST_NOTE: "/case/{app_uid}/note",
|
||||
LAST_OPEN_INDEX: "/light/lastopenindex/case/{app_uid}",
|
||||
REGISTER_WITH_GOOGLE_FAKE_URL: "fakeurl",
|
||||
|
||||
@@ -39,11 +39,11 @@ window.ProcessMaker = {
|
||||
apiClient: require('axios')
|
||||
};
|
||||
|
||||
window.ProcessMaker.pluginBase = "/sysworkflow/en/neoclassic/viena/index.php";
|
||||
window.ProcessMaker.apiClient.defaults.baseURL = '/sysworkflow/en/neoclassic/viena/index.php/api/';
|
||||
window.ProcessMaker.pluginBase = "/sysworkflow/en/lurana/viena/index.php";
|
||||
window.ProcessMaker.apiClient.defaults.baseURL = '/sysworkflow/en/lurana/viena/index.php/api/';
|
||||
window.ProcessMaker.SYS_SYS = "workflow";
|
||||
window.ProcessMaker.SYS_LANG = "en";
|
||||
window.ProcessMaker.SYS_SKIN = "neoclassic";
|
||||
window.ProcessMaker.SYS_SKIN = "lurana";
|
||||
|
||||
let messages = {};
|
||||
messages[config.SYS_LANG] = config.TRANSLATIONS;
|
||||
|
||||
@@ -39,7 +39,7 @@ class WorkflowTestCase extends TestCaseFramework
|
||||
$pdo->exec(file_get_contents(PATH_RBAC_CORE.'data/mysql/insert.sql'));
|
||||
$pdo->exec("INSERT INTO `APP_SEQUENCE` (`ID`) VALUES ('1')");
|
||||
$pdo->exec("INSERT INTO `OAUTH_CLIENTS` (`CLIENT_ID`, `CLIENT_SECRET`, `CLIENT_NAME`, `CLIENT_DESCRIPTION`, `CLIENT_WEBSITE`, `REDIRECT_URI`, `USR_UID`) VALUES
|
||||
('x-pm-local-client', '179ad45c6ce2cb97cf1029e212046e81', 'PM Web Designer', 'ProcessMaker Web Designer App', 'www.processmaker.com', 'http://".$_SERVER["HTTP_HOST"].":".$_SERVER['SERVER_PORT']."/sys".config("system.workspace")."/en/neoclassic/oauth2/grant', '00000000000000000000000000000001');");
|
||||
('x-pm-local-client', '179ad45c6ce2cb97cf1029e212046e81', 'PM Web Designer', 'ProcessMaker Web Designer App', 'www.processmaker.com', 'http://".$_SERVER["HTTP_HOST"].":".$_SERVER['SERVER_PORT']."/sys".config("system.workspace")."/en/lurana/oauth2/grant', '00000000000000000000000000000001');");
|
||||
$pdo->exec("INSERT INTO `OAUTH_ACCESS_TOKENS` (`ACCESS_TOKEN`, `CLIENT_ID`, `USER_ID`, `EXPIRES`, `SCOPE`) VALUES
|
||||
('39704d17049f5aef45e884e7b769989269502f83', 'x-pm-local-client', '00000000000000000000000000000001', '2017-06-15 17:55:19', 'view_processes edit_processes *');");
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@ define('PATH_RBAC_CORE', dirname(__DIR__) . '/rbac/engine/');
|
||||
define('PATH_DB', PATH_DATA . 'sites/');
|
||||
// Define some values related to the workspace
|
||||
define('SYS_LANG', 'en');
|
||||
define('SYS_SKIN', 'neoclassic');
|
||||
define('SYS_SKIN', 'lurana');
|
||||
define('SYS_SYS', env('MAIN_SYS_SYS', 'workflow'));
|
||||
define('PMTABLE_KEY', 'pmtable');
|
||||
define('DB_ADAPTER', 'mysql');
|
||||
@@ -187,7 +187,7 @@ function refreshDatabases(): void
|
||||
'CLIENT_NAME' => 'PM Web Designer',
|
||||
'CLIENT_DESCRIPTION' => 'ProcessMaker Web Designer App',
|
||||
'CLIENT_WEBSITE' => 'www.processmaker.com',
|
||||
'REDIRECT_URI' => config('app.url') . '/sys' . config('system.workspace') . '/en/neoclassic/oauth2/grant',
|
||||
'REDIRECT_URI' => config('app.url') . '/sys' . config('system.workspace') . '/en/lurana/oauth2/grant',
|
||||
'USR_UID' => '00000000000000000000000000000001'
|
||||
]);
|
||||
DB::table('OAUTH_ACCESS_TOKENS')->insert([
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"__SYSTEM_UTC_TIME_ZONE__": true,
|
||||
"phpLastFileFound": "\/sysworkflow\/en\/neoclassic\/gulliver\/defaultAjaxDynaform",
|
||||
"phpLastFileFound": "\/sysworkflow\/en\/lurana\/gulliver\/defaultAjaxDynaform",
|
||||
"USERNAME_PREVIOUS1": "",
|
||||
"USERNAME_PREVIOUS2": "admin",
|
||||
"WORKSPACE": "workflow",
|
||||
@@ -11,7 +11,7 @@
|
||||
"USR_FULLNAME": "Administrator admin",
|
||||
"user_experience": "NORMAL",
|
||||
"CONDITION_DYN_UID": "3411353005d41d9a730ede8060385476",
|
||||
"currentSkin": "neoclassic",
|
||||
"currentSkin": "lurana",
|
||||
"currentSkinVariant": "extJs",
|
||||
"PROCESS": "2859218665d41d7c2920598058137861",
|
||||
"PROCESSMAP": "LEIMNUD",
|
||||
|
||||
@@ -30,7 +30,7 @@ class BootstrapTest extends TestCase
|
||||
{
|
||||
$userAgent = $this->faker->userAgent;
|
||||
$_SERVER ['HTTP_USER_AGENT'] = $userAgent;
|
||||
$filename = "neoclassic";
|
||||
$filename = "lurana";
|
||||
$result = Bootstrap::streamCSSBigFile($filename);
|
||||
|
||||
//add more assertions
|
||||
|
||||
@@ -494,7 +494,7 @@ class CasesTest extends TestCase
|
||||
|
||||
$arrayData = [
|
||||
"SYS_LANG" => "en",
|
||||
"SYS_SKIN" => "neoclassic",
|
||||
"SYS_SKIN" => "lurana",
|
||||
"SYS_SYS" => "workflow",
|
||||
"APPLICATION" => $application->APP_UID,
|
||||
"PROCESS" => $process->PRO_UID,
|
||||
@@ -597,7 +597,7 @@ class CasesTest extends TestCase
|
||||
|
||||
$arrayData = [
|
||||
"SYS_LANG" => "en",
|
||||
"SYS_SKIN" => "neoclassic",
|
||||
"SYS_SKIN" => "lurana",
|
||||
"SYS_SYS" => "workflow",
|
||||
"APPLICATION" => $application->APP_UID,
|
||||
"PROCESS" => $process->PRO_UID,
|
||||
@@ -700,7 +700,7 @@ class CasesTest extends TestCase
|
||||
|
||||
$arrayData = [
|
||||
"SYS_LANG" => "en",
|
||||
"SYS_SKIN" => "neoclassic",
|
||||
"SYS_SKIN" => "lurana",
|
||||
"SYS_SYS" => "workflow",
|
||||
"APPLICATION" => $application->APP_UID,
|
||||
"PROCESS" => $process->PRO_UID,
|
||||
|
||||
@@ -1186,7 +1186,7 @@ class PmDynaformTest extends TestCase
|
||||
public function it_should_test_get_credentials_destroy_user_logged_if_not_authenticated_user()
|
||||
{
|
||||
// Set the request URI, this is required by the method "getCredentials"
|
||||
$_SERVER['REQUEST_URI'] = '/sysworkflow/en/neoclassic/tracker/tracker_Show';
|
||||
$_SERVER['REQUEST_URI'] = '/sysworkflow/en/lurana/tracker/tracker_Show';
|
||||
|
||||
// Destroy variable for "USER_LOGGED" if exists
|
||||
unset($_SESSION['USER_LOGGED']);
|
||||
|
||||
@@ -620,7 +620,7 @@ class ReportTablesTest extends TestCase
|
||||
$dataFields = $structure['data'];
|
||||
$appData = [
|
||||
'SYS_LANG' => 'en',
|
||||
'SYS_SKIN' => 'neoclassic',
|
||||
'SYS_SKIN' => 'lurana',
|
||||
'SYS_SYS' => 'workflow',
|
||||
'APPLICATION' => G::generateUniqueID(),
|
||||
'PROCESS' => G::generateUniqueID(),
|
||||
|
||||
@@ -64,7 +64,7 @@ class WsBaseTest extends TestCase
|
||||
|
||||
$appData = [
|
||||
'SYS_LANG' => 'en',
|
||||
'SYS_SKIN' => 'neoclassic',
|
||||
'SYS_SKIN' => 'lurana',
|
||||
'SYS_SYS' => 'workflow',
|
||||
'APPLICATION' => $applicationUid,
|
||||
'PROCESS' => $processUid,
|
||||
|
||||
@@ -46,7 +46,7 @@ class SkinsTest extends TestCase
|
||||
$skins = $this->object->getSkins();
|
||||
$this->assertCount(2, $skins);
|
||||
$this->assertEquals($skins[0]['SKIN_FOLDER_ID'], 'classic');
|
||||
$this->assertEquals($skins[1]['SKIN_FOLDER_ID'], 'neoclassic');
|
||||
$this->assertEquals($skins[1]['SKIN_FOLDER_ID'], 'lurana');
|
||||
$this->object->createSkin('test', 'test');
|
||||
$skins2 = $this->object->getSkins();
|
||||
$this->assertCount(3, $skins2);
|
||||
@@ -63,7 +63,7 @@ class SkinsTest extends TestCase
|
||||
public function testGetSkinsCurrentWorkspace()
|
||||
{
|
||||
$this->object->createSkin('test', 'test');
|
||||
$this->object->createSkin('test2', 'test2', 'Second skin', 'ProcessMaker Team', 'current', 'neoclassic');
|
||||
$this->object->createSkin('test2', 'test2', 'Second skin', 'ProcessMaker Team', 'current', 'lurana');
|
||||
$skins = $this->object->getSkins();
|
||||
$skins = collect($skins)
|
||||
->sortBy('SKIN_FOLDER_ID')
|
||||
|
||||
@@ -122,7 +122,7 @@ class JavaBridgePM
|
||||
$template->assign( 'heightDetail', count( $xmlFields ) * 15 + 20 );
|
||||
$template->assign( 'PAGE_NUMBER', '{PAGE_NUMBER}' );
|
||||
|
||||
$logoReporte = System::getServerProtocolHost() . '/images/processmaker.logo.jpg';
|
||||
$logoReporte = System::getServerProtocolHost() . '/images/lurana.logo.png';
|
||||
$template->assign( 'logoReporte', $logoReporte );
|
||||
|
||||
foreach ($xmlFields as $key => $val) {
|
||||
|
||||
@@ -2408,7 +2408,7 @@ class WorkspaceTools
|
||||
$SERVER_INFO = unserialize($SERVER_INFO);
|
||||
|
||||
$envFile = PATH_CONFIG . 'env.ini';
|
||||
$skin = 'neoclassic';
|
||||
$skin = 'lurana';
|
||||
if (file_exists($envFile)) {
|
||||
$sysConf = System::getSystemConfiguration($envFile);
|
||||
$lang = $sysConf['default_lang'];
|
||||
|
||||
@@ -848,7 +848,7 @@ class InstallerModule extends Controller
|
||||
$langUri = $sysConf['default_lang'];
|
||||
}
|
||||
|
||||
$skinUri = 'neoclassic';
|
||||
$skinUri = 'lurana';
|
||||
if (isset($sysConf['default_skin'])) {
|
||||
$skinUri = $sysConf['default_skin'];
|
||||
}
|
||||
|
||||
@@ -43,7 +43,7 @@ class Home extends Controller
|
||||
|
||||
// getting the ux type from user o group conf.
|
||||
$this->userUxType = isset($_SESSION['user_experience']) ? $_SESSION['user_experience'] : 'SIMPLIFIED';
|
||||
$this->lastSkin = isset($_SESSION['user_last_skin']) ? $_SESSION['user_last_skin'] : 'neoclassic';
|
||||
$this->lastSkin = isset($_SESSION['user_last_skin']) ? $_SESSION['user_last_skin'] : 'lurana';
|
||||
$this->userUxBaseTemplate = (is_dir(PATH_CUSTOM_SKINS . 'uxs')) ? PATH_CUSTOM_SKINS . 'simplified' . PATH_SEP . 'templates' : 'home';
|
||||
|
||||
if (isset($_SESSION['USER_LOGGED']) && ! empty($_SESSION['USER_LOGGED'])) {
|
||||
|
||||
@@ -39,13 +39,13 @@ $(window).load(function () {
|
||||
//In case the form is in review
|
||||
if (filePost.indexOf('Supervisor') >= 0){
|
||||
action = 'cases_SaveDataSupervisor?UID=' + dyn_uid;
|
||||
url += '/sys' + workspace + '/en/neoclassic/cases/' + action;
|
||||
url += '/sys' + workspace + '/en/lurana/cases/' + action;
|
||||
} else if(filePost.indexOf('Email') >= 0){ //In case the form is sent as Email response
|
||||
action = filePost;
|
||||
url += '/sys' + workspace + '/en/neoclassic/services/' + action;
|
||||
url += '/sys' + workspace + '/en/lurana/services/' + action;
|
||||
} else { //In case the form is in web entry
|
||||
action = prj_uid + '/' + filePost;
|
||||
url += '/sys' + workspace + '/en/neoclassic/' + action;
|
||||
url += '/sys' + workspace + '/en/lurana/' + action;
|
||||
}
|
||||
method = 'POST';
|
||||
} else if (app_uid){ //In case the form is in running cases
|
||||
@@ -56,7 +56,7 @@ $(window).load(function () {
|
||||
}
|
||||
url = location.protocol + '//' + location.host;
|
||||
|
||||
url += '/sys' + workspace + '/en/neoclassic/cases/' + action;
|
||||
url += '/sys' + workspace + '/en/lurana/cases/' + action;
|
||||
method = 'POST';
|
||||
}
|
||||
return {
|
||||
|
||||
@@ -58,7 +58,7 @@ $urlToRedirectAfterPause = 'casesListExtJs';
|
||||
$pmGoogle = new PmGoogleApi();
|
||||
if (array_key_exists('gmail', $_SESSION) && $_SESSION['gmail'] == 1 && $pmGoogle->getServiceGmailStatus()) {
|
||||
$_SESSION['gmail'] = 0;
|
||||
$urlToRedirectAfterPause = '/sys' . $_SESSION['WORKSPACE'] . '/en/neoclassic/cases/cases_Open?APP_UID=' . $_SESSION['APPLICATION'] . '&DEL_INDEX=' . $_SESSION['INDEX'] . '&action=sent';
|
||||
$urlToRedirectAfterPause = '/sys' . $_SESSION['WORKSPACE'] . '/en/lurana/cases/cases_Open?APP_UID=' . $_SESSION['APPLICATION'] . '&DEL_INDEX=' . $_SESSION['INDEX'] . '&action=sent';
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ if ($userExists === true && $userData['USR_EMAIL'] != '' && $userData['USR_EMAIL
|
||||
|
||||
$body = "
|
||||
<table style=\"background-color: white; font-family: Arial,Helvetica,sans-serif; color: black; font-size: 11px; text-align: left;\" cellpadding='10' cellspacing='0' width='100%'>
|
||||
<tbody><tr><td><img id='logo' src='http://" . $_SERVER['SERVER_NAME'] . "/images/processmaker.logo.jpg' /></td></tr>
|
||||
<tbody><tr><td><img id='logo' src='http://" . $_SERVER['SERVER_NAME'] . "/images/lurana.logo.png' /></td></tr>
|
||||
<tr><td style='font-size: 14px;'>$msg</td></tr>
|
||||
<tr><td style='vertical-align:middel;'>
|
||||
<br /><hr><b>This Business Process is powered by ProcessMaker ver. " . System::getVersion() . ".<b><br />
|
||||
|
||||
@@ -6,7 +6,7 @@ $content = file_get_contents($filewsdl);
|
||||
$http = G::is_https() ? 'https' : 'http';
|
||||
$port = $_SERVER['SERVER_PORT'] === '80' ? '' : ':' . $_SERVER['SERVER_PORT'];
|
||||
$lang = defined('SYS_LANG') ? SYS_LANG : 'en';
|
||||
$endpoint = $http . '://' . $_SERVER['SERVER_NAME'] . $port . '/sys' . config("system.workspace") . '/' . $lang . '/neoclassic/services/soap2';
|
||||
$endpoint = $http . '://' . $_SERVER['SERVER_NAME'] . $port . '/sys' . config("system.workspace") . '/' . $lang . '/lurana/services/soap2';
|
||||
|
||||
$content = str_replace("___SOAP_ADDRESS___", $endpoint, $content);
|
||||
|
||||
|
||||
@@ -251,7 +251,7 @@ function sendTestMail ()
|
||||
|
||||
$sBody = "
|
||||
<table style=\"background-color: white; font-family: Arial,Helvetica,sans-serif; color: black; font-size: 11px; text-align: left;\" cellpadding='10' cellspacing='0' width='100%'>
|
||||
<tbody><tr><td><img id='logo' src='http://" . $_SERVER['SERVER_NAME'] . "/images/processmaker.logo.jpg' /></td></tr>
|
||||
<tbody><tr><td><img id='logo' src='http://" . $_SERVER['SERVER_NAME'] . "/images/lurana.logo.png' /></td></tr>
|
||||
<tr><td style='font-size: 14px;'>$msg [" . date( 'H:i:s' ) . "] - $engine</td></tr>
|
||||
<tr><td style='vertical-align:middel;'>
|
||||
<br /><hr><b>This Business Process is powered by ProcessMaker ver. " . System::getVersion() . ".<b><br />
|
||||
|
||||
@@ -142,11 +142,11 @@ function newSkin ($baseSkin = 'classic')
|
||||
) );
|
||||
$pathBase = G::ExpandPath( "skinEngine" ) . 'base' . PATH_SEP;
|
||||
break;
|
||||
case 'neoclassic':
|
||||
case 'lurana':
|
||||
//Special Copy of this dir + xmlreplace
|
||||
copy_skin_folder( G::ExpandPath( "skinEngine" ) . 'neoclassic' . PATH_SEP, PATH_CUSTOM_SKINS . $skinFolder, array ("config.xml","baseCss"
|
||||
copy_skin_folder( G::ExpandPath( "skinEngine" ) . 'lurana' . PATH_SEP, PATH_CUSTOM_SKINS . $skinFolder, array ("config.xml","baseCss"
|
||||
) );
|
||||
$pathBase = G::ExpandPath( "skinEngine" ) . 'neoclassic' . PATH_SEP;
|
||||
$pathBase = G::ExpandPath( "skinEngine" ) . 'lurana' . PATH_SEP;
|
||||
break;
|
||||
default:
|
||||
//Commmon copy/paste of a folder + xmlrepalce
|
||||
|
||||
@@ -830,7 +830,7 @@ antes funcionaba.
|
||||
}
|
||||
|
||||
.ICON_STRATEGIC_DASHBOARD {
|
||||
background-image: url(/skins/neoclassic/images/dashboard.png) !important;
|
||||
background-image: url(/skins/lurana/images/dashboard.png) !important;
|
||||
width: 15px !important;
|
||||
height: 15px !important;
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
$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";
|
||||
$urlLogin = $http . "://" . $host . "/sys/en/lurana/login/login";
|
||||
$urlHome = $urlLogin;
|
||||
|
||||
if (isset($_GET["url"]) && $_GET["url"] != "") {
|
||||
|
||||
@@ -46,7 +46,6 @@
|
||||
<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>
|
||||
|
||||
@@ -177,7 +177,7 @@ a.next {
|
||||
<div class="container">
|
||||
<div id="header">
|
||||
<div id="logo">
|
||||
<a href="http://www.processmaker.com" target="_blank"><img src="images/processmaker.logo.jpg" alt="logo"/></a>
|
||||
<a href="http://www.processmaker.com" target="_blank"><img src="/images/lurana.logo.png" alt="logo"/></a>
|
||||
</div>
|
||||
|
||||
<div id="contactDetails">
|
||||
|
||||
24
workflow/engine/skinEngine/neoclassic/config.xml → workflow/engine/skinEngine/lurana/config.xml
Normal file → Executable file
@@ -1,13 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?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>
|
||||
<id>19117353067a4c73bcfe681.0.2370750</id>
|
||||
<name>luranasoft</name>
|
||||
<workspace></workspace>
|
||||
<description>Default skin for LuranaSoft 0.99</description>
|
||||
<author>luranasoft</author>
|
||||
<version>0.99</version>
|
||||
<createDate>2025-02-06 14:29:15</createDate>
|
||||
<modifiedDate>update_date</modifiedDate>
|
||||
</information>
|
||||
<cssFiles>
|
||||
<skin>
|
||||
@@ -48,8 +49,11 @@
|
||||
<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>
|
||||
<pm3>
|
||||
<cssFile file="pm3.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
</pm3>
|
||||
<viena>
|
||||
<cssFile file="viena.css" enabledBrowsers="ALL" disabledBrowsers=""></cssFile>
|
||||
</viena>
|
||||
</cssFiles>
|
||||
</skinConfiguration>
|
||||
234
workflow/engine/skinEngine/neoclassic/css/form.css → workflow/engine/skinEngine/lurana/css/form.css
Normal file → Executable file
@@ -3,40 +3,96 @@
|
||||
*/
|
||||
@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');
|
||||
src: url('/fonts/OpenSans-Light-webfont.woff') format('woff'), url('/fonts/OpenSans-Light-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-LightItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-LightItalic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Regular-webfont.woff') format('woff'), url('/fonts/OpenSans-Regular-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Italic-webfont.woff') format('woff'), url('/fonts/OpenSans-Italic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Semibold-webfont.woff') format('woff'), url('/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-SemiboldItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-SemiboldItalic-webfont.ttf') format('truetype'), url('/fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face{
|
||||
font-family:'DaxMediumCapsRegular';
|
||||
src:url('/fonts/ufonts.com_dax-mediumcaps.eot');
|
||||
src:url('/fonts/ufonts.com_dax-mediumcaps.eot?#iefix')
|
||||
format('embedded-opentype'),url('/fonts/ufonts.com_dax-mediumcaps.svg#dax-mediumcapsregular')
|
||||
format('svg'),url('/fonts/ufonts.com_dax-mediumcaps.woff')
|
||||
format('woff'),url('/fonts/ufonts.com_dax-mediumcaps.ttf')
|
||||
format('truetype');
|
||||
font-weight:normal;
|
||||
font-style:normal
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family:'DaxRegular';
|
||||
src:url('/fonts/ufonts.com_dax-regular.eot');
|
||||
src:url('/fonts/ufonts.com_dax-regular.eot?#iefix')
|
||||
format('embedded-opentype'),url('/fonts/ufonts.com_dax-regular.svg#dax-regularregular')
|
||||
format('svg'),url('/fonts/ufonts.com_dax-regular.woff')
|
||||
format('woff'),url('/fonts/ufonts.com_dax-regular.ttf')
|
||||
format('truetype');
|
||||
font-weight:normal;
|
||||
font-style:normal}
|
||||
|
||||
@font-face{
|
||||
font-family:'DaxBold';
|
||||
src:url('/fonts/ufonts.com_dax-bold.eot');
|
||||
src:url('/fonts/ufonts.com_dax-bold.eot?#iefix')
|
||||
format('embedded-opentype'),url('/fonts/ufonts.com_dax-bold.svg#daxbold')
|
||||
format('svg'),url('/fonts/ufonts.com_dax-bold.woff')
|
||||
format('woff'),url('/fonts/ufonts.com_dax-bold.ttf')
|
||||
format('truetype');
|
||||
font-weight:normal;
|
||||
font-style:normal}
|
||||
|
||||
@font-face{
|
||||
font-family:'DaxExtraBold';
|
||||
src:url('/fonts/ufonts.com_dax-extrabold.eot');
|
||||
src:url('/fonts/ufonts.com_dax-extrabold.eot?#iefix')
|
||||
format('embedded-opentype'),url('/fonts/ufonts.com_dax-extrabold.svg#daxextrabold')
|
||||
format('svg'),url('/fonts/ufonts.com_dax-extrabold.woff')
|
||||
format('woff'),url('/fonts/ufonts.com_dax-extrabold.ttf')
|
||||
format('truetype');
|
||||
font-weight:normal;
|
||||
font-style:normal}
|
||||
|
||||
@font-face{
|
||||
font-family:'DaxLight';
|
||||
src:url('/fonts/ufonts.com_dax-light.eot');
|
||||
src:url('/fonts/ufonts.com_dax-light.eot?#iefix')
|
||||
format('embedded-opentype'),url('/fonts/ufonts.com_dax-light.svg#daxlight')
|
||||
format('svg'),url('/fonts/ufonts.com_dax-light.woff')
|
||||
format('woff'),url('/fonts/ufonts.com_dax-light.ttf')
|
||||
format('truetype');
|
||||
font-weight:normal;
|
||||
font-style:normal
|
||||
}
|
||||
/*Colores*/
|
||||
.btn {
|
||||
background-image: none;
|
||||
@@ -293,7 +349,6 @@ INPUT {
|
||||
background-color: black;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
height:auto% !important;
|
||||
}
|
||||
.panel_iframe___processmaker {
|
||||
width: 100%;
|
||||
@@ -356,7 +411,7 @@ INPUT {
|
||||
border: 0px solid red;
|
||||
z-index: 2;
|
||||
cursor: pointer;
|
||||
background: url("/skins/neoclassic/images/ext/gray/panel/tool-sprites.gif") 0 0 no-repeat;
|
||||
background: url("/images/ext/gray/panel/tool-sprites.gif") 0 0 no-repeat;
|
||||
}
|
||||
.panel_roll___processmaker {
|
||||
position: absolute;
|
||||
@@ -366,7 +421,7 @@ INPUT {
|
||||
border: 0px solid red;
|
||||
z-index: 2;
|
||||
cursor: pointer;
|
||||
background: url(/skins/neoclassic/images/classic/roll.static.gif);
|
||||
background: url(/images/classic/roll.static.gif);
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.panel_resize___processmaker {
|
||||
@@ -377,7 +432,7 @@ INPUT {
|
||||
overflow: hidden;
|
||||
z-index: 333333;
|
||||
bottom: 1px;
|
||||
background: url(/skins/neoclassic/images/classic/panel.resize.11x11.png?rand=234);
|
||||
background: url(/images/classic/panel.resize.11x11.png?rand=234);
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.panel_headerBar___processmaker {
|
||||
@@ -429,7 +484,7 @@ INPUT {
|
||||
color: #000000;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
background-image: url('/skins/neoclassic/images/classic/panel.tabSelected.1x3.gif');
|
||||
background-image: url('/images/classic/panel.tabSelected.1x3.gif');
|
||||
background-repeat: repeat-x;
|
||||
background-position: 0px -1px;
|
||||
height: 22px;
|
||||
@@ -523,7 +578,7 @@ INPUT {
|
||||
|
||||
border-bottom: 0px solid red;
|
||||
background-color: #E8E8E8;
|
||||
background: url(/skins/neoclassic/images/classic/grid.title.gray.gif);
|
||||
background: url(/images/classic/grid.title.gray.gif);
|
||||
background-position: 0px -10px;
|
||||
}
|
||||
.app_grid_table___gray {
|
||||
@@ -537,7 +592,7 @@ INPUT {
|
||||
border: 1px solid #cbcbcb;
|
||||
border: 1px solid #aaa;
|
||||
background-color: #D0DEF0;
|
||||
background: url(/skins/neoclassic/images/classic/grid.title.gray.gif);
|
||||
background: url(/images/classic/grid.title.gray.gif);
|
||||
text-align: center;
|
||||
padding: 4px;
|
||||
height: 25px;
|
||||
@@ -591,43 +646,43 @@ INPUT {
|
||||
font: normal 11px "Open Sans", Tahoma, sans-serif, MiscFixed;
|
||||
}
|
||||
.app_grid_pDf___gray {
|
||||
background: url(/skins/neoclassic/images/classic/module.grid/page-first.gif);
|
||||
background: url(/images/classic/module.grid/page-first.gif);
|
||||
}
|
||||
.app_grid_pDf___gray:hover {
|
||||
background: url(/skins/neoclassic/images/classic/module.grid/page-first-disabled.gif);
|
||||
background: url(/images/classic/module.grid/page-first-disabled.gif);
|
||||
}
|
||||
.app_grid_pDfDisabled___gray {
|
||||
background: url(/skins/neoclassic/images/classic/module.grid/page-first-disabled.gif);
|
||||
background: url(/images/classic/module.grid/page-first-disabled.gif);
|
||||
cursor: default;
|
||||
}
|
||||
.app_grid_pDp___gray {
|
||||
background: url(/skins/neoclassic/images/classic/module.grid/page-prev.gif);
|
||||
background: url(/images/classic/module.grid/page-prev.gif);
|
||||
}
|
||||
.app_grid_pDp___gray:hover {
|
||||
background: url(/skins/neoclassic/images/classic/module.grid/page-prev-disabled.gif);
|
||||
background: url(/images/classic/module.grid/page-prev-disabled.gif);
|
||||
}
|
||||
.app_grid_pDpDisabled___gray {
|
||||
background: url(/skins/neoclassic/images/classic/module.grid/page-prev-disabled.gif);
|
||||
background: url(/images/classic/module.grid/page-prev-disabled.gif);
|
||||
cursor: default;
|
||||
}
|
||||
.app_grid_pDn___gray {
|
||||
background: url(/skins/neoclassic/images/classic/module.grid/page-next.gif);
|
||||
background: url(/images/classic/module.grid/page-next.gif);
|
||||
}
|
||||
.app_grid_pDn___gray:hover {
|
||||
background: url(/skins/neoclassic/images/classic/module.grid/page-next-disabled.gif);
|
||||
background: url(/images/classic/module.grid/page-next-disabled.gif);
|
||||
}
|
||||
.app_grid_pDnDisabled___gray {
|
||||
background: url(/skins/neoclassic/images/classic/module.grid/page-next-disabled.gif);
|
||||
background: url(/images/classic/module.grid/page-next-disabled.gif);
|
||||
cursor: default;
|
||||
}
|
||||
.app_grid_pDl___gray {
|
||||
background: url(/skins/neoclassic/images/classic/module.grid/page-last.gif);
|
||||
background: url(/images/classic/module.grid/page-last.gif);
|
||||
}
|
||||
.app_grid_pDl___gray:hover {
|
||||
background: url(/skins/neoclassic/images/classic/module.grid/page-last-disabled.gif);
|
||||
background: url(/images/classic/module.grid/page-last-disabled.gif);
|
||||
}
|
||||
.app_grid_pDlDisabled___gray {
|
||||
background: url(/skins/neoclassic/images/classic/module.grid/page-last-disabled.gif);
|
||||
background: url(/images/classic/module.grid/page-last-disabled.gif);
|
||||
cursor: default;
|
||||
}
|
||||
.app_grid_pDC___gray {
|
||||
@@ -655,7 +710,7 @@ INPUT {
|
||||
color: black;
|
||||
cursor: hand;
|
||||
text-decoration: none;
|
||||
background: url(/skins/neoclassic/images/classic/grid.title.gray.gif);
|
||||
background: url(/images/classic/grid.title.gray.gif);
|
||||
background-position: 0px -10px;
|
||||
}
|
||||
.app_grid_paginatorLink___gray:hover {
|
||||
@@ -680,7 +735,7 @@ INPUT {
|
||||
border: 1px solid #afafaf;
|
||||
margin-left: 2px;
|
||||
cursor: pointer;
|
||||
background: url(/skins/neoclassic/images/classic/grid.title.gray.gif);
|
||||
background: url(/images/classic/grid.title.gray.gif);
|
||||
background-position: 0px 0px;
|
||||
}
|
||||
.module_app_button___gray:hover,
|
||||
@@ -698,24 +753,36 @@ INPUT {
|
||||
/* Theme leimnud.module.app.button END */
|
||||
/* Theme leimnud.module.app.input BEGIN */
|
||||
.module_app_input___gray {
|
||||
padding: 1px;
|
||||
border: 1px solid #AAA;
|
||||
padding-left: 3px;
|
||||
background: #ffffff url(/skins/neoclassic/images/classic/input_back.gif) repeat-x;
|
||||
background-position: 0px 0px;
|
||||
color: #333333;
|
||||
font: normal 8pt "Open Sans", Tahoma, sans-serif, MiscFixed;
|
||||
background-color:#FFF;
|
||||
border-radius: 4px 4px 4px 4px;
|
||||
border:1px solid #ccc;
|
||||
-webkit-box-shadow: inset 0px 0px 23px -9px rgba(158,158,158,1);
|
||||
-moz-box-shadow: inset 0px 0px 23px -9px rgba(158,158,158,1);
|
||||
box-shadow: inset 0px 0px 23px -9px rgba(158,158,158,1);
|
||||
color: #505050;
|
||||
font-family: "Open Sans",Arial,Helvetica,sans-serif;
|
||||
font-size: 14px;
|
||||
padding: 3px 12px;
|
||||
}
|
||||
.module_app_input___gray:focus {
|
||||
border-color: #d7d7d7;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: 0px 0px 8px 0px rgba(201,201,201,1);
|
||||
-moz-box-shadow: 0px 0px 8px 0px rgba(201,201,201,1);
|
||||
box-shadow: 0px 0px 8px 0px rgba(201,201,201,1);
|
||||
}
|
||||
|
||||
.module_app_input___gray_readOnly {
|
||||
padding: 1px;
|
||||
border: 1px solid #AAA;
|
||||
padding-left: 3px;
|
||||
background: #EBEBE4;
|
||||
/*#FFFFFF url(/skins/neoclassic/images/classic/input_back.gif) repeat-x;*/
|
||||
|
||||
border-radius:4px 4px 4px 4px;
|
||||
background: #dadada;
|
||||
/*#FFFFFF url(/images/classic/input_back.gif) repeat-x;*/
|
||||
background-position: 0px 0px;
|
||||
color: #333333;
|
||||
color: #181818;
|
||||
font: normal 8pt "Open Sans", Tahoma, sans-serif, MiscFixed;
|
||||
padding: 3px 12px;
|
||||
}
|
||||
.module_ListBoxView {
|
||||
color: white;
|
||||
@@ -729,7 +796,7 @@ INPUT {
|
||||
border: 1px solid green;
|
||||
padding-left: 2px;
|
||||
padding-right: 20px;
|
||||
background: #ffffff url(/skins/neoclassic/images/classic/ok.png) no-repeat;
|
||||
background: #ffffff url(/images/classic/ok.png) no-repeat;
|
||||
background-position: 99% 50%;
|
||||
color: #000000;
|
||||
font: normal 8pt "Open Sans", Tahoma, sans-serif, MiscFixed;
|
||||
@@ -739,7 +806,7 @@ INPUT {
|
||||
padding: 1px;
|
||||
padding-left: 2px;
|
||||
padding-right: 20px;
|
||||
background: #ffffff url(/skins/neoclassic/images/classic/failed.png) no-repeat;
|
||||
background: #ffffff url(/images/classic/failed.png) no-repeat;
|
||||
background-position: 99% 50%;
|
||||
color: #000000;
|
||||
font: normal 8pt "Open Sans", Tahoma, sans-serif, MiscFixed;
|
||||
@@ -772,7 +839,7 @@ INPUT {
|
||||
.module_rss_title___gray,
|
||||
.module_rss_header___gray,
|
||||
.module_rss_itemHeader___gray {
|
||||
background: url(/skins/neoclassic/images/classic/grid.title.gray.gif);
|
||||
background: url(/images/classic/grid.title.gray.gif);
|
||||
}
|
||||
.module_rss_itemContainer___gray {
|
||||
border-top: 1px solid #cbcbcb;
|
||||
@@ -865,7 +932,7 @@ div#toolbar {
|
||||
height: 25px;
|
||||
}
|
||||
.toolbar_wrapper {
|
||||
background-image: url(/skins/neoclassic/images/bar_bg_bw.gif);
|
||||
background-image: url(/images/bar_bg_bw.gif);
|
||||
background-position: 0 -1px;
|
||||
border: 1px solid #B5B5B5;
|
||||
height: 30px;
|
||||
@@ -931,33 +998,23 @@ div#toolbar {
|
||||
.button_pm,
|
||||
.module_app_buttonjs___gray,
|
||||
.module_app_buttonDisabled___gray {
|
||||
background-color:#3071a9;
|
||||
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;
|
||||
border: 1px solid #3071a9;
|
||||
border-radius: 4px;
|
||||
color: #ffffff;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
line-height: 1em;
|
||||
margin: 2px 0;
|
||||
padding: 2px 5px;
|
||||
outline: medium none;
|
||||
padding: 5px 10px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
transition: background 0.12s linear 0s;
|
||||
}
|
||||
.pagedTableDefault .pagedTable .RowLink a:hover,
|
||||
.module_app_button___gray:hover,
|
||||
@@ -989,9 +1046,15 @@ div#toolbar {
|
||||
.button_pm[disabled],
|
||||
.module_app_buttonjs___gray[disabled],
|
||||
.module_app_buttonDisabled___gray[disabled] {
|
||||
color: #333333;
|
||||
background-color: #dddddd;
|
||||
*background-color: #d0d0d0;
|
||||
color: #fff;
|
||||
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5192+1,1e5192+100 */
|
||||
background: rgb(30,81,146); /* Old browsers */
|
||||
background: -moz-linear-gradient(top, rgba(30,81,146,1) 1%, rgba(30,81,146,1) 100%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(top, rgba(30,81,146,1) 1%,rgba(30,81,146,1) 100%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(to bottom, rgba(30,81,146,1) 1%,rgba(30,81,146,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5192', endColorstr='#1e5192',GradientType=0 ); /* IE6-9 */
|
||||
background-image:url("/images/button_hover.png");
|
||||
background-repeat:repeat;
|
||||
}
|
||||
.pagedTableDefault .pagedTable .RowLink a:active,
|
||||
.module_app_button___gray:active,
|
||||
@@ -1011,24 +1074,20 @@ div#toolbar {
|
||||
.module_app_buttonjs___gray:hover,
|
||||
.module_app_buttonDisabled___gray: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);
|
||||
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5192+1,1e5192+100 */
|
||||
background: rgb(30,81,146); /* Old browsers */
|
||||
background: -moz-linear-gradient(top, rgba(30,81,146,1) 1%, rgba(30,81,146,1) 100%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(top, rgba(30,81,146,1) 1%,rgba(30,81,146,1) 100%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(to bottom, rgba(30,81,146,1) 1%,rgba(30,81,146,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5192', endColorstr='#1e5192',GradientType=0 ); /* IE6-9 */
|
||||
|
||||
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+);
|
||||
}
|
||||
.pagedTableDefault .pagedTable .RowLink a:hover:hover,
|
||||
.module_app_button___gray:hover:hover,
|
||||
@@ -1060,7 +1119,7 @@ div#toolbar {
|
||||
.button_pm:hover[disabled],
|
||||
.module_app_buttonjs___gray:hover[disabled],
|
||||
.module_app_buttonDisabled___gray:hover[disabled] {
|
||||
color: #333333;
|
||||
color: #ffffff;
|
||||
background-color: #ffffff;
|
||||
*background-color: #f2f2f2;
|
||||
}
|
||||
@@ -1123,14 +1182,5 @@ div#toolbar {
|
||||
}
|
||||
.pagedTableDefault .pagedTable .RowLink a.module_app_buttonDisabled___gray:hover,
|
||||
.module_app_buttonDisabled___gray:hover {
|
||||
background: url("/skins/neoclassic/images/ext/gray/button/btn.gif") repeat-x scroll 0 -3240px transparent;
|
||||
}
|
||||
/*style for login footer */
|
||||
.footer-login a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
.footer-login a:hover, a:focus {
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
background: url("/images/ext/gray/button/btn.gif") repeat-x scroll 0 -3240px transparent;
|
||||
}
|
||||
12
workflow/engine/skinEngine/neoclassic/css/jscolors.css → workflow/engine/skinEngine/lurana/css/jscolors.css
Normal file → Executable file
@@ -3,37 +3,37 @@
|
||||
*/
|
||||
@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');
|
||||
src: url('/fonts/OpenSans-Light-webfont.woff') format('woff'), url('/fonts/OpenSans-Light-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-LightItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-LightItalic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Regular-webfont.woff') format('woff'), url('/fonts/OpenSans-Regular-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Italic-webfont.woff') format('woff'), url('/fonts/OpenSans-Italic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Semibold-webfont.woff') format('woff'), url('/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-SemiboldItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-SemiboldItalic-webfont.ttf') format('truetype'), url('/fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
127
workflow/engine/skinEngine/neoclassic/css/loginStyle.css → workflow/engine/skinEngine/lurana/css/loginStyle.css
Normal file → Executable file
@@ -10,9 +10,11 @@
|
||||
}
|
||||
|
||||
body.login {
|
||||
background-color: #444;
|
||||
background: url(/images/backgroundpm3.jpg);
|
||||
background: #8F8F8F url(/images/backgroundpm3.jpg) no-repeat 50% top;
|
||||
background-size: cover;
|
||||
background-position:center top;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.vertical-offset-100 {
|
||||
@@ -20,20 +22,22 @@
|
||||
}
|
||||
|
||||
img.img-responsive {
|
||||
margin-bottom: 20px;
|
||||
margin-bottom:20px;
|
||||
}
|
||||
.img-responsive {
|
||||
display: block;
|
||||
height: auto;
|
||||
margin: auto;
|
||||
max-width: 100%;
|
||||
max-width: 60%;
|
||||
}
|
||||
|
||||
.login .panel {
|
||||
border-radius: 0;
|
||||
padding: 20px;
|
||||
|
||||
}
|
||||
.panel {
|
||||
/*
|
||||
background-color: rgba(255, 255, 255, 0.8);
|
||||
border: 1px solid transparent;
|
||||
border-radius: 4px;
|
||||
@@ -42,11 +46,32 @@ img.img-responsive {
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
|
||||
|
||||
|
||||
background-color: rgba(255, 255, 255, 0.8);
|
||||
border: 1px solid transparent;
|
||||
border-radius: 10px 10px 10px 10px !important;
|
||||
-moz-box-shadow: 0 4px 10px -1px #555555;
|
||||
-webkit-box-shadow: 0 4px 10px -1px #555555;
|
||||
box-shadow: 0 4px 10px -1px #555555;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;*/
|
||||
|
||||
/* border: 1px solid transparent;
|
||||
border-radius: 10px 10px 10px 10px !important;
|
||||
-moz-box-shadow: 0 4px 10px -1px #555555;
|
||||
-webkit-box-shadow: 0 4px 10px -1px #555555;
|
||||
box-shadow: 0 4px 10px -1px #555555;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;*/
|
||||
|
||||
}
|
||||
|
||||
.login .panel-default > .panel-heading {
|
||||
background: none repeat scroll 0 0 transparent;
|
||||
}
|
||||
color:#909090;
|
||||
text-shadow:1px 1px 0 #fff;
|
||||
}
|
||||
|
||||
|
||||
.login .panel-heading {
|
||||
@@ -58,21 +83,43 @@ img.img-responsive {
|
||||
|
||||
|
||||
.module_app_input___gray {
|
||||
font-family: "Chivo",sans-serif;
|
||||
border: 1px solid #d2d2d2;
|
||||
border-radius: 10px !important;
|
||||
border-style: solid;
|
||||
border-width: 1px 1px 2px
|
||||
box-shadow:0 1px 5px rgba(0, 0, 0, 0.1) inset;
|
||||
box-sizing: border-box;
|
||||
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;
|
||||
border-radius: 10px 10px 10px 10px !important;
|
||||
border-style: solid;
|
||||
border-width: 1px 1px 2px;
|
||||
color: #aaa9a9;
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
font-family: "Chivo",sans-serif;
|
||||
font-size: 13px;
|
||||
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%;
|
||||
}
|
||||
.module_app_input___gray:hover {
|
||||
border:1px solid #737373;
|
||||
border-width: 1px 1px 2px;
|
||||
-moz-box-shadow: 0 2px 5px -1px #737373;
|
||||
-webkit-box-shadow: 0 2px 5px -1px #737373;
|
||||
box-shadow: 0 2px 5px -1px #737373;
|
||||
}
|
||||
.module_app_input___gray:focus {
|
||||
border:1px solid #0D60A2;
|
||||
border-width: 1px 1px 2px;
|
||||
-moz-box-shadow: 0 2px 5px -1px #0D60A2;
|
||||
-webkit-box-shadow: 0 2px 5px -1px #0D60A2;
|
||||
box-shadow: 0 2px 5px -1px #0D60A2;
|
||||
}
|
||||
|
||||
.login .module_app_input___gray_file{
|
||||
background-color: #fff;
|
||||
background-image: none;
|
||||
@@ -92,10 +139,12 @@ img.img-responsive {
|
||||
}
|
||||
.form-signin .module_app_input___gray {
|
||||
border-radius: 0;
|
||||
-webkit-box-shadow: inset 0px 0px 23px -9px rgba(158,158,158,1);
|
||||
-moz-box-shadow: inset 0px 0px 23px -9px rgba(158,158,158,1);
|
||||
box-shadow: inset 0px 0px 23px -9px rgba(158,158,158,1);
|
||||
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;
|
||||
@@ -162,31 +211,41 @@ p {
|
||||
}
|
||||
|
||||
.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;
|
||||
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3071a9+0,3071a9+100 */
|
||||
background: rgb(48,113,169); /* Old browsers */
|
||||
background: -moz-linear-gradient(top, rgba(48,113,169,1) 0%, rgba(48,113,169,1) 100%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(top, rgba(48,113,169,1) 0%,rgba(48,113,169,1) 100%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(to bottom, rgba(48,113,169,1) 0%,rgba(48,113,169,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3071a9', endColorstr='#3071a9',GradientType=0 ); /* IE6-9 */
|
||||
border: 1px solid #3071A9;
|
||||
border-radius: 6px 6px 6px 6px;
|
||||
color: #fff;
|
||||
display: block;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
line-height: 1.33;
|
||||
padding: 10px 16px;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
text-transform:uppercase;
|
||||
width: 100%;
|
||||
//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;
|
||||
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#013e81+0,265696+100 */
|
||||
background: rgb(1,62,129); /* Old browsers */
|
||||
background: -moz-linear-gradient(left, rgba(1,62,129,1) 0%, rgba(38,86,150,1) 100%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(left, rgba(1,62,129,1) 0%,rgba(38,86,150,1) 100%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(to right, rgba(1,62,129,1) 0%,rgba(38,86,150,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#013e81', endColorstr='#265696',GradientType=1 ); /* IE6-9 */
|
||||
border: 1px solid #003f84;
|
||||
border-radius: 6px 6px 6px 6px;
|
||||
color: #fff;
|
||||
filter:none;
|
||||
text-transform:uppercase;
|
||||
}
|
||||
|
||||
|
||||
@@ -232,7 +291,7 @@ p {
|
||||
}
|
||||
|
||||
.footer-login span{
|
||||
color: white;
|
||||
color: #333;
|
||||
font-weight: 900;
|
||||
font-size: 12px;
|
||||
}
|
||||
1066
workflow/engine/skinEngine/lurana/css/pm3.css
Executable file
409
workflow/engine/skinEngine/neoclassic/css/pmos-xtheme-gray.css → workflow/engine/skinEngine/lurana/css/pmos-xtheme-gray.css
Normal file → Executable file
@@ -3,40 +3,98 @@
|
||||
*/
|
||||
@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');
|
||||
src: url('/fonts/OpenSans-Light-webfont.woff') format('woff'), url('/fonts/OpenSans-Light-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-LightItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-LightItalic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Regular-webfont.woff') format('woff'), url('/fonts/OpenSans-Regular-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Italic-webfont.woff') format('woff'), url('/fonts/OpenSans-Italic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Semibold-webfont.woff') format('woff'), url('/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-SemiboldItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-SemiboldItalic-webfont.ttf') format('truetype'), url('/fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family:'DaxMediumCapsRegular';
|
||||
src:url('/fonts/ufonts.com_dax-mediumcaps.eot');
|
||||
src:url('/fonts/ufonts.com_dax-mediumcaps.eot?#iefix')
|
||||
format('embedded-opentype'),url('/fonts/ufonts.com_dax-mediumcaps.svg#dax-mediumcapsregular')
|
||||
format('svg'),url('/fonts/ufonts.com_dax-mediumcaps.woff')
|
||||
format('woff'),url('/fonts/ufonts.com_dax-mediumcaps.ttf')
|
||||
format('truetype');
|
||||
font-weight:normal;
|
||||
font-style:normal
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family:'DaxRegular';
|
||||
src:url('/fonts/ufonts.com_dax-regular.eot');
|
||||
src:url('/fonts/ufonts.com_dax-regular.eot?#iefix')
|
||||
format('embedded-opentype'),url('/fonts/ufonts.com_dax-regular.svg#dax-regularregular')
|
||||
format('svg'),url('/fonts/ufonts.com_dax-regular.woff')
|
||||
format('woff'),url('/fonts/ufonts.com_dax-regular.ttf')
|
||||
format('truetype');
|
||||
font-weight:normal;
|
||||
font-style:normal}
|
||||
|
||||
@font-face{
|
||||
font-family:'DaxBold';
|
||||
src:url('/fonts/ufonts.com_dax-bold.eot');
|
||||
src:url('/fonts/ufonts.com_dax-bold.eot?#iefix')
|
||||
format('embedded-opentype'),url('/fonts/ufonts.com_dax-bold.svg#daxbold')
|
||||
format('svg'),url('/fonts/ufonts.com_dax-bold.woff')
|
||||
format('woff'),url('/fonts/ufonts.com_dax-bold.ttf')
|
||||
format('truetype');
|
||||
font-weight:normal;
|
||||
font-style:normal}
|
||||
|
||||
@font-face{
|
||||
font-family:'DaxExtraBold';
|
||||
src:url('/fonts/ufonts.com_dax-extrabold.eot');
|
||||
src:url('/fonts/ufonts.com_dax-extrabold.eot?#iefix')
|
||||
format('embedded-opentype'),url('/fonts/ufonts.com_dax-extrabold.svg#daxextrabold')
|
||||
format('svg'),url('/fonts/ufonts.com_dax-extrabold.woff')
|
||||
format('woff'),url('/fonts/ufonts.com_dax-extrabold.ttf')
|
||||
format('truetype');
|
||||
font-weight:normal;
|
||||
font-style:normal}
|
||||
|
||||
@font-face{
|
||||
font-family:'DaxLight';
|
||||
src:url('/fonts/ufonts.com_dax-light.eot');
|
||||
src:url('/fonts/ufonts.com_dax-light.eot?#iefix')
|
||||
format('embedded-opentype'),url('/fonts/ufonts.com_dax-light.svg#daxlight')
|
||||
format('svg'),url('/fonts/ufonts.com_dax-light.woff')
|
||||
format('woff'),url('/fonts/ufonts.com_dax-light.ttf')
|
||||
format('truetype');
|
||||
font-weight:normal;
|
||||
font-style:normal
|
||||
}
|
||||
|
||||
/*Colores*/
|
||||
.btn {
|
||||
background-image: none;
|
||||
@@ -231,19 +289,19 @@ botones del tinymce
|
||||
border-right: 1px solid #96969D;
|
||||
}
|
||||
.x-locationbar-folder-icon {
|
||||
background-image: url("/skins/neoclassic/images/ext/gray/locationbar/location_folder.png") !important;
|
||||
background-image: url("/images/ext/gray/locationbar/location_folder.png") !important;
|
||||
}
|
||||
.x-locationbar-back-icon {
|
||||
background-image: url("/skins/neoclassic/images/ext/gray/locationbar/location_back.png") !important;
|
||||
background-image: url("/images/ext/gray/locationbar/location_back.png") !important;
|
||||
}
|
||||
.x-locationbar-forward-icon {
|
||||
background-image: url("/skins/neoclassic/images/ext/gray/locationbar/location_forward.png") !important;
|
||||
background-image: url("/images/ext/gray/locationbar/location_forward.png") !important;
|
||||
}
|
||||
.x-locationbar-reload-icon {
|
||||
background-image: url("/skins/neoclassic/images/ext/gray/locationbar/location_reload.png") !important;
|
||||
background-image: url("/images/ext/gray/locationbar/location_reload.png") !important;
|
||||
}
|
||||
.x-locationbar .x-btn-menu-arrow-wrap .x-btn-center button {
|
||||
background: transparent url(/skins/neoclassic/images/ext/gray/locationbar/btn-arrow.gif) no-repeat scroll 0pt 3px;
|
||||
background: transparent url(/images/ext/gray/locationbar/btn-arrow.gif) no-repeat scroll 0pt 3px;
|
||||
width: 12px;
|
||||
}
|
||||
.x-locationbar .x-btn-menu-active .x-btn-menu-arrow-wrap .x-btn-center button {
|
||||
@@ -252,7 +310,7 @@ botones del tinymce
|
||||
.x-locationbar .x-btn-click .x-btn-center,
|
||||
.x-locationbar .x-btn-pressed .x-btn-center,
|
||||
.x-locationbar .x-btn-menu-active .x-btn-center {
|
||||
background: transparent url(/skins/neoclassic/images/ext/gray/locationbar/tb-btn-sprite.gif) repeat-x scroll 0pt -105px;
|
||||
background: transparent url(/images/ext/gray/locationbar/tb-btn-sprite.gif) repeat-x scroll 0pt -105px;
|
||||
}
|
||||
/*Los botones de EXT solamente s even iguales en los x-form*/
|
||||
.x-window button.x-btn-text,
|
||||
@@ -290,19 +348,19 @@ button.x-btn-text:focus,
|
||||
outline: none;
|
||||
}
|
||||
.icon-activate {
|
||||
background-image: url("/skins/neoclassic/images/activate.png");
|
||||
background-image: url("/images/activate.png");
|
||||
}
|
||||
.icon-deactivate {
|
||||
background-image: url("/skins/neoclassic/images/deactivate.png");
|
||||
background-image: url("/images/deactivate.png");
|
||||
}
|
||||
.icon-debug {
|
||||
background-image: url("/skins/neoclassic/images/debug.png");
|
||||
background-image: url("/images/debug.png");
|
||||
}
|
||||
.icon-debug-disabled {
|
||||
background-image: url("/skins/neoclassic/images/debug_disabled.png");
|
||||
background-image: url("/images/debug_disabled.png");
|
||||
}
|
||||
.icon-geometry {
|
||||
background-image: url("/skins/neoclassic/images/ToolUseGeometry.png");
|
||||
background-image: url("/images/ToolUseGeometry.png");
|
||||
}
|
||||
/* Cases Styles */
|
||||
/**
|
||||
@@ -326,19 +384,13 @@ button.x-btn-text:focus,
|
||||
}
|
||||
.x-tree-node-icon {
|
||||
width: 18px !important;
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png);
|
||||
background-image: url(/images/icons_silk/sprites.png);
|
||||
height: 18px;
|
||||
}
|
||||
#FOLDER_PATH{
|
||||
border: none;
|
||||
background-image: none;
|
||||
background-color: #f1f1f1;
|
||||
cursor: default;
|
||||
}
|
||||
.ICON_FOLDERS {
|
||||
/*.ss_folder_explore*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -7777px !important;
|
||||
}
|
||||
.x-tab-strip-text.ICON_FOLDERS {
|
||||
@@ -350,53 +402,53 @@ button.x-btn-text:focus,
|
||||
background-position: 0 -7775px !important;
|
||||
}
|
||||
.ICON_CASES_FOLDERS {
|
||||
/*background-image: url(/skins/neoclassic/images/icons_silk/cases-inbox.png) !important;*/
|
||||
/*background-image: url(/images/icons_silk/cases-inbox.png) !important;*/
|
||||
|
||||
}
|
||||
.ICON_CASES_INBOX {
|
||||
/*ss_folder_page*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -7957px !important;
|
||||
}
|
||||
.ICON_CASES_DRAFT {
|
||||
/*ss_pencil*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -12439px !important;
|
||||
}
|
||||
.ICON_CASES_SENT {
|
||||
/*ss_page_white_go*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -11773px !important;
|
||||
}
|
||||
.ICON_CASES_SELFSERVICE {
|
||||
/*ss_arrow_rotate_anticlockwise */
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -955px !important;
|
||||
}
|
||||
.ICON_CASES_PAUSED {
|
||||
/*ss_clock*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0px -4969px !important;
|
||||
}
|
||||
.ICON_CASES_COMPLETED {
|
||||
background-image: url(/skins/neoclassic/images/cases-completed1.png) !important;
|
||||
background-image: url(/images/cases-completed1.png) !important;
|
||||
}
|
||||
.ICON_CASES_CANCELLED {
|
||||
background-image: url(/skins/neoclassic/images/cases-cancelled.png) !important;
|
||||
background-image: url(/images/cases-cancelled.png) !important;
|
||||
}
|
||||
.ICON_CASES_FOLDERS {
|
||||
/*ss_report */
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -13213px !important;
|
||||
}
|
||||
.ICON_SEARCHS {
|
||||
background-image: url(/skins/neoclassic/images/cases-search.png) !important;
|
||||
background-image: url(/images/cases-search.png) !important;
|
||||
/*ss_find*/
|
||||
|
||||
/*background-position:0 -7453px !important;*/
|
||||
@@ -405,43 +457,43 @@ button.x-btn-text:focus,
|
||||
.ICON_CASES_SEARCH {
|
||||
/*ss_page_find*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -11089px !important;
|
||||
}
|
||||
.ICON_ADMIN {
|
||||
/*ss_user_suit*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -17371px !important;
|
||||
}
|
||||
.ICON_CASES_TO_REVISE {
|
||||
/*ss_page_white_magnify*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -11881px !important;
|
||||
}
|
||||
.ICON_CASES_TO_REASSIGN {
|
||||
/*ss_arrow_rotate_clockwise*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -973px !important;
|
||||
}
|
||||
.ICON_CASES_START_PAGE {
|
||||
/*ss_chart_pie*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -3925px !important;
|
||||
}
|
||||
.ICON_CASES_START_CASE {
|
||||
/*ss_add*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -19px !important;
|
||||
}
|
||||
.ICON_CASES_HOME {
|
||||
/*ss_house*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -8497px !important;
|
||||
}
|
||||
.ICON_CONSOLIDATED_CASES{
|
||||
@@ -451,22 +503,22 @@ button.x-btn-text:focus,
|
||||
}
|
||||
|
||||
.ICON_CASES_DELETE {
|
||||
background-image: url(/skins/neoclassic/images/delete-16x16.gif) !important;
|
||||
background-image: url(/images/delete-16x16.gif) !important;
|
||||
}
|
||||
.ICON_CASES_CANCEL {
|
||||
background-image: url(/skins/neoclassic/images/deactivate.png) !important;
|
||||
background-image: url(/images/deactivate.png) !important;
|
||||
}
|
||||
.ICON_CASES_UNPAUSE {
|
||||
background-image: url(/skins/neoclassic/images/activate.png) !important;
|
||||
background-image: url(/images/activate.png) !important;
|
||||
}
|
||||
.ICON_CASES_OPEN {
|
||||
background-image: url(/skins/neoclassic/images/edit.gif) !important;
|
||||
background-image: url(/images/edit.gif) !important;
|
||||
}
|
||||
.ICON_UX {
|
||||
background-image: url(/skins/neoclassic/images/user-experience-icon.png) !important;
|
||||
background-image: url(/images/user-experience-icon.png) !important;
|
||||
}
|
||||
.ICON_SYSTEM {
|
||||
background-image: url("/skins/neoclassic/images/icons_silk/sprites.png") !important;
|
||||
background-image: url("/images/icons_silk/sprites.png") !important;
|
||||
background-position: 0 -10351px !important;
|
||||
}
|
||||
/**
|
||||
@@ -492,16 +544,16 @@ button.x-btn-text:focus,
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.x-grid3-row:nth-child(even) {
|
||||
background-color: #f9f9f9;
|
||||
background-color: #ededed;
|
||||
}
|
||||
.x-grid3-row.x-grid3-row-over {
|
||||
background: #edf3f6;
|
||||
background: #E4E4E4;
|
||||
cursor: pointer;
|
||||
}
|
||||
.x-grid3-hd-inner {
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
color: #fff !important;
|
||||
}
|
||||
.x-grid3-col-openLink,
|
||||
.x-grid3-col-deleteLink {
|
||||
@@ -512,26 +564,35 @@ button.x-btn-text:focus,
|
||||
content: '';
|
||||
}
|
||||
.x-grid3-row.x-grid3-row-selected {
|
||||
background-color: #ffecb1;
|
||||
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8e8e8e+0,eeeeee+2,cccccc+98,8e8e8e+100 */
|
||||
background: #8e8e8e; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #8e8e8e 0%, #eeeeee 2%, #cccccc 98%, #8e8e8e 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8e8e8e), color-stop(2%,#eeeeee), color-stop(98%,#cccccc), color-stop(100%,#8e8e8e)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #8e8e8e 0%,#eeeeee 2%,#cccccc 98%,#8e8e8e 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #8e8e8e 0%,#eeeeee 2%,#cccccc 98%,#8e8e8e 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #8e8e8e 0%,#eeeeee 2%,#cccccc 98%,#8e8e8e 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #8e8e8e 0%,#eeeeee 2%,#cccccc 98%,#8e8e8e 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8e8e8e', endColorstr='#8e8e8e',GradientType=0 ); /* IE6-9 */
|
||||
}
|
||||
/*Checkboxes*/
|
||||
.grid_with_checkbox .x-grid3-header-offset {
|
||||
padding-left: 18px !important;
|
||||
}
|
||||
.grid_with_checkbox .x-grid3-row {
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/unchecked.png) !important;
|
||||
background-image: url(/images/icons_silk/unchecked.png) !important;
|
||||
background-repeat: no-repeat !important;
|
||||
padding-left: 18px !important;
|
||||
}
|
||||
.grid_with_checkbox .x-grid3-row.x-grid3-row-selected {
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/checked.png) !important;
|
||||
background-image: url(/images/icons_silk/checked.png) !important;
|
||||
background-repeat: no-repeat !important;
|
||||
padding-left: 18px !important;
|
||||
}
|
||||
/*
|
||||
toolbar, set 'text-transform: capitalize;' for capitalize (transforms the first character of each word to uppercase)
|
||||
Pone en mayC:suclas el texto que se encuentra en el toolbar de arriba
|
||||
*/
|
||||
.x-panel-tbar .x-toolbar-cell {
|
||||
text-transform: capitalize;
|
||||
}
|
||||
/*TREE*/
|
||||
#ext-gen38.x-tree-root-ct .x-tree-node-el {
|
||||
@@ -570,18 +631,21 @@ toolbar, set 'text-transform: capitalize;' for capitalize (transforms the first
|
||||
/*Cambiamos el menos y mC!s*/
|
||||
#ext-gen38.x-tree-root-ct .x-tree-elbow-minus,
|
||||
#ext-gen38.x-tree-root-ct .x-tree-elbow-end-minus {
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -2395px !important;
|
||||
}
|
||||
#ext-gen38.x-tree-root-ct .x-tree-elbow-plus,
|
||||
#ext-gen38.x-tree-root-ct .x-tree-elbow-end-plus {
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -2359px !important;
|
||||
}
|
||||
/*Item selecciondo en el TREE*/
|
||||
.x-tree-root-ct .x-tree-selected {
|
||||
background: #C3D7DF !important;
|
||||
background-color: #00457C !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
|
||||
/*REFRESHER*/
|
||||
#ext-gen35.x-panel-tbar-noheader {
|
||||
position: absolute;
|
||||
@@ -631,13 +695,13 @@ antes funcionaba.
|
||||
.icon-expand-all {
|
||||
/*ss_bullet_toggle_plus*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -2359px !important;
|
||||
}
|
||||
.icon-collapse-all {
|
||||
/*ss_bullet_toggle_minus*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -2395px !important;
|
||||
}
|
||||
#startCaseTreePanel .x-tree-elbow-end-minus,
|
||||
@@ -675,7 +739,7 @@ antes funcionaba.
|
||||
display: none !important;
|
||||
}
|
||||
.pm_search_x_button button {
|
||||
background: url(/skins/neoclassic/images/icons_silk/search_x_button.png) no-repeat;
|
||||
background: url(/images/icons_silk/search_x_button.png) no-repeat;
|
||||
text-indent: -10000px;
|
||||
width: 16px !important;
|
||||
height: 20px !important;
|
||||
@@ -709,7 +773,7 @@ antes funcionaba.
|
||||
display: none !important;
|
||||
}
|
||||
.pm_search_x_button_des button {
|
||||
background: url(/skins/neoclassic/images/icons_silk/search_x_button.png) no-repeat;
|
||||
background: url(/images/icons_silk/search_x_button.png) no-repeat;
|
||||
text-indent: -10000px;
|
||||
width: 16px !important;
|
||||
height: 20px !important;
|
||||
@@ -729,10 +793,10 @@ antes funcionaba.
|
||||
border-right: none !important;
|
||||
}
|
||||
.ICON_STEPS {
|
||||
background-image: url(/skins/neoclassic/images/steps.png) !important;
|
||||
background-image: url(/images/steps.png) !important;
|
||||
}
|
||||
.ICON_ASSIGN_TASK {
|
||||
background-image: url(/skins/neoclassic/images/flechav1A.png) !important;
|
||||
background-image: url(/images/flechav1A.png) !important;
|
||||
}
|
||||
/* CSS BPMN */
|
||||
#x-shapes p {
|
||||
@@ -826,10 +890,10 @@ antes funcionaba.
|
||||
width: 50;
|
||||
}
|
||||
.icon-users-adhoc {
|
||||
background-image: url('/skins/neoclassic/images/icon-users.png') !important;
|
||||
background-image: url('/images/icon-users.png') !important;
|
||||
}
|
||||
.icon-groups-adhoc {
|
||||
background-image: url('/skins/neoclassic/images/icon-groups.png') !important;
|
||||
background-image: url('/images/icon-groups.png') !important;
|
||||
}
|
||||
/* CSS Setup */
|
||||
.pm-tree-node1 {
|
||||
@@ -845,53 +909,50 @@ antes funcionaba.
|
||||
|
||||
}
|
||||
.ICON_CASES_LIST_SETUP {
|
||||
background-image: url(/skins/neoclassic/images/icon-pmcaseslist-conf.png) !important;
|
||||
background-image: url(/images/icon-pmcaseslist-conf.png) !important;
|
||||
width: 15px !important;
|
||||
height: 15px !important;
|
||||
}
|
||||
.ICON_APPCACHEVIEW_SETUP {
|
||||
background-image: url(/skins/neoclassic/images/icon-pmappcacheview-rebuild.png) !important;
|
||||
background-image: url(/images/icon-pmappcacheview-rebuild.png) !important;
|
||||
width: 15px !important;
|
||||
height: 15px !important;
|
||||
}
|
||||
.ICON_RETURN {
|
||||
background-image: url(/skins/neoclassic/images/baseline_arrow_back_black_18dp.png) !important;
|
||||
}
|
||||
.ICON_CASES_NOTES {
|
||||
/*ss_comment*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -4501px !important;
|
||||
}
|
||||
.ICON_ADDITIONAL_TABLES {
|
||||
/*ss_database_table*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -5815px !important;
|
||||
}
|
||||
.ICON_PM_TABLES {
|
||||
/*ss_database_table*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -5815px !important;
|
||||
}
|
||||
.ICON_LANGUAGES {
|
||||
/*ss_text_dropcaps*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icon-languages.png) !important;
|
||||
background-image: url(/images/icon-languages.png) !important;
|
||||
width: 18px !important;
|
||||
height: 15px !important;
|
||||
}
|
||||
.ICON_PLUGINS {
|
||||
/*ss_plugin*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -12961px !important;
|
||||
}
|
||||
.ICON_UPGRADE {
|
||||
/*ss_package_go*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -10873px !important;
|
||||
}
|
||||
.ICON_AUDIT_LOG{
|
||||
@@ -899,81 +960,77 @@ antes funcionaba.
|
||||
width: 16px !important;
|
||||
height: 16px !important;
|
||||
}
|
||||
|
||||
.ICON_STANDARD_LOGGING{
|
||||
background-image: url(/images/import.gif) !important;
|
||||
}
|
||||
.ICON_EMAILS {
|
||||
/*ss_email_edit*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -6715px !important;
|
||||
}
|
||||
.ICON_WEBSERVICES {
|
||||
/*ss_server_connect*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -14095px !important;
|
||||
}
|
||||
.ICON_SKINS {
|
||||
background-image: url(/skins/neoclassic/images/icon-pmskins.png) !important;
|
||||
.ICON_skin {
|
||||
background-image: url(/images/icon-pmskin.png) !important;
|
||||
width: 15px !important;
|
||||
height: 15px !important;
|
||||
}
|
||||
.ICON_LOGO {
|
||||
background-image: url(/skins/neoclassic/images/icon-pmlogo-15x15.png) !important;
|
||||
background-image: url(/images/icon-luranasoftlogo-15x15.png) !important;
|
||||
width: 15px !important;
|
||||
height: 15px !important;
|
||||
}
|
||||
.ICON_CLEAR_CACHE {
|
||||
background-image: url(/skins/neoclassic/images/icon-pmclear-cache.png) !important;
|
||||
background-image: url(/images/icon-pmclear-cache.png) !important;
|
||||
width: 15px !important;
|
||||
height: 15px !important;
|
||||
}
|
||||
.ICON_CALENDAR {
|
||||
/*ss_calendar*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -2899px !important;
|
||||
}
|
||||
.ICON_LOG_CASE_SCHEDULER {
|
||||
/*ss_timeline_marker*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -17011px !important;
|
||||
}
|
||||
.ICON_EVENT {
|
||||
/*ss_table_gear*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -15517px !important;
|
||||
}
|
||||
.ICON_CRON {
|
||||
/*ss_time*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -16939px !important;
|
||||
}
|
||||
.ICON_PROCESS_CATEGORY {
|
||||
/*ss_sitemap_color*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -14833px !important;
|
||||
}
|
||||
.ICON_LOGIN {
|
||||
/*ss_key*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -8929px !important;
|
||||
}
|
||||
.ICON_DASHBOARD {
|
||||
background-image: url(/skins/neoclassic/images/icon-dashboard.png) !important;
|
||||
background-image: url(/images/icon-dashboard.png) !important;
|
||||
width: 15px !important;
|
||||
height: 15px !important;
|
||||
}
|
||||
|
||||
.ICON_STRATEGIC_DASHBOARD {
|
||||
background-image: url(/skins/neoclassic/images/dashboard.png) !important;
|
||||
background-image: url(/images/dashboard.png) !important;
|
||||
width: 15px !important;
|
||||
height: 15px !important;
|
||||
}
|
||||
@@ -981,23 +1038,23 @@ antes funcionaba.
|
||||
.ICON_PM_REQUIREMENTS {
|
||||
/*ss_wrench*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -17821px !important;
|
||||
}
|
||||
.ICON_PHP_INFO {
|
||||
background-image: url(/skins/neoclassic/images/documents/extension/php.png) !important;
|
||||
background-image: url(/images/documents/extension/php.png) !important;
|
||||
width: 16px !important;
|
||||
height: 16px !important;
|
||||
}
|
||||
.ICON_INFORMATION {
|
||||
/*ss_information*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -8749px !important;
|
||||
}
|
||||
/* Language Support module styles*/
|
||||
.upload-icon {
|
||||
background: url('/skins/neoclassic/images/cases-documents.png') no-repeat 0 0 !important;
|
||||
background: url('/images/cases-documents.png') no-repeat 0 0 !important;
|
||||
}
|
||||
#fi-button-msg {
|
||||
border: 2px solid #ccc;
|
||||
@@ -1009,39 +1066,39 @@ antes funcionaba.
|
||||
.ICON_HEARTBEAT {
|
||||
/*ss_heart*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -8335px !important;
|
||||
}
|
||||
.ICON_USERS {
|
||||
/*ss_user*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -17173px !important;
|
||||
height: 11px;
|
||||
}
|
||||
.ICON_ROLES {
|
||||
/*ss_application_key*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -325px !important;
|
||||
}
|
||||
.ICON_GROUPS {
|
||||
/*ss_group*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -8173px !important;
|
||||
height: 11px;
|
||||
}
|
||||
.ICON_DEPARTAMENTS {
|
||||
/*ss_chart_organisation*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -3871px !important;
|
||||
}
|
||||
.ICON_AUTHSOURCES {
|
||||
/*ss_key*/
|
||||
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-position: 0 -8929px !important;
|
||||
}
|
||||
.x-headBlock {
|
||||
@@ -1151,34 +1208,34 @@ antes funcionaba.
|
||||
font: 13px "Open Sans", Tahoma, sans-serif, MiscFixed;
|
||||
}
|
||||
.x-pm-home {
|
||||
background-image: url(/skins/neoclassic/images/homeIcon.png) !important;
|
||||
background-image: url(/images/homeIcon.png) !important;
|
||||
}
|
||||
.x-pm-bpmn {
|
||||
background-image: url(/skins/neoclassic/images/bpmnIcon.png) !important;
|
||||
background-image: url(/images/bpmnIcon.png) !important;
|
||||
}
|
||||
.x-pm-designer {
|
||||
background-image: url(/skins/neoclassic/images/designerIcon.png) !important;
|
||||
background-image: url(/images/designerIcon.png) !important;
|
||||
}
|
||||
.x-pm-setup {
|
||||
background-image: url(/skins/neoclassic/images/setupIcon.png) !important;
|
||||
background-image: url(/images/setupIcon.png) !important;
|
||||
}
|
||||
.x-pm-profile {
|
||||
background-image: url(/skins/neoclassic/images/profile-icontab.png) !important;
|
||||
background-image: url(/images/profile-icontab.png) !important;
|
||||
}
|
||||
.x-pm-dashboard {
|
||||
background-image: url(/skins/neoclassic/images/dashboard.png) !important;
|
||||
background-image: url(/images/dashboard.png) !important;
|
||||
}
|
||||
.x-pm-toolbars {
|
||||
background-color: #F0F0F0;
|
||||
background-image: url("/skins/neoclassic/images/ext/gray/toolbar/bg.gif");
|
||||
background-image: url("/images/ext/gray/toolbar/bg.gif");
|
||||
border-color: #D0D0D0;
|
||||
}
|
||||
.x-pm-logout-icon {
|
||||
background-image: url(/skins/neoclassic/images/logout.gif);
|
||||
background-image: url(/images/logout.gif);
|
||||
}
|
||||
.x-pm-headerbar1 {
|
||||
background-color: #32405a;
|
||||
background-image: url("/skins/neoclassic/images/header_bg.jpg");
|
||||
background-image: url("/images/header_bg.jpg");
|
||||
color: #fff;
|
||||
padding: 0px;
|
||||
font: 8pt "Open Sans", Tahoma, sans-serif, MiscFixed;
|
||||
@@ -1186,7 +1243,7 @@ antes funcionaba.
|
||||
}
|
||||
.x-pm-headerbar2 {
|
||||
background-color: #000;
|
||||
background-image: url("/skins/neoclassic/images/canvastile_bg1.jpg");
|
||||
background-image: url("/images/canvastile_bg1.jpg");
|
||||
color: #fff;
|
||||
padding: 5px;
|
||||
font: 8pt "Open Sans", Tahoma, sans-serif, MiscFixed;
|
||||
@@ -1513,7 +1570,7 @@ table.keys tbody tr td.dead {
|
||||
padding-left: 175px;
|
||||
}
|
||||
.x-pm-startcase-btn {
|
||||
background-image: url(/skins/neoclassic/images/start.png) !important;
|
||||
background-image: url(/images/start.png) !important;
|
||||
color: #000 !important;
|
||||
padding-left: 25px !important;
|
||||
padding-right: 2px !important;
|
||||
@@ -1522,7 +1579,7 @@ table.keys tbody tr td.dead {
|
||||
font: 12px "Open Sans", Tahoma, sans-serif, MiscFixed;
|
||||
}
|
||||
.x-pm-notes-btn {
|
||||
background-image: url(/skins/neoclassic/images/notes.png) !important;
|
||||
background-image: url(/images/notes.png) !important;
|
||||
color: #000 !important;
|
||||
padding-left: 2px !important;
|
||||
padding-right: 2px !important;
|
||||
@@ -1653,7 +1710,7 @@ td.x-cnotes-label {
|
||||
/** new Ext layouts **/
|
||||
.x-pm-login-body {
|
||||
background: none repeat scroll 0 0 #32405a;
|
||||
background-image: url("/skins/neoclassic/images/canvastile_bg2.jpg");
|
||||
background-image: url("/images/canvastile_bg2.jpg");
|
||||
}
|
||||
#loading-message {
|
||||
padding-left: 10px !important;
|
||||
@@ -1661,7 +1718,7 @@ td.x-cnotes-label {
|
||||
font: bold 10px/1.9 "Open Sans", Tahoma, sans-serif, MiscFixed;
|
||||
}
|
||||
.x-pm-footer {
|
||||
background-image: url("/skins/neoclassic/images/canvastile_bg2.jpg");
|
||||
background-image: url("/images/canvastile_bg2.jpg");
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
@@ -1698,15 +1755,27 @@ td.x-cnotes-label {
|
||||
font-size: 9px;
|
||||
}
|
||||
.x-grid3-cell-inner, .x-grid3-hd-inner {
|
||||
overflow:hidden;
|
||||
padding:3px 3px 3px 5px;
|
||||
white-space:normal;
|
||||
color: #2D2D2D;
|
||||
font-family: arial;
|
||||
font-size: 12px;
|
||||
overflow: hidden;
|
||||
padding: 3px 3px 3px 5px;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* Cases Interface styles
|
||||
*/
|
||||
|
||||
|
||||
.ICON_PMENTERPRISE {
|
||||
background-image: url(/images/icon-pmlogo-15x15.png) !important;
|
||||
}
|
||||
|
||||
.ICON_ADDONSSTORE {
|
||||
background-image: url(/images/enterprise/store-medium.png) !important;
|
||||
}
|
||||
|
||||
.msg .x-box-mc {
|
||||
font-size:14px;
|
||||
}
|
||||
@@ -1727,6 +1796,24 @@ white-space:normal;
|
||||
background-color: #fff !important;
|
||||
}
|
||||
|
||||
.download {
|
||||
background-color: #333333 !important;
|
||||
/*padding-left: 17px !important;*/
|
||||
|
||||
background-image: url(/images/enterprise/loader-black.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 2px center;
|
||||
}
|
||||
|
||||
.install {
|
||||
background-color: #333333 !important;
|
||||
/*padding-left: 17px !important;*/
|
||||
|
||||
background-image: url(/images/enterprise/loader-black.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 2px center;
|
||||
}
|
||||
|
||||
.installed {
|
||||
background-color: #959595 !important;
|
||||
|
||||
@@ -1777,81 +1864,3 @@ white-space:normal;
|
||||
-moz-border-radius: 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.cancelSummary {
|
||||
color: #333;
|
||||
background: #fff;
|
||||
border:1px #ccc solid;
|
||||
}
|
||||
.claimCaseSummary {
|
||||
color: #ffffff;
|
||||
background-color: #337ab7;
|
||||
border:1px #2e6da4 solid;
|
||||
}
|
||||
.claimCaseSummary .x-btn-text {
|
||||
color: #fff;
|
||||
padding: 6px 6px 6px 6px;
|
||||
height: 28px !important;
|
||||
-moz-border-radius: 20px;
|
||||
-webkit-border-radius: 20px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
.cancelSummary .x-btn-text {
|
||||
padding: 6px 6px 6px 6px;
|
||||
height: 25px !important;
|
||||
-moz-border-radius: 20px;
|
||||
-webkit-border-radius: 20px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
.claimCaseSummary td {
|
||||
color: #ffffff;
|
||||
background-color: #337ab7;
|
||||
border-color: #2e6da4;
|
||||
}
|
||||
.claimCaseSummary tbody:hover td {
|
||||
color: #ffffff;
|
||||
background-color: #286090;
|
||||
border-color: #204d74;
|
||||
}
|
||||
.cancelSummary td {
|
||||
color: #333;
|
||||
background: #fff;
|
||||
}
|
||||
.cancelSummary tbody:hover td {
|
||||
color: #333333;
|
||||
background-color: #e6e6e6;
|
||||
border-color: #adadad;
|
||||
}
|
||||
.cancelSummary .claimCaseSummary {
|
||||
display: inline-block;
|
||||
padding: 6px 12px;
|
||||
margin-bottom: 0;
|
||||
font-size: 12px !important;
|
||||
font-weight: 400;
|
||||
line-height: 1.42857143;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
-ms-touch-action: manipulation;
|
||||
touch-action: manipulation;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
background-image: none;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.navPanelBottom .x-toolbar-cell {
|
||||
clear: both;
|
||||
height: 50px;
|
||||
}
|
||||
.nav_list li a {
|
||||
padding: 2px 2px 2px 10px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
width: 100px;
|
||||
white-space: nowrap;
|
||||
display: inline-block;
|
||||
}
|
||||
12
workflow/engine/skinEngine/neoclassic/css/printstyle.css → workflow/engine/skinEngine/lurana/css/printstyle.css
Normal file → Executable file
@@ -3,37 +3,37 @@
|
||||
*/
|
||||
@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');
|
||||
src: url('/fonts/OpenSans-Light-webfont.woff') format('woff'), url('/fonts/OpenSans-Light-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-LightItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-LightItalic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Regular-webfont.woff') format('woff'), url('/fonts/OpenSans-Regular-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Italic-webfont.woff') format('woff'), url('/fonts/OpenSans-Italic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Semibold-webfont.woff') format('woff'), url('/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-SemiboldItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-SemiboldItalic-webfont.ttf') format('truetype'), url('/fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
20
workflow/engine/skinEngine/neoclassic/css/rtl.css → workflow/engine/skinEngine/lurana/css/rtl.css
Normal file → Executable file
@@ -3,37 +3,37 @@
|
||||
*/
|
||||
@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');
|
||||
src: url('/fonts/OpenSans-Light-webfont.woff') format('woff'), url('/fonts/OpenSans-Light-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-LightItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-LightItalic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Regular-webfont.woff') format('woff'), url('/fonts/OpenSans-Regular-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Italic-webfont.woff') format('woff'), url('/fonts/OpenSans-Italic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Semibold-webfont.woff') format('woff'), url('/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-SemiboldItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-SemiboldItalic-webfont.ttf') format('truetype'), url('/fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
@@ -559,11 +559,6 @@ x-btn-mc em.x-btn-arrow {
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
img.x-form-trigger.x-form-arrow-trigger {
|
||||
border-left: solid 1px rgb(156, 153, 153);
|
||||
}
|
||||
|
||||
.x-form-field-wrap {
|
||||
right: 0;
|
||||
left: auto;
|
||||
@@ -677,6 +672,3 @@ td.x-date-mp-sep {
|
||||
.ext-ie .x-menu-item-checked .x-menu-group-item .x-menu-item-icon {
|
||||
right: 0x !important;
|
||||
}
|
||||
#startCaseTreePanel span:after, font:after {
|
||||
content: "\200E";
|
||||
}
|
||||
16
workflow/engine/skinEngine/neoclassic/css/sprite.css → workflow/engine/skinEngine/lurana/css/sprite.css
Normal file → Executable file
@@ -3,37 +3,37 @@
|
||||
*/
|
||||
@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');
|
||||
src: url('/fonts/OpenSans-Light-webfont.woff') format('woff'), url('/fonts/OpenSans-Light-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-LightItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-LightItalic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Regular-webfont.woff') format('woff'), url('/fonts/OpenSans-Regular-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Italic-webfont.woff') format('woff'), url('/fonts/OpenSans-Italic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Semibold-webfont.woff') format('woff'), url('/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-SemiboldItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-SemiboldItalic-webfont.ttf') format('truetype'), url('/fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
@@ -197,7 +197,7 @@ button:-moz-focus-inner {
|
||||
Sprite modificado de http://ajaxbestiary.com/Labs/SilkSprite/
|
||||
*/
|
||||
.ss_sprite {
|
||||
background-image: url(/skins/neoclassic/images/icons_silk/sprites.png) !important;
|
||||
background-image: url(/images/icons_silk/sprites.png) !important;
|
||||
background-repeat: no-repeat;
|
||||
display: inline;
|
||||
/*height:18px !important;*/
|
||||
@@ -217,7 +217,7 @@ Sprite modificado de http://ajaxbestiary.com/Labs/SilkSprite/
|
||||
margin: 0;
|
||||
}
|
||||
.panel_headerBar___processmaker {
|
||||
background: url("/skins/neoclassic/images/ext/gray/toolbar/bg.gif") #f0f0f0 !important;
|
||||
background: url("/images/ext/gray/toolbar/bg.gif") #f0f0f0 !important;
|
||||
}
|
||||
.button_menu_ext {
|
||||
padding-left: 20px !important;
|
||||
12
workflow/engine/skinEngine/neoclassic/css/sprite_ie.css → workflow/engine/skinEngine/lurana/css/sprite_ie.css
Normal file → Executable file
@@ -3,37 +3,37 @@
|
||||
*/
|
||||
@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');
|
||||
src: url('/fonts/OpenSans-Light-webfont.woff') format('woff'), url('/fonts/OpenSans-Light-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-LightItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-LightItalic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Regular-webfont.woff') format('woff'), url('/fonts/OpenSans-Regular-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Italic-webfont.woff') format('woff'), url('/fonts/OpenSans-Italic-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-Semibold-webfont.woff') format('woff'), url('/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'), url('/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');
|
||||
src: url('/fonts/OpenSans-SemiboldItalic-webfont.woff') format('woff'), url('/fonts/OpenSans-SemiboldItalic-webfont.ttf') format('truetype'), url('/fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
863
workflow/engine/skinEngine/neoclassic/css/style.css → workflow/engine/skinEngine/lurana/css/style.css
Normal file → Executable file
768
workflow/engine/skinEngine/lurana/css/viena.css
Executable file
@@ -0,0 +1,768 @@
|
||||
/* Autogenerated CSS file by gulliver framework
|
||||
Skin: luranasoft-viena
|
||||
Date: Tue, 26 Nov 2024 04:53:49 GMT*/
|
||||
.v-sidebar-menu {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100vh;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
z-index: 999;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
-webkit-transition: 0.3s max-width;
|
||||
transition: 0.3s max-width;
|
||||
}
|
||||
.v-sidebar-menu * {
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.v-sidebar-menu > .vsm--list {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.v-sidebar-menu .vsm--dropdown > .vsm--list {
|
||||
padding: 5px;
|
||||
border-color: #f2f2f2;
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
.v-sidebar-menu .vsm--item {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
.vsm_collapsed .vsm--item {
|
||||
margin-left: 0px;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link {
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
padding: 5px 8px 5px 0px;
|
||||
line-height: 30px;
|
||||
text-decoration: none;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
z-index: 20;
|
||||
-webkit-transition: 0.3s all;
|
||||
transition: 0.3s all;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link_exact-active,
|
||||
.v-sidebar-menu .vsm--link_active {
|
||||
font-weight: 600;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link_disabled {
|
||||
opacity: 0.4;
|
||||
pointer-events: none;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link_level-1 .vsm--icon {
|
||||
line-height: 30px;
|
||||
width: 30px;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
margin-right: 0px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link:after {
|
||||
content: "";
|
||||
display: block;
|
||||
clear: both;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link_mobile-item {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link_mobile-item.vsm--link_hover,
|
||||
.v-sidebar-menu .vsm--link_mobile-item:hover {
|
||||
background-color: #112369;
|
||||
border-bottom: 1px solid #112369;
|
||||
border-top: 1px solid #112369;
|
||||
border-right: 4px solid #333333;
|
||||
color:#ffffff !important;
|
||||
}
|
||||
.v-sidebar-menu .vsm--title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
max-width: 150px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.v-sidebar-menu .vsm--icon {
|
||||
float: left;
|
||||
line-height: 30px;
|
||||
margin-right: 10px;
|
||||
|
||||
}
|
||||
.vsm--link_level-2 > .vsm--icon {
|
||||
margin-top: 0px;
|
||||
padding-left: 20px;
|
||||
|
||||
}
|
||||
.v-sidebar-menu .vsm--arrow {
|
||||
width: 30px;
|
||||
text-align: center;
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 50%;
|
||||
-webkit-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
-webkit-transition: 0.3s -webkit-transform;
|
||||
transition: 0.3s -webkit-transform;
|
||||
transition: 0.3s transform;
|
||||
transition: 0.3s transform, 0.3s -webkit-transform;
|
||||
}
|
||||
.v-sidebar-menu .vsm--arrow:after {
|
||||
content: "\F0A9";
|
||||
font-family: "Font Awesome 5 Free";
|
||||
}
|
||||
.v-sidebar-menu .vsm--arrow_open {
|
||||
-webkit-transform: translateY(-50%) rotate(90deg);
|
||||
transform: translateY(-50%) rotate(90deg);
|
||||
}
|
||||
.v-sidebar-menu .vsm--arrow_slot:after {
|
||||
display: none;
|
||||
}
|
||||
.v-sidebar-menu .vsm--header {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
padding: 10px;
|
||||
white-space: nowrap;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.v-sidebar-menu .vsm--badge {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 50%;
|
||||
-webkit-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
border-radius: 11px;
|
||||
}
|
||||
.v-sidebar-menu .vsm--badge_default {
|
||||
padding: 0px 6px;
|
||||
font-size: 12px;
|
||||
border-radius: 3px;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.v-sidebar-menu .vsm--toggle-btn {
|
||||
display: block;
|
||||
text-align: center;
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
height: 50px;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
width: 100%;
|
||||
}
|
||||
.v-sidebar-menu .vsm--toggle-btn:after {
|
||||
content: "\F337";
|
||||
font-family: "Font Awesome 5 Free";
|
||||
}
|
||||
.v-sidebar-menu .vsm--toggle-btn_slot:after {
|
||||
display: none;
|
||||
}
|
||||
.v-sidebar-menu.vsm_collapsed .vsm--link_level-1.vsm--link_hover,
|
||||
.v-sidebar-menu.vsm_collapsed .vsm--link_level-1:hover {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
.v-sidebar-menu.vsm_collapsed .vsm--link_level-1 .vsm--icon,
|
||||
.v-sidebar-menu.vsm_collapsed .vsm--link_level-2 > .vsm--icon {
|
||||
margin-right: 0px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
.v-sidebar-menu.vsm_rtl {
|
||||
right: 0;
|
||||
left: inherit;
|
||||
text-align: right;
|
||||
}
|
||||
.v-sidebar-menu.vsm_rtl > .vsm--list {
|
||||
direction: rtl;
|
||||
}
|
||||
.v-sidebar-menu.vsm_rtl.vsm_collapsed
|
||||
> .vsm--list
|
||||
.vsm--link_level-1
|
||||
.vsm--icon .fas .fa-chart-pie {
|
||||
margin-left: 0px;
|
||||
}
|
||||
.v-sidebar-menu.vsm_rtl .vsm--icon {
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
.v-sidebar-menu.vsm_rtl .vsm--arrow {
|
||||
left: 10px;
|
||||
right: inherit;
|
||||
}
|
||||
.v-sidebar-menu.vsm_rtl .vsm--badge {
|
||||
left: 10px;
|
||||
right: inherit;
|
||||
}
|
||||
.v-sidebar-menu .expand-enter-active,
|
||||
.v-sidebar-menu .expand-leave-active {
|
||||
-webkit-transition: height 0.35s ease;
|
||||
transition: height 0.35s ease;
|
||||
overflow: hidden;
|
||||
}
|
||||
.v-sidebar-menu .expand-enter,
|
||||
.v-sidebar-menu .expand-leave-to {
|
||||
height: 0 !important;
|
||||
}
|
||||
.v-sidebar-menu .slide-animation-enter-active {
|
||||
-webkit-animation: slide-animation 0.2s;
|
||||
animation: slide-animation 0.2s;
|
||||
}
|
||||
.v-sidebar-menu .slide-animation-leave-active {
|
||||
animation: slide-animation 0.2s reverse;
|
||||
}
|
||||
@-webkit-keyframes slide-animation {
|
||||
0% {
|
||||
width: 0%;
|
||||
}
|
||||
100% {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
@keyframes slide-animation {
|
||||
0% {
|
||||
width: 0%;
|
||||
}
|
||||
100% {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.v-sidebar-menu .vsm--mobile-item > .vsm--item {
|
||||
padding-top: 0 !important;
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
.v-sidebar-menu {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
.v-sidebar-menu .vsm--scroll-wrapper {
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link {
|
||||
color: #333333;
|
||||
font-family: "Open Sans", Arial, sans-serif;
|
||||
font-size: 13px;
|
||||
border-bottom: 1px solid #DDDDDD;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link_exact-active,
|
||||
.v-sidebar-menu .vsm--link_active {
|
||||
background-color: #fff !important;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
border-left: 1px solid #e0e0e0;
|
||||
border-right: 4px solid #3071A9;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
color:#333333;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link_level-1 .vsm--link_exact-active,
|
||||
.v-sidebar-menu .vsm--link_level-1 .vsm--link_active {
|
||||
-webkit-box-shadow: 3px 0px 0px 0px #3397e1 inset;
|
||||
box-shadow: 3px 0px 0px 0px #3397e1 inset;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link_level-1.vsm--link_exact-active .vsm--icon,
|
||||
.v-sidebar-menu .vsm--link_level-1.vsm--link_active .vsm--icon {
|
||||
color: #989898;
|
||||
}
|
||||
a.router-link-exact-active.router-link-active.vsm--link.vsm--link_level-2.vsm--link_active.vsm--link_exact-active {
|
||||
color: #333333;
|
||||
background-color: #fff !important;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
border-left: 1px solid #e0e0e0;
|
||||
border-right: 4px solid #c5c5c5;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link_hover,
|
||||
.v-sidebar-menu .vsm--link:hover {
|
||||
color: #333333;
|
||||
background-color: #fff !important;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
border-left: 1px solid #e0e0e0;
|
||||
border-right: 4px solid #c5c5c5;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
}
|
||||
.v-sidebar-menu .vsm--dropdown .vsm--link:hover {
|
||||
color: #333333;
|
||||
background-color: #fff !important;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
border-left: 1px solid #e0e0e0;
|
||||
border-right: 4px solid #c5c5c5;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link_mobile-item {
|
||||
color: #333333;
|
||||
}
|
||||
.v-sidebar-menu .vsm--link_mobile-item.vsm--link_hover,
|
||||
.v-sidebar-menu .vsm--link_mobile-item:hover {
|
||||
color: #333333;
|
||||
}
|
||||
.v-sidebar-menu.vsm_collapsed .vsm--link_level-1.vsm--link_hover .vsm--icon,
|
||||
.v-sidebar-menu.vsm_collapsed .vsm--link_level-1:hover .vsm--icon {
|
||||
color: #333333;
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
.v-sidebar-menu .vsm--dropdown .vsm--link {
|
||||
color: #333333;
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
.vsm--link_level-2:hover .vsm--title,
|
||||
.vsm--link_level-2:hover .vsm--icon {
|
||||
color: #333;
|
||||
}
|
||||
.v-sidebar-menu .vsm--mobile-bg {
|
||||
color: #33333;
|
||||
background-color: #fff !important;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
border-left: 1px solid #e0e0e0;
|
||||
border-right: 4px solid #c5c5c5;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
}
|
||||
.v-sidebar-menu.vsm_expanded .vsm--item_open .vsm--link_level-1 {
|
||||
color: #33333;
|
||||
background-color: #fff !important;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
border-left: 1px solid #e0e0e0;
|
||||
border-right: 4px solid #c5c5c5;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
}
|
||||
.v-sidebar-menu.vsm_expanded .vsm--item_open .vsm--link_level-1 .vsm--icon {
|
||||
color: #333;
|
||||
background-color: #ffffff !important;
|
||||
}
|
||||
.v-sidebar-menu.vsm_rtl .vsm--link_level-1.vsm--link_active,
|
||||
.v-sidebar-menu.vsm_rtl .vsm--link_level-1.vsm--link_exact-active {
|
||||
-webkit-box-shadow: -3px 0px 0px 0px #3397e1 inset;
|
||||
box-shadow: -3px 0px 0px 0px #9ac5c7 inset;
|
||||
}
|
||||
.v-sidebar-menu .vsm--header {
|
||||
color:#007ea7;
|
||||
font-family: "Open Sans", Arial, sans-serif;
|
||||
font-size: 13px;
|
||||
}
|
||||
.v-sidebar-menu .vsm--badge_default {
|
||||
color: #fff;
|
||||
background-color: #1e1e21;
|
||||
}
|
||||
.v-sidebar-menu .vsm--toggle-btn {
|
||||
color: #222222;
|
||||
background-color: #fff;
|
||||
}
|
||||
.vsm--item > .vsm--item_open {
|
||||
color: #fff;
|
||||
background-color: #112369;
|
||||
border-bottom: 1px solid #112369;
|
||||
border-top: 1px solid #112369;
|
||||
border-right: 4px solid #333333;
|
||||
}
|
||||
.vsm--item > .vsm--item_open .vsm--icon {
|
||||
color: #333333;
|
||||
}
|
||||
.v-sidebar-menu
|
||||
.vsm--dropdown
|
||||
> .vsm--list
|
||||
.vsm--link.vsm--link_level-2.vsm--item_open {
|
||||
color: #fff;
|
||||
background-color: #112369;
|
||||
border-bottom: 1px solid #112369;
|
||||
border-top: 1px solid #112369;
|
||||
border-right: 4px solid #333333;
|
||||
}
|
||||
.bs-frame-ltr {
|
||||
height: calc(100vh - 0.1em);
|
||||
overflow-y: hidden;
|
||||
float: right;
|
||||
}
|
||||
.bs-frame-rtl {
|
||||
height: calc(100vh - 0.1em);
|
||||
overflow-y: hidden;
|
||||
float: left;
|
||||
}
|
||||
.v-sidebar-menu .vsm--arrow-rtl:after {
|
||||
content: "\F0A9" !important;
|
||||
font-family: "Font Awesome 5 Free";
|
||||
}
|
||||
.v-sidebar-menu .vsm--arrow.vsm--arrow_open-rtl {
|
||||
-webkit-transform: translateY(-50%) rotate(90deg);
|
||||
transform: translateY(-50%) rotate(270deg) !important;
|
||||
}
|
||||
.vsm--mobile-item {
|
||||
max-width: 210px !important;
|
||||
}
|
||||
a:hover {
|
||||
color: #333333;
|
||||
background-color: transparent;
|
||||
}
|
||||
#home {
|
||||
padding-left: 260px;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
#home.collapsed {
|
||||
padding-left: 50px;
|
||||
}
|
||||
#home.onmobile {
|
||||
padding-left: 50px;
|
||||
}
|
||||
.container {
|
||||
max-width: 1500px;
|
||||
}
|
||||
.bg-primary-pm {
|
||||
background-color: #3071A9;
|
||||
}
|
||||
.table thead th {
|
||||
vertical-align: middle;
|
||||
background-color: #3071A9;
|
||||
border-right: 2px solid #ffffff;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
font-family: Chivo-regular, sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.v-btn-request.btn-success {
|
||||
color: #fff;
|
||||
background-color: #003249;
|
||||
border-color: #003249;
|
||||
border-radius: 20px 20px;
|
||||
}
|
||||
.v-btn-request.btn-success.focus,
|
||||
.v-btn-request.btn-success:focus,
|
||||
.v-btn-request.btn-success:hover {
|
||||
color: #fff;
|
||||
background-color: #80ced7;
|
||||
border-color: #80ced7;
|
||||
border-radius: 20px 20px;
|
||||
}
|
||||
.v-btn-request.btn-success.focus,
|
||||
.v-btn-request.btn-success:focus {
|
||||
box-shadow: 0 0 0 0.2rem rgba(108, 72, 180, 0.5);
|
||||
}
|
||||
.v-btn-request.btn-success.disabled,
|
||||
.v-btn-request.btn-success:disabled {
|
||||
color: #fff;
|
||||
background-color: #f2f2f2;
|
||||
border-color: #f2f2f2;
|
||||
}
|
||||
.v-btn-request.btn-success:not(:disabled):not(.disabled).active,
|
||||
.v-btn-request.btn-success:not(:disabled):not(.disabled):active,
|
||||
.show > .v-btn-request.btn-success.dropdown-toggle {
|
||||
color: #fff;
|
||||
background-color: #112369;
|
||||
border-color: #112369;
|
||||
}
|
||||
.btn-success:not(:disabled):not(.disabled).active:focus,
|
||||
.btn-success:not(:disabled):not(.disabled):active:focus,
|
||||
.show > .btn-success.dropdown-toggle:focus {
|
||||
box-shadow: 0 0 0 0.2rem rgba(108, 72, 180, 0.5);
|
||||
}
|
||||
.btn-outline-info {
|
||||
color: #666666;
|
||||
border-color: #f2f2f2;
|
||||
}
|
||||
.btn-outline-info:hover {
|
||||
color: #112369;
|
||||
background-color: #f2f2f2;
|
||||
border-color: #cdcdcd;
|
||||
}
|
||||
.btn-outline-info.focus,
|
||||
.btn-outline-info:focus {
|
||||
box-shadow: 0 0 0 0.2rem rgba(23, 82, 184, 0.5);
|
||||
}
|
||||
.btn-outline-info.disabled,
|
||||
.btn-outline-info:disabled {
|
||||
color: #0a47b1;
|
||||
background-color: transparent;
|
||||
}
|
||||
.btn-outline-info:not(:disabled):not(.disabled).active,
|
||||
.btn-outline-info:not(:disabled):not(.disabled):active,
|
||||
.show > .btn-outline-info.dropdown-toggle {
|
||||
color: #fff;
|
||||
background-color: #0a47b1;
|
||||
border-color: #0a47b1;
|
||||
}
|
||||
.table-striped tbody tr:nth-of-type(odd) {
|
||||
background-color: rgba(147, 55, 207, 0.03);
|
||||
}
|
||||
.pm-multiview-header-button {
|
||||
background-color: transparent;
|
||||
border-color: white;
|
||||
font-size: 1.6rem;
|
||||
color: #3071A9;
|
||||
display: inline-block;
|
||||
padding: 0px 7px 0px 7px;
|
||||
}
|
||||
.pm-multiview-header-button:hover {
|
||||
background-color: transparent;
|
||||
border-color: white;
|
||||
font-size: 1.6rem;
|
||||
color: #3071A9;
|
||||
display: inline-block;
|
||||
padding: 0px 7px 0px 7px;
|
||||
}
|
||||
.pm-multiview-header-button.focus,
|
||||
.pm-multiview-header-button:focus,
|
||||
.pm-multiview-header-button:hover {
|
||||
color: #112369;
|
||||
}
|
||||
.pm-multiview-header-button.focus,
|
||||
.pm-multiview-header-button:focus {
|
||||
box-shadow: 0 0 0 0.2rem rgba(108, 72, 180, 0.5);
|
||||
}
|
||||
.pm-multiview-header-button.disabled,
|
||||
.pm-multiview-header-button:disabled {
|
||||
color: #fff;
|
||||
background-color: #f2f2f2;
|
||||
border-color: #f2f2f2;
|
||||
}
|
||||
.pm-multiview-header-button:not(:disabled):not(.disabled).active,
|
||||
.pm-multiview-header-button:not(:disabled):not(.disabled):active,
|
||||
.show > .pm-multiview-header-button.dropdown-toggle {
|
||||
color: #fff;
|
||||
background-color: #112369;
|
||||
border-color: #112369;
|
||||
}
|
||||
.pm-multiview-header-button:not(:disabled):not(.disabled).active:focus,
|
||||
.pm-multiview-header-button:not(:disabled):not(.disabled):active:focus,
|
||||
.show > .pm-multiview-header-button.dropdown-toggle:focus {
|
||||
box-shadow: 0 0 0 0.2rem rgba(108, 72, 180, 0.5);
|
||||
}
|
||||
.pm-vue-list-inside {
|
||||
border-left: solid #112369;
|
||||
color: #212529;
|
||||
background-color: rgba(147, 55, 207, 0.02);
|
||||
}
|
||||
.pm-vue-card-inside {
|
||||
border-left: solid #112369;
|
||||
color: #666666;
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
.v-process-card {
|
||||
margin-right: 15px;
|
||||
margin-bottom: 15px;
|
||||
border-left: solid #112369;
|
||||
}
|
||||
.card-body {
|
||||
background-color: #fcf9fd;
|
||||
color: #666666;
|
||||
-ms-flex: 1 1 auto;
|
||||
flex: 1 1 auto;
|
||||
min-height: 1px;
|
||||
padding: 1.25rem;
|
||||
}
|
||||
.text-muted {
|
||||
color: #666666 !important;
|
||||
}
|
||||
.filter-field {
|
||||
display: flex;
|
||||
}
|
||||
.page-item.active .page-link {
|
||||
z-index: 3;
|
||||
color: #ffffff;
|
||||
background-color: #112369;
|
||||
border-color: #112369;
|
||||
}
|
||||
.page-link {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 0.5rem 0.75rem;
|
||||
margin-left: -1px;
|
||||
line-height: 1.25;
|
||||
color: #333333;
|
||||
background-color: #fff;
|
||||
border: 1px solid #dee2e6;
|
||||
}
|
||||
.comment > button {
|
||||
color: #fff;
|
||||
background-color: #3071A9;
|
||||
border-color: #3071A9;
|
||||
}
|
||||
.comment > button:hover {
|
||||
color: #fff;
|
||||
background-color: #555555;
|
||||
border-color: #555555;
|
||||
}
|
||||
.vp-btn-secondary {
|
||||
color: #2f3133;
|
||||
background-color: #b5b6b6;
|
||||
}
|
||||
.vp-btn-secondary:hover {
|
||||
color: #fff;
|
||||
background-color: #6c757d;
|
||||
border-color: #6c757d;
|
||||
}
|
||||
.vp-btn-primary-inactive {
|
||||
color: #6c757d;
|
||||
background-color: #f2f2f2;
|
||||
border-color: #f2f2f2;
|
||||
}
|
||||
.vp-btn-primary-inactive:hover {
|
||||
color: #6c757d;
|
||||
background-color: #9ad1d4;
|
||||
border-color: #9ad1d4;
|
||||
}
|
||||
.v-pm-drill-down-number.btn-primary {
|
||||
color: #fff;
|
||||
background-color: #f2f2f2;
|
||||
border-color: #f2f2f2;
|
||||
}
|
||||
.v-pm-drill-down-number.btn-primary.focus,
|
||||
.v-pm-drill-down-number.btn-primary:focus,
|
||||
.v-pm-drill-down-number.btn-primary:hover {
|
||||
color: #fff;
|
||||
background-color: #9ad1d4;
|
||||
border-color: #9ad1d4;
|
||||
}
|
||||
.v-pm-drill-down-number.btn-primary.focus,
|
||||
.v-pm-drill-down-number.btn-primary:focus {
|
||||
box-shadow: 0 0 0 0.2rem rgba(108, 72, 180, 0.5);
|
||||
}
|
||||
.v-pm-drill-down-number.btn-primary.disabled,
|
||||
.v-pm-drill-down-number.btn-primary:disabled {
|
||||
color: #fff;
|
||||
background-color: #f2f2f2;
|
||||
border-color: #f2f2f2;
|
||||
}
|
||||
.v-pm-drill-down-number.btn-primary:not(:disabled):not(.disabled).active,
|
||||
.v-pm-drill-down-number.btn-primary:not(:disabled):not(.disabled):active,
|
||||
.show > .v-pm-drill-down-number.btn-primary.dropdown-toggle {
|
||||
color: #fff;
|
||||
background-color: #112369;
|
||||
border-color: #112369;
|
||||
}
|
||||
.v-pm-drill-down-number.btn-primary:not(:disabled):not(.disabled).active:focus,
|
||||
.v-pm-drill-down-number.btn-primary:not(:disabled):not(.disabled):active:focus,
|
||||
.show > .v-pm-drill-down-number.btn-primary.dropdown-toggle:focus {
|
||||
box-shadow: 0 0 0 0.2rem rgba(108, 72, 180, 0.5);
|
||||
}
|
||||
.btn-link {
|
||||
font-weight: 400;
|
||||
color: #112369;
|
||||
text-decoration: none;
|
||||
}
|
||||
.btn-link:hover {
|
||||
font-weight: 400;
|
||||
color: #9ad1d4;
|
||||
text-decoration: none;
|
||||
}
|
||||
.custom-control-input:checked ~ .custom-control-label::before {
|
||||
color: #fff;
|
||||
border-color: #112369;
|
||||
background-color: #112369;
|
||||
}
|
||||
.fa-edit:before {
|
||||
color: #333333 !important;
|
||||
}
|
||||
.fa-check-circle:before {
|
||||
color: #333333 !important;
|
||||
}
|
||||
.fa-pause-circle:before {
|
||||
color: #333333 !important;
|
||||
}
|
||||
.fa-users:before {
|
||||
color: #333333 !important;
|
||||
}
|
||||
.table{
|
||||
color:#666666 !important;
|
||||
font-size:14px;
|
||||
}
|
||||
.v-search-title {
|
||||
color: #333333 !important;
|
||||
font-family: "Arial";
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
.pm-mc-text-icon {
|
||||
padding-top: 8px;
|
||||
color: #333333;
|
||||
}
|
||||
.bi-arrow-left-circle-fill {
|
||||
color: #333333;
|
||||
}
|
||||
.text-right {
|
||||
color: #333333;
|
||||
}
|
||||
.form-control-sm {
|
||||
height: calc(1.5em + .5rem + 2px);
|
||||
padding: 15px !important;
|
||||
}
|
||||
|
||||
.v-btn-texts-header{
|
||||
font-size:16px;
|
||||
}
|
||||
.v-btn-textb-header{
|
||||
font-size:32px;
|
||||
}
|
||||
|
||||
.v-container-mycases .header-container .btn-primary {
|
||||
background-color: #007ea7 !important;
|
||||
border-color: #007ea7 !important;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center !important;
|
||||
background-size: cover !important;
|
||||
border-radius: 20px 20px;
|
||||
margin: 10px;
|
||||
}
|
||||
.v-container-mycases .header-container .btn-danger {
|
||||
background-color: #80ced7 !important;
|
||||
border-color: #80ced7 !important;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center !important;
|
||||
background-size: cover !important;
|
||||
border-radius: 20px 20px;
|
||||
margin: 10px;
|
||||
}
|
||||
.v-container-mycases .header-container .btn-success {
|
||||
background-color: #8FBEFF !important;
|
||||
border-color: #8FBEFF !important;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center !important;
|
||||
background-size: cover !important;
|
||||
border-radius: 20px 20px;
|
||||
margin: 10px;
|
||||
}
|
||||
.v-container-mycases .header-container .btn-warning {
|
||||
background-color: #ffc107 !important;
|
||||
border-color: #ffc107 !important;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center !important;
|
||||
background-size: cover !important;
|
||||
border-radius: 20px 20px;
|
||||
margin: 10px;
|
||||
}
|
||||
.v-btn-header {
|
||||
padding: 2px;
|
||||
-webkit-box-flex: 2;
|
||||
-ms-flex: 2;
|
||||
flex: 2;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: horizontal;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: row;
|
||||
flex-direction: row;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
489
workflow/engine/skinEngine/neoclassic/css/xtheme-gray.css → workflow/engine/skinEngine/lurana/css/xtheme-gray.css
Normal file → Executable file
2
workflow/engine/skinEngine/neoclassic/css2/style1.css → workflow/engine/skinEngine/lurana/css2/style1.css
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
/* Body */
|
||||
body {
|
||||
background: url(../images/background.jpg) no-repeat top #00B4CD;
|
||||
background: url(../images/background.jpg) no-repeat top #8F8F8F;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
42
workflow/engine/skinEngine/neoclassic/error404.php → workflow/engine/skinEngine/lurana/error404.php
Normal file → Executable file
@@ -1,17 +1,14 @@
|
||||
<?php
|
||||
|
||||
if (function_exists("http_response_code")) {
|
||||
<?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"] : "");
|
||||
$http = (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on")? "https" : "http";
|
||||
$host = $_SERVER["SERVER_NAME"] . (($_SERVER["SERVER_PORT"] != "80")? ":" . $_SERVER["SERVER_PORT"] : "");
|
||||
|
||||
$urlLogin = $http . "://" . $host . "/sys/en/neoclassic/login/login";
|
||||
$urlHome = $urlLogin;
|
||||
$urlLogin = $http . "://" . $host . "/sys/en/luranasoft/login/login";
|
||||
$urlHome = $urlLogin;
|
||||
|
||||
if (isset($_GET["url"]) && $_GET["url"] != "") {
|
||||
|
||||
$url = urldecode($_GET["url"]);
|
||||
$url = explode("/", $url);
|
||||
|
||||
@@ -21,41 +18,22 @@ if (isset($_GET["url"]) && $_GET["url"] != "") {
|
||||
|
||||
if (isset($url[1]) && preg_match("/^sys(.+)$/", $url[1], $match)) {
|
||||
$sysSys = $match[1];
|
||||
|
||||
// Check if sys path exists
|
||||
$pathData = getConstant('PATH_DATA');
|
||||
$checkDir = $pathData . "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
|
||||
$pathSkinEngine = getConstant('PATH_SKIN_ENGINE');
|
||||
$checkDir = $pathSkinEngine . $sysSkin;
|
||||
if (!is_dir($checkDir)) {
|
||||
// Try this again
|
||||
$pathCustomSkins = getConstant('PATH_CUSTOM_SKINS');
|
||||
$checkDir = $pathCustomSkins . $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";
|
||||
$urlHome = $http . "://" . $host . "/sys" . $sysSys . "/" . $sysLang . "/" . $sysSkin . "/cases/main";
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
@@ -107,8 +85,8 @@ if (isset($_GET["url"]) && $_GET["url"] != "") {
|
||||
<!-- 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>
|
||||
<li>Or we could take you back to the <a href="<?php echo $urlHome; ?>">home page.</a></li>
|
||||
<li>Or you could start again from the <a href="<?php echo $urlLogin; ?>">login page.</a></li>
|
||||
</ul>
|
||||
<!-- End page links -->
|
||||
</div>
|
||||
@@ -148,4 +126,4 @@ if (isset($_GET["url"]) && $_GET["url"] != "") {
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
8
workflow/engine/skinEngine/neoclassic/extJsInitLoad.html → workflow/engine/skinEngine/lurana/extJsInitLoad.html
Normal file → Executable file
@@ -1,7 +1,7 @@
|
||||
<html>
|
||||
<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"/>
|
||||
<link rel="shortcut icon" href="/images/faviconlurana.ico" type="image/x-icon"/>
|
||||
{header}
|
||||
<style>
|
||||
#loading-mask{
|
||||
@@ -45,8 +45,8 @@
|
||||
<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 href="https://www.luranasoft.com/">
|
||||
<img src="/images/luranasoft_logo.png" border="0"/>
|
||||
</a>
|
||||
</center>
|
||||
</div>
|
||||
0
workflow/public_html/skins/neoclassic/images/calendar/cal.gif → workflow/engine/skinEngine/lurana/images/calendar/cal.gif
Normal file → Executable file
|
Before Width: | Height: | Size: 127 B After Width: | Height: | Size: 127 B |
|
Before Width: | Height: | Size: 829 B After Width: | Height: | Size: 829 B |
|
Before Width: | Height: | Size: 820 B After Width: | Height: | Size: 820 B |
|
Before Width: | Height: | Size: 820 B After Width: | Height: | Size: 820 B |
|
Before Width: | Height: | Size: 823 B After Width: | Height: | Size: 823 B |
|
Before Width: | Height: | Size: 829 B After Width: | Height: | Size: 829 B |
|
Before Width: | Height: | Size: 821 B After Width: | Height: | Size: 821 B |
|
Before Width: | Height: | Size: 830 B After Width: | Height: | Size: 830 B |
|
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
0
workflow/public_html/skins/neoclassic/images/calendar/next.gif → workflow/engine/skinEngine/lurana/images/calendar/next.gif
Normal file → Executable file
|
Before Width: | Height: | Size: 214 B After Width: | Height: | Size: 214 B |
|
Before Width: | Height: | Size: 256 B After Width: | Height: | Size: 256 B |
0
workflow/public_html/skins/neoclassic/images/calendar/pixel.gif → workflow/engine/skinEngine/lurana/images/calendar/pixel.gif
Normal file → Executable file
|
Before Width: | Height: | Size: 67 B After Width: | Height: | Size: 67 B |
0
workflow/public_html/skins/neoclassic/images/calendar/prev.gif → workflow/engine/skinEngine/lurana/images/calendar/prev.gif
Normal file → Executable file
|
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 212 B |
|
Before Width: | Height: | Size: 259 B After Width: | Height: | Size: 259 B |
0
workflow/public_html/skins/neoclassic/images/charts.swf → workflow/engine/skinEngine/lurana/images/charts.swf
Normal file → Executable file
0
workflow/public_html/skins/neoclassic/images/classic/arrowB.gif → workflow/engine/skinEngine/lurana/images/classic/arrowB.gif
Normal file → Executable file
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 809 B After Width: | Height: | Size: 809 B |
0
workflow/public_html/skins/neoclassic/images/classic/bf.jpg → workflow/engine/skinEngine/lurana/images/classic/bf.jpg
Normal file → Executable file
|
Before Width: | Height: | Size: 318 B After Width: | Height: | Size: 318 B |
0
workflow/public_html/skins/neoclassic/images/classic/bm.jpg → workflow/engine/skinEngine/lurana/images/classic/bm.jpg
Normal file → Executable file
|
Before Width: | Height: | Size: 328 B After Width: | Height: | Size: 328 B |
0
workflow/public_html/skins/neoclassic/images/classic/bsm.jpg → workflow/engine/skinEngine/lurana/images/classic/bsm.jpg
Normal file → Executable file
|
Before Width: | Height: | Size: 292 B After Width: | Height: | Size: 292 B |
0
workflow/public_html/skins/neoclassic/images/classic/bsms.jpg → workflow/engine/skinEngine/lurana/images/classic/bsms.jpg
Normal file → Executable file
|
Before Width: | Height: | Size: 323 B After Width: | Height: | Size: 323 B |
|
Before Width: | Height: | Size: 49 B After Width: | Height: | Size: 49 B |
|
Before Width: | Height: | Size: 349 B After Width: | Height: | Size: 349 B |
0
workflow/public_html/skins/neoclassic/images/classic/delete.png → workflow/engine/skinEngine/lurana/images/classic/delete.png
Normal file → Executable file
|
Before Width: | Height: | Size: 470 B After Width: | Height: | Size: 470 B |
0
workflow/public_html/skins/neoclassic/images/classic/error.gif → workflow/engine/skinEngine/lurana/images/classic/error.gif
Normal file → Executable file
|
Before Width: | Height: | Size: 561 B After Width: | Height: | Size: 561 B |
0
workflow/public_html/skins/neoclassic/images/classic/failed.gif → workflow/engine/skinEngine/lurana/images/classic/failed.gif
Normal file → Executable file
|
Before Width: | Height: | Size: 349 B After Width: | Height: | Size: 349 B |
0
workflow/public_html/skins/neoclassic/images/classic/failed.png → workflow/engine/skinEngine/lurana/images/classic/failed.png
Normal file → Executable file
|
Before Width: | Height: | Size: 561 B After Width: | Height: | Size: 561 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
0
workflow/public_html/skins/neoclassic/images/classic/fbc.png → workflow/engine/skinEngine/lurana/images/classic/fbc.png
Normal file → Executable file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
0
workflow/public_html/skins/neoclassic/images/classic/fbl.png → workflow/engine/skinEngine/lurana/images/classic/fbl.png
Normal file → Executable file
|
Before Width: | Height: | Size: 309 B After Width: | Height: | Size: 309 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
0
workflow/public_html/skins/neoclassic/images/classic/fbr.png → workflow/engine/skinEngine/lurana/images/classic/fbr.png
Normal file → Executable file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 578 B After Width: | Height: | Size: 578 B |
|
Before Width: | Height: | Size: 240 B After Width: | Height: | Size: 240 B |
|
Before Width: | Height: | Size: 557 B After Width: | Height: | Size: 557 B |
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 197 B After Width: | Height: | Size: 197 B |
0
workflow/public_html/skins/neoclassic/images/classic/ftc.png → workflow/engine/skinEngine/lurana/images/classic/ftc.png
Normal file → Executable file
|
Before Width: | Height: | Size: 621 B After Width: | Height: | Size: 621 B |
|
Before Width: | Height: | Size: 64 B After Width: | Height: | Size: 64 B |
0
workflow/public_html/skins/neoclassic/images/classic/ftl.png → workflow/engine/skinEngine/lurana/images/classic/ftl.png
Normal file → Executable file
|
Before Width: | Height: | Size: 219 B After Width: | Height: | Size: 219 B |
0
workflow/public_html/skins/neoclassic/images/classic/ftlL.png → workflow/engine/skinEngine/lurana/images/classic/ftlL.png
Normal file → Executable file
|
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 289 B |
|
Before Width: | Height: | Size: 64 B After Width: | Height: | Size: 64 B |
0
workflow/public_html/skins/neoclassic/images/classic/ftr.png → workflow/engine/skinEngine/lurana/images/classic/ftr.png
Normal file → Executable file
|
Before Width: | Height: | Size: 216 B After Width: | Height: | Size: 216 B |
0
workflow/public_html/skins/neoclassic/images/classic/ftrL.png → workflow/engine/skinEngine/lurana/images/classic/ftrL.png
Normal file → Executable file
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
0
workflow/public_html/skins/neoclassic/images/classic/grid.png → workflow/engine/skinEngine/lurana/images/classic/grid.png
Normal file → Executable file
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 79 B After Width: | Height: | Size: 79 B |
|
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 105 B |
|
Before Width: | Height: | Size: 158 B After Width: | Height: | Size: 158 B |
|
Before Width: | Height: | Size: 157 B After Width: | Height: | Size: 157 B |
|
Before Width: | Height: | Size: 158 B After Width: | Height: | Size: 158 B |