diff --git a/application/config/autoload.php b/application/config/autoload.php index f861094e4..4be764662 100755 --- a/application/config/autoload.php +++ b/application/config/autoload.php @@ -58,9 +58,14 @@ $autoload['packages'] = array(); | | $autoload['libraries'] = array('user_agent' => 'ua'); */ + //$autoload['libraries'] = array(); $autoload['libraries'] = array('session', 'FHC_Auth'); +//$autoload['libraries'] = array(); +$autoload['libraries'] = array('session'); + + /* | ------------------------------------------------------------------- | Auto-load Drivers diff --git a/application/config/rest.php b/application/config/rest.php index 5f44dc692..f1914a1b3 100644 --- a/application/config/rest.php +++ b/application/config/rest.php @@ -301,7 +301,7 @@ $config['rest_keys_table'] = 'ci_apikey'; | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | */ -$config['rest_enable_keys'] = TRUE; +$config['rest_enable_keys'] = FALSE; /* |-------------------------------------------------------------------------- diff --git a/application/controllers/api/v1/Kontakt.php b/application/controllers/api/v1/Kontakt.php new file mode 100644 index 000000000..68c015804 --- /dev/null +++ b/application/controllers/api/v1/Kontakt.php @@ -0,0 +1,80 @@ +load->model('kontakt/Kontakt_model'); + } + + public function kontaktPerson_get() + { + $result = $this->Kontakt_model->getKontaktPerson($this->get("person_id")); + if($result != FALSE) + { + $httpstatus = REST_Controller::HTTP_OK; + $payload = [ + 'success' => true, + 'message' => 'Kontakt found.' + ]; + $payload['data'] = $result; + } + else + { + $payload = [ + 'success' => false, + 'message' => 'Could not find Kontakt.' + ]; + $httpstatus = REST_Controller::HTTP_OK; + } + + $this->response($payload, $httpstatus); + } + + public function kontakt_post() + { + $result = $this->Kontakt_model->saveKontakt($this->post()); + if($result != FALSE) + { + $httpstatus = REST_Controller::HTTP_OK; + $payload = [ + 'success' => true, + 'message' => 'Kontakt saved.' + ]; + $payload['data'] = $result; + } + else + { + $payload = [ + 'success' => false, + 'message' => 'Could not save Kontakt.' + ]; + $httpstatus = REST_Controller::HTTP_OK; + } + + $this->response($payload, $httpstatus); + } + +} diff --git a/application/controllers/api/v1/Person.php b/application/controllers/api/v1/Person.php index 73dbda67e..0d1d120bc 100644 --- a/application/controllers/api/v1/Person.php +++ b/application/controllers/api/v1/Person.php @@ -11,37 +11,46 @@ * @since Version 1.0 * @filesource */ - // ------------------------------------------------------------------------ defined('BASEPATH') || exit('No direct script access allowed'); class Person extends APIv1_Controller { - //public $session; + + //public $session; /** * Person API constructor. */ public function __construct() { - parent::__construct(); + parent::__construct(); - $this->load->model('person/person_model'); + $this->load->model('person/person_model'); } public function person_get() { - //if (!$this->session_model->validate($this->get('session_id'), $this->get('device_id'))) - // $this->response(array(['success' => false, 'message' => 'access denied']), REST_Controller::HTTP_UNAUTHORIZED); + //if (!$this->session_model->validate($this->get('session_id'), $this->get('device_id'))) + // $this->response(array(['success' => false, 'message' => 'access denied']), REST_Controller::HTTP_UNAUTHORIZED); - $code = $this->get('code'); - - if (!is_null($code)) - $result = $this->person_model->getPersonByCode($code); - else - $result = $this->person_model->getPerson(); - // var_dump($result[0]); + $code = $this->get('code'); + $person_id = $this->get('person_id'); + if (!is_null($code)) + { + $result = $this->person_model->getPersonByCode($code); + } + elseif (!is_null($person_id)) + { + $result = $this->person_model->getPerson($person_id); + } + else + { + $result = $this->person_model->getPerson(); + } + +<<<<<<< HEAD if ($result['err']) { $payload = [ @@ -60,8 +69,114 @@ class Person extends APIv1_Controller $payload['data'] = $result; $httpstatus = REST_Controller::HTTP_OK; } +======= + if (empty($result)) + { + $payload = [ + 'success' => false, + 'message' => 'Person not found' + ]; + $httpstatus = REST_Controller::HTTP_OK; + } + else + { + // return all available persons + $payload = [ + 'success' => true, + 'message' => 'Persons found' + ]; + $payload['data'] = $result; + $httpstatus = REST_Controller::HTTP_OK; + } +>>>>>>> 97ddc838a8c9e707d3bf5a6a700301252d2f5ed8 - // Set the response and exit - $this->response($payload, $httpstatus); + // Set the response and exit + $this->response($payload, $httpstatus); } + + public function person_post() + { + $result = $this->person_model->savePerson($this->post()); + if($result != FALSE) + { + $httpstatus = REST_Controller::HTTP_OK; + $payload = [ + 'success' => true, + 'message' => 'Person saved.' + ]; + $payload['data'] = $result; + } + else + { + $payload = [ + 'success' => false, + 'message' => 'Could not save person.' + ]; + $httpstatus = REST_Controller::HTTP_OK; + } + + $this->response($payload, $httpstatus); + } + + public function personUpdate_post() + { + $result = $this->person_model->updatePerson($this->post()); + if($result != FALSE) + { + $httpstatus = REST_Controller::HTTP_OK; + $payload = [ + 'success' => true, + 'message' => 'Person updated.' + ]; + $payload['data'] = $result; + } + else + { + $payload = [ + 'success' => false, + 'message' => 'Could not update person.' + ]; + $httpstatus = REST_Controller::HTTP_OK; + } +// + $this->response($payload, $httpstatus); + } + + public function checkBewerbung_get() + { + $result = $this->person_model->checkBewerbung($this->get("email"),$this->get("studiensemester_kurzbz")); + $httpstatus = REST_Controller::HTTP_OK; + $payload = [ + 'success' => true, + 'message' => 'Bewerbung exists.' + ]; + $payload['data'] = $result; + + $this->response($payload, $httpstatus); + } + + public function checkZugangscodePerson_get() + { + $result = $this->person_model->checkZugangscodePerson($this->get("code")); + $httpstatus = REST_Controller::HTTP_OK; + if(!empty($result)) + { + $payload = [ + 'success' => true, + 'message' => 'Zugangscode exists.' + ]; + $payload['data'] = $result; + } + else + { + $payload = [ + 'success' => false, + 'message' => 'Zugangscode does not exist.' + ]; + $httpstatus = REST_Controller::HTTP_OK; + } + + $this->response($payload, $httpstatus); + } + } diff --git a/application/controllers/kontakt/Kontakt.php b/application/controllers/kontakt/Kontakt.php new file mode 100644 index 000000000..dc6ec2e8d --- /dev/null +++ b/application/controllers/kontakt/Kontakt.php @@ -0,0 +1,32 @@ +load->model('kontakt/kontakt_model'); + } + + public function index() + { + $data['person'] = $this->person_model->getPersonen(); + $data['title'] = 'Personen Archiv'; + + $this->load->view('templates/header', $data); + $this->load->view('kontakt/index', $data); + $this->load->view('templates/footer'); + } + + public function view($slug = null) + { + $data['person_item'] = $this->person_model->getPersonen($slug); + if (empty($data['person_item'])) + show_404(); + + $data['title'] = $data['person_item']->titelpre; + + $this->load->view('templates/header', $data); + $this->load->view('kontakt/view', $data); + $this->load->view('templates/footer'); + } +} diff --git a/application/models/kontakt/Kontakt_model.php b/application/models/kontakt/Kontakt_model.php new file mode 100644 index 000000000..54a987370 --- /dev/null +++ b/application/models/kontakt/Kontakt_model.php @@ -0,0 +1,47 @@ +dbTable = 'public.tbl_kontakt'; + } + + public function saveKontakt($kontakt) + { + //TODO check berechtigung +// if ($this->fhc_db_acl->bb->isBerechtigt('person', 'sui')) +// { + $data = array( + "person_id"=>$kontakt["person_id"], + "kontakttyp"=>$kontakt["kontakttyp"], + "kontakt"=>$kontakt["kontakt"], + "insertvon"=>$kontakt["insertvon"], + "insertamum"=>date('Y-m-d H:i:s') + ); + if($this->db->insert("public.tbl_kontakt", $data)){ + return $this->db->insert_id(); + } + else + { + return false; + } +// } +// else +// { +// return "Nicht berechtigt"; +// } + } + + public function getKontaktPerson($person_id) + { + $this->db->select("*") + ->from("public.tbl_kontakt k") + ->where("k.person_id", $person_id); + + return $this->db->get()->result_array(); + } + +} diff --git a/application/models/person/Person_model.php b/application/models/person/Person_model.php index 7b5054d06..e8c987fc0 100644 --- a/application/models/person/Person_model.php +++ b/application/models/person/Person_model.php @@ -1,24 +1,36 @@ dbTable = 'public.tbl_person'; + } + + public function getPerson($person_id = null) + { + if (is_null($person_id)) { - parent::__construct($uid); - $this->dbTable='public.tbl_person'; + $query = $this->db->get_where('public.tbl_person', array()); + return $query->result_object(); } - public function getPerson($person_id = null) + $query = $this->db->get_where('public.tbl_person', array('person_id' => $person_id)); + return $query->row_object(); + } + + public function getPersonByCode($code) + { + if ($this->fhc_db_acl->bb->isBerechtigt('person', 's')) { - if (is_null($person_id)) - { - $query = $this->db->get_where('public.tbl_person', array('vorname' => 'Christian')); - return $query->result_object(); - } - - $query = $this->db->get_where('public.tbl_person', array('person_id' => $person_id)); - return $query->row_object(); + $query = $this->db->get_where('public.tbl_person', array('zugangscode' => $code)); + return $query->result_object(); } + } +<<<<<<< HEAD /** * Laedt Personendaten einer Person mittels Code * @param string $code DB-Attr: tbl_benutzer.zugangscode . @@ -36,22 +48,117 @@ class Person_model extends DB_Model return $this->_general_error($this->fhc_db_acl->bb->errormsg); //return false; } - } - - /** - * Laedt Personendaten eine BenutzerUID - * @param string $uid DB-Attr: tbl_benutzer.uid . - * @return bool - */ - public function getPersonFromBenutzerUID($uid) +======= + /** + * Laedt Personendaten eine BenutzerUID + * @param string $uid DB-Attr: tbl_benutzer.uid . + * @return bool + */ + public function getPersonFromBenutzerUID($uid) + { + if (!$this->fhc_db_acl->bb->isBerechtigt('person', 's')) { - - if (!$this->fhc_db_acl->bb->isBerechtigt('person','s')) - { - $this->db->select('tbl_person.*'); - $this->db->from('public.tbl_person JOIN public.tbl_benutzer USING (person_id)'); - $query = $this->db->get_where(null, array('uid' => $uid)); - return $query->result_object(); - } + $this->db->select('tbl_person.*'); + $this->db->from('public.tbl_person JOIN public.tbl_benutzer USING (person_id)'); + $query = $this->db->get_where(null, array('uid' => $uid)); + return $query->result_object(); +>>>>>>> 97ddc838a8c9e707d3bf5a6a700301252d2f5ed8 } + } + + public function savePerson($person) + { + //TODO check berechtigung +// if ($this->fhc_db_acl->bb->isBerechtigt('person', 'sui')) +// { + $data = array( + "vorname"=>$person["vorname"], + "nachname"=>$person["nachname"], + "gebdatum"=>$person["gebdatum"], + "aktiv" => true, + "zugangscode"=>$person["zugangscode"], + "insertamum"=>date('Y-m-d H:i:s'), + "insertvon"=>$person["insertvon"], + ); + if($this->db->insert("public.tbl_person", $data)){ + return $this->db->insert_id(); + } + else + { + return false; + } +// } +// else +// { +// return "Nicht berechtigt"; +// } + } + + public function checkBewerbung($email, $studiensemester_kurzbz=NULL) + { + $this->db->distinct(); + + if(is_null($studiensemester_kurzbz)) + { + $this->db->select("p.person_id, p.zugangscode, p.insertamum") + ->from("public.tbl_person p") + ->join("public.tbl_kontakt k", "p.person_id=k.person_id") + ->join("public.tbl_benutzer b", "p.person_id=b.person_id", "left") + ->where("k.kontakttyp", 'email') + ->where("(kontakt='".$email."'". + " OR alias ||'@technikum-wien.at'='".$email."'". + " OR uid ||'@technikum-wien.at'='".$email."')") + ->order_by("p.insertamum", "DESC") + ->limit(1) + ; + } + else + { + $this->db->select("p.person_id,p.zugangscode,p.insertamum") + ->from("public.tbl_person p") + ->join("public.tbl_kontakt k", "p.person_id=k.person_id") + ->join("public.tbl_benutzer b", "p.person_id=b.person_id", "left") + ->join("public.tbl_prestudent ps", "p.person_id=ps.person_id") + ->join("public.tbl_prestudentstatus pst", "pst.prestudent_id=ps.prestudent_id") + ->where("k.kontakttyp", 'email') + ->where("(kontakt='".$email."'". + " OR alias ||'@technikum-wien.at'='".$email."'". + " OR uid ||'@technikum-wien.at'='".$email."')") + ->where("studiensemester_kurzbz='".$studiensemester_kurzbz."'") + ->order_by("p.insertamum", "DESC") + ->limit(1) + ; + } + return $this->db->get()->result_array(); + } + + public function checkZugangscodePerson($code) + { + $this->db->select("p.person_id") + ->from("public.tbl_person p") + ->where("p.zugangscode", $code); + return $this->db->get()->result_array(); + } + + public function updatePerson($person) + { + //TODO check berechtigung +// if ($this->fhc_db_acl->bb->isBerechtigt('person', 'sui')) +// { + //TODO set other columns to be updated + $this->db->set("zugangscode", $person["zugangscode"]); + $this->db->where("person_id", $person["person_id"]); + if($this->db->update("public.tbl_person")){ + return true; + } + else + { + return false; + } +// } +// else +// { +// return "Nicht berechtigt"; +// } + } } diff --git a/ci_hack.php b/ci_hack.php index 1b0f774a6..9d771aab8 100755 --- a/ci_hack.php +++ b/ci_hack.php @@ -414,6 +414,11 @@ trait db_extra return ($var!==''?$var:'null'); } + public function db_qoute($var) + { + return "'".$var."'"; + } + public function db_parse_bool($var) { if($var=='t') diff --git a/include/securimage/securimage.php b/include/securimage/securimage.php index 955fbf869..810f7ca12 100755 --- a/include/securimage/securimage.php +++ b/include/securimage/securimage.php @@ -1,892 +1,892 @@ - - * File: securimage.php
- * - * Copyright (c) 2013, Drew Phillips - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, - * are permitted provided that the following conditions are met: - * - * - Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * Any modifications to the library should be indicated clearly in the source code - * to inform users that the changes are not a part of the original software.

- * - * If you found this script useful, please take a quick moment to rate it.
- * http://www.hotscripts.com/rate/49400.html Thanks. - * - * @link http://www.phpcaptcha.org Securimage PHP CAPTCHA - * @link http://www.phpcaptcha.org/latest.zip Download Latest Version - * @link http://www.phpcaptcha.org/Securimage_Docs/ Online Documentation - * @copyright 2013 Drew Phillips - * @author Drew Phillips - * @version 3.5 (April 2013) - * @package Securimage - * - */ - -/** - ChangeLog - - 3.5 - - Release new version - - MB string support for charlist - - Modify audio file path to use language directories - - Changed default captcha appearance - - 3.2RC4 - - Add MySQL, PostgreSQL, and SQLite3 support for database storage - - Deprecate "use_sqlite_db" option and remove SQLite2/sqlite_* functions - - Add new captcha type that displays 2 dictionary words on one image - - Update examples - - 3.2RC3 - - Fix canSendHeaders() check which was breaking if a PHP startup error was issued - - 3.2RC2 - - Add error handler (https://github.com/dapphp/securimage/issues/15) - - Fix flash examples to use the correct value name for audio parameter - - 3.2RC1 - - New audio captcha code. Faster, fully dynamic audio, full WAV support - (Paul Voegler, Drew Phillips) - - New Flash audio streaming button. User defined image and size supported - - Additional options for customizing captcha (noise_level, send_headers, - no_exit, no_session, display_value - - Add captcha ID support. Uses sqlite and unique captcha IDs to track captchas, - no session used - - Add static methods for creating and validating captcha by ID - - Automatic clearing of old codes from SQLite database - - 3.0.3Beta - - Add improved mixing function to WavFile class (Paul Voegler) - - Improve performance and security of captcha audio (Paul Voegler, Drew Phillips) - - Add option to use random file as background noise in captcha audio - - Add new securimage options for audio files - - 3.0.2Beta - - Fix issue with session variables when upgrading from 2.0 - 3.0 - - Improve audio captcha, switch to use WavFile class, make mathematical captcha audio work - - 3.0.1 - - Bugfix: removed use of deprecated variable in addSignature method that would cause errors with display_errors on - - 3.0 - - Rewrite class using PHP5 OOP - - Remove support for GD fonts, require FreeType - - Remove support for multi-color codes - - Add option to make codes case-sensitive - - Add namespaces to support multiple captchas on a single page or page specific captchas - - Add option to show simple math problems instead of codes - - Remove support for mp3 files due to vulnerability in decoding mp3 audio files - - Create new flash file to stream wav files instead of mp3 - - Changed to BSD license - - 2.0.2 - - Fix pathing to make integration into libraries easier (Nathan Phillip Brink ohnobinki@ohnopublishing.net) - - 2.0.1 - - Add support for browsers with cookies disabled (requires php5, sqlite) maps users to md5 hashed ip addresses and md5 hashed codes for security - - Add fallback to gd fonts if ttf support is not enabled or font file not found (Mike Challis http://www.642weather.com/weather/scripts.php) - - Check for previous definition of image type constants (Mike Challis) - - Fix mime type settings for audio output - - Fixed color allocation issues with multiple colors and background images, consolidate allocation to one function - - Ability to let codes expire after a given length of time - - Allow HTML color codes to be passed to Securimage_Color (suggested by Mike Challis) - - 2.0.0 - - Add mathematical distortion to characters (using code from HKCaptcha) - - Improved session support - - Added Securimage_Color class for easier color definitions - - Add distortion to audio output to prevent binary comparison attack (proposed by Sven "SavageTiger" Hagemann [insecurity.nl]) - - Flash button to stream mp3 audio (Douglas Walsh www.douglaswalsh.net) - - Audio output is mp3 format by default - - Change font to AlteHaasGrotesk by yann le coroller - - Some code cleanup - - 1.0.4 (unreleased) - - Ability to output audible codes in mp3 format to stream from flash - - 1.0.3.1 - - Error reading from wordlist in some cases caused words to be cut off 1 letter short - - 1.0.3 - - Removed shadow_text from code which could cause an undefined property error due to removal from previous version - - 1.0.2 - - Audible CAPTCHA Code wav files - - Create codes from a word list instead of random strings - - 1.0 - - Added the ability to use a selected character set, rather than a-z0-9 only. - - Added the multi-color text option to use different colors for each letter. - - Switched to automatic session handling instead of using files for code storage - - Added GD Font support if ttf support is not available. Can use internal GD fonts or load new ones. - - Added the ability to set line thickness - - Added option for drawing arced lines over letters - - Added ability to choose image type for output - - */ - - -/** - * Securimage CAPTCHA Class. - * - * @version 3.5 - * @package Securimage - * @subpackage classes - * @author Drew Phillips - * - */ -class Securimage -{ - // All of the public variables below are securimage options - // They can be passed as an array to the Securimage constructor, set below, - // or set from securimage_show.php and securimage_play.php - - /** - * Renders captcha as a JPEG image - * @var int - */ - const SI_IMAGE_JPEG = 1; - /** - * Renders captcha as a PNG image (default) - * @var int - */ - const SI_IMAGE_PNG = 2; - /** - * Renders captcha as a GIF image - * @var int - */ - const SI_IMAGE_GIF = 3; - - /** - * Create a normal alphanumeric captcha - * @var int - */ - const SI_CAPTCHA_STRING = 0; - /** - * Create a captcha consisting of a simple math problem - * @var int - */ - const SI_CAPTCHA_MATHEMATIC = 1; - /** - * Create a word based captcha using 2 words - * @var int - */ - const SI_CAPTCHA_WORDS = 2; - - /** - * MySQL option identifier for database storage option - * - * @var string - */ - const SI_DRIVER_MYSQL = 'mysql'; - - /** - * PostgreSQL option identifier for database storage option - * - * @var string - */ - const SI_DRIVER_PGSQL = 'pgsql'; - - /** - * SQLite option identifier for database storage option - * - * @var string - */ - const SI_DRIVER_SQLITE3 = 'sqlite'; - - /*%*********************************************************************%*/ - // Properties - - /** - * The width of the captcha image - * @var int - */ - public $image_width = 215; - /** - * The height of the captcha image - * @var int - */ - public $image_height = 80; - /** - * The type of the image, default = png - * @var int - */ - public $image_type = self::SI_IMAGE_PNG; - - /** - * The background color of the captcha - * @var Securimage_Color - */ - public $image_bg_color = '#ffffff'; - /** - * The color of the captcha text - * @var Securimage_Color - */ - public $text_color = '#707070'; - /** - * The color of the lines over the captcha - * @var Securimage_Color - */ - public $line_color = '#707070'; - /** - * The color of the noise that is drawn - * @var Securimage_Color - */ - public $noise_color = '#707070'; - - /** - * How transparent to make the text 0 = completely opaque, 100 = invisible - * @var int - */ - public $text_transparency_percentage = 20; - /** - * Whether or not to draw the text transparently, true = use transparency, false = no transparency - * @var bool - */ - public $use_transparent_text = true; - - /** - * The length of the captcha code - * @var int - */ - public $code_length = 6; - /** - * Whether the captcha should be case sensitive (not recommended, use only for maximum protection) - * @var bool - */ - public $case_sensitive = false; - /** - * The character set to use for generating the captcha code - * @var string - */ - public $charset = 'ABCDEFGHKLMNPRSTUVWYZabcdefghklmnprstuvwyz23456789'; - /** - * How long in seconds a captcha remains valid, after this time it will not be accepted - * @var unknown_type - */ - public $expiry_time = 900; - - /** - * The session name securimage should use, only set this if your application uses a custom session name - * It is recommended to set this value below so it is used by all securimage scripts - * @var string - */ - public $session_name = null; - - /** - * true to use the wordlist file, false to generate random captcha codes - * @var bool - */ - public $use_wordlist = false; - - /** - * The level of distortion, 0.75 = normal, 1.0 = very high distortion - * @var double - */ - public $perturbation = 0.85; - /** - * How many lines to draw over the captcha code to increase security - * @var int - */ - public $num_lines = 5; - /** - * The level of noise (random dots) to place on the image, 0-10 - * @var int - */ - public $noise_level = 2; - - /** - * The signature text to draw on the bottom corner of the image - * @var string - */ - public $image_signature = ''; - /** - * The color of the signature text - * @var Securimage_Color - */ - public $signature_color = '#707070'; - /** - * The path to the ttf font file to use for the signature text, defaults to $ttf_file (AHGBold.ttf) - * @var string - */ - public $signature_font; - - /** - * DO NOT USE!!! - * Use an SQLite database to store data (for users that do not support cookies) - * @var bool - * @see Securimage::$use_sqlite_db - * @deprecated 3.2RC4 - */ - public $use_sqlite_db = false; - - /** - * Use a database backend for code storage. - * Provides a fallback to users with cookies disabled. - * Required when using captcha IDs. - * - * @see Securimage::$database_driver - * @var bool - */ - public $use_database = false; - - /** - * Database driver to use for database support. - * Allowable values: 'mysql', 'pgsql', 'sqlite'. - * Default: sqlite - * - * @var string - */ - public $database_driver = self::SI_DRIVER_SQLITE3; - - /** - * Database host to connect to when using mysql or postgres - * On Linux use "localhost" for Unix domain socket, otherwise uses TCP/IP - * Does not apply to SQLite - * - * @var string - */ - public $database_host = 'localhost'; - - /** - * Database username for connection (mysql, postgres only) - * Default is an empty string - * - * @var string - */ - public $database_user = ''; - - /** - * Database password for connection (mysql, postgres only) - * Default is empty string - * - * @var string - */ - public $database_pass = ''; - - /** - * Name of the database to select (mysql, postgres only) - * - * @see Securimage::$database_file for SQLite - * @var string - */ - public $database_name = ''; - - /** - * Database table where captcha codes are stored - * Note: Securimage will attempt to create this table for you if it does - * not exist. If the table cannot be created, an E_USER_WARNING is emitted. - * - * @var string - */ - public $database_table = 'captcha_codes'; - - /** - * Fully qualified path to the database file when using SQLite3. - * This value is only used when $database_driver == sqlite3 and does - * not apply when no database is used, or when using MySQL or PostgreSQL. - * - * @var string - */ - public $database_file; - - /** - * The type of captcha to create, either alphanumeric, or a math problem
- * Securimage::SI_CAPTCHA_STRING or Securimage::SI_CAPTCHA_MATHEMATIC - * @var int - */ - public $captcha_type = self::SI_CAPTCHA_STRING; // or self::SI_CAPTCHA_MATHEMATIC; - - /** - * The captcha namespace, use this if you have multiple forms on a single page, blank if you do not use multiple forms on one page - * @var string - * - * namespace = 'contact_form'; - * - * // in form validator - * $img->namespace = 'contact_form'; - * if ($img->check($code) == true) { - * echo "Valid!"; - * } - * - */ - public $namespace; - - /** - * The font file to use to draw the captcha code, leave blank for default font AHGBold.ttf - * @var string - */ - public $ttf_file; - /** - * The path to the wordlist file to use, leave blank for default words/words.txt - * @var string - */ - public $wordlist_file; - /** - * The directory to scan for background images, if set a random background will be chosen from this folder - * @var string - */ - public $background_directory; - /** - * The path to the SQLite database file to use, if $use_sqlite_database = true, should be chmod 666 - * @deprecated 3.2RC4 - * @var string - */ - public $sqlite_database; - /** - * The path to the securimage audio directory, can be set in securimage_play.php - * @var string - * - * $img->audio_path = '/home/yoursite/public_html/securimage/audio/en/'; - * - */ - public $audio_path; - /** - * The path to the directory containing audio files that will be selected - * randomly and mixed with the captcha audio. - * - * @var string - */ - public $audio_noise_path; - /** - * Whether or not to mix background noise files into captcha audio (true = mix, false = no) - * Mixing random background audio with noise can help improve security of audio captcha. - * Default: securimage/audio/noise - * - * @since 3.0.3 - * @see Securimage::$audio_noise_path - * @var bool - */ - public $audio_use_noise; - /** - * The method and threshold (or gain factor) used to normalize the mixing with background noise. - * See http://www.voegler.eu/pub/audio/ for more information. - * - * Valid:
    - *
  • >= 1 - Normalize by multiplying by the threshold (boost - positive gain).
    - * A value of 1 in effect means no normalization (and results in clipping).
  • - *
  • <= -1 - Normalize by dividing by the the absolute value of threshold (attenuate - negative gain).
    - * A factor of 2 (-2) is about 6dB reduction in volume.
  • - *
  • [0, 1) - (open inverval - not including 1) - The threshold - * above which amplitudes are comressed logarithmically.
    - * e.g. 0.6 to leave amplitudes up to 60% "as is" and compress above.
  • - *
  • (-1, 0) - (open inverval - not including -1 and 0) - The threshold - * above which amplitudes are comressed linearly.
    - * e.g. -0.6 to leave amplitudes up to 60% "as is" and compress above.
- * - * Default: 0.6 - * - * @since 3.0.4 - * @var float - */ - public $audio_mix_normalization = 0.6; - /** - * Whether or not to degrade audio by introducing random noise (improves security of audio captcha) - * Default: true - * - * @since 3.0.3 - * @var bool - */ - public $degrade_audio; - /** - * Minimum delay to insert between captcha audio letters in milliseconds - * - * @since 3.0.3 - * @var float - */ - public $audio_gap_min = 0; - /** - * Maximum delay to insert between captcha audio letters in milliseconds - * - * @since 3.0.3 - * @var float - */ - public $audio_gap_max = 600; - - /** - * Captcha ID if using static captcha - * @var string Unique captcha id - */ - protected static $_captchaId = null; - - protected $im; - protected $tmpimg; - protected $bgimg; - protected $iscale = 5; - - public $securimage_path = null; - - /** - * The captcha challenge value (either the case-sensitive/insensitive word captcha, or the solution to the math captcha) - * - * @var string Captcha challenge value - */ - protected $code; - - /** - * The display value of the captcha to draw on the image (the word captcha, or the math equation to present to the user) - * - * @var string Captcha display value to draw on the image - */ - protected $code_display; - - /** - * A value that can be passed to the constructor that can be used to generate a captcha image with a given value - * This value does not get stored in the session or database and is only used when calling Securimage::show(). - * If a display_value was passed to the constructor and the captcha image is generated, the display_value will be used - * as the string to draw on the captcha image. Used only if captcha codes are generated and managed by a 3rd party app/library - * - * @var string Captcha code value to display on the image - */ - public $display_value; - - /** - * Captcha code supplied by user [set from Securimage::check()] - * - * @var string - */ - protected $captcha_code; - - /** - * Flag that can be specified telling securimage not to call exit after generating a captcha image or audio file - * - * @var bool If true, script will not terminate; if false script will terminate (default) - */ - protected $no_exit; - - /** - * Flag indicating whether or not a PHP session should be started and used - * - * @var bool If true, no session will be started; if false, session will be started and used to store data (default) - */ - protected $no_session; - - /** - * Flag indicating whether or not HTTP headers will be sent when outputting captcha image/audio - * - * @var bool If true (default) headers will be sent, if false, no headers are sent - */ - protected $send_headers; - - /** - * PDO connection when a database is used - * - * @var resource - */ - protected $pdo_conn; - - // gd color resources that are allocated for drawing the image - protected $gdbgcolor; - protected $gdtextcolor; - protected $gdlinecolor; - protected $gdsignaturecolor; - - /** - * Create a new securimage object, pass options to set in the constructor.
- * This can be used to display a captcha, play an audible captcha, or validate an entry - * @param array $options - * - * $options = array( - * 'text_color' => new Securimage_Color('#013020'), - * 'code_length' => 5, - * 'num_lines' => 5, - * 'noise_level' => 3, - * 'font_file' => Securimage::getPath() . '/custom.ttf' - * ); - * - * $img = new Securimage($options); - * - */ - public function __construct($options = array()) - { - $this->securimage_path = dirname(__FILE__); - - if (is_array($options) && sizeof($options) > 0) { - foreach($options as $prop => $val) { - if ($prop == 'captchaId') { - Securimage::$_captchaId = $val; - $this->use_database = true; - } else if ($prop == 'use_sqlite_db') { - trigger_error("The use_sqlite_db option is deprecated, use 'use_database' instead", E_USER_NOTICE); - } else { - $this->$prop = $val; - } - } - } - - $this->image_bg_color = $this->initColor($this->image_bg_color, '#ffffff'); - $this->text_color = $this->initColor($this->text_color, '#616161'); - $this->line_color = $this->initColor($this->line_color, '#616161'); - $this->noise_color = $this->initColor($this->noise_color, '#616161'); - $this->signature_color = $this->initColor($this->signature_color, '#616161'); - - if (is_null($this->ttf_file)) { - $this->ttf_file = $this->securimage_path . '/AHGBold.ttf'; - } - - $this->signature_font = $this->ttf_file; - - if (is_null($this->wordlist_file)) { - $this->wordlist_file = $this->securimage_path . '/words/words.txt'; - } - - if (is_null($this->database_file)) { - $this->database_file = $this->securimage_path . '/database/securimage.sq3'; - } - - if (is_null($this->audio_path)) { - $this->audio_path = $this->securimage_path . '/audio/en/'; - } - - if (is_null($this->audio_noise_path)) { - $this->audio_noise_path = $this->securimage_path . '/audio/noise/'; - } - - if (is_null($this->audio_use_noise)) { - $this->audio_use_noise = true; - } - - if (is_null($this->degrade_audio)) { - $this->degrade_audio = true; - } - - if (is_null($this->code_length) || (int)$this->code_length < 1) { - $this->code_length = 6; - } - - if (is_null($this->perturbation) || !is_numeric($this->perturbation)) { - $this->perturbation = 0.75; - } - - if (is_null($this->namespace) || !is_string($this->namespace)) { - $this->namespace = 'default'; - } - - if (is_null($this->no_exit)) { - $this->no_exit = false; - } - - if (is_null($this->no_session)) { - $this->no_session = false; - } - - if (is_null($this->send_headers)) { - $this->send_headers = true; - } - - if ($this->no_session != true) { - // Initialize session or attach to existing - if ( session_id() == '' ) { // no session has been started yet, which is needed for validation - if (!is_null($this->session_name) && trim($this->session_name) != '') { - session_name(trim($this->session_name)); // set session name if provided - } - session_start(); - } - } - } - - /** - * Return the absolute path to the Securimage directory - * @return string The path to the securimage base directory - */ - public static function getPath() - { - return dirname(__FILE__); - } - - /** - * Generate a new captcha ID or retrieve the current ID - * - * @param $new bool If true, generates a new challenge and returns and ID - * @param $options array Additional options to be passed to Securimage. - * Must include database options if not set directly in securimage.php - * - * @return null|string Returns null if no captcha id set and new was false, or string captcha ID - */ - public static function getCaptchaId($new = true, array $options = array()) - { - if (is_null($new) || (bool)$new == true) { - $id = sha1(uniqid($_SERVER['REMOTE_ADDR'], true)); - $opts = array('no_session' => true, - 'use_database' => true); - if (sizeof($options) > 0) $opts = array_merge($options, $opts); - $si = new self($opts); - Securimage::$_captchaId = $id; - $si->createCode(); - - return $id; - } else { - return Securimage::$_captchaId; - } - } - - /** - * Validate a captcha code input against a captcha ID - * - * @param string $id The captcha ID to check - * @param string $value The captcha value supplied by the user - * @param array $options Array of options to construct Securimage with. - * Options must include database options if they are not set in securimage.php - * - * @see Securimage::$database_driver - * @return bool true if the code was valid for the given captcha ID, false if not or if database failed to open - */ - public static function checkByCaptchaId($id, $value, array $options = array()) - { - $opts = array('captchaId' => $id, - 'no_session' => true, - 'use_database' => true); - - if (sizeof($options) > 0) $opts = array_merge($options, $opts); - - $si = new self($opts); - - if ($si->openDatabase()) { - $code = $si->getCodeFromDatabase(); - - if (is_array($code)) { - $si->code = $code['code']; - $si->code_display = $code['code_disp']; - } - - if ($si->check($value)) { - $si->clearCodeFromDatabase(); - - return true; - } else { - return false; - } - } else { - return false; - } - } - - - /** - * Used to serve a captcha image to the browser - * @param string $background_image The path to the background image to use - * - * $img = new Securimage(); - * $img->code_length = 6; - * $img->num_lines = 5; - * $img->noise_level = 5; - * - * $img->show(); // sends the image to browser - * exit; - * - */ - public function show($background_image = '') - { - set_error_handler(array(&$this, 'errorHandler')); - - if($background_image != '' && is_readable($background_image)) { - $this->bgimg = $background_image; - } - - $this->doImage(); - } - - /** - * Check a submitted code against the stored value - * @param string $code The captcha code to check - * - * $code = $_POST['code']; - * $img = new Securimage(); - * if ($img->check($code) == true) { - * $captcha_valid = true; - * } else { - * $captcha_valid = false; - * } - * - */ - public function check($code) - { - $this->code_entered = $code; - $this->validate(); - return $this->correct_code; - } - - /** - * Output a wav file of the captcha code to the browser - * - * - * $img = new Securimage(); - * $img->outputAudioFile(); // outputs a wav file to the browser - * exit; - * - */ - public function outputAudioFile() - { - set_error_handler(array(&$this, 'errorHandler')); - - require_once dirname(__FILE__) . '/WavFile.php'; - - try { - $audio = $this->getAudibleCode(); - } catch (Exception $ex) { + + * File: securimage.php
+ * + * Copyright (c) 2013, Drew Phillips + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * + * - Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * Any modifications to the library should be indicated clearly in the source code + * to inform users that the changes are not a part of the original software.

+ * + * If you found this script useful, please take a quick moment to rate it.
+ * http://www.hotscripts.com/rate/49400.html Thanks. + * + * @link http://www.phpcaptcha.org Securimage PHP CAPTCHA + * @link http://www.phpcaptcha.org/latest.zip Download Latest Version + * @link http://www.phpcaptcha.org/Securimage_Docs/ Online Documentation + * @copyright 2013 Drew Phillips + * @author Drew Phillips + * @version 3.5 (April 2013) + * @package Securimage + * + */ + +/** + ChangeLog + + 3.5 + - Release new version + - MB string support for charlist + - Modify audio file path to use language directories + - Changed default captcha appearance + + 3.2RC4 + - Add MySQL, PostgreSQL, and SQLite3 support for database storage + - Deprecate "use_sqlite_db" option and remove SQLite2/sqlite_* functions + - Add new captcha type that displays 2 dictionary words on one image + - Update examples + + 3.2RC3 + - Fix canSendHeaders() check which was breaking if a PHP startup error was issued + + 3.2RC2 + - Add error handler (https://github.com/dapphp/securimage/issues/15) + - Fix flash examples to use the correct value name for audio parameter + + 3.2RC1 + - New audio captcha code. Faster, fully dynamic audio, full WAV support + (Paul Voegler, Drew Phillips) + - New Flash audio streaming button. User defined image and size supported + - Additional options for customizing captcha (noise_level, send_headers, + no_exit, no_session, display_value + - Add captcha ID support. Uses sqlite and unique captcha IDs to track captchas, + no session used + - Add static methods for creating and validating captcha by ID + - Automatic clearing of old codes from SQLite database + + 3.0.3Beta + - Add improved mixing function to WavFile class (Paul Voegler) + - Improve performance and security of captcha audio (Paul Voegler, Drew Phillips) + - Add option to use random file as background noise in captcha audio + - Add new securimage options for audio files + + 3.0.2Beta + - Fix issue with session variables when upgrading from 2.0 - 3.0 + - Improve audio captcha, switch to use WavFile class, make mathematical captcha audio work + + 3.0.1 + - Bugfix: removed use of deprecated variable in addSignature method that would cause errors with display_errors on + + 3.0 + - Rewrite class using PHP5 OOP + - Remove support for GD fonts, require FreeType + - Remove support for multi-color codes + - Add option to make codes case-sensitive + - Add namespaces to support multiple captchas on a single page or page specific captchas + - Add option to show simple math problems instead of codes + - Remove support for mp3 files due to vulnerability in decoding mp3 audio files + - Create new flash file to stream wav files instead of mp3 + - Changed to BSD license + + 2.0.2 + - Fix pathing to make integration into libraries easier (Nathan Phillip Brink ohnobinki@ohnopublishing.net) + + 2.0.1 + - Add support for browsers with cookies disabled (requires php5, sqlite) maps users to md5 hashed ip addresses and md5 hashed codes for security + - Add fallback to gd fonts if ttf support is not enabled or font file not found (Mike Challis http://www.642weather.com/weather/scripts.php) + - Check for previous definition of image type constants (Mike Challis) + - Fix mime type settings for audio output + - Fixed color allocation issues with multiple colors and background images, consolidate allocation to one function + - Ability to let codes expire after a given length of time + - Allow HTML color codes to be passed to Securimage_Color (suggested by Mike Challis) + + 2.0.0 + - Add mathematical distortion to characters (using code from HKCaptcha) + - Improved session support + - Added Securimage_Color class for easier color definitions + - Add distortion to audio output to prevent binary comparison attack (proposed by Sven "SavageTiger" Hagemann [insecurity.nl]) + - Flash button to stream mp3 audio (Douglas Walsh www.douglaswalsh.net) + - Audio output is mp3 format by default + - Change font to AlteHaasGrotesk by yann le coroller + - Some code cleanup + + 1.0.4 (unreleased) + - Ability to output audible codes in mp3 format to stream from flash + + 1.0.3.1 + - Error reading from wordlist in some cases caused words to be cut off 1 letter short + + 1.0.3 + - Removed shadow_text from code which could cause an undefined property error due to removal from previous version + + 1.0.2 + - Audible CAPTCHA Code wav files + - Create codes from a word list instead of random strings + + 1.0 + - Added the ability to use a selected character set, rather than a-z0-9 only. + - Added the multi-color text option to use different colors for each letter. + - Switched to automatic session handling instead of using files for code storage + - Added GD Font support if ttf support is not available. Can use internal GD fonts or load new ones. + - Added the ability to set line thickness + - Added option for drawing arced lines over letters + - Added ability to choose image type for output + + */ + + +/** + * Securimage CAPTCHA Class. + * + * @version 3.5 + * @package Securimage + * @subpackage classes + * @author Drew Phillips + * + */ +class Securimage +{ + // All of the public variables below are securimage options + // They can be passed as an array to the Securimage constructor, set below, + // or set from securimage_show.php and securimage_play.php + + /** + * Renders captcha as a JPEG image + * @var int + */ + const SI_IMAGE_JPEG = 1; + /** + * Renders captcha as a PNG image (default) + * @var int + */ + const SI_IMAGE_PNG = 2; + /** + * Renders captcha as a GIF image + * @var int + */ + const SI_IMAGE_GIF = 3; + + /** + * Create a normal alphanumeric captcha + * @var int + */ + const SI_CAPTCHA_STRING = 0; + /** + * Create a captcha consisting of a simple math problem + * @var int + */ + const SI_CAPTCHA_MATHEMATIC = 1; + /** + * Create a word based captcha using 2 words + * @var int + */ + const SI_CAPTCHA_WORDS = 2; + + /** + * MySQL option identifier for database storage option + * + * @var string + */ + const SI_DRIVER_MYSQL = 'mysql'; + + /** + * PostgreSQL option identifier for database storage option + * + * @var string + */ + const SI_DRIVER_PGSQL = 'pgsql'; + + /** + * SQLite option identifier for database storage option + * + * @var string + */ + const SI_DRIVER_SQLITE3 = 'sqlite'; + + /*%*********************************************************************%*/ + // Properties + + /** + * The width of the captcha image + * @var int + */ + public $image_width = 215; + /** + * The height of the captcha image + * @var int + */ + public $image_height = 80; + /** + * The type of the image, default = png + * @var int + */ + public $image_type = self::SI_IMAGE_PNG; + + /** + * The background color of the captcha + * @var Securimage_Color + */ + public $image_bg_color = '#ffffff'; + /** + * The color of the captcha text + * @var Securimage_Color + */ + public $text_color = '#707070'; + /** + * The color of the lines over the captcha + * @var Securimage_Color + */ + public $line_color = '#707070'; + /** + * The color of the noise that is drawn + * @var Securimage_Color + */ + public $noise_color = '#707070'; + + /** + * How transparent to make the text 0 = completely opaque, 100 = invisible + * @var int + */ + public $text_transparency_percentage = 20; + /** + * Whether or not to draw the text transparently, true = use transparency, false = no transparency + * @var bool + */ + public $use_transparent_text = true; + + /** + * The length of the captcha code + * @var int + */ + public $code_length = 6; + /** + * Whether the captcha should be case sensitive (not recommended, use only for maximum protection) + * @var bool + */ + public $case_sensitive = false; + /** + * The character set to use for generating the captcha code + * @var string + */ + public $charset = 'ABCDEFGHKLMNPRSTUVWYZabcdefghklmnprstuvwyz23456789'; + /** + * How long in seconds a captcha remains valid, after this time it will not be accepted + * @var unknown_type + */ + public $expiry_time = 900; + + /** + * The session name securimage should use, only set this if your application uses a custom session name + * It is recommended to set this value below so it is used by all securimage scripts + * @var string + */ + public $session_name = null; + + /** + * true to use the wordlist file, false to generate random captcha codes + * @var bool + */ + public $use_wordlist = false; + + /** + * The level of distortion, 0.75 = normal, 1.0 = very high distortion + * @var double + */ + public $perturbation = 0.85; + /** + * How many lines to draw over the captcha code to increase security + * @var int + */ + public $num_lines = 5; + /** + * The level of noise (random dots) to place on the image, 0-10 + * @var int + */ + public $noise_level = 2; + + /** + * The signature text to draw on the bottom corner of the image + * @var string + */ + public $image_signature = ''; + /** + * The color of the signature text + * @var Securimage_Color + */ + public $signature_color = '#707070'; + /** + * The path to the ttf font file to use for the signature text, defaults to $ttf_file (AHGBold.ttf) + * @var string + */ + public $signature_font; + + /** + * DO NOT USE!!! + * Use an SQLite database to store data (for users that do not support cookies) + * @var bool + * @see Securimage::$use_sqlite_db + * @deprecated 3.2RC4 + */ + public $use_sqlite_db = false; + + /** + * Use a database backend for code storage. + * Provides a fallback to users with cookies disabled. + * Required when using captcha IDs. + * + * @see Securimage::$database_driver + * @var bool + */ + public $use_database = false; + + /** + * Database driver to use for database support. + * Allowable values: 'mysql', 'pgsql', 'sqlite'. + * Default: sqlite + * + * @var string + */ + public $database_driver = self::SI_DRIVER_SQLITE3; + + /** + * Database host to connect to when using mysql or postgres + * On Linux use "localhost" for Unix domain socket, otherwise uses TCP/IP + * Does not apply to SQLite + * + * @var string + */ + public $database_host = 'localhost'; + + /** + * Database username for connection (mysql, postgres only) + * Default is an empty string + * + * @var string + */ + public $database_user = ''; + + /** + * Database password for connection (mysql, postgres only) + * Default is empty string + * + * @var string + */ + public $database_pass = ''; + + /** + * Name of the database to select (mysql, postgres only) + * + * @see Securimage::$database_file for SQLite + * @var string + */ + public $database_name = ''; + + /** + * Database table where captcha codes are stored + * Note: Securimage will attempt to create this table for you if it does + * not exist. If the table cannot be created, an E_USER_WARNING is emitted. + * + * @var string + */ + public $database_table = 'captcha_codes'; + + /** + * Fully qualified path to the database file when using SQLite3. + * This value is only used when $database_driver == sqlite3 and does + * not apply when no database is used, or when using MySQL or PostgreSQL. + * + * @var string + */ + public $database_file; + + /** + * The type of captcha to create, either alphanumeric, or a math problem
+ * Securimage::SI_CAPTCHA_STRING or Securimage::SI_CAPTCHA_MATHEMATIC + * @var int + */ + public $captcha_type = self::SI_CAPTCHA_STRING; // or self::SI_CAPTCHA_MATHEMATIC; + + /** + * The captcha namespace, use this if you have multiple forms on a single page, blank if you do not use multiple forms on one page + * @var string + * + * namespace = 'contact_form'; + * + * // in form validator + * $img->namespace = 'contact_form'; + * if ($img->check($code) == true) { + * echo "Valid!"; + * } + * + */ + public $namespace; + + /** + * The font file to use to draw the captcha code, leave blank for default font AHGBold.ttf + * @var string + */ + public $ttf_file; + /** + * The path to the wordlist file to use, leave blank for default words/words.txt + * @var string + */ + public $wordlist_file; + /** + * The directory to scan for background images, if set a random background will be chosen from this folder + * @var string + */ + public $background_directory; + /** + * The path to the SQLite database file to use, if $use_sqlite_database = true, should be chmod 666 + * @deprecated 3.2RC4 + * @var string + */ + public $sqlite_database; + /** + * The path to the securimage audio directory, can be set in securimage_play.php + * @var string + * + * $img->audio_path = '/home/yoursite/public_html/securimage/audio/en/'; + * + */ + public $audio_path; + /** + * The path to the directory containing audio files that will be selected + * randomly and mixed with the captcha audio. + * + * @var string + */ + public $audio_noise_path; + /** + * Whether or not to mix background noise files into captcha audio (true = mix, false = no) + * Mixing random background audio with noise can help improve security of audio captcha. + * Default: securimage/audio/noise + * + * @since 3.0.3 + * @see Securimage::$audio_noise_path + * @var bool + */ + public $audio_use_noise; + /** + * The method and threshold (or gain factor) used to normalize the mixing with background noise. + * See http://www.voegler.eu/pub/audio/ for more information. + * + * Valid:
    + *
  • >= 1 - Normalize by multiplying by the threshold (boost - positive gain).
    + * A value of 1 in effect means no normalization (and results in clipping).
  • + *
  • <= -1 - Normalize by dividing by the the absolute value of threshold (attenuate - negative gain).
    + * A factor of 2 (-2) is about 6dB reduction in volume.
  • + *
  • [0, 1) - (open inverval - not including 1) - The threshold + * above which amplitudes are comressed logarithmically.
    + * e.g. 0.6 to leave amplitudes up to 60% "as is" and compress above.
  • + *
  • (-1, 0) - (open inverval - not including -1 and 0) - The threshold + * above which amplitudes are comressed linearly.
    + * e.g. -0.6 to leave amplitudes up to 60% "as is" and compress above.
+ * + * Default: 0.6 + * + * @since 3.0.4 + * @var float + */ + public $audio_mix_normalization = 0.6; + /** + * Whether or not to degrade audio by introducing random noise (improves security of audio captcha) + * Default: true + * + * @since 3.0.3 + * @var bool + */ + public $degrade_audio; + /** + * Minimum delay to insert between captcha audio letters in milliseconds + * + * @since 3.0.3 + * @var float + */ + public $audio_gap_min = 0; + /** + * Maximum delay to insert between captcha audio letters in milliseconds + * + * @since 3.0.3 + * @var float + */ + public $audio_gap_max = 600; + + /** + * Captcha ID if using static captcha + * @var string Unique captcha id + */ + protected static $_captchaId = null; + + protected $im; + protected $tmpimg; + protected $bgimg; + protected $iscale = 5; + + public $securimage_path = null; + + /** + * The captcha challenge value (either the case-sensitive/insensitive word captcha, or the solution to the math captcha) + * + * @var string Captcha challenge value + */ + protected $code; + + /** + * The display value of the captcha to draw on the image (the word captcha, or the math equation to present to the user) + * + * @var string Captcha display value to draw on the image + */ + protected $code_display; + + /** + * A value that can be passed to the constructor that can be used to generate a captcha image with a given value + * This value does not get stored in the session or database and is only used when calling Securimage::show(). + * If a display_value was passed to the constructor and the captcha image is generated, the display_value will be used + * as the string to draw on the captcha image. Used only if captcha codes are generated and managed by a 3rd party app/library + * + * @var string Captcha code value to display on the image + */ + public $display_value; + + /** + * Captcha code supplied by user [set from Securimage::check()] + * + * @var string + */ + protected $captcha_code; + + /** + * Flag that can be specified telling securimage not to call exit after generating a captcha image or audio file + * + * @var bool If true, script will not terminate; if false script will terminate (default) + */ + protected $no_exit; + + /** + * Flag indicating whether or not a PHP session should be started and used + * + * @var bool If true, no session will be started; if false, session will be started and used to store data (default) + */ + protected $no_session; + + /** + * Flag indicating whether or not HTTP headers will be sent when outputting captcha image/audio + * + * @var bool If true (default) headers will be sent, if false, no headers are sent + */ + protected $send_headers; + + /** + * PDO connection when a database is used + * + * @var resource + */ + protected $pdo_conn; + + // gd color resources that are allocated for drawing the image + protected $gdbgcolor; + protected $gdtextcolor; + protected $gdlinecolor; + protected $gdsignaturecolor; + + /** + * Create a new securimage object, pass options to set in the constructor.
+ * This can be used to display a captcha, play an audible captcha, or validate an entry + * @param array $options + * + * $options = array( + * 'text_color' => new Securimage_Color('#013020'), + * 'code_length' => 5, + * 'num_lines' => 5, + * 'noise_level' => 3, + * 'font_file' => Securimage::getPath() . '/custom.ttf' + * ); + * + * $img = new Securimage($options); + * + */ + public function __construct($options = array()) + { + $this->securimage_path = dirname(__FILE__); + + if (is_array($options) && sizeof($options) > 0) { + foreach($options as $prop => $val) { + if ($prop == 'captchaId') { + Securimage::$_captchaId = $val; + $this->use_database = true; + } else if ($prop == 'use_sqlite_db') { + trigger_error("The use_sqlite_db option is deprecated, use 'use_database' instead", E_USER_NOTICE); + } else { + $this->$prop = $val; + } + } + } + + $this->image_bg_color = $this->initColor($this->image_bg_color, '#ffffff'); + $this->text_color = $this->initColor($this->text_color, '#616161'); + $this->line_color = $this->initColor($this->line_color, '#616161'); + $this->noise_color = $this->initColor($this->noise_color, '#616161'); + $this->signature_color = $this->initColor($this->signature_color, '#616161'); + + if (is_null($this->ttf_file)) { + $this->ttf_file = $this->securimage_path . '/AHGBold.ttf'; + } + + $this->signature_font = $this->ttf_file; + + if (is_null($this->wordlist_file)) { + $this->wordlist_file = $this->securimage_path . '/words/words.txt'; + } + + if (is_null($this->database_file)) { + $this->database_file = $this->securimage_path . '/database/securimage.sq3'; + } + + if (is_null($this->audio_path)) { + $this->audio_path = $this->securimage_path . '/audio/en/'; + } + + if (is_null($this->audio_noise_path)) { + $this->audio_noise_path = $this->securimage_path . '/audio/noise/'; + } + + if (is_null($this->audio_use_noise)) { + $this->audio_use_noise = true; + } + + if (is_null($this->degrade_audio)) { + $this->degrade_audio = true; + } + + if (is_null($this->code_length) || (int)$this->code_length < 1) { + $this->code_length = 6; + } + + if (is_null($this->perturbation) || !is_numeric($this->perturbation)) { + $this->perturbation = 0.75; + } + + if (is_null($this->namespace) || !is_string($this->namespace)) { + $this->namespace = 'default'; + } + + if (is_null($this->no_exit)) { + $this->no_exit = false; + } + + if (is_null($this->no_session)) { + $this->no_session = false; + } + + if (is_null($this->send_headers)) { + $this->send_headers = true; + } + + if ($this->no_session != true) { + // Initialize session or attach to existing + if ( session_id() == '' ) { // no session has been started yet, which is needed for validation + if (!is_null($this->session_name) && trim($this->session_name) != '') { + session_name(trim($this->session_name)); // set session name if provided + } + session_start(); + } + } + } + + /** + * Return the absolute path to the Securimage directory + * @return string The path to the securimage base directory + */ + public static function getPath() + { + return dirname(__FILE__); + } + + /** + * Generate a new captcha ID or retrieve the current ID + * + * @param $new bool If true, generates a new challenge and returns and ID + * @param $options array Additional options to be passed to Securimage. + * Must include database options if not set directly in securimage.php + * + * @return null|string Returns null if no captcha id set and new was false, or string captcha ID + */ + public static function getCaptchaId($new = true, array $options = array()) + { + if (is_null($new) || (bool)$new == true) { + $id = sha1(uniqid($_SERVER['REMOTE_ADDR'], true)); + $opts = array('no_session' => true, + 'use_database' => true); + if (sizeof($options) > 0) $opts = array_merge($options, $opts); + $si = new self($opts); + Securimage::$_captchaId = $id; + $si->createCode(); + + return $id; + } else { + return Securimage::$_captchaId; + } + } + + /** + * Validate a captcha code input against a captcha ID + * + * @param string $id The captcha ID to check + * @param string $value The captcha value supplied by the user + * @param array $options Array of options to construct Securimage with. + * Options must include database options if they are not set in securimage.php + * + * @see Securimage::$database_driver + * @return bool true if the code was valid for the given captcha ID, false if not or if database failed to open + */ + public static function checkByCaptchaId($id, $value, array $options = array()) + { + $opts = array('captchaId' => $id, + 'no_session' => true, + 'use_database' => true); + + if (sizeof($options) > 0) $opts = array_merge($options, $opts); + + $si = new self($opts); + + if ($si->openDatabase()) { + $code = $si->getCodeFromDatabase(); + + if (is_array($code)) { + $si->code = $code['code']; + $si->code_display = $code['code_disp']; + } + + if ($si->check($value)) { + $si->clearCodeFromDatabase(); + + return true; + } else { + return false; + } + } else { + return false; + } + } + + + /** + * Used to serve a captcha image to the browser + * @param string $background_image The path to the background image to use + * + * $img = new Securimage(); + * $img->code_length = 6; + * $img->num_lines = 5; + * $img->noise_level = 5; + * + * $img->show(); // sends the image to browser + * exit; + * + */ + public function show($background_image = '') + { + set_error_handler(array(&$this, 'errorHandler')); + + if($background_image != '' && is_readable($background_image)) { + $this->bgimg = $background_image; + } + + $this->doImage(); + } + + /** + * Check a submitted code against the stored value + * @param string $code The captcha code to check + * + * $code = $_POST['code']; + * $img = new Securimage(); + * if ($img->check($code) == true) { + * $captcha_valid = true; + * } else { + * $captcha_valid = false; + * } + * + */ + public function check($code) + { + $this->code_entered = $code; + $this->validate(); + return $this->correct_code; + } + + /** + * Output a wav file of the captcha code to the browser + * + * + * $img = new Securimage(); + * $img->outputAudioFile(); // outputs a wav file to the browser + * exit; + * + */ + public function outputAudioFile() + { + set_error_handler(array(&$this, 'errorHandler')); + + require_once dirname(__FILE__) . '/WavFile.php'; + + try { + $audio = $this->getAudibleCode(); + } catch (Exception $ex) { if (($fp = @fopen(dirname(__FILE__) . '/si.error_log', 'a+')) !== false) { fwrite($fp, date('Y-m-d H:i:s') . ': Securimage audio error "' . $ex->getMessage() . '"' . "\n"); fclose($fp); - } - - $audio = $this->audioError(); + } + + $audio = $this->audioError(); } - - if ($this->canSendHeaders() || $this->send_headers == false) { - if ($this->send_headers) { - $uniq = md5(uniqid(microtime())); - header("Content-Disposition: attachment; filename=\"securimage_audio-{$uniq}.wav\""); - header('Cache-Control: no-store, no-cache, must-revalidate'); - header('Expires: Sun, 1 Jan 2000 12:00:00 GMT'); - header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . 'GMT'); - header('Content-type: audio/x-wav'); - - if (extension_loaded('zlib')) { - ini_set('zlib.output_compression', true); // compress output if supported by browser - } else { - header('Content-Length: ' . strlen($audio)); - } - } - - echo $audio; - } else { - echo '
' - .'Failed to generate audio file, content has already been ' - .'output.
This is most likely due to misconfiguration or ' - .'a PHP error was sent to the browser.
'; - } - - restore_error_handler(); - - if (!$this->no_exit) exit; - } - + + if ($this->canSendHeaders() || $this->send_headers == false) { + if ($this->send_headers) { + $uniq = md5(uniqid(microtime())); + header("Content-Disposition: attachment; filename=\"securimage_audio-{$uniq}.wav\""); + header('Cache-Control: no-store, no-cache, must-revalidate'); + header('Expires: Sun, 1 Jan 2000 12:00:00 GMT'); + header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . 'GMT'); + header('Content-type: audio/x-wav'); + + if (extension_loaded('zlib')) { + ini_set('zlib.output_compression', true); // compress output if supported by browser + } else { + header('Content-Length: ' . strlen($audio)); + } + } + + echo $audio; + } else { + echo '
' + .'Failed to generate audio file, content has already been ' + .'output.
This is most likely due to misconfiguration or ' + .'a PHP error was sent to the browser.
'; + } + + restore_error_handler(); + + if (!$this->no_exit) exit; + } + /** * Return the code from the session or sqlite database if used. If none exists yet, an empty string is returned * @@ -896,20 +896,20 @@ class Securimage public function getCode($array = false, $returnExisting = false) { $code = ''; - $time = 0; - $disp = 'error'; - - if ($returnExisting && strlen($this->code) > 0) { - if ($array) { - return array('code' => $this->code, - 'display' => $this->code_display, - 'code_display' => $this->code_display, - 'time' => 0); - } else { - return $this->code; - } + $time = 0; + $disp = 'error'; + + if ($returnExisting && strlen($this->code) > 0) { + if ($array) { + return array('code' => $this->code, + 'display' => $this->code_display, + 'code_display' => $this->code_display, + 'time' => 0); + } else { + return $this->code; + } } - + if ($this->no_session != true) { if (isset($_SESSION['securimage_code_value'][$this->namespace]) && trim($_SESSION['securimage_code_value'][$this->namespace]) != '') { @@ -919,9 +919,9 @@ class Securimage $time = $_SESSION['securimage_code_ctime'][$this->namespace]; $disp = $_SESSION['securimage_code_disp'] [$this->namespace]; } - } - } - + } + } + if (empty($code) && $this->use_database) { // no code in session - may mean user has cookies turned off $this->openDatabase(); @@ -933,448 +933,448 @@ class Securimage } else { return $code; } - } - - /** - * The main image drawing routing, responsible for constructing the entire image and serving it - */ - protected function doImage() - { - if( ($this->use_transparent_text == true || $this->bgimg != '') && function_exists('imagecreatetruecolor')) { - $imagecreate = 'imagecreatetruecolor'; - } else { - $imagecreate = 'imagecreate'; - } - - $this->im = $imagecreate($this->image_width, $this->image_height); - $this->tmpimg = $imagecreate($this->image_width * $this->iscale, $this->image_height * $this->iscale); - - $this->allocateColors(); - imagepalettecopy($this->tmpimg, $this->im); - - $this->setBackground(); - - $code = ''; - - if ($this->getCaptchaId(false) !== null) { - // a captcha Id was supplied - - // check to see if a display_value for the captcha image was set - if (is_string($this->display_value) && strlen($this->display_value) > 0) { - $this->code_display = $this->display_value; - $this->code = ($this->case_sensitive) ? - $this->display_value : - strtolower($this->display_value); - $code = $this->code; - } else if ($this->openDatabase()) { - // no display_value, check the database for existing captchaId - $code = $this->getCodeFromDatabase(); - - // got back a result from the database with a valid code for captchaId - if (is_array($code)) { - $this->code = $code['code']; - $this->code_display = $code['code_disp']; - $code = $code['code']; - } - } - } - - if ($code == '') { - // if the code was not set using display_value or was not found in - // the database, create a new code - $this->createCode(); - } - - if ($this->noise_level > 0) { - $this->drawNoise(); - } - - $this->drawWord(); - - if ($this->perturbation > 0 && is_readable($this->ttf_file)) { - $this->distortedCopy(); - } - - if ($this->num_lines > 0) { - $this->drawLines(); - } - - if (trim($this->image_signature) != '') { - $this->addSignature(); - } - - $this->output(); - } - - /** - * Allocate the colors to be used for the image - */ - protected function allocateColors() - { - // allocate bg color first for imagecreate - $this->gdbgcolor = imagecolorallocate($this->im, - $this->image_bg_color->r, - $this->image_bg_color->g, - $this->image_bg_color->b); - - $alpha = intval($this->text_transparency_percentage / 100 * 127); - - if ($this->use_transparent_text == true) { - $this->gdtextcolor = imagecolorallocatealpha($this->im, - $this->text_color->r, - $this->text_color->g, - $this->text_color->b, - $alpha); - $this->gdlinecolor = imagecolorallocatealpha($this->im, - $this->line_color->r, - $this->line_color->g, - $this->line_color->b, - $alpha); - $this->gdnoisecolor = imagecolorallocatealpha($this->im, - $this->noise_color->r, - $this->noise_color->g, - $this->noise_color->b, - $alpha); - } else { - $this->gdtextcolor = imagecolorallocate($this->im, - $this->text_color->r, - $this->text_color->g, - $this->text_color->b); - $this->gdlinecolor = imagecolorallocate($this->im, - $this->line_color->r, - $this->line_color->g, - $this->line_color->b); - $this->gdnoisecolor = imagecolorallocate($this->im, - $this->noise_color->r, - $this->noise_color->g, - $this->noise_color->b); - } - - $this->gdsignaturecolor = imagecolorallocate($this->im, - $this->signature_color->r, - $this->signature_color->g, - $this->signature_color->b); - - } - - /** - * The the background color, or background image to be used - */ - protected function setBackground() - { - // set background color of image by drawing a rectangle since imagecreatetruecolor doesn't set a bg color - imagefilledrectangle($this->im, 0, 0, - $this->image_width, $this->image_height, - $this->gdbgcolor); - imagefilledrectangle($this->tmpimg, 0, 0, - $this->image_width * $this->iscale, $this->image_height * $this->iscale, - $this->gdbgcolor); - - if ($this->bgimg == '') { - if ($this->background_directory != null && - is_dir($this->background_directory) && - is_readable($this->background_directory)) - { - $img = $this->getBackgroundFromDirectory(); - if ($img != false) { - $this->bgimg = $img; - } - } - } - - if ($this->bgimg == '') { - return; - } - - $dat = @getimagesize($this->bgimg); - if($dat == false) { - return; - } - - switch($dat[2]) { - case 1: $newim = @imagecreatefromgif($this->bgimg); break; - case 2: $newim = @imagecreatefromjpeg($this->bgimg); break; - case 3: $newim = @imagecreatefrompng($this->bgimg); break; - default: return; - } - - if(!$newim) return; - - imagecopyresized($this->im, $newim, 0, 0, 0, 0, - $this->image_width, $this->image_height, - imagesx($newim), imagesy($newim)); - } - - /** - * Scan the directory for a background image to use - */ - protected function getBackgroundFromDirectory() - { - $images = array(); - - if ( ($dh = opendir($this->background_directory)) !== false) { - while (($file = readdir($dh)) !== false) { - if (preg_match('/(jpg|gif|png)$/i', $file)) $images[] = $file; - } - - closedir($dh); - - if (sizeof($images) > 0) { - return rtrim($this->background_directory, '/') . '/' . $images[mt_rand(0, sizeof($images)-1)]; - } - } - - return false; - } - - /** - * Generates the code or math problem and saves the value to the session - */ - public function createCode() - { - $this->code = false; - - switch($this->captcha_type) { - case self::SI_CAPTCHA_MATHEMATIC: - { - do { - $signs = array('+', '-', 'x'); - $left = mt_rand(1, 10); - $right = mt_rand(1, 5); - $sign = $signs[mt_rand(0, 2)]; - - switch($sign) { - case 'x': $c = $left * $right; break; - case '-': $c = $left - $right; break; - default: $c = $left + $right; break; - } - } while ($c <= 0); // no negative #'s or 0 - - $this->code = $c; - $this->code_display = "$left $sign $right"; - break; - } - - case self::SI_CAPTCHA_WORDS: - $words = $this->readCodeFromFile(2); - $this->code = implode(' ', $words); - $this->code_display = $this->code; - break; - - default: - { - if ($this->use_wordlist && is_readable($this->wordlist_file)) { - $this->code = $this->readCodeFromFile(); - } - - if ($this->code == false) { - $this->code = $this->generateCode($this->code_length); - } - - $this->code_display = $this->code; - $this->code = ($this->case_sensitive) ? $this->code : strtolower($this->code); - } // default - } - - $this->saveData(); - } - - /** - * Draws the captcha code on the image - */ - protected function drawWord() - { - $width2 = $this->image_width * $this->iscale; - $height2 = $this->image_height * $this->iscale; - - if (!is_readable($this->ttf_file)) { - imagestring($this->im, 4, 10, ($this->image_height / 2) - 5, 'Failed to load TTF font file!', $this->gdtextcolor); - } else { - if ($this->perturbation > 0) { - $font_size = $height2 * .4; - $bb = imageftbbox($font_size, 0, $this->ttf_file, $this->code_display); - $tx = $bb[4] - $bb[0]; - $ty = $bb[5] - $bb[1]; - $x = floor($width2 / 2 - $tx / 2 - $bb[0]); - $y = round($height2 / 2 - $ty / 2 - $bb[1]); - - imagettftext($this->tmpimg, $font_size, 0, $x, $y, $this->gdtextcolor, $this->ttf_file, $this->code_display); - } else { - $font_size = $this->image_height * .4; - $bb = imageftbbox($font_size, 0, $this->ttf_file, $this->code_display); - $tx = $bb[4] - $bb[0]; - $ty = $bb[5] - $bb[1]; - $x = floor($this->image_width / 2 - $tx / 2 - $bb[0]); - $y = round($this->image_height / 2 - $ty / 2 - $bb[1]); - - imagettftext($this->im, $font_size, 0, $x, $y, $this->gdtextcolor, $this->ttf_file, $this->code_display); - } - } - - // DEBUG - //$this->im = $this->tmpimg; - //$this->output(); - - } - - /** - * Copies the captcha image to the final image with distortion applied - */ - protected function distortedCopy() - { - $numpoles = 3; // distortion factor - // make array of poles AKA attractor points - for ($i = 0; $i < $numpoles; ++ $i) { - $px[$i] = mt_rand($this->image_width * 0.2, $this->image_width * 0.8); - $py[$i] = mt_rand($this->image_height * 0.2, $this->image_height * 0.8); - $rad[$i] = mt_rand($this->image_height * 0.2, $this->image_height * 0.8); - $tmp = ((- $this->frand()) * 0.15) - .15; - $amp[$i] = $this->perturbation * $tmp; - } - - $bgCol = imagecolorat($this->tmpimg, 0, 0); - $width2 = $this->iscale * $this->image_width; - $height2 = $this->iscale * $this->image_height; - imagepalettecopy($this->im, $this->tmpimg); // copy palette to final image so text colors come across - // loop over $img pixels, take pixels from $tmpimg with distortion field - for ($ix = 0; $ix < $this->image_width; ++ $ix) { - for ($iy = 0; $iy < $this->image_height; ++ $iy) { - $x = $ix; - $y = $iy; - for ($i = 0; $i < $numpoles; ++ $i) { - $dx = $ix - $px[$i]; - $dy = $iy - $py[$i]; - if ($dx == 0 && $dy == 0) { - continue; - } - $r = sqrt($dx * $dx + $dy * $dy); - if ($r > $rad[$i]) { - continue; - } - $rscale = $amp[$i] * sin(3.14 * $r / $rad[$i]); - $x += $dx * $rscale; - $y += $dy * $rscale; - } - $c = $bgCol; - $x *= $this->iscale; - $y *= $this->iscale; - if ($x >= 0 && $x < $width2 && $y >= 0 && $y < $height2) { - $c = imagecolorat($this->tmpimg, $x, $y); - } - if ($c != $bgCol) { // only copy pixels of letters to preserve any background image - imagesetpixel($this->im, $ix, $iy, $c); - } - } - } - } - - /** - * Draws distorted lines on the image - */ - protected function drawLines() - { - for ($line = 0; $line < $this->num_lines; ++ $line) { - $x = $this->image_width * (1 + $line) / ($this->num_lines + 1); - $x += (0.5 - $this->frand()) * $this->image_width / $this->num_lines; - $y = mt_rand($this->image_height * 0.1, $this->image_height * 0.9); - - $theta = ($this->frand() - 0.5) * M_PI * 0.7; - $w = $this->image_width; - $len = mt_rand($w * 0.4, $w * 0.7); - $lwid = mt_rand(0, 2); - - $k = $this->frand() * 0.6 + 0.2; - $k = $k * $k * 0.5; - $phi = $this->frand() * 6.28; - $step = 0.5; - $dx = $step * cos($theta); - $dy = $step * sin($theta); - $n = $len / $step; - $amp = 1.5 * $this->frand() / ($k + 5.0 / $len); - $x0 = $x - 0.5 * $len * cos($theta); - $y0 = $y - 0.5 * $len * sin($theta); - - $ldx = round(- $dy * $lwid); - $ldy = round($dx * $lwid); - - for ($i = 0; $i < $n; ++ $i) { - $x = $x0 + $i * $dx + $amp * $dy * sin($k * $i * $step + $phi); - $y = $y0 + $i * $dy - $amp * $dx * sin($k * $i * $step + $phi); - imagefilledrectangle($this->im, $x, $y, $x + $lwid, $y + $lwid, $this->gdlinecolor); - } - } - } - - /** - * Draws random noise on the image - */ - protected function drawNoise() - { - if ($this->noise_level > 10) { - $noise_level = 10; - } else { - $noise_level = $this->noise_level; - } - - $t0 = microtime(true); - - $noise_level *= 125; // an arbitrary number that works well on a 1-10 scale - - $points = $this->image_width * $this->image_height * $this->iscale; - $height = $this->image_height * $this->iscale; - $width = $this->image_width * $this->iscale; - for ($i = 0; $i < $noise_level; ++$i) { - $x = mt_rand(10, $width); - $y = mt_rand(10, $height); - $size = mt_rand(7, 10); - if ($x - $size <= 0 && $y - $size <= 0) continue; // dont cover 0,0 since it is used by imagedistortedcopy - imagefilledarc($this->tmpimg, $x, $y, $size, $size, 0, 360, $this->gdnoisecolor, IMG_ARC_PIE); - } - - $t1 = microtime(true); - - $t = $t1 - $t0; - - /* - // DEBUG - imagestring($this->tmpimg, 5, 25, 30, "$t", $this->gdnoisecolor); - header('content-type: image/png'); - imagepng($this->tmpimg); - exit; - */ - } - - /** - * Print signature text on image - */ - protected function addSignature() - { - $bbox = imagettfbbox(10, 0, $this->signature_font, $this->image_signature); - $textlen = $bbox[2] - $bbox[0]; - $x = $this->image_width - $textlen - 5; - $y = $this->image_height - 3; - - imagettftext($this->im, 10, 0, $x, $y, $this->gdsignaturecolor, $this->signature_font, $this->image_signature); - } - - /** - * Sends the appropriate image and cache headers and outputs image to the browser - */ - protected function output() - { - if ($this->canSendHeaders() || $this->send_headers == false) { - if ($this->send_headers) { - // only send the content-type headers if no headers have been output - // this will ease debugging on misconfigured servers where warnings - // may have been output which break the image and prevent easily viewing - // source to see the error. - header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); - header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT"); - header("Cache-Control: no-store, no-cache, must-revalidate"); - header("Cache-Control: post-check=0, pre-check=0", false); - header("Pragma: no-cache"); - } - + } + + /** + * The main image drawing routing, responsible for constructing the entire image and serving it + */ + protected function doImage() + { + if( ($this->use_transparent_text == true || $this->bgimg != '') && function_exists('imagecreatetruecolor')) { + $imagecreate = 'imagecreatetruecolor'; + } else { + $imagecreate = 'imagecreate'; + } + + $this->im = $imagecreate($this->image_width, $this->image_height); + $this->tmpimg = $imagecreate($this->image_width * $this->iscale, $this->image_height * $this->iscale); + + $this->allocateColors(); + imagepalettecopy($this->tmpimg, $this->im); + + $this->setBackground(); + + $code = ''; + + if ($this->getCaptchaId(false) !== null) { + // a captcha Id was supplied + + // check to see if a display_value for the captcha image was set + if (is_string($this->display_value) && strlen($this->display_value) > 0) { + $this->code_display = $this->display_value; + $this->code = ($this->case_sensitive) ? + $this->display_value : + strtolower($this->display_value); + $code = $this->code; + } else if ($this->openDatabase()) { + // no display_value, check the database for existing captchaId + $code = $this->getCodeFromDatabase(); + + // got back a result from the database with a valid code for captchaId + if (is_array($code)) { + $this->code = $code['code']; + $this->code_display = $code['code_disp']; + $code = $code['code']; + } + } + } + + if ($code == '') { + // if the code was not set using display_value or was not found in + // the database, create a new code + $this->createCode(); + } + + if ($this->noise_level > 0) { + $this->drawNoise(); + } + + $this->drawWord(); + + if ($this->perturbation > 0 && is_readable($this->ttf_file)) { + $this->distortedCopy(); + } + + if ($this->num_lines > 0) { + $this->drawLines(); + } + + if (trim($this->image_signature) != '') { + $this->addSignature(); + } + + $this->output(); + } + + /** + * Allocate the colors to be used for the image + */ + protected function allocateColors() + { + // allocate bg color first for imagecreate + $this->gdbgcolor = imagecolorallocate($this->im, + $this->image_bg_color->r, + $this->image_bg_color->g, + $this->image_bg_color->b); + + $alpha = intval($this->text_transparency_percentage / 100 * 127); + + if ($this->use_transparent_text == true) { + $this->gdtextcolor = imagecolorallocatealpha($this->im, + $this->text_color->r, + $this->text_color->g, + $this->text_color->b, + $alpha); + $this->gdlinecolor = imagecolorallocatealpha($this->im, + $this->line_color->r, + $this->line_color->g, + $this->line_color->b, + $alpha); + $this->gdnoisecolor = imagecolorallocatealpha($this->im, + $this->noise_color->r, + $this->noise_color->g, + $this->noise_color->b, + $alpha); + } else { + $this->gdtextcolor = imagecolorallocate($this->im, + $this->text_color->r, + $this->text_color->g, + $this->text_color->b); + $this->gdlinecolor = imagecolorallocate($this->im, + $this->line_color->r, + $this->line_color->g, + $this->line_color->b); + $this->gdnoisecolor = imagecolorallocate($this->im, + $this->noise_color->r, + $this->noise_color->g, + $this->noise_color->b); + } + + $this->gdsignaturecolor = imagecolorallocate($this->im, + $this->signature_color->r, + $this->signature_color->g, + $this->signature_color->b); + + } + + /** + * The the background color, or background image to be used + */ + protected function setBackground() + { + // set background color of image by drawing a rectangle since imagecreatetruecolor doesn't set a bg color + imagefilledrectangle($this->im, 0, 0, + $this->image_width, $this->image_height, + $this->gdbgcolor); + imagefilledrectangle($this->tmpimg, 0, 0, + $this->image_width * $this->iscale, $this->image_height * $this->iscale, + $this->gdbgcolor); + + if ($this->bgimg == '') { + if ($this->background_directory != null && + is_dir($this->background_directory) && + is_readable($this->background_directory)) + { + $img = $this->getBackgroundFromDirectory(); + if ($img != false) { + $this->bgimg = $img; + } + } + } + + if ($this->bgimg == '') { + return; + } + + $dat = @getimagesize($this->bgimg); + if($dat == false) { + return; + } + + switch($dat[2]) { + case 1: $newim = @imagecreatefromgif($this->bgimg); break; + case 2: $newim = @imagecreatefromjpeg($this->bgimg); break; + case 3: $newim = @imagecreatefrompng($this->bgimg); break; + default: return; + } + + if(!$newim) return; + + imagecopyresized($this->im, $newim, 0, 0, 0, 0, + $this->image_width, $this->image_height, + imagesx($newim), imagesy($newim)); + } + + /** + * Scan the directory for a background image to use + */ + protected function getBackgroundFromDirectory() + { + $images = array(); + + if ( ($dh = opendir($this->background_directory)) !== false) { + while (($file = readdir($dh)) !== false) { + if (preg_match('/(jpg|gif|png)$/i', $file)) $images[] = $file; + } + + closedir($dh); + + if (sizeof($images) > 0) { + return rtrim($this->background_directory, '/') . '/' . $images[mt_rand(0, sizeof($images)-1)]; + } + } + + return false; + } + + /** + * Generates the code or math problem and saves the value to the session + */ + public function createCode() + { + $this->code = false; + + switch($this->captcha_type) { + case self::SI_CAPTCHA_MATHEMATIC: + { + do { + $signs = array('+', '-', 'x'); + $left = mt_rand(1, 10); + $right = mt_rand(1, 5); + $sign = $signs[mt_rand(0, 2)]; + + switch($sign) { + case 'x': $c = $left * $right; break; + case '-': $c = $left - $right; break; + default: $c = $left + $right; break; + } + } while ($c <= 0); // no negative #'s or 0 + + $this->code = $c; + $this->code_display = "$left $sign $right"; + break; + } + + case self::SI_CAPTCHA_WORDS: + $words = $this->readCodeFromFile(2); + $this->code = implode(' ', $words); + $this->code_display = $this->code; + break; + + default: + { + if ($this->use_wordlist && is_readable($this->wordlist_file)) { + $this->code = $this->readCodeFromFile(); + } + + if ($this->code == false) { + $this->code = $this->generateCode($this->code_length); + } + + $this->code_display = $this->code; + $this->code = ($this->case_sensitive) ? $this->code : strtolower($this->code); + } // default + } + + $this->saveData(); + } + + /** + * Draws the captcha code on the image + */ + protected function drawWord() + { + $width2 = $this->image_width * $this->iscale; + $height2 = $this->image_height * $this->iscale; + + if (!is_readable($this->ttf_file)) { + imagestring($this->im, 4, 10, ($this->image_height / 2) - 5, 'Failed to load TTF font file!', $this->gdtextcolor); + } else { + if ($this->perturbation > 0) { + $font_size = $height2 * .4; + $bb = imageftbbox($font_size, 0, $this->ttf_file, $this->code_display); + $tx = $bb[4] - $bb[0]; + $ty = $bb[5] - $bb[1]; + $x = floor($width2 / 2 - $tx / 2 - $bb[0]); + $y = round($height2 / 2 - $ty / 2 - $bb[1]); + + imagettftext($this->tmpimg, $font_size, 0, $x, $y, $this->gdtextcolor, $this->ttf_file, $this->code_display); + } else { + $font_size = $this->image_height * .4; + $bb = imageftbbox($font_size, 0, $this->ttf_file, $this->code_display); + $tx = $bb[4] - $bb[0]; + $ty = $bb[5] - $bb[1]; + $x = floor($this->image_width / 2 - $tx / 2 - $bb[0]); + $y = round($this->image_height / 2 - $ty / 2 - $bb[1]); + + imagettftext($this->im, $font_size, 0, $x, $y, $this->gdtextcolor, $this->ttf_file, $this->code_display); + } + } + + // DEBUG + //$this->im = $this->tmpimg; + //$this->output(); + + } + + /** + * Copies the captcha image to the final image with distortion applied + */ + protected function distortedCopy() + { + $numpoles = 3; // distortion factor + // make array of poles AKA attractor points + for ($i = 0; $i < $numpoles; ++ $i) { + $px[$i] = mt_rand($this->image_width * 0.2, $this->image_width * 0.8); + $py[$i] = mt_rand($this->image_height * 0.2, $this->image_height * 0.8); + $rad[$i] = mt_rand($this->image_height * 0.2, $this->image_height * 0.8); + $tmp = ((- $this->frand()) * 0.15) - .15; + $amp[$i] = $this->perturbation * $tmp; + } + + $bgCol = imagecolorat($this->tmpimg, 0, 0); + $width2 = $this->iscale * $this->image_width; + $height2 = $this->iscale * $this->image_height; + imagepalettecopy($this->im, $this->tmpimg); // copy palette to final image so text colors come across + // loop over $img pixels, take pixels from $tmpimg with distortion field + for ($ix = 0; $ix < $this->image_width; ++ $ix) { + for ($iy = 0; $iy < $this->image_height; ++ $iy) { + $x = $ix; + $y = $iy; + for ($i = 0; $i < $numpoles; ++ $i) { + $dx = $ix - $px[$i]; + $dy = $iy - $py[$i]; + if ($dx == 0 && $dy == 0) { + continue; + } + $r = sqrt($dx * $dx + $dy * $dy); + if ($r > $rad[$i]) { + continue; + } + $rscale = $amp[$i] * sin(3.14 * $r / $rad[$i]); + $x += $dx * $rscale; + $y += $dy * $rscale; + } + $c = $bgCol; + $x *= $this->iscale; + $y *= $this->iscale; + if ($x >= 0 && $x < $width2 && $y >= 0 && $y < $height2) { + $c = imagecolorat($this->tmpimg, $x, $y); + } + if ($c != $bgCol) { // only copy pixels of letters to preserve any background image + imagesetpixel($this->im, $ix, $iy, $c); + } + } + } + } + + /** + * Draws distorted lines on the image + */ + protected function drawLines() + { + for ($line = 0; $line < $this->num_lines; ++ $line) { + $x = $this->image_width * (1 + $line) / ($this->num_lines + 1); + $x += (0.5 - $this->frand()) * $this->image_width / $this->num_lines; + $y = mt_rand($this->image_height * 0.1, $this->image_height * 0.9); + + $theta = ($this->frand() - 0.5) * M_PI * 0.7; + $w = $this->image_width; + $len = mt_rand($w * 0.4, $w * 0.7); + $lwid = mt_rand(0, 2); + + $k = $this->frand() * 0.6 + 0.2; + $k = $k * $k * 0.5; + $phi = $this->frand() * 6.28; + $step = 0.5; + $dx = $step * cos($theta); + $dy = $step * sin($theta); + $n = $len / $step; + $amp = 1.5 * $this->frand() / ($k + 5.0 / $len); + $x0 = $x - 0.5 * $len * cos($theta); + $y0 = $y - 0.5 * $len * sin($theta); + + $ldx = round(- $dy * $lwid); + $ldy = round($dx * $lwid); + + for ($i = 0; $i < $n; ++ $i) { + $x = $x0 + $i * $dx + $amp * $dy * sin($k * $i * $step + $phi); + $y = $y0 + $i * $dy - $amp * $dx * sin($k * $i * $step + $phi); + imagefilledrectangle($this->im, $x, $y, $x + $lwid, $y + $lwid, $this->gdlinecolor); + } + } + } + + /** + * Draws random noise on the image + */ + protected function drawNoise() + { + if ($this->noise_level > 10) { + $noise_level = 10; + } else { + $noise_level = $this->noise_level; + } + + $t0 = microtime(true); + + $noise_level *= 125; // an arbitrary number that works well on a 1-10 scale + + $points = $this->image_width * $this->image_height * $this->iscale; + $height = $this->image_height * $this->iscale; + $width = $this->image_width * $this->iscale; + for ($i = 0; $i < $noise_level; ++$i) { + $x = mt_rand(10, $width); + $y = mt_rand(10, $height); + $size = mt_rand(7, 10); + if ($x - $size <= 0 && $y - $size <= 0) continue; // dont cover 0,0 since it is used by imagedistortedcopy + imagefilledarc($this->tmpimg, $x, $y, $size, $size, 0, 360, $this->gdnoisecolor, IMG_ARC_PIE); + } + + $t1 = microtime(true); + + $t = $t1 - $t0; + + /* + // DEBUG + imagestring($this->tmpimg, 5, 25, 30, "$t", $this->gdnoisecolor); + header('content-type: image/png'); + imagepng($this->tmpimg); + exit; + */ + } + + /** + * Print signature text on image + */ + protected function addSignature() + { + $bbox = imagettfbbox(10, 0, $this->signature_font, $this->image_signature); + $textlen = $bbox[2] - $bbox[0]; + $x = $this->image_width - $textlen - 5; + $y = $this->image_height - 3; + + imagettftext($this->im, 10, 0, $x, $y, $this->gdsignaturecolor, $this->signature_font, $this->image_signature); + } + + /** + * Sends the appropriate image and cache headers and outputs image to the browser + */ + protected function output() + { + if ($this->canSendHeaders() || $this->send_headers == false) { + if ($this->send_headers) { + // only send the content-type headers if no headers have been output + // this will ease debugging on misconfigured servers where warnings + // may have been output which break the image and prevent easily viewing + // source to see the error. + header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); + header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT"); + header("Cache-Control: no-store, no-cache, must-revalidate"); + header("Cache-Control: post-check=0, pre-check=0", false); + header("Pragma: no-cache"); + } + switch ($this->image_type) { case self::SI_IMAGE_JPEG: if ($this->send_headers) header("Content-Type: image/jpeg"); @@ -1388,653 +1388,653 @@ class Securimage if ($this->send_headers) header("Content-Type: image/png"); imagepng($this->im); break; - } + } } else { echo '
' .'Failed to generate captcha image, content has already been ' .'output.
This is most likely due to misconfiguration or ' - .'a PHP error was sent to the browser.
'; - } - - imagedestroy($this->im); - restore_error_handler(); - - if (!$this->no_exit) exit; - } - - /** - * Gets the code and returns the binary audio file for the stored captcha code - * - * @return The audio representation of the captcha in Wav format - */ - protected function getAudibleCode() - { - $letters = array(); - $code = $this->getCode(true, true); - - if ($code['code'] == '') { - if (strlen($this->display_value) > 0) { - $code = array('code' => $this->display_value, 'display' => $this->display_value); - } else { - $this->createCode(); - $code = $this->getCode(true); - } - } - - if (preg_match('/(\d+) (\+|-|x) (\d+)/i', $code['display'], $eq)) { - $math = true; - - $left = $eq[1]; - $sign = str_replace(array('+', '-', 'x'), array('plus', 'minus', 'times'), $eq[2]); - $right = $eq[3]; - - $letters = array($left, $sign, $right); - } else { - $math = false; - - $length = strlen($code['display']); - - for($i = 0; $i < $length; ++$i) { - $letter = $code['display']{$i}; - $letters[] = $letter; - } - } - - try { - return $this->generateWAV($letters); - } catch(Exception $ex) { - throw $ex; - } - } - - /** - * Gets a captcha code from a wordlist - */ - protected function readCodeFromFile($numWords = 1) - { - $fp = fopen($this->wordlist_file, 'rb'); - if (!$fp) return false; - - $fsize = filesize($this->wordlist_file); - if ($fsize < 128) return false; // too small of a list to be effective - - if ((int)$numWords < 1 || (int)$numWords > 5) $numWords = 1; - - $words = array(); - $i = 0; - do { - fseek($fp, mt_rand(0, $fsize - 64), SEEK_SET); // seek to a random position of file from 0 to filesize-64 - $data = fread($fp, 64); // read a chunk from our random position - $data = preg_replace("/\r?\n/", "\n", $data); - - $start = @strpos($data, "\n", mt_rand(0, 56)) + 1; // random start position - $end = @strpos($data, "\n", $start); // find end of word - - if ($start === false) { - // picked start position at end of file - continue; - } else if ($end === false) { - $end = strlen($data); - } - - $word = strtolower(substr($data, $start, $end - $start)); // return a line of the file - $words[] = $word; - } while (++$i < $numWords); - - fclose($fp); - - if ($numWords < 2) { - return $words[0]; - } else { - return $words; - } - } - - /** - * Generates a random captcha code from the set character set - */ - protected function generateCode() - { - $code = ''; - - if (function_exists('mb_strlen')) { - for($i = 1, $cslen = mb_strlen($this->charset); $i <= $this->code_length; ++$i) { - $code .= mb_substr($this->charset, mt_rand(0, $cslen - 1), 1, 'UTF-8'); - } - } else { - for($i = 1, $cslen = strlen($this->charset); $i <= $this->code_length; ++$i) { - $code .= substr($this->charset, mt_rand(0, $cslen - 1), 1); - } - } - - return $code; - } - - /** - * Checks the entered code against the value stored in the session or sqlite database, handles case sensitivity - * Also clears the stored codes if the code was entered correctly to prevent re-use - */ - protected function validate() - { - if (!is_string($this->code) || strlen($this->code) == 0) { - $code = $this->getCode(); - // returns stored code, or an empty string if no stored code was found - // checks the session and database if enabled - } else { - $code = $this->code; - } - - if ($this->case_sensitive == false && preg_match('/[A-Z]/', $code)) { - // case sensitive was set from securimage_show.php but not in class - // the code saved in the session has capitals so set case sensitive to true - $this->case_sensitive = true; - } - - $code_entered = trim( (($this->case_sensitive) ? $this->code_entered - : strtolower($this->code_entered)) - ); - $this->correct_code = false; - - if ($code != '') { - if (strpos($code, ' ') !== false) { - // for multi word captchas, remove more than once space from input - $code_entered = preg_replace('/\s+/', ' ', $code_entered); - $code_entered = strtolower($code_entered); - } - - if ($code == $code_entered) { - $this->correct_code = true; - if ($this->no_session != true) { - $_SESSION['securimage_code_value'][$this->namespace] = ''; - $_SESSION['securimage_code_ctime'][$this->namespace] = ''; - } - $this->clearCodeFromDatabase(); - } - } - } - - /** - * Save data to session namespace and database if used - */ - protected function saveData() - { - if ($this->no_session != true) { - if (isset($_SESSION['securimage_code_value']) && is_scalar($_SESSION['securimage_code_value'])) { - // fix for migration from v2 - v3 - unset($_SESSION['securimage_code_value']); - unset($_SESSION['securimage_code_ctime']); - } - - $_SESSION['securimage_code_disp'] [$this->namespace] = $this->code_display; - $_SESSION['securimage_code_value'][$this->namespace] = $this->code; - $_SESSION['securimage_code_ctime'][$this->namespace] = time(); - } - - if ($this->use_database) { - $this->saveCodeToDatabase(); - } - } - - /** - * Saves the code to the sqlite database - */ - protected function saveCodeToDatabase() - { - $success = false; - $this->openDatabase(); - - if ($this->use_database && $this->pdo_conn) { - $id = $this->getCaptchaId(false); - $ip = $_SERVER['REMOTE_ADDR']; - - if (empty($id)) { - $id = $ip; - } - - $time = time(); - $code = $this->code; - $code_disp = $this->code_display; - - // This is somewhat expensive in PDO Sqlite3 (when there is something to delete) - $this->clearCodeFromDatabase(); - - $query = "INSERT INTO {$this->database_table} (" - ."id, code, code_display, namespace, created) " - ."VALUES(?, ?, ?, ?, ?)"; - - $stmt = $this->pdo_conn->prepare($query); - $success = $stmt->execute(array($id, $code, $code_disp, $this->namespace, $time)); - - if (!$success) { - $err = $stmt->errorInfo(); - trigger_error("Failed to insert code into database. {$err[1]}: {$err[2]}", E_USER_WARNING); - } - } - - return $success !== false; - } - - /** - * Open sqlite database - */ - protected function openDatabase() - { - $this->pdo_conn = false; - - if ($this->use_database) { - $pdo_extension = 'PDO_' . strtoupper($this->database_driver); - - if (!extension_loaded($pdo_extension)) { - trigger_error("Database support is turned on in Securimage, but the chosen extension $pdo_extension is not loaded in PHP.", E_USER_WARNING); - return false; - } - } - - if ($this->database_driver == self::SI_DRIVER_SQLITE3) { - if (!file_exists($this->database_file)) { - $fp = fopen($this->database_file, 'w+'); - if (!$fp) { - $err = error_get_last(); - trigger_error("Securimage failed to create SQLite3 database file '{$this->database_file}'. Reason: {$err['message']}", E_USER_WARNING); - return false; - } - fclose($fp); - chmod($this->database_file, 0666); - } else if (!is_writeable($this->database_file)) { - trigger_error("Securimage does not have read/write access to database file '{$this->database_file}. Make sure permissions are 0666 and writeable by user '" . get_current_user() . "'", E_USER_WARNING); - return false; - } - } - - $dsn = $this->getDsn(); - - try { - $options = array(); - $this->pdo_conn = new PDO($dsn, $this->database_user, $this->database_pass, $options); - } catch (PDOException $pdoex) { - trigger_error("Database connection failed: " . $pdoex->getMessage(), E_USER_WARNING); - return false; - } - - try { - if (!$this->checkTablesExist()) { - // create tables... - $this->createDatabaseTables(); - } - } catch (Exception $ex) { - trigger_error($ex->getMessage(), E_USER_WARNING); - $this->pdo_conn = null; - return false; - } - - if (mt_rand(0, 100) / 100.0 == 1.0) { - $this->purgeOldCodesFromDatabase(); - } - - return $this->pdo_conn; - } - - protected function getDsn() - { - $dsn = sprintf('%s:', $this->database_driver); - - switch($this->database_driver) { - case self::SI_DRIVER_SQLITE3: - $dsn .= $this->database_file; - break; - - case self::SI_DRIVER_MYSQL: - case self::SI_DRIVER_PGSQL: - $dsn .= sprintf('host=%s;dbname=%s', - $this->database_host, - $this->database_name); - break; - - } - - return $dsn; - } - - protected function checkTablesExist() - { - $table = $this->pdo_conn->quote($this->database_table); - - switch($this->database_driver) { - case self::SI_DRIVER_SQLITE3: - // query row count for sqlite, PRAGMA queries seem to return no - // rowCount using PDO even if there are rows returned - $query = "SELECT COUNT(id) FROM $table"; - break; - - case self::SI_DRIVER_MYSQL: - $query = "SHOW TABLES LIKE $table"; - break; - - case self::SI_DRIVER_PGSQL: - $query = "SELECT * FROM information_schema.columns WHERE table_name = $table;"; - break; - } - - $result = $this->pdo_conn->query($query); - - if (!$result) { - $err = $this->pdo_conn->errorInfo(); - - if ($this->database_driver == self::SI_DRIVER_SQLITE3 && - $err[1] === 1 && strpos($err[2], 'no such table') !== false) - { - return false; - } - - throw new Exception("Failed to check tables: {$err[0]} - {$err[1]}: {$err[2]}"); - } else if ($this->database_driver == self::SI_DRIVER_SQLITE3) { - // successful here regardless of row count for sqlite - return true; - } else if ($result->rowCount() == 0) { - return false; - } else { - return true; - } - } - - protected function createDatabaseTables() - { - $queries = array(); - - switch($this->database_driver) { - case self::SI_DRIVER_SQLITE3: - $queries[] = "CREATE TABLE \"{$this->database_table}\" ( - id VARCHAR(40), - namespace VARCHAR(32) NOT NULL, - code VARCHAR(32) NOT NULL, - code_display VARCHAR(32) NOT NULL, - created INTEGER NOT NULL, - PRIMARY KEY(id, namespace) - )"; - - $queries[] = "CREATE INDEX ndx_created ON {$this->database_table} (created)"; - break; - - case self::SI_DRIVER_MYSQL: - $queries[] = "CREATE TABLE `{$this->database_table}` ( - `id` VARCHAR(40) NOT NULL, - `namespace` VARCHAR(32) NOT NULL, - `code` VARCHAR(32) NOT NULL, - `code_display` VARCHAR(32) NOT NULL, - `created` INT NOT NULL, - PRIMARY KEY(id, namespace), - INDEX(created) - )"; - break; - - case self::SI_DRIVER_PGSQL: - $queries[] = "CREATE TABLE {$this->database_table} ( - id character varying(40) NOT NULL, - namespace character varying(32) NOT NULL, - code character varying(32) NOT NULL, - code_display character varying(32) NOT NULL, - created integer NOT NULL, - CONSTRAINT pkey_id_namespace PRIMARY KEY (id, namespace) - )"; - - $queries[] = "CREATE INDEX ndx_created ON {$this->database_table} (created);"; - break; - } - - $this->pdo_conn->beginTransaction(); - - foreach($queries as $query) { - $result = $this->pdo_conn->query($query); - - if (!$result) { - $err = $this->pdo_conn->errorInfo(); - trigger_error("Failed to create table. {$err[1]}: {$err[2]}", E_USER_WARNING); - $this->pdo_conn->rollBack(); - $this->pdo_conn = false; - return false; - } - } - - $this->pdo_conn->commit(); - - return true; - } - - /** - * Get a code from the sqlite database for ip address/captchaId. - * - * @return string|array Empty string if no code was found or has expired, - * otherwise returns the stored captcha code. If a captchaId is set, this - * returns an array with indices "code" and "code_disp" - */ - protected function getCodeFromDatabase() - { - $code = ''; - - if ($this->use_database == true && $this->pdo_conn) { - if (Securimage::$_captchaId !== null) { - $query = "SELECT * FROM {$this->database_table} WHERE id = ?"; - $stmt = $this->pdo_conn->prepare($query); - $result = $stmt->execute(array(Securimage::$_captchaId)); - } else { - $ip = $_SERVER['REMOTE_ADDR']; - $ns = $this->namespace; - - // ip is stored in id column when no captchaId - $query = "SELECT * FROM {$this->database_table} WHERE id = ? AND namespace = ?"; - $stmt = $this->pdo_conn->prepare($query); - $result = $stmt->execute(array($ip, $ns)); - } - - if (!$result) { - $err = $this->pdo_conn->errorInfo(); - trigger_error("Failed to select code from database. {$err[0]}: {$err[1]}", E_USER_WARNING); - } else { - if ( ($row = $stmt->fetch()) !== false ) { - if (false == $this->isCodeExpired($row['created'])) { - if (Securimage::$_captchaId !== null) { - // return an array when using captchaId - $code = array('code' => $row['code'], - 'code_disp' => $row['code_display']); - } else { - $code = $row['code']; - } - } - } - } - } - - return $code; - } - - /** - * Remove an entered code from the database - */ - protected function clearCodeFromDatabase() - { - if ($this->pdo_conn) { - $ip = $_SERVER['REMOTE_ADDR']; - $ns = $this->pdo_conn->quote($this->namespace); - $id = Securimage::$_captchaId; - - if (empty($id)) { - $id = $ip; // if no captchaId set, IP address is captchaId. - } - - $id = $this->pdo_conn->quote($id); - - $query = sprintf("DELETE FROM %s WHERE id = %s AND namespace = %s", - $this->database_table, $id, $ns); - - $result = $this->pdo_conn->query($query); - if (!$result) { - trigger_error("Failed to delete code from database.", E_USER_WARNING); - } - } - } - - /** - * Deletes old codes from sqlite database - */ - protected function purgeOldCodesFromDatabase() - { - if ($this->use_database && $this->pdo_conn) { - $now = time(); - $limit = (!is_numeric($this->expiry_time) || $this->expiry_time < 1) ? 86400 : $this->expiry_time; - - $query = sprintf("DELETE FROM %s WHERE %s - created > %s", - $this->database_table, - $this->pdo_conn->quote($now, PDO::PARAM_INT), - $this->pdo_conn->quote($limit, PDO::PARAM_INT)); - - $result = $this->pdo_conn->query($query); - } - } - - /** - * Checks to see if the captcha code has expired and cannot be used - * @param unknown_type $creation_time - */ - protected function isCodeExpired($creation_time) - { - $expired = true; - - if (!is_numeric($this->expiry_time) || $this->expiry_time < 1) { - $expired = false; - } else if (time() - $creation_time < $this->expiry_time) { - $expired = false; - } - - return $expired; - } - - /** - * Generate a wav file given the $letters in the code - * @todo Add ability to merge 2 sound files together to have random background sounds - * @param array $letters - * @return string The binary contents of the wav file - */ - protected function generateWAV($letters) - { - $wavCaptcha = new WavFile(); - $first = true; // reading first wav file - - foreach ($letters as $letter) { - $letter = strtoupper($letter); - - try { - $l = new WavFile($this->audio_path . '/' . $letter . '.wav'); - - if ($first) { - // set sample rate, bits/sample, and # of channels for file based on first letter - $wavCaptcha->setSampleRate($l->getSampleRate()) - ->setBitsPerSample($l->getBitsPerSample()) - ->setNumChannels($l->getNumChannels()); - $first = false; - } - - // append letter to the captcha audio - $wavCaptcha->appendWav($l); - - // random length of silence between $audio_gap_min and $audio_gap_max - if ($this->audio_gap_max > 0 && $this->audio_gap_max > $this->audio_gap_min) { - $wavCaptcha->insertSilence( mt_rand($this->audio_gap_min, $this->audio_gap_max) / 1000.0 ); - } + .'a PHP error was sent to the browser.'; + } + + imagedestroy($this->im); + restore_error_handler(); + + if (!$this->no_exit) exit; + } + + /** + * Gets the code and returns the binary audio file for the stored captcha code + * + * @return The audio representation of the captcha in Wav format + */ + protected function getAudibleCode() + { + $letters = array(); + $code = $this->getCode(true, true); + + if ($code['code'] == '') { + if (strlen($this->display_value) > 0) { + $code = array('code' => $this->display_value, 'display' => $this->display_value); + } else { + $this->createCode(); + $code = $this->getCode(true); + } + } + + if (preg_match('/(\d+) (\+|-|x) (\d+)/i', $code['display'], $eq)) { + $math = true; + + $left = $eq[1]; + $sign = str_replace(array('+', '-', 'x'), array('plus', 'minus', 'times'), $eq[2]); + $right = $eq[3]; + + $letters = array($left, $sign, $right); + } else { + $math = false; + + $length = strlen($code['display']); + + for($i = 0; $i < $length; ++$i) { + $letter = $code['display']{$i}; + $letters[] = $letter; + } + } + + try { + return $this->generateWAV($letters); + } catch(Exception $ex) { + throw $ex; + } + } + + /** + * Gets a captcha code from a wordlist + */ + protected function readCodeFromFile($numWords = 1) + { + $fp = fopen($this->wordlist_file, 'rb'); + if (!$fp) return false; + + $fsize = filesize($this->wordlist_file); + if ($fsize < 128) return false; // too small of a list to be effective + + if ((int)$numWords < 1 || (int)$numWords > 5) $numWords = 1; + + $words = array(); + $i = 0; + do { + fseek($fp, mt_rand(0, $fsize - 64), SEEK_SET); // seek to a random position of file from 0 to filesize-64 + $data = fread($fp, 64); // read a chunk from our random position + $data = preg_replace("/\r?\n/", "\n", $data); + + $start = @strpos($data, "\n", mt_rand(0, 56)) + 1; // random start position + $end = @strpos($data, "\n", $start); // find end of word + + if ($start === false) { + // picked start position at end of file + continue; + } else if ($end === false) { + $end = strlen($data); + } + + $word = strtolower(substr($data, $start, $end - $start)); // return a line of the file + $words[] = $word; + } while (++$i < $numWords); + + fclose($fp); + + if ($numWords < 2) { + return $words[0]; + } else { + return $words; + } + } + + /** + * Generates a random captcha code from the set character set + */ + protected function generateCode() + { + $code = ''; + + if (function_exists('mb_strlen')) { + for($i = 1, $cslen = mb_strlen($this->charset); $i <= $this->code_length; ++$i) { + $code .= mb_substr($this->charset, mt_rand(0, $cslen - 1), 1, 'UTF-8'); + } + } else { + for($i = 1, $cslen = strlen($this->charset); $i <= $this->code_length; ++$i) { + $code .= substr($this->charset, mt_rand(0, $cslen - 1), 1); + } + } + + return $code; + } + + /** + * Checks the entered code against the value stored in the session or sqlite database, handles case sensitivity + * Also clears the stored codes if the code was entered correctly to prevent re-use + */ + protected function validate() + { + if (!is_string($this->code) || strlen($this->code) == 0) { + $code = $this->getCode(); + // returns stored code, or an empty string if no stored code was found + // checks the session and database if enabled + } else { + $code = $this->code; + } + + if ($this->case_sensitive == false && preg_match('/[A-Z]/', $code)) { + // case sensitive was set from securimage_show.php but not in class + // the code saved in the session has capitals so set case sensitive to true + $this->case_sensitive = true; + } + + $code_entered = trim( (($this->case_sensitive) ? $this->code_entered + : strtolower($this->code_entered)) + ); + $this->correct_code = false; + + if ($code != '') { + if (strpos($code, ' ') !== false) { + // for multi word captchas, remove more than once space from input + $code_entered = preg_replace('/\s+/', ' ', $code_entered); + $code_entered = strtolower($code_entered); + } + + if ($code == $code_entered) { + $this->correct_code = true; + if ($this->no_session != true) { + $_SESSION['securimage_code_value'][$this->namespace] = ''; + $_SESSION['securimage_code_ctime'][$this->namespace] = ''; + } + $this->clearCodeFromDatabase(); + } + } + } + + /** + * Save data to session namespace and database if used + */ + protected function saveData() + { + if ($this->no_session != true) { + if (isset($_SESSION['securimage_code_value']) && is_scalar($_SESSION['securimage_code_value'])) { + // fix for migration from v2 - v3 + unset($_SESSION['securimage_code_value']); + unset($_SESSION['securimage_code_ctime']); + } + + $_SESSION['securimage_code_disp'] [$this->namespace] = $this->code_display; + $_SESSION['securimage_code_value'][$this->namespace] = $this->code; + $_SESSION['securimage_code_ctime'][$this->namespace] = time(); + } + + if ($this->use_database) { + $this->saveCodeToDatabase(); + } + } + + /** + * Saves the code to the sqlite database + */ + protected function saveCodeToDatabase() + { + $success = false; + $this->openDatabase(); + + if ($this->use_database && $this->pdo_conn) { + $id = $this->getCaptchaId(false); + $ip = $_SERVER['REMOTE_ADDR']; + + if (empty($id)) { + $id = $ip; + } + + $time = time(); + $code = $this->code; + $code_disp = $this->code_display; + + // This is somewhat expensive in PDO Sqlite3 (when there is something to delete) + $this->clearCodeFromDatabase(); + + $query = "INSERT INTO {$this->database_table} (" + ."id, code, code_display, namespace, created) " + ."VALUES(?, ?, ?, ?, ?)"; + + $stmt = $this->pdo_conn->prepare($query); + $success = $stmt->execute(array($id, $code, $code_disp, $this->namespace, $time)); + + if (!$success) { + $err = $stmt->errorInfo(); + trigger_error("Failed to insert code into database. {$err[1]}: {$err[2]}", E_USER_WARNING); + } + } + + return $success !== false; + } + + /** + * Open sqlite database + */ + protected function openDatabase() + { + $this->pdo_conn = false; + + if ($this->use_database) { + $pdo_extension = 'PDO_' . strtoupper($this->database_driver); + + if (!extension_loaded($pdo_extension)) { + trigger_error("Database support is turned on in Securimage, but the chosen extension $pdo_extension is not loaded in PHP.", E_USER_WARNING); + return false; + } + } + + if ($this->database_driver == self::SI_DRIVER_SQLITE3) { + if (!file_exists($this->database_file)) { + $fp = fopen($this->database_file, 'w+'); + if (!$fp) { + $err = error_get_last(); + trigger_error("Securimage failed to create SQLite3 database file '{$this->database_file}'. Reason: {$err['message']}", E_USER_WARNING); + return false; + } + fclose($fp); + chmod($this->database_file, 0666); + } else if (!is_writeable($this->database_file)) { + trigger_error("Securimage does not have read/write access to database file '{$this->database_file}. Make sure permissions are 0666 and writeable by user '" . get_current_user() . "'", E_USER_WARNING); + return false; + } + } + + $dsn = $this->getDsn(); + + try { + $options = array(); + $this->pdo_conn = new PDO($dsn, $this->database_user, $this->database_pass, $options); + } catch (PDOException $pdoex) { + trigger_error("Database connection failed: " . $pdoex->getMessage(), E_USER_WARNING); + return false; + } + + try { + if (!$this->checkTablesExist()) { + // create tables... + $this->createDatabaseTables(); + } + } catch (Exception $ex) { + trigger_error($ex->getMessage(), E_USER_WARNING); + $this->pdo_conn = null; + return false; + } + + if (mt_rand(0, 100) / 100.0 == 1.0) { + $this->purgeOldCodesFromDatabase(); + } + + return $this->pdo_conn; + } + + protected function getDsn() + { + $dsn = sprintf('%s:', $this->database_driver); + + switch($this->database_driver) { + case self::SI_DRIVER_SQLITE3: + $dsn .= $this->database_file; + break; + + case self::SI_DRIVER_MYSQL: + case self::SI_DRIVER_PGSQL: + $dsn .= sprintf('host=%s;dbname=%s', + $this->database_host, + $this->database_name); + break; + + } + + return $dsn; + } + + protected function checkTablesExist() + { + $table = $this->pdo_conn->quote($this->database_table); + + switch($this->database_driver) { + case self::SI_DRIVER_SQLITE3: + // query row count for sqlite, PRAGMA queries seem to return no + // rowCount using PDO even if there are rows returned + $query = "SELECT COUNT(id) FROM $table"; + break; + + case self::SI_DRIVER_MYSQL: + $query = "SHOW TABLES LIKE $table"; + break; + + case self::SI_DRIVER_PGSQL: + $query = "SELECT * FROM information_schema.columns WHERE table_name = $table;"; + break; + } + + $result = $this->pdo_conn->query($query); + + if (!$result) { + $err = $this->pdo_conn->errorInfo(); + + if ($this->database_driver == self::SI_DRIVER_SQLITE3 && + $err[1] === 1 && strpos($err[2], 'no such table') !== false) + { + return false; + } + + throw new Exception("Failed to check tables: {$err[0]} - {$err[1]}: {$err[2]}"); + } else if ($this->database_driver == self::SI_DRIVER_SQLITE3) { + // successful here regardless of row count for sqlite + return true; + } else if ($result->rowCount() == 0) { + return false; + } else { + return true; + } + } + + protected function createDatabaseTables() + { + $queries = array(); + + switch($this->database_driver) { + case self::SI_DRIVER_SQLITE3: + $queries[] = "CREATE TABLE \"{$this->database_table}\" ( + id VARCHAR(40), + namespace VARCHAR(32) NOT NULL, + code VARCHAR(32) NOT NULL, + code_display VARCHAR(32) NOT NULL, + created INTEGER NOT NULL, + PRIMARY KEY(id, namespace) + )"; + + $queries[] = "CREATE INDEX ndx_created ON {$this->database_table} (created)"; + break; + + case self::SI_DRIVER_MYSQL: + $queries[] = "CREATE TABLE `{$this->database_table}` ( + `id` VARCHAR(40) NOT NULL, + `namespace` VARCHAR(32) NOT NULL, + `code` VARCHAR(32) NOT NULL, + `code_display` VARCHAR(32) NOT NULL, + `created` INT NOT NULL, + PRIMARY KEY(id, namespace), + INDEX(created) + )"; + break; + + case self::SI_DRIVER_PGSQL: + $queries[] = "CREATE TABLE {$this->database_table} ( + id character varying(40) NOT NULL, + namespace character varying(32) NOT NULL, + code character varying(32) NOT NULL, + code_display character varying(32) NOT NULL, + created integer NOT NULL, + CONSTRAINT pkey_id_namespace PRIMARY KEY (id, namespace) + )"; + + $queries[] = "CREATE INDEX ndx_created ON {$this->database_table} (created);"; + break; + } + + $this->pdo_conn->beginTransaction(); + + foreach($queries as $query) { + $result = $this->pdo_conn->query($query); + + if (!$result) { + $err = $this->pdo_conn->errorInfo(); + trigger_error("Failed to create table. {$err[1]}: {$err[2]}", E_USER_WARNING); + $this->pdo_conn->rollBack(); + $this->pdo_conn = false; + return false; + } + } + + $this->pdo_conn->commit(); + + return true; + } + + /** + * Get a code from the sqlite database for ip address/captchaId. + * + * @return string|array Empty string if no code was found or has expired, + * otherwise returns the stored captcha code. If a captchaId is set, this + * returns an array with indices "code" and "code_disp" + */ + protected function getCodeFromDatabase() + { + $code = ''; + + if ($this->use_database == true && $this->pdo_conn) { + if (Securimage::$_captchaId !== null) { + $query = "SELECT * FROM {$this->database_table} WHERE id = ?"; + $stmt = $this->pdo_conn->prepare($query); + $result = $stmt->execute(array(Securimage::$_captchaId)); + } else { + $ip = $_SERVER['REMOTE_ADDR']; + $ns = $this->namespace; + + // ip is stored in id column when no captchaId + $query = "SELECT * FROM {$this->database_table} WHERE id = ? AND namespace = ?"; + $stmt = $this->pdo_conn->prepare($query); + $result = $stmt->execute(array($ip, $ns)); + } + + if (!$result) { + $err = $this->pdo_conn->errorInfo(); + trigger_error("Failed to select code from database. {$err[0]}: {$err[1]}", E_USER_WARNING); + } else { + if ( ($row = $stmt->fetch()) !== false ) { + if (false == $this->isCodeExpired($row['created'])) { + if (Securimage::$_captchaId !== null) { + // return an array when using captchaId + $code = array('code' => $row['code'], + 'code_disp' => $row['code_display']); + } else { + $code = $row['code']; + } + } + } + } + } + + return $code; + } + + /** + * Remove an entered code from the database + */ + protected function clearCodeFromDatabase() + { + if ($this->pdo_conn) { + $ip = $_SERVER['REMOTE_ADDR']; + $ns = $this->pdo_conn->quote($this->namespace); + $id = Securimage::$_captchaId; + + if (empty($id)) { + $id = $ip; // if no captchaId set, IP address is captchaId. + } + + $id = $this->pdo_conn->quote($id); + + $query = sprintf("DELETE FROM %s WHERE id = %s AND namespace = %s", + $this->database_table, $id, $ns); + + $result = $this->pdo_conn->query($query); + if (!$result) { + trigger_error("Failed to delete code from database.", E_USER_WARNING); + } + } + } + + /** + * Deletes old codes from sqlite database + */ + protected function purgeOldCodesFromDatabase() + { + if ($this->use_database && $this->pdo_conn) { + $now = time(); + $limit = (!is_numeric($this->expiry_time) || $this->expiry_time < 1) ? 86400 : $this->expiry_time; + + $query = sprintf("DELETE FROM %s WHERE %s - created > %s", + $this->database_table, + $this->pdo_conn->quote($now, PDO::PARAM_INT), + $this->pdo_conn->quote($limit, PDO::PARAM_INT)); + + $result = $this->pdo_conn->query($query); + } + } + + /** + * Checks to see if the captcha code has expired and cannot be used + * @param unknown_type $creation_time + */ + protected function isCodeExpired($creation_time) + { + $expired = true; + + if (!is_numeric($this->expiry_time) || $this->expiry_time < 1) { + $expired = false; + } else if (time() - $creation_time < $this->expiry_time) { + $expired = false; + } + + return $expired; + } + + /** + * Generate a wav file given the $letters in the code + * @todo Add ability to merge 2 sound files together to have random background sounds + * @param array $letters + * @return string The binary contents of the wav file + */ + protected function generateWAV($letters) + { + $wavCaptcha = new WavFile(); + $first = true; // reading first wav file + + foreach ($letters as $letter) { + $letter = strtoupper($letter); + + try { + $l = new WavFile($this->audio_path . '/' . $letter . '.wav'); + + if ($first) { + // set sample rate, bits/sample, and # of channels for file based on first letter + $wavCaptcha->setSampleRate($l->getSampleRate()) + ->setBitsPerSample($l->getBitsPerSample()) + ->setNumChannels($l->getNumChannels()); + $first = false; + } + + // append letter to the captcha audio + $wavCaptcha->appendWav($l); + + // random length of silence between $audio_gap_min and $audio_gap_max + if ($this->audio_gap_max > 0 && $this->audio_gap_max > $this->audio_gap_min) { + $wavCaptcha->insertSilence( mt_rand($this->audio_gap_min, $this->audio_gap_max) / 1000.0 ); + } } catch (Exception $ex) { - // failed to open file, or the wav file is broken or not supported - // 2 wav files were not compatible, different # channels, bits/sample, or sample rate + // failed to open file, or the wav file is broken or not supported + // 2 wav files were not compatible, different # channels, bits/sample, or sample rate throw $ex; - } - } - - /********* Set up audio filters *****************************/ - $filters = array(); - - if ($this->audio_use_noise == true) { - // use background audio - find random file - $noiseFile = $this->getRandomNoiseFile(); - - if ($noiseFile !== false && is_readable($noiseFile)) { - try { - $wavNoise = new WavFile($noiseFile, false); - } catch(Exception $ex) { - throw $ex; - } - - // start at a random offset from the beginning of the wavfile - // in order to add more randomness - $randOffset = 0; - if ($wavNoise->getNumBlocks() > 2 * $wavCaptcha->getNumBlocks()) { - $randBlock = mt_rand(0, $wavNoise->getNumBlocks() - $wavCaptcha->getNumBlocks()); - $wavNoise->readWavData($randBlock * $wavNoise->getBlockAlign(), $wavCaptcha->getNumBlocks() * $wavNoise->getBlockAlign()); - } else { - $wavNoise->readWavData(); - $randOffset = mt_rand(0, $wavNoise->getNumBlocks() - 1); - } - - - $mixOpts = array('wav' => $wavNoise, - 'loop' => true, - 'blockOffset' => $randOffset); - - $filters[WavFile::FILTER_MIX] = $mixOpts; - $filters[WavFile::FILTER_NORMALIZE] = $this->audio_mix_normalization; - } - } - - if ($this->degrade_audio == true) { - // add random noise. - // any noise level below 95% is intensely distorted and not pleasant to the ear - $filters[WavFile::FILTER_DEGRADE] = mt_rand(95, 98) / 100.0; - } - - if (!empty($filters)) { - $wavCaptcha->filter($filters); // apply filters to captcha audio - } - - return $wavCaptcha->__toString(); - } - - public function getRandomNoiseFile() - { - $return = false; - - if ( ($dh = opendir($this->audio_noise_path)) !== false ) { - $list = array(); - - while ( ($file = readdir($dh)) !== false ) { - if ($file == '.' || $file == '..') continue; - if (strtolower(substr($file, -4)) != '.wav') continue; - - $list[] = $file; - } - - closedir($dh); - - if (sizeof($list) > 0) { - $file = $list[array_rand($list, 1)]; - $return = $this->audio_noise_path . DIRECTORY_SEPARATOR . $file; - } - } - - return $return; - } - - /** - * Return a wav file saying there was an error generating file - * - * @return string The binary audio contents - */ - protected function audioError() - { - return @file_get_contents(dirname(__FILE__) . '/audio/en/error.wav'); - } - - /** - * Checks to see if headers can be sent and if any error has been output to the browser - * - * @return bool true if headers haven't been sent and no output/errors will break audio/images, false if unsafe - */ + } + } + + /********* Set up audio filters *****************************/ + $filters = array(); + + if ($this->audio_use_noise == true) { + // use background audio - find random file + $noiseFile = $this->getRandomNoiseFile(); + + if ($noiseFile !== false && is_readable($noiseFile)) { + try { + $wavNoise = new WavFile($noiseFile, false); + } catch(Exception $ex) { + throw $ex; + } + + // start at a random offset from the beginning of the wavfile + // in order to add more randomness + $randOffset = 0; + if ($wavNoise->getNumBlocks() > 2 * $wavCaptcha->getNumBlocks()) { + $randBlock = mt_rand(0, $wavNoise->getNumBlocks() - $wavCaptcha->getNumBlocks()); + $wavNoise->readWavData($randBlock * $wavNoise->getBlockAlign(), $wavCaptcha->getNumBlocks() * $wavNoise->getBlockAlign()); + } else { + $wavNoise->readWavData(); + $randOffset = mt_rand(0, $wavNoise->getNumBlocks() - 1); + } + + + $mixOpts = array('wav' => $wavNoise, + 'loop' => true, + 'blockOffset' => $randOffset); + + $filters[WavFile::FILTER_MIX] = $mixOpts; + $filters[WavFile::FILTER_NORMALIZE] = $this->audio_mix_normalization; + } + } + + if ($this->degrade_audio == true) { + // add random noise. + // any noise level below 95% is intensely distorted and not pleasant to the ear + $filters[WavFile::FILTER_DEGRADE] = mt_rand(95, 98) / 100.0; + } + + if (!empty($filters)) { + $wavCaptcha->filter($filters); // apply filters to captcha audio + } + + return $wavCaptcha->__toString(); + } + + public function getRandomNoiseFile() + { + $return = false; + + if ( ($dh = opendir($this->audio_noise_path)) !== false ) { + $list = array(); + + while ( ($file = readdir($dh)) !== false ) { + if ($file == '.' || $file == '..') continue; + if (strtolower(substr($file, -4)) != '.wav') continue; + + $list[] = $file; + } + + closedir($dh); + + if (sizeof($list) > 0) { + $file = $list[array_rand($list, 1)]; + $return = $this->audio_noise_path . DIRECTORY_SEPARATOR . $file; + } + } + + return $return; + } + + /** + * Return a wav file saying there was an error generating file + * + * @return string The binary audio contents + */ + protected function audioError() + { + return @file_get_contents(dirname(__FILE__) . '/audio/en/error.wav'); + } + + /** + * Checks to see if headers can be sent and if any error has been output to the browser + * + * @return bool true if headers haven't been sent and no output/errors will break audio/images, false if unsafe + */ protected function canSendHeaders() { if (headers_sent()) { @@ -2047,163 +2047,163 @@ class Securimage return true; } - - /** - * Return a random float between 0 and 0.9999 - * - * @return float Random float between 0 and 0.9999 - */ - function frand() - { - return 0.0001 * mt_rand(0,9999); - } - - /** - * Convert an html color code to a Securimage_Color - * @param string $color - * @param Securimage_Color $default The defalt color to use if $color is invalid - */ - protected function initColor($color, $default) - { - if ($color == null) { - return new Securimage_Color($default); - } else if (is_string($color)) { - try { - return new Securimage_Color($color); - } catch(Exception $e) { - return new Securimage_Color($default); - } - } else if (is_array($color) && sizeof($color) == 3) { - return new Securimage_Color($color[0], $color[1], $color[2]); - } else { - return new Securimage_Color($default); - } - } - - /** - * Error handler used when outputting captcha image or audio. - * This error handler helps determine if any errors raised would - * prevent captcha image or audio from displaying. If they have - * no effect on the output buffer or headers, true is returned so - * the script can continue processing. - * See https://github.com/dapphp/securimage/issues/15 - * - * @param int $errno - * @param string $errstr - * @param string $errfile - * @param int $errline - * @param array $errcontext - * @return boolean true if handled, false if PHP should handle - */ - public function errorHandler($errno, $errstr, $errfile = '', $errline = 0, $errcontext = array()) - { - // get the current error reporting level - $level = error_reporting(); - - // if error was supressed or $errno not set in current error level - if ($level == 0 || ($level & $errno) == 0) { - return true; - } - - return false; - } -} - - -/** - * Color object for Securimage CAPTCHA - * - * @version 3.0 - * @since 2.0 - * @package Securimage - * @subpackage classes - * - */ -class Securimage_Color -{ - public $r; - public $g; - public $b; - - /** - * Create a new Securimage_Color object.
- * Constructor expects 1 or 3 arguments.
- * When passing a single argument, specify the color using HTML hex format,
- * when passing 3 arguments, specify each RGB component (from 0-255) individually.
- * $color = new Securimage_Color('#0080FF') or
- * $color = new Securimage_Color(0, 128, 255) - * - * @param string $color - * @throws Exception - */ - public function __construct($color = '#ffffff') - { - $args = func_get_args(); - - if (sizeof($args) == 0) { - $this->r = 255; - $this->g = 255; - $this->b = 255; - } else if (sizeof($args) == 1) { - // set based on html code - if (substr($color, 0, 1) == '#') { - $color = substr($color, 1); - } - - if (strlen($color) != 3 && strlen($color) != 6) { - throw new InvalidArgumentException( - 'Invalid HTML color code passed to Securimage_Color' - ); - } - - $this->constructHTML($color); - } else if (sizeof($args) == 3) { - $this->constructRGB($args[0], $args[1], $args[2]); - } else { - throw new InvalidArgumentException( - 'Securimage_Color constructor expects 0, 1 or 3 arguments; ' . sizeof($args) . ' given' - ); - } - } - - /** - * Construct from an rgb triplet - * @param int $red The red component, 0-255 - * @param int $green The green component, 0-255 - * @param int $blue The blue component, 0-255 - */ - protected function constructRGB($red, $green, $blue) - { - if ($red < 0) $red = 0; - if ($red > 255) $red = 255; - if ($green < 0) $green = 0; - if ($green > 255) $green = 255; - if ($blue < 0) $blue = 0; - if ($blue > 255) $blue = 255; - - $this->r = $red; - $this->g = $green; - $this->b = $blue; - } - - /** - * Construct from an html hex color code - * @param string $color - */ - protected function constructHTML($color) - { - if (strlen($color) == 3) { - $red = str_repeat(substr($color, 0, 1), 2); - $green = str_repeat(substr($color, 1, 1), 2); - $blue = str_repeat(substr($color, 2, 1), 2); - } else { - $red = substr($color, 0, 2); - $green = substr($color, 2, 2); - $blue = substr($color, 4, 2); - } - - $this->r = hexdec($red); - $this->g = hexdec($green); - $this->b = hexdec($blue); - } -} + + /** + * Return a random float between 0 and 0.9999 + * + * @return float Random float between 0 and 0.9999 + */ + function frand() + { + return 0.0001 * mt_rand(0,9999); + } + + /** + * Convert an html color code to a Securimage_Color + * @param string $color + * @param Securimage_Color $default The defalt color to use if $color is invalid + */ + protected function initColor($color, $default) + { + if ($color == null) { + return new Securimage_Color($default); + } else if (is_string($color)) { + try { + return new Securimage_Color($color); + } catch(Exception $e) { + return new Securimage_Color($default); + } + } else if (is_array($color) && sizeof($color) == 3) { + return new Securimage_Color($color[0], $color[1], $color[2]); + } else { + return new Securimage_Color($default); + } + } + + /** + * Error handler used when outputting captcha image or audio. + * This error handler helps determine if any errors raised would + * prevent captcha image or audio from displaying. If they have + * no effect on the output buffer or headers, true is returned so + * the script can continue processing. + * See https://github.com/dapphp/securimage/issues/15 + * + * @param int $errno + * @param string $errstr + * @param string $errfile + * @param int $errline + * @param array $errcontext + * @return boolean true if handled, false if PHP should handle + */ + public function errorHandler($errno, $errstr, $errfile = '', $errline = 0, $errcontext = array()) + { + // get the current error reporting level + $level = error_reporting(); + + // if error was supressed or $errno not set in current error level + if ($level == 0 || ($level & $errno) == 0) { + return true; + } + + return false; + } +} + + +/** + * Color object for Securimage CAPTCHA + * + * @version 3.0 + * @since 2.0 + * @package Securimage + * @subpackage classes + * + */ +class Securimage_Color +{ + public $r; + public $g; + public $b; + + /** + * Create a new Securimage_Color object.
+ * Constructor expects 1 or 3 arguments.
+ * When passing a single argument, specify the color using HTML hex format,
+ * when passing 3 arguments, specify each RGB component (from 0-255) individually.
+ * $color = new Securimage_Color('#0080FF') or
+ * $color = new Securimage_Color(0, 128, 255) + * + * @param string $color + * @throws Exception + */ + public function __construct($color = '#ffffff') + { + $args = func_get_args(); + + if (sizeof($args) == 0) { + $this->r = 255; + $this->g = 255; + $this->b = 255; + } else if (sizeof($args) == 1) { + // set based on html code + if (substr($color, 0, 1) == '#') { + $color = substr($color, 1); + } + + if (strlen($color) != 3 && strlen($color) != 6) { + throw new InvalidArgumentException( + 'Invalid HTML color code passed to Securimage_Color' + ); + } + + $this->constructHTML($color); + } else if (sizeof($args) == 3) { + $this->constructRGB($args[0], $args[1], $args[2]); + } else { + throw new InvalidArgumentException( + 'Securimage_Color constructor expects 0, 1 or 3 arguments; ' . sizeof($args) . ' given' + ); + } + } + + /** + * Construct from an rgb triplet + * @param int $red The red component, 0-255 + * @param int $green The green component, 0-255 + * @param int $blue The blue component, 0-255 + */ + protected function constructRGB($red, $green, $blue) + { + if ($red < 0) $red = 0; + if ($red > 255) $red = 255; + if ($green < 0) $green = 0; + if ($green > 255) $green = 255; + if ($blue < 0) $blue = 0; + if ($blue > 255) $blue = 255; + + $this->r = $red; + $this->g = $green; + $this->b = $blue; + } + + /** + * Construct from an html hex color code + * @param string $color + */ + protected function constructHTML($color) + { + if (strlen($color) == 3) { + $red = str_repeat(substr($color, 0, 1), 2); + $green = str_repeat(substr($color, 1, 1), 2); + $blue = str_repeat(substr($color, 2, 1), 2); + } else { + $red = substr($color, 0, 2); + $green = substr($color, 2, 2); + $blue = substr($color, 4, 2); + } + + $this->r = hexdec($red); + $this->g = hexdec($green); + $this->b = hexdec($blue); + } +} diff --git a/skin/images/logo2.jpg b/skin/images/logo2.jpg new file mode 100644 index 000000000..db432e716 Binary files /dev/null and b/skin/images/logo2.jpg differ diff --git a/vendor/FHC-vendor/angular-tablesort/.gitignore b/vendor/FHC-vendor/angular-tablesort/.gitignore deleted file mode 100644 index 2db6e8241..000000000 --- a/vendor/FHC-vendor/angular-tablesort/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.idea -bower_components \ No newline at end of file diff --git a/vendor/FHC-vendor/angular-tablesort/LICENSE b/vendor/FHC-vendor/angular-tablesort/LICENSE deleted file mode 100644 index 7627d9f60..000000000 --- a/vendor/FHC-vendor/angular-tablesort/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License - -Copyright (c) 2013 Mattias Holmlund, http://www.holmlund.se/mattias - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/vendor/FHC-vendor/angular-tablesort/README.md b/vendor/FHC-vendor/angular-tablesort/README.md deleted file mode 100644 index b556f977d..000000000 --- a/vendor/FHC-vendor/angular-tablesort/README.md +++ /dev/null @@ -1,119 +0,0 @@ -AngularJS Tablesort -=================== - -Allow tables to be sorted by clicking their headings. - -Web site: [http://mattiash.github.io/angular-tablesort](http://mattiash.github.io/angular-tablesort) - -Background ----------- - -When you use jquery to build your web-pages, it is very easy to add sorting-functionality to your tables - include [tablesorter](http://tablesorter.com) and annotate your column headings slightly to tell it what type of data your table contains. - -The goal with this module is to make it just as easy to add sorting to AngularJS tables, but with proper use of angular features and not jquery. - -Click once on a heading to sort ascending, twice for descending. Use shift-click to sort on more than one column. - -Additionally, these directives also makes it easy to add a default row that is shown in empty tables to make -it explicit that the table is intentionally empty and not just broken. - -Installation ------------- - - bower install angular-tablesort - -or - - npm install angular-tablesort - - -Usage ------ - -Include the script in your markup - -```html - -``` - -Include the module in your app - -```js -angular.module('myApp', ['tableSort']); -``` - -The following code generates a table that can be sorted by clicking on the table headings: - -```html - - - - - - - - - - - - - - - - -
IdNamePriceQuantity
{{item.Name}}{{item.Price | currency}}{{item.Quantity}}
-``` - -The `ts-wrapper` attribute must be set on element that surrounds both the headings and the ng-repeat statement. - -The `ts-criteria` attribute tells tablesort which expression it should sort on when that element is clicked. Normally, the ts-criteria is the same as the expression that is shown in the column, but it doesn't have to be. The ts-criteria can also be filtered using the normal AngularJS filter syntax. Tablesort includes two filters parseInt and parseFloat that use the javascript functions of the same name, but any filter can be used. - -The `ts-default` attribute can be set on one or more columns to sort on them in ascending order by default. -To sort in descending order, set ts-default to "descending" - -The `ts-repeat` attribute must be set on the element with ng-repeat. - -```html - -``` - -Alternatively, `ts-repeat-start` and `ts-repeat-end` may be used to compliment the `ng-repeat-start` and `ng-repeat-end` directives. - -```html - - - {{ item.Name }} - - - {{ item.Description }} - -``` - -By default, the sorting will be done as the last operation in the ng-repeat expression. To override this behavior, use an explicit `tablesort` directive as part of your ng-repeat expression. E.g. - -```html - -``` - -This will first select the first 10 items in `items` and then sort them. Alternatively, you can insert an explicit tablesort in the pipe: - -```html - -``` - -This will first sort the rows according to your specification and then only show the first 10 rows. - -If the `ng-repeat` expression contains a `track by` statement (which is generally a good idea), that expression will -be used to provide a [stable](http://en.wikipedia.org/wiki/Sorting_algorithm#Stability) sort result. - -CSS ---- - -All table headings that can be sorted on is styled with css-class `tablesort-sortable`. The table headings that the table is currently sorted on is styled with `tablesort-asc` or `tablesort-desc` classes depending on the sort-direction. A stylesheet is included to show that it works, but you probably want to build your own. - -By default the content and look of the data for empty tables is controlled via css. It is inserted as one empty `` spanning -all columns and placed inside a `` with class `showIfLast` The `` is placed at the top of each table. -To disable this feature add the attribute `ts-hide-no-data` to the `ts-repeat` row: -```html - -``` diff --git a/vendor/FHC-vendor/angular-tablesort/bower.json b/vendor/FHC-vendor/angular-tablesort/bower.json deleted file mode 100644 index eb88e7e85..000000000 --- a/vendor/FHC-vendor/angular-tablesort/bower.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "angular-tablesort", - "description": "Sort AngularJS tables easily", - "version": "1.1.2", - "main": ["./js/angular-tablesort.js"], - "dependencies": { - "angular": "*" - }, - "ignore": [] -} diff --git a/vendor/FHC-vendor/angular-tablesort/example.html b/vendor/FHC-vendor/angular-tablesort/example.html deleted file mode 100644 index ea563dd27..000000000 --- a/vendor/FHC-vendor/angular-tablesort/example.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - Angular Tablesort - - - - -
-
-

Angular Tablesort

- - - - - - - - - - - - - - - - - - - -
SelectIdNamePriceQuantity
{{item.Id}}{{item.Name}}{{item.Price | currency}}{{item.Quantity}}
- -

Angular Tablesort with tablesort filter and max 5 entries

- - - - - - - - - - - - - - - - - - - -
SelectIdNamePriceQuantity
{{item.Id}}{{item.Name}}{{item.Price | currency}}{{item.Quantity}}
- -

Angular Tablesort with Multi-Element ts-repeat-start & ts-repeat-end

-

Click Select to reveal item details.

- - - - - - - - - - - - - - - - - - - - - - -
SelectIdNamePriceQuantity
{{item.Id}}{{item.Name}}{{item.Price | currency}}{{item.Quantity}}
{{item.Description}}
- - - -

Empty table

- - - - - - - - - - - - - - - - - - - -
SelectIdNamePriceQuantity
{{item.Id}}{{item.Name}}{{item.Price | currency}}{{item.Quantity}}
- -

Empty table without "No data" row

- - - - - - - - - - - - - - - - - - - -
SelectIdNamePriceQuantity
{{item.Id}}{{item.Name}}{{item.Price | currency}}{{item.Quantity}}
-
-
-
- - - - - - diff --git a/vendor/FHC-vendor/angular-tablesort/index.js b/vendor/FHC-vendor/angular-tablesort/index.js deleted file mode 100644 index 1ecedb32c..000000000 --- a/vendor/FHC-vendor/angular-tablesort/index.js +++ /dev/null @@ -1,2 +0,0 @@ -require('./js/angular-tablesort'); -module.exports = 'tableSort'; \ No newline at end of file diff --git a/vendor/FHC-vendor/angular-tablesort/js/angular-tablesort.js b/vendor/FHC-vendor/angular-tablesort/js/angular-tablesort.js deleted file mode 100644 index c2a752d0a..000000000 --- a/vendor/FHC-vendor/angular-tablesort/js/angular-tablesort.js +++ /dev/null @@ -1,226 +0,0 @@ -/* - angular-tablesort v1.1.2 - (c) 2013-2015 Mattias Holmlund, http://mattiash.github.io/angular-tablesort - License: MIT -*/ - -var tableSortModule = angular.module( 'tableSort', [] ); - -tableSortModule.directive('tsWrapper', ['$log', '$parse', function( $log, $parse ) { - 'use strict'; - return { - scope: true, - controller: ['$scope', function($scope) { - $scope.sortExpression = []; - $scope.headings = []; - - var parse_sortexpr = function( expr ) { - return [$parse( expr ), null, false]; - }; - - this.setSortField = function( sortexpr, element ) { - var i; - var expr = parse_sortexpr( sortexpr ); - if( $scope.sortExpression.length === 1 - && $scope.sortExpression[0][0] === expr[0] ) { - if( $scope.sortExpression[0][2] ) { - element.removeClass( "tablesort-desc" ); - element.addClass( "tablesort-asc" ); - $scope.sortExpression[0][2] = false; - } - else { - element.removeClass( "tablesort-asc" ); - element.addClass( "tablesort-desc" ); - $scope.sortExpression[0][2] = true; - } - } - else { - for( i=0; i<$scope.headings.length; i=i+1 ) { - $scope.headings[i] - .removeClass( "tablesort-desc" ) - .removeClass( "tablesort-asc" ); - } - element.addClass( "tablesort-asc" ); - $scope.sortExpression = [expr]; - } - }; - - this.addSortField = function( sortexpr, element ) { - var i; - var toggle_order = false; - var expr = parse_sortexpr( sortexpr ); - for( i=0; i<$scope.sortExpression.length; i=i+1 ) { - if( $scope.sortExpression[i][0] === expr[0] ) { - if( $scope.sortExpression[i][2] ) { - element.removeClass( "tablesort-desc" ); - element.addClass( "tablesort-asc" ); - $scope.sortExpression[i][2] = false; - } - else { - element.removeClass( "tablesort-asc" ); - element.addClass( "tablesort-desc" ); - $scope.sortExpression[i][2] = true; - } - toggle_order = true; - } - } - if( !toggle_order ) { - element.addClass( "tablesort-asc" ); - $scope.sortExpression.push( expr ); - } - }; - - this.setTrackBy = function( trackBy ) { - $scope.trackBy = trackBy; - }; - - this.registerHeading = function( headingelement ) { - $scope.headings.push( headingelement ); - }; - - $scope.sortFun = function( a, b ) { - var i, aval, bval, descending, filterFun; - for( i=0; i<$scope.sortExpression.length; i=i+1 ){ - aval = $scope.sortExpression[i][0](a); - bval = $scope.sortExpression[i][0](b); - filterFun = b[$scope.sortExpression[i][1]]; - if( filterFun ) { - aval = filterFun( aval ); - bval = filterFun( bval ); - } - if( aval === undefined || aval === null ) { - aval = ""; - } - if( bval === undefined || bval === null ) { - bval = ""; - } - descending = $scope.sortExpression[i][2]; - if( aval > bval ) { - return descending ? -1 : 1; - } - else if( aval < bval ) { - return descending ? 1 : -1; - } - } - - // All the sort fields were equal. If there is a "track by" expression, - // use that as a tiebreaker to make the sort result stable. - if( $scope.trackBy ) { - aval = a[$scope.trackBy]; - bval = b[$scope.trackBy]; - if( aval === undefined || aval === null ) { - aval = ""; - } - if( bval === undefined || bval === null ) { - bval = ""; - } - if( aval > bval ) { - return descending ? -1 : 1; - } - else if( aval < bval ) { - return descending ? 1 : -1; - } - } - return 0; - }; - }] - }; -}]); - -tableSortModule.directive('tsCriteria', function() { - return { - require: "^tsWrapper", - link: function(scope, element, attrs, tsWrapperCtrl) { - var clickingCallback = function(event) { - scope.$apply( function() { - if( event.shiftKey ) { - tsWrapperCtrl.addSortField(attrs.tsCriteria, element); - } - else { - tsWrapperCtrl.setSortField(attrs.tsCriteria, element); - } - } ); - }; - element.bind('click', clickingCallback); - element.addClass('tablesort-sortable'); - if( "tsDefault" in attrs && attrs.tsDefault !== "0" ) { - tsWrapperCtrl.addSortField( attrs.tsCriteria, element ); - if( attrs.tsDefault == "descending" ) { - tsWrapperCtrl.addSortField( attrs.tsCriteria, element ); - } - } - tsWrapperCtrl.registerHeading( element ); - } - }; -}); - -tableSortModule.directive("tsRepeat", ['$compile', function($compile) { - return { - terminal: true, - multiElement: true, - require: "^tsWrapper", - priority: 1000000, - link: function(scope, element, attrs, tsWrapperCtrl) { - var repeatAttrs = ["ng-repeat", "data-ng-repeat", "ng-repeat-start", "data-ng-repeat-start"]; - var ngRepeatDirective = repeatAttrs[0]; - var tsRepeatDirective = "ts-repeat"; - for (var i = 0; i < repeatAttrs.length; i++) { - if (angular.isDefined(element.attr(repeatAttrs[i]))) { - ngRepeatDirective = repeatAttrs[i]; - tsRepeatDirective = ngRepeatDirective.replace(/^(data-)?ng/, '$1ts'); - break; - } - } - - var repeatExpr = element.attr(ngRepeatDirective); - var trackBy = null; - var trackByMatch = repeatExpr.match(/\s+track\s+by\s+\S+?\.(\S+)/); - if( trackByMatch ) { - trackBy = trackByMatch[1]; - tsWrapperCtrl.setTrackBy(trackBy); - } - - if (repeatExpr.search(/tablesort/) != -1) { - repeatExpr = repeatExpr.replace(/tablesort/,"tablesortOrderBy:sortFun"); - } else { - repeatExpr = repeatExpr.replace(/^\s*([\s\S]+?)\s+in\s+([\s\S]+?)(\s+track\s+by\s+[\s\S]+?)?\s*$/, - "$1 in $2 | tablesortOrderBy:sortFun$3"); - } - - if (angular.isUndefined(attrs.tsHideNoData)) { - var noDataRow = angular.element(element[0]).clone(); - noDataRow.removeAttr(ngRepeatDirective); - noDataRow.removeAttr(tsRepeatDirective); - noDataRow.addClass("showIfLast"); - noDataRow.children().remove(); - noDataRow.append(''); - noDataRow = $compile(noDataRow)(scope); - element.parent().prepend(noDataRow); - } - - angular.element(element[0]).attr(ngRepeatDirective, repeatExpr); - $compile(element, null, 1000000)(scope); - } - }; -}]); - -tableSortModule.filter( 'tablesortOrderBy', function(){ - return function(array, sortfun ) { - if(!array) return; - var arrayCopy = []; - for ( var i = 0; i < array.length; i++) { arrayCopy.push(array[i]); } - return arrayCopy.sort( sortfun ); - }; -} ); - -tableSortModule.filter( 'parseInt', function(){ - return function(input) { - return parseInt( input ) || null; - }; -} ); - -tableSortModule.filter( 'parseFloat', function(){ - return function(input) { - return parseFloat( input ) || null; - }; -} ); diff --git a/vendor/FHC-vendor/angular-tablesort/package.json b/vendor/FHC-vendor/angular-tablesort/package.json deleted file mode 100644 index 20a4ad16d..000000000 --- a/vendor/FHC-vendor/angular-tablesort/package.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "angular-tablesort", - "version": "1.1.2", - "description": "Sort angularjs tables easily", - "main": "index.js", - "repository": { - "type": "git", - "url": "https://github.com/mattiash/angular-tablesort.git" - }, - "license": "MIT", - "homepage": "https://github.com/mattiash/angular-tablesort" -} diff --git a/vendor/FHC-vendor/angular-tablesort/tablesort.css b/vendor/FHC-vendor/angular-tablesort/tablesort.css deleted file mode 100644 index d6c11656c..000000000 --- a/vendor/FHC-vendor/angular-tablesort/tablesort.css +++ /dev/null @@ -1,56 +0,0 @@ -th.tablesort-sortable { - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -o-user-select: none; - user-select: none; - cursor: pointer; -} - -table .tablesort-sortable:after{ - content:""; - float:right; - margin-top:7px; - visibility:hidden; - border-left:4px solid transparent; - border-right:4px solid transparent; - - border-top:none; - border-bottom:4px solid #000; -} - -table .tablesort-desc:after{ - border-top:4px solid #000; - border-bottom:none; -} - -table .tablesort-asc,table .tablesort-desc{ - background-color:rgba(141, 192, 219, 0.25); -} - -table .tablesort-sortable:hover:after, table .tablesort-asc:after, table .tablesort-desc:after { - visibility:visible; -} - -/* - * Styling for the table row shown in empty tables - */ - -/* The row is always added as the first row in a table - Hide it by default */ -.showIfLast { - display: none; -} - -/* Only show it if it is also the last row of the table. */ -.showIfLast:last-child { - display: table-row; -} - -.showIfLast td { - text-align: center; -} - -.showIfLast td:after { - content: "No data"; -} diff --git a/vendor/FHC-vendor/easyui/changelog.txt b/vendor/FHC-vendor/easyui/changelog.txt deleted file mode 100644 index cb2ecd37d..000000000 --- a/vendor/FHC-vendor/easyui/changelog.txt +++ /dev/null @@ -1,491 +0,0 @@ -Version 1.4.4 -------------- -* Bug - * filebox: The 'clear' and 'reset' methods do not work properly in IE9. fixed. - * messager: After calling $.messager.progress() with no arguments, the $.messager.progress('close') does not work properly. fixed. - * timespinner: The value does not display properly in IE8 while clicking the spin buttons. fixed. - * window: The window does not display when calling 'options' method in 'onMove' event. fixed. - * treegrid: The 'getLevel' method does not accept the parameter value of 0. fixed. -* Improvement - * layout: The 'collapsedContent','expandMode' and 'hideExpandTool' properties are supported in region panel. - * layout: The 'hideCollapsedContent' property can be set to display the vertical title bar on collapsed panel. - * layout: Add 'onCollapse','onExpand','onAdd','onRemove' events. - * datagrid: Display the 'up-down' icon on the sortable columns. - * datagrid: Add 'gotoPage' method. - * propertygrid: Add 'groups' method that allows to get all the data groups. - * messager: Auto scroll feature is supported when displaying long messages. - * tabs: The 'disabled' property is supported when defining a disabled tab panel. - * tabs: The percentange size is supported now. - -Version 1.4.3 -------------- -* Bug - * textbox: The 'setText' method does not accept value 0. fixed. - * timespinner: When running in IE11, the error occurs when clicking on the empty textbox. fixed. - * tabs: The 'update' method can not update only the panel body. fixed. -* Improvement - * combobox: Improve the performance of displaying the drop-down panel. - * combogrid: Remember the displaying text when the drop-down datagrid go to other pages. - * combogrid: The 'setValue' and 'setValues' methods accept a key-value object. - * window: The inline window's mask can auto-stretch its size to fill parent container. - * tabs: The 'showTool' and 'hideTool' methods are available for users to show or hide the tools. - * layout: Allow the user to override the 'cls','headerCls' and 'bodyCls' property values. -* New Plugins - * switchbutton: The switch button with two states:'on' and 'off'. - -Version 1.4.2 -------------- -* Bug - * treegrid: The column will restore its size to original size after recreating the treegrid. fixed. -* Improvement - * draggable: Add 'delay' property that allows the user to delay the drag operation. - * tree: Add 'filter' property and 'doFilter' method. - * tabs: The 'add' method allows the user to insert a tab panel at a specified index. - * tabs: The user can determine what tab panel can be selected. - * tabs: Add 'justified' and 'narrow' properties. - * layout: Add 'unsplit' and 'split' methods. - * messager: Keyboard navigation features are supported now. - * form: Add 'onChange' event. - * combobox: Add 'queryParams' property. - * slider: Add 'range' property. - * menu: Add 'itemHeight','inline','noline' properties. - * panel: The 'header' property allows the user to customize the panel header. - * menubutton: Add 'hasDownArrow' property. -* New Plugins - * datalist: The plugin to render items in a list. - * navpanel: The root component for the mobile page. - * mobile: The plugin to provide the mobile page stack management and navigation. - -Version 1.4.1 -------------- -* Bug - * combogrid: The combogrid has different height than other combo components. fixed. - * datagrid: The row element loses some class style value after calling 'updateRow' method. fixed. - * menubutton: Calling 'enable' method on a disabled button can not work well. fixed. - * form: The filebox components in the form do not work correctly after calling 'clear' method. fixed. -* Improvement - * tabs: The 'update' method accepts 'type' option that allows the user to update the header,body,or both. - * panel: Add 'openAnimation','openDuration','closeAnimation' and 'closeDuration' properties to set the animation for opening or closing a panel. - * panel: Add 'footer' property that allows the user to add a footer bar to the bottom of panel. - * datagrid: Calling 'endEdit' method will accept the editing value correctly. - * datagrid: Add 'onBeforeSelect','onBeforeCheck','onBeforeUnselect','onBeforeUncheck' events. - * propertygrid: The user can edit a row by calling 'beginEdit' method. - * datebox: Add 'cloneFrom' method to create the datebox component quickly. - * datetimebox: Add 'cloneFrom' method to create the datetimebox component quickly. - -Version 1.4 -------------- -* Bug - * menu: The menu should not has a correct height when removed a menu item. fixed. - * datagrid: The 'fitColumns' method does not work normally when the datarid width is too small. fixed. -* Improvement - * The fluid/percentange size is supported now for all easyui components. - * menu: Add 'showItem', 'hideItem' and 'resize' methods. - * menu: Auto resize the height upon the window size. - * menu: Add 'duration' property that allows the user to define duration time in milliseconds to hide menu. - * validatebox: Add 'onBeforeValidate' and 'onValidate' events. - * combo: Extended from textbox now. - * combo: Add 'panelMinWidth','panelMaxWidth','panelMinHeight' and 'panelMaxHeight' properties. - * searchbox: Extended from textbox now. - * tree: The 'getRoot' method will return the top parent node of a specified node if pass a 'nodeEl' parameter. - * tree: Add 'queryParams' property. - * datetimebox: Add 'spinnerWidth' property. - * panel: Add 'doLayout' method to cause the panel to lay out its components. - * panel: Add 'clear' method to clear the panel's content. - * datagrid: The user is allowed to assign percent width to columns. - * form: Add 'ajax','novalidate' and 'queryParams' properties. - * linkbutton: Add 'resize' method. -* New Plugins - * textbox: A enhanced input field that allows users build their form easily. - * datetimespinner: A date and time spinner that allows to pick a specific day. - * filebox: The filebox component represents a file field of the forms. - -Version 1.3.6 -------------- -* Bug - * treegrid: The 'getChecked' method can not return correct checked rows. fixed. - * tree: The checkbox does not display properly on async tree when 'onlyLeafCheck' property is true. fixed. -* Improvement - * treegrid: All the selecting and checking methods are extended from datagrid component. - * linkbutton: The icon alignment is fully supported, possible values are: 'top','bottom','left','right'. - * linkbutton: Add 'size' property, possible values are: 'small','large'. - * linkbutton: Add 'onClick' event. - * menubutton: Add 'menuAlign' property that allows the user set top level menu alignment. - * combo: Add 'panelAlign' property, possible values are: 'left','right'. - * calendar: The 'formatter','styler' and 'validator' options are available to custom the calendar dates. - * calendar: Add 'onChange' event. - * panel: Add 'method','queryParams' and 'loader' options. - * panel: Add 'onLoadError' event. - * datagrid: Add 'onBeginEdit' event that fires when a row goes into edit mode. - * datagrid: Add 'onEndEdit' event that fires when finishing editing but before destroying editors. - * datagrid: Add 'sort' method and 'onBeforeSortColumn' event. - * datagrid: The 'combogrid' editor has been integrated into datagrid. - * datagrid: Add 'ctrlSelect' property that only allows multi-selection when ctrl+click is used. - * slider: Add 'converter' option that allows users determine how to convert a value to the slider position or the slider position to the value. - * searchbox: Add 'disabled' property. - * searchbox: Add 'disable','enable','clear','reset' methods. - * spinner: Add 'readonly' property, 'readonly' method and 'onChange' event. - -Version 1.3.5 -------------- -* Bug - * searchbox: The 'searcher' function can not offer 'name' parameter value correctly. fixed. - * combo: The 'isValid' method can not return boolean value. fixed. - * combo: Clicking combo will trigger the 'onHidePanel' event of other combo components that have hidden drop-down panels. fixed. - * combogrid: Some methods can not inherit from combo. fixed. -* Improvement - * datagrid: Improve performance on checking rows. - * menu: Allows to append a menu separator. - * menu: Add 'hideOnUnhover' property to indicate if the menu should be hidden when mouse exits it. - * slider: Add 'clear' and 'reset' methods. - * tabs: Add 'unselect' method that will trigger 'onUnselect' event. - * tabs: Add 'selected' property to specify what tab panel will be opened. - * tabs: The 'collapsible' property of tab panel is supported to determine if the tab panel can be collapsed. - * tabs: Add 'showHeader' property, 'showHeader' and 'hideHeader' methods. - * combobox: The 'disabled' property can be used to disable some items. - * tree: Improve loading performance. - * pagination: The 'layout' property can be used to customize the pagination layout. - * accordion: Add 'unselect' method that will trigger 'onUnselect' event. - * accordion: Add 'selected' and 'multiple' properties. - * accordion: Add 'getSelections' method. - * datebox: Add 'sharedCalendar' property that allows multiple datebox components share one calendar component. - -Version 1.3.4 -------------- -* Bug - * combobox: The onLoadSuccess event fires when parsing empty local data. fixed. - * form: Calling 'reset' method can not reset datebox field. fixed. -* Improvement - * mobile: The context menu and double click features are supported on mobile devices. - * combobox: The 'groupField' and 'groupFormatter' options are available to display items in groups. - * tree: When append or insert nodes, the 'data' parameter accepts one or more nodes data. - * tree: The 'getChecked' method accepts a single 'state' or an array of 'state'. - * tree: Add 'scrollTo' method. - * datagrid: The 'multiSort' property is added to support multiple column sorting. - * datagrid: The 'rowStyler' and column 'styler' can return CSS class name or inline styles. - * treegrid: Add 'load' method to load data and navigate to the first page. - * tabs: Add 'tabWidth' and 'tabHeight' properties. - * validatebox: The 'novalidate' property is available to indicate whether to perform the validation. - * validatebox: Add 'enableValidation' and 'disableValidation' methods. - * form: Add 'enableValidation' and 'disableValidation' methods. - * slider: Add 'onComplete' event. - * pagination: The 'buttons' property accepts the existing element. - -Version 1.3.3 -------------- -* Bug - * datagrid: Some style features are not supported by column styler function. fixed. - * datagrid: IE 31 stylesheet limit. fixed. - * treegrid: Some style features are not supported by column styler function. fixed. - * menu: The auto width of menu item displays incorrect in ie6. fixed. - * combo: The 'onHidePanel' event can not fire when clicked outside the combo area. fixed. -* Improvement - * datagrid: Add 'scrollTo' and 'highlightRow' methods. - * treegrid: Enable treegrid to parse data from element. - * combo: Add 'selectOnNavigation' and 'readonly' options. - * combobox: Add 'loadFilter' option to allow users to change data format before loading into combobox. - * tree: Add 'onBeforeDrop' callback event. - * validatebox: Dependent on tooltip plugin now, add 'deltaX' property. - * numberbox: The 'filter' options can be used to determine if the key pressed was accepted. - * linkbutton: The group button is available. - * layout: The 'minWidth','maxWidth','minHeight','maxHeight' and 'collapsible' properties are available for region panel. -* New Plugins - * tooltip: Display a popup message when moving mouse over an element. - -Version 1.3.2 -------------- -* Bug - * datagrid: The loading message window can not be centered when changing the width of datagrid. fixed. - * treegrid: The 'mergeCells' method can not work normally. fixed. - * propertygrid: Calling 'endEdit' method to stop editing a row will cause errors. fixed. - * tree: Can not load empty data when 'lines' property set to true. fixed. -* Improvement - * RTL feature is supported now. - * tabs: Add 'scrollBy' method to scroll the tab header by the specified amount of pixels - * tabs: Add 'toolPosition' property to set tab tools to left or right. - * tabs: Add 'tabPosition' property to define the tab position, possible values are: 'top','bottom','left','right'. - * datagrid: Add a column level property 'order' that allows users to define different default sort order per column. - * datagrid: Add a column level property 'halign' that allows users to define how to align the column header. - * datagrid: Add 'resizeHandle' property to define the resizing column position, by grabbing the left or right edge of the column. - * datagrid: Add 'freezeRow' method to freeze some rows that will always be displayed at the top when the datagrid is scrolled down. - * datagrid: Add 'clearChecked' method to clear all checked records. - * datagrid: Add 'data' property to initialize the datagrid data. - * linkbutton: Add 'iconAlgin' property to define the icon position, supported values are: 'left','right'. - * menu: Add 'minWidth' property. - * menu: The menu width can be automatically calculated. - * tree: New events are available including 'onBeforeDrag','onStartDrag','onDragEnter','onDragOver','onDragLeave',etc. - * combo: Add 'height' property to allow users to define the height of combo. - * combo: Add 'reset' method. - * numberbox: Add 'reset' method. - * spinner: Add 'reset' method. - * spinner: Add 'height' property to allow users to define the height of spinner. - * searchbox: Add 'height' property to allow users to define the height of searchbox. - * form: Add 'reset' method. - * validatebox: Add 'delay' property to delay validating from the last inputting value. - * validatebox: Add 'tipPosition' property to define the tip position, supported values are: 'left','right'. - * validatebox: Multiple validate rules on a field is supported now. - * slider: Add 'reversed' property to determine if the min value and max value will switch their positions. - * progressbar: Add 'height' property to allow users to define the height of progressbar. - -Version 1.3.1 -------------- -* Bug - * datagrid: Setting the 'pageNumber' property is not valid. fixed. - * datagrid: The id attribute of rows isn't adjusted properly while calling 'insertRow' or 'deleteRow' method. - * dialog: When load content from 'href', the script will run twice. fixed. - * propertygrid: The editors that extended from combo can not accept its changed value. fixed. -* Improvement - * droppable: Add 'disabled' property. - * droppable: Add 'options','enable' and 'disable' methods. - * tabs: The tab panel tools can be changed by calling 'update' method. - * messager: When show a message window, the user can define the window position by applying 'style' property. - * window: Prevent script on window body from running twice. - * window: Add 'hcenter','vcenter' and 'center' methods. - * tree: Add 'onBeforeCheck' callback event. - * tree: Extend the 'getChecked' method to allow users to get 'checked','unchecked' or 'indeterminate' nodes. - * treegrid: Add 'update' method to update a specified node. - * treegrid: Add 'insert' method to insert a new node. - * treegrid: Add 'pop' method to remove a node and get the removed node data. - -Version 1.3 ------------ -* Bug - * combogrid: When set to 'remote' query mode, the 'queryParams' parameters can't be sent to server. fixed. - * combotree: The tree nodes on drop-down panel can not be unchecked while calling 'clear' method. fixed. - * datetimebox: Setting 'showSeconds' property to false cannot hide seconds info. fixed. - * datagrid: Calling 'mergeCells' method can't auto resize the merged cell while header is hidden. fixed. - * dialog: Set cache to false and load data via ajax, the content cannot be refreshed. fixed. -* Improvement - * The HTML5 'data-options' attribute is available for components to declare all custom options, including properties and events. - * More detailed documentation is available. - * panel: Prevent script on panel body from running twice. - * accordion: Add 'getPanelIndex' method. - * accordion: The tools can be added on panel header. - * datetimebox: Add 'timeSeparator' option that allows users to define the time separator. - * pagination: Add 'refresh' and 'select' methods. - * datagrid: Auto resize the column width to fit the contents when the column width is not defined. - * datagrid: Double click on the right border of columns to auto resize the columns to the contents in the columns. - * datagrid: Add 'autoSizeColumn' method that allows users to adjust the column width to fit the contents. - * datagrid: Add 'getChecked' method to get all rows where the checkbox has been checked. - * datagrid: Add 'selectOnCheck' and 'checkOnSelect' properties and some checking methods to enhance the row selections. - * datagrid: Add 'pagePosition' property to allow users to display pager bar at either top,bottom or both places of the grid. - * datagrid: The buffer view and virtual scroll view are supported to display large amounts of records without pagination. - * tabs: Add 'disableTab' and 'enableTab' methods to allow users to disable or enable a tab panel. - -Version 1.2.6 -------------- -* Bug - * tabs: Call 'add' method with 'selected:false' option, the added tab panel is always selected. fixed. - * treegrid: The 'onSelect' and 'onUnselect' events can't be triggered. fixed. - * treegrid: Cannot display zero value field. fixed. -* Improvement - * propertygrid: Add 'expandGroup' and 'collapseGroup' methods. - * layout: Allow users to create collapsed layout panels by assigning 'collapsed' property to true. - * layout: Add 'add' and 'remove' methods that allow users to dynamically add or remove region panel. - * layout: Additional tool icons can be added on region panel header. - * calendar: Add 'firstDay' option that allow users to set first day of week. Sunday is 0, Monday is 1, ... - * tree: Add 'lines' option, true to display tree lines. - * tree: Add 'loadFilter' option that allow users to change data format before loading into the tree. - * tree: Add 'loader' option that allow users to define how to load data from remote server. - * treegrid: Add 'onClickCell' and 'onDblClickCell' callback function options. - * datagrid: Add 'autoRowHeight' property that allow users to determine if set the row height based on the contents of that row. - * datagrid: Improve performance to load large data set. - * datagrid: Add 'loader' option that allow users to define how to load data from remote server. - * treegrid: Add 'loader' option that allow users to define how to load data from remote server. - * combobox: Add 'onBeforeLoad' callback event function. - * combobox: Add 'loader' option that allow users to define how to load data from remote server. - * Add support for other loading mode such as dwr,xml,etc. -* New Plugins - * slider: Allows the user to choose a numeric value from a finite range. - -Version 1.2.5 -------------- -* Bug - * tabs: When add a new tab panel with href property, the content page is loaded twice. fixed. - * form: Failed to call 'load' method to load form input with complex name. fixed. - * draggable: End drag in ie9, the cursor cannot be restored. fixed. -* Improvement - * panel: The tools can be defined via html markup. - * tabs: Call 'close' method to close specified tab panel, users can pass tab title or index of tab panel. Other methods such 'select','getTab' and 'exists' are similar to 'close' method. - * tabs: Add 'getTabIndex' method. - * tabs: Users can define mini tools on tabs. - * tree: The mouse must move a specified distance to begin drag and drop operation. - * resizable: Add 'options','enable' and 'disable' methods. - * numberbox: Allow users to change number format. - * datagrid: The subgrid is supported now. - * searchbox: Add 'selectName' method to select searching type name. - -Version 1.2.4 -------------- -* Bug - * menu: The menu position is wrong when scroll bar appears. fixed. - * accordion: Cannot display the default selected panel in jQuery 1.6.2. fixed. - * tabs: Cannot display the default selected tab panel in jQuery 1.6.2. fixed. -* Improvement - * menu: Allow users to disable or enable menu item. - * combo: Add 'delay' property to set the delay time to do searching from the last key input event. - * treegrid: The 'getEditors' and 'getEditor' methods are supported now. - * treegrid: The 'loadFilter' option is supported now. - * messager: Add 'progress' method to display a message box with a progress bar. - * panel: Add 'extractor' option to allow users to extract panel content from ajax response. -* New Plugins - * searchbox: Allow users to type words into box and do searching operation. - * progressbar: To display the progress of a task. - -Version 1.2.3 -------------- -* Bug - * window: Cannot resize the window with iframe content. fixed. - * tree: The node will be removed when dragging to its child. fixed. - * combogrid: The onChange event fires multiple times. fixed. - * accordion: Cannot add batch new panels when animate property is set to true. fixed. -* Improvement - * treegrid: The footer row and row styler features are supported now. - * treegrid: Add 'getLevel','reloadFooter','getFooterRows' methods. - * treegrid: Support root nodes pagination and editable features. - * datagrid: Add 'getFooterRows','reloadFooter','insertRow' methods and improve editing performance. - * datagrid: Add 'loadFilter' option that allow users to change original source data to standard data format. - * draggable: Add 'onBeforeDrag' callback event function. - * validatebox: Add 'remote' validation type. - * combobox: Add 'method' option. -* New Plugins - * propertygrid: Allow users to edit property value in datagrid. - -Version 1.2.2 -------------- -* Bug - * datagrid: Apply fitColumns cannot work fine while set checkbox column. fixed. - * datagrid: The validateRow method cannot return boolean type value. fixed. - * numberbox: Cannot fix value in chrome when min or max property isn't defined. fixed. -* Improvement - * menu: Add some crud methods. - * combo: Add hasDownArrow property to determine whether to display the down arrow button. - * tree: Supports inline editing. - * calendar: Add some useful methods such as 'resize', 'moveTo' etc. - * timespinner: Add some useful methods. - * datebox: Refactoring based on combo and calendar plugin now. - * datagrid: Allow users to change row style in some conditions. - * datagrid: Users can use the footer row to display summary information. -* New Plugins - * datetimebox: Combines datebox with timespinner component. - -Version 1.2.1 -------------- -* Bug - * easyloader: Some dependencies cannot be loaded by their order. fixed. - * tree: The checkbox is setted incorrectly when removing a node. fixed. - * dialog: The dialog layout incorrectly when 'closed' property is setted to true. fixed. -* Improvement - * parser: Add onComplete callback function that can indicate whether the parse action is complete. - * menu: Add onClick callback function and some other methods. - * tree: Add some useful methods. - * tree: Drag and Drop feature is supported now. - * tree: Add onContextMenu callback function. - * tabs: Add onContextMenu callback function. - * tabs: Add 'tools' property that can create buttons on right bar. - * datagrid: Add onHeaderContextMenu and onRowContextMenu callback functions. - * datagrid: Custom view is supported. - * treegrid: Add onContextMenu callback function and append,remove methods. - -Version 1.2 -------------- -* Improvement - * tree: Add cascadeCheck,onlyLeafCheck properties and select event. - * combobox: Enable multiple selection. - * combotree: Enable multiple selection. - * tabs: Remember the trace of selection, when current tab panel is closed, the previous selected tab will be selected. - * datagrid: Extend from panel, so many properties defined in panel can be used for datagrid. -* New Plugins - * treegrid: Represent tabular data in hierarchical view, combines tree view and datagrid. - * combo: The basic component that allow user to extend their combo component such as combobox,combotree,etc. - * combogrid: Combines combobox with drop-down datagrid component. - * spinner: The basic plugin to create numberspinner,timespinner,etc. - * numberspinner: The numberbox that allow user to change value by clicking up and down spin buttons. - * timespinner: The time selector that allow user to quickly inc/dec a time. - -Version 1.1.2 -------------- -* Bug - * messager: When call show method in layout, the message window will be blocked. fixed. -* Improvement - * datagrid: Add validateRow method, remember the current editing row status when do editing action. - * datagrid: Add the ability to create merged cells. - * form: Add callback functions when loading data. - * panel,window,dialog: Add maximize,minimize,restore,collapse,expand methods. - * panel,tabs,accordion: The lazy loading feature is supported. - * tabs: Add getSelected,update,getTab methods. - * accordion: Add crud methods. - * linkbutton: Accept an id option to set the id attribute. - * tree: Enhance tree node operation. - -Version 1.1.1 -------------- -* Bug - * form: Cannot clear the value of combobox and combotree component. fixed. -* Improvement - * tree: Add some useful methods such as 'getRoot','getChildren','update',etc. - * datagrid: Add editable feature, improve performance while loading data. - * datebox: Add destroy method. - * combobox: Add destroy and clear method. - * combotree: Add destroy and clear method. - -Version 1.1 -------------- -* Bug - * messager: When call show method with timeout property setted, an error occurs while clicking the close button. fixed. - * combobox: The editable property of combobox plugin is invalid. fixed. - * window: The proxy box will not be removed when dragging or resizing exceed browser border in ie. fixed. -* Improvement - * menu: The menu item can use markup to display a different page. - * tree: The tree node can use markup to act as a tree menu. - * pagination: Add some event on refresh button and page list. - * datagrid: Add a 'param' parameter for reload method, with which users can pass query parameter when reload data. - * numberbox: Add required validation support, the usage is same as validatebox plugin. - * combobox: Add required validation support. - * combotree: Add required validation support. - * layout: Add some method that can get a region panel and attach event handlers. -* New Plugins - * droppable: A droppable plugin that supports drag drop operation. - * calendar: A calendar plugin that can either be embedded within a page or popup. - * datebox: Combines a textbox with a calendar that let users to select date. - * easyloader: A JavaScript loader that allows you to load plugin and their dependencies into your page. - -Version 1.0.5 -* Bug - * panel: The fit property of panel performs incorrectly. fixed. -* Improvement - * menu: Add a href attribute for menu item, with which user can display a different page in the current browser window. - * form: Add a validate method to do validation for validatebox component. - * dialog: The dialog can read collapsible,minimizable,maximizable and resizable attribute from markup. -* New Plugins - * validatebox: A validation plugin that checks to make sure the user's input value is valid. - -Version 1.0.4 -------------- -* Bug - * panel: When panel is invisible, it is abnormal when resized. fixed. - * panel: Memory leak in method 'destroy'. fixed. - * messager: Memory leak when messager box is closed. fixed. - * dialog: No onLoad event occurs when loading remote data. fixed. -* Improvement - * panel: Add method 'setTitle'. - * window: Add method 'setTitle'. - * dialog: Add method 'setTitle'. - * combotree: Add method 'getValue'. - * combobox: Add method 'getValue'. - * form: The 'load' method can load data and fill combobox and combotree field correctly. - -Version 1.0.3 -------------- -* Bug - * menu: When menu is show in a DIV container, it will be cropped. fixed. - * layout: If you collpase a region panel and then expand it immediately, the region panel will not show normally. fixed. - * accordion: If no panel selected then the first one will become selected and the first panel's body height will not set correctly. fixed. -* Improvement - * tree: Add some methods to support CRUD operation. - * datagrid: Toolbar can accept a new property named 'disabled' to disable the specified tool button. -* New Plugins - * combobox: Combines a textbox with a list of options that users are able to choose from. - * combotree: Combines combobox with drop-down tree component. - * numberbox: Make input element can only enter number char. - * dialog: rewrite the dialog plugin, dialog can contains toolbar and buttons. diff --git a/vendor/FHC-vendor/easyui/demo-mobile/accordion/_content.html b/vendor/FHC-vendor/easyui/demo-mobile/accordion/_content.html deleted file mode 100644 index f7b8e2ee7..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/accordion/_content.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - AJAX Content - - -

Here is the content loaded via AJAX.

-
    -
  • easyui is a collection of user-interface plugin based on jQuery.
  • -
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • -
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • -
  • complete framework for HTML5 web page.
  • -
  • easyui save your time and scales while developing your products.
  • -
  • easyui is very easy but powerful.
  • -
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/accordion/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/accordion/basic.html deleted file mode 100644 index 36eece52a..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/accordion/basic.html +++ /dev/null @@ -1 +0,0 @@ - Basic Accordion - jQuery EasyUI Mobile Demo
Basic Accordion
  • WLAN
  • Memory
  • Screen
  • More...
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/accordion/header.html b/vendor/FHC-vendor/easyui/demo-mobile/accordion/header.html deleted file mode 100644 index 6ea6250b4..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/accordion/header.html +++ /dev/null @@ -1 +0,0 @@ - Custom Accordion Header - jQuery EasyUI Mobile Demo
Custom Accordion Header
List 26/51
  • WLAN
  • Memory
  • Screen
  • More...
Ajax Loading via ajax 23
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/animation/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/animation/basic.html deleted file mode 100644 index 995b0f932..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/animation/basic.html +++ /dev/null @@ -1 +0,0 @@ - Basic Animation - jQuery EasyUI Mobile Demo
Panel2
Panel3

Panel3 Content.

\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/animation/fade.html b/vendor/FHC-vendor/easyui/demo-mobile/animation/fade.html deleted file mode 100644 index b85c7846b..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/animation/fade.html +++ /dev/null @@ -1 +0,0 @@ - Fade Animation - jQuery EasyUI Mobile Demo
Fade Animation
Panel2

Panel2 Content.

\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/animation/pop.html b/vendor/FHC-vendor/easyui/demo-mobile/animation/pop.html deleted file mode 100644 index 6bcebccd1..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/animation/pop.html +++ /dev/null @@ -1 +0,0 @@ - Pop Animation - jQuery EasyUI Mobile Demo
Pop Animation
Panel2

Panel2 Content.

\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/animation/slide.html b/vendor/FHC-vendor/easyui/demo-mobile/animation/slide.html deleted file mode 100644 index 4528d68c8..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/animation/slide.html +++ /dev/null @@ -1 +0,0 @@ - Slide Animation - jQuery EasyUI Mobile Demo
Panel2

Panel2 Content.

\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/badge/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/badge/basic.html deleted file mode 100644 index 6f9cdc6a9..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/badge/basic.html +++ /dev/null @@ -1 +0,0 @@ - Basic Badge - jQuery EasyUI Mobile Demo \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/badge/button.html b/vendor/FHC-vendor/easyui/demo-mobile/badge/button.html deleted file mode 100644 index db5d5310f..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/badge/button.html +++ /dev/null @@ -1 +0,0 @@ - Button Badge - jQuery EasyUI Mobile Demo \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/badge/list.html b/vendor/FHC-vendor/easyui/demo-mobile/badge/list.html deleted file mode 100644 index c06f18b3c..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/badge/list.html +++ /dev/null @@ -1 +0,0 @@ - List Badge - jQuery EasyUI Mobile Demo
List Badge
  • Large
    234
  • Spotted Adult Female
    215
  • Venomless
    12
  • Rattleless
    6
  • Green Adult
  • Tailless
  • With tail
  • Adult Female
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/badge/tabs.html b/vendor/FHC-vendor/easyui/demo-mobile/badge/tabs.html deleted file mode 100644 index 51cd85977..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/badge/tabs.html +++ /dev/null @@ -1 +0,0 @@ - Tabs Badge - jQuery EasyUI Mobile Demo
Tabs Badge

Modem

A modem (modulator-demodulator) is a device that modulates an analog carrier signal to encode digital information, and also demodulates such a carrier signal to decode the transmitted information.


Scanner

In computing, an image scanner—often abbreviated to just scanner—is a device that optically scans images, printed text, handwriting, or an object, and converts it to a digital image.


Pda 23

A personal digital assistant (PDA), also known as a palmtop computer, or personal data assistant, is a mobile device that functions as a personal information manager. PDAs are largely considered obsolete with the widespread adoption of smartphones.


Pda 13

A tablet computer, or simply tablet, is a one-piece mobile computer. Devices typically have a touchscreen, with finger or stylus gestures replacing the conventional computer mouse.

\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/button/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/button/basic.html deleted file mode 100644 index f5f525563..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/button/basic.html +++ /dev/null @@ -1 +0,0 @@ - Basic LinkButton - jQuery EasyUI Mobile Demo
Login to System
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/button/group.html b/vendor/FHC-vendor/easyui/demo-mobile/button/group.html deleted file mode 100644 index 8bd165da9..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/button/group.html +++ /dev/null @@ -1 +0,0 @@ - Group LinkButton - jQuery EasyUI Mobile Demo
Button Group

A modem (modulator-demodulator) is a device that modulates an analog carrier signal to encode digital information, and also demodulates such a carrier signal to decode the transmitted information.

\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/button/style.html b/vendor/FHC-vendor/easyui/demo-mobile/button/style.html deleted file mode 100644 index 66620940a..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/button/style.html +++ /dev/null @@ -1 +0,0 @@ - Button Style - jQuery EasyUI Mobile Demo \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/button/switch.html b/vendor/FHC-vendor/easyui/demo-mobile/button/switch.html deleted file mode 100644 index f2e128e34..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/button/switch.html +++ /dev/null @@ -1 +0,0 @@ - Switch Button - jQuery EasyUI Mobile Demo
Switch Button
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/datagrid/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/datagrid/basic.html deleted file mode 100644 index d81c652de..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/datagrid/basic.html +++ /dev/null @@ -1 +0,0 @@ - Basic DataGrid - jQuery EasyUI Mobile Demo
Item ID Product List Price Unit Cost
Basic DataGrid
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/datagrid/rowediting.html b/vendor/FHC-vendor/easyui/demo-mobile/datagrid/rowediting.html deleted file mode 100644 index b00faac7f..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/datagrid/rowediting.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - Row Editing DataGrid - jQuery EasyUI Mobile Demo - - - - - - - - - - - - - - - - - -
Item IDProductList PriceUnit Cost
-
-
-
Row Editing
-
- - - -
-
-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/datalist/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/datalist/basic.html deleted file mode 100644 index 33f5e5bc5..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/datalist/basic.html +++ /dev/null @@ -1 +0,0 @@ - Basic DataList - jQuery EasyUI Mobile Demo
Basic DataList
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/datalist/group.html b/vendor/FHC-vendor/easyui/demo-mobile/datalist/group.html deleted file mode 100644 index d9e644352..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/datalist/group.html +++ /dev/null @@ -1 +0,0 @@ - Group DataList - jQuery EasyUI Mobile Demo
Group DataList
Detail
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/datalist/selection.html b/vendor/FHC-vendor/easyui/demo-mobile/datalist/selection.html deleted file mode 100644 index 06b262303..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/datalist/selection.html +++ /dev/null @@ -1 +0,0 @@ - DataList Selection - jQuery EasyUI Mobile Demo
DataList Selection
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/dialog/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/dialog/basic.html deleted file mode 100644 index 64a2aa525..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/dialog/basic.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - Basic Dialog - jQuery EasyUI Mobile Demo - - - - - - - - -
-
-
-
Basic Dialog
-
-
- -
- Login -
- -
-
- -
-
- -
-
- Sign in -
-
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/dialog/message.html b/vendor/FHC-vendor/easyui/demo-mobile/dialog/message.html deleted file mode 100644 index ffaf1ef50..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/dialog/message.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - Message Dialog - jQuery EasyUI Mobile Demo - - - - - - - - -
-
-
-
Message Dialog
-
-
- -
- Click me -
- -
-

This is a message dialog.

-
- OK -
-
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/form/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/form/basic.html deleted file mode 100644 index a0835ec65..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/form/basic.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - Basic Form - jQuery EasyUI Mobile Demo - - - - - - - - -
-
-
-
Basic Form
-
- Reset -
-
-
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/images/login1.jpg b/vendor/FHC-vendor/easyui/demo-mobile/images/login1.jpg deleted file mode 100644 index e9faa8089..000000000 Binary files a/vendor/FHC-vendor/easyui/demo-mobile/images/login1.jpg and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/demo-mobile/images/modem.png b/vendor/FHC-vendor/easyui/demo-mobile/images/modem.png deleted file mode 100644 index be5a2eb2f..000000000 Binary files a/vendor/FHC-vendor/easyui/demo-mobile/images/modem.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/demo-mobile/images/more.png b/vendor/FHC-vendor/easyui/demo-mobile/images/more.png deleted file mode 100644 index 94922a2c8..000000000 Binary files a/vendor/FHC-vendor/easyui/demo-mobile/images/more.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/demo-mobile/images/pda.png b/vendor/FHC-vendor/easyui/demo-mobile/images/pda.png deleted file mode 100644 index 1458d9bfa..000000000 Binary files a/vendor/FHC-vendor/easyui/demo-mobile/images/pda.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/demo-mobile/images/scanner.png b/vendor/FHC-vendor/easyui/demo-mobile/images/scanner.png deleted file mode 100644 index 974635d94..000000000 Binary files a/vendor/FHC-vendor/easyui/demo-mobile/images/scanner.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/demo-mobile/images/tablet.png b/vendor/FHC-vendor/easyui/demo-mobile/images/tablet.png deleted file mode 100644 index fa871f540..000000000 Binary files a/vendor/FHC-vendor/easyui/demo-mobile/images/tablet.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/demo-mobile/input/numberspinner.html b/vendor/FHC-vendor/easyui/demo-mobile/input/numberspinner.html deleted file mode 100644 index aab3f96d2..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/input/numberspinner.html +++ /dev/null @@ -1 +0,0 @@ - NumberSpinner - jQuery EasyUI Mobile Demo
NumberSpinner
  • Basic Number
  • Increment Number
  • Format Number
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/input/textbox.html b/vendor/FHC-vendor/easyui/demo-mobile/input/textbox.html deleted file mode 100644 index 733884760..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/input/textbox.html +++ /dev/null @@ -1 +0,0 @@ - TextBox - jQuery EasyUI Mobile Demo
TextBox
  • Standard TextBox
  • Icon
  • Button
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/layout/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/layout/basic.html deleted file mode 100644 index 3f4c00d28..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/layout/basic.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - Basic Layout - jQuery EasyUI Mobile Demo - - - - - - - - -
-
-
-
Layout
-
- Back -
-
- Search -
-
-
-
- -
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/menu/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/menu/basic.html deleted file mode 100644 index 1697edeb6..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/menu/basic.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - Basic Menu - jQuery EasyUI Mobile Demo - - - - - - - - -
-
-
-
Menu
-
- - -
-
-
-
-
-
Undo
-
Redo
- -
Cut
-
Copy
-
Paste
- -
Toolbar
-
Delete
-
Select All
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/menu/menubar.html b/vendor/FHC-vendor/easyui/demo-mobile/menu/menubar.html deleted file mode 100644 index 488963ff8..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/menu/menubar.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - Menubar - jQuery EasyUI Mobile Demo - - - - - - - - -
-
-
-
- Home - Edit - Help - About -
-
-
-
-
-
Undo
-
Redo
- -
Cut
-
Copy
-
Paste
- -
Toolbar
-
Delete
-
Select All
-
-
-
Help
-
Update
-
About
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/panel/_content.html b/vendor/FHC-vendor/easyui/demo-mobile/panel/_content.html deleted file mode 100644 index f7b8e2ee7..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/panel/_content.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - AJAX Content - - -

Here is the content loaded via AJAX.

-
    -
  • easyui is a collection of user-interface plugin based on jQuery.
  • -
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • -
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • -
  • complete framework for HTML5 web page.
  • -
  • easyui save your time and scales while developing your products.
  • -
  • easyui is very easy but powerful.
  • -
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/panel/ajax.html b/vendor/FHC-vendor/easyui/demo-mobile/panel/ajax.html deleted file mode 100644 index e4b4f2de3..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/panel/ajax.html +++ /dev/null @@ -1 +0,0 @@ - Ajax Panel - jQuery EasyUI Mobile Demo
Ajax Panel
Panel Footer
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/panel/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/panel/basic.html deleted file mode 100644 index 407a2f32c..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/panel/basic.html +++ /dev/null @@ -1 +0,0 @@ - Basic Panel - jQuery EasyUI Mobile Demo
Panel Header
Panel Footer
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/panel/nav.html b/vendor/FHC-vendor/easyui/demo-mobile/panel/nav.html deleted file mode 100644 index 52ee902e8..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/panel/nav.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - Navigation Panel - jQuery EasyUI Mobile Demo - - - - - - - - -
-
-
-
Navigation
-
-
- -
-
-
-
-
Panel2
-
- Back -
-
-
-
- Go Back -
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/simplelist/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/simplelist/basic.html deleted file mode 100644 index 906d94261..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/simplelist/basic.html +++ /dev/null @@ -1 +0,0 @@ - Simple List - jQuery EasyUI Mobile Demo
Simple List
  • Large
  • Spotted Adult Female
  • Venomless
  • Rattleless
  • Green Adult
  • Tailless
  • With tail
  • Adult Female
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/simplelist/button.html b/vendor/FHC-vendor/easyui/demo-mobile/simplelist/button.html deleted file mode 100644 index f326ba970..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/simplelist/button.html +++ /dev/null @@ -1 +0,0 @@ - Button on List - jQuery EasyUI Mobile Demo
Button on List
  • HP Deskjet 1000 Printer
    Add
  • Epson WorkForce 845
    Add
  • Logitech Keyboard K120
    Add
  • Nikon COOLPIX L26 16.1 MP
    Add
  • SanDisk Sansa Clip Zip 4GB
    Add
  • BLUE MP3 Metal Mini Clip Player
    Add
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/simplelist/group.html b/vendor/FHC-vendor/easyui/demo-mobile/simplelist/group.html deleted file mode 100644 index e64c2e4aa..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/simplelist/group.html +++ /dev/null @@ -1 +0,0 @@ - Group List - jQuery EasyUI Mobile Demo
Detail
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/simplelist/image.html b/vendor/FHC-vendor/easyui/demo-mobile/simplelist/image.html deleted file mode 100644 index ddf79e592..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/simplelist/image.html +++ /dev/null @@ -1 +0,0 @@ - List with Image - jQuery EasyUI Mobile Demo
List with Image
  • modem
    modulates an analog carrier signal to encode digital information.
  • scanner
    scans images, printed text, handwriting, or an object.
  • pda
    A personal digital assistant.
  • tablet
    one-piece mobile computer.
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/simplelist/link.html b/vendor/FHC-vendor/easyui/demo-mobile/simplelist/link.html deleted file mode 100644 index c630576da..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/simplelist/link.html +++ /dev/null @@ -1 +0,0 @@ - Link List - jQuery EasyUI Mobile Demo
Detail
\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/tabs/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/tabs/basic.html deleted file mode 100644 index 4654e1256..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/tabs/basic.html +++ /dev/null @@ -1 +0,0 @@ - Basic Tabs - jQuery EasyUI Mobile Demo

Java is a general-purpose, concurrent, class-based, object-oriented computer programming language that is specifically designed to have as few implementation dependencies as possible.

Java applications are typically compiled to bytecode (class file) that can run on any Java virtual machine (JVM) regardless of computer architecture.

Fortran (previously FORTRAN) is a general-purpose, imperative programming language that is especially suited to numeric computation and scientific computing. Originally developed by IBM at their campus in south San Jose, California[1] in the 1950s for scientific and engineering applications.

Perl is a family of high-level, general-purpose, interpreted, dynamic programming languages. The languages in this family include Perl 5 and Perl 6.

Though Perl is not officially an acronym, there are various backronyms in use, such as: Practical Extraction and Reporting Language. Perl was originally developed by Larry Wall in 1987 as a general-purpose Unix scripting language to make report processing easier. Since then, it has undergone many changes and revisions.

\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/tabs/nav.html b/vendor/FHC-vendor/easyui/demo-mobile/tabs/nav.html deleted file mode 100644 index 061218f35..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/tabs/nav.html +++ /dev/null @@ -1 +0,0 @@ - Navigation Tabs - jQuery EasyUI Mobile Demo
Devices

Modem

A modem (modulator-demodulator) is a device that modulates an analog carrier signal to encode digital information, and also demodulates such a carrier signal to decode the transmitted information.


Scanner

In computing, an image scanner—often abbreviated to just scanner—is a device that optically scans images, printed text, handwriting, or an object, and converts it to a digital image.


Pda

A personal digital assistant (PDA), also known as a palmtop computer, or personal data assistant, is a mobile device that functions as a personal information manager. PDAs are largely considered obsolete with the widespread adoption of smartphones.


Pda

A tablet computer, or simply tablet, is a one-piece mobile computer. Devices typically have a touchscreen, with finger or stylus gestures replacing the conventional computer mouse.

\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/tabs/pill.html b/vendor/FHC-vendor/easyui/demo-mobile/tabs/pill.html deleted file mode 100644 index ead286386..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/tabs/pill.html +++ /dev/null @@ -1 +0,0 @@ - Pill Tabs - jQuery EasyUI Mobile Demo

Java is a general-purpose, concurrent, class-based, object-oriented computer programming language that is specifically designed to have as few implementation dependencies as possible.

Java applications are typically compiled to bytecode (class file) that can run on any Java virtual machine (JVM) regardless of computer architecture.

Fortran (previously FORTRAN) is a general-purpose, imperative programming language that is especially suited to numeric computation and scientific computing. Originally developed by IBM at their campus in south San Jose, California[1] in the 1950s for scientific and engineering applications.

Perl is a family of high-level, general-purpose, interpreted, dynamic programming languages. The languages in this family include Perl 5 and Perl 6.

Though Perl is not officially an acronym, there are various backronyms in use, such as: Practical Extraction and Reporting Language. Perl was originally developed by Larry Wall in 1987 as a general-purpose Unix scripting language to make report processing easier. Since then, it has undergone many changes and revisions.

\ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/toolbar/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/toolbar/basic.html deleted file mode 100644 index 6497d6812..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/toolbar/basic.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - Basic Toolbar - jQuery EasyUI Mobile Demo - - - - - - - - -
-
-
-
Basic Toolbar
-
- Back -
-
- Next -
-
-
-
    -
  • Large
  • -
  • Spotted Adult Female
  • -
  • Venomless
  • -
  • Rattleless
  • -
  • Green Adult
  • -
  • Tailless
  • -
  • With tail
  • -
  • Adult Female
  • -
-
-
-
-
- Detail -
- Back -
-
-
-
- Go Back -
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/toolbar/button.html b/vendor/FHC-vendor/easyui/demo-mobile/toolbar/button.html deleted file mode 100644 index 14366a6f0..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/toolbar/button.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - Toolbar Button - jQuery EasyUI Mobile Demo - - - - - - - - -
-
-
-
Toolbar Button
-
-
- -
    -
  • Large
  • -
  • Spotted Adult Female
  • -
  • Venomless
  • -
  • Rattleless
  • -
  • Green Adult
  • -
  • Tailless
  • -
  • With tail
  • -
  • Adult Female
  • -
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/toolbar/menu.html b/vendor/FHC-vendor/easyui/demo-mobile/toolbar/menu.html deleted file mode 100644 index 5d9e03994..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/toolbar/menu.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - Menu on Toolbar - jQuery EasyUI Mobile Demo - - - - - - - - -
-
-
-
Menu on Toolbar
-
- -
-
- - -
-
-
-
-
Undo
-
Redo
- -
Cut
-
Copy
-
Paste
- -
Toolbar
-
Delete
-
Select All
-
-
    -
  • Large
  • -
  • Spotted Adult Female
  • -
  • Venomless
  • -
  • Rattleless
  • -
  • Green Adult
  • -
  • Tailless
  • -
  • With tail
  • -
  • Adult Female
  • -
-
-
-
-
- Detail -
- Back -
-
-
-
- Go Back -
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/tree/basic.html b/vendor/FHC-vendor/easyui/demo-mobile/tree/basic.html deleted file mode 100644 index 7561c0850..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/tree/basic.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - Basic Tree - jQuery EasyUI Mobile Demo - - - - - - - - -
-
-
-
Basic Tree
-
-
-
    -
  • - My Documents -
      -
    • - Photos -
        -
      • - Friend -
      • -
      • - Wife -
      • -
      • - Company -
      • -
      -
    • -
    • - Program Files -
        -
      • Intel
      • -
      • Java
      • -
      • Microsoft Office
      • -
      • Games
      • -
      -
    • -
    • index.html
    • -
    • about.html
    • -
    • welcome.html
    • -
    -
  • -
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo-mobile/tree/dnd.html b/vendor/FHC-vendor/easyui/demo-mobile/tree/dnd.html deleted file mode 100644 index 91f986006..000000000 --- a/vendor/FHC-vendor/easyui/demo-mobile/tree/dnd.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - Drag Drop Tree Nodes - jQuery EasyUI Mobile Demo - - - - - - - - -
-
-
-
Drag Drop Tree Nodes
-
-
-
    -
  • - My Documents -
      -
    • - Photos -
        -
      • - Friend -
      • -
      • - Wife -
      • -
      • - Company -
      • -
      -
    • -
    • - Program Files -
        -
      • Intel
      • -
      • Java
      • -
      • Microsoft Office
      • -
      • Games
      • -
      -
    • -
    • index.html
    • -
    • about.html
    • -
    • welcome.html
    • -
    -
  • -
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/accordion/_content.html b/vendor/FHC-vendor/easyui/demo/accordion/_content.html deleted file mode 100644 index f7b8e2ee7..000000000 --- a/vendor/FHC-vendor/easyui/demo/accordion/_content.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - AJAX Content - - -

Here is the content loaded via AJAX.

-
    -
  • easyui is a collection of user-interface plugin based on jQuery.
  • -
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • -
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • -
  • complete framework for HTML5 web page.
  • -
  • easyui save your time and scales while developing your products.
  • -
  • easyui is very easy but powerful.
  • -
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/accordion/actions.html b/vendor/FHC-vendor/easyui/demo/accordion/actions.html deleted file mode 100644 index 28935d7fc..000000000 --- a/vendor/FHC-vendor/easyui/demo/accordion/actions.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - Accordion Actions - jQuery EasyUI Demo - - - - - - - -

Accordion Actions

-

Click the buttons below to add or remove accordion items.

-
- Select - Add - Remove -
-
-
-

Accordion for jQuery

-

Accordion is a part of easyui framework for jQuery. It lets you define your accordion component on web page more easily.

-
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/accordion/ajax.html b/vendor/FHC-vendor/easyui/demo/accordion/ajax.html deleted file mode 100644 index 87c1a01c4..000000000 --- a/vendor/FHC-vendor/easyui/demo/accordion/ajax.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - Loading Accordion Content with AJAX - jQuery EasyUI Demo - - - - - - - -

Loading Accordion Content with AJAX

-

Click AJAX panel header to load content via AJAX.

-
-
-
-

Accordion for jQuery

-

Accordion is a part of easyui framework for jQuery. It lets you define your accordion component on web page more easily.

-
-
-

The accordion allows you to provide multiple panels and display one or more at a time. Each panel has built-in support for expanding and collapsing. Clicking on a panel header to expand or collapse that panel body. The panel content can be loaded via ajax by specifying a 'href' property. Users can define a panel to be selected. If it is not specified, then the first panel is taken by default.

-
-
-
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/accordion/basic.html b/vendor/FHC-vendor/easyui/demo/accordion/basic.html deleted file mode 100644 index 1f6c8f53c..000000000 --- a/vendor/FHC-vendor/easyui/demo/accordion/basic.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - Basic Accordion - jQuery EasyUI Demo - - - - - - - -

Basic Accordion

-

Click on panel header to show its content.

-
-
-
-

Accordion for jQuery

-

Accordion is a part of easyui framework for jQuery. It lets you define your accordion component on web page more easily.

-
-
-

The accordion allows you to provide multiple panels and display one or more at a time. Each panel has built-in support for expanding and collapsing. Clicking on a panel header to expand or collapse that panel body. The panel content can be loaded via ajax by specifying a 'href' property. Users can define a panel to be selected. If it is not specified, then the first panel is taken by default.

-
-
-
    -
  • - Foods -
      -
    • - Fruits -
        -
      • apple
      • -
      • orange
      • -
      -
    • -
    • - Vegetables -
        -
      • tomato
      • -
      • carrot
      • -
      • cabbage
      • -
      • potato
      • -
      • lettuce
      • -
      -
    • -
    -
  • -
-
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/accordion/datagrid_data1.json b/vendor/FHC-vendor/easyui/demo/accordion/datagrid_data1.json deleted file mode 100644 index e9a5be2f8..000000000 --- a/vendor/FHC-vendor/easyui/demo/accordion/datagrid_data1.json +++ /dev/null @@ -1,12 +0,0 @@ -{"total":28,"rows":[ - {"productid":"FI-SW-01","productname":"Koi","unitcost":10.00,"status":"P","listprice":36.50,"attr1":"Large","itemid":"EST-1"}, - {"productid":"K9-DL-01","productname":"Dalmation","unitcost":12.00,"status":"P","listprice":18.50,"attr1":"Spotted Adult Female","itemid":"EST-10"}, - {"productid":"RP-SN-01","productname":"Rattlesnake","unitcost":12.00,"status":"P","listprice":38.50,"attr1":"Venomless","itemid":"EST-11"}, - {"productid":"RP-SN-01","productname":"Rattlesnake","unitcost":12.00,"status":"P","listprice":26.50,"attr1":"Rattleless","itemid":"EST-12"}, - {"productid":"RP-LI-02","productname":"Iguana","unitcost":12.00,"status":"P","listprice":35.50,"attr1":"Green Adult","itemid":"EST-13"}, - {"productid":"FL-DSH-01","productname":"Manx","unitcost":12.00,"status":"P","listprice":158.50,"attr1":"Tailless","itemid":"EST-14"}, - {"productid":"FL-DSH-01","productname":"Manx","unitcost":12.00,"status":"P","listprice":83.50,"attr1":"With tail","itemid":"EST-15"}, - {"productid":"FL-DLH-02","productname":"Persian","unitcost":12.00,"status":"P","listprice":23.50,"attr1":"Adult Female","itemid":"EST-16"}, - {"productid":"FL-DLH-02","productname":"Persian","unitcost":12.00,"status":"P","listprice":89.50,"attr1":"Adult Male","itemid":"EST-17"}, - {"productid":"AV-CB-01","productname":"Amazon Parrot","unitcost":92.00,"status":"P","listprice":63.50,"attr1":"Adult Male","itemid":"EST-18"} -]} diff --git a/vendor/FHC-vendor/easyui/demo/accordion/expandable.html b/vendor/FHC-vendor/easyui/demo/accordion/expandable.html deleted file mode 100644 index 8f20f16b9..000000000 --- a/vendor/FHC-vendor/easyui/demo/accordion/expandable.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Keep Expandable Panel in Accordion - jQuery EasyUI Demo - - - - - - - -

Keep Expandable Panel in Accordion

-

Keep a expandable panel and prevent it from collapsing.

-
-
-
- -
-
-

Accordion for jQuery

-

Accordion is a part of easyui framework for jQuery. It lets you define your accordion component on web page more easily.

-
-
-

Content1

-
-
-

Content2

-
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/accordion/fluid.html b/vendor/FHC-vendor/easyui/demo/accordion/fluid.html deleted file mode 100644 index aaeb994af..000000000 --- a/vendor/FHC-vendor/easyui/demo/accordion/fluid.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Fluid Accordion - jQuery EasyUI Demo - - - - - - - -

Fluid Accordion

-

This example shows how to set the width of accordion to a percentage of its parent container.

-
-
-
-

width: 100%

-
-
-
-
-
- -
-
-

width: 50%

-
-
-
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/accordion/multiple.html b/vendor/FHC-vendor/easyui/demo/accordion/multiple.html deleted file mode 100644 index d75bfbc4f..000000000 --- a/vendor/FHC-vendor/easyui/demo/accordion/multiple.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - Multiple Accordion Panels - jQuery EasyUI Demo - - - - - - - -

Multiple Accordion Panels

-

Enable 'multiple' mode to expand multiple panels at one time.

-
-
-
-

A programming language is a formal language designed to communicate instructions to a machine, particularly a computer. Programming languages can be used to create programs that control the behavior of a machine and/or to express algorithms precisely.

-
-
-

Java (Indonesian: Jawa) is an island of Indonesia. With a population of 135 million (excluding the 3.6 million on the island of Madura which is administered as part of the provinces of Java), Java is the world's most populous island, and one of the most densely populated places in the world.

-
-
-

C# is a multi-paradigm programming language encompassing strong typing, imperative, declarative, functional, generic, object-oriented (class-based), and component-oriented programming disciplines.

-
-
-

A dynamic, reflective, general-purpose object-oriented programming language.

-
-
-

Fortran (previously FORTRAN) is a general-purpose, imperative programming language that is especially suited to numeric computation and scientific computing.

-
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/accordion/tools.html b/vendor/FHC-vendor/easyui/demo/accordion/tools.html deleted file mode 100644 index 6351a91e9..000000000 --- a/vendor/FHC-vendor/easyui/demo/accordion/tools.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - Accordion Tools - jQuery EasyUI Demo - - - - - - - -

Accordion Tools

-

Click the tools on top right of panel to perform actions.

-
-
-
-

Accordion for jQuery

-

Accordion is a part of easyui framework for jQuery. It lets you define your accordion component on web page more easily.

-
-
-

The accordion allows you to provide multiple panels and display one ore more at a time. Each panel has built-in support for expanding and collapsing. Clicking on a panel header to expand or collapse that panel body. The panel content can be loaded via ajax by specifying a 'href' property. Users can define a panel to be selected. If it is not specified, then the first panel is taken by default.

-
-
- - - - - - - - - - - -
Item IDProduct IDList PriceUnit CostAttributeStatus
-
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/calendar/basic.html b/vendor/FHC-vendor/easyui/demo/calendar/basic.html deleted file mode 100644 index 9d0d67276..000000000 --- a/vendor/FHC-vendor/easyui/demo/calendar/basic.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - Basic Calendar - jQuery EasyUI Demo - - - - - - - -

Basic Calendar

-

Click to select date.

-
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/calendar/custom.html b/vendor/FHC-vendor/easyui/demo/calendar/custom.html deleted file mode 100644 index 7c570e6ce..000000000 --- a/vendor/FHC-vendor/easyui/demo/calendar/custom.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - Custom Calendar - jQuery EasyUI Demo - - - - - - - -

Custom Calendar

-

This example shows how to custom the calendar date by using 'formatter' function.

-
- -
- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/calendar/disabledate.html b/vendor/FHC-vendor/easyui/demo/calendar/disabledate.html deleted file mode 100644 index 0b1edeb5e..000000000 --- a/vendor/FHC-vendor/easyui/demo/calendar/disabledate.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - Disable Calendar Date - jQuery EasyUI Demo - - - - - - - -

Disable Calendar Date

-

This example shows how to disable specified dates, only allows the user to select Mondays.

-
- -
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/calendar/firstday.html b/vendor/FHC-vendor/easyui/demo/calendar/firstday.html deleted file mode 100644 index dd414c5eb..000000000 --- a/vendor/FHC-vendor/easyui/demo/calendar/firstday.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - First Day of Week - jQuery EasyUI Demo - - - - - - - -

First Day of Week

-

Choose the first day of the week.

- -
- -
- -
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/calendar/fluid.html b/vendor/FHC-vendor/easyui/demo/calendar/fluid.html deleted file mode 100644 index 3ca0fae3b..000000000 --- a/vendor/FHC-vendor/easyui/demo/calendar/fluid.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - Fluid Calendar - jQuery EasyUI Demo - - - - - - - -

Fluid Calendar

-

This example shows how to set the width of calendar to a percentage of its parent container.

-
-
-

width: 50%, height: 250px

-
-

width: 30%, height: 40%

-
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combo/animation.html b/vendor/FHC-vendor/easyui/demo/combo/animation.html deleted file mode 100644 index 4a958e74e..000000000 --- a/vendor/FHC-vendor/easyui/demo/combo/animation.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - Combo Animation - jQuery EasyUI Demo - - - - - - - -

Combo Animation

-

Change the animation type when open & close the drop-down panel.

-
- Animation Type: - -
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combo/basic.html b/vendor/FHC-vendor/easyui/demo/combo/basic.html deleted file mode 100644 index cba9b8dfb..000000000 --- a/vendor/FHC-vendor/easyui/demo/combo/basic.html +++ /dev/null @@ -1,42 +0,0 @@ - - - - - Basic Combo - jQuery EasyUI Demo - - - - - - - -

Basic Combo

-

Click the right arrow button to show drop down panel that can be filled with any content.

-
- -
-
Select a language
-
- Java
- C#
- Ruby
- Basic
- Fortran -
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/actions.html b/vendor/FHC-vendor/easyui/demo/combobox/actions.html deleted file mode 100644 index d2605fc3e..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/actions.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - ComboBox Actions - jQuery EasyUI Demo - - - - - - - -

ComboBox

-

Click the buttons below to perform actions.

- - - - - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/basic.html b/vendor/FHC-vendor/easyui/demo/combobox/basic.html deleted file mode 100644 index bfa2b34ee..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/basic.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - Basic ComboBox - jQuery EasyUI Demo - - - - - - - -

Basic ComboBox

-

Type in ComboBox to try auto complete.

-
- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/combobox_data1.json b/vendor/FHC-vendor/easyui/demo/combobox/combobox_data1.json deleted file mode 100644 index 8bfba76c7..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/combobox_data1.json +++ /dev/null @@ -1,22 +0,0 @@ -[{ - "id":1, - "text":"Java", - "desc":"Write once, run anywhere" -},{ - "id":2, - "text":"C#", - "desc":"One of the programming languages designed for the Common Language Infrastructure" -},{ - "id":3, - "text":"Ruby", - "selected":true, - "desc":"A dynamic, reflective, general-purpose object-oriented programming language" -},{ - "id":4, - "text":"Perl", - "desc":"A high-level, general-purpose, interpreted, dynamic programming language" -},{ - "id":5, - "text":"Basic", - "desc":"A family of general-purpose, high-level programming languages" -}] \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/combobox_data2.json b/vendor/FHC-vendor/easyui/demo/combobox/combobox_data2.json deleted file mode 100644 index fcaca4f05..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/combobox_data2.json +++ /dev/null @@ -1,47 +0,0 @@ -[{ - "value":"f20", - "text":"Firefox 2.0 or higher", - "group":"Firefox" -},{ - "value":"f15", - "text":"Firefox 1.5.x", - "group":"Firefox" -},{ - "value":"f10", - "text":"Firefox 1.0.x", - "group":"Firefox" -},{ - "value":"ie7", - "text":"Microsoft Internet Explorer 7.0 or higher", - "group":"Microsoft Internet Explorer" -},{ - "value":"ie6", - "text":"Microsoft Internet Explorer 6.x", - "group":"Microsoft Internet Explorer" -},{ - "value":"ie5", - "text":"Microsoft Internet Explorer 5.x", - "group":"Microsoft Internet Explorer" -},{ - "value":"ie4", - "text":"Microsoft Internet Explorer 4.x", - "group":"Microsoft Internet Explorer" -},{ - "value":"op9", - "text":"Opera 9.0 or higher", - "group":"Opera" -},{ - "value":"op8", - "text":"Opera 8.x", - "group":"Opera" -},{ - "value":"op7", - "text":"Opera 7.x", - "group":"Opera" -},{ - "value":"Safari", - "text":"Safari" -},{ - "value":"Other", - "text":"Other" -}] \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/customformat.html b/vendor/FHC-vendor/easyui/demo/combobox/customformat.html deleted file mode 100644 index 82664eaea..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/customformat.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Custom Format in ComboBox - jQuery EasyUI Demo - - - - - - - -

Custom Format in ComboBox

-

This sample shows how to custom the format of list item.

-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/dynamicdata.html b/vendor/FHC-vendor/easyui/demo/combobox/dynamicdata.html deleted file mode 100644 index 1857e4821..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/dynamicdata.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - Load Dynamic ComboBox Data - jQuery EasyUI Demo - - - - - - - -

Load Dynamic ComboBox Data

-

Click the button below to load data.

- -
- LoadData -
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/fluid.html b/vendor/FHC-vendor/easyui/demo/combobox/fluid.html deleted file mode 100644 index e621fae84..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/fluid.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - Fluid ComboBox - jQuery EasyUI Demo - - - - - - - -

Fluid ComboBox

-

This example shows how to set the width of combobox to a percentage of its parent container.

-
-

width: 50%

- -

width: 30%

- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/group.html b/vendor/FHC-vendor/easyui/demo/combobox/group.html deleted file mode 100644 index d1431b7f2..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/group.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - Group ComboBox - jQuery EasyUI Demo - - - - - - - -

Group ComboBox

-

This example shows how to display combobox items in groups.

-
- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/icons.html b/vendor/FHC-vendor/easyui/demo/combobox/icons.html deleted file mode 100644 index 4defb0a4f..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/icons.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - ComboBox with Extra Icons- jQuery EasyUI Demo - - - - - - - -

ComboBox with Extra Icons

-

The user can attach extra icons to the ComboBox.

-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/multiline.html b/vendor/FHC-vendor/easyui/demo/combobox/multiline.html deleted file mode 100644 index 2b8d1569d..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/multiline.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - Multiline ComboBox - jQuery EasyUI Demo - - - - - - - -

Multiline ComboBox

-

This example shows how to create a multiline ComboBox.

-
- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/multiple.html b/vendor/FHC-vendor/easyui/demo/combobox/multiple.html deleted file mode 100644 index 3eb2526fb..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/multiple.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - Multiple Select - jQuery EasyUI Demo - - - - - - - -

Load Dynamic ComboBox Data

-

Drop down the panel and select multiple items.

-
- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/navigation.html b/vendor/FHC-vendor/easyui/demo/combobox/navigation.html deleted file mode 100644 index 4299d422f..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/navigation.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - Navigate ComboBox - jQuery EasyUI Demo - - - - - - - -

Navigate ComboBox

-

Navigate through combobox items width keyboard to select an item.

-
- - SelectOnNavigation -
- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/remotedata.html b/vendor/FHC-vendor/easyui/demo/combobox/remotedata.html deleted file mode 100644 index 42dda5d8c..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/remotedata.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - Binding to Remote Data - jQuery EasyUI Demo - - - - - - - -

Binding to Remote Data

-

The ComboBox is bound to a remote data.

-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combobox/remotejsonp.html b/vendor/FHC-vendor/easyui/demo/combobox/remotejsonp.html deleted file mode 100644 index d96285a9f..000000000 --- a/vendor/FHC-vendor/easyui/demo/combobox/remotejsonp.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - Remote JSONP - jQuery EasyUI Demo - - - - - - - -

Remote JSONP

-

This sample shows how to use JSONP to retrieve data from a remote site.

-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combogrid/actions.html b/vendor/FHC-vendor/easyui/demo/combogrid/actions.html deleted file mode 100644 index e09588af8..000000000 --- a/vendor/FHC-vendor/easyui/demo/combogrid/actions.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - ComboGrid Actions - jQuery EasyUI Demo - - - - - - - -

ComboGrid Actions

-

Click the buttons below to perform actions.

- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combogrid/basic.html b/vendor/FHC-vendor/easyui/demo/combogrid/basic.html deleted file mode 100644 index 9c71e5228..000000000 --- a/vendor/FHC-vendor/easyui/demo/combogrid/basic.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - Basic ComboGrid - jQuery EasyUI Demo - - - - - - - -

Basic ComboGrid

-

Click the right arrow button to show the DataGrid.

-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combogrid/datagrid_data1.json b/vendor/FHC-vendor/easyui/demo/combogrid/datagrid_data1.json deleted file mode 100644 index 3a62a71f3..000000000 --- a/vendor/FHC-vendor/easyui/demo/combogrid/datagrid_data1.json +++ /dev/null @@ -1,12 +0,0 @@ -{"total":28,"rows":[ - {"productid":"FI-SW-01","productname":"Koi","unitcost":10.00,"status":"P","listprice":36.50,"attr1":"Large","itemid":"EST-1"}, - {"productid":"K9-DL-01","productname":"Dalmation","unitcost":12.00,"status":"P","listprice":18.50,"attr1":"Spotted Adult Female","itemid":"EST-10"}, - {"productid":"RP-SN-01","productname":"Rattlesnake","unitcost":12.00,"status":"P","listprice":38.50,"attr1":"Venomless","itemid":"EST-11"}, - {"productid":"RP-SN-01","productname":"Rattlesnake","unitcost":12.00,"status":"P","listprice":26.50,"attr1":"Rattleless","itemid":"EST-12"}, - {"selected":true,"productid":"RP-LI-02","productname":"Iguana","unitcost":12.00,"status":"P","listprice":35.50,"attr1":"Green Adult","itemid":"EST-13"}, - {"productid":"FL-DSH-01","productname":"Manx","unitcost":12.00,"status":"P","listprice":158.50,"attr1":"Tailless","itemid":"EST-14"}, - {"productid":"FL-DSH-01","productname":"Manx","unitcost":12.00,"status":"P","listprice":83.50,"attr1":"With tail","itemid":"EST-15"}, - {"productid":"FL-DLH-02","productname":"Persian","unitcost":12.00,"status":"P","listprice":23.50,"attr1":"Adult Female","itemid":"EST-16"}, - {"productid":"FL-DLH-02","productname":"Persian","unitcost":12.00,"status":"P","listprice":89.50,"attr1":"Adult Male","itemid":"EST-17"}, - {"productid":"AV-CB-01","productname":"Amazon Parrot","unitcost":92.00,"status":"P","listprice":63.50,"attr1":"Adult Male","itemid":"EST-18"} -]} diff --git a/vendor/FHC-vendor/easyui/demo/combogrid/fluid.html b/vendor/FHC-vendor/easyui/demo/combogrid/fluid.html deleted file mode 100644 index edf7fdb80..000000000 --- a/vendor/FHC-vendor/easyui/demo/combogrid/fluid.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - Fluid ComboGrid - jQuery EasyUI Demo - - - - - - - -

Fluid ComboGrid

-

This example shows how to set the width of ComboGrid to a percentage of its parent container.

-
-

width: 50%

- -

width: 30%

- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combogrid/initvalue.html b/vendor/FHC-vendor/easyui/demo/combogrid/initvalue.html deleted file mode 100644 index b88f2456b..000000000 --- a/vendor/FHC-vendor/easyui/demo/combogrid/initvalue.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Initialize Value for ComboGrid - jQuery EasyUI Demo - - - - - - - -

Initialize Value for ComboGrid

-

Initialize value when ComboGrid is created.

-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combogrid/multiple.html b/vendor/FHC-vendor/easyui/demo/combogrid/multiple.html deleted file mode 100644 index 8f9cc80c1..000000000 --- a/vendor/FHC-vendor/easyui/demo/combogrid/multiple.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - Multiple ComboGrid - jQuery EasyUI Demo - - - - - - - -

Multiple ComboGrid

-

Click the right arrow button to show the DataGrid and select items.

-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combogrid/navigation.html b/vendor/FHC-vendor/easyui/demo/combogrid/navigation.html deleted file mode 100644 index 646ba82be..000000000 --- a/vendor/FHC-vendor/easyui/demo/combogrid/navigation.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - Navigate ComboGrid - jQuery EasyUI Demo - - - - - - - -

Navigate ComboGrid

-

Navigate through grid items with keyboard to select an item.

-
- - SelectOnNavigation -
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combogrid/setvalue.html b/vendor/FHC-vendor/easyui/demo/combogrid/setvalue.html deleted file mode 100644 index 4b3effda0..000000000 --- a/vendor/FHC-vendor/easyui/demo/combogrid/setvalue.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - Set Value for ComboGrid - jQuery EasyUI Demo - - - - - - - -

Set Value for ComboGrid

-

Click the buttons below to perform actions.

- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combotree/actions.html b/vendor/FHC-vendor/easyui/demo/combotree/actions.html deleted file mode 100644 index d5d86a3ae..000000000 --- a/vendor/FHC-vendor/easyui/demo/combotree/actions.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - ComboTree Actions - jQuery EasyUI Demo - - - - - - - -

ComboTree Actions

-

Click the buttons below to perform actions

- - - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combotree/basic.html b/vendor/FHC-vendor/easyui/demo/combotree/basic.html deleted file mode 100644 index c168d7af5..000000000 --- a/vendor/FHC-vendor/easyui/demo/combotree/basic.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - Basic ComboTree - jQuery EasyUI Demo - - - - - - - -

Basic ComboTree

-

Click the right arrow button to show the tree panel.

-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combotree/fluid.html b/vendor/FHC-vendor/easyui/demo/combotree/fluid.html deleted file mode 100644 index be131de4e..000000000 --- a/vendor/FHC-vendor/easyui/demo/combotree/fluid.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - Fluid ComboTree - jQuery EasyUI Demo - - - - - - - -

Fluid ComboTree

-

This example shows how to set the width of ComboTree to a percentage of its parent container.

-
-

width: 50%

- -

width: 30%, height: 26px

- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combotree/initvalue.html b/vendor/FHC-vendor/easyui/demo/combotree/initvalue.html deleted file mode 100644 index a5ac8a8ab..000000000 --- a/vendor/FHC-vendor/easyui/demo/combotree/initvalue.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - Initialize Value for ComboTree - jQuery EasyUI Demo - - - - - - - -

Initialize Value for ComboTree

-

Initialize Value when ComboTree is created.

-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combotree/multiple.html b/vendor/FHC-vendor/easyui/demo/combotree/multiple.html deleted file mode 100644 index 704e86e4b..000000000 --- a/vendor/FHC-vendor/easyui/demo/combotree/multiple.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - Multiple ComboTree - jQuery EasyUI Demo - - - - - - - -

Multiple ComboTree

-

Click the right arrow button to show the tree panel and select multiple nodes.

-
- Cascade Check: - -
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/combotree/tree_data1.json b/vendor/FHC-vendor/easyui/demo/combotree/tree_data1.json deleted file mode 100644 index 83fb0d619..000000000 --- a/vendor/FHC-vendor/easyui/demo/combotree/tree_data1.json +++ /dev/null @@ -1,49 +0,0 @@ -[{ - "id":1, - "text":"My Documents", - "children":[{ - "id":11, - "text":"Photos", - "state":"closed", - "children":[{ - "id":111, - "text":"Friend" - },{ - "id":112, - "text":"Wife" - },{ - "id":113, - "text":"Company" - }] - },{ - "id":12, - "text":"Program Files", - "children":[{ - "id":121, - "text":"Intel" - },{ - "id":122, - "text":"Java", - "attributes":{ - "p1":"Custom Attribute1", - "p2":"Custom Attribute2" - } - },{ - "id":123, - "text":"Microsoft Office" - },{ - "id":124, - "text":"Games", - "checked":true - }] - },{ - "id":13, - "text":"index.html" - },{ - "id":14, - "text":"about.html" - },{ - "id":15, - "text":"welcome.html" - }] -}] diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/aligncolumns.html b/vendor/FHC-vendor/easyui/demo/datagrid/aligncolumns.html deleted file mode 100644 index cc86de670..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/aligncolumns.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Aligning Columns in DataGrid - jQuery EasyUI Demo - - - - - - - -

Aligning Columns in DataGrid

-

Use align and halign properties to set the alignment of the columns and their header.

-
- - - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/basic.html b/vendor/FHC-vendor/easyui/demo/datagrid/basic.html deleted file mode 100644 index 8dcc2f346..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/basic.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Basic DataGrid - jQuery EasyUI Demo - - - - - - - -

Basic DataGrid

-

The DataGrid is created from markup, no JavaScript code needed.

-
- - - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/cacheeditor.html b/vendor/FHC-vendor/easyui/demo/datagrid/cacheeditor.html deleted file mode 100644 index c793c427f..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/cacheeditor.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - Cache Editor for DataGrid - jQuery EasyUI Demo - - - - - - - -

Cache Editor for DataGrid

-

This example shows how to cache the editors for datagrid to improve the editing speed.

-
- - - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
- - - - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/cellediting.html b/vendor/FHC-vendor/easyui/demo/datagrid/cellediting.html deleted file mode 100644 index b971c2533..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/cellediting.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - Cell Editing in DataGrid - jQuery EasyUI Demo - - - - - - - -

Cell Editing in DataGrid

-

Click a cell to start editing.

-
- - - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/cellstyle.html b/vendor/FHC-vendor/easyui/demo/datagrid/cellstyle.html deleted file mode 100644 index 3140fa363..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/cellstyle.html +++ /dev/null @@ -1,42 +0,0 @@ - - - - - DataGrid Cell Style - jQuery EasyUI Demo - - - - - - - -

DataGrid Cell Style

-

The cells which listprice value is less than 30 are highlighted.

-
- - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/checkbox.html b/vendor/FHC-vendor/easyui/demo/datagrid/checkbox.html deleted file mode 100644 index 3ea251d5e..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/checkbox.html +++ /dev/null @@ -1,42 +0,0 @@ - - - - - CheckBox Selection on DataGrid - jQuery EasyUI Demo - - - - - - - -

CheckBox Selection on DataGrid

-

Click the checkbox on header to select or unselect all selections.

-
- - - - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
-
- Selection Mode: -
- SelectOnCheck:
- CheckOnSelect: -
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/clientpagination.html b/vendor/FHC-vendor/easyui/demo/datagrid/clientpagination.html deleted file mode 100644 index 7b63b78fc..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/clientpagination.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - Client Side Pagination in DataGrid - jQuery EasyUI Demo - - - - - - - -

Client Side Pagination in DataGrid

-

This sample shows how to implement client side pagination in DataGrid.

-
- - - - - - - - - - - - - -
Inv NoDateNameAmountPriceCostNote
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/columngroup.html b/vendor/FHC-vendor/easyui/demo/datagrid/columngroup.html deleted file mode 100644 index af8f0f960..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/columngroup.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - Column Group - jQuery EasyUI Demo - - - - - - - -

Column Group

-

The header cells can be merged. Useful to group columns under a category.

-
- - - - - - - - - - - - - - -
Item IDProductItem Details
List PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/complextoolbar.html b/vendor/FHC-vendor/easyui/demo/datagrid/complextoolbar.html deleted file mode 100644 index 2ee44a58b..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/complextoolbar.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - DataGrid Complex Toolbar - jQuery EasyUI Demo - - - - - - - -

DataGrid Complex Toolbar

-

The DataGrid toolbar can be defined from a <div> markup, so you can define the layout of toolbar easily.

-
- - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
-
- Date From: - To: - Language: - - Search -
-
- - - - - -
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/contextmenu.html b/vendor/FHC-vendor/easyui/demo/datagrid/contextmenu.html deleted file mode 100644 index e9a64faea..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/contextmenu.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - Context Menu on DataGrid - jQuery EasyUI Demo - - - - - - - -

Context Menu on DataGrid

-

Right click on the header of DataGrid to display context menu.

-
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/custompager.html b/vendor/FHC-vendor/easyui/demo/datagrid/custompager.html deleted file mode 100644 index baa66a422..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/custompager.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - Custom DataGrid Pager - jQuery EasyUI Demo - - - - - - - -

Custom DataGrid Pager

-

You can append some buttons to the standard datagrid pager bar.

-
- - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/datagrid_data1.json b/vendor/FHC-vendor/easyui/demo/datagrid/datagrid_data1.json deleted file mode 100644 index e9a5be2f8..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/datagrid_data1.json +++ /dev/null @@ -1,12 +0,0 @@ -{"total":28,"rows":[ - {"productid":"FI-SW-01","productname":"Koi","unitcost":10.00,"status":"P","listprice":36.50,"attr1":"Large","itemid":"EST-1"}, - {"productid":"K9-DL-01","productname":"Dalmation","unitcost":12.00,"status":"P","listprice":18.50,"attr1":"Spotted Adult Female","itemid":"EST-10"}, - {"productid":"RP-SN-01","productname":"Rattlesnake","unitcost":12.00,"status":"P","listprice":38.50,"attr1":"Venomless","itemid":"EST-11"}, - {"productid":"RP-SN-01","productname":"Rattlesnake","unitcost":12.00,"status":"P","listprice":26.50,"attr1":"Rattleless","itemid":"EST-12"}, - {"productid":"RP-LI-02","productname":"Iguana","unitcost":12.00,"status":"P","listprice":35.50,"attr1":"Green Adult","itemid":"EST-13"}, - {"productid":"FL-DSH-01","productname":"Manx","unitcost":12.00,"status":"P","listprice":158.50,"attr1":"Tailless","itemid":"EST-14"}, - {"productid":"FL-DSH-01","productname":"Manx","unitcost":12.00,"status":"P","listprice":83.50,"attr1":"With tail","itemid":"EST-15"}, - {"productid":"FL-DLH-02","productname":"Persian","unitcost":12.00,"status":"P","listprice":23.50,"attr1":"Adult Female","itemid":"EST-16"}, - {"productid":"FL-DLH-02","productname":"Persian","unitcost":12.00,"status":"P","listprice":89.50,"attr1":"Adult Male","itemid":"EST-17"}, - {"productid":"AV-CB-01","productname":"Amazon Parrot","unitcost":92.00,"status":"P","listprice":63.50,"attr1":"Adult Male","itemid":"EST-18"} -]} diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/datagrid_data2.json b/vendor/FHC-vendor/easyui/demo/datagrid/datagrid_data2.json deleted file mode 100644 index 4a27e1434..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/datagrid_data2.json +++ /dev/null @@ -1,15 +0,0 @@ -{"total":28,"rows":[ - {"productid":"FI-SW-01","unitcost":10.00,"status":"P","listprice":36.50,"attr1":"Large","itemid":"EST-1"}, - {"productid":"K9-DL-01","unitcost":12.00,"status":"P","listprice":18.50,"attr1":"Spotted Adult Female","itemid":"EST-10"}, - {"productid":"RP-SN-01","unitcost":12.00,"status":"P","listprice":28.50,"attr1":"Venomless","itemid":"EST-11"}, - {"productid":"RP-SN-01","unitcost":12.00,"status":"P","listprice":26.50,"attr1":"Rattleless","itemid":"EST-12"}, - {"productid":"RP-LI-02","unitcost":12.00,"status":"P","listprice":35.50,"attr1":"Green Adult","itemid":"EST-13"}, - {"productid":"FL-DSH-01","unitcost":12.00,"status":"P","listprice":158.50,"attr1":"Tailless","itemid":"EST-14"}, - {"productid":"FL-DSH-01","unitcost":12.00,"status":"P","listprice":83.50,"attr1":"With tail","itemid":"EST-15"}, - {"productid":"FL-DLH-02","unitcost":12.00,"status":"P","listprice":63.50,"attr1":"Adult Female","itemid":"EST-16"}, - {"productid":"FL-DLH-02","unitcost":12.00,"status":"P","listprice":89.50,"attr1":"Adult Male","itemid":"EST-17"}, - {"productid":"AV-CB-01","unitcost":92.00,"status":"P","listprice":63.50,"attr1":"Adult Male","itemid":"EST-18"} -],"footer":[ - {"unitcost":19.80,"listprice":60.40,"productid":"Average:"}, - {"unitcost":198.00,"listprice":604.00,"productid":"Total:"} -]} diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/fluid.html b/vendor/FHC-vendor/easyui/demo/datagrid/fluid.html deleted file mode 100644 index b67e9ca66..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/fluid.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Fluid DataGrid - jQuery EasyUI Demo - - - - - - - -

Fluid DataGrid

-

This example shows how to assign percentage width to a column in DataGrid.

-
- - - - - - - - - - - - -
Item ID(15%)Product(15%)List Price(15%)Unit Cost(15%)Attribute(25%)Status(15%)
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/footer.html b/vendor/FHC-vendor/easyui/demo/datagrid/footer.html deleted file mode 100644 index 53a3fbd9e..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/footer.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - Footer Rows in DataGrid - jQuery EasyUI Demo - - - - - - - -

Footer Rows in DataGrid

-

The summary informations can be displayed in footer rows.

-
- - - - - - - - - - - -
Item IDProduct IDList PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/formatcolumns.html b/vendor/FHC-vendor/easyui/demo/datagrid/formatcolumns.html deleted file mode 100644 index c2b007651..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/formatcolumns.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - Format DataGrid Columns - jQuery EasyUI Demo - - - - - - - -

Format DataGrid Columns

-

The list price value will show red color when less than 30.

-
- - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/frozencolumns.html b/vendor/FHC-vendor/easyui/demo/datagrid/frozencolumns.html deleted file mode 100644 index 2bc21b1fc..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/frozencolumns.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - Frozen Columns in DataGrid - jQuery EasyUI Demo - - - - - - - -

Frozen Columns in DataGrid

-

You can freeze some columns that can't scroll out of view.

-
- - - - - - - - - - - - - - - -
Item IDProduct
List PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/frozenrows.html b/vendor/FHC-vendor/easyui/demo/datagrid/frozenrows.html deleted file mode 100644 index 72310dd07..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/frozenrows.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - - Frozen Rows in DataGrid - jQuery EasyUI Demo - - - - - - - -

Frozen Rows in DataGrid

-

This sample shows how to freeze some rows that will always be displayed at the top when the datagrid is scrolled down.

-
- - - - - - - - - - - - - - - -
Item IDProduct
List PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/mergecells.html b/vendor/FHC-vendor/easyui/demo/datagrid/mergecells.html deleted file mode 100644 index a50f93466..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/mergecells.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - Merge Cells for DataGrid - jQuery EasyUI Demo - - - - - - - -

Merge Cells for DataGrid

-

Cells in DataGrid body can be merged.

-
- - - - - - - - - - - -
ProductItem IDList PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/multisorting.html b/vendor/FHC-vendor/easyui/demo/datagrid/multisorting.html deleted file mode 100644 index a04c3eff6..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/multisorting.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - Multiple Sorting - jQuery EasyUI Demo - - - - - - - -

Multiple Sorting

-

Set 'multiSort' property to true to enable multiple column sorting.

-
- - - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/products.json b/vendor/FHC-vendor/easyui/demo/datagrid/products.json deleted file mode 100644 index 2c512bcf6..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/products.json +++ /dev/null @@ -1,9 +0,0 @@ -[ -{"productid":"FI-SW-01","productname":"Koi"}, -{"productid":"K9-DL-01","productname":"Dalmation"}, -{"productid":"RP-SN-01","productname":"Rattlesnake"}, -{"productid":"RP-LI-02","productname":"Iguana"}, -{"productid":"FL-DSH-01","productname":"Manx"}, -{"productid":"FL-DLH-02","productname":"Persian"}, -{"productid":"AV-CB-01","productname":"Amazon Parrot"} -] diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/rowborder.html b/vendor/FHC-vendor/easyui/demo/datagrid/rowborder.html deleted file mode 100644 index 24a18b71f..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/rowborder.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - Row Border in DataGrid - jQuery EasyUI Demo - - - - - - - -

Row Border in DataGrid

-

This sample shows how to change the row border style of datagrid.

-
- Border: - - Striped: - -
- - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/rowediting.html b/vendor/FHC-vendor/easyui/demo/datagrid/rowediting.html deleted file mode 100644 index ab8c4d1d4..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/rowediting.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - Row Editing in DataGrid - jQuery EasyUI Demo - - - - - - - -

Row Editing in DataGrid

-

Click the row to start editing.

-
- - - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
- - - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/rowstyle.html b/vendor/FHC-vendor/easyui/demo/datagrid/rowstyle.html deleted file mode 100644 index d65a5c805..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/rowstyle.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - DataGrid Row Style - jQuery EasyUI Demo - - - - - - - -

DataGrid Row Style

-

The rows which listprice value is less than 30 are highlighted.

-
- - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/selection.html b/vendor/FHC-vendor/easyui/demo/datagrid/selection.html deleted file mode 100644 index 111856143..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/selection.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - - DataGrid Selection - jQuery EasyUI Demo - - - - - - - -

DataGrid Selection

-

Choose a selection mode and select one or more rows.

- - - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
-
- Selection Mode: - -
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/simpletoolbar.html b/vendor/FHC-vendor/easyui/demo/datagrid/simpletoolbar.html deleted file mode 100644 index cbb918b85..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/simpletoolbar.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - DataGrid with Toolbar - jQuery EasyUI Demo - - - - - - - -

DataGrid with Toolbar

-

Put buttons on top toolbar of DataGrid.

-
- - - - - - - - - - - -
Item IDProductList PriceUnit CostAttributeStatus
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datagrid/transform.html b/vendor/FHC-vendor/easyui/demo/datagrid/transform.html deleted file mode 100644 index ddc3a3049..000000000 --- a/vendor/FHC-vendor/easyui/demo/datagrid/transform.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - Transform DataGrid from Table - jQuery EasyUI Demo - - - - - - - -

Transform DataGrid from Table

-

Transform DataGrid from an existing, unformatted html table.

-
- Transform -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Item IDProductList PriceAttribute
EST-1FI-SW-0136.50Large
EST-10K9-DL-0118.50Spotted Adult Female
EST-11RP-SN-0128.50Venomless
EST-12RP-SN-0126.50Rattleless
EST-13RP-LI-0235.50Green Adult
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datalist/basic.html b/vendor/FHC-vendor/easyui/demo/datalist/basic.html deleted file mode 100644 index 491021908..000000000 --- a/vendor/FHC-vendor/easyui/demo/datalist/basic.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - Basic DataList - jQuery EasyUI Demo - - - - - - - -

Basic DataList

-

The DataList can be created from the <ul> element.

-
-
    -
  • Alabama
  • -
  • Alaska
  • -
  • Arizona
  • -
  • Arkansas
  • -
  • California
  • -
  • Colorado
  • -
  • Connecticut
  • -
  • Delaware
  • -
  • Florida
  • -
  • Georgia
  • -
  • Hawaii
  • -
  • Idaho
  • -
  • Illinois
  • -
  • Indiana
  • -
  • Iowa
  • -
  • Kansas
  • -
  • Kentucky
  • -
  • Louisiana
  • -
  • Maine
  • -
  • Maryland
  • -
  • Massachusetts
  • -
  • Michigan
  • -
  • Minnesota
  • -
  • Mississippi
  • -
  • Missouri
  • -
  • Montana
  • -
  • Nebraska
  • -
  • Nevada
  • -
  • New Hampshire
  • -
  • New Jersey
  • -
  • New Mexico
  • -
  • New York
  • -
  • North Carolina
  • -
  • North Dakota
  • -
  • Ohio
  • -
  • Oklahoma
  • -
  • Oregon
  • -
  • Pennsylvania
  • -
  • Rhode Island
  • -
  • South Carolina
  • -
  • South Dakota
  • -
  • Tennessee
  • -
  • Texas
  • -
  • Utah
  • -
  • Vermont
  • -
  • Virginia
  • -
  • Washington
  • -
  • West Virginia
  • -
  • Wisconsin
  • -
  • Wyoming
  • -
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datalist/checkbox.html b/vendor/FHC-vendor/easyui/demo/datalist/checkbox.html deleted file mode 100644 index dd18f5b1c..000000000 --- a/vendor/FHC-vendor/easyui/demo/datalist/checkbox.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - Checkbox in DataList - jQuery EasyUI Demo - - - - - - - -

Checkbox in DataList

-

Each item in the DataList has a checkbox.

-
-
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datalist/datalist_data1.json b/vendor/FHC-vendor/easyui/demo/datalist/datalist_data1.json deleted file mode 100644 index d53cf62a0..000000000 --- a/vendor/FHC-vendor/easyui/demo/datalist/datalist_data1.json +++ /dev/null @@ -1,18 +0,0 @@ -[ -{"text":"Epson WorkForce 845","group":"Printer"}, -{"text":"Canon PIXMA MG5320","group":"Printer"}, -{"text":"HP Deskjet 1000 Printer","group":"Printer"}, -{"text":"Cisco RV110W-A-NA-K9","group":"Firewall"}, -{"text":"ZyXEL ZyWALL USG50","group":"Firewall"}, -{"text":"NETGEAR FVS318","group":"Firewall"}, -{"text":"Logitech Keyboard K120","group":"Keyboard"}, -{"text":"Microsoft Natural Ergonomic Keyboard 4000","group":"Keyboard"}, -{"text":"Logitech Wireless Touch Keyboard K400","group":"Keyboard"}, -{"text":"Logitech Gaming Keyboard G110","group":"Keyboard"}, -{"text":"Nikon COOLPIX L26 16.1 MP","group":"Camera"}, -{"text":"Canon PowerShot A1300","group":"Camera"}, -{"text":"Canon PowerShot A2300","group":"Camera"} - - - -] \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datalist/group.html b/vendor/FHC-vendor/easyui/demo/datalist/group.html deleted file mode 100644 index bf22b6f03..000000000 --- a/vendor/FHC-vendor/easyui/demo/datalist/group.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - Group DataList - jQuery EasyUI Demo - - - - - - - -

Group DataList

-

This example shows how to display items in groups.

-
-
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datalist/multiselect.html b/vendor/FHC-vendor/easyui/demo/datalist/multiselect.html deleted file mode 100644 index 704924c6a..000000000 --- a/vendor/FHC-vendor/easyui/demo/datalist/multiselect.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - Multiple Selection DataList - jQuery EasyUI Demo - - - - - - - -

Multiple Selection DataList

-

The multiple selection allows the user to select multiple items in a datalist.

-
-
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datalist/remotedata.html b/vendor/FHC-vendor/easyui/demo/datalist/remotedata.html deleted file mode 100644 index 0c71604aa..000000000 --- a/vendor/FHC-vendor/easyui/demo/datalist/remotedata.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - Binding to Remote Data - jQuery EasyUI Demo - - - - - - - -

Binding to Remote Data

-

The DataList is bound to a remote data.

-
-
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datebox/basic.html b/vendor/FHC-vendor/easyui/demo/datebox/basic.html deleted file mode 100644 index eb3417b9d..000000000 --- a/vendor/FHC-vendor/easyui/demo/datebox/basic.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - Basic DateBox - jQuery EasyUI Demo - - - - - - - -

Basic DateBox

-

Click the calendar image on the right side.

-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datebox/buttons.html b/vendor/FHC-vendor/easyui/demo/datebox/buttons.html deleted file mode 100644 index 7ba5e5c4a..000000000 --- a/vendor/FHC-vendor/easyui/demo/datebox/buttons.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - DateBox Buttons - jQuery EasyUI Demo - - - - - - - -

DateBox Buttons

-

This example shows how to customize the datebox buttons underneath the calendar.

-
- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datebox/clone.html b/vendor/FHC-vendor/easyui/demo/datebox/clone.html deleted file mode 100644 index 1decfa701..000000000 --- a/vendor/FHC-vendor/easyui/demo/datebox/clone.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - Clone DateBox - jQuery EasyUI Demo - - - - - - - -

Clone DateBox

-

Click the 'Clone' button to clone datebox components from the exiting datebox.

-
- Clone -
- -
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datebox/dateformat.html b/vendor/FHC-vendor/easyui/demo/datebox/dateformat.html deleted file mode 100644 index ead2064e0..000000000 --- a/vendor/FHC-vendor/easyui/demo/datebox/dateformat.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - Date Format - jQuery EasyUI Demo - - - - - - - -

Date Format

-

Different date formats are applied to different DateBox components.

-
- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datebox/events.html b/vendor/FHC-vendor/easyui/demo/datebox/events.html deleted file mode 100644 index bf5c912cf..000000000 --- a/vendor/FHC-vendor/easyui/demo/datebox/events.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - DateBox Events - jQuery EasyUI Demo - - - - - - - -

DateBox Events

-

Click the calendar image on the right side.

-
- -
- Selected Date: - -
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datebox/fluid.html b/vendor/FHC-vendor/easyui/demo/datebox/fluid.html deleted file mode 100644 index b30f70ae9..000000000 --- a/vendor/FHC-vendor/easyui/demo/datebox/fluid.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Fluid DateBox - jQuery EasyUI Demo - - - - - - - -

Fluid DateBox

-

This example shows how to set the width of DateBox to a percentage of its parent container.

-
-

width: 50%

- -

width: 30%

- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datebox/restrict.html b/vendor/FHC-vendor/easyui/demo/datebox/restrict.html deleted file mode 100644 index 84c8884d8..000000000 --- a/vendor/FHC-vendor/easyui/demo/datebox/restrict.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Restrict Date Range in DateBox - jQuery EasyUI Demo - - - - - - - -

Restrict Date Range in DateBox

-

This example shows how to restrict the user to select only ten days from now.

-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datebox/sharedcalendar.html b/vendor/FHC-vendor/easyui/demo/datebox/sharedcalendar.html deleted file mode 100644 index 48c3c1eeb..000000000 --- a/vendor/FHC-vendor/easyui/demo/datebox/sharedcalendar.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Shared Calendar in DateBox - jQuery EasyUI Demo - - - - - - - -

Shared Calendar in DateBox

-

Multiple datebox components can share a calendar and use it to pick dates.

-
- - - - - - - -
Start Date: - - End Date: - -
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datebox/validate.html b/vendor/FHC-vendor/easyui/demo/datebox/validate.html deleted file mode 100644 index fae9b070c..000000000 --- a/vendor/FHC-vendor/easyui/demo/datebox/validate.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Validate DateBox - jQuery EasyUI Demo - - - - - - - -

Validate DateBox

-

When the selected date is greater than specified date. The field validator will raise an error.

-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datetimebox/basic.html b/vendor/FHC-vendor/easyui/demo/datetimebox/basic.html deleted file mode 100644 index a09f2452c..000000000 --- a/vendor/FHC-vendor/easyui/demo/datetimebox/basic.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - Basic DateTimeBox - jQuery EasyUI Demo - - - - - - - -

Basic DateTimeBox

-

Click the calendar image on the right side.

-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datetimebox/fluid.html b/vendor/FHC-vendor/easyui/demo/datetimebox/fluid.html deleted file mode 100644 index 87b1ca208..000000000 --- a/vendor/FHC-vendor/easyui/demo/datetimebox/fluid.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Fluid DateTimeBox - jQuery EasyUI Demo - - - - - - - -

Fluid DateTimeBox

-

This example shows how to set the width of DateTimeBox to a percentage of its parent container.

-
-

width: 50%

- -

width: 30%

- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datetimebox/initvalue.html b/vendor/FHC-vendor/easyui/demo/datetimebox/initvalue.html deleted file mode 100644 index c9d2e11d0..000000000 --- a/vendor/FHC-vendor/easyui/demo/datetimebox/initvalue.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - Initialize Value for DateTime - jQuery EasyUI Demo - - - - - - - -

Initialize Value for DateTime

-

The value is initialized when DateTimeBox has been created.

-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datetimebox/showseconds.html b/vendor/FHC-vendor/easyui/demo/datetimebox/showseconds.html deleted file mode 100644 index 54f9c3725..000000000 --- a/vendor/FHC-vendor/easyui/demo/datetimebox/showseconds.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - Display Seconds - jQuery EasyUI Demo - - - - - - - -

Display Seconds

-

The user can decide to display seconds part or not.

-
- Show Seconds: - -
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datetimespinner/basic.html b/vendor/FHC-vendor/easyui/demo/datetimespinner/basic.html deleted file mode 100644 index 1e30a719b..000000000 --- a/vendor/FHC-vendor/easyui/demo/datetimespinner/basic.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - Basic DateTimeSpinner - jQuery EasyUI Demo - - - - - - - -

Basic DateTimeSpinner

-

Click spin button to adjust date and time.

-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datetimespinner/clearicon.html b/vendor/FHC-vendor/easyui/demo/datetimespinner/clearicon.html deleted file mode 100644 index 135bf2977..000000000 --- a/vendor/FHC-vendor/easyui/demo/datetimespinner/clearicon.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - DateTimeSpinner with Clear Icon - jQuery EasyUI Demo - - - - - - - -

DateTimeSpinner with Clear Icon

-

A clear icon can be attached to the datetimespinner. Click it to clear the entered value.

-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datetimespinner/fluid.html b/vendor/FHC-vendor/easyui/demo/datetimespinner/fluid.html deleted file mode 100644 index eeca9b9d1..000000000 --- a/vendor/FHC-vendor/easyui/demo/datetimespinner/fluid.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Fluid DateTimeSpinner - jQuery EasyUI Demo - - - - - - - -

Fluid DateTimeSpinner

-

The width of datetimespinner is set in percentages.

-
-

width: 50%

- -

width: 30%

- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/datetimespinner/format.html b/vendor/FHC-vendor/easyui/demo/datetimespinner/format.html deleted file mode 100644 index 427e18672..000000000 --- a/vendor/FHC-vendor/easyui/demo/datetimespinner/format.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - Format DateTimeSpinner - jQuery EasyUI Demo - - - - - - - -

Format DateTimeSpinner

-

The DataTimeSpinner value can be formatted by specifying the 'formatter' and 'parser' functions.

-
-

mm/dd/yyyy hh:mm

- -

mm/dd/yyyy

- -

yyyy-mm

- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/demo.css b/vendor/FHC-vendor/easyui/demo/demo.css deleted file mode 100644 index 5c0146769..000000000 --- a/vendor/FHC-vendor/easyui/demo/demo.css +++ /dev/null @@ -1,21 +0,0 @@ -*{ - font-size:12px; -} -body { - font-family:verdana,helvetica,arial,sans-serif; - padding:20px; - font-size:12px; - margin:0; -} -h2 { - font-size:18px; - font-weight:bold; - margin:0; - margin-bottom:15px; -} -.demo-info{ - padding:0 0 12px 0; -} -.demo-tip{ - display:none; -} diff --git a/vendor/FHC-vendor/easyui/demo/dialog/basic.html b/vendor/FHC-vendor/easyui/demo/dialog/basic.html deleted file mode 100644 index e745b373c..000000000 --- a/vendor/FHC-vendor/easyui/demo/dialog/basic.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - Basic Dialog - jQuery EasyUI Demo - - - - - - - -

Basic Dialog

-

Click below button to open or close dialog.

-
- Open - Close -
-
- The dialog content. -
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/dialog/complextoolbar.html b/vendor/FHC-vendor/easyui/demo/dialog/complextoolbar.html deleted file mode 100644 index 175fa731f..000000000 --- a/vendor/FHC-vendor/easyui/demo/dialog/complextoolbar.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - Complex Toolbar on Dialog - jQuery EasyUI Demo - - - - - - - -

Complex Toolbar on Dialog

-

This sample shows how to create complex toolbar on dialog.

-
- Open - Close -
-
- The dialog content. -
-
- - - - - -
- Edit - Help - - -
-
-
- Save - Close -
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/dialog/fluid.html b/vendor/FHC-vendor/easyui/demo/dialog/fluid.html deleted file mode 100644 index b9809f06e..000000000 --- a/vendor/FHC-vendor/easyui/demo/dialog/fluid.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - Fluid Dialog - jQuery EasyUI Demo - - - - - - - -

Fluid Dialog

-

This example shows how to set the width of Dialog to a percentage of its parent container.

-
-
-

width: 80%; height: 200px

-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/dialog/toolbarbuttons.html b/vendor/FHC-vendor/easyui/demo/dialog/toolbarbuttons.html deleted file mode 100644 index 35013a5aa..000000000 --- a/vendor/FHC-vendor/easyui/demo/dialog/toolbarbuttons.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - Toolbar and Buttons - jQuery EasyUI Demo - - - - - - - -

Toolbar and Buttons

-

The toolbar and buttons can be added to dialog.

-
- Open - Close -
-
- The dialog content. -
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/draggable/basic.html b/vendor/FHC-vendor/easyui/demo/draggable/basic.html deleted file mode 100644 index 0c96a0598..000000000 --- a/vendor/FHC-vendor/easyui/demo/draggable/basic.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Basic Draggable - jQuery EasyUI Demo - - - - - - - -

Basic Draggable

-

Move the boxes below by clicking on it with mouse.

-
-
-
-
Title
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/draggable/constrain.html b/vendor/FHC-vendor/easyui/demo/draggable/constrain.html deleted file mode 100644 index a2dfa6cc2..000000000 --- a/vendor/FHC-vendor/easyui/demo/draggable/constrain.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - Constrain Draggable - jQuery EasyUI Demo - - - - - - - -

Constrain Draggable

-

The draggable object can only be moved within its parent container.

-
-
-
-
-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/draggable/snap.html b/vendor/FHC-vendor/easyui/demo/draggable/snap.html deleted file mode 100644 index 5f0103a7a..000000000 --- a/vendor/FHC-vendor/easyui/demo/draggable/snap.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - Snap Draggable - jQuery EasyUI Demo - - - - - - - -

Snap Draggable

-

This sample shows how to snap a draggable object to a 20x20 grid.

-
-
-
-
-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/droppable/accept.html b/vendor/FHC-vendor/easyui/demo/droppable/accept.html deleted file mode 100644 index cf56d084b..000000000 --- a/vendor/FHC-vendor/easyui/demo/droppable/accept.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - Accept a Drop - jQuery EasyUI Demo - - - - - - - -

Accept a Drop

-

Some draggable object can not be accepted.

-
-
- drag me! -
Drag 1
-
Drag 2
-
Drag 3
-
-
- drop here! -
-
- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/droppable/basic.html b/vendor/FHC-vendor/easyui/demo/droppable/basic.html deleted file mode 100644 index ecf803a93..000000000 --- a/vendor/FHC-vendor/easyui/demo/droppable/basic.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - Basic Droppable - jQuery EasyUI Demo - - - - - - - -

Basic Droppable

-

Drag the boxed on left to the target area on right.

-
-
-
Source
-
-
Apple
-
Peach
-
Orange
-
-
-
-
Target
-
-
-
-
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/droppable/sort.html b/vendor/FHC-vendor/easyui/demo/droppable/sort.html deleted file mode 100644 index 37c0d2f41..000000000 --- a/vendor/FHC-vendor/easyui/demo/droppable/sort.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - Change Items Order - jQuery EasyUI Demo - - - - - - - -

Change Items Order

-

Drag the list items to change their order.

-
-
    -
  • Drag 1
  • -
  • Drag 2
  • -
  • Drag 3
  • -
  • Drag 4
  • -
  • Drag 5
  • -
  • Drag 6
  • -
- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/easyloader/basic.html b/vendor/FHC-vendor/easyui/demo/easyloader/basic.html deleted file mode 100644 index 44a09ebba..000000000 --- a/vendor/FHC-vendor/easyui/demo/easyloader/basic.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - Basic EasyLoader - jQuery EasyUI Demo - - - - - - - -

Basic EasyLoader

-
-
-
Click the buttons below to load components dynamically.
-
- -
-
-
- - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/filebox/basic.html b/vendor/FHC-vendor/easyui/demo/filebox/basic.html deleted file mode 100644 index 25cf5f706..000000000 --- a/vendor/FHC-vendor/easyui/demo/filebox/basic.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - Basic FileBox - jQuery EasyUI Demo - - - - - - - -

Basic FileBox

-

The filebox component represents a file field of the forms.

-
-
-
-
Name:
- -
-
-
File1:
- -
-
-
File2:
- -
-
- Upload -
-
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/filebox/buttonalign.html b/vendor/FHC-vendor/easyui/demo/filebox/buttonalign.html deleted file mode 100644 index f87d9542d..000000000 --- a/vendor/FHC-vendor/easyui/demo/filebox/buttonalign.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - Button Align on FileBox - jQuery EasyUI Demo - - - - - - - -

Button Align on FileBox

-

Change the button align to the left or right of filebox.

-
- Select Button Align: - -
- - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/filebox/fluid.html b/vendor/FHC-vendor/easyui/demo/filebox/fluid.html deleted file mode 100644 index ef32e4815..000000000 --- a/vendor/FHC-vendor/easyui/demo/filebox/fluid.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Fluid FileBox - jQuery EasyUI Demo - - - - - - - -

Fluid FileBox

-

This example shows how to set the width of FileBox to a percentage of its parent container.

-
-

width: 50%

- -

width: 30%

- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/form/basic.html b/vendor/FHC-vendor/easyui/demo/form/basic.html deleted file mode 100644 index 65e25c285..000000000 --- a/vendor/FHC-vendor/easyui/demo/form/basic.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - Basic Form - jQuery EasyUI Demo - - - - - - - -

Basic Form

-

Fill the form and submit it.

-
-
-
-
- - - - - - - - - - - - - - - - - - - - - -
Name:
Email:
Subject:
Message:
Language: - -
-
-
- Submit - Clear -
-
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/form/form_data1.json b/vendor/FHC-vendor/easyui/demo/form/form_data1.json deleted file mode 100644 index 7103c8384..000000000 --- a/vendor/FHC-vendor/easyui/demo/form/form_data1.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name":"easyui", - "email":"easyui@gmail.com", - "subject":"Subject Title", - "message":"Message Content", - "language":"de" -} \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/form/load.html b/vendor/FHC-vendor/easyui/demo/form/load.html deleted file mode 100644 index 8c0788da2..000000000 --- a/vendor/FHC-vendor/easyui/demo/form/load.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - Load Form Data - jQuery EasyUI Demo - - - - - - - -

Load Form Data

-

Click the buttons below to load form data.

- -
-
-
- - - - - - - - - - - - - - - - - - - - - -
Name:
Email:
Subject:
Message:
Language: - -
-
-
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/form/validateonsubmit.html b/vendor/FHC-vendor/easyui/demo/form/validateonsubmit.html deleted file mode 100644 index 15f8c5dc3..000000000 --- a/vendor/FHC-vendor/easyui/demo/form/validateonsubmit.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - - Validate Form on Submit - jQuery EasyUI Demo - - - - - - - -

Validate Form on Submit

-

The form does not perform validation before being submitted.

-
-
-
-
- - - - - - - - - - - - - - - - - - - - - -
Name:
Email:
Subject:
Message:
Language: - -
-
-
- Submit - Clear -
-
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/_content.html b/vendor/FHC-vendor/easyui/demo/layout/_content.html deleted file mode 100644 index 66c1bd5a1..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/_content.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - AJAX Content - - -

jQuery EasyUI framework help you build your web page easily.

-
    -
  • easyui is a collection of user-interface plugin based on jQuery.
  • -
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • -
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • -
  • complete framework for HTML5 web page.
  • -
  • easyui save your time and scales while developing your products.
  • -
  • easyui is very easy but powerful.
  • -
- - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/addremove.html b/vendor/FHC-vendor/easyui/demo/layout/addremove.html deleted file mode 100644 index 34977c4b4..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/addremove.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - Add and Remove Layout - jQuery EasyUI Demo - - - - - - - -

Add and Remove Layout

-

Click the buttons below to add or remove region panel of layout.

-
- Select Region Panel: - - Add - Remove -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/autoheight.html b/vendor/FHC-vendor/easyui/demo/layout/autoheight.html deleted file mode 100644 index 0c882f2cc..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/autoheight.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - Auto Height for Layout - jQuery EasyUI Demo - - - - - - - -

Auto Height for Layout

-

This example shows how to auto adjust layout height after dynamically adding items.

- -
-
-
-
-
-

Panel Content.

-

Panel Content.

-

Panel Content.

-

Panel Content.

-

Panel Content.

-
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/basic.html b/vendor/FHC-vendor/easyui/demo/layout/basic.html deleted file mode 100644 index 29e2c393f..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/basic.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - Basic Layout - jQuery EasyUI Demo - - - - - - - -

Basic Layout

-

The layout contains north,south,west,east and center regions.

-
-
-
-
-
-
-
- - - - - - - - - - - -
Item IDProduct IDList PriceUnit CostAttributeStatus
-
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/collapsetitle.html b/vendor/FHC-vendor/easyui/demo/layout/collapsetitle.html deleted file mode 100644 index 2c8a59705..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/collapsetitle.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - Collapse Title in Layout - jQuery EasyUI Demo - - - - - - - -

Collapse Title in Layout

-

The title bar will display while collapse a region panel.

-
-
-
-
-
-
-
- - - - - - - - - - - -
Item IDProduct IDList PriceUnit CostAttributeStatus
-
-
- - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/complex.html b/vendor/FHC-vendor/easyui/demo/layout/complex.html deleted file mode 100644 index 833eb09f6..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/complex.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - - Complex Layout - jQuery EasyUI Demo - - - - - - - -

Complex Layout

-

This sample shows how to create a complex layout.

-
-
-
-
-
-
    -
    -
    -
    -
    - content1 -
    -
    - content2 -
    -
    - content3 -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - -
    Item IDProduct IDList PriceUnit CostAttributeStatus
    -
    -
    -
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/customcollapsetitle.html b/vendor/FHC-vendor/easyui/demo/layout/customcollapsetitle.html deleted file mode 100644 index 3a4517e66..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/customcollapsetitle.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - Custom Collapse Title in Layout - jQuery EasyUI Demo - - - - - - - -

    Custom Collapse Title in Layout

    -

    Any components can display on the title bar of a collapsed panel.

    -
    -
    -
    -
    -
    - - - - - - - - - - - -
    Item IDProduct IDList PriceUnit CostAttributeStatus
    -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/datagrid_data1.json b/vendor/FHC-vendor/easyui/demo/layout/datagrid_data1.json deleted file mode 100644 index e9a5be2f8..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/datagrid_data1.json +++ /dev/null @@ -1,12 +0,0 @@ -{"total":28,"rows":[ - {"productid":"FI-SW-01","productname":"Koi","unitcost":10.00,"status":"P","listprice":36.50,"attr1":"Large","itemid":"EST-1"}, - {"productid":"K9-DL-01","productname":"Dalmation","unitcost":12.00,"status":"P","listprice":18.50,"attr1":"Spotted Adult Female","itemid":"EST-10"}, - {"productid":"RP-SN-01","productname":"Rattlesnake","unitcost":12.00,"status":"P","listprice":38.50,"attr1":"Venomless","itemid":"EST-11"}, - {"productid":"RP-SN-01","productname":"Rattlesnake","unitcost":12.00,"status":"P","listprice":26.50,"attr1":"Rattleless","itemid":"EST-12"}, - {"productid":"RP-LI-02","productname":"Iguana","unitcost":12.00,"status":"P","listprice":35.50,"attr1":"Green Adult","itemid":"EST-13"}, - {"productid":"FL-DSH-01","productname":"Manx","unitcost":12.00,"status":"P","listprice":158.50,"attr1":"Tailless","itemid":"EST-14"}, - {"productid":"FL-DSH-01","productname":"Manx","unitcost":12.00,"status":"P","listprice":83.50,"attr1":"With tail","itemid":"EST-15"}, - {"productid":"FL-DLH-02","productname":"Persian","unitcost":12.00,"status":"P","listprice":23.50,"attr1":"Adult Female","itemid":"EST-16"}, - {"productid":"FL-DLH-02","productname":"Persian","unitcost":12.00,"status":"P","listprice":89.50,"attr1":"Adult Male","itemid":"EST-17"}, - {"productid":"AV-CB-01","productname":"Amazon Parrot","unitcost":92.00,"status":"P","listprice":63.50,"attr1":"Adult Male","itemid":"EST-18"} -]} diff --git a/vendor/FHC-vendor/easyui/demo/layout/fluid.html b/vendor/FHC-vendor/easyui/demo/layout/fluid.html deleted file mode 100644 index 42f8c5525..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/fluid.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - Fluid Layout - jQuery EasyUI Demo - - - - - - - -

    Fluid Layout

    -

    Percentage width of region panel in a layout.

    -
    -
    -
    -

    width: 30%

    -
    -
    -
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/full.html b/vendor/FHC-vendor/easyui/demo/layout/full.html deleted file mode 100644 index c83bf07db..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/full.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - Full Layout - jQuery EasyUI Demo - - - - - - - -
    north region
    -
    west content
    -
    east region
    -
    south region
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/nestedlayout.html b/vendor/FHC-vendor/easyui/demo/layout/nestedlayout.html deleted file mode 100644 index 9a346b193..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/nestedlayout.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Nested Layout - jQuery EasyUI Demo - - - - - - - -

    Nested Layout

    -

    The layout region panel contains another layout or other components.

    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/nocollapsible.html b/vendor/FHC-vendor/easyui/demo/layout/nocollapsible.html deleted file mode 100644 index a6914a035..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/nocollapsible.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - No collapsible button in Layout - jQuery EasyUI Demo - - - - - - - -

    No collapsible button in Layout

    -

    The layout region panel has no collapsible button.

    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/propertygrid_data1.json b/vendor/FHC-vendor/easyui/demo/layout/propertygrid_data1.json deleted file mode 100644 index 12b2d0074..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/propertygrid_data1.json +++ /dev/null @@ -1,20 +0,0 @@ -{"total":7,"rows":[ - {"name":"Name","value":"Bill Smith","group":"ID Settings","editor":"text"}, - {"name":"Address","value":"","group":"ID Settings","editor":"text"}, - {"name":"Age","value":"40","group":"ID Settings","editor":"numberbox"}, - {"name":"Birthday","value":"01/02/2012","group":"ID Settings","editor":"datebox"}, - {"name":"SSN","value":"123-456-7890","group":"ID Settings","editor":"text"}, - {"name":"Email","value":"bill@gmail.com","group":"Marketing Settings","editor":{ - "type":"validatebox", - "options":{ - "validType":"email" - } - }}, - {"name":"FrequentBuyer","value":"false","group":"Marketing Settings","editor":{ - "type":"checkbox", - "options":{ - "on":true, - "off":false - } - }} -]} \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/layout/tree_data1.json b/vendor/FHC-vendor/easyui/demo/layout/tree_data1.json deleted file mode 100644 index 83fb0d619..000000000 --- a/vendor/FHC-vendor/easyui/demo/layout/tree_data1.json +++ /dev/null @@ -1,49 +0,0 @@ -[{ - "id":1, - "text":"My Documents", - "children":[{ - "id":11, - "text":"Photos", - "state":"closed", - "children":[{ - "id":111, - "text":"Friend" - },{ - "id":112, - "text":"Wife" - },{ - "id":113, - "text":"Company" - }] - },{ - "id":12, - "text":"Program Files", - "children":[{ - "id":121, - "text":"Intel" - },{ - "id":122, - "text":"Java", - "attributes":{ - "p1":"Custom Attribute1", - "p2":"Custom Attribute2" - } - },{ - "id":123, - "text":"Microsoft Office" - },{ - "id":124, - "text":"Games", - "checked":true - }] - },{ - "id":13, - "text":"index.html" - },{ - "id":14, - "text":"about.html" - },{ - "id":15, - "text":"welcome.html" - }] -}] diff --git a/vendor/FHC-vendor/easyui/demo/linkbutton/basic.html b/vendor/FHC-vendor/easyui/demo/linkbutton/basic.html deleted file mode 100644 index 741d68c49..000000000 --- a/vendor/FHC-vendor/easyui/demo/linkbutton/basic.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Basic LinkButton - jQuery EasyUI Demo - - - - - - - -

    Basic LinkButton

    -

    Buttons can be created from <a> or <button> elements.

    -
    -

    Basic Buttons

    -
    - Add - Remove - Save - Cut - Text Button -
    -

    Fixed Width Buttons

    -
    - Search - Print - Reload - Help -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/linkbutton/fluid.html b/vendor/FHC-vendor/easyui/demo/linkbutton/fluid.html deleted file mode 100644 index b1027b99e..000000000 --- a/vendor/FHC-vendor/easyui/demo/linkbutton/fluid.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Fluid LinkButton - jQuery EasyUI Demo - - - - - - - -

    Fluid LinkButton

    -

    This example shows how to set the width of LinkButton to a percentage of its parent container.

    -
    -

    width: 15%

    -
    - Add - Remove - Save - Cut - Text Button -
    -

    width: 20%

    -
    - Search - Print - Reload - Help -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/linkbutton/group.html b/vendor/FHC-vendor/easyui/demo/linkbutton/group.html deleted file mode 100644 index 852db671d..000000000 --- a/vendor/FHC-vendor/easyui/demo/linkbutton/group.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Button Group - jQuery EasyUI Demo - - - - - - - -

    Button Group

    -

    In a button group only one button can be selected.

    -
    - -
    - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/linkbutton/iconalign.html b/vendor/FHC-vendor/easyui/demo/linkbutton/iconalign.html deleted file mode 100644 index 99a8ec2c2..000000000 --- a/vendor/FHC-vendor/easyui/demo/linkbutton/iconalign.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Icon Align on LinkButton - jQuery EasyUI Demo - - - - - - - -

    Icon Align on LinkButton

    -

    Change the icon align to place icon on left, right, top or bottom of button.

    -
    -
    - Select Icon Align: - -
    -
    - Add - Remove - Save - Cut -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/linkbutton/plain.html b/vendor/FHC-vendor/easyui/demo/linkbutton/plain.html deleted file mode 100644 index 0143c20e5..000000000 --- a/vendor/FHC-vendor/easyui/demo/linkbutton/plain.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - Plain LinkButton - jQuery EasyUI Demo - - - - - - - -

    Plain LinkButton

    -

    The buttons with plain style have transparent background.

    -
    - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/linkbutton/size.html b/vendor/FHC-vendor/easyui/demo/linkbutton/size.html deleted file mode 100644 index 265ecb58b..000000000 --- a/vendor/FHC-vendor/easyui/demo/linkbutton/size.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - LinkButton Size - jQuery EasyUI Demo - - - - - - - -

    LinkButton Size

    -

    This sample shows how to display small buttons and large buttons.

    -
    -

    Small Buttons

    -
    - Add - Remove - Save - Cut - Text Button -
    -

    Large Buttons

    - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/linkbutton/style.html b/vendor/FHC-vendor/easyui/demo/linkbutton/style.html deleted file mode 100644 index fd46c2bfc..000000000 --- a/vendor/FHC-vendor/easyui/demo/linkbutton/style.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Style LinkButton - jQuery EasyUI Demo - - - - - - - -

    Style LinkButton

    -

    This example shows how to style a linkbutton.

    -
    - - - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/linkbutton/toggle.html b/vendor/FHC-vendor/easyui/demo/linkbutton/toggle.html deleted file mode 100644 index ebab0d141..000000000 --- a/vendor/FHC-vendor/easyui/demo/linkbutton/toggle.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - Toggle Button - jQuery EasyUI Demo - - - - - - - -

    Toggle Button

    -

    Click the button below to switch its selected state.

    -
    -
    - Add - Remove - Save - Cut - Text Button -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/menu/basic.html b/vendor/FHC-vendor/easyui/demo/menu/basic.html deleted file mode 100644 index ac6e17199..000000000 --- a/vendor/FHC-vendor/easyui/demo/menu/basic.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - Basic Menu - jQuery EasyUI Demo - - - - - - - -

    Basic Menu

    -

    Right click on page to display menu.

    -
    - -
    -
    New
    -
    - Open -
    -
    Word
    -
    Excel
    -
    PowerPoint
    -
    - M1 -
    -
    sub1
    -
    sub2
    -
    - Sub -
    -
    sub21
    -
    sub22
    -
    sub23
    -
    -
    -
    sub3
    -
    -
    -
    - Window Demos -
    -
    Window
    -
    Dialog
    - -
    -
    -
    -
    -
    Save
    -
    Print
    - -
    Exit
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/menu/customitem.html b/vendor/FHC-vendor/easyui/demo/menu/customitem.html deleted file mode 100644 index bf4df9cf4..000000000 --- a/vendor/FHC-vendor/easyui/demo/menu/customitem.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - Custom Menu Item - jQuery EasyUI Demo - - - - - - - -

    Custom Menu Item

    -

    Right click on page to display menu, move to the 'Open' item to display its custom sub content.

    -
    -
    -
    New
    -
    - Open - -
    -
    Save
    -
    Print
    - -
    Exit
    -
    - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/menu/events.html b/vendor/FHC-vendor/easyui/demo/menu/events.html deleted file mode 100644 index 41f4b570d..000000000 --- a/vendor/FHC-vendor/easyui/demo/menu/events.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - Menu Events - jQuery EasyUI Demo - - - - - - - -

    Menu Events

    -

    Right click on page to display menu and click an item.

    -
    -
    -
    New
    -
    Save
    -
    Print
    - -
    Exit
    -
    -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/menu/inline.html b/vendor/FHC-vendor/easyui/demo/menu/inline.html deleted file mode 100644 index 5fa0d99ec..000000000 --- a/vendor/FHC-vendor/easyui/demo/menu/inline.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - Inline Menu - jQuery EasyUI Demo - - - - - - - -

    Inline Menu

    -

    The inline menu stays inside its parent container.

    -
    - -
    -
    -
    New
    -
    - Open -
    -
    Word
    -
    Excel
    -
    PowerPoint
    -
    - M1 -
    -
    sub1
    -
    sub2
    -
    - Sub -
    -
    sub21
    -
    sub22
    -
    sub23
    -
    -
    -
    sub3
    -
    -
    -
    - Window Demos -
    -
    Window
    -
    Dialog
    - -
    -
    -
    -
    -
    Save
    -
    Print
    - -
    Exit
    -
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/menu/nav.html b/vendor/FHC-vendor/easyui/demo/menu/nav.html deleted file mode 100644 index b200f2a0e..000000000 --- a/vendor/FHC-vendor/easyui/demo/menu/nav.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - Keyboard Navigation in Menu - jQuery EasyUI Demo - - - - - - - -

    Keyboard Navigation in Menu

    -

    Press Alt+W to focus the menu. Once the menu get focus, you will be able to navigate menu using keyboard keys.

    -
    - -
    -
    -
    New
    -
    - Open -
    -
    Word
    -
    Excel
    -
    PowerPoint
    -
    - M1 -
    -
    sub1
    -
    sub2
    -
    - Sub -
    -
    sub21
    -
    sub22
    -
    sub23
    -
    -
    -
    sub3
    -
    -
    -
    - Window Demos -
    -
    Window
    -
    Dialog
    -
    EasyUI
    -
    -
    -
    -
    -
    Save
    -
    Print
    - -
    Exit
    -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/menubutton/actions.html b/vendor/FHC-vendor/easyui/demo/menubutton/actions.html deleted file mode 100644 index 6623d3dad..000000000 --- a/vendor/FHC-vendor/easyui/demo/menubutton/actions.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - MenuButton Actions - jQuery EasyUI Demo - - - - - - - -

    MenuButton Actions

    -

    Click the buttons below to perform actions.

    - -
    - Home - Edit - Help - About -
    -
    -
    Undo
    -
    Redo
    - -
    Cut
    -
    Copy
    -
    Paste
    - -
    - Toolbar -
    -
    Address
    -
    Link
    -
    Navigation Toolbar
    -
    Bookmark Toolbar
    - -
    New Toolbar...
    -
    -
    -
    Delete
    -
    Select All
    -
    -
    -
    Help
    -
    Update
    -
    About
    -
    - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/menubutton/alignment.html b/vendor/FHC-vendor/easyui/demo/menubutton/alignment.html deleted file mode 100644 index 5362745ed..000000000 --- a/vendor/FHC-vendor/easyui/demo/menubutton/alignment.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - Menu Alignment on MenuButton - jQuery EasyUI Demo - - - - - - - -

    Menu Alignment on MenuButton

    -

    This example shows how to change the alignment of the top level menu.

    -
    - Change Alignment: - -
    -
    - Home - Edit - Help - About - -
    -
    -
    Undo
    -
    Redo
    - -
    Cut
    -
    Copy
    -
    Paste
    - -
    - Toolbar -
    -
    Address
    -
    Link
    -
    Navigation Toolbar
    -
    Bookmark Toolbar
    - -
    New Toolbar...
    -
    -
    -
    Delete
    -
    Select All
    -
    -
    -
    Help
    -
    Update
    -
    About
    -
    -
    -
    History
    -
    Faq
    -
    Our Team
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/menubutton/basic.html b/vendor/FHC-vendor/easyui/demo/menubutton/basic.html deleted file mode 100644 index e277296bf..000000000 --- a/vendor/FHC-vendor/easyui/demo/menubutton/basic.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - Basic MenuButton - jQuery EasyUI Demo - - - - - - - -

    Basic MenuButton

    -

    Move mouse over the button to drop down menu.

    -
    -
    - Home - Edit - Help - About -
    -
    -
    Undo
    -
    Redo
    - -
    Cut
    -
    Copy
    -
    Paste
    - -
    - Toolbar -
    -
    Address
    -
    Link
    -
    Navigation Toolbar
    -
    Bookmark Toolbar
    - -
    New Toolbar...
    -
    -
    -
    Delete
    -
    Select All
    -
    -
    -
    Help
    -
    Update
    -
    About
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/menubutton/nav.html b/vendor/FHC-vendor/easyui/demo/menubutton/nav.html deleted file mode 100644 index 3dfdc5a28..000000000 --- a/vendor/FHC-vendor/easyui/demo/menubutton/nav.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - Keyboard Navigation in MenuButton - jQuery EasyUI Demo - - - - - - - -

    Keyboard Navigation in MenuButton

    -

    Press Alt+W to focus the menubutton. Once the menubutton get focus, you will be able to navigate menubutton using keyboard keys.

    -
    -
    - Home - Edit - Help - About -
    -
    -
    Undo
    -
    Redo
    - -
    Cut
    -
    Copy
    -
    Paste
    - -
    - Toolbar -
    -
    Address
    -
    Link
    -
    Navigation Toolbar
    -
    Bookmark Toolbar
    - -
    New Toolbar...
    -
    -
    -
    Delete
    -
    Select All
    -
    -
    -
    Help
    -
    Update
    -
    About
    -
    - - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/messager/alert.html b/vendor/FHC-vendor/easyui/demo/messager/alert.html deleted file mode 100644 index ff7129d70..000000000 --- a/vendor/FHC-vendor/easyui/demo/messager/alert.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - Alert Messager - jQuery EasyUI Demo - - - - - - - -

    Alert Messager

    -

    Click on each button to display different alert message box.

    - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/messager/basic.html b/vendor/FHC-vendor/easyui/demo/messager/basic.html deleted file mode 100644 index 373c7ca78..000000000 --- a/vendor/FHC-vendor/easyui/demo/messager/basic.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - Basic Messager - jQuery EasyUI Demo - - - - - - - -

    Basic Messager

    -

    Click on each button to see a distinct message box.

    -
    - Show - Slide - Fade - Progress -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/messager/interactive.html b/vendor/FHC-vendor/easyui/demo/messager/interactive.html deleted file mode 100644 index 9ba70bf01..000000000 --- a/vendor/FHC-vendor/easyui/demo/messager/interactive.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - Interactive Messager - jQuery EasyUI Demo - - - - - - - -

    Interactive Messager

    -

    Click on each button to display interactive message box.

    -
    - Confirm - Prompt -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/messager/position.html b/vendor/FHC-vendor/easyui/demo/messager/position.html deleted file mode 100644 index 58886f120..000000000 --- a/vendor/FHC-vendor/easyui/demo/messager/position.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - Message Box Position - jQuery EasyUI Demo - - - - - - - -

    Message Box Position

    -

    Click the buttons below to display message box on different position.

    - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/numberbox/basic.html b/vendor/FHC-vendor/easyui/demo/numberbox/basic.html deleted file mode 100644 index ba6276bae..000000000 --- a/vendor/FHC-vendor/easyui/demo/numberbox/basic.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - Basic NumberBox - jQuery EasyUI Demo - - - - - - - -

    Basic NumberBox

    -

    The NumberBox can only accept inputing numbers.

    -
    -
    -
    -
    List Price:
    - -
    -
    -
    Amount:
    - -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/numberbox/fluid.html b/vendor/FHC-vendor/easyui/demo/numberbox/fluid.html deleted file mode 100644 index 7adbd2c86..000000000 --- a/vendor/FHC-vendor/easyui/demo/numberbox/fluid.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - Fluid NumberBox - jQuery EasyUI Demo - - - - - - - -

    Fluid NumberBox

    -

    This example shows how to set the width of NumberBox to a percentage of its parent container.

    -
    -
    -
    -
    width: 100%
    - -
    -
    -
    width: 50%
    - -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/numberbox/format.html b/vendor/FHC-vendor/easyui/demo/numberbox/format.html deleted file mode 100644 index ec5b6ff2f..000000000 --- a/vendor/FHC-vendor/easyui/demo/numberbox/format.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - Format NumberBox - jQuery EasyUI Demo - - - - - - - -

    Format NumberBox

    -

    Number formatting is the ability to control how a number is displayed.

    -
    - - - - - - - - - - - - - - - - - - - - - -
    Number in the United States
    Number in France
    Currency:USD
    Currency:EUR
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/numberbox/range.html b/vendor/FHC-vendor/easyui/demo/numberbox/range.html deleted file mode 100644 index 9d8176f74..000000000 --- a/vendor/FHC-vendor/easyui/demo/numberbox/range.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Number Range - jQuery EasyUI Demo - - - - - - - -

    Number Range

    -

    The value is constrained to a specified range.

    -
    -
    -
    -
    Amount:
    - -
    -
    -
    Weight:
    - -
    -
    -
    Age:
    - -
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/numberspinner/basic.html b/vendor/FHC-vendor/easyui/demo/numberspinner/basic.html deleted file mode 100644 index a8b88637d..000000000 --- a/vendor/FHC-vendor/easyui/demo/numberspinner/basic.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - Basic NumberSpinner - jQuery EasyUI Demo - - - - - - - -

    Basic NumberSpinner

    -

    Click spinner button to change value.

    -
    - -
    - Value: -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/numberspinner/fluid.html b/vendor/FHC-vendor/easyui/demo/numberspinner/fluid.html deleted file mode 100644 index e0ce15596..000000000 --- a/vendor/FHC-vendor/easyui/demo/numberspinner/fluid.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Fluid NumberSpinner - jQuery EasyUI Demo - - - - - - - -

    Fluid NumberSpinner

    -

    This example shows how to set the width of NumberSpinner to a percentage of its parent container.

    -
    -

    width: 50%

    - -

    width: 30%

    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/numberspinner/increment.html b/vendor/FHC-vendor/easyui/demo/numberspinner/increment.html deleted file mode 100644 index 95b5a5f59..000000000 --- a/vendor/FHC-vendor/easyui/demo/numberspinner/increment.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - Increment Number - jQuery EasyUI Demo - - - - - - - -

    Increment Number

    -

    The sample shows how to set the increment step.

    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/numberspinner/range.html b/vendor/FHC-vendor/easyui/demo/numberspinner/range.html deleted file mode 100644 index 00e130741..000000000 --- a/vendor/FHC-vendor/easyui/demo/numberspinner/range.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - Number Range - jQuery EasyUI Demo - - - - - - - -

    Number Range

    -

    The value is constrained to a range between 10 and 100.

    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/pagination/attaching.html b/vendor/FHC-vendor/easyui/demo/pagination/attaching.html deleted file mode 100644 index 5c87427e3..000000000 --- a/vendor/FHC-vendor/easyui/demo/pagination/attaching.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Attaching Other Components - jQuery EasyUI Demo - - - - - - - -

    Attaching Other Components

    -

    Any other components can be attached to page bar.

    -
    -
    -
    -
    -
    - - - - - -
    - - - -
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/pagination/basic.html b/vendor/FHC-vendor/easyui/demo/pagination/basic.html deleted file mode 100644 index 98f7c4950..000000000 --- a/vendor/FHC-vendor/easyui/demo/pagination/basic.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - Basic Pagination - jQuery EasyUI Demo - - - - - - - -

    Basic Pagination

    -

    The user can change page number and page size on page bar.

    -
    -
    -
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/pagination/custombuttons.html b/vendor/FHC-vendor/easyui/demo/pagination/custombuttons.html deleted file mode 100644 index 2a75b88f7..000000000 --- a/vendor/FHC-vendor/easyui/demo/pagination/custombuttons.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - Custom Pagination Buttons - jQuery EasyUI Demo - - - - - - - -

    Custom Pagination Buttons

    -

    The customized buttons can be appended to page bar.

    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/pagination/layout.html b/vendor/FHC-vendor/easyui/demo/pagination/layout.html deleted file mode 100644 index dcb679ab3..000000000 --- a/vendor/FHC-vendor/easyui/demo/pagination/layout.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - Pagination Layout - jQuery EasyUI Demo - - - - - - - -

    Pagination Layout

    -

    The pagination layout supports various types of pages which you can choose.

    -
    -
    -
    -
    -
    - -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/pagination/links.html b/vendor/FHC-vendor/easyui/demo/pagination/links.html deleted file mode 100644 index 5ec8b3826..000000000 --- a/vendor/FHC-vendor/easyui/demo/pagination/links.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - Pagination Links - jQuery EasyUI Demo - - - - - - - -

    Pagination Links

    -

    The example shows how to customize numbered pagination links.

    -
    -
    -
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/pagination/simple.html b/vendor/FHC-vendor/easyui/demo/pagination/simple.html deleted file mode 100644 index ca59ae2c6..000000000 --- a/vendor/FHC-vendor/easyui/demo/pagination/simple.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - Simplify Pagination - jQuery EasyUI Demo - - - - - - - -

    Simplify Pagination

    -

    The sample shows how to simplify pagination.

    -
    -
    -
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/panel/_content.html b/vendor/FHC-vendor/easyui/demo/panel/_content.html deleted file mode 100644 index f7b8e2ee7..000000000 --- a/vendor/FHC-vendor/easyui/demo/panel/_content.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - AJAX Content - - -

    Here is the content loaded via AJAX.

    -
      -
    • easyui is a collection of user-interface plugin based on jQuery.
    • -
    • easyui provides essential functionality for building modern, interactive, javascript applications.
    • -
    • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
    • -
    • complete framework for HTML5 web page.
    • -
    • easyui save your time and scales while developing your products.
    • -
    • easyui is very easy but powerful.
    • -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/panel/basic.html b/vendor/FHC-vendor/easyui/demo/panel/basic.html deleted file mode 100644 index e2220dfbb..000000000 --- a/vendor/FHC-vendor/easyui/demo/panel/basic.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Basic Panel - jQuery EasyUI Demo - - - - - - - -

    Basic Panel

    -

    The panel is a container for other components or elements.

    -
    - Open - Close -
    -
    -

    jQuery EasyUI framework helps you build your web pages easily.

    -
      -
    • easyui is a collection of user-interface plugin based on jQuery.
    • -
    • easyui provides essential functionality for building modem, interactive, javascript applications.
    • -
    • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
    • -
    • complete framework for HTML5 web page.
    • -
    • easyui save your time and scales while developing your products.
    • -
    • easyui is very easy but powerful.
    • -
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/panel/customtools.html b/vendor/FHC-vendor/easyui/demo/panel/customtools.html deleted file mode 100644 index 299b7fa2f..000000000 --- a/vendor/FHC-vendor/easyui/demo/panel/customtools.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - Custom Panel Tools - jQuery EasyUI Demo - - - - - - - -

    Custom Panel Tools

    -

    Click the right top buttons to perform actions with panel.

    -
    -
    -

    jQuery EasyUI framework helps you build your web pages easily.

    -
      -
    • easyui is a collection of user-interface plugin based on jQuery.
    • -
    • easyui provides essential functionality for building modem, interactive, javascript applications.
    • -
    • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
    • -
    • complete framework for HTML5 web page.
    • -
    • easyui save your time and scales while developing your products.
    • -
    • easyui is very easy but powerful.
    • -
    -
    -
    - - - - -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/panel/fluid.html b/vendor/FHC-vendor/easyui/demo/panel/fluid.html deleted file mode 100644 index ff2be8815..000000000 --- a/vendor/FHC-vendor/easyui/demo/panel/fluid.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Fluid Panel - jQuery EasyUI Demo - - - - - - - -

    Fluid Panel

    -

    This example shows how to set the width of Panel to a percentage of its parent container.

    -
    -
    -
    -

    The panel has a width of 100%.

    -

    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/panel/footer.html b/vendor/FHC-vendor/easyui/demo/panel/footer.html deleted file mode 100644 index e04a87b6a..000000000 --- a/vendor/FHC-vendor/easyui/demo/panel/footer.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - Panel Footer - jQuery EasyUI Demo - - - - - - - -

    Panel Footer

    -

    The panel footer is displayed at the bottom of the panel and can consist of any other components.

    -
    -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/panel/loadcontent.html b/vendor/FHC-vendor/easyui/demo/panel/loadcontent.html deleted file mode 100644 index c4b141749..000000000 --- a/vendor/FHC-vendor/easyui/demo/panel/loadcontent.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - Load Panel Content - jQuery EasyUI Demo - - - - - - - -

    Load Panel Content

    -

    Click the refresh button on top right of panel to load content.

    -
    -
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/panel/nestedpanel.html b/vendor/FHC-vendor/easyui/demo/panel/nestedpanel.html deleted file mode 100644 index a2c1320c3..000000000 --- a/vendor/FHC-vendor/easyui/demo/panel/nestedpanel.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Nested Panel - jQuery EasyUI Demo - - - - - - - -

    Nested Panel

    -

    The panel can be placed inside containers and can contain other components.

    -
    -
    -
    -
    - Left Content -
    -
    - Right Content -
    -
    - Center Content -
    -
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/panel/paneltools.html b/vendor/FHC-vendor/easyui/demo/panel/paneltools.html deleted file mode 100644 index eb0d87f06..000000000 --- a/vendor/FHC-vendor/easyui/demo/panel/paneltools.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - Panel Tools - jQuery EasyUI Demo - - - - - - - -

    Panel Tools

    -

    Click the right top buttons to perform actions with panel.

    - -
    -
    -

    jQuery EasyUI framework helps you build your web pages easily.

    -
      -
    • easyui is a collection of user-interface plugin based on jQuery.
    • -
    • easyui provides essential functionality for building modem, interactive, javascript applications.
    • -
    • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
    • -
    • complete framework for HTML5 web page.
    • -
    • easyui save your time and scales while developing your products.
    • -
    • easyui is very easy but powerful.
    • -
    -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/progressbar/basic.html b/vendor/FHC-vendor/easyui/demo/progressbar/basic.html deleted file mode 100644 index 910777b04..000000000 --- a/vendor/FHC-vendor/easyui/demo/progressbar/basic.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Basic ProgressBar - jQuery EasyUI Demo - - - - - - - -

    Basic ProgressBar

    -

    Click the button below to show progress information.

    -
    - Start -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/progressbar/fluid.html b/vendor/FHC-vendor/easyui/demo/progressbar/fluid.html deleted file mode 100644 index de88af209..000000000 --- a/vendor/FHC-vendor/easyui/demo/progressbar/fluid.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Fluid ProgressBar - jQuery EasyUI Demo - - - - - - - -

    Fluid ProgressBar

    -

    This example shows how to set the width of ProgressBar to a percentage of its parent container.

    -
    -

    width: 50%

    -
    -

    width: 30%

    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/propertygrid/basic.html b/vendor/FHC-vendor/easyui/demo/propertygrid/basic.html deleted file mode 100644 index a7c3cb530..000000000 --- a/vendor/FHC-vendor/easyui/demo/propertygrid/basic.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - Basic PropertyGrid - jQuery EasyUI Demo - - - - - - - -

    Basic PropertyGrid

    -

    Click on row to change each property value.

    - - -
    - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/propertygrid/customcolumns.html b/vendor/FHC-vendor/easyui/demo/propertygrid/customcolumns.html deleted file mode 100644 index a8aabd3c2..000000000 --- a/vendor/FHC-vendor/easyui/demo/propertygrid/customcolumns.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Customize Columns of PropertyGrid - jQuery EasyUI Demo - - - - - - - -

    Customize Columns of PropertyGrid

    -

    The columns of PropertyGrid can be changed.

    -
    - -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/propertygrid/groupformat.html b/vendor/FHC-vendor/easyui/demo/propertygrid/groupformat.html deleted file mode 100644 index 27cc30508..000000000 --- a/vendor/FHC-vendor/easyui/demo/propertygrid/groupformat.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Group Format - jQuery EasyUI Demo - - - - - - - -

    Group Format

    -

    The user can change the group information.

    -
    - -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/propertygrid/propertygrid_data1.json b/vendor/FHC-vendor/easyui/demo/propertygrid/propertygrid_data1.json deleted file mode 100644 index 12b2d0074..000000000 --- a/vendor/FHC-vendor/easyui/demo/propertygrid/propertygrid_data1.json +++ /dev/null @@ -1,20 +0,0 @@ -{"total":7,"rows":[ - {"name":"Name","value":"Bill Smith","group":"ID Settings","editor":"text"}, - {"name":"Address","value":"","group":"ID Settings","editor":"text"}, - {"name":"Age","value":"40","group":"ID Settings","editor":"numberbox"}, - {"name":"Birthday","value":"01/02/2012","group":"ID Settings","editor":"datebox"}, - {"name":"SSN","value":"123-456-7890","group":"ID Settings","editor":"text"}, - {"name":"Email","value":"bill@gmail.com","group":"Marketing Settings","editor":{ - "type":"validatebox", - "options":{ - "validType":"email" - } - }}, - {"name":"FrequentBuyer","value":"false","group":"Marketing Settings","editor":{ - "type":"checkbox", - "options":{ - "on":true, - "off":false - } - }} -]} \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/resizable/basic.html b/vendor/FHC-vendor/easyui/demo/resizable/basic.html deleted file mode 100644 index a4d5a61ac..000000000 --- a/vendor/FHC-vendor/easyui/demo/resizable/basic.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - Basic Resizable - jQuery EasyUI Demo - - - - - - - -

    Basic Resizable

    -

    Click on the edge of box and move the edge to resize the box.

    -
    -
    -
    Resize Me
    -
    -
    -
    Title
    -
    Drag and Resize Me
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/searchbox/basic.html b/vendor/FHC-vendor/easyui/demo/searchbox/basic.html deleted file mode 100644 index 1eb527567..000000000 --- a/vendor/FHC-vendor/easyui/demo/searchbox/basic.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - Basic SearchBox - jQuery EasyUI Demo - - - - - - - -

    Basic SearchBox

    -

    Click search button or press enter key in input box to do searching.

    -
    - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/searchbox/category.html b/vendor/FHC-vendor/easyui/demo/searchbox/category.html deleted file mode 100644 index 5a2b866ee..000000000 --- a/vendor/FHC-vendor/easyui/demo/searchbox/category.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - Search Category - jQuery EasyUI Demo - - - - - - - -

    Search Category

    -

    Select a category and click search button or press enter key in input box to do searching.

    -
    - -
    -
    All News
    -
    Sports News
    -
    - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/searchbox/fluid.html b/vendor/FHC-vendor/easyui/demo/searchbox/fluid.html deleted file mode 100644 index 946aaff14..000000000 --- a/vendor/FHC-vendor/easyui/demo/searchbox/fluid.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - Fluid SearchBox - jQuery EasyUI Demo - - - - - - - -

    Fluid SearchBox

    -

    This example shows how to set the width of SearchBox to a percentage of its parent container.

    -
    -

    width: 50%

    - -

    width: 30%

    - -
    -
    All News
    -
    Sports News
    -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/slider/basic.html b/vendor/FHC-vendor/easyui/demo/slider/basic.html deleted file mode 100644 index e2a0f5983..000000000 --- a/vendor/FHC-vendor/easyui/demo/slider/basic.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - Basic Slider - jQuery EasyUI Demo - - - - - - - -

    Basic Slider

    -

    Drag the slider to change value.

    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/slider/fluid.html b/vendor/FHC-vendor/easyui/demo/slider/fluid.html deleted file mode 100644 index 17ff2ddd2..000000000 --- a/vendor/FHC-vendor/easyui/demo/slider/fluid.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Fluid Slider - jQuery EasyUI Demo - - - - - - - -

    Fluid Slider

    -

    This example shows how to set the width of Slider to a percentage of its parent container.

    -
    -

    width: 50%

    - -

    width: 30%

    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/slider/formattip.html b/vendor/FHC-vendor/easyui/demo/slider/formattip.html deleted file mode 100644 index f0d666b1a..000000000 --- a/vendor/FHC-vendor/easyui/demo/slider/formattip.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - Format Tip Information - jQuery EasyUI Demo - - - - - - - -

    Format Tip Information

    -

    This sample shows how to format tip information.

    -
    - -
    jQuery EasyUI
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/slider/nonlinear.html b/vendor/FHC-vendor/easyui/demo/slider/nonlinear.html deleted file mode 100644 index 757083386..000000000 --- a/vendor/FHC-vendor/easyui/demo/slider/nonlinear.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - Non Linear Slider - jQuery EasyUI Demo - - - - - - - -

    Non Linear Slider

    -

    This example shows how to create a slider with a non-linear scale.

    -
    -
    - -
    -
    -
    -
    - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/slider/range.html b/vendor/FHC-vendor/easyui/demo/slider/range.html deleted file mode 100644 index a994e577a..000000000 --- a/vendor/FHC-vendor/easyui/demo/slider/range.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - Range Slider - jQuery EasyUI Demo - - - - - - - -

    Range Slider

    -

    This sample shows how to define a range slider.

    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/slider/rule.html b/vendor/FHC-vendor/easyui/demo/slider/rule.html deleted file mode 100644 index 6f0e08c5b..000000000 --- a/vendor/FHC-vendor/easyui/demo/slider/rule.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Slider Rule - jQuery EasyUI Demo - - - - - - - -

    Slider Rule

    -

    This sample shows how to define slider rule.

    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/slider/vertical.html b/vendor/FHC-vendor/easyui/demo/slider/vertical.html deleted file mode 100644 index 6bc8b59f6..000000000 --- a/vendor/FHC-vendor/easyui/demo/slider/vertical.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - Vertical Slider - jQuery EasyUI Demo - - - - - - - -

    Vertical Slider

    -

    This sample shows how to create a vertical slider.

    -
    -
    - -
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/splitbutton/actions.html b/vendor/FHC-vendor/easyui/demo/splitbutton/actions.html deleted file mode 100644 index 0fa343ed8..000000000 --- a/vendor/FHC-vendor/easyui/demo/splitbutton/actions.html +++ /dev/null @@ -1,64 +0,0 @@ - - - - - SplitButton Actions - jQuery EasyUI Demo - - - - - - - -

    SplitButton Actions

    -

    Click the buttons below to perform actions.

    - -
    - Home - Edit - Ok - Help -
    -
    -
    Undo
    -
    Redo
    - -
    Cut
    -
    Copy
    -
    Paste
    - -
    - Toolbar -
    -
    Address
    -
    Link
    -
    Navigation Toolbar
    -
    Bookmark Toolbar
    - -
    New Toolbar...
    -
    -
    -
    Delete
    -
    Select All
    -
    -
    -
    Ok
    -
    Cancel
    -
    -
    -
    Help
    -
    Update
    -
    - About - -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/splitbutton/basic.html b/vendor/FHC-vendor/easyui/demo/splitbutton/basic.html deleted file mode 100644 index 2f31ec1b0..000000000 --- a/vendor/FHC-vendor/easyui/demo/splitbutton/basic.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - Basic SplitButton - jQuery EasyUI Demo - - - - - - - -

    Basic SplitButton

    -

    Move mouse over the arrow area of button to drop down menu.

    -
    -
    - Home - Edit - Ok - Help -
    -
    -
    Undo
    -
    Redo
    - -
    Cut
    -
    Copy
    -
    Paste
    - -
    - Toolbar -
    -
    Address
    -
    Link
    -
    Navigation Toolbar
    -
    Bookmark Toolbar
    - -
    New Toolbar...
    -
    -
    -
    Delete
    -
    Select All
    -
    -
    -
    Ok
    -
    Cancel
    -
    -
    -
    Help
    -
    Update
    -
    - About - -
    -
    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/switchbutton/action.html b/vendor/FHC-vendor/easyui/demo/switchbutton/action.html deleted file mode 100644 index 0a6e197d8..000000000 --- a/vendor/FHC-vendor/easyui/demo/switchbutton/action.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - SwitchButton Actions - jQuery EasyUI Demo - - - - - - - -

    SwitchButton Actions

    -

    Click the buttons below to perform actions.

    -
    - -
    - Disable - Enable -
    - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/switchbutton/basic.html b/vendor/FHC-vendor/easyui/demo/switchbutton/basic.html deleted file mode 100644 index 56a09b586..000000000 --- a/vendor/FHC-vendor/easyui/demo/switchbutton/basic.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Basic SwitchButton - jQuery EasyUI Demo - - - - - - - -

    Basic SwitchButton

    -

    Click the switchbutton to change its state.

    -
    - - - - - - - - - - - - - - -
    Receive mail:
    Shared network:
    Subscribed:
    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/autoheight.html b/vendor/FHC-vendor/easyui/demo/tabs/autoheight.html deleted file mode 100644 index e34a3dc8e..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/autoheight.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - Auto Height for Tabs - jQuery EasyUI Demo - - - - - - - -

    Auto Height for Tabs

    -

    The tabs height is auto adjusted according to tab panel content.

    -
    -
    -
    -

    jQuery EasyUI framework helps you build your web pages easily.

    -
      -
    • easyui is a collection of user-interface plugin based on jQuery.
    • -
    • easyui provides essential functionality for building modem, interactive, javascript applications.
    • -
    • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
    • -
    • complete framework for HTML5 web page.
    • -
    • easyui save your time and scales while developing your products.
    • -
    • easyui is very easy but powerful.
    • -
    -
    -
    -
      -
      -
      - This is the help content. -
      -
      - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/basic.html b/vendor/FHC-vendor/easyui/demo/tabs/basic.html deleted file mode 100644 index 293b91ce7..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/basic.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - Basic Tabs - jQuery EasyUI Demo - - - - - - - -

      Basic Tabs

      -

      Click tab strip to swap tab panel content.

      -
      -
      -
      -

      jQuery EasyUI framework helps you build your web pages easily.

      -
        -
      • easyui is a collection of user-interface plugin based on jQuery.
      • -
      • easyui provides essential functionality for building modem, interactive, javascript applications.
      • -
      • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
      • -
      • complete framework for HTML5 web page.
      • -
      • easyui save your time and scales while developing your products.
      • -
      • easyui is very easy but powerful.
      • -
      -
      -
      -
        -
        -
        - This is the help content. -
        -
        - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/dropdown.html b/vendor/FHC-vendor/easyui/demo/tabs/dropdown.html deleted file mode 100644 index 7c9daacf3..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/dropdown.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - Tabs with DropDown - jQuery EasyUI Demo - - - - - - - -

        Tabs with DropDown

        -

        This sample shows how to add a dropdown menu over a tab strip.

        -
        -
        -
        -

        jQuery EasyUI framework helps you build your web pages easily.

        -
          -
        • easyui is a collection of user-interface plugin based on jQuery.
        • -
        • easyui provides essential functionality for building modem, interactive, javascript applications.
        • -
        • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
        • -
        • complete framework for HTML5 web page.
        • -
        • easyui save your time and scales while developing your products.
        • -
        • easyui is very easy but powerful.
        • -
        -
        -
        -
          -
          -
          - This is the help content. -
          -
          -
          -
          Welcome
          -
          Help Contents
          -
          Search
          -
          Dynamic Help
          -
          - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/fixedwidth.html b/vendor/FHC-vendor/easyui/demo/tabs/fixedwidth.html deleted file mode 100644 index 390e9878e..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/fixedwidth.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - Fixed Tab Width - jQuery EasyUI Demo - - - - - - - -

          Fixed Tab Width

          -

          The tab strips have fixed width and height.

          -
          -
          -
          -

          Home Content.

          -
          -
          -

          Maps Content.

          -
          -
          -

          Journal Content.

          -
          -
          -

          History Content.

          -
          -
          -

          References Content.

          -
          -
          -

          Contact Content.

          -
          -
          - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/fluid.html b/vendor/FHC-vendor/easyui/demo/tabs/fluid.html deleted file mode 100644 index d31d6fb65..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/fluid.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - Fluid Tabs - jQuery EasyUI Demo - - - - - - - -

          Fluid Tabs

          -

          This example shows how to set the width of Tabs to a percentage of its parent container.

          -
          -
          -
          -

          The tabs has a width of 100%.

          -
          -
          -
          -
          - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/hover.html b/vendor/FHC-vendor/easyui/demo/tabs/hover.html deleted file mode 100644 index 5b62ac90b..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/hover.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - Hover Tabs - jQuery EasyUI Demo - - - - - - - -

          Hover Tabs

          -

          Move mouse over the tab strip to open the tab panel.

          -
          -
          -
          -

          jQuery EasyUI framework helps you build your web pages easily.

          -
            -
          • easyui is a collection of user-interface plugin based on jQuery.
          • -
          • easyui provides essential functionality for building modem, interactive, javascript applications.
          • -
          • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
          • -
          • complete framework for HTML5 web page.
          • -
          • easyui save your time and scales while developing your products.
          • -
          • easyui is very easy but powerful.
          • -
          -
          -
          -
            -
            -
            - This is the help content. -
            -
            - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/images/modem.png b/vendor/FHC-vendor/easyui/demo/tabs/images/modem.png deleted file mode 100644 index be5a2eb2f..000000000 Binary files a/vendor/FHC-vendor/easyui/demo/tabs/images/modem.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/demo/tabs/images/pda.png b/vendor/FHC-vendor/easyui/demo/tabs/images/pda.png deleted file mode 100644 index 1458d9bfa..000000000 Binary files a/vendor/FHC-vendor/easyui/demo/tabs/images/pda.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/demo/tabs/images/scanner.png b/vendor/FHC-vendor/easyui/demo/tabs/images/scanner.png deleted file mode 100644 index 974635d94..000000000 Binary files a/vendor/FHC-vendor/easyui/demo/tabs/images/scanner.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/demo/tabs/images/tablet.png b/vendor/FHC-vendor/easyui/demo/tabs/images/tablet.png deleted file mode 100644 index fa871f540..000000000 Binary files a/vendor/FHC-vendor/easyui/demo/tabs/images/tablet.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/demo/tabs/nestedtabs.html b/vendor/FHC-vendor/easyui/demo/tabs/nestedtabs.html deleted file mode 100644 index 94c2ac5dd..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/nestedtabs.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - Nested Tabs - jQuery EasyUI Demo - - - - - - - -

            Nested Tabs

            -

            The tab panel can contain sub tabs or other components.

            -
            -
            -
            -
            -
            Content 1
            -
            Content 2
            -
            Content 3
            -
            -
            -
            -
            - -
            -
            - - - - - - - - - - - - - - - - - - - - -
            Title1Title2Title3
            d11d12d13
            d21d22d23
            -
            -
            - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/striptools.html b/vendor/FHC-vendor/easyui/demo/tabs/striptools.html deleted file mode 100644 index 83e6ba0d1..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/striptools.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - Tabs Strip Tools - jQuery EasyUI Demo - - - - - - - -

            Tabs Strip Tools

            -

            Click the mini-buttons on the tab strip to perform actions.

            -
            -
            -
            -

            jQuery EasyUI framework helps you build your web pages easily.

            -
              -
            • easyui is a collection of user-interface plugin based on jQuery.
            • -
            • easyui provides essential functionality for building modem, interactive, javascript applications.
            • -
            • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
            • -
            • complete framework for HTML5 web page.
            • -
            • easyui save your time and scales while developing your products.
            • -
            • easyui is very easy but powerful.
            • -
            -
            -
            - This is the help content. -
            -
            -
            - - - -
            - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/style.html b/vendor/FHC-vendor/easyui/demo/tabs/style.html deleted file mode 100644 index f27eae1de..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/style.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - Tabs Style - jQuery EasyUI Demo - - - - - - - -

            Tabs Style

            -

            Click the options below to change the tabs style.

            -
            - plain
            - narrow
            - pill
            - justified -
            -
            -
            -

            jQuery EasyUI framework helps you build your web pages easily.

            -
              -
            • easyui is a collection of user-interface plugin based on jQuery.
            • -
            • easyui provides essential functionality for building modem, interactive, javascript applications.
            • -
            • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
            • -
            • complete framework for HTML5 web page.
            • -
            • easyui save your time and scales while developing your products.
            • -
            • easyui is very easy but powerful.
            • -
            -
            -
            -
              -
              -
              - This is the help content. -
              -
              - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/tabimage.html b/vendor/FHC-vendor/easyui/demo/tabs/tabimage.html deleted file mode 100644 index e9df65de8..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/tabimage.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - Tabs with Images - jQuery EasyUI Demo - - - - - - - -

              Tabs with Images

              -

              The tab strip can display big images.

              -
              -
              -
              -

              A modem (modulator-demodulator) is a device that modulates an analog carrier signal to encode digital information, and also demodulates such a carrier signal to decode the transmitted information.

              -
              -
              -

              In computing, an image scanner—often abbreviated to just scanner—is a device that optically scans images, printed text, handwriting, or an object, and converts it to a digital image.

              -
              -
              -

              A personal digital assistant (PDA), also known as a palmtop computer, or personal data assistant, is a mobile device that functions as a personal information manager. PDAs are largely considered obsolete with the widespread adoption of smartphones.

              -
              -
              -

              A tablet computer, or simply tablet, is a one-piece mobile computer. Devices typically have a touchscreen, with finger or stylus gestures replacing the conventional computer mouse.

              -
              -
              - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/tabposition.html b/vendor/FHC-vendor/easyui/demo/tabs/tabposition.html deleted file mode 100644 index 9f1bc19ea..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/tabposition.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - Tab Position - jQuery EasyUI Demo - - - - - - - -

              Tab Position

              -

              Click the 'position' drop-down list and select an item to change the tab position.

              -
              - Position: - -
              -
              -
              -

              jQuery EasyUI framework helps you build your web pages easily.

              -
                -
              • easyui is a collection of user-interface plugin based on jQuery.
              • -
              • easyui provides essential functionality for building modem, interactive, javascript applications.
              • -
              • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
              • -
              • complete framework for HTML5 web page.
              • -
              • easyui save your time and scales while developing your products.
              • -
              • easyui is very easy but powerful.
              • -
              -
              -
              -
                -
                -
                - This is the help content. -
                -
                - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/tabstools.html b/vendor/FHC-vendor/easyui/demo/tabs/tabstools.html deleted file mode 100644 index 48bdda83e..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/tabstools.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - Tabs Tools - jQuery EasyUI Demo - - - - - - - -

                Tabs Tools

                -

                Click the buttons on the top right of tabs header to add or remove tab panel.

                -
                -
                -
                -
                - - -
                - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tabs/tree_data1.json b/vendor/FHC-vendor/easyui/demo/tabs/tree_data1.json deleted file mode 100644 index 83fb0d619..000000000 --- a/vendor/FHC-vendor/easyui/demo/tabs/tree_data1.json +++ /dev/null @@ -1,49 +0,0 @@ -[{ - "id":1, - "text":"My Documents", - "children":[{ - "id":11, - "text":"Photos", - "state":"closed", - "children":[{ - "id":111, - "text":"Friend" - },{ - "id":112, - "text":"Wife" - },{ - "id":113, - "text":"Company" - }] - },{ - "id":12, - "text":"Program Files", - "children":[{ - "id":121, - "text":"Intel" - },{ - "id":122, - "text":"Java", - "attributes":{ - "p1":"Custom Attribute1", - "p2":"Custom Attribute2" - } - },{ - "id":123, - "text":"Microsoft Office" - },{ - "id":124, - "text":"Games", - "checked":true - }] - },{ - "id":13, - "text":"index.html" - },{ - "id":14, - "text":"about.html" - },{ - "id":15, - "text":"welcome.html" - }] -}] diff --git a/vendor/FHC-vendor/easyui/demo/textbox/basic.html b/vendor/FHC-vendor/easyui/demo/textbox/basic.html deleted file mode 100644 index dc631be1c..000000000 --- a/vendor/FHC-vendor/easyui/demo/textbox/basic.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - Basic TextBox - jQuery EasyUI Demo - - - - - - - -

                Basic TextBox

                -

                The textbox allows a user to enter information.

                -
                -
                -
                -
                Email:
                - -
                -
                -
                First Name:
                - -
                -
                -
                Last Name:
                - -
                -
                -
                Company:
                - -
                - -
                - Register -
                -
                - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/textbox/button.html b/vendor/FHC-vendor/easyui/demo/textbox/button.html deleted file mode 100644 index cd2242592..000000000 --- a/vendor/FHC-vendor/easyui/demo/textbox/button.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - TextBox with Button - jQuery EasyUI Demo - - - - - - - -

                TextBox with Button

                -

                The button can be attached to a textbox.

                -
                -
                - -
                -
                - -
                - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/textbox/clearicon.html b/vendor/FHC-vendor/easyui/demo/textbox/clearicon.html deleted file mode 100644 index 10d6794a5..000000000 --- a/vendor/FHC-vendor/easyui/demo/textbox/clearicon.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - TextBox with Clear Icon - jQuery EasyUI Demo - - - - - - - -

                TextBox with Clear Icon

                -

                This example shows how to create an textbox with an icon to clear the input element itself.

                -
                - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/textbox/custom.html b/vendor/FHC-vendor/easyui/demo/textbox/custom.html deleted file mode 100644 index 5b15fd717..000000000 --- a/vendor/FHC-vendor/easyui/demo/textbox/custom.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - Custom TextBox - jQuery EasyUI Demo - - - - - - - -

                Custom TextBox

                -

                This example shows how to custom a login form.

                -
                -
                -
                - -
                -
                - -
                -
                - - Remember me -
                - -
                - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/textbox/fluid.html b/vendor/FHC-vendor/easyui/demo/textbox/fluid.html deleted file mode 100644 index 69d3aee3d..000000000 --- a/vendor/FHC-vendor/easyui/demo/textbox/fluid.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Fluid TextBox - jQuery EasyUI Demo - - - - - - - -

                Fluid TextBox

                -

                This example shows how to set the width of TextBox to a percentage of its parent container.

                -
                -

                width: 50%

                - -

                width: 30%

                - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/textbox/icons.html b/vendor/FHC-vendor/easyui/demo/textbox/icons.html deleted file mode 100644 index a594410a0..000000000 --- a/vendor/FHC-vendor/easyui/demo/textbox/icons.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - TextBox with Icons - jQuery EasyUI Demo - - - - - - - -

                TextBox with Icons

                -

                Click the icons on textbox to perform actions.

                -
                -
                - Select Icon Align: - -
                - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/textbox/multiline.html b/vendor/FHC-vendor/easyui/demo/textbox/multiline.html deleted file mode 100644 index 064ffd7a7..000000000 --- a/vendor/FHC-vendor/easyui/demo/textbox/multiline.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - Multiline TextBox - jQuery EasyUI Demo - - - - - - - -

                Multiline TextBox

                -

                This example shows how to define a textbox for the user to enter multi-line text input.

                -
                - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/textbox/size.html b/vendor/FHC-vendor/easyui/demo/textbox/size.html deleted file mode 100644 index 57c9a0919..000000000 --- a/vendor/FHC-vendor/easyui/demo/textbox/size.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - TextBox Size - jQuery EasyUI Demo - - - - - - - -

                TextBox Size

                -

                The textbox can vary in size.

                -
                -
                - -
                -
                - -
                -
                - -
                -
                - -
                - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/timespinner/actions.html b/vendor/FHC-vendor/easyui/demo/timespinner/actions.html deleted file mode 100644 index 62a70bfd5..000000000 --- a/vendor/FHC-vendor/easyui/demo/timespinner/actions.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - TimeSpinner Actions - jQuery EasyUI Demo - - - - - - - -

                TimeSpinner Actions

                -

                Click the buttons below to perform actions.

                - - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/timespinner/basic.html b/vendor/FHC-vendor/easyui/demo/timespinner/basic.html deleted file mode 100644 index 8c32d3006..000000000 --- a/vendor/FHC-vendor/easyui/demo/timespinner/basic.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - Basic TimeSpinner - jQuery EasyUI Demo - - - - - - - -

                Basic TimeSpinner

                -

                Click spin button to adjust time.

                -
                - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/timespinner/fluid.html b/vendor/FHC-vendor/easyui/demo/timespinner/fluid.html deleted file mode 100644 index 8588fe953..000000000 --- a/vendor/FHC-vendor/easyui/demo/timespinner/fluid.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Fluid TimeSpinner - jQuery EasyUI Demo - - - - - - - -

                Fluid TimeSpinner

                -

                This example shows how to set the width of TimeSpinner to a percentage of its parent container.

                -
                -

                width: 50%

                - -

                width: 30%

                - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/timespinner/range.html b/vendor/FHC-vendor/easyui/demo/timespinner/range.html deleted file mode 100644 index 63bbf55c8..000000000 --- a/vendor/FHC-vendor/easyui/demo/timespinner/range.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - Time Range - jQuery EasyUI Demo - - - - - - - -

                Time Range

                -

                The time value is constrained in specified range.

                -
                - From 08:30 to 18:00 -
                - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tooltip/_dialog.html b/vendor/FHC-vendor/easyui/demo/tooltip/_dialog.html deleted file mode 100644 index 2c1b464d2..000000000 --- a/vendor/FHC-vendor/easyui/demo/tooltip/_dialog.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - Dialog Content - - -
                -
                -
                User Name:
                - -
                -
                -
                Password:
                - -
                -
                - Login - Cancel -
                -
                - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tooltip/ajax.html b/vendor/FHC-vendor/easyui/demo/tooltip/ajax.html deleted file mode 100644 index 2de45de7e..000000000 --- a/vendor/FHC-vendor/easyui/demo/tooltip/ajax.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Ajax Tooltip - jQuery EasyUI Demo - - - - - - - -

                Ajax Tooltip

                -

                The tooltip content can be loaded via AJAX.

                -
                - Hove me to display tooltip content via AJAX. - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tooltip/basic.html b/vendor/FHC-vendor/easyui/demo/tooltip/basic.html deleted file mode 100644 index b9ad0e0d3..000000000 --- a/vendor/FHC-vendor/easyui/demo/tooltip/basic.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - Basic Tooltip - jQuery EasyUI Demo - - - - - - - -

                Basic Tooltip

                -

                Hover the links to display tooltip message.

                -
                -

                The tooltip can use each elements title attribute. - Hover me to display tooltip. -

                - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tooltip/customcontent.html b/vendor/FHC-vendor/easyui/demo/tooltip/customcontent.html deleted file mode 100644 index 3e1ce9766..000000000 --- a/vendor/FHC-vendor/easyui/demo/tooltip/customcontent.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Custom Tooltip Content - jQuery EasyUI Demo - - - - - - - -

                Custom Tooltip Content

                -

                Access to each elements attribute to get the tooltip content.

                -
                -
                -
                -
                - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tooltip/customstyle.html b/vendor/FHC-vendor/easyui/demo/tooltip/customstyle.html deleted file mode 100644 index b5c8f3ec0..000000000 --- a/vendor/FHC-vendor/easyui/demo/tooltip/customstyle.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - Custom Tooltip Style - jQuery EasyUI Demo - - - - - - - -

                Custom Tooltip Style

                -

                This sample shows how to change the tooltip style.

                -
                -
                -
                Hover Me
                -
                -
                -
                Hover Me
                -
                - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tooltip/position.html b/vendor/FHC-vendor/easyui/demo/tooltip/position.html deleted file mode 100644 index ac97d67b7..000000000 --- a/vendor/FHC-vendor/easyui/demo/tooltip/position.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - Tooltip Position - jQuery EasyUI Demo - - - - - - - -

                Tooltip Position

                -

                Click the drop-down list below to change where the tooltip appears.

                -
                - Select position: - -
                -
                Hover Me
                -
                - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tooltip/toolbar.html b/vendor/FHC-vendor/easyui/demo/tooltip/toolbar.html deleted file mode 100644 index ac1dff78d..000000000 --- a/vendor/FHC-vendor/easyui/demo/tooltip/toolbar.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - Tooltip as Toolbar - jQuery EasyUI Demo - - - - - - - -

                Tooltip as Toolbar

                -

                This sample shows how to create a tooltip style toolbar.

                -
                -
                -

                Hover me to display toolbar.

                -
                -
                -
                - - - - - -
                -
                - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tooltip/tooltipdialog.html b/vendor/FHC-vendor/easyui/demo/tooltip/tooltipdialog.html deleted file mode 100644 index caee52461..000000000 --- a/vendor/FHC-vendor/easyui/demo/tooltip/tooltipdialog.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - - Tooltip Dialog - jQuery EasyUI Demo - - - - - - - -

                Tooltip Dialog

                -

                This sample shows how to create a tooltip dialog.

                -
                -
                -

                Click here to see the tooltip dialog. -

                - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tree/actions.html b/vendor/FHC-vendor/easyui/demo/tree/actions.html deleted file mode 100644 index b5e2d4bce..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/actions.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - Tree Actions - jQuery EasyUI Demo - - - - - - - -

                Tree Actions

                -

                Click the buttons below to perform actions.

                - -
                -
                  -
                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tree/animation.html b/vendor/FHC-vendor/easyui/demo/tree/animation.html deleted file mode 100644 index d7ea6ccb1..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/animation.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - Animation Tree - jQuery EasyUI Demo - - - - - - - -

                  Animation Tree

                  -

                  Apply 'animate' property to true to enable animation effect.

                  -
                  -
                  -
                    -
                    - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tree/basic.html b/vendor/FHC-vendor/easyui/demo/tree/basic.html deleted file mode 100644 index 9d937a7bd..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/basic.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - Basic Tree - jQuery EasyUI Demo - - - - - - - -

                    Basic Tree

                    -

                    Click the arrow on the left to expand or collapse nodes.

                    -
                    -
                    -
                      -
                    • - My Documents -
                        -
                      • - Photos -
                          -
                        • - Friend -
                        • -
                        • - Wife -
                        • -
                        • - Company -
                        • -
                        -
                      • -
                      • - Program Files -
                          -
                        • Intel
                        • -
                        • Java
                        • -
                        • Microsoft Office
                        • -
                        • Games
                        • -
                        -
                      • -
                      • index.html
                      • -
                      • about.html
                      • -
                      • welcome.html
                      • -
                      -
                    • -
                    -
                    - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tree/checkbox.html b/vendor/FHC-vendor/easyui/demo/tree/checkbox.html deleted file mode 100644 index 734266e57..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/checkbox.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - CheckBox Tree - jQuery EasyUI Demo - - - - - - - -

                    CheckBox Tree

                    -

                    Tree nodes with check boxes.

                    - -
                    - CascadeCheck - OnlyLeafCheck -
                    -
                    -
                      -
                      - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tree/contextmenu.html b/vendor/FHC-vendor/easyui/demo/tree/contextmenu.html deleted file mode 100644 index 67f14d0b9..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/contextmenu.html +++ /dev/null @@ -1,65 +0,0 @@ - - - - - Tree Context Menu - jQuery EasyUI Demo - - - - - - - -

                      Tree Context Menu

                      -

                      Right click on a node to display context menu.

                      -
                      -
                      -
                        -
                        -
                        -
                        Append
                        -
                        Remove
                        - -
                        Expand
                        -
                        Collapse
                        -
                        - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tree/dnd.html b/vendor/FHC-vendor/easyui/demo/tree/dnd.html deleted file mode 100644 index fdf4c1faa..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/dnd.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - Drag Drop Tree Nodes - jQuery EasyUI Demo - - - - - - - -

                        Drag Drop Tree Nodes

                        -

                        Press mouse down and drag a node to another position.

                        -
                        -
                        -
                          -
                          - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tree/editable.html b/vendor/FHC-vendor/easyui/demo/tree/editable.html deleted file mode 100644 index afbb8c60d..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/editable.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - Editable Tree - jQuery EasyUI Demo - - - - - - - -

                          Editable Tree

                          -

                          Click the node to begin edit, press enter key to stop edit or esc key to cancel edit.

                          -
                          -
                          -
                            -
                            - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tree/formatting.html b/vendor/FHC-vendor/easyui/demo/tree/formatting.html deleted file mode 100644 index e83d1801f..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/formatting.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Formatting Tree Nodes - jQuery EasyUI Demo - - - - - - - -

                            Formatting Tree Nodes

                            -

                            This example shows how to display extra information on nodes.

                            -
                            -
                            -
                              -
                            -
                            - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tree/icons.html b/vendor/FHC-vendor/easyui/demo/tree/icons.html deleted file mode 100644 index c50df79d4..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/icons.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - Tree Node Icons - jQuery EasyUI Demo - - - - - - - -

                            Tree Node Icons

                            -

                            This sample illustrates how to add icons to tree node.

                            -
                            -
                            -
                              -
                              - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tree/lazyload.html b/vendor/FHC-vendor/easyui/demo/tree/lazyload.html deleted file mode 100644 index 014b25573..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/lazyload.html +++ /dev/null @@ -1,82 +0,0 @@ - - - - - Lazy Load Tree Nodes - jQuery EasyUI Demo - - - - - - - -

                              Lazy Load Tree Nodes

                              -

                              Get full hierarchical tree data but lazy load nodes level by level.

                              -
                              -
                              -
                                -
                                - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tree/lines.html b/vendor/FHC-vendor/easyui/demo/tree/lines.html deleted file mode 100644 index 820ac44d2..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/lines.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - Tree Lines - jQuery EasyUI Demo - - - - - - - -

                                Tree Lines

                                -

                                This sample shows how to show tree lines.

                                -
                                -
                                -
                                  -
                                  - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/tree/tree_data1.json b/vendor/FHC-vendor/easyui/demo/tree/tree_data1.json deleted file mode 100644 index 83fb0d619..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/tree_data1.json +++ /dev/null @@ -1,49 +0,0 @@ -[{ - "id":1, - "text":"My Documents", - "children":[{ - "id":11, - "text":"Photos", - "state":"closed", - "children":[{ - "id":111, - "text":"Friend" - },{ - "id":112, - "text":"Wife" - },{ - "id":113, - "text":"Company" - }] - },{ - "id":12, - "text":"Program Files", - "children":[{ - "id":121, - "text":"Intel" - },{ - "id":122, - "text":"Java", - "attributes":{ - "p1":"Custom Attribute1", - "p2":"Custom Attribute2" - } - },{ - "id":123, - "text":"Microsoft Office" - },{ - "id":124, - "text":"Games", - "checked":true - }] - },{ - "id":13, - "text":"index.html" - },{ - "id":14, - "text":"about.html" - },{ - "id":15, - "text":"welcome.html" - }] -}] diff --git a/vendor/FHC-vendor/easyui/demo/tree/tree_data2.json b/vendor/FHC-vendor/easyui/demo/tree/tree_data2.json deleted file mode 100644 index 14e342911..000000000 --- a/vendor/FHC-vendor/easyui/demo/tree/tree_data2.json +++ /dev/null @@ -1,61 +0,0 @@ -[{ - "id":1, - "text":"My Documents", - "children":[{ - "id":11, - "text":"Photos", - "state":"closed", - "children":[{ - "id":111, - "text":"Friend" - },{ - "id":112, - "text":"Wife" - },{ - "id":113, - "text":"Company" - }] - },{ - "id":12, - "text":"Program Files", - "state":"closed", - "children":[{ - "id":121, - "text":"Intel" - },{ - "id":122, - "text":"Java" - },{ - "id":123, - "text":"Microsoft Office" - },{ - "id":124, - "text":"Games" - }] - },{ - "id":16, - "text":"Actions", - "children":[{ - "text":"Add", - "iconCls":"icon-add" - },{ - "text":"Remove", - "iconCls":"icon-remove" - },{ - "text":"Save", - "iconCls":"icon-save" - },{ - "text":"Search", - "iconCls":"icon-search" - }] - },{ - "id":13, - "text":"index.html" - },{ - "id":14, - "text":"about.html" - },{ - "id":15, - "text":"welcome.html" - }] -}] diff --git a/vendor/FHC-vendor/easyui/demo/treegrid/actions.html b/vendor/FHC-vendor/easyui/demo/treegrid/actions.html deleted file mode 100644 index 31430a531..000000000 --- a/vendor/FHC-vendor/easyui/demo/treegrid/actions.html +++ /dev/null @@ -1,64 +0,0 @@ - - - - - TreeGrid Actions - jQuery EasyUI Demo - - - - - - - -

                                  TreeGrid Actions

                                  -

                                  Click the buttons below to perform actions.

                                  - - - - - - - - - - - -
                                  Task NamePersonsBegin DateEnd DateProgress
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/treegrid/basic.html b/vendor/FHC-vendor/easyui/demo/treegrid/basic.html deleted file mode 100644 index 7daefebda..000000000 --- a/vendor/FHC-vendor/easyui/demo/treegrid/basic.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - Basic TreeGrid - jQuery EasyUI Demo - - - - - - - -

                                  Basic TreeGrid

                                  -

                                  TreeGrid allows you to expand or collapse group rows.

                                  -
                                  - - - - - - - - -
                                  NameSizeModified Date
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/treegrid/clientpagination.html b/vendor/FHC-vendor/easyui/demo/treegrid/clientpagination.html deleted file mode 100644 index 7e6a50060..000000000 --- a/vendor/FHC-vendor/easyui/demo/treegrid/clientpagination.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - Client Side Pagination in TreeGrid - jQuery EasyUI Demo - - - - - - - -

                                  Client Side Pagination in TreeGrid

                                  -

                                  This sample shows how to implement client side pagination in TreeGrid.

                                  -
                                  - - - - - - - - - - -
                                  Task NamePersonsBegin DateEnd DateProgress
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/treegrid/contextmenu.html b/vendor/FHC-vendor/easyui/demo/treegrid/contextmenu.html deleted file mode 100644 index 7bc92ed35..000000000 --- a/vendor/FHC-vendor/easyui/demo/treegrid/contextmenu.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - TreeGrid ContextMenu - jQuery EasyUI Demo - - - - - - - -

                                  TreeGrid ContextMenu

                                  -

                                  Right click to display the context menu.

                                  -
                                  - - - - - - - - - - -
                                  Task NamePersonsBegin DateEnd DateProgress
                                  -
                                  -
                                  Append
                                  -
                                  Remove
                                  - -
                                  Collapse
                                  -
                                  Expand
                                  -
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/treegrid/editable.html b/vendor/FHC-vendor/easyui/demo/treegrid/editable.html deleted file mode 100644 index 30713e6f6..000000000 --- a/vendor/FHC-vendor/easyui/demo/treegrid/editable.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - Editable TreeGrid - jQuery EasyUI Demo - - - - - - - -

                                  Editable TreeGrid

                                  -

                                  Select one node and click edit button to perform editing.

                                  -
                                  - Edit - Save - Cancel -
                                  - - - - - - - - - - -
                                  Task NamePersonsBegin DateEnd DateProgress
                                  - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/treegrid/fluid.html b/vendor/FHC-vendor/easyui/demo/treegrid/fluid.html deleted file mode 100644 index e0c8c0e0a..000000000 --- a/vendor/FHC-vendor/easyui/demo/treegrid/fluid.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Fluid TreeGrid - jQuery EasyUI Demo - - - - - - - -

                                  Fluid TreeGrid

                                  -

                                  This example shows how to assign percentage width to a column in TreeGrid.

                                  -
                                  - - - - - - - - -
                                  Name(50%)Size(20%)Modified Date(30%)
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/treegrid/footer.html b/vendor/FHC-vendor/easyui/demo/treegrid/footer.html deleted file mode 100644 index 5d1cff9a6..000000000 --- a/vendor/FHC-vendor/easyui/demo/treegrid/footer.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - TreeGrid with Footer - jQuery EasyUI Demo - - - - - - - -

                                  TreeGrid with Footer

                                  -

                                  Show summary information on TreeGrid footer.

                                  -
                                  -
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/treegrid/lines.html b/vendor/FHC-vendor/easyui/demo/treegrid/lines.html deleted file mode 100644 index 78cf62339..000000000 --- a/vendor/FHC-vendor/easyui/demo/treegrid/lines.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - TreeGrid Lines - jQuery EasyUI Demo - - - - - - - -

                                  TreeGrid Lines

                                  -

                                  This example shows how to show treegrid lines.

                                  -
                                  - - - - - - - - -
                                  NameSizeModified Date
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/treegrid/reports.html b/vendor/FHC-vendor/easyui/demo/treegrid/reports.html deleted file mode 100644 index 94f27f4b3..000000000 --- a/vendor/FHC-vendor/easyui/demo/treegrid/reports.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - - Reports using TreeGrid - jQuery EasyUI Demo - - - - - - - -

                                  Reports using TreeGrid

                                  -

                                  Using TreeGrid to show complex reports.

                                  -
                                  - - - - - - - - - - - - - - - - - - - - - - -
                                  Region
                                  20092010
                                  1st qrt.2st qrt.3st qrt.4st qrt.1st qrt.2st qrt.3st qrt.4st qrt.
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/treegrid/treegrid_data1.json b/vendor/FHC-vendor/easyui/demo/treegrid/treegrid_data1.json deleted file mode 100644 index 0313d4618..000000000 --- a/vendor/FHC-vendor/easyui/demo/treegrid/treegrid_data1.json +++ /dev/null @@ -1,73 +0,0 @@ -[{ - "id":1, - "name":"C", - "size":"", - "date":"02/19/2010", - "children":[{ - "id":2, - "name":"Program Files", - "size":"120 MB", - "date":"03/20/2010", - "children":[{ - "id":21, - "name":"Java", - "size":"", - "date":"01/13/2010", - "state":"closed", - "children":[{ - "id":211, - "name":"java.exe", - "size":"142 KB", - "date":"01/13/2010" - },{ - "id":212, - "name":"jawt.dll", - "size":"5 KB", - "date":"01/13/2010" - }] - },{ - "id":22, - "name":"MySQL", - "size":"", - "date":"01/13/2010", - "state":"closed", - "children":[{ - "id":221, - "name":"my.ini", - "size":"10 KB", - "date":"02/26/2009" - },{ - "id":222, - "name":"my-huge.ini", - "size":"5 KB", - "date":"02/26/2009" - },{ - "id":223, - "name":"my-large.ini", - "size":"5 KB", - "date":"02/26/2009" - }] - }] - },{ - "id":3, - "name":"eclipse", - "size":"", - "date":"01/20/2010", - "children":[{ - "id":31, - "name":"eclipse.exe", - "size":"56 KB", - "date":"05/19/2009" - },{ - "id":32, - "name":"eclipse.ini", - "size":"1 KB", - "date":"04/20/2010" - },{ - "id":33, - "name":"notice.html", - "size":"7 KB", - "date":"03/17/2005" - }] - }] -}] \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/treegrid/treegrid_data2.json b/vendor/FHC-vendor/easyui/demo/treegrid/treegrid_data2.json deleted file mode 100644 index f917507fd..000000000 --- a/vendor/FHC-vendor/easyui/demo/treegrid/treegrid_data2.json +++ /dev/null @@ -1,11 +0,0 @@ -{"total":7,"rows":[ - {"id":1,"name":"All Tasks","begin":"3/4/2010","end":"3/20/2010","progress":60,"iconCls":"icon-ok"}, - {"id":2,"name":"Designing","begin":"3/4/2010","end":"3/10/2010","progress":100,"_parentId":1,"state":"closed"}, - {"id":21,"name":"Database","persons":2,"begin":"3/4/2010","end":"3/6/2010","progress":100,"_parentId":2}, - {"id":22,"name":"UML","persons":1,"begin":"3/7/2010","end":"3/8/2010","progress":100,"_parentId":2}, - {"id":23,"name":"Export Document","persons":1,"begin":"3/9/2010","end":"3/10/2010","progress":100,"_parentId":2}, - {"id":3,"name":"Coding","persons":2,"begin":"3/11/2010","end":"3/18/2010","progress":80}, - {"id":4,"name":"Testing","persons":1,"begin":"3/19/2010","end":"3/20/2010","progress":20} -],"footer":[ - {"name":"Total Persons:","persons":7,"iconCls":"icon-sum"} -]} diff --git a/vendor/FHC-vendor/easyui/demo/treegrid/treegrid_data3.json b/vendor/FHC-vendor/easyui/demo/treegrid/treegrid_data3.json deleted file mode 100644 index 0475c38de..000000000 --- a/vendor/FHC-vendor/easyui/demo/treegrid/treegrid_data3.json +++ /dev/null @@ -1,13 +0,0 @@ -{"total":9,"rows":[ - {"id":1,"region":"Wyoming"}, - {"id":11,"region":"Albin","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":1}, - {"id":12,"region":"Canon","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":1}, - {"id":13,"region":"Egbert","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":1}, - {"id":2,"region":"Washington"}, - {"id":21,"region":"Bellingham","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":2}, - {"id":22,"region":"Chehalis","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":2}, - {"id":23,"region":"Ellensburg","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":2}, - {"id":24,"region":"Monroe","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":2} -],"footer":[ - {"region":"Total","f1":14000,"f2":12600,"f3":13321,"f4":15281,"f5":14931,"f6":13461,"f7":14126,"f8":12866} -]} \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/validatebox/basic.html b/vendor/FHC-vendor/easyui/demo/validatebox/basic.html deleted file mode 100644 index 701bca287..000000000 --- a/vendor/FHC-vendor/easyui/demo/validatebox/basic.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - Basic ValidateBox - jQuery EasyUI Demo - - - - - - - -

                                  Basic ValidateBox

                                  -

                                  It's easy to add validate logic to a input box.

                                  -
                                  -
                                  - - - - - - - - - - - - - - - - - - - - - -
                                  User Name:
                                  Email:
                                  Birthday:
                                  URL:
                                  Phone:
                                  -
                                  - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/validatebox/customtooltip.html b/vendor/FHC-vendor/easyui/demo/validatebox/customtooltip.html deleted file mode 100644 index 8574793eb..000000000 --- a/vendor/FHC-vendor/easyui/demo/validatebox/customtooltip.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - Custom ValidateBox Tooltip - jQuery EasyUI Demo - - - - - - - -

                                  Custom ValidateBox Tooltip

                                  -

                                  This sample shows how to display another tooltip message on a valid textbox.

                                  -
                                  -
                                  - - - - - - - - - - - - - - - - - - - - - -
                                  User Name:
                                  Email:
                                  Birthday:
                                  URL:
                                  Phone:
                                  -
                                  - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/validatebox/validateonblur.html b/vendor/FHC-vendor/easyui/demo/validatebox/validateonblur.html deleted file mode 100644 index 5709efa1b..000000000 --- a/vendor/FHC-vendor/easyui/demo/validatebox/validateonblur.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - - Validate On Blur - jQuery EasyUI Demo - - - - - - - -

                                  Validate On Blur

                                  -

                                  Active validation on first blur event.

                                  -
                                  -
                                  - - - - - - - - - - - - - - - - - - - - - -
                                  User Name:
                                  Email:
                                  Birthday:
                                  URL:
                                  Phone:
                                  -
                                  - - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/window/basic.html b/vendor/FHC-vendor/easyui/demo/window/basic.html deleted file mode 100644 index 4c3c551c0..000000000 --- a/vendor/FHC-vendor/easyui/demo/window/basic.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - Basic Window - jQuery EasyUI Demo - - - - - - - -

                                  Basic Window

                                  -

                                  Window can be dragged freely on screen.

                                  -
                                  - Open - Close -
                                  -
                                  - The window content. -
                                  - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/window/customtools.html b/vendor/FHC-vendor/easyui/demo/window/customtools.html deleted file mode 100644 index 1a22ad172..000000000 --- a/vendor/FHC-vendor/easyui/demo/window/customtools.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Custom Window Tools - jQuery EasyUI Demo - - - - - - - -

                                  Custom Window Tools

                                  -

                                  Click the right top buttons to perform actions.

                                  -
                                  - Open - Close -
                                  -
                                  - The window content. -
                                  -
                                  - - - - -
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/window/fluid.html b/vendor/FHC-vendor/easyui/demo/window/fluid.html deleted file mode 100644 index 11b3967ab..000000000 --- a/vendor/FHC-vendor/easyui/demo/window/fluid.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - Fluid Window - jQuery EasyUI Demo - - - - - - - -

                                  Fluid Window

                                  -

                                  This example shows how to set the width of Window to a percentage of its parent container.

                                  -
                                  -
                                  -

                                  The window has a width of 80%.

                                  -
                                  - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/window/footer.html b/vendor/FHC-vendor/easyui/demo/window/footer.html deleted file mode 100644 index ba29d5321..000000000 --- a/vendor/FHC-vendor/easyui/demo/window/footer.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - Window with a Footer - jQuery EasyUI Demo - - - - - - - -

                                  Window with a Footer

                                  -

                                  This example shows how to attach a footer bar to the window.

                                  -
                                  - Open - Close -
                                  -
                                  - The window content. -
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/window/inlinewindow.html b/vendor/FHC-vendor/easyui/demo/window/inlinewindow.html deleted file mode 100644 index 833588019..000000000 --- a/vendor/FHC-vendor/easyui/demo/window/inlinewindow.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - Inline Window - jQuery EasyUI Demo - - - - - - - -

                                  Inline Window

                                  -

                                  The inline window stay inside its parent.

                                  -
                                  - Open - Close -
                                  -
                                  -
                                  - This window stay inside its parent -
                                  -
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/window/modalwindow.html b/vendor/FHC-vendor/easyui/demo/window/modalwindow.html deleted file mode 100644 index 59e79ca3a..000000000 --- a/vendor/FHC-vendor/easyui/demo/window/modalwindow.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - Modal Window - jQuery EasyUI Demo - - - - - - - -

                                  Modal Window

                                  -

                                  Click the open button below to open the modal window.

                                  -
                                  - Open - Close -
                                  -
                                  - The window content. -
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/demo/window/windowlayout.html b/vendor/FHC-vendor/easyui/demo/window/windowlayout.html deleted file mode 100644 index 7311ef699..000000000 --- a/vendor/FHC-vendor/easyui/demo/window/windowlayout.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Window Layout - jQuery EasyUI Demo - - - - - - - -

                                  Window Layout

                                  -

                                  Using layout on window.

                                  -
                                  - Open - Close -
                                  -
                                  -
                                  -
                                  -
                                  - jQuery EasyUI framework help you build your web page easily. -
                                  -
                                  - Ok - Cancel -
                                  -
                                  -
                                  - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/easyloader.js b/vendor/FHC-vendor/easyui/easyloader.js deleted file mode 100644 index 558219294..000000000 --- a/vendor/FHC-vendor/easyui/easyloader.js +++ /dev/null @@ -1,190 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function(){ -var _1={draggable:{js:"jquery.draggable.js"},droppable:{js:"jquery.droppable.js"},resizable:{js:"jquery.resizable.js"},linkbutton:{js:"jquery.linkbutton.js",css:"linkbutton.css"},progressbar:{js:"jquery.progressbar.js",css:"progressbar.css"},tooltip:{js:"jquery.tooltip.js",css:"tooltip.css"},pagination:{js:"jquery.pagination.js",css:"pagination.css",dependencies:["linkbutton"]},datagrid:{js:"jquery.datagrid.js",css:"datagrid.css",dependencies:["panel","resizable","linkbutton","pagination"]},treegrid:{js:"jquery.treegrid.js",css:"tree.css",dependencies:["datagrid"]},propertygrid:{js:"jquery.propertygrid.js",css:"propertygrid.css",dependencies:["datagrid"]},datalist:{js:"jquery.datalist.js",css:"datalist.css",dependencies:["datagrid"]},panel:{js:"jquery.panel.js",css:"panel.css"},window:{js:"jquery.window.js",css:"window.css",dependencies:["resizable","draggable","panel"]},dialog:{js:"jquery.dialog.js",css:"dialog.css",dependencies:["linkbutton","window"]},messager:{js:"jquery.messager.js",css:"messager.css",dependencies:["linkbutton","dialog","progressbar"]},layout:{js:"jquery.layout.js",css:"layout.css",dependencies:["resizable","panel"]},form:{js:"jquery.form.js"},menu:{js:"jquery.menu.js",css:"menu.css"},tabs:{js:"jquery.tabs.js",css:"tabs.css",dependencies:["panel","linkbutton"]},menubutton:{js:"jquery.menubutton.js",css:"menubutton.css",dependencies:["linkbutton","menu"]},splitbutton:{js:"jquery.splitbutton.js",css:"splitbutton.css",dependencies:["menubutton"]},switchbutton:{js:"jquery.switchbutton.js",css:"switchbutton.css"},accordion:{js:"jquery.accordion.js",css:"accordion.css",dependencies:["panel"]},calendar:{js:"jquery.calendar.js",css:"calendar.css"},textbox:{js:"jquery.textbox.js",css:"textbox.css",dependencies:["validatebox","linkbutton"]},filebox:{js:"jquery.filebox.js",css:"filebox.css",dependencies:["textbox"]},combo:{js:"jquery.combo.js",css:"combo.css",dependencies:["panel","textbox"]},combobox:{js:"jquery.combobox.js",css:"combobox.css",dependencies:["combo"]},combotree:{js:"jquery.combotree.js",dependencies:["combo","tree"]},combogrid:{js:"jquery.combogrid.js",dependencies:["combo","datagrid"]},validatebox:{js:"jquery.validatebox.js",css:"validatebox.css",dependencies:["tooltip"]},numberbox:{js:"jquery.numberbox.js",dependencies:["textbox"]},searchbox:{js:"jquery.searchbox.js",css:"searchbox.css",dependencies:["menubutton","textbox"]},spinner:{js:"jquery.spinner.js",css:"spinner.css",dependencies:["textbox"]},numberspinner:{js:"jquery.numberspinner.js",dependencies:["spinner","numberbox"]},timespinner:{js:"jquery.timespinner.js",dependencies:["spinner"]},tree:{js:"jquery.tree.js",css:"tree.css",dependencies:["draggable","droppable"]},datebox:{js:"jquery.datebox.js",css:"datebox.css",dependencies:["calendar","combo"]},datetimebox:{js:"jquery.datetimebox.js",dependencies:["datebox","timespinner"]},slider:{js:"jquery.slider.js",dependencies:["draggable"]},parser:{js:"jquery.parser.js"},mobile:{js:"jquery.mobile.js"}}; -var _2={"af":"easyui-lang-af.js","ar":"easyui-lang-ar.js","bg":"easyui-lang-bg.js","ca":"easyui-lang-ca.js","cs":"easyui-lang-cs.js","cz":"easyui-lang-cz.js","da":"easyui-lang-da.js","de":"easyui-lang-de.js","el":"easyui-lang-el.js","en":"easyui-lang-en.js","es":"easyui-lang-es.js","fr":"easyui-lang-fr.js","it":"easyui-lang-it.js","jp":"easyui-lang-jp.js","nl":"easyui-lang-nl.js","pl":"easyui-lang-pl.js","pt_BR":"easyui-lang-pt_BR.js","ru":"easyui-lang-ru.js","sv_SE":"easyui-lang-sv_SE.js","tr":"easyui-lang-tr.js","zh_CN":"easyui-lang-zh_CN.js","zh_TW":"easyui-lang-zh_TW.js"}; -var _3={}; -function _4(_5,_6){ -var _7=false; -var _8=document.createElement("script"); -_8.type="text/javascript"; -_8.language="javascript"; -_8.src=_5; -_8.onload=_8.onreadystatechange=function(){ -if(!_7&&(!_8.readyState||_8.readyState=="loaded"||_8.readyState=="complete")){ -_7=true; -_8.onload=_8.onreadystatechange=null; -if(_6){ -_6.call(_8); -} -} -}; -document.getElementsByTagName("head")[0].appendChild(_8); -}; -function _9(_a,_b){ -_4(_a,function(){ -document.getElementsByTagName("head")[0].removeChild(this); -if(_b){ -_b(); -} -}); -}; -function _c(_d,_e){ -var _f=document.createElement("link"); -_f.rel="stylesheet"; -_f.type="text/css"; -_f.media="screen"; -_f.href=_d; -document.getElementsByTagName("head")[0].appendChild(_f); -if(_e){ -_e.call(_f); -} -}; -function _10(_11,_12){ -_3[_11]="loading"; -var _13=_1[_11]; -var _14="loading"; -var _15=(easyloader.css&&_13["css"])?"loading":"loaded"; -if(easyloader.css&&_13["css"]){ -if(/^http/i.test(_13["css"])){ -var url=_13["css"]; -}else{ -var url=easyloader.base+"themes/"+easyloader.theme+"/"+_13["css"]; -} -_c(url,function(){ -_15="loaded"; -if(_14=="loaded"&&_15=="loaded"){ -_16(); -} -}); -} -if(/^http/i.test(_13["js"])){ -var url=_13["js"]; -}else{ -var url=easyloader.base+"plugins/"+_13["js"]; -} -_4(url,function(){ -_14="loaded"; -if(_14=="loaded"&&_15=="loaded"){ -_16(); -} -}); -function _16(){ -_3[_11]="loaded"; -easyloader.onProgress(_11); -if(_12){ -_12(); -} -}; -}; -function _17(_18,_19){ -var mm=[]; -var _1a=false; -if(typeof _18=="string"){ -add(_18); -}else{ -for(var i=0;i<_18.length;i++){ -add(_18[i]); -} -} -function add(_1b){ -if(!_1[_1b]){ -return; -} -var d=_1[_1b]["dependencies"]; -if(d){ -for(var i=0;i=0){ -v=Math.floor((_8.width()-_9)*v/100); -}else{ -v=Math.floor((_8.height()-_9)*v/100); -} -}else{ -v=parseInt(v)||undefined; -} -return v; -},parseOptions:function(_b,_c){ -var t=$(_b); -var _d={}; -var s=$.trim(t.attr("data-options")); -if(s){ -if(s.substring(0,1)!="{"){ -s="{"+s+"}"; -} -_d=(new Function("return "+s))(); -} -$.map(["width","height","left","top","minWidth","maxWidth","minHeight","maxHeight"],function(p){ -var pv=$.trim(_b.style[p]||""); -if(pv){ -if(pv.indexOf("%")==-1){ -pv=parseInt(pv)||undefined; -} -_d[p]=pv; -} -}); -if(_c){ -var _e={}; -for(var i=0;i<_c.length;i++){ -var pp=_c[i]; -if(typeof pp=="string"){ -_e[pp]=t.attr(pp); -}else{ -for(var _f in pp){ -var _10=pp[_f]; -if(_10=="boolean"){ -_e[_f]=t.attr(_f)?(t.attr(_f)=="true"):undefined; -}else{ -if(_10=="number"){ -_e[_f]=t.attr(_f)=="0"?0:parseFloat(t.attr(_f))||undefined; -} -} -} -} -} -$.extend(_d,_e); -} -return _d; -}}; -$(function(){ -var d=$("
                                  ").appendTo("body"); -$._boxModel=d.outerWidth()!=100; -d.remove(); -d=$("
                                  ").appendTo("body"); -$._positionFixed=(d.css("position")=="fixed"); -d.remove(); -if(!window.easyloader&&$.parser.auto){ -$.parser.parse(); -} -}); -$.fn._outerWidth=function(_11){ -if(_11==undefined){ -if(this[0]==window){ -return this.width()||document.body.clientWidth; -} -return this.outerWidth()||0; -} -return this._size("width",_11); -}; -$.fn._outerHeight=function(_12){ -if(_12==undefined){ -if(this[0]==window){ -return this.height()||document.body.clientHeight; -} -return this.outerHeight()||0; -} -return this._size("height",_12); -}; -$.fn._scrollLeft=function(_13){ -if(_13==undefined){ -return this.scrollLeft(); -}else{ -return this.each(function(){ -$(this).scrollLeft(_13); -}); -} -}; -$.fn._propAttr=$.fn.prop||$.fn.attr; -$.fn._size=function(_14,_15){ -if(typeof _14=="string"){ -if(_14=="clear"){ -return this.each(function(){ -$(this).css({width:"",minWidth:"",maxWidth:"",height:"",minHeight:"",maxHeight:""}); -}); -}else{ -if(_14=="fit"){ -return this.each(function(){ -_16(this,this.tagName=="BODY"?$("body"):$(this).parent(),true); -}); -}else{ -if(_14=="unfit"){ -return this.each(function(){ -_16(this,$(this).parent(),false); -}); -}else{ -if(_15==undefined){ -return _17(this[0],_14); -}else{ -return this.each(function(){ -_17(this,_14,_15); -}); -} -} -} -} -}else{ -return this.each(function(){ -_15=_15||$(this).parent(); -$.extend(_14,_16(this,_15,_14.fit)||{}); -var r1=_18(this,"width",_15,_14); -var r2=_18(this,"height",_15,_14); -if(r1||r2){ -$(this).addClass("easyui-fluid"); -}else{ -$(this).removeClass("easyui-fluid"); -} -}); -} -function _16(_19,_1a,fit){ -if(!_1a.length){ -return false; -} -var t=$(_19)[0]; -var p=_1a[0]; -var _1b=p.fcount||0; -if(fit){ -if(!t.fitted){ -t.fitted=true; -p.fcount=_1b+1; -$(p).addClass("panel-noscroll"); -if(p.tagName=="BODY"){ -$("html").addClass("panel-fit"); -} -} -return {width:($(p).width()||1),height:($(p).height()||1)}; -}else{ -if(t.fitted){ -t.fitted=false; -p.fcount=_1b-1; -if(p.fcount==0){ -$(p).removeClass("panel-noscroll"); -if(p.tagName=="BODY"){ -$("html").removeClass("panel-fit"); -} -} -} -return false; -} -}; -function _18(_1c,_1d,_1e,_1f){ -var t=$(_1c); -var p=_1d; -var p1=p.substr(0,1).toUpperCase()+p.substr(1); -var min=$.parser.parseValue("min"+p1,_1f["min"+p1],_1e); -var max=$.parser.parseValue("max"+p1,_1f["max"+p1],_1e); -var val=$.parser.parseValue(p,_1f[p],_1e); -var _20=(String(_1f[p]||"").indexOf("%")>=0?true:false); -if(!isNaN(val)){ -var v=Math.min(Math.max(val,min||0),max||99999); -if(!_20){ -_1f[p]=v; -} -t._size("min"+p1,""); -t._size("max"+p1,""); -t._size(p,v); -}else{ -t._size(p,""); -t._size("min"+p1,min); -t._size("max"+p1,max); -} -return _20||_1f.fit; -}; -function _17(_21,_22,_23){ -var t=$(_21); -if(_23==undefined){ -_23=parseInt(_21.style[_22]); -if(isNaN(_23)){ -return undefined; -} -if($._boxModel){ -_23+=_24(); -} -return _23; -}else{ -if(_23===""){ -t.css(_22,""); -}else{ -if($._boxModel){ -_23-=_24(); -if(_23<0){ -_23=0; -} -} -t.css(_22,_23+"px"); -} -} -function _24(){ -if(_22.toLowerCase().indexOf("width")>=0){ -return t.outerWidth()-t.width(); -}else{ -return t.outerHeight()-t.height(); -} -}; -}; -}; -})(jQuery); -(function($){ -var _25=null; -var _26=null; -var _27=false; -function _28(e){ -if(e.touches.length!=1){ -return; -} -if(!_27){ -_27=true; -dblClickTimer=setTimeout(function(){ -_27=false; -},500); -}else{ -clearTimeout(dblClickTimer); -_27=false; -_29(e,"dblclick"); -} -_25=setTimeout(function(){ -_29(e,"contextmenu",3); -},1000); -_29(e,"mousedown"); -if($.fn.draggable.isDragging||$.fn.resizable.isResizing){ -e.preventDefault(); -} -}; -function _2a(e){ -if(e.touches.length!=1){ -return; -} -if(_25){ -clearTimeout(_25); -} -_29(e,"mousemove"); -if($.fn.draggable.isDragging||$.fn.resizable.isResizing){ -e.preventDefault(); -} -}; -function _2b(e){ -if(_25){ -clearTimeout(_25); -} -_29(e,"mouseup"); -if($.fn.draggable.isDragging||$.fn.resizable.isResizing){ -e.preventDefault(); -} -}; -function _29(e,_2c,_2d){ -var _2e=new $.Event(_2c); -_2e.pageX=e.changedTouches[0].pageX; -_2e.pageY=e.changedTouches[0].pageY; -_2e.which=_2d||1; -$(e.target).trigger(_2e); -}; -if(document.addEventListener){ -document.addEventListener("touchstart",_28,true); -document.addEventListener("touchmove",_2a,true); -document.addEventListener("touchend",_2b,true); -} -})(jQuery); -(function($){ -function _2f(e){ -var _30=$.data(e.data.target,"draggable"); -var _31=_30.options; -var _32=_30.proxy; -var _33=e.data; -var _34=_33.startLeft+e.pageX-_33.startX; -var top=_33.startTop+e.pageY-_33.startY; -if(_32){ -if(_32.parent()[0]==document.body){ -if(_31.deltaX!=null&&_31.deltaX!=undefined){ -_34=e.pageX+_31.deltaX; -}else{ -_34=e.pageX-e.data.offsetWidth; -} -if(_31.deltaY!=null&&_31.deltaY!=undefined){ -top=e.pageY+_31.deltaY; -}else{ -top=e.pageY-e.data.offsetHeight; -} -}else{ -if(_31.deltaX!=null&&_31.deltaX!=undefined){ -_34+=e.data.offsetWidth+_31.deltaX; -} -if(_31.deltaY!=null&&_31.deltaY!=undefined){ -top+=e.data.offsetHeight+_31.deltaY; -} -} -} -if(e.data.parent!=document.body){ -_34+=$(e.data.parent).scrollLeft(); -top+=$(e.data.parent).scrollTop(); -} -if(_31.axis=="h"){ -_33.left=_34; -}else{ -if(_31.axis=="v"){ -_33.top=top; -}else{ -_33.left=_34; -_33.top=top; -} -} -}; -function _35(e){ -var _36=$.data(e.data.target,"draggable"); -var _37=_36.options; -var _38=_36.proxy; -if(!_38){ -_38=$(e.data.target); -} -_38.css({left:e.data.left,top:e.data.top}); -$("body").css("cursor",_37.cursor); -}; -function _39(e){ -if(!$.fn.draggable.isDragging){ -return false; -} -var _3a=$.data(e.data.target,"draggable"); -var _3b=_3a.options; -var _3c=$(".droppable").filter(function(){ -return e.data.target!=this; -}).filter(function(){ -var _3d=$.data(this,"droppable").options.accept; -if(_3d){ -return $(_3d).filter(function(){ -return this==e.data.target; -}).length>0; -}else{ -return true; -} -}); -_3a.droppables=_3c; -var _3e=_3a.proxy; -if(!_3e){ -if(_3b.proxy){ -if(_3b.proxy=="clone"){ -_3e=$(e.data.target).clone().insertAfter(e.data.target); -}else{ -_3e=_3b.proxy.call(e.data.target,e.data.target); -} -_3a.proxy=_3e; -}else{ -_3e=$(e.data.target); -} -} -_3e.css("position","absolute"); -_2f(e); -_35(e); -_3b.onStartDrag.call(e.data.target,e); -return false; -}; -function _3f(e){ -if(!$.fn.draggable.isDragging){ -return false; -} -var _40=$.data(e.data.target,"draggable"); -_2f(e); -if(_40.options.onDrag.call(e.data.target,e)!=false){ -_35(e); -} -var _41=e.data.target; -_40.droppables.each(function(){ -var _42=$(this); -if(_42.droppable("options").disabled){ -return; -} -var p2=_42.offset(); -if(e.pageX>p2.left&&e.pageXp2.top&&e.pageYp2.left&&e.pageXp2.top&&e.pageY_58.options.edge; -}; -}); -}; -$.fn.draggable.methods={options:function(jq){ -return $.data(jq[0],"draggable").options; -},proxy:function(jq){ -return $.data(jq[0],"draggable").proxy; -},enable:function(jq){ -return jq.each(function(){ -$(this).draggable({disabled:false}); -}); -},disable:function(jq){ -return jq.each(function(){ -$(this).draggable({disabled:true}); -}); -}}; -$.fn.draggable.parseOptions=function(_5d){ -var t=$(_5d); -return $.extend({},$.parser.parseOptions(_5d,["cursor","handle","axis",{"revert":"boolean","deltaX":"number","deltaY":"number","edge":"number","delay":"number"}]),{disabled:(t.attr("disabled")?true:undefined)}); -}; -$.fn.draggable.defaults={proxy:null,revert:false,cursor:"move",deltaX:null,deltaY:null,handle:null,disabled:false,edge:0,axis:null,delay:100,onBeforeDrag:function(e){ -},onStartDrag:function(e){ -},onDrag:function(e){ -},onStopDrag:function(e){ -}}; -$.fn.draggable.isDragging=false; -})(jQuery); -(function($){ -function _5e(_5f){ -$(_5f).addClass("droppable"); -$(_5f).bind("_dragenter",function(e,_60){ -$.data(_5f,"droppable").options.onDragEnter.apply(_5f,[e,_60]); -}); -$(_5f).bind("_dragleave",function(e,_61){ -$.data(_5f,"droppable").options.onDragLeave.apply(_5f,[e,_61]); -}); -$(_5f).bind("_dragover",function(e,_62){ -$.data(_5f,"droppable").options.onDragOver.apply(_5f,[e,_62]); -}); -$(_5f).bind("_drop",function(e,_63){ -$.data(_5f,"droppable").options.onDrop.apply(_5f,[e,_63]); -}); -}; -$.fn.droppable=function(_64,_65){ -if(typeof _64=="string"){ -return $.fn.droppable.methods[_64](this,_65); -} -_64=_64||{}; -return this.each(function(){ -var _66=$.data(this,"droppable"); -if(_66){ -$.extend(_66.options,_64); -}else{ -_5e(this); -$.data(this,"droppable",{options:$.extend({},$.fn.droppable.defaults,$.fn.droppable.parseOptions(this),_64)}); -} -}); -}; -$.fn.droppable.methods={options:function(jq){ -return $.data(jq[0],"droppable").options; -},enable:function(jq){ -return jq.each(function(){ -$(this).droppable({disabled:false}); -}); -},disable:function(jq){ -return jq.each(function(){ -$(this).droppable({disabled:true}); -}); -}}; -$.fn.droppable.parseOptions=function(_67){ -var t=$(_67); -return $.extend({},$.parser.parseOptions(_67,["accept"]),{disabled:(t.attr("disabled")?true:undefined)}); -}; -$.fn.droppable.defaults={accept:null,disabled:false,onDragEnter:function(e,_68){ -},onDragOver:function(e,_69){ -},onDragLeave:function(e,_6a){ -},onDrop:function(e,_6b){ -}}; -})(jQuery); -(function($){ -$.fn.resizable=function(_6c,_6d){ -if(typeof _6c=="string"){ -return $.fn.resizable.methods[_6c](this,_6d); -} -function _6e(e){ -var _6f=e.data; -var _70=$.data(_6f.target,"resizable").options; -if(_6f.dir.indexOf("e")!=-1){ -var _71=_6f.startWidth+e.pageX-_6f.startX; -_71=Math.min(Math.max(_71,_70.minWidth),_70.maxWidth); -_6f.width=_71; -} -if(_6f.dir.indexOf("s")!=-1){ -var _72=_6f.startHeight+e.pageY-_6f.startY; -_72=Math.min(Math.max(_72,_70.minHeight),_70.maxHeight); -_6f.height=_72; -} -if(_6f.dir.indexOf("w")!=-1){ -var _71=_6f.startWidth-e.pageX+_6f.startX; -_71=Math.min(Math.max(_71,_70.minWidth),_70.maxWidth); -_6f.width=_71; -_6f.left=_6f.startLeft+_6f.startWidth-_6f.width; -} -if(_6f.dir.indexOf("n")!=-1){ -var _72=_6f.startHeight-e.pageY+_6f.startY; -_72=Math.min(Math.max(_72,_70.minHeight),_70.maxHeight); -_6f.height=_72; -_6f.top=_6f.startTop+_6f.startHeight-_6f.height; -} -}; -function _73(e){ -var _74=e.data; -var t=$(_74.target); -t.css({left:_74.left,top:_74.top}); -if(t.outerWidth()!=_74.width){ -t._outerWidth(_74.width); -} -if(t.outerHeight()!=_74.height){ -t._outerHeight(_74.height); -} -}; -function _75(e){ -$.fn.resizable.isResizing=true; -$.data(e.data.target,"resizable").options.onStartResize.call(e.data.target,e); -return false; -}; -function _76(e){ -_6e(e); -if($.data(e.data.target,"resizable").options.onResize.call(e.data.target,e)!=false){ -_73(e); -} -return false; -}; -function _77(e){ -$.fn.resizable.isResizing=false; -_6e(e,true); -_73(e); -$.data(e.data.target,"resizable").options.onStopResize.call(e.data.target,e); -$(document).unbind(".resizable"); -$("body").css("cursor",""); -return false; -}; -return this.each(function(){ -var _78=null; -var _79=$.data(this,"resizable"); -if(_79){ -$(this).unbind(".resizable"); -_78=$.extend(_79.options,_6c||{}); -}else{ -_78=$.extend({},$.fn.resizable.defaults,$.fn.resizable.parseOptions(this),_6c||{}); -$.data(this,"resizable",{options:_78}); -} -if(_78.disabled==true){ -return; -} -$(this).bind("mousemove.resizable",{target:this},function(e){ -if($.fn.resizable.isResizing){ -return; -} -var dir=_7a(e); -if(dir==""){ -$(e.data.target).css("cursor",""); -}else{ -$(e.data.target).css("cursor",dir+"-resize"); -} -}).bind("mouseleave.resizable",{target:this},function(e){ -$(e.data.target).css("cursor",""); -}).bind("mousedown.resizable",{target:this},function(e){ -var dir=_7a(e); -if(dir==""){ -return; -} -function _7b(css){ -var val=parseInt($(e.data.target).css(css)); -if(isNaN(val)){ -return 0; -}else{ -return val; -} -}; -var _7c={target:e.data.target,dir:dir,startLeft:_7b("left"),startTop:_7b("top"),left:_7b("left"),top:_7b("top"),startX:e.pageX,startY:e.pageY,startWidth:$(e.data.target).outerWidth(),startHeight:$(e.data.target).outerHeight(),width:$(e.data.target).outerWidth(),height:$(e.data.target).outerHeight(),deltaWidth:$(e.data.target).outerWidth()-$(e.data.target).width(),deltaHeight:$(e.data.target).outerHeight()-$(e.data.target).height()}; -$(document).bind("mousedown.resizable",_7c,_75); -$(document).bind("mousemove.resizable",_7c,_76); -$(document).bind("mouseup.resizable",_7c,_77); -$("body").css("cursor",dir+"-resize"); -}); -function _7a(e){ -var tt=$(e.data.target); -var dir=""; -var _7d=tt.offset(); -var _7e=tt.outerWidth(); -var _7f=tt.outerHeight(); -var _80=_78.edge; -if(e.pageY>_7d.top&&e.pageY<_7d.top+_80){ -dir+="n"; -}else{ -if(e.pageY<_7d.top+_7f&&e.pageY>_7d.top+_7f-_80){ -dir+="s"; -} -} -if(e.pageX>_7d.left&&e.pageX<_7d.left+_80){ -dir+="w"; -}else{ -if(e.pageX<_7d.left+_7e&&e.pageX>_7d.left+_7e-_80){ -dir+="e"; -} -} -var _81=_78.handles.split(","); -for(var i=0;i<_81.length;i++){ -var _82=_81[i].replace(/(^\s*)|(\s*$)/g,""); -if(_82=="all"||_82==dir){ -return dir; -} -} -return ""; -}; -}); -}; -$.fn.resizable.methods={options:function(jq){ -return $.data(jq[0],"resizable").options; -},enable:function(jq){ -return jq.each(function(){ -$(this).resizable({disabled:false}); -}); -},disable:function(jq){ -return jq.each(function(){ -$(this).resizable({disabled:true}); -}); -}}; -$.fn.resizable.parseOptions=function(_83){ -var t=$(_83); -return $.extend({},$.parser.parseOptions(_83,["handles",{minWidth:"number",minHeight:"number",maxWidth:"number",maxHeight:"number",edge:"number"}]),{disabled:(t.attr("disabled")?true:undefined)}); -}; -$.fn.resizable.defaults={disabled:false,handles:"n, e, s, w, ne, se, sw, nw, all",minWidth:10,minHeight:10,maxWidth:10000,maxHeight:10000,edge:5,onStartResize:function(e){ -},onResize:function(e){ -},onStopResize:function(e){ -}}; -$.fn.resizable.isResizing=false; -})(jQuery); -(function($){ -function _84(_85,_86){ -var _87=$.data(_85,"linkbutton").options; -if(_86){ -$.extend(_87,_86); -} -if(_87.width||_87.height||_87.fit){ -var btn=$(_85); -var _88=btn.parent(); -var _89=btn.is(":visible"); -if(!_89){ -var _8a=$("
                                  ").insertBefore(_85); -var _8b={position:btn.css("position"),display:btn.css("display"),left:btn.css("left")}; -btn.appendTo("body"); -btn.css({position:"absolute",display:"inline-block",left:-20000}); -} -btn._size(_87,_88); -var _8c=btn.find(".l-btn-left"); -_8c.css("margin-top",0); -_8c.css("margin-top",parseInt((btn.height()-_8c.height())/2)+"px"); -if(!_89){ -btn.insertAfter(_8a); -btn.css(_8b); -_8a.remove(); -} -} -}; -function _8d(_8e){ -var _8f=$.data(_8e,"linkbutton").options; -var t=$(_8e).empty(); -t.addClass("l-btn").removeClass("l-btn-plain l-btn-selected l-btn-plain-selected l-btn-outline"); -t.removeClass("l-btn-small l-btn-medium l-btn-large").addClass("l-btn-"+_8f.size); -if(_8f.plain){ -t.addClass("l-btn-plain"); -} -if(_8f.outline){ -t.addClass("l-btn-outline"); -} -if(_8f.selected){ -t.addClass(_8f.plain?"l-btn-selected l-btn-plain-selected":"l-btn-selected"); -} -t.attr("group",_8f.group||""); -t.attr("id",_8f.id||""); -var _90=$("").appendTo(t); -if(_8f.text){ -$("").html(_8f.text).appendTo(_90); -}else{ -$(" ").appendTo(_90); -} -if(_8f.iconCls){ -$(" ").addClass(_8f.iconCls).appendTo(_90); -_90.addClass("l-btn-icon-"+_8f.iconAlign); -} -t.unbind(".linkbutton").bind("focus.linkbutton",function(){ -if(!_8f.disabled){ -$(this).addClass("l-btn-focus"); -} -}).bind("blur.linkbutton",function(){ -$(this).removeClass("l-btn-focus"); -}).bind("click.linkbutton",function(){ -if(!_8f.disabled){ -if(_8f.toggle){ -if(_8f.selected){ -$(this).linkbutton("unselect"); -}else{ -$(this).linkbutton("select"); -} -} -_8f.onClick.call(this); -} -}); -_91(_8e,_8f.selected); -_92(_8e,_8f.disabled); -}; -function _91(_93,_94){ -var _95=$.data(_93,"linkbutton").options; -if(_94){ -if(_95.group){ -$("a.l-btn[group=\""+_95.group+"\"]").each(function(){ -var o=$(this).linkbutton("options"); -if(o.toggle){ -$(this).removeClass("l-btn-selected l-btn-plain-selected"); -o.selected=false; -} -}); -} -$(_93).addClass(_95.plain?"l-btn-selected l-btn-plain-selected":"l-btn-selected"); -_95.selected=true; -}else{ -if(!_95.group){ -$(_93).removeClass("l-btn-selected l-btn-plain-selected"); -_95.selected=false; -} -} -}; -function _92(_96,_97){ -var _98=$.data(_96,"linkbutton"); -var _99=_98.options; -$(_96).removeClass("l-btn-disabled l-btn-plain-disabled"); -if(_97){ -_99.disabled=true; -var _9a=$(_96).attr("href"); -if(_9a){ -_98.href=_9a; -$(_96).attr("href","javascript:void(0)"); -} -if(_96.onclick){ -_98.onclick=_96.onclick; -_96.onclick=null; -} -_99.plain?$(_96).addClass("l-btn-disabled l-btn-plain-disabled"):$(_96).addClass("l-btn-disabled"); -}else{ -_99.disabled=false; -if(_98.href){ -$(_96).attr("href",_98.href); -} -if(_98.onclick){ -_96.onclick=_98.onclick; -} -} -}; -$.fn.linkbutton=function(_9b,_9c){ -if(typeof _9b=="string"){ -return $.fn.linkbutton.methods[_9b](this,_9c); -} -_9b=_9b||{}; -return this.each(function(){ -var _9d=$.data(this,"linkbutton"); -if(_9d){ -$.extend(_9d.options,_9b); -}else{ -$.data(this,"linkbutton",{options:$.extend({},$.fn.linkbutton.defaults,$.fn.linkbutton.parseOptions(this),_9b)}); -$(this).removeAttr("disabled"); -$(this).bind("_resize",function(e,_9e){ -if($(this).hasClass("easyui-fluid")||_9e){ -_84(this); -} -return false; -}); -} -_8d(this); -_84(this); -}); -}; -$.fn.linkbutton.methods={options:function(jq){ -return $.data(jq[0],"linkbutton").options; -},resize:function(jq,_9f){ -return jq.each(function(){ -_84(this,_9f); -}); -},enable:function(jq){ -return jq.each(function(){ -_92(this,false); -}); -},disable:function(jq){ -return jq.each(function(){ -_92(this,true); -}); -},select:function(jq){ -return jq.each(function(){ -_91(this,true); -}); -},unselect:function(jq){ -return jq.each(function(){ -_91(this,false); -}); -}}; -$.fn.linkbutton.parseOptions=function(_a0){ -var t=$(_a0); -return $.extend({},$.parser.parseOptions(_a0,["id","iconCls","iconAlign","group","size","text",{plain:"boolean",toggle:"boolean",selected:"boolean",outline:"boolean"}]),{disabled:(t.attr("disabled")?true:undefined),text:($.trim(t.html())||undefined),iconCls:(t.attr("icon")||t.attr("iconCls"))}); -}; -$.fn.linkbutton.defaults={id:null,disabled:false,toggle:false,selected:false,outline:false,group:null,plain:false,text:"",iconCls:null,iconAlign:"left",size:"small",onClick:function(){ -}}; -})(jQuery); -(function($){ -function _a1(_a2){ -var _a3=$.data(_a2,"pagination"); -var _a4=_a3.options; -var bb=_a3.bb={}; -var _a5=$(_a2).addClass("pagination").html("
                                  "); -var tr=_a5.find("tr"); -var aa=$.extend([],_a4.layout); -if(!_a4.showPageList){ -_a6(aa,"list"); -} -if(!_a4.showRefresh){ -_a6(aa,"refresh"); -} -if(aa[0]=="sep"){ -aa.shift(); -} -if(aa[aa.length-1]=="sep"){ -aa.pop(); -} -for(var _a7=0;_a7"); -ps.bind("change",function(){ -_a4.pageSize=parseInt($(this).val()); -_a4.onChangePageSize.call(_a2,_a4.pageSize); -_ae(_a2,_a4.pageNumber); -}); -for(var i=0;i<_a4.pageList.length;i++){ -$("").text(_a4.pageList[i]).appendTo(ps); -} -$("").append(ps).appendTo(tr); -}else{ -if(_a8=="sep"){ -$("
                                  ").appendTo(tr); -}else{ -if(_a8=="first"){ -bb.first=_a9("first"); -}else{ -if(_a8=="prev"){ -bb.prev=_a9("prev"); -}else{ -if(_a8=="next"){ -bb.next=_a9("next"); -}else{ -if(_a8=="last"){ -bb.last=_a9("last"); -}else{ -if(_a8=="manual"){ -$("").html(_a4.beforePageText).appendTo(tr).wrap(""); -bb.num=$("").appendTo(tr).wrap(""); -bb.num.unbind(".pagination").bind("keydown.pagination",function(e){ -if(e.keyCode==13){ -var _aa=parseInt($(this).val())||1; -_ae(_a2,_aa); -return false; -} -}); -bb.after=$("").appendTo(tr).wrap(""); -}else{ -if(_a8=="refresh"){ -bb.refresh=_a9("refresh"); -}else{ -if(_a8=="links"){ -$("").appendTo(tr); -} -} -} -} -} -} -} -} -} -} -if(_a4.buttons){ -$("
                                  ").appendTo(tr); -if($.isArray(_a4.buttons)){ -for(var i=0;i<_a4.buttons.length;i++){ -var btn=_a4.buttons[i]; -if(btn=="-"){ -$("
                                  ").appendTo(tr); -}else{ -var td=$("").appendTo(tr); -var a=$("").appendTo(td); -a[0].onclick=eval(btn.handler||function(){ -}); -a.linkbutton($.extend({},btn,{plain:true})); -} -} -}else{ -var td=$("").appendTo(tr); -$(_a4.buttons).appendTo(td).show(); -} -} -$("
                                  ").appendTo(_a5); -$("
                                  ").appendTo(_a5); -function _a9(_ab){ -var btn=_a4.nav[_ab]; -var a=$("").appendTo(tr); -a.wrap(""); -a.linkbutton({iconCls:btn.iconCls,plain:true}).unbind(".pagination").bind("click.pagination",function(){ -btn.handler.call(_a2); -}); -return a; -}; -function _a6(aa,_ac){ -var _ad=$.inArray(_ac,aa); -if(_ad>=0){ -aa.splice(_ad,1); -} -return aa; -}; -}; -function _ae(_af,_b0){ -var _b1=$.data(_af,"pagination").options; -_b2(_af,{pageNumber:_b0}); -_b1.onSelectPage.call(_af,_b1.pageNumber,_b1.pageSize); -}; -function _b2(_b3,_b4){ -var _b5=$.data(_b3,"pagination"); -var _b6=_b5.options; -var bb=_b5.bb; -$.extend(_b6,_b4||{}); -var ps=$(_b3).find("select.pagination-page-list"); -if(ps.length){ -ps.val(_b6.pageSize+""); -_b6.pageSize=parseInt(ps.val()); -} -var _b7=Math.ceil(_b6.total/_b6.pageSize)||1; -if(_b6.pageNumber<1){ -_b6.pageNumber=1; -} -if(_b6.pageNumber>_b7){ -_b6.pageNumber=_b7; -} -if(_b6.total==0){ -_b6.pageNumber=0; -_b7=0; -} -if(bb.num){ -bb.num.val(_b6.pageNumber); -} -if(bb.after){ -bb.after.html(_b6.afterPageText.replace(/{pages}/,_b7)); -} -var td=$(_b3).find("td.pagination-links"); -if(td.length){ -td.empty(); -var _b8=_b6.pageNumber-Math.floor(_b6.links/2); -if(_b8<1){ -_b8=1; -} -var _b9=_b8+_b6.links-1; -if(_b9>_b7){ -_b9=_b7; -} -_b8=_b9-_b6.links+1; -if(_b8<1){ -_b8=1; -} -for(var i=_b8;i<=_b9;i++){ -var a=$("").appendTo(td); -a.linkbutton({plain:true,text:i}); -if(i==_b6.pageNumber){ -a.linkbutton("select"); -}else{ -a.unbind(".pagination").bind("click.pagination",{pageNumber:i},function(e){ -_ae(_b3,e.data.pageNumber); -}); -} -} -} -var _ba=_b6.displayMsg; -_ba=_ba.replace(/{from}/,_b6.total==0?0:_b6.pageSize*(_b6.pageNumber-1)+1); -_ba=_ba.replace(/{to}/,Math.min(_b6.pageSize*(_b6.pageNumber),_b6.total)); -_ba=_ba.replace(/{total}/,_b6.total); -$(_b3).find("div.pagination-info").html(_ba); -if(bb.first){ -bb.first.linkbutton({disabled:((!_b6.total)||_b6.pageNumber==1)}); -} -if(bb.prev){ -bb.prev.linkbutton({disabled:((!_b6.total)||_b6.pageNumber==1)}); -} -if(bb.next){ -bb.next.linkbutton({disabled:(_b6.pageNumber==_b7)}); -} -if(bb.last){ -bb.last.linkbutton({disabled:(_b6.pageNumber==_b7)}); -} -_bb(_b3,_b6.loading); -}; -function _bb(_bc,_bd){ -var _be=$.data(_bc,"pagination"); -var _bf=_be.options; -_bf.loading=_bd; -if(_bf.showRefresh&&_be.bb.refresh){ -_be.bb.refresh.linkbutton({iconCls:(_bf.loading?"pagination-loading":"pagination-load")}); -} -}; -$.fn.pagination=function(_c0,_c1){ -if(typeof _c0=="string"){ -return $.fn.pagination.methods[_c0](this,_c1); -} -_c0=_c0||{}; -return this.each(function(){ -var _c2; -var _c3=$.data(this,"pagination"); -if(_c3){ -_c2=$.extend(_c3.options,_c0); -}else{ -_c2=$.extend({},$.fn.pagination.defaults,$.fn.pagination.parseOptions(this),_c0); -$.data(this,"pagination",{options:_c2}); -} -_a1(this); -_b2(this); -}); -}; -$.fn.pagination.methods={options:function(jq){ -return $.data(jq[0],"pagination").options; -},loading:function(jq){ -return jq.each(function(){ -_bb(this,true); -}); -},loaded:function(jq){ -return jq.each(function(){ -_bb(this,false); -}); -},refresh:function(jq,_c4){ -return jq.each(function(){ -_b2(this,_c4); -}); -},select:function(jq,_c5){ -return jq.each(function(){ -_ae(this,_c5); -}); -}}; -$.fn.pagination.parseOptions=function(_c6){ -var t=$(_c6); -return $.extend({},$.parser.parseOptions(_c6,[{total:"number",pageSize:"number",pageNumber:"number",links:"number"},{loading:"boolean",showPageList:"boolean",showRefresh:"boolean"}]),{pageList:(t.attr("pageList")?eval(t.attr("pageList")):undefined)}); -}; -$.fn.pagination.defaults={total:1,pageSize:10,pageNumber:1,pageList:[10,20,30,50],loading:false,buttons:null,showPageList:true,showRefresh:true,links:10,layout:["list","sep","first","prev","sep","manual","sep","next","last","sep","refresh"],onSelectPage:function(_c7,_c8){ -},onBeforeRefresh:function(_c9,_ca){ -},onRefresh:function(_cb,_cc){ -},onChangePageSize:function(_cd){ -},beforePageText:"Page",afterPageText:"of {pages}",displayMsg:"Displaying {from} to {to} of {total} items",nav:{first:{iconCls:"pagination-first",handler:function(){ -var _ce=$(this).pagination("options"); -if(_ce.pageNumber>1){ -$(this).pagination("select",1); -} -}},prev:{iconCls:"pagination-prev",handler:function(){ -var _cf=$(this).pagination("options"); -if(_cf.pageNumber>1){ -$(this).pagination("select",_cf.pageNumber-1); -} -}},next:{iconCls:"pagination-next",handler:function(){ -var _d0=$(this).pagination("options"); -var _d1=Math.ceil(_d0.total/_d0.pageSize); -if(_d0.pageNumber<_d1){ -$(this).pagination("select",_d0.pageNumber+1); -} -}},last:{iconCls:"pagination-last",handler:function(){ -var _d2=$(this).pagination("options"); -var _d3=Math.ceil(_d2.total/_d2.pageSize); -if(_d2.pageNumber<_d3){ -$(this).pagination("select",_d3); -} -}},refresh:{iconCls:"pagination-refresh",handler:function(){ -var _d4=$(this).pagination("options"); -if(_d4.onBeforeRefresh.call(this,_d4.pageNumber,_d4.pageSize)!=false){ -$(this).pagination("select",_d4.pageNumber); -_d4.onRefresh.call(this,_d4.pageNumber,_d4.pageSize); -} -}}}}; -})(jQuery); -(function($){ -function _d5(_d6){ -var _d7=$(_d6); -_d7.addClass("tree"); -return _d7; -}; -function _d8(_d9){ -var _da=$.data(_d9,"tree").options; -$(_d9).unbind().bind("mouseover",function(e){ -var tt=$(e.target); -var _db=tt.closest("div.tree-node"); -if(!_db.length){ -return; -} -_db.addClass("tree-node-hover"); -if(tt.hasClass("tree-hit")){ -if(tt.hasClass("tree-expanded")){ -tt.addClass("tree-expanded-hover"); -}else{ -tt.addClass("tree-collapsed-hover"); -} -} -e.stopPropagation(); -}).bind("mouseout",function(e){ -var tt=$(e.target); -var _dc=tt.closest("div.tree-node"); -if(!_dc.length){ -return; -} -_dc.removeClass("tree-node-hover"); -if(tt.hasClass("tree-hit")){ -if(tt.hasClass("tree-expanded")){ -tt.removeClass("tree-expanded-hover"); -}else{ -tt.removeClass("tree-collapsed-hover"); -} -} -e.stopPropagation(); -}).bind("click",function(e){ -var tt=$(e.target); -var _dd=tt.closest("div.tree-node"); -if(!_dd.length){ -return; -} -if(tt.hasClass("tree-hit")){ -_144(_d9,_dd[0]); -return false; -}else{ -if(tt.hasClass("tree-checkbox")){ -_104(_d9,_dd[0]); -return false; -}else{ -_18a(_d9,_dd[0]); -_da.onClick.call(_d9,_e0(_d9,_dd[0])); -} -} -e.stopPropagation(); -}).bind("dblclick",function(e){ -var _de=$(e.target).closest("div.tree-node"); -if(!_de.length){ -return; -} -_18a(_d9,_de[0]); -_da.onDblClick.call(_d9,_e0(_d9,_de[0])); -e.stopPropagation(); -}).bind("contextmenu",function(e){ -var _df=$(e.target).closest("div.tree-node"); -if(!_df.length){ -return; -} -_da.onContextMenu.call(_d9,e,_e0(_d9,_df[0])); -e.stopPropagation(); -}); -}; -function _e1(_e2){ -var _e3=$.data(_e2,"tree").options; -_e3.dnd=false; -var _e4=$(_e2).find("div.tree-node"); -_e4.draggable("disable"); -_e4.css("cursor","pointer"); -}; -function _e5(_e6){ -var _e7=$.data(_e6,"tree"); -var _e8=_e7.options; -var _e9=_e7.tree; -_e7.disabledNodes=[]; -_e8.dnd=true; -_e9.find("div.tree-node").draggable({disabled:false,revert:true,cursor:"pointer",proxy:function(_ea){ -var p=$("
                                  ").appendTo("body"); -p.html(" "+$(_ea).find(".tree-title").html()); -p.hide(); -return p; -},deltaX:15,deltaY:15,onBeforeDrag:function(e){ -if(_e8.onBeforeDrag.call(_e6,_e0(_e6,this))==false){ -return false; -} -if($(e.target).hasClass("tree-hit")||$(e.target).hasClass("tree-checkbox")){ -return false; -} -if(e.which!=1){ -return false; -} -var _eb=$(this).find("span.tree-indent"); -if(_eb.length){ -e.data.offsetWidth-=_eb.length*_eb.width(); -} -},onStartDrag:function(e){ -$(this).next("ul").find("div.tree-node").each(function(){ -$(this).droppable("disable"); -_e7.disabledNodes.push(this); -}); -$(this).draggable("proxy").css({left:-10000,top:-10000}); -_e8.onStartDrag.call(_e6,_e0(_e6,this)); -var _ec=_e0(_e6,this); -if(_ec.id==undefined){ -_ec.id="easyui_tree_node_id_temp"; -_127(_e6,_ec); -} -_e7.draggingNodeId=_ec.id; -},onDrag:function(e){ -var x1=e.pageX,y1=e.pageY,x2=e.data.startX,y2=e.data.startY; -var d=Math.sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2)); -if(d>3){ -$(this).draggable("proxy").show(); -} -this.pageY=e.pageY; -},onStopDrag:function(){ -for(var i=0;i<_e7.disabledNodes.length;i++){ -$(_e7.disabledNodes[i]).droppable("enable"); -} -_e7.disabledNodes=[]; -var _ed=_182(_e6,_e7.draggingNodeId); -if(_ed&&_ed.id=="easyui_tree_node_id_temp"){ -_ed.id=""; -_127(_e6,_ed); -} -_e8.onStopDrag.call(_e6,_ed); -}}).droppable({accept:"div.tree-node",onDragEnter:function(e,_ee){ -if(_e8.onDragEnter.call(_e6,this,_ef(_ee))==false){ -_f0(_ee,false); -$(this).removeClass("tree-node-append tree-node-top tree-node-bottom"); -$(this).droppable("disable"); -_e7.disabledNodes.push(this); -} -},onDragOver:function(e,_f1){ -if($(this).droppable("options").disabled){ -return; -} -var _f2=_f1.pageY; -var top=$(this).offset().top; -var _f3=top+$(this).outerHeight(); -_f0(_f1,true); -$(this).removeClass("tree-node-append tree-node-top tree-node-bottom"); -if(_f2>top+(_f3-top)/2){ -if(_f3-_f2<5){ -$(this).addClass("tree-node-bottom"); -}else{ -$(this).addClass("tree-node-append"); -} -}else{ -if(_f2-top<5){ -$(this).addClass("tree-node-top"); -}else{ -$(this).addClass("tree-node-append"); -} -} -if(_e8.onDragOver.call(_e6,this,_ef(_f1))==false){ -_f0(_f1,false); -$(this).removeClass("tree-node-append tree-node-top tree-node-bottom"); -$(this).droppable("disable"); -_e7.disabledNodes.push(this); -} -},onDragLeave:function(e,_f4){ -_f0(_f4,false); -$(this).removeClass("tree-node-append tree-node-top tree-node-bottom"); -_e8.onDragLeave.call(_e6,this,_ef(_f4)); -},onDrop:function(e,_f5){ -var _f6=this; -var _f7,_f8; -if($(this).hasClass("tree-node-append")){ -_f7=_f9; -_f8="append"; -}else{ -_f7=_fa; -_f8=$(this).hasClass("tree-node-top")?"top":"bottom"; -} -if(_e8.onBeforeDrop.call(_e6,_f6,_ef(_f5),_f8)==false){ -$(this).removeClass("tree-node-append tree-node-top tree-node-bottom"); -return; -} -_f7(_f5,_f6,_f8); -$(this).removeClass("tree-node-append tree-node-top tree-node-bottom"); -}}); -function _ef(_fb,pop){ -return $(_fb).closest("ul.tree").tree(pop?"pop":"getData",_fb); -}; -function _f0(_fc,_fd){ -var _fe=$(_fc).draggable("proxy").find("span.tree-dnd-icon"); -_fe.removeClass("tree-dnd-yes tree-dnd-no").addClass(_fd?"tree-dnd-yes":"tree-dnd-no"); -}; -function _f9(_ff,dest){ -if(_e0(_e6,dest).state=="closed"){ -_13c(_e6,dest,function(){ -_100(); -}); -}else{ -_100(); -} -function _100(){ -var node=_ef(_ff,true); -$(_e6).tree("append",{parent:dest,data:[node]}); -_e8.onDrop.call(_e6,dest,node,"append"); -}; -}; -function _fa(_101,dest,_102){ -var _103={}; -if(_102=="top"){ -_103.before=dest; -}else{ -_103.after=dest; -} -var node=_ef(_101,true); -_103.data=node; -$(_e6).tree("insert",_103); -_e8.onDrop.call(_e6,dest,node,_102); -}; -}; -function _104(_105,_106,_107){ -var _108=$.data(_105,"tree"); -var opts=_108.options; -if(!opts.checkbox){ -return; -} -var _109=_e0(_105,_106); -if(_107==undefined){ -var ck=$(_106).find(".tree-checkbox"); -if(ck.hasClass("tree-checkbox1")){ -_107=false; -}else{ -if(ck.hasClass("tree-checkbox0")){ -_107=true; -}else{ -if(_109._checked==undefined){ -_109._checked=$(_106).find(".tree-checkbox").hasClass("tree-checkbox1"); -} -_107=!_109._checked; -} -} -} -_109._checked=_107; -if(opts.onBeforeCheck.call(_105,_109,_107)==false){ -return; -} -if(opts.cascadeCheck){ -_10a(_109,_107); -_10b(_109,_107); -}else{ -_10c($(_109.target),_107?"1":"0"); -} -opts.onCheck.call(_105,_109,_107); -function _10c(node,flag){ -var ck=node.find(".tree-checkbox"); -ck.removeClass("tree-checkbox0 tree-checkbox1 tree-checkbox2"); -ck.addClass("tree-checkbox"+flag); -}; -function _10a(_10d,_10e){ -if(opts.deepCheck){ -var node=$("#"+_10d.domId); -var flag=_10e?"1":"0"; -_10c(node,flag); -_10c(node.next(),flag); -}else{ -_10f(_10d,_10e); -_12a(_10d.children||[],function(n){ -_10f(n,_10e); -}); -} -}; -function _10f(_110,_111){ -if(_110.hidden){ -return; -} -var cls="tree-checkbox"+(_111?"1":"0"); -var node=$("#"+_110.domId); -_10c(node,_111?"1":"0"); -if(_110.children){ -for(var i=0;i<_110.children.length;i++){ -if(_110.children[i].hidden){ -if(!$("#"+_110.children[i].domId).find("."+cls).length){ -_10c(node,"2"); -var _112=_14f(_105,node[0]); -while(_112){ -_10c($(_112.target),"2"); -_112=_14f(_105,_112[0]); -} -return; -} -} -} -} -}; -function _10b(_113,_114){ -var node=$("#"+_113.domId); -var _115=_14f(_105,node[0]); -if(_115){ -var flag=""; -if(_116(node,true)){ -flag="1"; -}else{ -if(_116(node,false)){ -flag="0"; -}else{ -flag="2"; -} -} -_10c($(_115.target),flag); -_10b(_115,_114); -} -}; -function _116(node,_117){ -var cls="tree-checkbox"+(_117?"1":"0"); -var ck=node.find(".tree-checkbox"); -if(!ck.hasClass(cls)){ -return false; -} -var b=true; -node.parent().siblings().each(function(){ -var ck=$(this).children("div.tree-node").children(".tree-checkbox"); -if(ck.length&&!ck.hasClass(cls)){ -b=false; -return false; -} -}); -return b; -}; -}; -function _118(_119,_11a){ -var opts=$.data(_119,"tree").options; -if(!opts.checkbox){ -return; -} -var node=$(_11a); -if(_11b(_119,_11a)){ -var ck=node.find(".tree-checkbox"); -if(ck.length){ -if(ck.hasClass("tree-checkbox1")){ -_104(_119,_11a,true); -}else{ -_104(_119,_11a,false); -} -}else{ -if(opts.onlyLeafCheck){ -$("").insertBefore(node.find(".tree-title")); -} -} -}else{ -var ck=node.find(".tree-checkbox"); -if(opts.onlyLeafCheck){ -ck.remove(); -}else{ -if(ck.hasClass("tree-checkbox1")){ -_104(_119,_11a,true); -}else{ -if(ck.hasClass("tree-checkbox2")){ -var _11c=true; -var _11d=true; -var _11e=_11f(_119,_11a); -for(var i=0;i<_11e.length;i++){ -if(_11e[i].checked){ -_11d=false; -}else{ -_11c=false; -} -} -if(_11c){ -_104(_119,_11a,true); -} -if(_11d){ -_104(_119,_11a,false); -} -} -} -} -} -}; -function _120(_121,ul,data,_122){ -var _123=$.data(_121,"tree"); -var opts=_123.options; -var _124=$(ul).prevAll("div.tree-node:first"); -data=opts.loadFilter.call(_121,data,_124[0]); -var _125=_126(_121,"domId",_124.attr("id")); -if(!_122){ -_125?_125.children=data:_123.data=data; -$(ul).empty(); -}else{ -if(_125){ -_125.children?_125.children=_125.children.concat(data):_125.children=data; -}else{ -_123.data=_123.data.concat(data); -} -} -opts.view.render.call(opts.view,_121,ul,data); -if(opts.dnd){ -_e5(_121); -} -if(_125){ -_127(_121,_125); -} -var _128=[]; -var _129=[]; -for(var i=0;i1){ -$(_12f[0].target).addClass("tree-root-first"); -}else{ -if(_12f.length==1){ -$(_12f[0].target).addClass("tree-root-one"); -} -} -} -$(ul).children("li").each(function(){ -var node=$(this).children("div.tree-node"); -var ul=node.next("ul"); -if(ul.length){ -if($(this).next().length){ -_130(node); -} -_12c(_12d,ul,_12e); -}else{ -_131(node); -} -}); -var _132=$(ul).children("li:last").children("div.tree-node").addClass("tree-node-last"); -_132.children("span.tree-join").removeClass("tree-join").addClass("tree-joinbottom"); -function _131(node,_133){ -var icon=node.find("span.tree-icon"); -icon.prev("span.tree-indent").addClass("tree-join"); -}; -function _130(node){ -var _134=node.find("span.tree-indent, span.tree-hit").length; -node.next().find("div.tree-node").each(function(){ -$(this).children("span:eq("+(_134-1)+")").addClass("tree-line"); -}); -}; -}; -function _135(_136,ul,_137,_138){ -var opts=$.data(_136,"tree").options; -_137=$.extend({},opts.queryParams,_137||{}); -var _139=null; -if(_136!=ul){ -var node=$(ul).prev(); -_139=_e0(_136,node[0]); -} -if(opts.onBeforeLoad.call(_136,_139,_137)==false){ -return; -} -var _13a=$(ul).prev().children("span.tree-folder"); -_13a.addClass("tree-loading"); -var _13b=opts.loader.call(_136,_137,function(data){ -_13a.removeClass("tree-loading"); -_120(_136,ul,data); -if(_138){ -_138(); -} -},function(){ -_13a.removeClass("tree-loading"); -opts.onLoadError.apply(_136,arguments); -if(_138){ -_138(); -} -}); -if(_13b==false){ -_13a.removeClass("tree-loading"); -} -}; -function _13c(_13d,_13e,_13f){ -var opts=$.data(_13d,"tree").options; -var hit=$(_13e).children("span.tree-hit"); -if(hit.length==0){ -return; -} -if(hit.hasClass("tree-expanded")){ -return; -} -var node=_e0(_13d,_13e); -if(opts.onBeforeExpand.call(_13d,node)==false){ -return; -} -hit.removeClass("tree-collapsed tree-collapsed-hover").addClass("tree-expanded"); -hit.next().addClass("tree-folder-open"); -var ul=$(_13e).next(); -if(ul.length){ -if(opts.animate){ -ul.slideDown("normal",function(){ -node.state="open"; -opts.onExpand.call(_13d,node); -if(_13f){ -_13f(); -} -}); -}else{ -ul.css("display","block"); -node.state="open"; -opts.onExpand.call(_13d,node); -if(_13f){ -_13f(); -} -} -}else{ -var _140=$("
                                    ").insertAfter(_13e); -_135(_13d,_140[0],{id:node.id},function(){ -if(_140.is(":empty")){ -_140.remove(); -} -if(opts.animate){ -_140.slideDown("normal",function(){ -node.state="open"; -opts.onExpand.call(_13d,node); -if(_13f){ -_13f(); -} -}); -}else{ -_140.css("display","block"); -node.state="open"; -opts.onExpand.call(_13d,node); -if(_13f){ -_13f(); -} -} -}); -} -}; -function _141(_142,_143){ -var opts=$.data(_142,"tree").options; -var hit=$(_143).children("span.tree-hit"); -if(hit.length==0){ -return; -} -if(hit.hasClass("tree-collapsed")){ -return; -} -var node=_e0(_142,_143); -if(opts.onBeforeCollapse.call(_142,node)==false){ -return; -} -hit.removeClass("tree-expanded tree-expanded-hover").addClass("tree-collapsed"); -hit.next().removeClass("tree-folder-open"); -var ul=$(_143).next(); -if(opts.animate){ -ul.slideUp("normal",function(){ -node.state="closed"; -opts.onCollapse.call(_142,node); -}); -}else{ -ul.css("display","none"); -node.state="closed"; -opts.onCollapse.call(_142,node); -} -}; -function _144(_145,_146){ -var hit=$(_146).children("span.tree-hit"); -if(hit.length==0){ -return; -} -if(hit.hasClass("tree-expanded")){ -_141(_145,_146); -}else{ -_13c(_145,_146); -} -}; -function _147(_148,_149){ -var _14a=_11f(_148,_149); -if(_149){ -_14a.unshift(_e0(_148,_149)); -} -for(var i=0;i<_14a.length;i++){ -_13c(_148,_14a[i].target); -} -}; -function _14b(_14c,_14d){ -var _14e=[]; -var p=_14f(_14c,_14d); -while(p){ -_14e.unshift(p); -p=_14f(_14c,p.target); -} -for(var i=0;i<_14e.length;i++){ -_13c(_14c,_14e[i].target); -} -}; -function _150(_151,_152){ -var c=$(_151).parent(); -while(c[0].tagName!="BODY"&&c.css("overflow-y")!="auto"){ -c=c.parent(); -} -var n=$(_152); -var ntop=n.offset().top; -if(c[0].tagName!="BODY"){ -var ctop=c.offset().top; -if(ntopctop+c.outerHeight()-18){ -c.scrollTop(c.scrollTop()+ntop+n.outerHeight()-ctop-c.outerHeight()+18); -} -} -}else{ -c.scrollTop(ntop); -} -}; -function _153(_154,_155){ -var _156=_11f(_154,_155); -if(_155){ -_156.unshift(_e0(_154,_155)); -} -for(var i=0;i<_156.length;i++){ -_141(_154,_156[i].target); -} -}; -function _157(_158,_159){ -var node=$(_159.parent); -var data=_159.data; -if(!data){ -return; -} -data=$.isArray(data)?data:[data]; -if(!data.length){ -return; -} -var ul; -if(node.length==0){ -ul=$(_158); -}else{ -if(_11b(_158,node[0])){ -var _15a=node.find("span.tree-icon"); -_15a.removeClass("tree-file").addClass("tree-folder tree-folder-open"); -var hit=$("").insertBefore(_15a); -if(hit.prev().length){ -hit.prev().remove(); -} -} -ul=node.next(); -if(!ul.length){ -ul=$("
                                      ").insertAfter(node); -} -} -_120(_158,ul[0],data,true); -_118(_158,ul.prev()); -}; -function _15b(_15c,_15d){ -var ref=_15d.before||_15d.after; -var _15e=_14f(_15c,ref); -var data=_15d.data; -if(!data){ -return; -} -data=$.isArray(data)?data:[data]; -if(!data.length){ -return; -} -_157(_15c,{parent:(_15e?_15e.target:null),data:data}); -var _15f=_15e?_15e.children:$(_15c).tree("getRoots"); -for(var i=0;i<_15f.length;i++){ -if(_15f[i].domId==$(ref).attr("id")){ -for(var j=data.length-1;j>=0;j--){ -_15f.splice((_15d.before?i:(i+1)),0,data[j]); -} -_15f.splice(_15f.length-data.length,data.length); -break; -} -} -var li=$(); -for(var i=0;i").prependTo(node); -node.next().remove(); -} -_127(_161,_163); -_118(_161,_163.target); -} -_12c(_161,_161); -function del(_164){ -var id=$(_164).attr("id"); -var _165=_14f(_161,_164); -var cc=_165?_165.children:$.data(_161,"tree").data; -for(var i=0;i=0;i--){ -_189.unshift(node.children[i]); -} -} -} -}; -function _18a(_18b,_18c){ -var opts=$.data(_18b,"tree").options; -var node=_e0(_18b,_18c); -if(opts.onBeforeSelect.call(_18b,node)==false){ -return; -} -$(_18b).find("div.tree-node-selected").removeClass("tree-node-selected"); -$(_18c).addClass("tree-node-selected"); -opts.onSelect.call(_18b,node); -}; -function _11b(_18d,_18e){ -return $(_18e).children("span.tree-hit").length==0; -}; -function _18f(_190,_191){ -var opts=$.data(_190,"tree").options; -var node=_e0(_190,_191); -if(opts.onBeforeEdit.call(_190,node)==false){ -return; -} -$(_191).css("position","relative"); -var nt=$(_191).find(".tree-title"); -var _192=nt.outerWidth(); -nt.empty(); -var _193=$("").appendTo(nt); -_193.val(node.text).focus(); -_193.width(_192+20); -_193.height(document.compatMode=="CSS1Compat"?(18-(_193.outerHeight()-_193.height())):18); -_193.bind("click",function(e){ -return false; -}).bind("mousedown",function(e){ -e.stopPropagation(); -}).bind("mousemove",function(e){ -e.stopPropagation(); -}).bind("keydown",function(e){ -if(e.keyCode==13){ -_194(_190,_191); -return false; -}else{ -if(e.keyCode==27){ -_198(_190,_191); -return false; -} -} -}).bind("blur",function(e){ -e.stopPropagation(); -_194(_190,_191); -}); -}; -function _194(_195,_196){ -var opts=$.data(_195,"tree").options; -$(_196).css("position",""); -var _197=$(_196).find("input.tree-editor"); -var val=_197.val(); -_197.remove(); -var node=_e0(_195,_196); -node.text=val; -_127(_195,node); -opts.onAfterEdit.call(_195,node); -}; -function _198(_199,_19a){ -var opts=$.data(_199,"tree").options; -$(_19a).css("position",""); -$(_19a).find("input.tree-editor").remove(); -var node=_e0(_199,_19a); -_127(_199,node); -opts.onCancelEdit.call(_199,node); -}; -function _19b(_19c,q){ -var _19d=$.data(_19c,"tree"); -var opts=_19d.options; -var ids={}; -_12a(_19d.data,function(node){ -if(opts.filter.call(_19c,q,node)){ -$("#"+node.domId).removeClass("tree-node-hidden"); -ids[node.domId]=1; -node.hidden=false; -}else{ -$("#"+node.domId).addClass("tree-node-hidden"); -node.hidden=true; -} -}); -for(var id in ids){ -_19e(id); -} -function _19e(_19f){ -var p=$(_19c).tree("getParent",$("#"+_19f)[0]); -while(p){ -$(p.target).removeClass("tree-node-hidden"); -p.hidden=false; -p=$(_19c).tree("getParent",p.target); -} -}; -}; -$.fn.tree=function(_1a0,_1a1){ -if(typeof _1a0=="string"){ -return $.fn.tree.methods[_1a0](this,_1a1); -} -var _1a0=_1a0||{}; -return this.each(function(){ -var _1a2=$.data(this,"tree"); -var opts; -if(_1a2){ -opts=$.extend(_1a2.options,_1a0); -_1a2.options=opts; -}else{ -opts=$.extend({},$.fn.tree.defaults,$.fn.tree.parseOptions(this),_1a0); -$.data(this,"tree",{options:opts,tree:_d5(this),data:[]}); -var data=$.fn.tree.parseData(this); -if(data.length){ -_120(this,this,data); -} -} -_d8(this); -if(opts.data){ -_120(this,this,$.extend(true,[],opts.data)); -} -_135(this,this); -}); -}; -$.fn.tree.methods={options:function(jq){ -return $.data(jq[0],"tree").options; -},loadData:function(jq,data){ -return jq.each(function(){ -_120(this,this,data); -}); -},getNode:function(jq,_1a3){ -return _e0(jq[0],_1a3); -},getData:function(jq,_1a4){ -return _17d(jq[0],_1a4); -},reload:function(jq,_1a5){ -return jq.each(function(){ -if(_1a5){ -var node=$(_1a5); -var hit=node.children("span.tree-hit"); -hit.removeClass("tree-expanded tree-expanded-hover").addClass("tree-collapsed"); -node.next().remove(); -_13c(this,_1a5); -}else{ -$(this).empty(); -_135(this,this); -} -}); -},getRoot:function(jq,_1a6){ -return _169(jq[0],_1a6); -},getRoots:function(jq){ -return _16d(jq[0]); -},getParent:function(jq,_1a7){ -return _14f(jq[0],_1a7); -},getChildren:function(jq,_1a8){ -return _11f(jq[0],_1a8); -},getChecked:function(jq,_1a9){ -return _176(jq[0],_1a9); -},getSelected:function(jq){ -return _17b(jq[0]); -},isLeaf:function(jq,_1aa){ -return _11b(jq[0],_1aa); -},find:function(jq,id){ -return _182(jq[0],id); -},select:function(jq,_1ab){ -return jq.each(function(){ -_18a(this,_1ab); -}); -},check:function(jq,_1ac){ -return jq.each(function(){ -_104(this,_1ac,true); -}); -},uncheck:function(jq,_1ad){ -return jq.each(function(){ -_104(this,_1ad,false); -}); -},collapse:function(jq,_1ae){ -return jq.each(function(){ -_141(this,_1ae); -}); -},expand:function(jq,_1af){ -return jq.each(function(){ -_13c(this,_1af); -}); -},collapseAll:function(jq,_1b0){ -return jq.each(function(){ -_153(this,_1b0); -}); -},expandAll:function(jq,_1b1){ -return jq.each(function(){ -_147(this,_1b1); -}); -},expandTo:function(jq,_1b2){ -return jq.each(function(){ -_14b(this,_1b2); -}); -},scrollTo:function(jq,_1b3){ -return jq.each(function(){ -_150(this,_1b3); -}); -},toggle:function(jq,_1b4){ -return jq.each(function(){ -_144(this,_1b4); -}); -},append:function(jq,_1b5){ -return jq.each(function(){ -_157(this,_1b5); -}); -},insert:function(jq,_1b6){ -return jq.each(function(){ -_15b(this,_1b6); -}); -},remove:function(jq,_1b7){ -return jq.each(function(){ -_160(this,_1b7); -}); -},pop:function(jq,_1b8){ -var node=jq.tree("getData",_1b8); -jq.tree("remove",_1b8); -return node; -},update:function(jq,_1b9){ -return jq.each(function(){ -_127(this,_1b9); -}); -},enableDnd:function(jq){ -return jq.each(function(){ -_e5(this); -}); -},disableDnd:function(jq){ -return jq.each(function(){ -_e1(this); -}); -},beginEdit:function(jq,_1ba){ -return jq.each(function(){ -_18f(this,_1ba); -}); -},endEdit:function(jq,_1bb){ -return jq.each(function(){ -_194(this,_1bb); -}); -},cancelEdit:function(jq,_1bc){ -return jq.each(function(){ -_198(this,_1bc); -}); -},doFilter:function(jq,q){ -return jq.each(function(){ -_19b(this,q); -}); -}}; -$.fn.tree.parseOptions=function(_1bd){ -var t=$(_1bd); -return $.extend({},$.parser.parseOptions(_1bd,["url","method",{checkbox:"boolean",cascadeCheck:"boolean",onlyLeafCheck:"boolean"},{animate:"boolean",lines:"boolean",dnd:"boolean"}])); -}; -$.fn.tree.parseData=function(_1be){ -var data=[]; -_1bf(data,$(_1be)); -return data; -function _1bf(aa,tree){ -tree.children("li").each(function(){ -var node=$(this); -var item=$.extend({},$.parser.parseOptions(this,["id","iconCls","state"]),{checked:(node.attr("checked")?true:undefined)}); -item.text=node.children("span").html(); -if(!item.text){ -item.text=node.html(); -} -var _1c0=node.children("ul"); -if(_1c0.length){ -item.children=[]; -_1bf(item.children,_1c0); -} -aa.push(item); -}); -}; -}; -var _1c1=1; -var _1c2={render:function(_1c3,ul,data){ -var opts=$.data(_1c3,"tree").options; -var _1c4=$(ul).prev("div.tree-node").find("span.tree-indent, span.tree-hit").length; -var cc=_1c5(_1c4,data); -$(ul).append(cc.join("")); -function _1c5(_1c6,_1c7){ -var cc=[]; -for(var i=0;i<_1c7.length;i++){ -var item=_1c7[i]; -if(item.state!="open"&&item.state!="closed"){ -item.state="open"; -} -item.domId="_easyui_tree_"+_1c1++; -cc.push("
                                    • "); -cc.push("
                                      "); -for(var j=0;j<_1c6;j++){ -cc.push(""); -} -var _1c8=false; -if(item.state=="closed"){ -cc.push(""); -cc.push(""); -}else{ -if(item.children&&item.children.length){ -cc.push(""); -cc.push(""); -}else{ -cc.push(""); -cc.push(""); -_1c8=true; -} -} -if(opts.checkbox){ -if((!opts.onlyLeafCheck)||_1c8){ -cc.push(""); -} -} -cc.push(""+opts.formatter.call(_1c3,item)+""); -cc.push("
                                      "); -if(item.children&&item.children.length){ -var tmp=_1c5(_1c6+1,item.children); -cc.push("
                                        "); -cc=cc.concat(tmp); -cc.push("
                                      "); -} -cc.push("
                                    • "); -} -return cc; -}; -}}; -$.fn.tree.defaults={url:null,method:"post",animate:false,checkbox:false,cascadeCheck:true,onlyLeafCheck:false,lines:false,dnd:false,data:null,queryParams:{},formatter:function(node){ -return node.text; -},filter:function(q,node){ -return node.text.toLowerCase().indexOf(q.toLowerCase())>=0; -},loader:function(_1c9,_1ca,_1cb){ -var opts=$(this).tree("options"); -if(!opts.url){ -return false; -} -$.ajax({type:opts.method,url:opts.url,data:_1c9,dataType:"json",success:function(data){ -_1ca(data); -},error:function(){ -_1cb.apply(this,arguments); -}}); -},loadFilter:function(data,_1cc){ -return data; -},view:_1c2,onBeforeLoad:function(node,_1cd){ -},onLoadSuccess:function(node,data){ -},onLoadError:function(){ -},onClick:function(node){ -},onDblClick:function(node){ -},onBeforeExpand:function(node){ -},onExpand:function(node){ -},onBeforeCollapse:function(node){ -},onCollapse:function(node){ -},onBeforeCheck:function(node,_1ce){ -},onCheck:function(node,_1cf){ -},onBeforeSelect:function(node){ -},onSelect:function(node){ -},onContextMenu:function(e,node){ -},onBeforeDrag:function(node){ -},onStartDrag:function(node){ -},onStopDrag:function(node){ -},onDragEnter:function(_1d0,_1d1){ -},onDragOver:function(_1d2,_1d3){ -},onDragLeave:function(_1d4,_1d5){ -},onBeforeDrop:function(_1d6,_1d7,_1d8){ -},onDrop:function(_1d9,_1da,_1db){ -},onBeforeEdit:function(node){ -},onAfterEdit:function(node){ -},onCancelEdit:function(node){ -}}; -})(jQuery); -(function($){ -function init(_1dc){ -$(_1dc).addClass("progressbar"); -$(_1dc).html("
                                      "); -$(_1dc).bind("_resize",function(e,_1dd){ -if($(this).hasClass("easyui-fluid")||_1dd){ -_1de(_1dc); -} -return false; -}); -return $(_1dc); -}; -function _1de(_1df,_1e0){ -var opts=$.data(_1df,"progressbar").options; -var bar=$.data(_1df,"progressbar").bar; -if(_1e0){ -opts.width=_1e0; -} -bar._size(opts); -bar.find("div.progressbar-text").css("width",bar.width()); -bar.find("div.progressbar-text,div.progressbar-value").css({height:bar.height()+"px",lineHeight:bar.height()+"px"}); -}; -$.fn.progressbar=function(_1e1,_1e2){ -if(typeof _1e1=="string"){ -var _1e3=$.fn.progressbar.methods[_1e1]; -if(_1e3){ -return _1e3(this,_1e2); -} -} -_1e1=_1e1||{}; -return this.each(function(){ -var _1e4=$.data(this,"progressbar"); -if(_1e4){ -$.extend(_1e4.options,_1e1); -}else{ -_1e4=$.data(this,"progressbar",{options:$.extend({},$.fn.progressbar.defaults,$.fn.progressbar.parseOptions(this),_1e1),bar:init(this)}); -} -$(this).progressbar("setValue",_1e4.options.value); -_1de(this); -}); -}; -$.fn.progressbar.methods={options:function(jq){ -return $.data(jq[0],"progressbar").options; -},resize:function(jq,_1e5){ -return jq.each(function(){ -_1de(this,_1e5); -}); -},getValue:function(jq){ -return $.data(jq[0],"progressbar").options.value; -},setValue:function(jq,_1e6){ -if(_1e6<0){ -_1e6=0; -} -if(_1e6>100){ -_1e6=100; -} -return jq.each(function(){ -var opts=$.data(this,"progressbar").options; -var text=opts.text.replace(/{value}/,_1e6); -var _1e7=opts.value; -opts.value=_1e6; -$(this).find("div.progressbar-value").width(_1e6+"%"); -$(this).find("div.progressbar-text").html(text); -if(_1e7!=_1e6){ -opts.onChange.call(this,_1e6,_1e7); -} -}); -}}; -$.fn.progressbar.parseOptions=function(_1e8){ -return $.extend({},$.parser.parseOptions(_1e8,["width","height","text",{value:"number"}])); -}; -$.fn.progressbar.defaults={width:"auto",height:22,value:0,text:"{value}%",onChange:function(_1e9,_1ea){ -}}; -})(jQuery); -(function($){ -function init(_1eb){ -$(_1eb).addClass("tooltip-f"); -}; -function _1ec(_1ed){ -var opts=$.data(_1ed,"tooltip").options; -$(_1ed).unbind(".tooltip").bind(opts.showEvent+".tooltip",function(e){ -$(_1ed).tooltip("show",e); -}).bind(opts.hideEvent+".tooltip",function(e){ -$(_1ed).tooltip("hide",e); -}).bind("mousemove.tooltip",function(e){ -if(opts.trackMouse){ -opts.trackMouseX=e.pageX; -opts.trackMouseY=e.pageY; -$(_1ed).tooltip("reposition"); -} -}); -}; -function _1ee(_1ef){ -var _1f0=$.data(_1ef,"tooltip"); -if(_1f0.showTimer){ -clearTimeout(_1f0.showTimer); -_1f0.showTimer=null; -} -if(_1f0.hideTimer){ -clearTimeout(_1f0.hideTimer); -_1f0.hideTimer=null; -} -}; -function _1f1(_1f2){ -var _1f3=$.data(_1f2,"tooltip"); -if(!_1f3||!_1f3.tip){ -return; -} -var opts=_1f3.options; -var tip=_1f3.tip; -var pos={left:-100000,top:-100000}; -if($(_1f2).is(":visible")){ -pos=_1f4(opts.position); -if(opts.position=="top"&&pos.top<0){ -pos=_1f4("bottom"); -}else{ -if((opts.position=="bottom")&&(pos.top+tip._outerHeight()>$(window)._outerHeight()+$(document).scrollTop())){ -pos=_1f4("top"); -} -} -if(pos.left<0){ -if(opts.position=="left"){ -pos=_1f4("right"); -}else{ -$(_1f2).tooltip("arrow").css("left",tip._outerWidth()/2+pos.left); -pos.left=0; -} -}else{ -if(pos.left+tip._outerWidth()>$(window)._outerWidth()+$(document)._scrollLeft()){ -if(opts.position=="right"){ -pos=_1f4("left"); -}else{ -var left=pos.left; -pos.left=$(window)._outerWidth()+$(document)._scrollLeft()-tip._outerWidth(); -$(_1f2).tooltip("arrow").css("left",tip._outerWidth()/2-(pos.left-left)); -} -} -} -} -tip.css({left:pos.left,top:pos.top,zIndex:(opts.zIndex!=undefined?opts.zIndex:($.fn.window?$.fn.window.defaults.zIndex++:""))}); -opts.onPosition.call(_1f2,pos.left,pos.top); -function _1f4(_1f5){ -opts.position=_1f5||"bottom"; -tip.removeClass("tooltip-top tooltip-bottom tooltip-left tooltip-right").addClass("tooltip-"+opts.position); -var left,top; -if(opts.trackMouse){ -t=$(); -left=opts.trackMouseX+opts.deltaX; -top=opts.trackMouseY+opts.deltaY; -}else{ -var t=$(_1f2); -left=t.offset().left+opts.deltaX; -top=t.offset().top+opts.deltaY; -} -switch(opts.position){ -case "right": -left+=t._outerWidth()+12+(opts.trackMouse?12:0); -top-=(tip._outerHeight()-t._outerHeight())/2; -break; -case "left": -left-=tip._outerWidth()+12+(opts.trackMouse?12:0); -top-=(tip._outerHeight()-t._outerHeight())/2; -break; -case "top": -left-=(tip._outerWidth()-t._outerWidth())/2; -top-=tip._outerHeight()+12+(opts.trackMouse?12:0); -break; -case "bottom": -left-=(tip._outerWidth()-t._outerWidth())/2; -top+=t._outerHeight()+12+(opts.trackMouse?12:0); -break; -} -return {left:left,top:top}; -}; -}; -function _1f6(_1f7,e){ -var _1f8=$.data(_1f7,"tooltip"); -var opts=_1f8.options; -var tip=_1f8.tip; -if(!tip){ -tip=$("
                                      "+"
                                      "+"
                                      "+"
                                      "+"
                                      ").appendTo("body"); -_1f8.tip=tip; -_1f9(_1f7); -} -_1ee(_1f7); -_1f8.showTimer=setTimeout(function(){ -$(_1f7).tooltip("reposition"); -tip.show(); -opts.onShow.call(_1f7,e); -var _1fa=tip.children(".tooltip-arrow-outer"); -var _1fb=tip.children(".tooltip-arrow"); -var bc="border-"+opts.position+"-color"; -_1fa.add(_1fb).css({borderTopColor:"",borderBottomColor:"",borderLeftColor:"",borderRightColor:""}); -_1fa.css(bc,tip.css(bc)); -_1fb.css(bc,tip.css("backgroundColor")); -},opts.showDelay); -}; -function _1fc(_1fd,e){ -var _1fe=$.data(_1fd,"tooltip"); -if(_1fe&&_1fe.tip){ -_1ee(_1fd); -_1fe.hideTimer=setTimeout(function(){ -_1fe.tip.hide(); -_1fe.options.onHide.call(_1fd,e); -},_1fe.options.hideDelay); -} -}; -function _1f9(_1ff,_200){ -var _201=$.data(_1ff,"tooltip"); -var opts=_201.options; -if(_200){ -opts.content=_200; -} -if(!_201.tip){ -return; -} -var cc=typeof opts.content=="function"?opts.content.call(_1ff):opts.content; -_201.tip.children(".tooltip-content").html(cc); -opts.onUpdate.call(_1ff,cc); -}; -function _202(_203){ -var _204=$.data(_203,"tooltip"); -if(_204){ -_1ee(_203); -var opts=_204.options; -if(_204.tip){ -_204.tip.remove(); -} -if(opts._title){ -$(_203).attr("title",opts._title); -} -$.removeData(_203,"tooltip"); -$(_203).unbind(".tooltip").removeClass("tooltip-f"); -opts.onDestroy.call(_203); -} -}; -$.fn.tooltip=function(_205,_206){ -if(typeof _205=="string"){ -return $.fn.tooltip.methods[_205](this,_206); -} -_205=_205||{}; -return this.each(function(){ -var _207=$.data(this,"tooltip"); -if(_207){ -$.extend(_207.options,_205); -}else{ -$.data(this,"tooltip",{options:$.extend({},$.fn.tooltip.defaults,$.fn.tooltip.parseOptions(this),_205)}); -init(this); -} -_1ec(this); -_1f9(this); -}); -}; -$.fn.tooltip.methods={options:function(jq){ -return $.data(jq[0],"tooltip").options; -},tip:function(jq){ -return $.data(jq[0],"tooltip").tip; -},arrow:function(jq){ -return jq.tooltip("tip").children(".tooltip-arrow-outer,.tooltip-arrow"); -},show:function(jq,e){ -return jq.each(function(){ -_1f6(this,e); -}); -},hide:function(jq,e){ -return jq.each(function(){ -_1fc(this,e); -}); -},update:function(jq,_208){ -return jq.each(function(){ -_1f9(this,_208); -}); -},reposition:function(jq){ -return jq.each(function(){ -_1f1(this); -}); -},destroy:function(jq){ -return jq.each(function(){ -_202(this); -}); -}}; -$.fn.tooltip.parseOptions=function(_209){ -var t=$(_209); -var opts=$.extend({},$.parser.parseOptions(_209,["position","showEvent","hideEvent","content",{trackMouse:"boolean",deltaX:"number",deltaY:"number",showDelay:"number",hideDelay:"number"}]),{_title:t.attr("title")}); -t.attr("title",""); -if(!opts.content){ -opts.content=opts._title; -} -return opts; -}; -$.fn.tooltip.defaults={position:"bottom",content:null,trackMouse:false,deltaX:0,deltaY:0,showEvent:"mouseenter",hideEvent:"mouseleave",showDelay:200,hideDelay:100,onShow:function(e){ -},onHide:function(e){ -},onUpdate:function(_20a){ -},onPosition:function(left,top){ -},onDestroy:function(){ -}}; -})(jQuery); -(function($){ -$.fn._remove=function(){ -return this.each(function(){ -$(this).remove(); -try{ -this.outerHTML=""; -} -catch(err){ -} -}); -}; -function _20b(node){ -node._remove(); -}; -function _20c(_20d,_20e){ -var _20f=$.data(_20d,"panel"); -var opts=_20f.options; -var _210=_20f.panel; -var _211=_210.children(".panel-header"); -var _212=_210.children(".panel-body"); -var _213=_210.children(".panel-footer"); -if(_20e){ -$.extend(opts,{width:_20e.width,height:_20e.height,minWidth:_20e.minWidth,maxWidth:_20e.maxWidth,minHeight:_20e.minHeight,maxHeight:_20e.maxHeight,left:_20e.left,top:_20e.top}); -} -_210._size(opts); -_211.add(_212)._outerWidth(_210.width()); -if(!isNaN(parseInt(opts.height))){ -_212._outerHeight(_210.height()-_211._outerHeight()-_213._outerHeight()); -}else{ -_212.css("height",""); -var min=$.parser.parseValue("minHeight",opts.minHeight,_210.parent()); -var max=$.parser.parseValue("maxHeight",opts.maxHeight,_210.parent()); -var _214=_211._outerHeight()+_213._outerHeight()+_210._outerHeight()-_210.height(); -_212._size("minHeight",min?(min-_214):""); -_212._size("maxHeight",max?(max-_214):""); -} -_210.css({height:"",minHeight:"",maxHeight:"",left:opts.left,top:opts.top}); -opts.onResize.apply(_20d,[opts.width,opts.height]); -$(_20d).panel("doLayout"); -}; -function _215(_216,_217){ -var opts=$.data(_216,"panel").options; -var _218=$.data(_216,"panel").panel; -if(_217){ -if(_217.left!=null){ -opts.left=_217.left; -} -if(_217.top!=null){ -opts.top=_217.top; -} -} -_218.css({left:opts.left,top:opts.top}); -opts.onMove.apply(_216,[opts.left,opts.top]); -}; -function _219(_21a){ -$(_21a).addClass("panel-body")._size("clear"); -var _21b=$("
                                      ").insertBefore(_21a); -_21b[0].appendChild(_21a); -_21b.bind("_resize",function(e,_21c){ -if($(this).hasClass("easyui-fluid")||_21c){ -_20c(_21a); -} -return false; -}); -return _21b; -}; -function _21d(_21e){ -var _21f=$.data(_21e,"panel"); -var opts=_21f.options; -var _220=_21f.panel; -_220.css(opts.style); -_220.addClass(opts.cls); -_221(); -_222(); -var _223=$(_21e).panel("header"); -var body=$(_21e).panel("body"); -var _224=$(_21e).siblings(".panel-footer"); -if(opts.border){ -_223.removeClass("panel-header-noborder"); -body.removeClass("panel-body-noborder"); -_224.removeClass("panel-footer-noborder"); -}else{ -_223.addClass("panel-header-noborder"); -body.addClass("panel-body-noborder"); -_224.addClass("panel-footer-noborder"); -} -_223.addClass(opts.headerCls); -body.addClass(opts.bodyCls); -$(_21e).attr("id",opts.id||""); -if(opts.content){ -$(_21e).panel("clear"); -$(_21e).html(opts.content); -$.parser.parse($(_21e)); -} -function _221(){ -if(opts.noheader||(!opts.title&&!opts.header)){ -_20b(_220.children(".panel-header")); -_220.children(".panel-body").addClass("panel-body-noheader"); -}else{ -if(opts.header){ -$(opts.header).addClass("panel-header").prependTo(_220); -}else{ -var _225=_220.children(".panel-header"); -if(!_225.length){ -_225=$("
                                      ").prependTo(_220); -} -if(!$.isArray(opts.tools)){ -_225.find("div.panel-tool .panel-tool-a").appendTo(opts.tools); -} -_225.empty(); -var _226=$("
                                      ").html(opts.title).appendTo(_225); -if(opts.iconCls){ -_226.addClass("panel-with-icon"); -$("
                                      ").addClass(opts.iconCls).appendTo(_225); -} -var tool=$("
                                      ").appendTo(_225); -tool.bind("click",function(e){ -e.stopPropagation(); -}); -if(opts.tools){ -if($.isArray(opts.tools)){ -$.map(opts.tools,function(t){ -_227(tool,t.iconCls,eval(t.handler)); -}); -}else{ -$(opts.tools).children().each(function(){ -$(this).addClass($(this).attr("iconCls")).addClass("panel-tool-a").appendTo(tool); -}); -} -} -if(opts.collapsible){ -_227(tool,"panel-tool-collapse",function(){ -if(opts.collapsed==true){ -_245(_21e,true); -}else{ -_238(_21e,true); -} -}); -} -if(opts.minimizable){ -_227(tool,"panel-tool-min",function(){ -_24b(_21e); -}); -} -if(opts.maximizable){ -_227(tool,"panel-tool-max",function(){ -if(opts.maximized==true){ -_24e(_21e); -}else{ -_237(_21e); -} -}); -} -if(opts.closable){ -_227(tool,"panel-tool-close",function(){ -_239(_21e); -}); -} -} -_220.children("div.panel-body").removeClass("panel-body-noheader"); -} -}; -function _227(c,icon,_228){ -var a=$("").addClass(icon).appendTo(c); -a.bind("click",_228); -}; -function _222(){ -if(opts.footer){ -$(opts.footer).addClass("panel-footer").appendTo(_220); -$(_21e).addClass("panel-body-nobottom"); -}else{ -_220.children(".panel-footer").remove(); -$(_21e).removeClass("panel-body-nobottom"); -} -}; -}; -function _229(_22a,_22b){ -var _22c=$.data(_22a,"panel"); -var opts=_22c.options; -if(_22d){ -opts.queryParams=_22b; -} -if(!opts.href){ -return; -} -if(!_22c.isLoaded||!opts.cache){ -var _22d=$.extend({},opts.queryParams); -if(opts.onBeforeLoad.call(_22a,_22d)==false){ -return; -} -_22c.isLoaded=false; -$(_22a).panel("clear"); -if(opts.loadingMessage){ -$(_22a).html($("
                                      ").html(opts.loadingMessage)); -} -opts.loader.call(_22a,_22d,function(data){ -var _22e=opts.extractor.call(_22a,data); -$(_22a).html(_22e); -$.parser.parse($(_22a)); -opts.onLoad.apply(_22a,arguments); -_22c.isLoaded=true; -},function(){ -opts.onLoadError.apply(_22a,arguments); -}); -} -}; -function _22f(_230){ -var t=$(_230); -t.find(".combo-f").each(function(){ -$(this).combo("destroy"); -}); -t.find(".m-btn").each(function(){ -$(this).menubutton("destroy"); -}); -t.find(".s-btn").each(function(){ -$(this).splitbutton("destroy"); -}); -t.find(".tooltip-f").each(function(){ -$(this).tooltip("destroy"); -}); -t.children("div").each(function(){ -$(this)._size("unfit"); -}); -t.empty(); -}; -function _231(_232){ -$(_232).panel("doLayout",true); -}; -function _233(_234,_235){ -var opts=$.data(_234,"panel").options; -var _236=$.data(_234,"panel").panel; -if(_235!=true){ -if(opts.onBeforeOpen.call(_234)==false){ -return; -} -} -_236.stop(true,true); -if($.isFunction(opts.openAnimation)){ -opts.openAnimation.call(_234,cb); -}else{ -switch(opts.openAnimation){ -case "slide": -_236.slideDown(opts.openDuration,cb); -break; -case "fade": -_236.fadeIn(opts.openDuration,cb); -break; -case "show": -_236.show(opts.openDuration,cb); -break; -default: -_236.show(); -cb(); -} -} -function cb(){ -opts.closed=false; -opts.minimized=false; -var tool=_236.children(".panel-header").find("a.panel-tool-restore"); -if(tool.length){ -opts.maximized=true; -} -opts.onOpen.call(_234); -if(opts.maximized==true){ -opts.maximized=false; -_237(_234); -} -if(opts.collapsed==true){ -opts.collapsed=false; -_238(_234); -} -if(!opts.collapsed){ -_229(_234); -_231(_234); -} -}; -}; -function _239(_23a,_23b){ -var opts=$.data(_23a,"panel").options; -var _23c=$.data(_23a,"panel").panel; -if(_23b!=true){ -if(opts.onBeforeClose.call(_23a)==false){ -return; -} -} -_23c.stop(true,true); -_23c._size("unfit"); -if($.isFunction(opts.closeAnimation)){ -opts.closeAnimation.call(_23a,cb); -}else{ -switch(opts.closeAnimation){ -case "slide": -_23c.slideUp(opts.closeDuration,cb); -break; -case "fade": -_23c.fadeOut(opts.closeDuration,cb); -break; -case "hide": -_23c.hide(opts.closeDuration,cb); -break; -default: -_23c.hide(); -cb(); -} -} -function cb(){ -opts.closed=true; -opts.onClose.call(_23a); -}; -}; -function _23d(_23e,_23f){ -var _240=$.data(_23e,"panel"); -var opts=_240.options; -var _241=_240.panel; -if(_23f!=true){ -if(opts.onBeforeDestroy.call(_23e)==false){ -return; -} -} -$(_23e).panel("clear").panel("clear","footer"); -_20b(_241); -opts.onDestroy.call(_23e); -}; -function _238(_242,_243){ -var opts=$.data(_242,"panel").options; -var _244=$.data(_242,"panel").panel; -var body=_244.children(".panel-body"); -var tool=_244.children(".panel-header").find("a.panel-tool-collapse"); -if(opts.collapsed==true){ -return; -} -body.stop(true,true); -if(opts.onBeforeCollapse.call(_242)==false){ -return; -} -tool.addClass("panel-tool-expand"); -if(_243==true){ -body.slideUp("normal",function(){ -opts.collapsed=true; -opts.onCollapse.call(_242); -}); -}else{ -body.hide(); -opts.collapsed=true; -opts.onCollapse.call(_242); -} -}; -function _245(_246,_247){ -var opts=$.data(_246,"panel").options; -var _248=$.data(_246,"panel").panel; -var body=_248.children(".panel-body"); -var tool=_248.children(".panel-header").find("a.panel-tool-collapse"); -if(opts.collapsed==false){ -return; -} -body.stop(true,true); -if(opts.onBeforeExpand.call(_246)==false){ -return; -} -tool.removeClass("panel-tool-expand"); -if(_247==true){ -body.slideDown("normal",function(){ -opts.collapsed=false; -opts.onExpand.call(_246); -_229(_246); -_231(_246); -}); -}else{ -body.show(); -opts.collapsed=false; -opts.onExpand.call(_246); -_229(_246); -_231(_246); -} -}; -function _237(_249){ -var opts=$.data(_249,"panel").options; -var _24a=$.data(_249,"panel").panel; -var tool=_24a.children(".panel-header").find("a.panel-tool-max"); -if(opts.maximized==true){ -return; -} -tool.addClass("panel-tool-restore"); -if(!$.data(_249,"panel").original){ -$.data(_249,"panel").original={width:opts.width,height:opts.height,left:opts.left,top:opts.top,fit:opts.fit}; -} -opts.left=0; -opts.top=0; -opts.fit=true; -_20c(_249); -opts.minimized=false; -opts.maximized=true; -opts.onMaximize.call(_249); -}; -function _24b(_24c){ -var opts=$.data(_24c,"panel").options; -var _24d=$.data(_24c,"panel").panel; -_24d._size("unfit"); -_24d.hide(); -opts.minimized=true; -opts.maximized=false; -opts.onMinimize.call(_24c); -}; -function _24e(_24f){ -var opts=$.data(_24f,"panel").options; -var _250=$.data(_24f,"panel").panel; -var tool=_250.children(".panel-header").find("a.panel-tool-max"); -if(opts.maximized==false){ -return; -} -_250.show(); -tool.removeClass("panel-tool-restore"); -$.extend(opts,$.data(_24f,"panel").original); -_20c(_24f); -opts.minimized=false; -opts.maximized=false; -$.data(_24f,"panel").original=null; -opts.onRestore.call(_24f); -}; -function _251(_252,_253){ -$.data(_252,"panel").options.title=_253; -$(_252).panel("header").find("div.panel-title").html(_253); -}; -var _254=null; -$(window).unbind(".panel").bind("resize.panel",function(){ -if(_254){ -clearTimeout(_254); -} -_254=setTimeout(function(){ -var _255=$("body.layout"); -if(_255.length){ -_255.layout("resize"); -$("body").children(".easyui-fluid:visible").each(function(){ -$(this).triggerHandler("_resize"); -}); -}else{ -$("body").panel("doLayout"); -} -_254=null; -},100); -}); -$.fn.panel=function(_256,_257){ -if(typeof _256=="string"){ -return $.fn.panel.methods[_256](this,_257); -} -_256=_256||{}; -return this.each(function(){ -var _258=$.data(this,"panel"); -var opts; -if(_258){ -opts=$.extend(_258.options,_256); -_258.isLoaded=false; -}else{ -opts=$.extend({},$.fn.panel.defaults,$.fn.panel.parseOptions(this),_256); -$(this).attr("title",""); -_258=$.data(this,"panel",{options:opts,panel:_219(this),isLoaded:false}); -} -_21d(this); -if(opts.doSize==true){ -_258.panel.css("display","block"); -_20c(this); -} -if(opts.closed==true||opts.minimized==true){ -_258.panel.hide(); -}else{ -_233(this); -} -}); -}; -$.fn.panel.methods={options:function(jq){ -return $.data(jq[0],"panel").options; -},panel:function(jq){ -return $.data(jq[0],"panel").panel; -},header:function(jq){ -return $.data(jq[0],"panel").panel.children(".panel-header"); -},footer:function(jq){ -return jq.panel("panel").children(".panel-footer"); -},body:function(jq){ -return $.data(jq[0],"panel").panel.children(".panel-body"); -},setTitle:function(jq,_259){ -return jq.each(function(){ -_251(this,_259); -}); -},open:function(jq,_25a){ -return jq.each(function(){ -_233(this,_25a); -}); -},close:function(jq,_25b){ -return jq.each(function(){ -_239(this,_25b); -}); -},destroy:function(jq,_25c){ -return jq.each(function(){ -_23d(this,_25c); -}); -},clear:function(jq,type){ -return jq.each(function(){ -_22f(type=="footer"?$(this).panel("footer"):this); -}); -},refresh:function(jq,href){ -return jq.each(function(){ -var _25d=$.data(this,"panel"); -_25d.isLoaded=false; -if(href){ -if(typeof href=="string"){ -_25d.options.href=href; -}else{ -_25d.options.queryParams=href; -} -} -_229(this); -}); -},resize:function(jq,_25e){ -return jq.each(function(){ -_20c(this,_25e); -}); -},doLayout:function(jq,all){ -return jq.each(function(){ -_25f(this,"body"); -_25f($(this).siblings(".panel-footer")[0],"footer"); -function _25f(_260,type){ -if(!_260){ -return; -} -var _261=_260==$("body")[0]; -var s=$(_260).find("div.panel:visible,div.accordion:visible,div.tabs-container:visible,div.layout:visible,.easyui-fluid:visible").filter(function(_262,el){ -var p=$(el).parents(".panel-"+type+":first"); -return _261?p.length==0:p[0]==_260; -}); -s.each(function(){ -$(this).triggerHandler("_resize",[all||false]); -}); -}; -}); -},move:function(jq,_263){ -return jq.each(function(){ -_215(this,_263); -}); -},maximize:function(jq){ -return jq.each(function(){ -_237(this); -}); -},minimize:function(jq){ -return jq.each(function(){ -_24b(this); -}); -},restore:function(jq){ -return jq.each(function(){ -_24e(this); -}); -},collapse:function(jq,_264){ -return jq.each(function(){ -_238(this,_264); -}); -},expand:function(jq,_265){ -return jq.each(function(){ -_245(this,_265); -}); -}}; -$.fn.panel.parseOptions=function(_266){ -var t=$(_266); -var hh=t.children(".panel-header,header"); -var ff=t.children(".panel-footer,footer"); -return $.extend({},$.parser.parseOptions(_266,["id","width","height","left","top","title","iconCls","cls","headerCls","bodyCls","tools","href","method","header","footer",{cache:"boolean",fit:"boolean",border:"boolean",noheader:"boolean"},{collapsible:"boolean",minimizable:"boolean",maximizable:"boolean"},{closable:"boolean",collapsed:"boolean",minimized:"boolean",maximized:"boolean",closed:"boolean"},"openAnimation","closeAnimation",{openDuration:"number",closeDuration:"number"},]),{loadingMessage:(t.attr("loadingMessage")!=undefined?t.attr("loadingMessage"):undefined),header:(hh.length?hh.removeClass("panel-header"):undefined),footer:(ff.length?ff.removeClass("panel-footer"):undefined)}); -}; -$.fn.panel.defaults={id:null,title:null,iconCls:null,width:"auto",height:"auto",left:null,top:null,cls:null,headerCls:null,bodyCls:null,style:{},href:null,cache:true,fit:false,border:true,doSize:true,noheader:false,content:null,collapsible:false,minimizable:false,maximizable:false,closable:false,collapsed:false,minimized:false,maximized:false,closed:false,openAnimation:false,openDuration:400,closeAnimation:false,closeDuration:400,tools:null,footer:null,header:null,queryParams:{},method:"get",href:null,loadingMessage:"Loading...",loader:function(_267,_268,_269){ -var opts=$(this).panel("options"); -if(!opts.href){ -return false; -} -$.ajax({type:opts.method,url:opts.href,cache:false,data:_267,dataType:"html",success:function(data){ -_268(data); -},error:function(){ -_269.apply(this,arguments); -}}); -},extractor:function(data){ -var _26a=/]*>((.|[\n\r])*)<\/body>/im; -var _26b=_26a.exec(data); -if(_26b){ -return _26b[1]; -}else{ -return data; -} -},onBeforeLoad:function(_26c){ -},onLoad:function(){ -},onLoadError:function(){ -},onBeforeOpen:function(){ -},onOpen:function(){ -},onBeforeClose:function(){ -},onClose:function(){ -},onBeforeDestroy:function(){ -},onDestroy:function(){ -},onResize:function(_26d,_26e){ -},onMove:function(left,top){ -},onMaximize:function(){ -},onRestore:function(){ -},onMinimize:function(){ -},onBeforeCollapse:function(){ -},onBeforeExpand:function(){ -},onCollapse:function(){ -},onExpand:function(){ -}}; -})(jQuery); -(function($){ -function _26f(_270,_271){ -var _272=$.data(_270,"window"); -if(_271){ -if(_271.left!=null){ -_272.options.left=_271.left; -} -if(_271.top!=null){ -_272.options.top=_271.top; -} -} -$(_270).panel("move",_272.options); -if(_272.shadow){ -_272.shadow.css({left:_272.options.left,top:_272.options.top}); -} -}; -function _273(_274,_275){ -var opts=$.data(_274,"window").options; -var pp=$(_274).window("panel"); -var _276=pp._outerWidth(); -if(opts.inline){ -var _277=pp.parent(); -opts.left=Math.ceil((_277.width()-_276)/2+_277.scrollLeft()); -}else{ -opts.left=Math.ceil(($(window)._outerWidth()-_276)/2+$(document).scrollLeft()); -} -if(_275){ -_26f(_274); -} -}; -function _278(_279,_27a){ -var opts=$.data(_279,"window").options; -var pp=$(_279).window("panel"); -var _27b=pp._outerHeight(); -if(opts.inline){ -var _27c=pp.parent(); -opts.top=Math.ceil((_27c.height()-_27b)/2+_27c.scrollTop()); -}else{ -opts.top=Math.ceil(($(window)._outerHeight()-_27b)/2+$(document).scrollTop()); -} -if(_27a){ -_26f(_279); -} -}; -function _27d(_27e){ -var _27f=$.data(_27e,"window"); -var opts=_27f.options; -var win=$(_27e).panel($.extend({},_27f.options,{border:false,doSize:true,closed:true,cls:"window",headerCls:"window-header",bodyCls:"window-body "+(opts.noheader?"window-body-noheader":""),onBeforeDestroy:function(){ -if(opts.onBeforeDestroy.call(_27e)==false){ -return false; -} -if(_27f.shadow){ -_27f.shadow.remove(); -} -if(_27f.mask){ -_27f.mask.remove(); -} -},onClose:function(){ -if(_27f.shadow){ -_27f.shadow.hide(); -} -if(_27f.mask){ -_27f.mask.hide(); -} -opts.onClose.call(_27e); -},onOpen:function(){ -if(_27f.mask){ -_27f.mask.css($.extend({display:"block",zIndex:$.fn.window.defaults.zIndex++},$.fn.window.getMaskSize(_27e))); -} -if(_27f.shadow){ -_27f.shadow.css({display:"block",zIndex:$.fn.window.defaults.zIndex++,left:opts.left,top:opts.top,width:_27f.window._outerWidth(),height:_27f.window._outerHeight()}); -} -_27f.window.css("z-index",$.fn.window.defaults.zIndex++); -opts.onOpen.call(_27e); -},onResize:function(_280,_281){ -var _282=$(this).panel("options"); -$.extend(opts,{width:_282.width,height:_282.height,left:_282.left,top:_282.top}); -if(_27f.shadow){ -_27f.shadow.css({left:opts.left,top:opts.top,width:_27f.window._outerWidth(),height:_27f.window._outerHeight()}); -} -opts.onResize.call(_27e,_280,_281); -},onMinimize:function(){ -if(_27f.shadow){ -_27f.shadow.hide(); -} -if(_27f.mask){ -_27f.mask.hide(); -} -_27f.options.onMinimize.call(_27e); -},onBeforeCollapse:function(){ -if(opts.onBeforeCollapse.call(_27e)==false){ -return false; -} -if(_27f.shadow){ -_27f.shadow.hide(); -} -},onExpand:function(){ -if(_27f.shadow){ -_27f.shadow.show(); -} -opts.onExpand.call(_27e); -}})); -_27f.window=win.panel("panel"); -if(_27f.mask){ -_27f.mask.remove(); -} -if(opts.modal){ -_27f.mask=$("
                                      ").insertAfter(_27f.window); -} -if(_27f.shadow){ -_27f.shadow.remove(); -} -if(opts.shadow){ -_27f.shadow=$("
                                      ").insertAfter(_27f.window); -} -var _283=opts.closed; -if(opts.left==null){ -_273(_27e); -} -if(opts.top==null){ -_278(_27e); -} -_26f(_27e); -if(!_283){ -win.window("open"); -} -}; -function _284(_285){ -var _286=$.data(_285,"window"); -_286.window.draggable({handle:">div.panel-header>div.panel-title",disabled:_286.options.draggable==false,onStartDrag:function(e){ -if(_286.mask){ -_286.mask.css("z-index",$.fn.window.defaults.zIndex++); -} -if(_286.shadow){ -_286.shadow.css("z-index",$.fn.window.defaults.zIndex++); -} -_286.window.css("z-index",$.fn.window.defaults.zIndex++); -if(!_286.proxy){ -_286.proxy=$("
                                      ").insertAfter(_286.window); -} -_286.proxy.css({display:"none",zIndex:$.fn.window.defaults.zIndex++,left:e.data.left,top:e.data.top}); -_286.proxy._outerWidth(_286.window._outerWidth()); -_286.proxy._outerHeight(_286.window._outerHeight()); -setTimeout(function(){ -if(_286.proxy){ -_286.proxy.show(); -} -},500); -},onDrag:function(e){ -_286.proxy.css({display:"block",left:e.data.left,top:e.data.top}); -return false; -},onStopDrag:function(e){ -_286.options.left=e.data.left; -_286.options.top=e.data.top; -$(_285).window("move"); -_286.proxy.remove(); -_286.proxy=null; -}}); -_286.window.resizable({disabled:_286.options.resizable==false,onStartResize:function(e){ -if(_286.pmask){ -_286.pmask.remove(); -} -_286.pmask=$("
                                      ").insertAfter(_286.window); -_286.pmask.css({zIndex:$.fn.window.defaults.zIndex++,left:e.data.left,top:e.data.top,width:_286.window._outerWidth(),height:_286.window._outerHeight()}); -if(_286.proxy){ -_286.proxy.remove(); -} -_286.proxy=$("
                                      ").insertAfter(_286.window); -_286.proxy.css({zIndex:$.fn.window.defaults.zIndex++,left:e.data.left,top:e.data.top}); -_286.proxy._outerWidth(e.data.width)._outerHeight(e.data.height); -},onResize:function(e){ -_286.proxy.css({left:e.data.left,top:e.data.top}); -_286.proxy._outerWidth(e.data.width); -_286.proxy._outerHeight(e.data.height); -return false; -},onStopResize:function(e){ -$(_285).window("resize",e.data); -_286.pmask.remove(); -_286.pmask=null; -_286.proxy.remove(); -_286.proxy=null; -}}); -}; -$(window).resize(function(){ -$("body>div.window-mask").css({width:$(window)._outerWidth(),height:$(window)._outerHeight()}); -setTimeout(function(){ -$("body>div.window-mask").css($.fn.window.getMaskSize()); -},50); -}); -$.fn.window=function(_287,_288){ -if(typeof _287=="string"){ -var _289=$.fn.window.methods[_287]; -if(_289){ -return _289(this,_288); -}else{ -return this.panel(_287,_288); -} -} -_287=_287||{}; -return this.each(function(){ -var _28a=$.data(this,"window"); -if(_28a){ -$.extend(_28a.options,_287); -}else{ -_28a=$.data(this,"window",{options:$.extend({},$.fn.window.defaults,$.fn.window.parseOptions(this),_287)}); -if(!_28a.options.inline){ -document.body.appendChild(this); -} -} -_27d(this); -_284(this); -}); -}; -$.fn.window.methods={options:function(jq){ -var _28b=jq.panel("options"); -var _28c=$.data(jq[0],"window").options; -return $.extend(_28c,{closed:_28b.closed,collapsed:_28b.collapsed,minimized:_28b.minimized,maximized:_28b.maximized}); -},window:function(jq){ -return $.data(jq[0],"window").window; -},move:function(jq,_28d){ -return jq.each(function(){ -_26f(this,_28d); -}); -},hcenter:function(jq){ -return jq.each(function(){ -_273(this,true); -}); -},vcenter:function(jq){ -return jq.each(function(){ -_278(this,true); -}); -},center:function(jq){ -return jq.each(function(){ -_273(this); -_278(this); -_26f(this); -}); -}}; -$.fn.window.getMaskSize=function(_28e){ -var _28f=$(_28e).data("window"); -var _290=(_28f&&_28f.options.inline); -return {width:(_290?"100%":$(document).width()),height:(_290?"100%":$(document).height())}; -}; -$.fn.window.parseOptions=function(_291){ -return $.extend({},$.fn.panel.parseOptions(_291),$.parser.parseOptions(_291,[{draggable:"boolean",resizable:"boolean",shadow:"boolean",modal:"boolean",inline:"boolean"}])); -}; -$.fn.window.defaults=$.extend({},$.fn.panel.defaults,{zIndex:9000,draggable:true,resizable:true,shadow:true,modal:false,inline:false,title:"New Window",collapsible:true,minimizable:true,maximizable:true,closable:true,closed:false}); -})(jQuery); -(function($){ -function _292(_293){ -var opts=$.data(_293,"dialog").options; -opts.inited=false; -$(_293).window($.extend({},opts,{onResize:function(w,h){ -if(opts.inited){ -_298(this); -opts.onResize.call(this,w,h); -} -}})); -var win=$(_293).window("window"); -if(opts.toolbar){ -if($.isArray(opts.toolbar)){ -$(_293).siblings("div.dialog-toolbar").remove(); -var _294=$("
                                      ").appendTo(win); -var tr=_294.find("tr"); -for(var i=0;i
                                      ").appendTo(tr); -}else{ -var td=$("").appendTo(tr); -var tool=$("").appendTo(td); -tool[0].onclick=eval(btn.handler||function(){ -}); -tool.linkbutton($.extend({},btn,{plain:true})); -} -} -}else{ -$(opts.toolbar).addClass("dialog-toolbar").appendTo(win); -$(opts.toolbar).show(); -} -}else{ -$(_293).siblings("div.dialog-toolbar").remove(); -} -if(opts.buttons){ -if($.isArray(opts.buttons)){ -$(_293).siblings("div.dialog-button").remove(); -var _295=$("
                                      ").appendTo(win); -for(var i=0;i").appendTo(_295); -if(p.handler){ -_296[0].onclick=p.handler; -} -_296.linkbutton(p); -} -}else{ -$(opts.buttons).addClass("dialog-button").appendTo(win); -$(opts.buttons).show(); -} -}else{ -$(_293).siblings("div.dialog-button").remove(); -} -opts.inited=true; -var _297=opts.closed; -win.show(); -$(_293).window("resize"); -if(_297){ -win.hide(); -} -}; -function _298(_299,_29a){ -var t=$(_299); -var opts=t.dialog("options"); -var _29b=opts.noheader; -var tb=t.siblings(".dialog-toolbar"); -var bb=t.siblings(".dialog-button"); -tb.insertBefore(_299).css({position:"relative",borderTopWidth:(_29b?1:0),top:(_29b?tb.length:0)}); -bb.insertAfter(_299).css({position:"relative",top:-1}); -tb.add(bb)._outerWidth(t._outerWidth()).find(".easyui-fluid:visible").each(function(){ -$(this).triggerHandler("_resize"); -}); -var _29c=tb._outerHeight()+bb._outerHeight(); -if(!isNaN(parseInt(opts.height))){ -t._outerHeight(t._outerHeight()-_29c); -}else{ -var _29d=t._size("min-height"); -if(_29d){ -t._size("min-height",_29d-_29c); -} -var _29e=t._size("max-height"); -if(_29e){ -t._size("max-height",_29e-_29c); -} -} -var _29f=$.data(_299,"window").shadow; -if(_29f){ -var cc=t.panel("panel"); -_29f.css({width:cc._outerWidth(),height:cc._outerHeight()}); -} -}; -$.fn.dialog=function(_2a0,_2a1){ -if(typeof _2a0=="string"){ -var _2a2=$.fn.dialog.methods[_2a0]; -if(_2a2){ -return _2a2(this,_2a1); -}else{ -return this.window(_2a0,_2a1); -} -} -_2a0=_2a0||{}; -return this.each(function(){ -var _2a3=$.data(this,"dialog"); -if(_2a3){ -$.extend(_2a3.options,_2a0); -}else{ -$.data(this,"dialog",{options:$.extend({},$.fn.dialog.defaults,$.fn.dialog.parseOptions(this),_2a0)}); -} -_292(this); -}); -}; -$.fn.dialog.methods={options:function(jq){ -var _2a4=$.data(jq[0],"dialog").options; -var _2a5=jq.panel("options"); -$.extend(_2a4,{width:_2a5.width,height:_2a5.height,left:_2a5.left,top:_2a5.top,closed:_2a5.closed,collapsed:_2a5.collapsed,minimized:_2a5.minimized,maximized:_2a5.maximized}); -return _2a4; -},dialog:function(jq){ -return jq.window("window"); -}}; -$.fn.dialog.parseOptions=function(_2a6){ -var t=$(_2a6); -return $.extend({},$.fn.window.parseOptions(_2a6),$.parser.parseOptions(_2a6,["toolbar","buttons"]),{toolbar:(t.children(".dialog-toolbar").length?t.children(".dialog-toolbar").removeClass("dialog-toolbar"):undefined),buttons:(t.children(".dialog-button").length?t.children(".dialog-button").removeClass("dialog-button"):undefined)}); -}; -$.fn.dialog.defaults=$.extend({},$.fn.window.defaults,{title:"New Dialog",collapsible:false,minimizable:false,maximizable:false,resizable:false,toolbar:null,buttons:null}); -})(jQuery); -(function($){ -function _2a7(){ -$(document).unbind(".messager").bind("keydown.messager",function(e){ -if(e.keyCode==27){ -$("body").children("div.messager-window").children("div.messager-body").each(function(){ -$(this).dialog("close"); -}); -}else{ -if(e.keyCode==9){ -var win=$("body").children("div.messager-window"); -if(!win.length){ -return; -} -var _2a8=win.find(".messager-input,.messager-button .l-btn"); -for(var i=0;i<_2a8.length;i++){ -if($(_2a8[i]).is(":focus")){ -$(_2a8[i>=_2a8.length-1?0:i+1]).focus(); -return false; -} -} -} -} -}); -}; -function _2a9(){ -$(document).unbind(".messager"); -}; -function _2aa(_2ab){ -var opts=$.extend({},$.messager.defaults,{modal:false,shadow:false,draggable:false,resizable:false,closed:true,style:{left:"",top:"",right:0,zIndex:$.fn.window.defaults.zIndex++,bottom:-document.body.scrollTop-document.documentElement.scrollTop},title:"",width:250,height:100,minHeight:0,showType:"slide",showSpeed:600,content:_2ab.msg,timeout:4000},_2ab); -var dlg=$("
                                      ").appendTo("body"); -dlg.dialog($.extend({},opts,{noheader:(opts.title?false:true),openAnimation:(opts.showType),closeAnimation:(opts.showType=="show"?"hide":opts.showType),openDuration:opts.showSpeed,closeDuration:opts.showSpeed,onOpen:function(){ -dlg.dialog("dialog").hover(function(){ -if(opts.timer){ -clearTimeout(opts.timer); -} -},function(){ -_2ac(); -}); -_2ac(); -function _2ac(){ -if(opts.timeout>0){ -opts.timer=setTimeout(function(){ -if(dlg.length&&dlg.data("dialog")){ -dlg.dialog("close"); -} -},opts.timeout); -} -}; -if(_2ab.onOpen){ -_2ab.onOpen.call(this); -}else{ -opts.onOpen.call(this); -} -},onClose:function(){ -if(opts.timer){ -clearTimeout(opts.timer); -} -if(_2ab.onClose){ -_2ab.onClose.call(this); -}else{ -opts.onClose.call(this); -} -dlg.dialog("destroy"); -}})); -dlg.dialog("dialog").css(opts.style); -dlg.dialog("open"); -return dlg; -}; -function _2ad(_2ae){ -_2a7(); -var dlg=$("
                                      ").appendTo("body"); -dlg.dialog($.extend({},_2ae,{noheader:(_2ae.title?false:true),onClose:function(){ -_2a9(); -if(_2ae.onClose){ -_2ae.onClose.call(this); -} -setTimeout(function(){ -dlg.dialog("destroy"); -},100); -}})); -var win=dlg.dialog("dialog").addClass("messager-window"); -win.find(".dialog-button").addClass("messager-button").find("a:first").focus(); -return dlg; -}; -function _2af(dlg,_2b0){ -dlg.dialog("close"); -dlg.dialog("options").fn(_2b0); -}; -$.messager={show:function(_2b1){ -return _2aa(_2b1); -},alert:function(_2b2,msg,icon,fn){ -var opts=typeof _2b2=="object"?_2b2:{title:_2b2,msg:msg,icon:icon,fn:fn}; -var cls=opts.icon?"messager-icon messager-"+opts.icon:""; -opts=$.extend({},$.messager.defaults,{content:"
                                      "+"
                                      "+opts.msg+"
                                      "+"
                                      "},opts); -if(!opts.buttons){ -opts.buttons=[{text:opts.ok,onClick:function(){ -_2af(dlg); -}}]; -} -var dlg=_2ad(opts); -return dlg; -},confirm:function(_2b3,msg,fn){ -var opts=typeof _2b3=="object"?_2b3:{title:_2b3,msg:msg,fn:fn}; -opts=$.extend({},$.messager.defaults,{content:"
                                      "+"
                                      "+opts.msg+"
                                      "+"
                                      "},opts); -if(!opts.buttons){ -opts.buttons=[{text:opts.ok,onClick:function(){ -_2af(dlg,true); -}},{text:opts.cancel,onClick:function(){ -_2af(dlg,false); -}}]; -} -var dlg=_2ad(opts); -return dlg; -},prompt:function(_2b4,msg,fn){ -var opts=typeof _2b4=="object"?_2b4:{title:_2b4,msg:msg,fn:fn}; -opts=$.extend({},$.messager.defaults,{content:"
                                      "+"
                                      "+opts.msg+"
                                      "+"
                                      "+"
                                      "+"
                                      "},opts); -if(!opts.buttons){ -opts.buttons=[{text:opts.ok,onClick:function(){ -_2af(dlg,dlg.find(".messager-input").val()); -}},{text:opts.cancel,onClick:function(){ -_2af(dlg); -}}]; -} -var dlg=_2ad(opts); -dlg.find("input.messager-input").focus(); -return dlg; -},progress:function(_2b5){ -var _2b6={bar:function(){ -return $("body>div.messager-window").find("div.messager-p-bar"); -},close:function(){ -var dlg=$("body>div.messager-window>div.messager-body:has(div.messager-progress)"); -if(dlg.length){ -dlg.dialog("close"); -} -}}; -if(typeof _2b5=="string"){ -var _2b7=_2b6[_2b5]; -return _2b7(); -} -_2b5=_2b5||{}; -var opts=$.extend({},{title:"",minHeight:0,content:undefined,msg:"",text:undefined,interval:300},_2b5); -var dlg=_2ad($.extend({},$.messager.defaults,{content:"
                                      "+opts.msg+"
                                      ",closable:false,doSize:false},opts,{onClose:function(){ -if(this.timer){ -clearInterval(this.timer); -} -if(_2b5.onClose){ -_2b5.onClose.call(this); -}else{ -$.messager.defaults.onClose.call(this); -} -}})); -var bar=dlg.find("div.messager-p-bar"); -bar.progressbar({text:opts.text}); -dlg.dialog("resize"); -if(opts.interval){ -dlg[0].timer=setInterval(function(){ -var v=bar.progressbar("getValue"); -v+=10; -if(v>100){ -v=0; -} -bar.progressbar("setValue",v); -},opts.interval); -} -return dlg; -}}; -$.messager.defaults=$.extend({},$.fn.dialog.defaults,{ok:"Ok",cancel:"Cancel",width:300,height:"auto",minHeight:150,modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,fn:function(){ -}}); -})(jQuery); -(function($){ -function _2b8(_2b9,_2ba){ -var _2bb=$.data(_2b9,"accordion"); -var opts=_2bb.options; -var _2bc=_2bb.panels; -var cc=$(_2b9); -if(_2ba){ -$.extend(opts,{width:_2ba.width,height:_2ba.height}); -} -cc._size(opts); -var _2bd=0; -var _2be="auto"; -var _2bf=cc.find(">.panel>.accordion-header"); -if(_2bf.length){ -_2bd=$(_2bf[0]).css("height","")._outerHeight(); -} -if(!isNaN(parseInt(opts.height))){ -_2be=cc.height()-_2bd*_2bf.length; -} -_2c0(true,_2be-_2c0(false)+1); -function _2c0(_2c1,_2c2){ -var _2c3=0; -for(var i=0;i<_2bc.length;i++){ -var p=_2bc[i]; -var h=p.panel("header")._outerHeight(_2bd); -if(p.panel("options").collapsible==_2c1){ -var _2c4=isNaN(_2c2)?undefined:(_2c2+_2bd*h.length); -p.panel("resize",{width:cc.width(),height:(_2c1?_2c4:undefined)}); -_2c3+=p.panel("panel").outerHeight()-_2bd*h.length; -} -} -return _2c3; -}; -}; -function _2c5(_2c6,_2c7,_2c8,all){ -var _2c9=$.data(_2c6,"accordion").panels; -var pp=[]; -for(var i=0;i<_2c9.length;i++){ -var p=_2c9[i]; -if(_2c7){ -if(p.panel("options")[_2c7]==_2c8){ -pp.push(p); -} -}else{ -if(p[0]==$(_2c8)[0]){ -return i; -} -} -} -if(_2c7){ -return all?pp:(pp.length?pp[0]:null); -}else{ -return -1; -} -}; -function _2ca(_2cb){ -return _2c5(_2cb,"collapsed",false,true); -}; -function _2cc(_2cd){ -var pp=_2ca(_2cd); -return pp.length?pp[0]:null; -}; -function _2ce(_2cf,_2d0){ -return _2c5(_2cf,null,_2d0); -}; -function _2d1(_2d2,_2d3){ -var _2d4=$.data(_2d2,"accordion").panels; -if(typeof _2d3=="number"){ -if(_2d3<0||_2d3>=_2d4.length){ -return null; -}else{ -return _2d4[_2d3]; -} -} -return _2c5(_2d2,"title",_2d3); -}; -function _2d5(_2d6){ -var opts=$.data(_2d6,"accordion").options; -var cc=$(_2d6); -if(opts.border){ -cc.removeClass("accordion-noborder"); -}else{ -cc.addClass("accordion-noborder"); -} -}; -function init(_2d7){ -var _2d8=$.data(_2d7,"accordion"); -var cc=$(_2d7); -cc.addClass("accordion"); -_2d8.panels=[]; -cc.children("div").each(function(){ -var opts=$.extend({},$.parser.parseOptions(this),{selected:($(this).attr("selected")?true:undefined)}); -var pp=$(this); -_2d8.panels.push(pp); -_2da(_2d7,pp,opts); -}); -cc.bind("_resize",function(e,_2d9){ -if($(this).hasClass("easyui-fluid")||_2d9){ -_2b8(_2d7); -} -return false; -}); -}; -function _2da(_2db,pp,_2dc){ -var opts=$.data(_2db,"accordion").options; -pp.panel($.extend({},{collapsible:true,minimizable:false,maximizable:false,closable:false,doSize:false,collapsed:true,headerCls:"accordion-header",bodyCls:"accordion-body"},_2dc,{onBeforeExpand:function(){ -if(_2dc.onBeforeExpand){ -if(_2dc.onBeforeExpand.call(this)==false){ -return false; -} -} -if(!opts.multiple){ -var all=$.grep(_2ca(_2db),function(p){ -return p.panel("options").collapsible; -}); -for(var i=0;i").addClass("accordion-collapse accordion-expand").appendTo(tool); -t.bind("click",function(){ -_2e0(pp); -return false; -}); -pp.panel("options").collapsible?t.show():t.hide(); -_2df.click(function(){ -_2e0(pp); -return false; -}); -function _2e0(p){ -var _2e1=p.panel("options"); -if(_2e1.collapsible){ -var _2e2=_2ce(_2db,p); -if(_2e1.collapsed){ -_2e3(_2db,_2e2); -}else{ -_2e4(_2db,_2e2); -} -} -}; -}; -function _2e3(_2e5,_2e6){ -var p=_2d1(_2e5,_2e6); -if(!p){ -return; -} -_2e7(_2e5); -var opts=$.data(_2e5,"accordion").options; -p.panel("expand",opts.animate); -}; -function _2e4(_2e8,_2e9){ -var p=_2d1(_2e8,_2e9); -if(!p){ -return; -} -_2e7(_2e8); -var opts=$.data(_2e8,"accordion").options; -p.panel("collapse",opts.animate); -}; -function _2ea(_2eb){ -var opts=$.data(_2eb,"accordion").options; -var p=_2c5(_2eb,"selected",true); -if(p){ -_2ec(_2ce(_2eb,p)); -}else{ -_2ec(opts.selected); -} -function _2ec(_2ed){ -var _2ee=opts.animate; -opts.animate=false; -_2e3(_2eb,_2ed); -opts.animate=_2ee; -}; -}; -function _2e7(_2ef){ -var _2f0=$.data(_2ef,"accordion").panels; -for(var i=0;i<_2f0.length;i++){ -_2f0[i].stop(true,true); -} -}; -function add(_2f1,_2f2){ -var _2f3=$.data(_2f1,"accordion"); -var opts=_2f3.options; -var _2f4=_2f3.panels; -if(_2f2.selected==undefined){ -_2f2.selected=true; -} -_2e7(_2f1); -var pp=$("
                                      ").appendTo(_2f1); -_2f4.push(pp); -_2da(_2f1,pp,_2f2); -_2b8(_2f1); -opts.onAdd.call(_2f1,_2f2.title,_2f4.length-1); -if(_2f2.selected){ -_2e3(_2f1,_2f4.length-1); -} -}; -function _2f5(_2f6,_2f7){ -var _2f8=$.data(_2f6,"accordion"); -var opts=_2f8.options; -var _2f9=_2f8.panels; -_2e7(_2f6); -var _2fa=_2d1(_2f6,_2f7); -var _2fb=_2fa.panel("options").title; -var _2fc=_2ce(_2f6,_2fa); -if(!_2fa){ -return; -} -if(opts.onBeforeRemove.call(_2f6,_2fb,_2fc)==false){ -return; -} -_2f9.splice(_2fc,1); -_2fa.panel("destroy"); -if(_2f9.length){ -_2b8(_2f6); -var curr=_2cc(_2f6); -if(!curr){ -_2e3(_2f6,0); -} -} -opts.onRemove.call(_2f6,_2fb,_2fc); -}; -$.fn.accordion=function(_2fd,_2fe){ -if(typeof _2fd=="string"){ -return $.fn.accordion.methods[_2fd](this,_2fe); -} -_2fd=_2fd||{}; -return this.each(function(){ -var _2ff=$.data(this,"accordion"); -if(_2ff){ -$.extend(_2ff.options,_2fd); -}else{ -$.data(this,"accordion",{options:$.extend({},$.fn.accordion.defaults,$.fn.accordion.parseOptions(this),_2fd),accordion:$(this).addClass("accordion"),panels:[]}); -init(this); -} -_2d5(this); -_2b8(this); -_2ea(this); -}); -}; -$.fn.accordion.methods={options:function(jq){ -return $.data(jq[0],"accordion").options; -},panels:function(jq){ -return $.data(jq[0],"accordion").panels; -},resize:function(jq,_300){ -return jq.each(function(){ -_2b8(this,_300); -}); -},getSelections:function(jq){ -return _2ca(jq[0]); -},getSelected:function(jq){ -return _2cc(jq[0]); -},getPanel:function(jq,_301){ -return _2d1(jq[0],_301); -},getPanelIndex:function(jq,_302){ -return _2ce(jq[0],_302); -},select:function(jq,_303){ -return jq.each(function(){ -_2e3(this,_303); -}); -},unselect:function(jq,_304){ -return jq.each(function(){ -_2e4(this,_304); -}); -},add:function(jq,_305){ -return jq.each(function(){ -add(this,_305); -}); -},remove:function(jq,_306){ -return jq.each(function(){ -_2f5(this,_306); -}); -}}; -$.fn.accordion.parseOptions=function(_307){ -var t=$(_307); -return $.extend({},$.parser.parseOptions(_307,["width","height",{fit:"boolean",border:"boolean",animate:"boolean",multiple:"boolean",selected:"number"}])); -}; -$.fn.accordion.defaults={width:"auto",height:"auto",fit:false,border:true,animate:true,multiple:false,selected:0,onSelect:function(_308,_309){ -},onUnselect:function(_30a,_30b){ -},onAdd:function(_30c,_30d){ -},onBeforeRemove:function(_30e,_30f){ -},onRemove:function(_310,_311){ -}}; -})(jQuery); -(function($){ -function _312(c){ -var w=0; -$(c).children().each(function(){ -w+=$(this).outerWidth(true); -}); -return w; -}; -function _313(_314){ -var opts=$.data(_314,"tabs").options; -if(opts.tabPosition=="left"||opts.tabPosition=="right"||!opts.showHeader){ -return; -} -var _315=$(_314).children("div.tabs-header"); -var tool=_315.children("div.tabs-tool:not(.tabs-tool-hidden)"); -var _316=_315.children("div.tabs-scroller-left"); -var _317=_315.children("div.tabs-scroller-right"); -var wrap=_315.children("div.tabs-wrap"); -var _318=_315.outerHeight(); -if(opts.plain){ -_318-=_318-_315.height(); -} -tool._outerHeight(_318); -var _319=_312(_315.find("ul.tabs")); -var _31a=_315.width()-tool._outerWidth(); -if(_319>_31a){ -_316.add(_317).show()._outerHeight(_318); -if(opts.toolPosition=="left"){ -tool.css({left:_316.outerWidth(),right:""}); -wrap.css({marginLeft:_316.outerWidth()+tool._outerWidth(),marginRight:_317._outerWidth(),width:_31a-_316.outerWidth()-_317.outerWidth()}); -}else{ -tool.css({left:"",right:_317.outerWidth()}); -wrap.css({marginLeft:_316.outerWidth(),marginRight:_317.outerWidth()+tool._outerWidth(),width:_31a-_316.outerWidth()-_317.outerWidth()}); -} -}else{ -_316.add(_317).hide(); -if(opts.toolPosition=="left"){ -tool.css({left:0,right:""}); -wrap.css({marginLeft:tool._outerWidth(),marginRight:0,width:_31a}); -}else{ -tool.css({left:"",right:0}); -wrap.css({marginLeft:0,marginRight:tool._outerWidth(),width:_31a}); -} -} -}; -function _31b(_31c){ -var opts=$.data(_31c,"tabs").options; -var _31d=$(_31c).children("div.tabs-header"); -if(opts.tools){ -if(typeof opts.tools=="string"){ -$(opts.tools).addClass("tabs-tool").appendTo(_31d); -$(opts.tools).show(); -}else{ -_31d.children("div.tabs-tool").remove(); -var _31e=$("
                                      ").appendTo(_31d); -var tr=_31e.find("tr"); -for(var i=0;i").appendTo(tr); -var tool=$("").appendTo(td); -tool[0].onclick=eval(opts.tools[i].handler||function(){ -}); -tool.linkbutton($.extend({},opts.tools[i],{plain:true})); -} -} -}else{ -_31d.children("div.tabs-tool").remove(); -} -}; -function _31f(_320,_321){ -var _322=$.data(_320,"tabs"); -var opts=_322.options; -var cc=$(_320); -if(!opts.doSize){ -return; -} -if(_321){ -$.extend(opts,{width:_321.width,height:_321.height}); -} -cc._size(opts); -var _323=cc.children("div.tabs-header"); -var _324=cc.children("div.tabs-panels"); -var wrap=_323.find("div.tabs-wrap"); -var ul=wrap.find(".tabs"); -ul.children("li").removeClass("tabs-first tabs-last"); -ul.children("li:first").addClass("tabs-first"); -ul.children("li:last").addClass("tabs-last"); -if(opts.tabPosition=="left"||opts.tabPosition=="right"){ -_323._outerWidth(opts.showHeader?opts.headerWidth:0); -_324._outerWidth(cc.width()-_323.outerWidth()); -_323.add(_324)._size("height",isNaN(parseInt(opts.height))?"":cc.height()); -wrap._outerWidth(_323.width()); -ul._outerWidth(wrap.width()).css("height",""); -}else{ -_323.children("div.tabs-scroller-left,div.tabs-scroller-right,div.tabs-tool:not(.tabs-tool-hidden)").css("display",opts.showHeader?"block":"none"); -_323._outerWidth(cc.width()).css("height",""); -if(opts.showHeader){ -_323.css("background-color",""); -wrap.css("height",""); -}else{ -_323.css("background-color","transparent"); -_323._outerHeight(0); -wrap._outerHeight(0); -} -ul._outerHeight(opts.tabHeight).css("width",""); -ul._outerHeight(ul.outerHeight()-ul.height()-1+opts.tabHeight).css("width",""); -_324._size("height",isNaN(parseInt(opts.height))?"":(cc.height()-_323.outerHeight())); -_324._size("width",cc.width()); -} -if(_322.tabs.length){ -var d1=ul.outerWidth(true)-ul.width(); -var li=ul.children("li:first"); -var d2=li.outerWidth(true)-li.width(); -var _325=_323.width()-_323.children(".tabs-tool:not(.tabs-tool-hidden)")._outerWidth(); -var _326=Math.floor((_325-d1-d2*_322.tabs.length)/_322.tabs.length); -$.map(_322.tabs,function(p){ -_327(p,(opts.justified&&$.inArray(opts.tabPosition,["top","bottom"])>=0)?_326:undefined); -}); -if(opts.justified&&$.inArray(opts.tabPosition,["top","bottom"])>=0){ -var _328=_325-d1-_312(ul); -_327(_322.tabs[_322.tabs.length-1],_326+_328); -} -} -_313(_320); -function _327(p,_329){ -var _32a=p.panel("options"); -var p_t=_32a.tab.find("a.tabs-inner"); -var _329=_329?_329:(parseInt(_32a.tabWidth||opts.tabWidth||undefined)); -if(_329){ -p_t._outerWidth(_329); -}else{ -p_t.css("width",""); -} -p_t._outerHeight(opts.tabHeight); -p_t.css("lineHeight",p_t.height()+"px"); -p_t.find(".easyui-fluid:visible").triggerHandler("_resize"); -}; -}; -function _32b(_32c){ -var opts=$.data(_32c,"tabs").options; -var tab=_32d(_32c); -if(tab){ -var _32e=$(_32c).children("div.tabs-panels"); -var _32f=opts.width=="auto"?"auto":_32e.width(); -var _330=opts.height=="auto"?"auto":_32e.height(); -tab.panel("resize",{width:_32f,height:_330}); -} -}; -function _331(_332){ -var tabs=$.data(_332,"tabs").tabs; -var cc=$(_332).addClass("tabs-container"); -var _333=$("
                                      ").insertBefore(cc); -cc.children("div").each(function(){ -_333[0].appendChild(this); -}); -cc[0].appendChild(_333[0]); -$("
                                      "+"
                                      "+"
                                      "+"
                                      "+"
                                        "+"
                                        "+"
                                        ").prependTo(_332); -cc.children("div.tabs-panels").children("div").each(function(i){ -var opts=$.extend({},$.parser.parseOptions(this),{disabled:($(this).attr("disabled")?true:undefined),selected:($(this).attr("selected")?true:undefined)}); -_340(_332,opts,$(this)); -}); -cc.children("div.tabs-header").find(".tabs-scroller-left, .tabs-scroller-right").hover(function(){ -$(this).addClass("tabs-scroller-over"); -},function(){ -$(this).removeClass("tabs-scroller-over"); -}); -cc.bind("_resize",function(e,_334){ -if($(this).hasClass("easyui-fluid")||_334){ -_31f(_332); -_32b(_332); -} -return false; -}); -}; -function _335(_336){ -var _337=$.data(_336,"tabs"); -var opts=_337.options; -$(_336).children("div.tabs-header").unbind().bind("click",function(e){ -if($(e.target).hasClass("tabs-scroller-left")){ -$(_336).tabs("scrollBy",-opts.scrollIncrement); -}else{ -if($(e.target).hasClass("tabs-scroller-right")){ -$(_336).tabs("scrollBy",opts.scrollIncrement); -}else{ -var li=$(e.target).closest("li"); -if(li.hasClass("tabs-disabled")){ -return false; -} -var a=$(e.target).closest("a.tabs-close"); -if(a.length){ -_359(_336,_338(li)); -}else{ -if(li.length){ -var _339=_338(li); -var _33a=_337.tabs[_339].panel("options"); -if(_33a.collapsible){ -_33a.closed?_350(_336,_339):_36d(_336,_339); -}else{ -_350(_336,_339); -} -} -} -return false; -} -} -}).bind("contextmenu",function(e){ -var li=$(e.target).closest("li"); -if(li.hasClass("tabs-disabled")){ -return; -} -if(li.length){ -opts.onContextMenu.call(_336,e,li.find("span.tabs-title").html(),_338(li)); -} -}); -function _338(li){ -var _33b=0; -li.parent().children("li").each(function(i){ -if(li[0]==this){ -_33b=i; -return false; -} -}); -return _33b; -}; -}; -function _33c(_33d){ -var opts=$.data(_33d,"tabs").options; -var _33e=$(_33d).children("div.tabs-header"); -var _33f=$(_33d).children("div.tabs-panels"); -_33e.removeClass("tabs-header-top tabs-header-bottom tabs-header-left tabs-header-right"); -_33f.removeClass("tabs-panels-top tabs-panels-bottom tabs-panels-left tabs-panels-right"); -if(opts.tabPosition=="top"){ -_33e.insertBefore(_33f); -}else{ -if(opts.tabPosition=="bottom"){ -_33e.insertAfter(_33f); -_33e.addClass("tabs-header-bottom"); -_33f.addClass("tabs-panels-top"); -}else{ -if(opts.tabPosition=="left"){ -_33e.addClass("tabs-header-left"); -_33f.addClass("tabs-panels-right"); -}else{ -if(opts.tabPosition=="right"){ -_33e.addClass("tabs-header-right"); -_33f.addClass("tabs-panels-left"); -} -} -} -} -if(opts.plain==true){ -_33e.addClass("tabs-header-plain"); -}else{ -_33e.removeClass("tabs-header-plain"); -} -_33e.removeClass("tabs-header-narrow").addClass(opts.narrow?"tabs-header-narrow":""); -var tabs=_33e.find(".tabs"); -tabs.removeClass("tabs-pill").addClass(opts.pill?"tabs-pill":""); -tabs.removeClass("tabs-narrow").addClass(opts.narrow?"tabs-narrow":""); -tabs.removeClass("tabs-justified").addClass(opts.justified?"tabs-justified":""); -if(opts.border==true){ -_33e.removeClass("tabs-header-noborder"); -_33f.removeClass("tabs-panels-noborder"); -}else{ -_33e.addClass("tabs-header-noborder"); -_33f.addClass("tabs-panels-noborder"); -} -opts.doSize=true; -}; -function _340(_341,_342,pp){ -_342=_342||{}; -var _343=$.data(_341,"tabs"); -var tabs=_343.tabs; -if(_342.index==undefined||_342.index>tabs.length){ -_342.index=tabs.length; -} -if(_342.index<0){ -_342.index=0; -} -var ul=$(_341).children("div.tabs-header").find("ul.tabs"); -var _344=$(_341).children("div.tabs-panels"); -var tab=$("
                                      • "+""+""+""+""+"
                                      • "); -if(!pp){ -pp=$("
                                        "); -} -if(_342.index>=tabs.length){ -tab.appendTo(ul); -pp.appendTo(_344); -tabs.push(pp); -}else{ -tab.insertBefore(ul.children("li:eq("+_342.index+")")); -pp.insertBefore(_344.children("div.panel:eq("+_342.index+")")); -tabs.splice(_342.index,0,pp); -} -pp.panel($.extend({},_342,{tab:tab,border:false,noheader:true,closed:true,doSize:false,iconCls:(_342.icon?_342.icon:undefined),onLoad:function(){ -if(_342.onLoad){ -_342.onLoad.call(this,arguments); -} -_343.options.onLoad.call(_341,$(this)); -},onBeforeOpen:function(){ -if(_342.onBeforeOpen){ -if(_342.onBeforeOpen.call(this)==false){ -return false; -} -} -var p=$(_341).tabs("getSelected"); -if(p){ -if(p[0]!=this){ -$(_341).tabs("unselect",_34b(_341,p)); -p=$(_341).tabs("getSelected"); -if(p){ -return false; -} -}else{ -_32b(_341); -return false; -} -} -var _345=$(this).panel("options"); -_345.tab.addClass("tabs-selected"); -var wrap=$(_341).find(">div.tabs-header>div.tabs-wrap"); -var left=_345.tab.position().left; -var _346=left+_345.tab.outerWidth(); -if(left<0||_346>wrap.width()){ -var _347=left-(wrap.width()-_345.tab.width())/2; -$(_341).tabs("scrollBy",_347); -}else{ -$(_341).tabs("scrollBy",0); -} -var _348=$(this).panel("panel"); -_348.css("display","block"); -_32b(_341); -_348.css("display","none"); -},onOpen:function(){ -if(_342.onOpen){ -_342.onOpen.call(this); -} -var _349=$(this).panel("options"); -_343.selectHis.push(_349.title); -_343.options.onSelect.call(_341,_349.title,_34b(_341,this)); -},onBeforeClose:function(){ -if(_342.onBeforeClose){ -if(_342.onBeforeClose.call(this)==false){ -return false; -} -} -$(this).panel("options").tab.removeClass("tabs-selected"); -},onClose:function(){ -if(_342.onClose){ -_342.onClose.call(this); -} -var _34a=$(this).panel("options"); -_343.options.onUnselect.call(_341,_34a.title,_34b(_341,this)); -}})); -$(_341).tabs("update",{tab:pp,options:pp.panel("options"),type:"header"}); -}; -function _34c(_34d,_34e){ -var _34f=$.data(_34d,"tabs"); -var opts=_34f.options; -if(_34e.selected==undefined){ -_34e.selected=true; -} -_340(_34d,_34e); -opts.onAdd.call(_34d,_34e.title,_34e.index); -if(_34e.selected){ -_350(_34d,_34e.index); -} -}; -function _351(_352,_353){ -_353.type=_353.type||"all"; -var _354=$.data(_352,"tabs").selectHis; -var pp=_353.tab; -var opts=pp.panel("options"); -var _355=opts.title; -$.extend(opts,_353.options,{iconCls:(_353.options.icon?_353.options.icon:undefined)}); -if(_353.type=="all"||_353.type=="body"){ -pp.panel(); -} -if(_353.type=="all"||_353.type=="header"){ -var tab=opts.tab; -if(opts.header){ -tab.find(".tabs-inner").html($(opts.header)); -}else{ -var _356=tab.find("span.tabs-title"); -var _357=tab.find("span.tabs-icon"); -_356.html(opts.title); -_357.attr("class","tabs-icon"); -tab.find("a.tabs-close").remove(); -if(opts.closable){ -_356.addClass("tabs-closable"); -$("").appendTo(tab); -}else{ -_356.removeClass("tabs-closable"); -} -if(opts.iconCls){ -_356.addClass("tabs-with-icon"); -_357.addClass(opts.iconCls); -}else{ -_356.removeClass("tabs-with-icon"); -} -if(opts.tools){ -var _358=tab.find("span.tabs-p-tool"); -if(!_358.length){ -var _358=$("").insertAfter(tab.find("a.tabs-inner")); -} -if($.isArray(opts.tools)){ -_358.empty(); -for(var i=0;i").appendTo(_358); -t.addClass(opts.tools[i].iconCls); -if(opts.tools[i].handler){ -t.bind("click",{handler:opts.tools[i].handler},function(e){ -if($(this).parents("li").hasClass("tabs-disabled")){ -return; -} -e.data.handler.call(this); -}); -} -} -}else{ -$(opts.tools).children().appendTo(_358); -} -var pr=_358.children().length*12; -if(opts.closable){ -pr+=8; -}else{ -pr-=3; -_358.css("right","5px"); -} -_356.css("padding-right",pr+"px"); -}else{ -tab.find("span.tabs-p-tool").remove(); -_356.css("padding-right",""); -} -} -if(_355!=opts.title){ -for(var i=0;i<_354.length;i++){ -if(_354[i]==_355){ -_354[i]=opts.title; -} -} -} -} -if(opts.disabled){ -opts.tab.addClass("tabs-disabled"); -}else{ -opts.tab.removeClass("tabs-disabled"); -} -_31f(_352); -$.data(_352,"tabs").options.onUpdate.call(_352,opts.title,_34b(_352,pp)); -}; -function _359(_35a,_35b){ -var opts=$.data(_35a,"tabs").options; -var tabs=$.data(_35a,"tabs").tabs; -var _35c=$.data(_35a,"tabs").selectHis; -if(!_35d(_35a,_35b)){ -return; -} -var tab=_35e(_35a,_35b); -var _35f=tab.panel("options").title; -var _360=_34b(_35a,tab); -if(opts.onBeforeClose.call(_35a,_35f,_360)==false){ -return; -} -var tab=_35e(_35a,_35b,true); -tab.panel("options").tab.remove(); -tab.panel("destroy"); -opts.onClose.call(_35a,_35f,_360); -_31f(_35a); -for(var i=0;i<_35c.length;i++){ -if(_35c[i]==_35f){ -_35c.splice(i,1); -i--; -} -} -var _361=_35c.pop(); -if(_361){ -_350(_35a,_361); -}else{ -if(tabs.length){ -_350(_35a,0); -} -} -}; -function _35e(_362,_363,_364){ -var tabs=$.data(_362,"tabs").tabs; -if(typeof _363=="number"){ -if(_363<0||_363>=tabs.length){ -return null; -}else{ -var tab=tabs[_363]; -if(_364){ -tabs.splice(_363,1); -} -return tab; -} -} -for(var i=0;i.tabs-header>.tabs-tool"); -if(_378){ -tool.removeClass("tabs-tool-hidden").show(); -}else{ -tool.addClass("tabs-tool-hidden").hide(); -} -$(_377).tabs("resize").tabs("scrollBy",0); -}; -$.fn.tabs=function(_379,_37a){ -if(typeof _379=="string"){ -return $.fn.tabs.methods[_379](this,_37a); -} -_379=_379||{}; -return this.each(function(){ -var _37b=$.data(this,"tabs"); -if(_37b){ -$.extend(_37b.options,_379); -}else{ -$.data(this,"tabs",{options:$.extend({},$.fn.tabs.defaults,$.fn.tabs.parseOptions(this),_379),tabs:[],selectHis:[]}); -_331(this); -} -_31b(this); -_33c(this); -_31f(this); -_335(this); -_367(this); -}); -}; -$.fn.tabs.methods={options:function(jq){ -var cc=jq[0]; -var opts=$.data(cc,"tabs").options; -var s=_32d(cc); -opts.selected=s?_34b(cc,s):-1; -return opts; -},tabs:function(jq){ -return $.data(jq[0],"tabs").tabs; -},resize:function(jq,_37c){ -return jq.each(function(){ -_31f(this,_37c); -_32b(this); -}); -},add:function(jq,_37d){ -return jq.each(function(){ -_34c(this,_37d); -}); -},close:function(jq,_37e){ -return jq.each(function(){ -_359(this,_37e); -}); -},getTab:function(jq,_37f){ -return _35e(jq[0],_37f); -},getTabIndex:function(jq,tab){ -return _34b(jq[0],tab); -},getSelected:function(jq){ -return _32d(jq[0]); -},select:function(jq,_380){ -return jq.each(function(){ -_350(this,_380); -}); -},unselect:function(jq,_381){ -return jq.each(function(){ -_36d(this,_381); -}); -},exists:function(jq,_382){ -return _35d(jq[0],_382); -},update:function(jq,_383){ -return jq.each(function(){ -_351(this,_383); -}); -},enableTab:function(jq,_384){ -return jq.each(function(){ -var opts=$(this).tabs("getTab",_384).panel("options"); -opts.tab.removeClass("tabs-disabled"); -opts.disabled=false; -}); -},disableTab:function(jq,_385){ -return jq.each(function(){ -var opts=$(this).tabs("getTab",_385).panel("options"); -opts.tab.addClass("tabs-disabled"); -opts.disabled=true; -}); -},showHeader:function(jq){ -return jq.each(function(){ -_373(this,true); -}); -},hideHeader:function(jq){ -return jq.each(function(){ -_373(this,false); -}); -},showTool:function(jq){ -return jq.each(function(){ -_376(this,true); -}); -},hideTool:function(jq){ -return jq.each(function(){ -_376(this,false); -}); -},scrollBy:function(jq,_386){ -return jq.each(function(){ -var opts=$(this).tabs("options"); -var wrap=$(this).find(">div.tabs-header>div.tabs-wrap"); -var pos=Math.min(wrap._scrollLeft()+_386,_387()); -wrap.animate({scrollLeft:pos},opts.scrollDuration); -function _387(){ -var w=0; -var ul=wrap.children("ul"); -ul.children("li").each(function(){ -w+=$(this).outerWidth(true); -}); -return w-wrap.width()+(ul.outerWidth()-ul.width()); -}; -}); -}}; -$.fn.tabs.parseOptions=function(_388){ -return $.extend({},$.parser.parseOptions(_388,["tools","toolPosition","tabPosition",{fit:"boolean",border:"boolean",plain:"boolean"},{headerWidth:"number",tabWidth:"number",tabHeight:"number",selected:"number"},{showHeader:"boolean",justified:"boolean",narrow:"boolean",pill:"boolean"}])); -}; -$.fn.tabs.defaults={width:"auto",height:"auto",headerWidth:150,tabWidth:"auto",tabHeight:27,selected:0,showHeader:true,plain:false,fit:false,border:true,justified:false,narrow:false,pill:false,tools:null,toolPosition:"right",tabPosition:"top",scrollIncrement:100,scrollDuration:400,onLoad:function(_389){ -},onSelect:function(_38a,_38b){ -},onUnselect:function(_38c,_38d){ -},onBeforeClose:function(_38e,_38f){ -},onClose:function(_390,_391){ -},onAdd:function(_392,_393){ -},onUpdate:function(_394,_395){ -},onContextMenu:function(e,_396,_397){ -}}; -})(jQuery); -(function($){ -var _398=false; -function _399(_39a,_39b){ -var _39c=$.data(_39a,"layout"); -var opts=_39c.options; -var _39d=_39c.panels; -var cc=$(_39a); -if(_39b){ -$.extend(opts,{width:_39b.width,height:_39b.height}); -} -if(_39a.tagName.toLowerCase()=="body"){ -cc._size("fit"); -}else{ -cc._size(opts); -} -var cpos={top:0,left:0,width:cc.width(),height:cc.height()}; -_39e(_39f(_39d.expandNorth)?_39d.expandNorth:_39d.north,"n"); -_39e(_39f(_39d.expandSouth)?_39d.expandSouth:_39d.south,"s"); -_3a0(_39f(_39d.expandEast)?_39d.expandEast:_39d.east,"e"); -_3a0(_39f(_39d.expandWest)?_39d.expandWest:_39d.west,"w"); -_39d.center.panel("resize",cpos); -function _39e(pp,type){ -if(!pp.length||!_39f(pp)){ -return; -} -var opts=pp.panel("options"); -pp.panel("resize",{width:cc.width(),height:opts.height}); -var _3a1=pp.panel("panel").outerHeight(); -pp.panel("move",{left:0,top:(type=="n"?0:cc.height()-_3a1)}); -cpos.height-=_3a1; -if(type=="n"){ -cpos.top+=_3a1; -if(!opts.split&&opts.border){ -cpos.top--; -} -} -if(!opts.split&&opts.border){ -cpos.height++; -} -}; -function _3a0(pp,type){ -if(!pp.length||!_39f(pp)){ -return; -} -var opts=pp.panel("options"); -pp.panel("resize",{width:opts.width,height:cpos.height}); -var _3a2=pp.panel("panel").outerWidth(); -pp.panel("move",{left:(type=="e"?cc.width()-_3a2:0),top:cpos.top}); -cpos.width-=_3a2; -if(type=="w"){ -cpos.left+=_3a2; -if(!opts.split&&opts.border){ -cpos.left--; -} -} -if(!opts.split&&opts.border){ -cpos.width++; -} -}; -}; -function init(_3a3){ -var cc=$(_3a3); -cc.addClass("layout"); -function _3a4(cc){ -var opts=cc.layout("options"); -var _3a5=opts.onAdd; -opts.onAdd=function(){ -}; -cc.children("div").each(function(){ -var _3a6=$.fn.layout.parsePanelOptions(this); -if("north,south,east,west,center".indexOf(_3a6.region)>=0){ -_3a8(_3a3,_3a6,this); -} -}); -opts.onAdd=_3a5; -}; -cc.children("form").length?_3a4(cc.children("form")):_3a4(cc); -cc.append("
                                        "); -cc.bind("_resize",function(e,_3a7){ -if($(this).hasClass("easyui-fluid")||_3a7){ -_399(_3a3); -} -return false; -}); -}; -function _3a8(_3a9,_3aa,el){ -_3aa.region=_3aa.region||"center"; -var _3ab=$.data(_3a9,"layout").panels; -var cc=$(_3a9); -var dir=_3aa.region; -if(_3ab[dir].length){ -return; -} -var pp=$(el); -if(!pp.length){ -pp=$("
                                        ").appendTo(cc); -} -var _3ac=$.extend({},$.fn.layout.paneldefaults,{width:(pp.length?parseInt(pp[0].style.width)||pp.outerWidth():"auto"),height:(pp.length?parseInt(pp[0].style.height)||pp.outerHeight():"auto"),doSize:false,collapsible:true,onOpen:function(){ -var tool=$(this).panel("header").children("div.panel-tool"); -tool.children("a.panel-tool-collapse").hide(); -var _3ad={north:"up",south:"down",east:"right",west:"left"}; -if(!_3ad[dir]){ -return; -} -var _3ae="layout-button-"+_3ad[dir]; -var t=tool.children("a."+_3ae); -if(!t.length){ -t=$("").addClass(_3ae).appendTo(tool); -t.bind("click",{dir:dir},function(e){ -_3ba(_3a9,e.data.dir); -return false; -}); -} -$(this).panel("options").collapsible?t.show():t.hide(); -}},_3aa,{cls:((_3aa.cls||"")+" layout-panel layout-panel-"+dir),bodyCls:((_3aa.bodyCls||"")+" layout-body")}); -pp.panel(_3ac); -_3ab[dir]=pp; -var _3af={north:"s",south:"n",east:"w",west:"e"}; -var _3b0=pp.panel("panel"); -if(pp.panel("options").split){ -_3b0.addClass("layout-split-"+dir); -} -_3b0.resizable($.extend({},{handles:(_3af[dir]||""),disabled:(!pp.panel("options").split),onStartResize:function(e){ -_398=true; -if(dir=="north"||dir=="south"){ -var _3b1=$(">div.layout-split-proxy-v",_3a9); -}else{ -var _3b1=$(">div.layout-split-proxy-h",_3a9); -} -var top=0,left=0,_3b2=0,_3b3=0; -var pos={display:"block"}; -if(dir=="north"){ -pos.top=parseInt(_3b0.css("top"))+_3b0.outerHeight()-_3b1.height(); -pos.left=parseInt(_3b0.css("left")); -pos.width=_3b0.outerWidth(); -pos.height=_3b1.height(); -}else{ -if(dir=="south"){ -pos.top=parseInt(_3b0.css("top")); -pos.left=parseInt(_3b0.css("left")); -pos.width=_3b0.outerWidth(); -pos.height=_3b1.height(); -}else{ -if(dir=="east"){ -pos.top=parseInt(_3b0.css("top"))||0; -pos.left=parseInt(_3b0.css("left"))||0; -pos.width=_3b1.width(); -pos.height=_3b0.outerHeight(); -}else{ -if(dir=="west"){ -pos.top=parseInt(_3b0.css("top"))||0; -pos.left=_3b0.outerWidth()-_3b1.width(); -pos.width=_3b1.width(); -pos.height=_3b0.outerHeight(); -} -} -} -} -_3b1.css(pos); -$("
                                        ").css({left:0,top:0,width:cc.width(),height:cc.height()}).appendTo(cc); -},onResize:function(e){ -if(dir=="north"||dir=="south"){ -var _3b4=$(">div.layout-split-proxy-v",_3a9); -_3b4.css("top",e.pageY-$(_3a9).offset().top-_3b4.height()/2); -}else{ -var _3b4=$(">div.layout-split-proxy-h",_3a9); -_3b4.css("left",e.pageX-$(_3a9).offset().left-_3b4.width()/2); -} -return false; -},onStopResize:function(e){ -cc.children("div.layout-split-proxy-v,div.layout-split-proxy-h").hide(); -pp.panel("resize",e.data); -_399(_3a9); -_398=false; -cc.find(">div.layout-mask").remove(); -}},_3aa)); -cc.layout("options").onAdd.call(_3a9,dir); -}; -function _3b5(_3b6,_3b7){ -var _3b8=$.data(_3b6,"layout").panels; -if(_3b8[_3b7].length){ -_3b8[_3b7].panel("destroy"); -_3b8[_3b7]=$(); -var _3b9="expand"+_3b7.substring(0,1).toUpperCase()+_3b7.substring(1); -if(_3b8[_3b9]){ -_3b8[_3b9].panel("destroy"); -_3b8[_3b9]=undefined; -} -$(_3b6).layout("options").onRemove.call(_3b6,_3b7); -} -}; -function _3ba(_3bb,_3bc,_3bd){ -if(_3bd==undefined){ -_3bd="normal"; -} -var _3be=$.data(_3bb,"layout").panels; -var p=_3be[_3bc]; -var _3bf=p.panel("options"); -if(_3bf.onBeforeCollapse.call(p)==false){ -return; -} -var _3c0="expand"+_3bc.substring(0,1).toUpperCase()+_3bc.substring(1); -if(!_3be[_3c0]){ -_3be[_3c0]=_3c1(_3bc); -var ep=_3be[_3c0].panel("panel"); -if(!_3bf.expandMode){ -ep.css("cursor","default"); -}else{ -ep.bind("click",function(){ -if(_3bf.expandMode=="dock"){ -_3cc(_3bb,_3bc); -}else{ -p.panel("expand",false).panel("open"); -var _3c2=_3c3(); -p.panel("resize",_3c2.collapse); -p.panel("panel").animate(_3c2.expand,function(){ -$(this).unbind(".layout").bind("mouseleave.layout",{region:_3bc},function(e){ -if(_398==true){ -return; -} -if($("body>div.combo-p>div.combo-panel:visible").length){ -return; -} -_3ba(_3bb,e.data.region); -}); -$(_3bb).layout("options").onExpand.call(_3bb,_3bc); -}); -} -return false; -}); -} -} -var _3c4=_3c3(); -if(!_39f(_3be[_3c0])){ -_3be.center.panel("resize",_3c4.resizeC); -} -p.panel("panel").animate(_3c4.collapse,_3bd,function(){ -p.panel("collapse",false).panel("close"); -_3be[_3c0].panel("open").panel("resize",_3c4.expandP); -$(this).unbind(".layout"); -$(_3bb).layout("options").onCollapse.call(_3bb,_3bc); -}); -function _3c1(dir){ -var _3c5={"east":"left","west":"right","north":"down","south":"up"}; -var isns=(_3bf.region=="north"||_3bf.region=="south"); -var icon="layout-button-"+_3c5[dir]; -var p=$("
                                        ").appendTo(_3bb); -p.panel($.extend({},$.fn.layout.paneldefaults,{cls:("layout-expand layout-expand-"+dir),title:" ",iconCls:(_3bf.hideCollapsedContent?null:_3bf.iconCls),closed:true,minWidth:0,minHeight:0,doSize:false,region:_3bf.region,collapsedSize:_3bf.collapsedSize,noheader:(!isns&&_3bf.hideExpandTool),tools:((isns&&_3bf.hideExpandTool)?null:[{iconCls:icon,handler:function(){ -_3cc(_3bb,_3bc); -return false; -}}])})); -if(!_3bf.hideCollapsedContent){ -var _3c6=typeof _3bf.collapsedContent=="function"?_3bf.collapsedContent.call(p[0],_3bf.title):_3bf.collapsedContent; -isns?p.panel("setTitle",_3c6):p.html(_3c6); -} -p.panel("panel").hover(function(){ -$(this).addClass("layout-expand-over"); -},function(){ -$(this).removeClass("layout-expand-over"); -}); -return p; -}; -function _3c3(){ -var cc=$(_3bb); -var _3c7=_3be.center.panel("options"); -var _3c8=_3bf.collapsedSize; -if(_3bc=="east"){ -var _3c9=p.panel("panel")._outerWidth(); -var _3ca=_3c7.width+_3c9-_3c8; -if(_3bf.split||!_3bf.border){ -_3ca++; -} -return {resizeC:{width:_3ca},expand:{left:cc.width()-_3c9},expandP:{top:_3c7.top,left:cc.width()-_3c8,width:_3c8,height:_3c7.height},collapse:{left:cc.width(),top:_3c7.top,height:_3c7.height}}; -}else{ -if(_3bc=="west"){ -var _3c9=p.panel("panel")._outerWidth(); -var _3ca=_3c7.width+_3c9-_3c8; -if(_3bf.split||!_3bf.border){ -_3ca++; -} -return {resizeC:{width:_3ca,left:_3c8-1},expand:{left:0},expandP:{left:0,top:_3c7.top,width:_3c8,height:_3c7.height},collapse:{left:-_3c9,top:_3c7.top,height:_3c7.height}}; -}else{ -if(_3bc=="north"){ -var _3cb=p.panel("panel")._outerHeight(); -var hh=_3c7.height; -if(!_39f(_3be.expandNorth)){ -hh+=_3cb-_3c8+((_3bf.split||!_3bf.border)?1:0); -} -_3be.east.add(_3be.west).add(_3be.expandEast).add(_3be.expandWest).panel("resize",{top:_3c8-1,height:hh}); -return {resizeC:{top:_3c8-1,height:hh},expand:{top:0},expandP:{top:0,left:0,width:cc.width(),height:_3c8},collapse:{top:-_3cb,width:cc.width()}}; -}else{ -if(_3bc=="south"){ -var _3cb=p.panel("panel")._outerHeight(); -var hh=_3c7.height; -if(!_39f(_3be.expandSouth)){ -hh+=_3cb-_3c8+((_3bf.split||!_3bf.border)?1:0); -} -_3be.east.add(_3be.west).add(_3be.expandEast).add(_3be.expandWest).panel("resize",{height:hh}); -return {resizeC:{height:hh},expand:{top:cc.height()-_3cb},expandP:{top:cc.height()-_3c8,left:0,width:cc.width(),height:_3c8},collapse:{top:cc.height(),width:cc.width()}}; -} -} -} -} -}; -}; -function _3cc(_3cd,_3ce){ -var _3cf=$.data(_3cd,"layout").panels; -var p=_3cf[_3ce]; -var _3d0=p.panel("options"); -if(_3d0.onBeforeExpand.call(p)==false){ -return; -} -var _3d1="expand"+_3ce.substring(0,1).toUpperCase()+_3ce.substring(1); -if(_3cf[_3d1]){ -_3cf[_3d1].panel("close"); -p.panel("panel").stop(true,true); -p.panel("expand",false).panel("open"); -var _3d2=_3d3(); -p.panel("resize",_3d2.collapse); -p.panel("panel").animate(_3d2.expand,function(){ -_399(_3cd); -$(_3cd).layout("options").onExpand.call(_3cd,_3ce); -}); -} -function _3d3(){ -var cc=$(_3cd); -var _3d4=_3cf.center.panel("options"); -if(_3ce=="east"&&_3cf.expandEast){ -return {collapse:{left:cc.width(),top:_3d4.top,height:_3d4.height},expand:{left:cc.width()-p.panel("panel")._outerWidth()}}; -}else{ -if(_3ce=="west"&&_3cf.expandWest){ -return {collapse:{left:-p.panel("panel")._outerWidth(),top:_3d4.top,height:_3d4.height},expand:{left:0}}; -}else{ -if(_3ce=="north"&&_3cf.expandNorth){ -return {collapse:{top:-p.panel("panel")._outerHeight(),width:cc.width()},expand:{top:0}}; -}else{ -if(_3ce=="south"&&_3cf.expandSouth){ -return {collapse:{top:cc.height(),width:cc.width()},expand:{top:cc.height()-p.panel("panel")._outerHeight()}}; -} -} -} -} -}; -}; -function _39f(pp){ -if(!pp){ -return false; -} -if(pp.length){ -return pp.panel("panel").is(":visible"); -}else{ -return false; -} -}; -function _3d5(_3d6){ -var _3d7=$.data(_3d6,"layout"); -var opts=_3d7.options; -var _3d8=_3d7.panels; -var _3d9=opts.onCollapse; -opts.onCollapse=function(){ -}; -_3da("east"); -_3da("west"); -_3da("north"); -_3da("south"); -opts.onCollapse=_3d9; -function _3da(_3db){ -var p=_3d8[_3db]; -if(p.length&&p.panel("options").collapsed){ -_3ba(_3d6,_3db,0); -} -}; -}; -function _3dc(_3dd,_3de,_3df){ -var p=$(_3dd).layout("panel",_3de); -p.panel("options").split=_3df; -var cls="layout-split-"+_3de; -var _3e0=p.panel("panel").removeClass(cls); -if(_3df){ -_3e0.addClass(cls); -} -_3e0.resizable({disabled:(!_3df)}); -_399(_3dd); -}; -$.fn.layout=function(_3e1,_3e2){ -if(typeof _3e1=="string"){ -return $.fn.layout.methods[_3e1](this,_3e2); -} -_3e1=_3e1||{}; -return this.each(function(){ -var _3e3=$.data(this,"layout"); -if(_3e3){ -$.extend(_3e3.options,_3e1); -}else{ -var opts=$.extend({},$.fn.layout.defaults,$.fn.layout.parseOptions(this),_3e1); -$.data(this,"layout",{options:opts,panels:{center:$(),north:$(),south:$(),east:$(),west:$()}}); -init(this); -} -_399(this); -_3d5(this); -}); -}; -$.fn.layout.methods={options:function(jq){ -return $.data(jq[0],"layout").options; -},resize:function(jq,_3e4){ -return jq.each(function(){ -_399(this,_3e4); -}); -},panel:function(jq,_3e5){ -return $.data(jq[0],"layout").panels[_3e5]; -},collapse:function(jq,_3e6){ -return jq.each(function(){ -_3ba(this,_3e6); -}); -},expand:function(jq,_3e7){ -return jq.each(function(){ -_3cc(this,_3e7); -}); -},add:function(jq,_3e8){ -return jq.each(function(){ -_3a8(this,_3e8); -_399(this); -if($(this).layout("panel",_3e8.region).panel("options").collapsed){ -_3ba(this,_3e8.region,0); -} -}); -},remove:function(jq,_3e9){ -return jq.each(function(){ -_3b5(this,_3e9); -_399(this); -}); -},split:function(jq,_3ea){ -return jq.each(function(){ -_3dc(this,_3ea,true); -}); -},unsplit:function(jq,_3eb){ -return jq.each(function(){ -_3dc(this,_3eb,false); -}); -}}; -$.fn.layout.parseOptions=function(_3ec){ -return $.extend({},$.parser.parseOptions(_3ec,[{fit:"boolean"}])); -}; -$.fn.layout.defaults={fit:false,onExpand:function(_3ed){ -},onCollapse:function(_3ee){ -},onAdd:function(_3ef){ -},onRemove:function(_3f0){ -}}; -$.fn.layout.parsePanelOptions=function(_3f1){ -var t=$(_3f1); -return $.extend({},$.fn.panel.parseOptions(_3f1),$.parser.parseOptions(_3f1,["region",{split:"boolean",collpasedSize:"number",minWidth:"number",minHeight:"number",maxWidth:"number",maxHeight:"number"}])); -}; -$.fn.layout.paneldefaults=$.extend({},$.fn.panel.defaults,{region:null,split:false,collapsedSize:28,expandMode:"float",hideExpandTool:false,hideCollapsedContent:true,collapsedContent:function(_3f2){ -var p=$(this); -var opts=p.panel("options"); -if(opts.region=="north"||opts.region=="south"){ -return _3f2; -} -var size=opts.collapsedSize-2; -var left=(size-16)/2; -left=size-left; -var cc=[]; -if(opts.iconCls){ -cc.push("
                                        "); -} -cc.push("
                                        "); -cc.push(_3f2); -cc.push("
                                        "); -return cc.join(""); -},minWidth:10,minHeight:10,maxWidth:10000,maxHeight:10000}); -})(jQuery); -(function($){ -$(function(){ -$(document).unbind(".menu").bind("mousedown.menu",function(e){ -var m=$(e.target).closest("div.menu,div.combo-p"); -if(m.length){ -return; -} -$("body>div.menu-top:visible").not(".menu-inline").menu("hide"); -_3f3($("body>div.menu:visible").not(".menu-inline")); -}); -}); -function init(_3f4){ -var opts=$.data(_3f4,"menu").options; -$(_3f4).addClass("menu-top"); -opts.inline?$(_3f4).addClass("menu-inline"):$(_3f4).appendTo("body"); -$(_3f4).bind("_resize",function(e,_3f5){ -if($(this).hasClass("easyui-fluid")||_3f5){ -$(_3f4).menu("resize",_3f4); -} -return false; -}); -var _3f6=_3f7($(_3f4)); -for(var i=0;i<_3f6.length;i++){ -_3f8(_3f6[i]); -} -function _3f7(menu){ -var _3f9=[]; -menu.addClass("menu"); -_3f9.push(menu); -if(!menu.hasClass("menu-content")){ -menu.children("div").each(function(){ -var _3fa=$(this).children("div"); -if(_3fa.length){ -_3fa.appendTo("body"); -this.submenu=_3fa; -var mm=_3f7(_3fa); -_3f9=_3f9.concat(mm); -} -}); -} -return _3f9; -}; -function _3f8(menu){ -var wh=$.parser.parseOptions(menu[0],["width","height"]); -menu[0].originalHeight=wh.height||0; -if(menu.hasClass("menu-content")){ -menu[0].originalWidth=wh.width||menu._outerWidth(); -}else{ -menu[0].originalWidth=wh.width||0; -menu.children("div").each(function(){ -var item=$(this); -var _3fb=$.extend({},$.parser.parseOptions(this,["name","iconCls","href",{separator:"boolean"}]),{disabled:(item.attr("disabled")?true:undefined)}); -if(_3fb.separator){ -item.addClass("menu-sep"); -} -if(!item.hasClass("menu-sep")){ -item[0].itemName=_3fb.name||""; -item[0].itemHref=_3fb.href||""; -var text=item.addClass("menu-item").html(); -item.empty().append($("
                                        ").html(text)); -if(_3fb.iconCls){ -$("
                                        ").addClass(_3fb.iconCls).appendTo(item); -} -if(_3fb.disabled){ -_3fc(_3f4,item[0],true); -} -if(item[0].submenu){ -$("
                                        ").appendTo(item); -} -_3fd(_3f4,item); -} -}); -$("
                                        ").prependTo(menu); -} -_3fe(_3f4,menu); -if(!menu.hasClass("menu-inline")){ -menu.hide(); -} -_3ff(_3f4,menu); -}; -}; -function _3fe(_400,menu){ -var opts=$.data(_400,"menu").options; -var _401=menu.attr("style")||""; -menu.css({display:"block",left:-10000,height:"auto",overflow:"hidden"}); -menu.find(".menu-item").each(function(){ -$(this)._outerHeight(opts.itemHeight); -$(this).find(".menu-text").css({height:(opts.itemHeight-2)+"px",lineHeight:(opts.itemHeight-2)+"px"}); -}); -menu.removeClass("menu-noline").addClass(opts.noline?"menu-noline":""); -var _402=menu[0].originalWidth||"auto"; -if(isNaN(parseInt(_402))){ -_402=0; -menu.find("div.menu-text").each(function(){ -if(_402<$(this)._outerWidth()){ -_402=$(this)._outerWidth(); -} -}); -_402+=40; -} -var _403=menu.outerHeight(); -var _404=menu[0].originalHeight||"auto"; -if(isNaN(parseInt(_404))){ -_404=_403; -if(menu.hasClass("menu-top")&&opts.alignTo){ -var at=$(opts.alignTo); -var h1=at.offset().top-$(document).scrollTop(); -var h2=$(window)._outerHeight()+$(document).scrollTop()-at.offset().top-at._outerHeight(); -_404=Math.min(_404,Math.max(h1,h2)); -}else{ -if(_404>$(window)._outerHeight()){ -_404=$(window).height(); -} -} -} -menu.attr("style",_401); -menu._size({fit:(menu[0]==_400?opts.fit:false),width:_402,minWidth:opts.minWidth,height:_404}); -menu.css("overflow",menu.outerHeight()<_403?"auto":"hidden"); -menu.children("div.menu-line")._outerHeight(_403-2); -}; -function _3ff(_405,menu){ -if(menu.hasClass("menu-inline")){ -return; -} -var _406=$.data(_405,"menu"); -menu.unbind(".menu").bind("mouseenter.menu",function(){ -if(_406.timer){ -clearTimeout(_406.timer); -_406.timer=null; -} -}).bind("mouseleave.menu",function(){ -if(_406.options.hideOnUnhover){ -_406.timer=setTimeout(function(){ -_407(_405,$(_405).hasClass("menu-inline")); -},_406.options.duration); -} -}); -}; -function _3fd(_408,item){ -if(!item.hasClass("menu-item")){ -return; -} -item.unbind(".menu"); -item.bind("click.menu",function(){ -if($(this).hasClass("menu-item-disabled")){ -return; -} -if(!this.submenu){ -_407(_408,$(_408).hasClass("menu-inline")); -var href=this.itemHref; -if(href){ -location.href=href; -} -} -$(this).trigger("mouseenter"); -var item=$(_408).menu("getItem",this); -$.data(_408,"menu").options.onClick.call(_408,item); -}).bind("mouseenter.menu",function(e){ -item.siblings().each(function(){ -if(this.submenu){ -_3f3(this.submenu); -} -$(this).removeClass("menu-active"); -}); -item.addClass("menu-active"); -if($(this).hasClass("menu-item-disabled")){ -item.addClass("menu-active-disabled"); -return; -} -var _409=item[0].submenu; -if(_409){ -$(_408).menu("show",{menu:_409,parent:item}); -} -}).bind("mouseleave.menu",function(e){ -item.removeClass("menu-active menu-active-disabled"); -var _40a=item[0].submenu; -if(_40a){ -if(e.pageX>=parseInt(_40a.css("left"))){ -item.addClass("menu-active"); -}else{ -_3f3(_40a); -} -}else{ -item.removeClass("menu-active"); -} -}); -}; -function _407(_40b,_40c){ -var _40d=$.data(_40b,"menu"); -if(_40d){ -if($(_40b).is(":visible")){ -_3f3($(_40b)); -if(_40c){ -$(_40b).show(); -}else{ -_40d.options.onHide.call(_40b); -} -} -} -return false; -}; -function _40e(_40f,_410){ -var left,top; -_410=_410||{}; -var menu=$(_410.menu||_40f); -$(_40f).menu("resize",menu[0]); -if(menu.hasClass("menu-top")){ -var opts=$.data(_40f,"menu").options; -$.extend(opts,_410); -left=opts.left; -top=opts.top; -if(opts.alignTo){ -var at=$(opts.alignTo); -left=at.offset().left; -top=at.offset().top+at._outerHeight(); -if(opts.align=="right"){ -left+=at.outerWidth()-menu.outerWidth(); -} -} -if(left+menu.outerWidth()>$(window)._outerWidth()+$(document)._scrollLeft()){ -left=$(window)._outerWidth()+$(document).scrollLeft()-menu.outerWidth()-5; -} -if(left<0){ -left=0; -} -top=_411(top,opts.alignTo); -}else{ -var _412=_410.parent; -left=_412.offset().left+_412.outerWidth()-2; -if(left+menu.outerWidth()+5>$(window)._outerWidth()+$(document).scrollLeft()){ -left=_412.offset().left-menu.outerWidth()+2; -} -top=_411(_412.offset().top-3); -} -function _411(top,_413){ -if(top+menu.outerHeight()>$(window)._outerHeight()+$(document).scrollTop()){ -if(_413){ -top=$(_413).offset().top-menu._outerHeight(); -}else{ -top=$(window)._outerHeight()+$(document).scrollTop()-menu.outerHeight(); -} -} -if(top<0){ -top=0; -} -return top; -}; -menu.css({left:left,top:top}); -menu.show(0,function(){ -if(!menu[0].shadow){ -menu[0].shadow=$("
                                        ").insertAfter(menu); -} -menu[0].shadow.css({display:(menu.hasClass("menu-inline")?"none":"block"),zIndex:$.fn.menu.defaults.zIndex++,left:menu.css("left"),top:menu.css("top"),width:menu.outerWidth(),height:menu.outerHeight()}); -menu.css("z-index",$.fn.menu.defaults.zIndex++); -if(menu.hasClass("menu-top")){ -$.data(menu[0],"menu").options.onShow.call(menu[0]); -} -}); -}; -function _3f3(menu){ -if(menu&&menu.length){ -_414(menu); -menu.find("div.menu-item").each(function(){ -if(this.submenu){ -_3f3(this.submenu); -} -$(this).removeClass("menu-active"); -}); -} -function _414(m){ -m.stop(true,true); -if(m[0].shadow){ -m[0].shadow.hide(); -} -m.hide(); -}; -}; -function _415(_416,text){ -var _417=null; -var tmp=$("
                                        "); -function find(menu){ -menu.children("div.menu-item").each(function(){ -var item=$(_416).menu("getItem",this); -var s=tmp.empty().html(item.text).text(); -if(text==$.trim(s)){ -_417=item; -}else{ -if(this.submenu&&!_417){ -find(this.submenu); -} -} -}); -}; -find($(_416)); -tmp.remove(); -return _417; -}; -function _3fc(_418,_419,_41a){ -var t=$(_419); -if(!t.hasClass("menu-item")){ -return; -} -if(_41a){ -t.addClass("menu-item-disabled"); -if(_419.onclick){ -_419.onclick1=_419.onclick; -_419.onclick=null; -} -}else{ -t.removeClass("menu-item-disabled"); -if(_419.onclick1){ -_419.onclick=_419.onclick1; -_419.onclick1=null; -} -} -}; -function _41b(_41c,_41d){ -var opts=$.data(_41c,"menu").options; -var menu=$(_41c); -if(_41d.parent){ -if(!_41d.parent.submenu){ -var _41e=$("
                                        ").appendTo("body"); -_41e.hide(); -_41d.parent.submenu=_41e; -$("
                                        ").appendTo(_41d.parent); -} -menu=_41d.parent.submenu; -} -if(_41d.separator){ -var item=$("
                                        ").appendTo(menu); -}else{ -var item=$("
                                        ").appendTo(menu); -$("
                                        ").html(_41d.text).appendTo(item); -} -if(_41d.iconCls){ -$("
                                        ").addClass(_41d.iconCls).appendTo(item); -} -if(_41d.id){ -item.attr("id",_41d.id); -} -if(_41d.name){ -item[0].itemName=_41d.name; -} -if(_41d.href){ -item[0].itemHref=_41d.href; -} -if(_41d.onclick){ -if(typeof _41d.onclick=="string"){ -item.attr("onclick",_41d.onclick); -}else{ -item[0].onclick=eval(_41d.onclick); -} -} -if(_41d.handler){ -item[0].onclick=eval(_41d.handler); -} -if(_41d.disabled){ -_3fc(_41c,item[0],true); -} -_3fd(_41c,item); -_3ff(_41c,menu); -_3fe(_41c,menu); -}; -function _41f(_420,_421){ -function _422(el){ -if(el.submenu){ -el.submenu.children("div.menu-item").each(function(){ -_422(this); -}); -var _423=el.submenu[0].shadow; -if(_423){ -_423.remove(); -} -el.submenu.remove(); -} -$(el).remove(); -}; -var menu=$(_421).parent(); -_422(_421); -_3fe(_420,menu); -}; -function _424(_425,_426,_427){ -var menu=$(_426).parent(); -if(_427){ -$(_426).show(); -}else{ -$(_426).hide(); -} -_3fe(_425,menu); -}; -function _428(_429){ -$(_429).children("div.menu-item").each(function(){ -_41f(_429,this); -}); -if(_429.shadow){ -_429.shadow.remove(); -} -$(_429).remove(); -}; -$.fn.menu=function(_42a,_42b){ -if(typeof _42a=="string"){ -return $.fn.menu.methods[_42a](this,_42b); -} -_42a=_42a||{}; -return this.each(function(){ -var _42c=$.data(this,"menu"); -if(_42c){ -$.extend(_42c.options,_42a); -}else{ -_42c=$.data(this,"menu",{options:$.extend({},$.fn.menu.defaults,$.fn.menu.parseOptions(this),_42a)}); -init(this); -} -$(this).css({left:_42c.options.left,top:_42c.options.top}); -}); -}; -$.fn.menu.methods={options:function(jq){ -return $.data(jq[0],"menu").options; -},show:function(jq,pos){ -return jq.each(function(){ -_40e(this,pos); -}); -},hide:function(jq){ -return jq.each(function(){ -_407(this); -}); -},destroy:function(jq){ -return jq.each(function(){ -_428(this); -}); -},setText:function(jq,_42d){ -return jq.each(function(){ -$(_42d.target).children("div.menu-text").html(_42d.text); -}); -},setIcon:function(jq,_42e){ -return jq.each(function(){ -$(_42e.target).children("div.menu-icon").remove(); -if(_42e.iconCls){ -$("
                                        ").addClass(_42e.iconCls).appendTo(_42e.target); -} -}); -},getItem:function(jq,_42f){ -var t=$(_42f); -var item={target:_42f,id:t.attr("id"),text:$.trim(t.children("div.menu-text").html()),disabled:t.hasClass("menu-item-disabled"),name:_42f.itemName,href:_42f.itemHref,onclick:_42f.onclick}; -var icon=t.children("div.menu-icon"); -if(icon.length){ -var cc=[]; -var aa=icon.attr("class").split(" "); -for(var i=0;i").addClass(opts.cls.arrow).appendTo(_439); -$("").addClass("m-btn-line").appendTo(_439); -} -$(_438).menubutton("resize"); -if(opts.menu){ -$(opts.menu).menu({duration:opts.duration}); -var _43a=$(opts.menu).menu("options"); -var _43b=_43a.onShow; -var _43c=_43a.onHide; -$.extend(_43a,{onShow:function(){ -var _43d=$(this).menu("options"); -var btn=$(_43d.alignTo); -var opts=btn.menubutton("options"); -btn.addClass((opts.plain==true)?opts.cls.btn2:opts.cls.btn1); -_43b.call(this); -},onHide:function(){ -var _43e=$(this).menu("options"); -var btn=$(_43e.alignTo); -var opts=btn.menubutton("options"); -btn.removeClass((opts.plain==true)?opts.cls.btn2:opts.cls.btn1); -_43c.call(this); -}}); -} -}; -function _43f(_440){ -var opts=$.data(_440,"menubutton").options; -var btn=$(_440); -var t=btn.find("."+opts.cls.trigger); -if(!t.length){ -t=btn; -} -t.unbind(".menubutton"); -var _441=null; -t.bind("click.menubutton",function(){ -if(!_442()){ -_443(_440); -return false; -} -}).bind("mouseenter.menubutton",function(){ -if(!_442()){ -_441=setTimeout(function(){ -_443(_440); -},opts.duration); -return false; -} -}).bind("mouseleave.menubutton",function(){ -if(_441){ -clearTimeout(_441); -} -$(opts.menu).triggerHandler("mouseleave"); -}); -function _442(){ -return $(_440).linkbutton("options").disabled; -}; -}; -function _443(_444){ -var opts=$(_444).menubutton("options"); -if(opts.disabled||!opts.menu){ -return; -} -$("body>div.menu-top").menu("hide"); -var btn=$(_444); -var mm=$(opts.menu); -if(mm.length){ -mm.menu("options").alignTo=btn; -mm.menu("show",{alignTo:btn,align:opts.menuAlign}); -} -btn.blur(); -}; -$.fn.menubutton=function(_445,_446){ -if(typeof _445=="string"){ -var _447=$.fn.menubutton.methods[_445]; -if(_447){ -return _447(this,_446); -}else{ -return this.linkbutton(_445,_446); -} -} -_445=_445||{}; -return this.each(function(){ -var _448=$.data(this,"menubutton"); -if(_448){ -$.extend(_448.options,_445); -}else{ -$.data(this,"menubutton",{options:$.extend({},$.fn.menubutton.defaults,$.fn.menubutton.parseOptions(this),_445)}); -$(this).removeAttr("disabled"); -} -init(this); -_43f(this); -}); -}; -$.fn.menubutton.methods={options:function(jq){ -var _449=jq.linkbutton("options"); -return $.extend($.data(jq[0],"menubutton").options,{toggle:_449.toggle,selected:_449.selected,disabled:_449.disabled}); -},destroy:function(jq){ -return jq.each(function(){ -var opts=$(this).menubutton("options"); -if(opts.menu){ -$(opts.menu).menu("destroy"); -} -$(this).remove(); -}); -}}; -$.fn.menubutton.parseOptions=function(_44a){ -var t=$(_44a); -return $.extend({},$.fn.linkbutton.parseOptions(_44a),$.parser.parseOptions(_44a,["menu",{plain:"boolean",hasDownArrow:"boolean",duration:"number"}])); -}; -$.fn.menubutton.defaults=$.extend({},$.fn.linkbutton.defaults,{plain:true,hasDownArrow:true,menu:null,menuAlign:"left",duration:100,cls:{btn1:"m-btn-active",btn2:"m-btn-plain-active",arrow:"m-btn-downarrow",trigger:"m-btn"}}); -})(jQuery); -(function($){ -function init(_44b){ -var opts=$.data(_44b,"splitbutton").options; -$(_44b).menubutton(opts); -$(_44b).addClass("s-btn"); -}; -$.fn.splitbutton=function(_44c,_44d){ -if(typeof _44c=="string"){ -var _44e=$.fn.splitbutton.methods[_44c]; -if(_44e){ -return _44e(this,_44d); -}else{ -return this.menubutton(_44c,_44d); -} -} -_44c=_44c||{}; -return this.each(function(){ -var _44f=$.data(this,"splitbutton"); -if(_44f){ -$.extend(_44f.options,_44c); -}else{ -$.data(this,"splitbutton",{options:$.extend({},$.fn.splitbutton.defaults,$.fn.splitbutton.parseOptions(this),_44c)}); -$(this).removeAttr("disabled"); -} -init(this); -}); -}; -$.fn.splitbutton.methods={options:function(jq){ -var _450=jq.menubutton("options"); -var _451=$.data(jq[0],"splitbutton").options; -$.extend(_451,{disabled:_450.disabled,toggle:_450.toggle,selected:_450.selected}); -return _451; -}}; -$.fn.splitbutton.parseOptions=function(_452){ -var t=$(_452); -return $.extend({},$.fn.linkbutton.parseOptions(_452),$.parser.parseOptions(_452,["menu",{plain:"boolean",duration:"number"}])); -}; -$.fn.splitbutton.defaults=$.extend({},$.fn.linkbutton.defaults,{plain:true,menu:null,duration:100,cls:{btn1:"m-btn-active s-btn-active",btn2:"m-btn-plain-active s-btn-plain-active",arrow:"m-btn-downarrow",trigger:"m-btn-line"}}); -})(jQuery); -(function($){ -function init(_453){ -var _454=$(""+""+""+""+""+""+""+"").insertAfter(_453); -var t=$(_453); -t.addClass("switchbutton-f").hide(); -var name=t.attr("name"); -if(name){ -t.removeAttr("name").attr("switchbuttonName",name); -_454.find(".switchbutton-value").attr("name",name); -} -_454.bind("_resize",function(e,_455){ -if($(this).hasClass("easyui-fluid")||_455){ -_456(_453); -} -return false; -}); -return _454; -}; -function _456(_457,_458){ -var _459=$.data(_457,"switchbutton"); -var opts=_459.options; -var _45a=_459.switchbutton; -if(_458){ -$.extend(opts,_458); -} -var _45b=_45a.is(":visible"); -if(!_45b){ -_45a.appendTo("body"); -} -_45a._size(opts); -var w=_45a.width(); -var h=_45a.height(); -var w=_45a.outerWidth(); -var h=_45a.outerHeight(); -var _45c=parseInt(opts.handleWidth)||_45a.height(); -var _45d=w*2-_45c; -_45a.find(".switchbutton-inner").css({width:_45d+"px",height:h+"px",lineHeight:h+"px"}); -_45a.find(".switchbutton-handle")._outerWidth(_45c)._outerHeight(h).css({marginLeft:-_45c/2+"px"}); -_45a.find(".switchbutton-on").css({width:(w-_45c/2)+"px",textIndent:(opts.reversed?"":"-")+_45c/2+"px"}); -_45a.find(".switchbutton-off").css({width:(w-_45c/2)+"px",textIndent:(opts.reversed?"-":"")+_45c/2+"px"}); -opts.marginWidth=w-_45c; -_45e(_457,opts.checked,false); -if(!_45b){ -_45a.insertAfter(_457); -} -}; -function _45f(_460){ -var _461=$.data(_460,"switchbutton"); -var opts=_461.options; -var _462=_461.switchbutton; -var _463=_462.find(".switchbutton-inner"); -var on=_463.find(".switchbutton-on").html(opts.onText); -var off=_463.find(".switchbutton-off").html(opts.offText); -var _464=_463.find(".switchbutton-handle").html(opts.handleText); -if(opts.reversed){ -off.prependTo(_463); -on.insertAfter(_464); -}else{ -on.prependTo(_463); -off.insertAfter(_464); -} -_462.find(".switchbutton-value")._propAttr("checked",opts.checked); -_462.removeClass("switchbutton-disabled").addClass(opts.disabled?"switchbutton-disabled":""); -_462.removeClass("switchbutton-reversed").addClass(opts.reversed?"switchbutton-reversed":""); -_45e(_460,opts.checked); -_465(_460,opts.readonly); -$(_460).switchbutton("setValue",opts.value); -}; -function _45e(_466,_467,_468){ -var _469=$.data(_466,"switchbutton"); -var opts=_469.options; -opts.checked=_467; -var _46a=_469.switchbutton.find(".switchbutton-inner"); -var _46b=_46a.find(".switchbutton-on"); -var _46c=opts.reversed?(opts.checked?opts.marginWidth:0):(opts.checked?0:opts.marginWidth); -var dir=_46b.css("float").toLowerCase(); -var css={}; -css["margin-"+dir]=-_46c+"px"; -_468?_46a.animate(css,200):_46a.css(css); -var _46d=_46a.find(".switchbutton-value"); -var ck=_46d.is(":checked"); -$(_466).add(_46d)._propAttr("checked",opts.checked); -if(ck!=opts.checked){ -opts.onChange.call(_466,opts.checked); -} -}; -function _46e(_46f,_470){ -var _471=$.data(_46f,"switchbutton"); -var opts=_471.options; -var _472=_471.switchbutton; -var _473=_472.find(".switchbutton-value"); -if(_470){ -opts.disabled=true; -$(_46f).add(_473).attr("disabled","disabled"); -_472.addClass("switchbutton-disabled"); -}else{ -opts.disabled=false; -$(_46f).add(_473).removeAttr("disabled"); -_472.removeClass("switchbutton-disabled"); -} -}; -function _465(_474,mode){ -var _475=$.data(_474,"switchbutton"); -var opts=_475.options; -opts.readonly=mode==undefined?true:mode; -_475.switchbutton.removeClass("switchbutton-readonly").addClass(opts.readonly?"switchbutton-readonly":""); -}; -function _476(_477){ -var _478=$.data(_477,"switchbutton"); -var opts=_478.options; -_478.switchbutton.unbind(".switchbutton").bind("click.switchbutton",function(){ -if(!opts.disabled&&!opts.readonly){ -_45e(_477,opts.checked?false:true,true); -} -}); -}; -$.fn.switchbutton=function(_479,_47a){ -if(typeof _479=="string"){ -return $.fn.switchbutton.methods[_479](this,_47a); -} -_479=_479||{}; -return this.each(function(){ -var _47b=$.data(this,"switchbutton"); -if(_47b){ -$.extend(_47b.options,_479); -}else{ -_47b=$.data(this,"switchbutton",{options:$.extend({},$.fn.switchbutton.defaults,$.fn.switchbutton.parseOptions(this),_479),switchbutton:init(this)}); -} -_47b.options.originalChecked=_47b.options.checked; -_45f(this); -_456(this); -_476(this); -}); -}; -$.fn.switchbutton.methods={options:function(jq){ -var _47c=jq.data("switchbutton"); -return $.extend(_47c.options,{value:_47c.switchbutton.find(".switchbutton-value").val()}); -},resize:function(jq,_47d){ -return jq.each(function(){ -_456(this,_47d); -}); -},enable:function(jq){ -return jq.each(function(){ -_46e(this,false); -}); -},disable:function(jq){ -return jq.each(function(){ -_46e(this,true); -}); -},readonly:function(jq,mode){ -return jq.each(function(){ -_465(this,mode); -}); -},check:function(jq){ -return jq.each(function(){ -_45e(this,true); -}); -},uncheck:function(jq){ -return jq.each(function(){ -_45e(this,false); -}); -},clear:function(jq){ -return jq.each(function(){ -_45e(this,false); -}); -},reset:function(jq){ -return jq.each(function(){ -var opts=$(this).switchbutton("options"); -_45e(this,opts.originalChecked); -}); -},setValue:function(jq,_47e){ -return jq.each(function(){ -$(this).val(_47e); -$.data(this,"switchbutton").switchbutton.find(".switchbutton-value").val(_47e); -}); -}}; -$.fn.switchbutton.parseOptions=function(_47f){ -var t=$(_47f); -return $.extend({},$.parser.parseOptions(_47f,["onText","offText","handleText",{handleWidth:"number",reversed:"boolean"}]),{value:(t.val()||undefined),checked:(t.attr("checked")?true:undefined),disabled:(t.attr("disabled")?true:undefined),readonly:(t.attr("readonly")?true:undefined)}); -}; -$.fn.switchbutton.defaults={handleWidth:"auto",width:60,height:26,checked:false,disabled:false,readonly:false,reversed:false,onText:"ON",offText:"OFF",handleText:"",value:"on",onChange:function(_480){ -}}; -})(jQuery); -(function($){ -function init(_481){ -$(_481).addClass("validatebox-text"); -}; -function _482(_483){ -var _484=$.data(_483,"validatebox"); -_484.validating=false; -if(_484.timer){ -clearTimeout(_484.timer); -} -$(_483).tooltip("destroy"); -$(_483).unbind(); -$(_483).remove(); -}; -function _485(_486){ -var opts=$.data(_486,"validatebox").options; -var box=$(_486); -box.unbind(".validatebox"); -if(opts.novalidate||box.is(":disabled")){ -return; -} -for(var _487 in opts.events){ -$(_486).bind(_487+".validatebox",{target:_486},opts.events[_487]); -} -}; -function _488(e){ -var _489=e.data.target; -var _48a=$.data(_489,"validatebox"); -var box=$(_489); -if($(_489).attr("readonly")){ -return; -} -_48a.validating=true; -_48a.value=undefined; -(function(){ -if(_48a.validating){ -if(_48a.value!=box.val()){ -_48a.value=box.val(); -if(_48a.timer){ -clearTimeout(_48a.timer); -} -_48a.timer=setTimeout(function(){ -$(_489).validatebox("validate"); -},_48a.options.delay); -}else{ -_48b(_489); -} -setTimeout(arguments.callee,200); -} -})(); -}; -function _48c(e){ -var _48d=e.data.target; -var _48e=$.data(_48d,"validatebox"); -if(_48e.timer){ -clearTimeout(_48e.timer); -_48e.timer=undefined; -} -_48e.validating=false; -_48f(_48d); -}; -function _490(e){ -var _491=e.data.target; -if($(_491).hasClass("validatebox-invalid")){ -_492(_491); -} -}; -function _493(e){ -var _494=e.data.target; -var _495=$.data(_494,"validatebox"); -if(!_495.validating){ -_48f(_494); -} -}; -function _492(_496){ -var _497=$.data(_496,"validatebox"); -var opts=_497.options; -$(_496).tooltip($.extend({},opts.tipOptions,{content:_497.message,position:opts.tipPosition,deltaX:opts.deltaX})).tooltip("show"); -_497.tip=true; -}; -function _48b(_498){ -var _499=$.data(_498,"validatebox"); -if(_499&&_499.tip){ -$(_498).tooltip("reposition"); -} -}; -function _48f(_49a){ -var _49b=$.data(_49a,"validatebox"); -_49b.tip=false; -$(_49a).tooltip("hide"); -}; -function _49c(_49d){ -var _49e=$.data(_49d,"validatebox"); -var opts=_49e.options; -var box=$(_49d); -opts.onBeforeValidate.call(_49d); -var _49f=_4a0(); -opts.onValidate.call(_49d,_49f); -return _49f; -function _4a1(msg){ -_49e.message=msg; -}; -function _4a2(_4a3,_4a4){ -var _4a5=box.val(); -var _4a6=/([a-zA-Z_]+)(.*)/.exec(_4a3); -var rule=opts.rules[_4a6[1]]; -if(rule&&_4a5){ -var _4a7=_4a4||opts.validParams||eval(_4a6[2]); -if(!rule["validator"].call(_49d,_4a5,_4a7)){ -box.addClass("validatebox-invalid"); -var _4a8=rule["message"]; -if(_4a7){ -for(var i=0;i<_4a7.length;i++){ -_4a8=_4a8.replace(new RegExp("\\{"+i+"\\}","g"),_4a7[i]); -} -} -_4a1(opts.invalidMessage||_4a8); -if(_49e.validating){ -_492(_49d); -} -return false; -} -} -return true; -}; -function _4a0(){ -box.removeClass("validatebox-invalid"); -_48f(_49d); -if(opts.novalidate||box.is(":disabled")){ -return true; -} -if(opts.required){ -if(box.val()==""){ -box.addClass("validatebox-invalid"); -_4a1(opts.missingMessage); -if(_49e.validating){ -_492(_49d); -} -return false; -} -} -if(opts.validType){ -if($.isArray(opts.validType)){ -for(var i=0;i=_4b5[0]&&len<=_4b5[1]; -},message:"Please enter a value between {0} and {1}."},remote:{validator:function(_4b6,_4b7){ -var data={}; -data[_4b7[1]]=_4b6; -var _4b8=$.ajax({url:_4b7[0],dataType:"json",data:data,async:false,cache:false,type:"post"}).responseText; -return _4b8=="true"; -},message:"Please fix this field."}},onBeforeValidate:function(){ -},onValidate:function(_4b9){ -}}; -})(jQuery); -(function($){ -function init(_4ba){ -$(_4ba).addClass("textbox-f").hide(); -var span=$(""+""+""+"").insertAfter(_4ba); -var name=$(_4ba).attr("name"); -if(name){ -span.find("input.textbox-value").attr("name",name); -$(_4ba).removeAttr("name").attr("textboxName",name); -} -return span; -}; -function _4bb(_4bc){ -var _4bd=$.data(_4bc,"textbox"); -var opts=_4bd.options; -var tb=_4bd.textbox; -tb.find(".textbox-text").remove(); -if(opts.multiline){ -$("").prependTo(tb); -}else{ -$("").prependTo(tb); -} -tb.find(".textbox-addon").remove(); -var bb=opts.icons?$.extend(true,[],opts.icons):[]; -if(opts.iconCls){ -bb.push({iconCls:opts.iconCls,disabled:true}); -} -if(bb.length){ -var bc=$("").prependTo(tb); -bc.addClass("textbox-addon-"+opts.iconAlign); -for(var i=0;i"); -} -} -tb.find(".textbox-button").remove(); -if(opts.buttonText||opts.buttonIcon){ -var btn=$("").prependTo(tb); -btn.addClass("textbox-button-"+opts.buttonAlign).linkbutton({text:opts.buttonText,iconCls:opts.buttonIcon}); -} -_4be(_4bc,opts.disabled); -_4bf(_4bc,opts.readonly); -}; -function _4c0(_4c1){ -var tb=$.data(_4c1,"textbox").textbox; -tb.find(".textbox-text").validatebox("destroy"); -tb.remove(); -$(_4c1).remove(); -}; -function _4c2(_4c3,_4c4){ -var _4c5=$.data(_4c3,"textbox"); -var opts=_4c5.options; -var tb=_4c5.textbox; -var _4c6=tb.parent(); -if(_4c4){ -opts.width=_4c4; -} -if(isNaN(parseInt(opts.width))){ -var c=$(_4c3).clone(); -c.css("visibility","hidden"); -c.insertAfter(_4c3); -opts.width=c.outerWidth(); -c.remove(); -} -var _4c7=tb.is(":visible"); -if(!_4c7){ -tb.appendTo("body"); -} -var _4c8=tb.find(".textbox-text"); -var btn=tb.find(".textbox-button"); -var _4c9=tb.find(".textbox-addon"); -var _4ca=_4c9.find(".textbox-icon"); -tb._size(opts,_4c6); -btn.linkbutton("resize",{height:tb.height()}); -btn.css({left:(opts.buttonAlign=="left"?0:""),right:(opts.buttonAlign=="right"?0:"")}); -_4c9.css({left:(opts.iconAlign=="left"?(opts.buttonAlign=="left"?btn._outerWidth():0):""),right:(opts.iconAlign=="right"?(opts.buttonAlign=="right"?btn._outerWidth():0):"")}); -_4ca.css({width:opts.iconWidth+"px",height:tb.height()+"px"}); -_4c8.css({paddingLeft:(_4c3.style.paddingLeft||""),paddingRight:(_4c3.style.paddingRight||""),marginLeft:_4cb("left"),marginRight:_4cb("right")}); -if(opts.multiline){ -_4c8.css({paddingTop:(_4c3.style.paddingTop||""),paddingBottom:(_4c3.style.paddingBottom||"")}); -_4c8._outerHeight(tb.height()); -}else{ -var _4cc=Math.floor((tb.height()-_4c8.height())/2); -_4c8.css({paddingTop:_4cc+"px",paddingBottom:_4cc+"px"}); -} -_4c8._outerWidth(tb.width()-_4ca.length*opts.iconWidth-btn._outerWidth()); -if(!_4c7){ -tb.insertAfter(_4c3); -} -opts.onResize.call(_4c3,opts.width,opts.height); -function _4cb(_4cd){ -return (opts.iconAlign==_4cd?_4c9._outerWidth():0)+(opts.buttonAlign==_4cd?btn._outerWidth():0); -}; -}; -function _4ce(_4cf){ -var opts=$(_4cf).textbox("options"); -var _4d0=$(_4cf).textbox("textbox"); -_4d0.validatebox($.extend({},opts,{deltaX:$(_4cf).textbox("getTipX"),onBeforeValidate:function(){ -var box=$(this); -if(!box.is(":focus")){ -opts.oldInputValue=box.val(); -box.val(opts.value); -} -},onValidate:function(_4d1){ -var box=$(this); -if(opts.oldInputValue!=undefined){ -box.val(opts.oldInputValue); -opts.oldInputValue=undefined; -} -var tb=box.parent(); -if(_4d1){ -tb.removeClass("textbox-invalid"); -}else{ -tb.addClass("textbox-invalid"); -} -}})); -}; -function _4d2(_4d3){ -var _4d4=$.data(_4d3,"textbox"); -var opts=_4d4.options; -var tb=_4d4.textbox; -var _4d5=tb.find(".textbox-text"); -_4d5.attr("placeholder",opts.prompt); -_4d5.unbind(".textbox"); -if(!opts.disabled&&!opts.readonly){ -_4d5.bind("blur.textbox",function(e){ -if(!tb.hasClass("textbox-focused")){ -return; -} -opts.value=$(this).val(); -if(opts.value==""){ -$(this).val(opts.prompt).addClass("textbox-prompt"); -}else{ -$(this).removeClass("textbox-prompt"); -} -tb.removeClass("textbox-focused"); -}).bind("focus.textbox",function(e){ -if(tb.hasClass("textbox-focused")){ -return; -} -if($(this).val()!=opts.value){ -$(this).val(opts.value); -} -$(this).removeClass("textbox-prompt"); -tb.addClass("textbox-focused"); -}); -for(var _4d6 in opts.inputEvents){ -_4d5.bind(_4d6+".textbox",{target:_4d3},opts.inputEvents[_4d6]); -} -} -var _4d7=tb.find(".textbox-addon"); -_4d7.unbind().bind("click",{target:_4d3},function(e){ -var icon=$(e.target).closest("a.textbox-icon:not(.textbox-icon-disabled)"); -if(icon.length){ -var _4d8=parseInt(icon.attr("icon-index")); -var conf=opts.icons[_4d8]; -if(conf&&conf.handler){ -conf.handler.call(icon[0],e); -opts.onClickIcon.call(_4d3,_4d8); -} -} -}); -_4d7.find(".textbox-icon").each(function(_4d9){ -var conf=opts.icons[_4d9]; -var icon=$(this); -if(!conf||conf.disabled||opts.disabled||opts.readonly){ -icon.addClass("textbox-icon-disabled"); -}else{ -icon.removeClass("textbox-icon-disabled"); -} -}); -var btn=tb.find(".textbox-button"); -btn.unbind(".textbox").bind("click.textbox",function(){ -if(!btn.linkbutton("options").disabled){ -opts.onClickButton.call(_4d3); -} -}); -btn.linkbutton((opts.disabled||opts.readonly)?"disable":"enable"); -tb.unbind(".textbox").bind("_resize.textbox",function(e,_4da){ -if($(this).hasClass("easyui-fluid")||_4da){ -_4c2(_4d3); -} -return false; -}); -}; -function _4be(_4db,_4dc){ -var _4dd=$.data(_4db,"textbox"); -var opts=_4dd.options; -var tb=_4dd.textbox; -if(_4dc){ -opts.disabled=true; -$(_4db).attr("disabled","disabled"); -tb.addClass("textbox-disabled"); -tb.find(".textbox-text,.textbox-value").attr("disabled","disabled"); -}else{ -opts.disabled=false; -tb.removeClass("textbox-disabled"); -$(_4db).removeAttr("disabled"); -tb.find(".textbox-text,.textbox-value").removeAttr("disabled"); -} -}; -function _4bf(_4de,mode){ -var _4df=$.data(_4de,"textbox"); -var opts=_4df.options; -opts.readonly=mode==undefined?true:mode; -_4df.textbox.removeClass("textbox-readonly").addClass(opts.readonly?"textbox-readonly":""); -var _4e0=_4df.textbox.find(".textbox-text"); -_4e0.removeAttr("readonly"); -if(opts.readonly||!opts.editable){ -_4e0.attr("readonly","readonly"); -} -}; -$.fn.textbox=function(_4e1,_4e2){ -if(typeof _4e1=="string"){ -var _4e3=$.fn.textbox.methods[_4e1]; -if(_4e3){ -return _4e3(this,_4e2); -}else{ -return this.each(function(){ -var _4e4=$(this).textbox("textbox"); -_4e4.validatebox(_4e1,_4e2); -}); -} -} -_4e1=_4e1||{}; -return this.each(function(){ -var _4e5=$.data(this,"textbox"); -if(_4e5){ -$.extend(_4e5.options,_4e1); -if(_4e1.value!=undefined){ -_4e5.options.originalValue=_4e1.value; -} -}else{ -_4e5=$.data(this,"textbox",{options:$.extend({},$.fn.textbox.defaults,$.fn.textbox.parseOptions(this),_4e1),textbox:init(this)}); -_4e5.options.originalValue=_4e5.options.value; -} -_4bb(this); -_4d2(this); -_4c2(this); -_4ce(this); -$(this).textbox("initValue",_4e5.options.value); -}); -}; -$.fn.textbox.methods={options:function(jq){ -return $.data(jq[0],"textbox").options; -},cloneFrom:function(jq,from){ -return jq.each(function(){ -var t=$(this); -if(t.data("textbox")){ -return; -} -if(!$(from).data("textbox")){ -$(from).textbox(); -} -var name=t.attr("name")||""; -t.addClass("textbox-f").hide(); -t.removeAttr("name").attr("textboxName",name); -var span=$(from).next().clone().insertAfter(t); -span.find("input.textbox-value").attr("name",name); -$.data(this,"textbox",{options:$.extend(true,{},$(from).textbox("options")),textbox:span}); -var _4e6=$(from).textbox("button"); -if(_4e6.length){ -t.textbox("button").linkbutton($.extend(true,{},_4e6.linkbutton("options"))); -} -_4d2(this); -_4ce(this); -}); -},textbox:function(jq){ -return $.data(jq[0],"textbox").textbox.find(".textbox-text"); -},button:function(jq){ -return $.data(jq[0],"textbox").textbox.find(".textbox-button"); -},destroy:function(jq){ -return jq.each(function(){ -_4c0(this); -}); -},resize:function(jq,_4e7){ -return jq.each(function(){ -_4c2(this,_4e7); -}); -},disable:function(jq){ -return jq.each(function(){ -_4be(this,true); -_4d2(this); -}); -},enable:function(jq){ -return jq.each(function(){ -_4be(this,false); -_4d2(this); -}); -},readonly:function(jq,mode){ -return jq.each(function(){ -_4bf(this,mode); -_4d2(this); -}); -},isValid:function(jq){ -return jq.textbox("textbox").validatebox("isValid"); -},clear:function(jq){ -return jq.each(function(){ -$(this).textbox("setValue",""); -}); -},setText:function(jq,_4e8){ -return jq.each(function(){ -var opts=$(this).textbox("options"); -var _4e9=$(this).textbox("textbox"); -_4e8=_4e8==undefined?"":String(_4e8); -if($(this).textbox("getText")!=_4e8){ -_4e9.val(_4e8); -} -opts.value=_4e8; -if(!_4e9.is(":focus")){ -if(_4e8){ -_4e9.removeClass("textbox-prompt"); -}else{ -_4e9.val(opts.prompt).addClass("textbox-prompt"); -} -} -$(this).textbox("validate"); -}); -},initValue:function(jq,_4ea){ -return jq.each(function(){ -var _4eb=$.data(this,"textbox"); -_4eb.options.value=""; -$(this).textbox("setText",_4ea); -_4eb.textbox.find(".textbox-value").val(_4ea); -$(this).val(_4ea); -}); -},setValue:function(jq,_4ec){ -return jq.each(function(){ -var opts=$.data(this,"textbox").options; -var _4ed=$(this).textbox("getValue"); -$(this).textbox("initValue",_4ec); -if(_4ed!=_4ec){ -opts.onChange.call(this,_4ec,_4ed); -$(this).closest("form").trigger("_change",[this]); -} -}); -},getText:function(jq){ -var _4ee=jq.textbox("textbox"); -if(_4ee.is(":focus")){ -return _4ee.val(); -}else{ -return jq.textbox("options").value; -} -},getValue:function(jq){ -return jq.data("textbox").textbox.find(".textbox-value").val(); -},reset:function(jq){ -return jq.each(function(){ -var opts=$(this).textbox("options"); -$(this).textbox("setValue",opts.originalValue); -}); -},getIcon:function(jq,_4ef){ -return jq.data("textbox").textbox.find(".textbox-icon:eq("+_4ef+")"); -},getTipX:function(jq){ -var _4f0=jq.data("textbox"); -var opts=_4f0.options; -var tb=_4f0.textbox; -var _4f1=tb.find(".textbox-text"); -var _4f2=tb.find(".textbox-addon")._outerWidth(); -var _4f3=tb.find(".textbox-button")._outerWidth(); -if(opts.tipPosition=="right"){ -return (opts.iconAlign=="right"?_4f2:0)+(opts.buttonAlign=="right"?_4f3:0)+1; -}else{ -if(opts.tipPosition=="left"){ -return (opts.iconAlign=="left"?-_4f2:0)+(opts.buttonAlign=="left"?-_4f3:0)-1; -}else{ -return _4f2/2*(opts.iconAlign=="right"?1:-1); -} -} -}}; -$.fn.textbox.parseOptions=function(_4f4){ -var t=$(_4f4); -return $.extend({},$.fn.validatebox.parseOptions(_4f4),$.parser.parseOptions(_4f4,["prompt","iconCls","iconAlign","buttonText","buttonIcon","buttonAlign",{multiline:"boolean",editable:"boolean",iconWidth:"number"}]),{value:(t.val()||undefined),type:(t.attr("type")?t.attr("type"):undefined),disabled:(t.attr("disabled")?true:undefined),readonly:(t.attr("readonly")?true:undefined)}); -}; -$.fn.textbox.defaults=$.extend({},$.fn.validatebox.defaults,{width:"auto",height:22,prompt:"",value:"",type:"text",multiline:false,editable:true,disabled:false,readonly:false,icons:[],iconCls:null,iconAlign:"right",iconWidth:18,buttonText:"",buttonIcon:null,buttonAlign:"right",inputEvents:{blur:function(e){ -var t=$(e.data.target); -var opts=t.textbox("options"); -t.textbox("setValue",opts.value); -},keydown:function(e){ -if(e.keyCode==13){ -var t=$(e.data.target); -t.textbox("setValue",t.textbox("getText")); -} -}},onChange:function(_4f5,_4f6){ -},onResize:function(_4f7,_4f8){ -},onClickButton:function(){ -},onClickIcon:function(_4f9){ -}}); -})(jQuery); -(function($){ -var _4fa=0; -function _4fb(_4fc){ -var _4fd=$.data(_4fc,"filebox"); -var opts=_4fd.options; -opts.fileboxId="filebox_file_id_"+(++_4fa); -$(_4fc).addClass("filebox-f").textbox(opts); -$(_4fc).textbox("textbox").attr("readonly","readonly"); -_4fd.filebox=$(_4fc).next().addClass("filebox"); -var file=_4fe(_4fc); -var btn=$(_4fc).filebox("button"); -if(btn.length){ -$("").appendTo(btn); -if(btn.linkbutton("options").disabled){ -file.attr("disabled","disabled"); -}else{ -file.removeAttr("disabled"); -} -} -}; -function _4fe(_4ff){ -var _500=$.data(_4ff,"filebox"); -var opts=_500.options; -_500.filebox.find(".textbox-value").remove(); -opts.oldValue=""; -var file=$("").appendTo(_500.filebox); -file.attr("id",opts.fileboxId).attr("name",$(_4ff).attr("textboxName")||""); -file.change(function(){ -$(_4ff).filebox("setText",this.value); -opts.onChange.call(_4ff,this.value,opts.oldValue); -opts.oldValue=this.value; -}); -return file; -}; -$.fn.filebox=function(_501,_502){ -if(typeof _501=="string"){ -var _503=$.fn.filebox.methods[_501]; -if(_503){ -return _503(this,_502); -}else{ -return this.textbox(_501,_502); -} -} -_501=_501||{}; -return this.each(function(){ -var _504=$.data(this,"filebox"); -if(_504){ -$.extend(_504.options,_501); -}else{ -$.data(this,"filebox",{options:$.extend({},$.fn.filebox.defaults,$.fn.filebox.parseOptions(this),_501)}); -} -_4fb(this); -}); -}; -$.fn.filebox.methods={options:function(jq){ -var opts=jq.textbox("options"); -return $.extend($.data(jq[0],"filebox").options,{width:opts.width,value:opts.value,originalValue:opts.originalValue,disabled:opts.disabled,readonly:opts.readonly}); -},clear:function(jq){ -return jq.each(function(){ -$(this).textbox("clear"); -_4fe(this); -}); -},reset:function(jq){ -return jq.each(function(){ -$(this).filebox("clear"); -}); -}}; -$.fn.filebox.parseOptions=function(_505){ -return $.extend({},$.fn.textbox.parseOptions(_505),{}); -}; -$.fn.filebox.defaults=$.extend({},$.fn.textbox.defaults,{buttonIcon:null,buttonText:"Choose File",buttonAlign:"right",inputEvents:{}}); -})(jQuery); -(function($){ -function _506(_507){ -var _508=$.data(_507,"searchbox"); -var opts=_508.options; -var _509=$.extend(true,[],opts.icons); -_509.push({iconCls:"searchbox-button",handler:function(e){ -var t=$(e.data.target); -var opts=t.searchbox("options"); -opts.searcher.call(e.data.target,t.searchbox("getValue"),t.searchbox("getName")); -}}); -_50a(); -var _50b=_50c(); -$(_507).addClass("searchbox-f").textbox($.extend({},opts,{icons:_509,buttonText:(_50b?_50b.text:"")})); -$(_507).attr("searchboxName",$(_507).attr("textboxName")); -_508.searchbox=$(_507).next(); -_508.searchbox.addClass("searchbox"); -_50d(_50b); -function _50a(){ -if(opts.menu){ -_508.menu=$(opts.menu).menu(); -var _50e=_508.menu.menu("options"); -var _50f=_50e.onClick; -_50e.onClick=function(item){ -_50d(item); -_50f.call(this,item); -}; -}else{ -if(_508.menu){ -_508.menu.menu("destroy"); -} -_508.menu=null; -} -}; -function _50c(){ -if(_508.menu){ -var item=_508.menu.children("div.menu-item:first"); -_508.menu.children("div.menu-item").each(function(){ -var _510=$.extend({},$.parser.parseOptions(this),{selected:($(this).attr("selected")?true:undefined)}); -if(_510.selected){ -item=$(this); -return false; -} -}); -return _508.menu.menu("getItem",item[0]); -}else{ -return null; -} -}; -function _50d(item){ -if(!item){ -return; -} -$(_507).textbox("button").menubutton({text:item.text,iconCls:(item.iconCls||null),menu:_508.menu,menuAlign:opts.buttonAlign,plain:false}); -_508.searchbox.find("input.textbox-value").attr("name",item.name||item.text); -$(_507).searchbox("resize"); -}; -}; -$.fn.searchbox=function(_511,_512){ -if(typeof _511=="string"){ -var _513=$.fn.searchbox.methods[_511]; -if(_513){ -return _513(this,_512); -}else{ -return this.textbox(_511,_512); -} -} -_511=_511||{}; -return this.each(function(){ -var _514=$.data(this,"searchbox"); -if(_514){ -$.extend(_514.options,_511); -}else{ -$.data(this,"searchbox",{options:$.extend({},$.fn.searchbox.defaults,$.fn.searchbox.parseOptions(this),_511)}); -} -_506(this); -}); -}; -$.fn.searchbox.methods={options:function(jq){ -var opts=jq.textbox("options"); -return $.extend($.data(jq[0],"searchbox").options,{width:opts.width,value:opts.value,originalValue:opts.originalValue,disabled:opts.disabled,readonly:opts.readonly}); -},menu:function(jq){ -return $.data(jq[0],"searchbox").menu; -},getName:function(jq){ -return $.data(jq[0],"searchbox").searchbox.find("input.textbox-value").attr("name"); -},selectName:function(jq,name){ -return jq.each(function(){ -var menu=$.data(this,"searchbox").menu; -if(menu){ -menu.children("div.menu-item").each(function(){ -var item=menu.menu("getItem",this); -if(item.name==name){ -$(this).triggerHandler("click"); -return false; -} -}); -} -}); -},destroy:function(jq){ -return jq.each(function(){ -var menu=$(this).searchbox("menu"); -if(menu){ -menu.menu("destroy"); -} -$(this).textbox("destroy"); -}); -}}; -$.fn.searchbox.parseOptions=function(_515){ -var t=$(_515); -return $.extend({},$.fn.textbox.parseOptions(_515),$.parser.parseOptions(_515,["menu"]),{searcher:(t.attr("searcher")?eval(t.attr("searcher")):undefined)}); -}; -$.fn.searchbox.defaults=$.extend({},$.fn.textbox.defaults,{inputEvents:$.extend({},$.fn.textbox.defaults.inputEvents,{keydown:function(e){ -if(e.keyCode==13){ -e.preventDefault(); -var t=$(e.data.target); -var opts=t.searchbox("options"); -t.searchbox("setValue",$(this).val()); -opts.searcher.call(e.data.target,t.searchbox("getValue"),t.searchbox("getName")); -return false; -} -}}),buttonAlign:"left",menu:null,searcher:function(_516,name){ -}}); -})(jQuery); -(function($){ -function _517(_518,_519){ -var opts=$.data(_518,"form").options; -$.extend(opts,_519||{}); -var _51a=$.extend({},opts.queryParams); -if(opts.onSubmit.call(_518,_51a)==false){ -return; -} -$(_518).find(".textbox-text:focus").blur(); -var _51b="easyui_frame_"+(new Date().getTime()); -var _51c=$("").appendTo("body"); -_51c.attr("src",window.ActiveXObject?"javascript:false":"about:blank"); -_51c.css({position:"absolute",top:-1000,left:-1000}); -_51c.bind("load",cb); -_51d(_51a); -function _51d(_51e){ -var form=$(_518); -if(opts.url){ -form.attr("action",opts.url); -} -var t=form.attr("target"),a=form.attr("action"); -form.attr("target",_51b); -var _51f=$(); -try{ -for(var n in _51e){ -var _520=$("").val(_51e[n]).appendTo(form); -_51f=_51f.add(_520); -} -_521(); -form[0].submit(); -} -finally{ -form.attr("action",a); -t?form.attr("target",t):form.removeAttr("target"); -_51f.remove(); -} -}; -function _521(){ -var f=$("#"+_51b); -if(!f.length){ -return; -} -try{ -var s=f.contents()[0].readyState; -if(s&&s.toLowerCase()=="uninitialized"){ -setTimeout(_521,100); -} -} -catch(e){ -cb(); -} -}; -var _522=10; -function cb(){ -var f=$("#"+_51b); -if(!f.length){ -return; -} -f.unbind(); -var data=""; -try{ -var body=f.contents().find("body"); -data=body.html(); -if(data==""){ -if(--_522){ -setTimeout(cb,100); -return; -} -} -var ta=body.find(">textarea"); -if(ta.length){ -data=ta.val(); -}else{ -var pre=body.find(">pre"); -if(pre.length){ -data=pre.html(); -} -} -} -catch(e){ -} -opts.success(data); -setTimeout(function(){ -f.unbind(); -f.remove(); -},100); -}; -}; -function load(_523,data){ -var opts=$.data(_523,"form").options; -if(typeof data=="string"){ -var _524={}; -if(opts.onBeforeLoad.call(_523,_524)==false){ -return; -} -$.ajax({url:data,data:_524,dataType:"json",success:function(data){ -_525(data); -},error:function(){ -opts.onLoadError.apply(_523,arguments); -}}); -}else{ -_525(data); -} -function _525(data){ -var form=$(_523); -for(var name in data){ -var val=data[name]; -if(!_526(name,val)){ -if(!_527(name,val)){ -form.find("input[name=\""+name+"\"]").val(val); -form.find("textarea[name=\""+name+"\"]").val(val); -form.find("select[name=\""+name+"\"]").val(val); -} -} -} -opts.onLoadSuccess.call(_523,data); -form.form("validate"); -}; -function _526(name,val){ -var cc=$(_523).find("[switchbuttonName=\""+name+"\"]"); -if(cc.length){ -cc.switchbutton("uncheck"); -cc.each(function(){ -if(_528($(this).switchbutton("options").value,val)){ -$(this).switchbutton("check"); -} -}); -return true; -} -cc=$(_523).find("input[name=\""+name+"\"][type=radio], input[name=\""+name+"\"][type=checkbox]"); -if(cc.length){ -cc._propAttr("checked",false); -cc.each(function(){ -if(_528($(this).val(),val)){ -$(this)._propAttr("checked",true); -} -}); -return true; -} -return false; -}; -function _528(v,val){ -if(v==String(val)||$.inArray(v,$.isArray(val)?val:[val])>=0){ -return true; -}else{ -return false; -} -}; -function _527(name,val){ -var _529=$(_523).find("[textboxName=\""+name+"\"],[sliderName=\""+name+"\"]"); -if(_529.length){ -for(var i=0;i=0;i--){ -var type=opts.fieldTypes[i]; -var _52e=form.find("."+type+"-f"); -if(_52e.length&&_52e[type]){ -_52e[type]("clear"); -} -} -form.form("validate"); -}; -function _52f(_530){ -_530.reset(); -var form=$(_530); -var opts=$.data(_530,"form").options; -for(var i=opts.fieldTypes.length-1;i>=0;i--){ -var type=opts.fieldTypes[i]; -var _531=form.find("."+type+"-f"); -if(_531.length&&_531[type]){ -_531[type]("reset"); -} -} -form.form("validate"); -}; -function _532(_533){ -var _534=$.data(_533,"form").options; -$(_533).unbind(".form"); -if(_534.ajax){ -$(_533).bind("submit.form",function(){ -setTimeout(function(){ -_517(_533,_534); -},0); -return false; -}); -} -$(_533).bind("_change.form",function(e,t){ -_534.onChange.call(this,t); -}).bind("change.form",function(e){ -var t=e.target; -if(!$(t).hasClass("textbox-text")){ -_534.onChange.call(this,t); -} -}); -_535(_533,_534.novalidate); -}; -function _536(_537,_538){ -_538=_538||{}; -var _539=$.data(_537,"form"); -if(_539){ -$.extend(_539.options,_538); -}else{ -$.data(_537,"form",{options:$.extend({},$.fn.form.defaults,$.fn.form.parseOptions(_537),_538)}); -} -}; -function _53a(_53b){ -if($.fn.validatebox){ -var t=$(_53b); -t.find(".validatebox-text:not(:disabled)").validatebox("validate"); -var _53c=t.find(".validatebox-invalid"); -_53c.filter(":not(:disabled):first").focus(); -return _53c.length==0; -} -return true; -}; -function _535(_53d,_53e){ -var opts=$.data(_53d,"form").options; -opts.novalidate=_53e; -$(_53d).find(".validatebox-text:not(:disabled)").validatebox(_53e?"disableValidation":"enableValidation"); -}; -$.fn.form=function(_53f,_540){ -if(typeof _53f=="string"){ -this.each(function(){ -_536(this); -}); -return $.fn.form.methods[_53f](this,_540); -} -return this.each(function(){ -_536(this,_53f); -_532(this); -}); -}; -$.fn.form.methods={options:function(jq){ -return $.data(jq[0],"form").options; -},submit:function(jq,_541){ -return jq.each(function(){ -_517(this,_541); -}); -},load:function(jq,data){ -return jq.each(function(){ -load(this,data); -}); -},clear:function(jq){ -return jq.each(function(){ -_52b(this); -}); -},reset:function(jq){ -return jq.each(function(){ -_52f(this); -}); -},validate:function(jq){ -return _53a(jq[0]); -},disableValidation:function(jq){ -return jq.each(function(){ -_535(this,true); -}); -},enableValidation:function(jq){ -return jq.each(function(){ -_535(this,false); -}); -}}; -$.fn.form.parseOptions=function(_542){ -var t=$(_542); -return $.extend({},$.parser.parseOptions(_542,[{ajax:"boolean"}]),{url:(t.attr("action")?t.attr("action"):undefined)}); -}; -$.fn.form.defaults={fieldTypes:["combobox","combotree","combogrid","datetimebox","datebox","combo","datetimespinner","timespinner","numberspinner","spinner","slider","searchbox","numberbox","textbox","switchbutton"],novalidate:false,ajax:true,url:null,queryParams:{},onSubmit:function(_543){ -return $(this).form("validate"); -},success:function(data){ -},onBeforeLoad:function(_544){ -},onLoadSuccess:function(data){ -},onLoadError:function(){ -},onChange:function(_545){ -}}; -})(jQuery); -(function($){ -function _546(_547){ -var _548=$.data(_547,"numberbox"); -var opts=_548.options; -$(_547).addClass("numberbox-f").textbox(opts); -$(_547).textbox("textbox").css({imeMode:"disabled"}); -$(_547).attr("numberboxName",$(_547).attr("textboxName")); -_548.numberbox=$(_547).next(); -_548.numberbox.addClass("numberbox"); -var _549=opts.parser.call(_547,opts.value); -var _54a=opts.formatter.call(_547,_549); -$(_547).numberbox("initValue",_549).numberbox("setText",_54a); -}; -function _54b(_54c,_54d){ -var _54e=$.data(_54c,"numberbox"); -var opts=_54e.options; -var _54d=opts.parser.call(_54c,_54d); -var text=opts.formatter.call(_54c,_54d); -opts.value=_54d; -$(_54c).textbox("setText",text).textbox("setValue",_54d); -text=opts.formatter.call(_54c,$(_54c).textbox("getValue")); -$(_54c).textbox("setText",text); -}; -$.fn.numberbox=function(_54f,_550){ -if(typeof _54f=="string"){ -var _551=$.fn.numberbox.methods[_54f]; -if(_551){ -return _551(this,_550); -}else{ -return this.textbox(_54f,_550); -} -} -_54f=_54f||{}; -return this.each(function(){ -var _552=$.data(this,"numberbox"); -if(_552){ -$.extend(_552.options,_54f); -}else{ -_552=$.data(this,"numberbox",{options:$.extend({},$.fn.numberbox.defaults,$.fn.numberbox.parseOptions(this),_54f)}); -} -_546(this); -}); -}; -$.fn.numberbox.methods={options:function(jq){ -var opts=jq.data("textbox")?jq.textbox("options"):{}; -return $.extend($.data(jq[0],"numberbox").options,{width:opts.width,originalValue:opts.originalValue,disabled:opts.disabled,readonly:opts.readonly}); -},fix:function(jq){ -return jq.each(function(){ -$(this).numberbox("setValue",$(this).numberbox("getText")); -}); -},setValue:function(jq,_553){ -return jq.each(function(){ -_54b(this,_553); -}); -},clear:function(jq){ -return jq.each(function(){ -$(this).textbox("clear"); -$(this).numberbox("options").value=""; -}); -},reset:function(jq){ -return jq.each(function(){ -$(this).textbox("reset"); -$(this).numberbox("setValue",$(this).numberbox("getValue")); -}); -}}; -$.fn.numberbox.parseOptions=function(_554){ -var t=$(_554); -return $.extend({},$.fn.textbox.parseOptions(_554),$.parser.parseOptions(_554,["decimalSeparator","groupSeparator","suffix",{min:"number",max:"number",precision:"number"}]),{prefix:(t.attr("prefix")?t.attr("prefix"):undefined)}); -}; -$.fn.numberbox.defaults=$.extend({},$.fn.textbox.defaults,{inputEvents:{keypress:function(e){ -var _555=e.data.target; -var opts=$(_555).numberbox("options"); -return opts.filter.call(_555,e); -},blur:function(e){ -var _556=e.data.target; -$(_556).numberbox("setValue",$(_556).numberbox("getText")); -},keydown:function(e){ -if(e.keyCode==13){ -var _557=e.data.target; -$(_557).numberbox("setValue",$(_557).numberbox("getText")); -} -}},min:null,max:null,precision:0,decimalSeparator:".",groupSeparator:"",prefix:"",suffix:"",filter:function(e){ -var opts=$(this).numberbox("options"); -var s=$(this).numberbox("getText"); -if(e.which==13){ -return true; -} -if(e.which==45){ -return (s.indexOf("-")==-1?true:false); -} -var c=String.fromCharCode(e.which); -if(c==opts.decimalSeparator){ -return (s.indexOf(c)==-1?true:false); -}else{ -if(c==opts.groupSeparator){ -return true; -}else{ -if((e.which>=48&&e.which<=57&&e.ctrlKey==false&&e.shiftKey==false)||e.which==0||e.which==8){ -return true; -}else{ -if(e.ctrlKey==true&&(e.which==99||e.which==118)){ -return true; -}else{ -return false; -} -} -} -} -},formatter:function(_558){ -if(!_558){ -return _558; -} -_558=_558+""; -var opts=$(this).numberbox("options"); -var s1=_558,s2=""; -var dpos=_558.indexOf("."); -if(dpos>=0){ -s1=_558.substring(0,dpos); -s2=_558.substring(dpos+1,_558.length); -} -if(opts.groupSeparator){ -var p=/(\d+)(\d{3})/; -while(p.test(s1)){ -s1=s1.replace(p,"$1"+opts.groupSeparator+"$2"); -} -} -if(s2){ -return opts.prefix+s1+opts.decimalSeparator+s2+opts.suffix; -}else{ -return opts.prefix+s1+opts.suffix; -} -},parser:function(s){ -s=s+""; -var opts=$(this).numberbox("options"); -if(parseFloat(s)!=s){ -if(opts.prefix){ -s=$.trim(s.replace(new RegExp("\\"+$.trim(opts.prefix),"g"),"")); -} -if(opts.suffix){ -s=$.trim(s.replace(new RegExp("\\"+$.trim(opts.suffix),"g"),"")); -} -if(opts.groupSeparator){ -s=$.trim(s.replace(new RegExp("\\"+opts.groupSeparator,"g"),"")); -} -if(opts.decimalSeparator){ -s=$.trim(s.replace(new RegExp("\\"+opts.decimalSeparator,"g"),".")); -} -s=s.replace(/\s/g,""); -} -var val=parseFloat(s).toFixed(opts.precision); -if(isNaN(val)){ -val=""; -}else{ -if(typeof (opts.min)=="number"&&valopts.max){ -val=opts.max.toFixed(opts.precision); -} -} -} -return val; -}}); -})(jQuery); -(function($){ -function _559(_55a,_55b){ -var opts=$.data(_55a,"calendar").options; -var t=$(_55a); -if(_55b){ -$.extend(opts,{width:_55b.width,height:_55b.height}); -} -t._size(opts,t.parent()); -t.find(".calendar-body")._outerHeight(t.height()-t.find(".calendar-header")._outerHeight()); -if(t.find(".calendar-menu").is(":visible")){ -_55c(_55a); -} -}; -function init(_55d){ -$(_55d).addClass("calendar").html("
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+""+"
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+""+""+""+"
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "); -$(_55d).bind("_resize",function(e,_55e){ -if($(this).hasClass("easyui-fluid")||_55e){ -_559(_55d); -} -return false; -}); -}; -function _55f(_560){ -var opts=$.data(_560,"calendar").options; -var menu=$(_560).find(".calendar-menu"); -menu.find(".calendar-menu-year").unbind(".calendar").bind("keypress.calendar",function(e){ -if(e.keyCode==13){ -_561(true); -} -}); -$(_560).unbind(".calendar").bind("mouseover.calendar",function(e){ -var t=_562(e.target); -if(t.hasClass("calendar-nav")||t.hasClass("calendar-text")||(t.hasClass("calendar-day")&&!t.hasClass("calendar-disabled"))){ -t.addClass("calendar-nav-hover"); -} -}).bind("mouseout.calendar",function(e){ -var t=_562(e.target); -if(t.hasClass("calendar-nav")||t.hasClass("calendar-text")||(t.hasClass("calendar-day")&&!t.hasClass("calendar-disabled"))){ -t.removeClass("calendar-nav-hover"); -} -}).bind("click.calendar",function(e){ -var t=_562(e.target); -if(t.hasClass("calendar-menu-next")||t.hasClass("calendar-nextyear")){ -_563(1); -}else{ -if(t.hasClass("calendar-menu-prev")||t.hasClass("calendar-prevyear")){ -_563(-1); -}else{ -if(t.hasClass("calendar-menu-month")){ -menu.find(".calendar-selected").removeClass("calendar-selected"); -t.addClass("calendar-selected"); -_561(true); -}else{ -if(t.hasClass("calendar-prevmonth")){ -_564(-1); -}else{ -if(t.hasClass("calendar-nextmonth")){ -_564(1); -}else{ -if(t.hasClass("calendar-text")){ -if(menu.is(":visible")){ -menu.hide(); -}else{ -_55c(_560); -} -}else{ -if(t.hasClass("calendar-day")){ -if(t.hasClass("calendar-disabled")){ -return; -} -var _565=opts.current; -t.closest("div.calendar-body").find(".calendar-selected").removeClass("calendar-selected"); -t.addClass("calendar-selected"); -var _566=t.attr("abbr").split(","); -var y=parseInt(_566[0]); -var m=parseInt(_566[1]); -var d=parseInt(_566[2]); -opts.current=new Date(y,m-1,d); -opts.onSelect.call(_560,opts.current); -if(!_565||_565.getTime()!=opts.current.getTime()){ -opts.onChange.call(_560,opts.current,_565); -} -if(opts.year!=y||opts.month!=m){ -opts.year=y; -opts.month=m; -show(_560); -} -} -} -} -} -} -} -} -}); -function _562(t){ -var day=$(t).closest(".calendar-day"); -if(day.length){ -return day; -}else{ -return $(t); -} -}; -function _561(_567){ -var menu=$(_560).find(".calendar-menu"); -var year=menu.find(".calendar-menu-year").val(); -var _568=menu.find(".calendar-selected").attr("abbr"); -if(!isNaN(year)){ -opts.year=parseInt(year); -opts.month=parseInt(_568); -show(_560); -} -if(_567){ -menu.hide(); -} -}; -function _563(_569){ -opts.year+=_569; -show(_560); -menu.find(".calendar-menu-year").val(opts.year); -}; -function _564(_56a){ -opts.month+=_56a; -if(opts.month>12){ -opts.year++; -opts.month=1; -}else{ -if(opts.month<1){ -opts.year--; -opts.month=12; -} -} -show(_560); -menu.find("td.calendar-selected").removeClass("calendar-selected"); -menu.find("td:eq("+(opts.month-1)+")").addClass("calendar-selected"); -}; -}; -function _55c(_56b){ -var opts=$.data(_56b,"calendar").options; -$(_56b).find(".calendar-menu").show(); -if($(_56b).find(".calendar-menu-month-inner").is(":empty")){ -$(_56b).find(".calendar-menu-month-inner").empty(); -var t=$("
                                        ").appendTo($(_56b).find(".calendar-menu-month-inner")); -var idx=0; -for(var i=0;i<3;i++){ -var tr=$("").appendTo(t); -for(var j=0;j<4;j++){ -$("").html(opts.months[idx++]).attr("abbr",idx).appendTo(tr); -} -} -} -var body=$(_56b).find(".calendar-body"); -var sele=$(_56b).find(".calendar-menu"); -var _56c=sele.find(".calendar-menu-year-inner"); -var _56d=sele.find(".calendar-menu-month-inner"); -_56c.find("input").val(opts.year).focus(); -_56d.find("td.calendar-selected").removeClass("calendar-selected"); -_56d.find("td:eq("+(opts.month-1)+")").addClass("calendar-selected"); -sele._outerWidth(body._outerWidth()); -sele._outerHeight(body._outerHeight()); -_56d._outerHeight(sele.height()-_56c._outerHeight()); -}; -function _56e(_56f,year,_570){ -var opts=$.data(_56f,"calendar").options; -var _571=[]; -var _572=new Date(year,_570,0).getDate(); -for(var i=1;i<=_572;i++){ -_571.push([year,_570,i]); -} -var _573=[],week=[]; -var _574=-1; -while(_571.length>0){ -var date=_571.shift(); -week.push(date); -var day=new Date(date[0],date[1]-1,date[2]).getDay(); -if(_574==day){ -day=0; -}else{ -if(day==(opts.firstDay==0?7:opts.firstDay)-1){ -_573.push(week); -week=[]; -} -} -_574=day; -} -if(week.length){ -_573.push(week); -} -var _575=_573[0]; -if(_575.length<7){ -while(_575.length<7){ -var _576=_575[0]; -var date=new Date(_576[0],_576[1]-1,_576[2]-1); -_575.unshift([date.getFullYear(),date.getMonth()+1,date.getDate()]); -} -}else{ -var _576=_575[0]; -var week=[]; -for(var i=1;i<=7;i++){ -var date=new Date(_576[0],_576[1]-1,_576[2]-i); -week.unshift([date.getFullYear(),date.getMonth()+1,date.getDate()]); -} -_573.unshift(week); -} -var _577=_573[_573.length-1]; -while(_577.length<7){ -var _578=_577[_577.length-1]; -var date=new Date(_578[0],_578[1]-1,_578[2]+1); -_577.push([date.getFullYear(),date.getMonth()+1,date.getDate()]); -} -if(_573.length<6){ -var _578=_577[_577.length-1]; -var week=[]; -for(var i=1;i<=7;i++){ -var date=new Date(_578[0],_578[1]-1,_578[2]+i); -week.push([date.getFullYear(),date.getMonth()+1,date.getDate()]); -} -_573.push(week); -} -return _573; -}; -function show(_579){ -var opts=$.data(_579,"calendar").options; -if(opts.current&&!opts.validator.call(_579,opts.current)){ -opts.current=null; -} -var now=new Date(); -var _57a=now.getFullYear()+","+(now.getMonth()+1)+","+now.getDate(); -var _57b=opts.current?(opts.current.getFullYear()+","+(opts.current.getMonth()+1)+","+opts.current.getDate()):""; -var _57c=6-opts.firstDay; -var _57d=_57c+1; -if(_57c>=7){ -_57c-=7; -} -if(_57d>=7){ -_57d-=7; -} -$(_579).find(".calendar-title span").html(opts.months[opts.month-1]+" "+opts.year); -var body=$(_579).find("div.calendar-body"); -body.children("table").remove(); -var data=[""]; -data.push(""); -for(var i=opts.firstDay;i"+opts.weeks[i]+""); -} -for(var i=0;i"+opts.weeks[i]+""); -} -data.push(""); -data.push(""); -var _57e=_56e(_579,opts.year,opts.month); -for(var i=0;i<_57e.length;i++){ -var week=_57e[i]; -var cls=""; -if(i==0){ -cls="calendar-first"; -}else{ -if(i==_57e.length-1){ -cls="calendar-last"; -} -} -data.push(""); -for(var j=0;j"+d+""); -} -data.push(""); -} -data.push(""); -data.push("
                                        "); -body.append(data.join("")); -body.children("table.calendar-dtable").prependTo(body); -opts.onNavigate.call(_579,opts.year,opts.month); -}; -$.fn.calendar=function(_582,_583){ -if(typeof _582=="string"){ -return $.fn.calendar.methods[_582](this,_583); -} -_582=_582||{}; -return this.each(function(){ -var _584=$.data(this,"calendar"); -if(_584){ -$.extend(_584.options,_582); -}else{ -_584=$.data(this,"calendar",{options:$.extend({},$.fn.calendar.defaults,$.fn.calendar.parseOptions(this),_582)}); -init(this); -} -if(_584.options.border==false){ -$(this).addClass("calendar-noborder"); -} -_559(this); -_55f(this); -show(this); -$(this).find("div.calendar-menu").hide(); -}); -}; -$.fn.calendar.methods={options:function(jq){ -return $.data(jq[0],"calendar").options; -},resize:function(jq,_585){ -return jq.each(function(){ -_559(this,_585); -}); -},moveTo:function(jq,date){ -return jq.each(function(){ -if(!date){ -var now=new Date(); -$(this).calendar({year:now.getFullYear(),month:now.getMonth()+1,current:date}); -return; -} -var opts=$(this).calendar("options"); -if(opts.validator.call(this,date)){ -var _586=opts.current; -$(this).calendar({year:date.getFullYear(),month:date.getMonth()+1,current:date}); -if(!_586||_586.getTime()!=date.getTime()){ -opts.onChange.call(this,opts.current,_586); -} -} -}); -}}; -$.fn.calendar.parseOptions=function(_587){ -var t=$(_587); -return $.extend({},$.parser.parseOptions(_587,[{firstDay:"number",fit:"boolean",border:"boolean"}])); -}; -$.fn.calendar.defaults={width:180,height:180,fit:false,border:true,firstDay:0,weeks:["S","M","T","W","T","F","S"],months:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],year:new Date().getFullYear(),month:new Date().getMonth()+1,current:(function(){ -var d=new Date(); -return new Date(d.getFullYear(),d.getMonth(),d.getDate()); -})(),formatter:function(date){ -return date.getDate(); -},styler:function(date){ -return ""; -},validator:function(date){ -return true; -},onSelect:function(date){ -},onChange:function(_588,_589){ -},onNavigate:function(year,_58a){ -}}; -})(jQuery); -(function($){ -function _58b(_58c){ -var _58d=$.data(_58c,"spinner"); -var opts=_58d.options; -var _58e=$.extend(true,[],opts.icons); -_58e.push({iconCls:"spinner-arrow",handler:function(e){ -_58f(e); -}}); -$(_58c).addClass("spinner-f").textbox($.extend({},opts,{icons:_58e})); -var _590=$(_58c).textbox("getIcon",_58e.length-1); -_590.append(""); -_590.append(""); -$(_58c).attr("spinnerName",$(_58c).attr("textboxName")); -_58d.spinner=$(_58c).next(); -_58d.spinner.addClass("spinner"); -}; -function _58f(e){ -var _591=e.data.target; -var opts=$(_591).spinner("options"); -var up=$(e.target).closest("a.spinner-arrow-up"); -if(up.length){ -opts.spin.call(_591,false); -opts.onSpinUp.call(_591); -$(_591).spinner("validate"); -} -var down=$(e.target).closest("a.spinner-arrow-down"); -if(down.length){ -opts.spin.call(_591,true); -opts.onSpinDown.call(_591); -$(_591).spinner("validate"); -} -}; -$.fn.spinner=function(_592,_593){ -if(typeof _592=="string"){ -var _594=$.fn.spinner.methods[_592]; -if(_594){ -return _594(this,_593); -}else{ -return this.textbox(_592,_593); -} -} -_592=_592||{}; -return this.each(function(){ -var _595=$.data(this,"spinner"); -if(_595){ -$.extend(_595.options,_592); -}else{ -_595=$.data(this,"spinner",{options:$.extend({},$.fn.spinner.defaults,$.fn.spinner.parseOptions(this),_592)}); -} -_58b(this); -}); -}; -$.fn.spinner.methods={options:function(jq){ -var opts=jq.textbox("options"); -return $.extend($.data(jq[0],"spinner").options,{width:opts.width,value:opts.value,originalValue:opts.originalValue,disabled:opts.disabled,readonly:opts.readonly}); -}}; -$.fn.spinner.parseOptions=function(_596){ -return $.extend({},$.fn.textbox.parseOptions(_596),$.parser.parseOptions(_596,["min","max",{increment:"number"}])); -}; -$.fn.spinner.defaults=$.extend({},$.fn.textbox.defaults,{min:null,max:null,increment:1,spin:function(down){ -},onSpinUp:function(){ -},onSpinDown:function(){ -}}); -})(jQuery); -(function($){ -function _597(_598){ -$(_598).addClass("numberspinner-f"); -var opts=$.data(_598,"numberspinner").options; -$(_598).numberbox(opts).spinner(opts); -$(_598).numberbox("setValue",opts.value); -}; -function _599(_59a,down){ -var opts=$.data(_59a,"numberspinner").options; -var v=parseFloat($(_59a).numberbox("getValue")||opts.value)||0; -if(down){ -v-=opts.increment; -}else{ -v+=opts.increment; -} -$(_59a).numberbox("setValue",v); -}; -$.fn.numberspinner=function(_59b,_59c){ -if(typeof _59b=="string"){ -var _59d=$.fn.numberspinner.methods[_59b]; -if(_59d){ -return _59d(this,_59c); -}else{ -return this.numberbox(_59b,_59c); -} -} -_59b=_59b||{}; -return this.each(function(){ -var _59e=$.data(this,"numberspinner"); -if(_59e){ -$.extend(_59e.options,_59b); -}else{ -$.data(this,"numberspinner",{options:$.extend({},$.fn.numberspinner.defaults,$.fn.numberspinner.parseOptions(this),_59b)}); -} -_597(this); -}); -}; -$.fn.numberspinner.methods={options:function(jq){ -var opts=jq.numberbox("options"); -return $.extend($.data(jq[0],"numberspinner").options,{width:opts.width,value:opts.value,originalValue:opts.originalValue,disabled:opts.disabled,readonly:opts.readonly}); -}}; -$.fn.numberspinner.parseOptions=function(_59f){ -return $.extend({},$.fn.spinner.parseOptions(_59f),$.fn.numberbox.parseOptions(_59f),{}); -}; -$.fn.numberspinner.defaults=$.extend({},$.fn.spinner.defaults,$.fn.numberbox.defaults,{spin:function(down){ -_599(this,down); -}}); -})(jQuery); -(function($){ -function _5a0(_5a1){ -var _5a2=0; -if(typeof _5a1.selectionStart=="number"){ -_5a2=_5a1.selectionStart; -}else{ -if(_5a1.createTextRange){ -var _5a3=_5a1.createTextRange(); -var s=document.selection.createRange(); -s.setEndPoint("StartToStart",_5a3); -_5a2=s.text.length; -} -} -return _5a2; -}; -function _5a4(_5a5,_5a6,end){ -if(_5a5.setSelectionRange){ -_5a5.setSelectionRange(_5a6,end); -}else{ -if(_5a5.createTextRange){ -var _5a7=_5a5.createTextRange(); -_5a7.collapse(); -_5a7.moveEnd("character",end); -_5a7.moveStart("character",_5a6); -_5a7.select(); -} -} -}; -function _5a8(_5a9){ -var opts=$.data(_5a9,"timespinner").options; -$(_5a9).addClass("timespinner-f").spinner(opts); -var _5aa=opts.formatter.call(_5a9,opts.parser.call(_5a9,opts.value)); -$(_5a9).timespinner("initValue",_5aa); -}; -function _5ab(e){ -var _5ac=e.data.target; -var opts=$.data(_5ac,"timespinner").options; -var _5ad=_5a0(this); -for(var i=0;i=_5ae[0]&&_5ad<=_5ae[1]){ -_5af(_5ac,i); -return; -} -} -}; -function _5af(_5b0,_5b1){ -var opts=$.data(_5b0,"timespinner").options; -if(_5b1!=undefined){ -opts.highlight=_5b1; -} -var _5b2=opts.selections[opts.highlight]; -if(_5b2){ -var tb=$(_5b0).timespinner("textbox"); -_5a4(tb[0],_5b2[0],_5b2[1]); -tb.focus(); -} -}; -function _5b3(_5b4,_5b5){ -var opts=$.data(_5b4,"timespinner").options; -var _5b5=opts.parser.call(_5b4,_5b5); -var text=opts.formatter.call(_5b4,_5b5); -$(_5b4).spinner("setValue",text); -}; -function _5b6(_5b7,down){ -var opts=$.data(_5b7,"timespinner").options; -var s=$(_5b7).timespinner("getValue"); -var _5b8=opts.selections[opts.highlight]; -var s1=s.substring(0,_5b8[0]); -var s2=s.substring(_5b8[0],_5b8[1]); -var s3=s.substring(_5b8[1]); -var v=s1+((parseInt(s2,10)||0)+opts.increment*(down?-1:1))+s3; -$(_5b7).timespinner("setValue",v); -_5af(_5b7); -}; -$.fn.timespinner=function(_5b9,_5ba){ -if(typeof _5b9=="string"){ -var _5bb=$.fn.timespinner.methods[_5b9]; -if(_5bb){ -return _5bb(this,_5ba); -}else{ -return this.spinner(_5b9,_5ba); -} -} -_5b9=_5b9||{}; -return this.each(function(){ -var _5bc=$.data(this,"timespinner"); -if(_5bc){ -$.extend(_5bc.options,_5b9); -}else{ -$.data(this,"timespinner",{options:$.extend({},$.fn.timespinner.defaults,$.fn.timespinner.parseOptions(this),_5b9)}); -} -_5a8(this); -}); -}; -$.fn.timespinner.methods={options:function(jq){ -var opts=jq.data("spinner")?jq.spinner("options"):{}; -return $.extend($.data(jq[0],"timespinner").options,{width:opts.width,value:opts.value,originalValue:opts.originalValue,disabled:opts.disabled,readonly:opts.readonly}); -},setValue:function(jq,_5bd){ -return jq.each(function(){ -_5b3(this,_5bd); -}); -},getHours:function(jq){ -var opts=$.data(jq[0],"timespinner").options; -var vv=jq.timespinner("getValue").split(opts.separator); -return parseInt(vv[0],10); -},getMinutes:function(jq){ -var opts=$.data(jq[0],"timespinner").options; -var vv=jq.timespinner("getValue").split(opts.separator); -return parseInt(vv[1],10); -},getSeconds:function(jq){ -var opts=$.data(jq[0],"timespinner").options; -var vv=jq.timespinner("getValue").split(opts.separator); -return parseInt(vv[2],10)||0; -}}; -$.fn.timespinner.parseOptions=function(_5be){ -return $.extend({},$.fn.spinner.parseOptions(_5be),$.parser.parseOptions(_5be,["separator",{showSeconds:"boolean",highlight:"number"}])); -}; -$.fn.timespinner.defaults=$.extend({},$.fn.spinner.defaults,{inputEvents:$.extend({},$.fn.spinner.defaults.inputEvents,{click:function(e){ -_5ab.call(this,e); -},blur:function(e){ -var t=$(e.data.target); -t.timespinner("setValue",t.timespinner("getText")); -},keydown:function(e){ -if(e.keyCode==13){ -var t=$(e.data.target); -t.timespinner("setValue",t.timespinner("getText")); -} -}}),formatter:function(date){ -if(!date){ -return ""; -} -var opts=$(this).timespinner("options"); -var tt=[_5bf(date.getHours()),_5bf(date.getMinutes())]; -if(opts.showSeconds){ -tt.push(_5bf(date.getSeconds())); -} -return tt.join(opts.separator); -function _5bf(_5c0){ -return (_5c0<10?"0":"")+_5c0; -}; -},parser:function(s){ -var opts=$(this).timespinner("options"); -var date=_5c1(s); -if(date){ -var min=_5c1(opts.min); -var max=_5c1(opts.max); -if(min&&min>date){ -date=min; -} -if(max&&max"]; -for(var i=0;i<_5d7.length;i++){ -_5d6.cache[_5d7[i][0]]={width:_5d7[i][1]}; -} -var _5d8=0; -for(var s in _5d6.cache){ -var item=_5d6.cache[s]; -item.index=_5d8++; -ss.push(s+"{width:"+item.width+"}"); -} -ss.push(""); -$(ss.join("\n")).appendTo(cc); -cc.children("style[easyui]:not(:last)").remove(); -},getRule:function(_5d9){ -var _5da=cc.children("style[easyui]:last")[0]; -var _5db=_5da.styleSheet?_5da.styleSheet:(_5da.sheet||document.styleSheets[document.styleSheets.length-1]); -var _5dc=_5db.cssRules||_5db.rules; -return _5dc[_5d9]; -},set:function(_5dd,_5de){ -var item=_5d6.cache[_5dd]; -if(item){ -item.width=_5de; -var rule=this.getRule(item.index); -if(rule){ -rule.style["width"]=_5de; -} -} -},remove:function(_5df){ -var tmp=[]; -for(var s in _5d6.cache){ -if(s.indexOf(_5df)==-1){ -tmp.push([s,_5d6.cache[s].width]); -} -} -_5d6.cache={}; -this.add(tmp); -},dirty:function(_5e0){ -if(_5e0){ -_5d6.dirty.push(_5e0); -} -},clean:function(){ -for(var i=0;i<_5d6.dirty.length;i++){ -this.remove(_5d6.dirty[i]); -} -_5d6.dirty=[]; -}}; -}; -function _5e1(_5e2,_5e3){ -var _5e4=$.data(_5e2,"datagrid"); -var opts=_5e4.options; -var _5e5=_5e4.panel; -if(_5e3){ -$.extend(opts,_5e3); -} -if(opts.fit==true){ -var p=_5e5.panel("panel").parent(); -opts.width=p.width(); -opts.height=p.height(); -} -_5e5.panel("resize",opts); -}; -function _5e6(_5e7){ -var _5e8=$.data(_5e7,"datagrid"); -var opts=_5e8.options; -var dc=_5e8.dc; -var wrap=_5e8.panel; -var _5e9=wrap.width(); -var _5ea=wrap.height(); -var view=dc.view; -var _5eb=dc.view1; -var _5ec=dc.view2; -var _5ed=_5eb.children("div.datagrid-header"); -var _5ee=_5ec.children("div.datagrid-header"); -var _5ef=_5ed.find("table"); -var _5f0=_5ee.find("table"); -view.width(_5e9); -var _5f1=_5ed.children("div.datagrid-header-inner").show(); -_5eb.width(_5f1.find("table").width()); -if(!opts.showHeader){ -_5f1.hide(); -} -_5ec.width(_5e9-_5eb._outerWidth()); -_5eb.children()._outerWidth(_5eb.width()); -_5ec.children()._outerWidth(_5ec.width()); -var all=_5ed.add(_5ee).add(_5ef).add(_5f0); -all.css("height",""); -var hh=Math.max(_5ef.height(),_5f0.height()); -all._outerHeight(hh); -dc.body1.add(dc.body2).children("table.datagrid-btable-frozen").css({position:"absolute",top:dc.header2._outerHeight()}); -var _5f2=dc.body2.children("table.datagrid-btable-frozen")._outerHeight(); -var _5f3=_5f2+_5ee._outerHeight()+_5ec.children(".datagrid-footer")._outerHeight(); -wrap.children(":not(.datagrid-view,.datagrid-mask,.datagrid-mask-msg)").each(function(){ -_5f3+=$(this)._outerHeight(); -}); -var _5f4=wrap.outerHeight()-wrap.height(); -var _5f5=wrap._size("minHeight")||""; -var _5f6=wrap._size("maxHeight")||""; -_5eb.add(_5ec).children("div.datagrid-body").css({marginTop:_5f2,height:(isNaN(parseInt(opts.height))?"":(_5ea-_5f3)),minHeight:(_5f5?_5f5-_5f4-_5f3:""),maxHeight:(_5f6?_5f6-_5f4-_5f3:"")}); -view.height(_5ec.height()); -}; -function _5f7(_5f8,_5f9,_5fa){ -var rows=$.data(_5f8,"datagrid").data.rows; -var opts=$.data(_5f8,"datagrid").options; -var dc=$.data(_5f8,"datagrid").dc; -if(!dc.body1.is(":empty")&&(!opts.nowrap||opts.autoRowHeight||_5fa)){ -if(_5f9!=undefined){ -var tr1=opts.finder.getTr(_5f8,_5f9,"body",1); -var tr2=opts.finder.getTr(_5f8,_5f9,"body",2); -_5fb(tr1,tr2); -}else{ -var tr1=opts.finder.getTr(_5f8,0,"allbody",1); -var tr2=opts.finder.getTr(_5f8,0,"allbody",2); -_5fb(tr1,tr2); -if(opts.showFooter){ -var tr1=opts.finder.getTr(_5f8,0,"allfooter",1); -var tr2=opts.finder.getTr(_5f8,0,"allfooter",2); -_5fb(tr1,tr2); -} -} -} -_5e6(_5f8); -if(opts.height=="auto"){ -var _5fc=dc.body1.parent(); -var _5fd=dc.body2; -var _5fe=_5ff(_5fd); -var _600=_5fe.height; -if(_5fe.width>_5fd.width()){ -_600+=18; -} -_600-=parseInt(_5fd.css("marginTop"))||0; -_5fc.height(_600); -_5fd.height(_600); -dc.view.height(dc.view2.height()); -} -dc.body2.triggerHandler("scroll"); -function _5fb(trs1,trs2){ -for(var i=0;i"); -} -_608(true); -_608(false); -_5e6(_605); -function _608(_609){ -var _60a=_609?1:2; -var tr=opts.finder.getTr(_605,_606,"body",_60a); -(_609?dc.body1:dc.body2).children("table.datagrid-btable-frozen").append(tr); -}; -}; -function _60b(_60c,_60d){ -function _60e(){ -var _60f=[]; -var _610=[]; -$(_60c).children("thead").each(function(){ -var opt=$.parser.parseOptions(this,[{frozen:"boolean"}]); -$(this).find("tr").each(function(){ -var cols=[]; -$(this).find("th").each(function(){ -var th=$(this); -var col=$.extend({},$.parser.parseOptions(this,["field","align","halign","order","width",{sortable:"boolean",checkbox:"boolean",resizable:"boolean",fixed:"boolean"},{rowspan:"number",colspan:"number"}]),{title:(th.html()||undefined),hidden:(th.attr("hidden")?true:undefined),formatter:(th.attr("formatter")?eval(th.attr("formatter")):undefined),styler:(th.attr("styler")?eval(th.attr("styler")):undefined),sorter:(th.attr("sorter")?eval(th.attr("sorter")):undefined)}); -if(col.width&&String(col.width).indexOf("%")==-1){ -col.width=parseInt(col.width); -} -if(th.attr("editor")){ -var s=$.trim(th.attr("editor")); -if(s.substr(0,1)=="{"){ -col.editor=eval("("+s+")"); -}else{ -col.editor=s; -} -} -cols.push(col); -}); -opt.frozen?_60f.push(cols):_610.push(cols); -}); -}); -return [_60f,_610]; -}; -var _611=$("
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+""+"
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+"
                                        "+""+"
                                        "+"
                                        "+"
                                        "+"
                                        ").insertAfter(_60c); -_611.panel({doSize:false,cls:"datagrid"}); -$(_60c).addClass("datagrid-f").hide().appendTo(_611.children("div.datagrid-view")); -var cc=_60e(); -var view=_611.children("div.datagrid-view"); -var _612=view.children("div.datagrid-view1"); -var _613=view.children("div.datagrid-view2"); -return {panel:_611,frozenColumns:cc[0],columns:cc[1],dc:{view:view,view1:_612,view2:_613,header1:_612.children("div.datagrid-header").children("div.datagrid-header-inner"),header2:_613.children("div.datagrid-header").children("div.datagrid-header-inner"),body1:_612.children("div.datagrid-body").children("div.datagrid-body-inner"),body2:_613.children("div.datagrid-body"),footer1:_612.children("div.datagrid-footer").children("div.datagrid-footer-inner"),footer2:_613.children("div.datagrid-footer").children("div.datagrid-footer-inner")}}; -}; -function _614(_615){ -var _616=$.data(_615,"datagrid"); -var opts=_616.options; -var dc=_616.dc; -var _617=_616.panel; -_616.ss=$(_615).datagrid("createStyleSheet"); -_617.panel($.extend({},opts,{id:null,doSize:false,onResize:function(_618,_619){ -if($.data(_615,"datagrid")){ -_5e6(_615); -$(_615).datagrid("fitColumns"); -opts.onResize.call(_617,_618,_619); -} -},onExpand:function(){ -if($.data(_615,"datagrid")){ -$(_615).datagrid("fixRowHeight").datagrid("fitColumns"); -opts.onExpand.call(_617); -} -}})); -_616.rowIdPrefix="datagrid-row-r"+(++_5cb); -_616.cellClassPrefix="datagrid-cell-c"+_5cb; -_61a(dc.header1,opts.frozenColumns,true); -_61a(dc.header2,opts.columns,false); -_61b(); -dc.header1.add(dc.header2).css("display",opts.showHeader?"block":"none"); -dc.footer1.add(dc.footer2).css("display",opts.showFooter?"block":"none"); -if(opts.toolbar){ -if($.isArray(opts.toolbar)){ -$("div.datagrid-toolbar",_617).remove(); -var tb=$("
                                        ").prependTo(_617); -var tr=tb.find("tr"); -for(var i=0;i
                                        ").appendTo(tr); -}else{ -var td=$("").appendTo(tr); -var tool=$("").appendTo(td); -tool[0].onclick=eval(btn.handler||function(){ -}); -tool.linkbutton($.extend({},btn,{plain:true})); -} -} -}else{ -$(opts.toolbar).addClass("datagrid-toolbar").prependTo(_617); -$(opts.toolbar).show(); -} -}else{ -$("div.datagrid-toolbar",_617).remove(); -} -$("div.datagrid-pager",_617).remove(); -if(opts.pagination){ -var _61c=$("
                                        "); -if(opts.pagePosition=="bottom"){ -_61c.appendTo(_617); -}else{ -if(opts.pagePosition=="top"){ -_61c.addClass("datagrid-pager-top").prependTo(_617); -}else{ -var ptop=$("
                                        ").prependTo(_617); -_61c.appendTo(_617); -_61c=_61c.add(ptop); -} -} -_61c.pagination({total:(opts.pageNumber*opts.pageSize),pageNumber:opts.pageNumber,pageSize:opts.pageSize,pageList:opts.pageList,onSelectPage:function(_61d,_61e){ -opts.pageNumber=_61d||1; -opts.pageSize=_61e; -_61c.pagination("refresh",{pageNumber:_61d,pageSize:_61e}); -_65a(_615); -}}); -opts.pageSize=_61c.pagination("options").pageSize; -} -function _61a(_61f,_620,_621){ -if(!_620){ -return; -} -$(_61f).show(); -$(_61f).empty(); -var _622=[]; -var _623=[]; -if(opts.sortName){ -_622=opts.sortName.split(","); -_623=opts.sortOrder.split(","); -} -var t=$("
                                        ").appendTo(_61f); -for(var i=0;i<_620.length;i++){ -var tr=$("").appendTo($("tbody",t)); -var cols=_620[i]; -for(var j=0;j").appendTo(tr); -if(col.checkbox){ -td.attr("field",col.field); -$("
                                        ").html("").appendTo(td); -}else{ -if(col.field){ -td.attr("field",col.field); -td.append("
                                         
                                        "); -td.find("span:first").html(col.title); -var cell=td.find("div.datagrid-cell"); -var pos=_5cc(_622,col.field); -if(pos>=0){ -cell.addClass("datagrid-sort-"+_623[pos]); -} -if(col.sortable){ -cell.addClass("datagrid-sort"); -} -if(col.resizable==false){ -cell.attr("resizable","false"); -} -if(col.width){ -var _624=$.parser.parseValue("width",col.width,dc.view,opts.scrollbarSize); -cell._outerWidth(_624-1); -col.boxWidth=parseInt(cell[0].style.width); -col.deltaWidth=_624-col.boxWidth; -}else{ -col.auto=true; -} -cell.css("text-align",(col.halign||col.align||"")); -col.cellClass=_616.cellClassPrefix+"-"+col.field.replace(/[\.|\s]/g,"-"); -cell.addClass(col.cellClass).css("width",""); -}else{ -$("
                                        ").html(col.title).appendTo(td); -} -} -if(col.hidden){ -td.hide(); -} -} -} -if(_621&&opts.rownumbers){ -var td=$("
                                        "); -if($("tr",t).length==0){ -td.wrap("").parent().appendTo($("tbody",t)); -}else{ -td.prependTo($("tr:first",t)); -} -} -}; -function _61b(){ -var _625=[]; -var _626=_627(_615,true).concat(_627(_615)); -for(var i=0;i<_626.length;i++){ -var col=_628(_615,_626[i]); -if(col&&!col.checkbox){ -_625.push(["."+col.cellClass,col.boxWidth?col.boxWidth+"px":"auto"]); -} -} -_616.ss.add(_625); -_616.ss.dirty(_616.cellSelectorPrefix); -_616.cellSelectorPrefix="."+_616.cellClassPrefix; -}; -}; -function _629(_62a){ -var _62b=$.data(_62a,"datagrid"); -var _62c=_62b.panel; -var opts=_62b.options; -var dc=_62b.dc; -var _62d=dc.header1.add(dc.header2); -_62d.find("input[type=checkbox]").unbind(".datagrid").bind("click.datagrid",function(e){ -if(opts.singleSelect&&opts.selectOnCheck){ -return false; -} -if($(this).is(":checked")){ -_6c4(_62a); -}else{ -_6ca(_62a); -} -e.stopPropagation(); -}); -var _62e=_62d.find("div.datagrid-cell"); -_62e.closest("td").unbind(".datagrid").bind("mouseenter.datagrid",function(){ -if(_62b.resizing){ -return; -} -$(this).addClass("datagrid-header-over"); -}).bind("mouseleave.datagrid",function(){ -$(this).removeClass("datagrid-header-over"); -}).bind("contextmenu.datagrid",function(e){ -var _62f=$(this).attr("field"); -opts.onHeaderContextMenu.call(_62a,e,_62f); -}); -_62e.unbind(".datagrid").bind("click.datagrid",function(e){ -var p1=$(this).offset().left+5; -var p2=$(this).offset().left+$(this)._outerWidth()-5; -if(e.pageXp1){ -_64f(_62a,$(this).parent().attr("field")); -} -}).bind("dblclick.datagrid",function(e){ -var p1=$(this).offset().left+5; -var p2=$(this).offset().left+$(this)._outerWidth()-5; -var cond=opts.resizeHandle=="right"?(e.pageX>p2):(opts.resizeHandle=="left"?(e.pageXp2)); -if(cond){ -var _630=$(this).parent().attr("field"); -var col=_628(_62a,_630); -if(col.resizable==false){ -return; -} -$(_62a).datagrid("autoSizeColumn",_630); -col.auto=false; -} -}); -var _631=opts.resizeHandle=="right"?"e":(opts.resizeHandle=="left"?"w":"e,w"); -_62e.each(function(){ -$(this).resizable({handles:_631,disabled:($(this).attr("resizable")?$(this).attr("resizable")=="false":false),minWidth:25,onStartResize:function(e){ -_62b.resizing=true; -_62d.css("cursor",$("body").css("cursor")); -if(!_62b.proxy){ -_62b.proxy=$("
                                        ").appendTo(dc.view); -} -_62b.proxy.css({left:e.pageX-$(_62c).offset().left-1,display:"none"}); -setTimeout(function(){ -if(_62b.proxy){ -_62b.proxy.show(); -} -},500); -},onResize:function(e){ -_62b.proxy.css({left:e.pageX-$(_62c).offset().left-1,display:"block"}); -return false; -},onStopResize:function(e){ -_62d.css("cursor",""); -$(this).css("height",""); -var _632=$(this).parent().attr("field"); -var col=_628(_62a,_632); -col.width=$(this)._outerWidth(); -col.boxWidth=col.width-col.deltaWidth; -col.auto=undefined; -$(this).css("width",""); -$(_62a).datagrid("fixColumnSize",_632); -_62b.proxy.remove(); -_62b.proxy=null; -if($(this).parents("div:first.datagrid-header").parent().hasClass("datagrid-view1")){ -_5e6(_62a); -} -$(_62a).datagrid("fitColumns"); -opts.onResizeColumn.call(_62a,_632,col.width); -setTimeout(function(){ -_62b.resizing=false; -},0); -}}); -}); -var bb=dc.body1.add(dc.body2); -bb.unbind(); -for(var _633 in opts.rowEvents){ -bb.bind(_633,opts.rowEvents[_633]); -} -dc.body1.bind("mousewheel DOMMouseScroll",function(e){ -var e1=e.originalEvent||window.event; -var _634=e1.wheelDelta||e1.detail*(-1); -var dg=$(e.target).closest("div.datagrid-view").children(".datagrid-f"); -var dc=dg.data("datagrid").dc; -dc.body2.scrollTop(dc.body2.scrollTop()-_634); -}); -dc.body2.bind("scroll",function(){ -var b1=dc.view1.children("div.datagrid-body"); -b1.scrollTop($(this).scrollTop()); -var c1=dc.body1.children(":first"); -var c2=dc.body2.children(":first"); -if(c1.length&&c2.length){ -var top1=c1.offset().top; -var top2=c2.offset().top; -if(top1!=top2){ -b1.scrollTop(b1.scrollTop()+top1-top2); -} -} -dc.view2.children("div.datagrid-header,div.datagrid-footer")._scrollLeft($(this)._scrollLeft()); -dc.body2.children("table.datagrid-btable-frozen").css("left",-$(this)._scrollLeft()); -}); -}; -function _635(_636){ -return function(e){ -var tr=_637(e.target); -if(!tr){ -return; -} -var _638=_639(tr); -if($.data(_638,"datagrid").resizing){ -return; -} -var _63a=_63b(tr); -if(_636){ -_63c(_638,_63a); -}else{ -var opts=$.data(_638,"datagrid").options; -opts.finder.getTr(_638,_63a).removeClass("datagrid-row-over"); -} -}; -}; -function _63d(e){ -var tr=_637(e.target); -if(!tr){ -return; -} -var _63e=_639(tr); -var opts=$.data(_63e,"datagrid").options; -var _63f=_63b(tr); -var tt=$(e.target); -if(tt.parent().hasClass("datagrid-cell-check")){ -if(opts.singleSelect&&opts.selectOnCheck){ -tt._propAttr("checked",!tt.is(":checked")); -_640(_63e,_63f); -}else{ -if(tt.is(":checked")){ -tt._propAttr("checked",false); -_640(_63e,_63f); -}else{ -tt._propAttr("checked",true); -_641(_63e,_63f); -} -} -}else{ -var row=opts.finder.getRow(_63e,_63f); -var td=tt.closest("td[field]",tr); -if(td.length){ -var _642=td.attr("field"); -opts.onClickCell.call(_63e,_63f,_642,row[_642]); -} -if(opts.singleSelect==true){ -_643(_63e,_63f); -}else{ -if(opts.ctrlSelect){ -if(e.ctrlKey){ -if(tr.hasClass("datagrid-row-selected")){ -_644(_63e,_63f); -}else{ -_643(_63e,_63f); -} -}else{ -if(e.shiftKey){ -$(_63e).datagrid("clearSelections"); -var _645=Math.min(opts.lastSelectedIndex||0,_63f); -var _646=Math.max(opts.lastSelectedIndex||0,_63f); -for(var i=_645;i<=_646;i++){ -_643(_63e,i); -} -}else{ -$(_63e).datagrid("clearSelections"); -_643(_63e,_63f); -opts.lastSelectedIndex=_63f; -} -} -}else{ -if(tr.hasClass("datagrid-row-selected")){ -_644(_63e,_63f); -}else{ -_643(_63e,_63f); -} -} -} -opts.onClickRow.apply(_63e,_5d0(_63e,[_63f,row])); -} -}; -function _647(e){ -var tr=_637(e.target); -if(!tr){ -return; -} -var _648=_639(tr); -var opts=$.data(_648,"datagrid").options; -var _649=_63b(tr); -var row=opts.finder.getRow(_648,_649); -var td=$(e.target).closest("td[field]",tr); -if(td.length){ -var _64a=td.attr("field"); -opts.onDblClickCell.call(_648,_649,_64a,row[_64a]); -} -opts.onDblClickRow.apply(_648,_5d0(_648,[_649,row])); -}; -function _64b(e){ -var tr=_637(e.target); -if(tr){ -var _64c=_639(tr); -var opts=$.data(_64c,"datagrid").options; -var _64d=_63b(tr); -var row=opts.finder.getRow(_64c,_64d); -opts.onRowContextMenu.call(_64c,e,_64d,row); -}else{ -var body=_637(e.target,".datagrid-body"); -if(body){ -var _64c=_639(body); -var opts=$.data(_64c,"datagrid").options; -opts.onRowContextMenu.call(_64c,e,-1,null); -} -} -}; -function _639(t){ -return $(t).closest("div.datagrid-view").children(".datagrid-f")[0]; -}; -function _637(t,_64e){ -var tr=$(t).closest(_64e||"tr.datagrid-row"); -if(tr.length&&tr.parent().length){ -return tr; -}else{ -return undefined; -} -}; -function _63b(tr){ -if(tr.attr("datagrid-row-index")){ -return parseInt(tr.attr("datagrid-row-index")); -}else{ -return tr.attr("node-id"); -} -}; -function _64f(_650,_651){ -var _652=$.data(_650,"datagrid"); -var opts=_652.options; -_651=_651||{}; -var _653={sortName:opts.sortName,sortOrder:opts.sortOrder}; -if(typeof _651=="object"){ -$.extend(_653,_651); -} -var _654=[]; -var _655=[]; -if(_653.sortName){ -_654=_653.sortName.split(","); -_655=_653.sortOrder.split(","); -} -if(typeof _651=="string"){ -var _656=_651; -var col=_628(_650,_656); -if(!col.sortable||_652.resizing){ -return; -} -var _657=col.order||"asc"; -var pos=_5cc(_654,_656); -if(pos>=0){ -var _658=_655[pos]=="asc"?"desc":"asc"; -if(opts.multiSort&&_658==_657){ -_654.splice(pos,1); -_655.splice(pos,1); -}else{ -_655[pos]=_658; -} -}else{ -if(opts.multiSort){ -_654.push(_656); -_655.push(_657); -}else{ -_654=[_656]; -_655=[_657]; -} -} -_653.sortName=_654.join(","); -_653.sortOrder=_655.join(","); -} -if(opts.onBeforeSortColumn.call(_650,_653.sortName,_653.sortOrder)==false){ -return; -} -$.extend(opts,_653); -var dc=_652.dc; -var _659=dc.header1.add(dc.header2); -_659.find("div.datagrid-cell").removeClass("datagrid-sort-asc datagrid-sort-desc"); -for(var i=0;i<_654.length;i++){ -var col=_628(_650,_654[i]); -_659.find("div."+col.cellClass).addClass("datagrid-sort-"+_655[i]); -} -if(opts.remoteSort){ -_65a(_650); -}else{ -_65b(_650,$(_650).datagrid("getData")); -} -opts.onSortColumn.call(_650,opts.sortName,opts.sortOrder); -}; -function _65c(_65d){ -var _65e=$.data(_65d,"datagrid"); -var opts=_65e.options; -var dc=_65e.dc; -var _65f=dc.view2.children("div.datagrid-header"); -dc.body2.css("overflow-x",""); -_660(); -_661(); -_662(); -_660(true); -if(_65f.width()>=_65f.find("table").width()){ -dc.body2.css("overflow-x","hidden"); -} -function _662(){ -if(!opts.fitColumns){ -return; -} -if(!_65e.leftWidth){ -_65e.leftWidth=0; -} -var _663=0; -var cc=[]; -var _664=_627(_65d,false); -for(var i=0;i<_664.length;i++){ -var col=_628(_65d,_664[i]); -if(_665(col)){ -_663+=col.width; -cc.push({field:col.field,col:col,addingWidth:0}); -} -} -if(!_663){ -return; -} -cc[cc.length-1].addingWidth-=_65e.leftWidth; -var _666=_65f.children("div.datagrid-header-inner").show(); -var _667=_65f.width()-_65f.find("table").width()-opts.scrollbarSize+_65e.leftWidth; -var rate=_667/_663; -if(!opts.showHeader){ -_666.hide(); -} -for(var i=0;i0){ -c.col.boxWidth+=c.addingWidth; -c.col.width+=c.addingWidth; -} -} -_65e.leftWidth=_667; -$(_65d).datagrid("fixColumnSize"); -}; -function _661(){ -var _669=false; -var _66a=_627(_65d,true).concat(_627(_65d,false)); -$.map(_66a,function(_66b){ -var col=_628(_65d,_66b); -if(String(col.width||"").indexOf("%")>=0){ -var _66c=$.parser.parseValue("width",col.width,dc.view,opts.scrollbarSize)-col.deltaWidth; -if(_66c>0){ -col.boxWidth=_66c; -_669=true; -} -} -}); -if(_669){ -$(_65d).datagrid("fixColumnSize"); -} -}; -function _660(fit){ -var _66d=dc.header1.add(dc.header2).find(".datagrid-cell-group"); -if(_66d.length){ -_66d.each(function(){ -$(this)._outerWidth(fit?$(this).parent().width():10); -}); -if(fit){ -_5e6(_65d); -} -} -}; -function _665(col){ -if(String(col.width||"").indexOf("%")>=0){ -return false; -} -if(!col.hidden&&!col.checkbox&&!col.auto&&!col.fixed){ -return true; -} -}; -}; -function _66e(_66f,_670){ -var _671=$.data(_66f,"datagrid"); -var opts=_671.options; -var dc=_671.dc; -var tmp=$("
                                        ").appendTo("body"); -if(_670){ -_5e1(_670); -$(_66f).datagrid("fitColumns"); -}else{ -var _672=false; -var _673=_627(_66f,true).concat(_627(_66f,false)); -for(var i=0;i<_673.length;i++){ -var _670=_673[i]; -var col=_628(_66f,_670); -if(col.auto){ -_5e1(_670); -_672=true; -} -} -if(_672){ -$(_66f).datagrid("fitColumns"); -} -} -tmp.remove(); -function _5e1(_674){ -var _675=dc.view.find("div.datagrid-header td[field=\""+_674+"\"] div.datagrid-cell"); -_675.css("width",""); -var col=$(_66f).datagrid("getColumnOption",_674); -col.width=undefined; -col.boxWidth=undefined; -col.auto=true; -$(_66f).datagrid("fixColumnSize",_674); -var _676=Math.max(_677("header"),_677("allbody"),_677("allfooter"))+1; -_675._outerWidth(_676-1); -col.width=_676; -col.boxWidth=parseInt(_675[0].style.width); -col.deltaWidth=_676-col.boxWidth; -_675.css("width",""); -$(_66f).datagrid("fixColumnSize",_674); -opts.onResizeColumn.call(_66f,_674,col.width); -function _677(type){ -var _678=0; -if(type=="header"){ -_678=_679(_675); -}else{ -opts.finder.getTr(_66f,0,type).find("td[field=\""+_674+"\"] div.datagrid-cell").each(function(){ -var w=_679($(this)); -if(_678=0){ -var _692=col.field||""; -for(var c=0;c<(col.colspan||1);c++){ -for(var r=0;r<(col.rowspan||1);r++){ -aa[_68f+r][_690]=_692; -} -_690++; -} -} -}); -} -return aa[aa.length-1]; -function _68e(){ -var _693=0; -$.map(_68c[0],function(col){ -_693+=col.colspan||1; -}); -return _693; -}; -function _691(a){ -for(var i=0;ib?1:-1); -}; -r=_698(r1[sn],r2[sn])*(so=="asc"?1:-1); -if(r!=0){ -return r; -} -} -return r; -}); -} -if(opts.view.onBeforeRender){ -opts.view.onBeforeRender.call(opts.view,_694,data.rows); -} -opts.view.render.call(opts.view,_694,dc.body2,false); -opts.view.render.call(opts.view,_694,dc.body1,true); -if(opts.showFooter){ -opts.view.renderFooter.call(opts.view,_694,dc.footer2,false); -opts.view.renderFooter.call(opts.view,_694,dc.footer1,true); -} -if(opts.view.onAfterRender){ -opts.view.onAfterRender.call(opts.view,_694); -} -_695.ss.clean(); -var _699=$(_694).datagrid("getPager"); -if(_699.length){ -var _69a=_699.pagination("options"); -if(_69a.total!=data.total){ -_699.pagination("refresh",{total:data.total}); -if(opts.pageNumber!=_69a.pageNumber&&_69a.pageNumber>0){ -opts.pageNumber=_69a.pageNumber; -_65a(_694); -} -} -} -_5f7(_694); -dc.body2.triggerHandler("scroll"); -$(_694).datagrid("setSelectionState"); -$(_694).datagrid("autoSizeColumn"); -opts.onLoadSuccess.call(_694,data); -}; -function _69b(_69c){ -var _69d=$.data(_69c,"datagrid"); -var opts=_69d.options; -var dc=_69d.dc; -dc.header1.add(dc.header2).find("input[type=checkbox]")._propAttr("checked",false); -if(opts.idField){ -var _69e=$.data(_69c,"treegrid")?true:false; -var _69f=opts.onSelect; -var _6a0=opts.onCheck; -opts.onSelect=opts.onCheck=function(){ -}; -var rows=opts.finder.getRows(_69c); -for(var i=0;i_6b1.height()-18){ -_6b1.scrollTop(_6b1.scrollTop()+top+tr._outerHeight()-_6b1.height()+18); -} -} -} -}; -function _63c(_6b3,_6b4){ -var _6b5=$.data(_6b3,"datagrid"); -var opts=_6b5.options; -opts.finder.getTr(_6b3,_6b5.highlightIndex).removeClass("datagrid-row-over"); -opts.finder.getTr(_6b3,_6b4).addClass("datagrid-row-over"); -_6b5.highlightIndex=_6b4; -}; -function _643(_6b6,_6b7,_6b8){ -var _6b9=$.data(_6b6,"datagrid"); -var opts=_6b9.options; -var row=opts.finder.getRow(_6b6,_6b7); -if(opts.onBeforeSelect.apply(_6b6,_5d0(_6b6,[_6b7,row]))==false){ -return; -} -if(opts.singleSelect){ -_6ba(_6b6,true); -_6b9.selectedRows=[]; -} -if(!_6b8&&opts.checkOnSelect){ -_640(_6b6,_6b7,true); -} -if(opts.idField){ -_5cf(_6b9.selectedRows,opts.idField,row); -} -opts.finder.getTr(_6b6,_6b7).addClass("datagrid-row-selected"); -opts.onSelect.apply(_6b6,_5d0(_6b6,[_6b7,row])); -_6ac(_6b6,_6b7); -}; -function _644(_6bb,_6bc,_6bd){ -var _6be=$.data(_6bb,"datagrid"); -var dc=_6be.dc; -var opts=_6be.options; -var row=opts.finder.getRow(_6bb,_6bc); -if(opts.onBeforeUnselect.apply(_6bb,_5d0(_6bb,[_6bc,row]))==false){ -return; -} -if(!_6bd&&opts.checkOnSelect){ -_641(_6bb,_6bc,true); -} -opts.finder.getTr(_6bb,_6bc).removeClass("datagrid-row-selected"); -if(opts.idField){ -_5cd(_6be.selectedRows,opts.idField,row[opts.idField]); -} -opts.onUnselect.apply(_6bb,_5d0(_6bb,[_6bc,row])); -}; -function _6bf(_6c0,_6c1){ -var _6c2=$.data(_6c0,"datagrid"); -var opts=_6c2.options; -var rows=opts.finder.getRows(_6c0); -var _6c3=$.data(_6c0,"datagrid").selectedRows; -if(!_6c1&&opts.checkOnSelect){ -_6c4(_6c0,true); -} -opts.finder.getTr(_6c0,"","allbody").addClass("datagrid-row-selected"); -if(opts.idField){ -for(var _6c5=0;_6c5"); -cell.children("table").bind("click dblclick contextmenu",function(e){ -e.stopPropagation(); -}); -$.data(cell[0],"datagrid.editor",{actions:_6fb,target:_6fb.init(cell.find("td"),_6fa),field:_6f8,type:_6f9,oldHtml:_6fc}); -} -} -}); -_5f7(_6f6,_6f7,true); -}; -function _6ed(_6fe,_6ff){ -var opts=$.data(_6fe,"datagrid").options; -var tr=opts.finder.getTr(_6fe,_6ff); -tr.children("td").each(function(){ -var cell=$(this).find("div.datagrid-editable"); -if(cell.length){ -var ed=$.data(cell[0],"datagrid.editor"); -if(ed.actions.destroy){ -ed.actions.destroy(ed.target); -} -cell.html(ed.oldHtml); -$.removeData(cell[0],"datagrid.editor"); -cell.removeClass("datagrid-editable"); -cell.css("width",""); -} -}); -}; -function _6e0(_700,_701){ -var tr=$.data(_700,"datagrid").options.finder.getTr(_700,_701); -if(!tr.hasClass("datagrid-row-editing")){ -return true; -} -var vbox=tr.find(".validatebox-text"); -vbox.validatebox("validate"); -vbox.trigger("mouseleave"); -var _702=tr.find(".validatebox-invalid"); -return _702.length==0; -}; -function _703(_704,_705){ -var _706=$.data(_704,"datagrid").insertedRows; -var _707=$.data(_704,"datagrid").deletedRows; -var _708=$.data(_704,"datagrid").updatedRows; -if(!_705){ -var rows=[]; -rows=rows.concat(_706); -rows=rows.concat(_707); -rows=rows.concat(_708); -return rows; -}else{ -if(_705=="inserted"){ -return _706; -}else{ -if(_705=="deleted"){ -return _707; -}else{ -if(_705=="updated"){ -return _708; -} -} -} -} -return []; -}; -function _709(_70a,_70b){ -var _70c=$.data(_70a,"datagrid"); -var opts=_70c.options; -var data=_70c.data; -var _70d=_70c.insertedRows; -var _70e=_70c.deletedRows; -$(_70a).datagrid("cancelEdit",_70b); -var row=opts.finder.getRow(_70a,_70b); -if(_5cc(_70d,row)>=0){ -_5cd(_70d,row); -}else{ -_70e.push(row); -} -_5cd(_70c.selectedRows,opts.idField,row[opts.idField]); -_5cd(_70c.checkedRows,opts.idField,row[opts.idField]); -opts.view.deleteRow.call(opts.view,_70a,_70b); -if(opts.height=="auto"){ -_5f7(_70a); -} -$(_70a).datagrid("getPager").pagination("refresh",{total:data.total}); -}; -function _70f(_710,_711){ -var data=$.data(_710,"datagrid").data; -var view=$.data(_710,"datagrid").options.view; -var _712=$.data(_710,"datagrid").insertedRows; -view.insertRow.call(view,_710,_711.index,_711.row); -_712.push(_711.row); -$(_710).datagrid("getPager").pagination("refresh",{total:data.total}); -}; -function _713(_714,row){ -var data=$.data(_714,"datagrid").data; -var view=$.data(_714,"datagrid").options.view; -var _715=$.data(_714,"datagrid").insertedRows; -view.insertRow.call(view,_714,null,row); -_715.push(row); -$(_714).datagrid("getPager").pagination("refresh",{total:data.total}); -}; -function _716(_717){ -var _718=$.data(_717,"datagrid"); -var data=_718.data; -var rows=data.rows; -var _719=[]; -for(var i=0;i=0){ -(_726=="s"?_643:_640)(_71d,_727,true); -} -} -}; -for(var i=0;i0){ -$(this).datagrid("loadData",data); -}else{ -opts.view.renderEmptyRow(this); -$(this).datagrid("autoSizeColumn"); -} -} -_65a(this); -}); -}; -function _737(_738){ -var _739={}; -$.map(_738,function(name){ -_739[name]=_73a(name); -}); -return _739; -function _73a(name){ -function isA(_73b){ -return $.data($(_73b)[0],name)!=undefined; -}; -return {init:function(_73c,_73d){ -var _73e=$("").appendTo(_73c); -if(_73e[name]&&name!="text"){ -return _73e[name](_73d); -}else{ -return _73e; -} -},destroy:function(_73f){ -if(isA(_73f,name)){ -$(_73f)[name]("destroy"); -} -},getValue:function(_740){ -if(isA(_740,name)){ -var opts=$(_740)[name]("options"); -if(opts.multiple){ -return $(_740)[name]("getValues").join(opts.separator); -}else{ -return $(_740)[name]("getValue"); -} -}else{ -return $(_740).val(); -} -},setValue:function(_741,_742){ -if(isA(_741,name)){ -var opts=$(_741)[name]("options"); -if(opts.multiple){ -if(_742){ -$(_741)[name]("setValues",_742.split(opts.separator)); -}else{ -$(_741)[name]("clear"); -} -}else{ -$(_741)[name]("setValue",_742); -} -}else{ -$(_741).val(_742); -} -},resize:function(_743,_744){ -if(isA(_743,name)){ -$(_743)[name]("resize",_744); -}else{ -$(_743)._outerWidth(_744)._outerHeight(22); -} -}}; -}; -}; -var _745=$.extend({},_737(["text","textbox","numberbox","numberspinner","combobox","combotree","combogrid","datebox","datetimebox","timespinner","datetimespinner"]),{textarea:{init:function(_746,_747){ -var _748=$("").appendTo(_746); -return _748; -},getValue:function(_749){ -return $(_749).val(); -},setValue:function(_74a,_74b){ -$(_74a).val(_74b); -},resize:function(_74c,_74d){ -$(_74c)._outerWidth(_74d); -}},checkbox:{init:function(_74e,_74f){ -var _750=$("").appendTo(_74e); -_750.val(_74f.on); -_750.attr("offval",_74f.off); -return _750; -},getValue:function(_751){ -if($(_751).is(":checked")){ -return $(_751).val(); -}else{ -return $(_751).attr("offval"); -} -},setValue:function(_752,_753){ -var _754=false; -if($(_752).val()==_753){ -_754=true; -} -$(_752)._propAttr("checked",_754); -}},validatebox:{init:function(_755,_756){ -var _757=$("").appendTo(_755); -_757.validatebox(_756); -return _757; -},destroy:function(_758){ -$(_758).validatebox("destroy"); -},getValue:function(_759){ -return $(_759).val(); -},setValue:function(_75a,_75b){ -$(_75a).val(_75b); -},resize:function(_75c,_75d){ -$(_75c)._outerWidth(_75d)._outerHeight(22); -}}}); -$.fn.datagrid.methods={options:function(jq){ -var _75e=$.data(jq[0],"datagrid").options; -var _75f=$.data(jq[0],"datagrid").panel.panel("options"); -var opts=$.extend(_75e,{width:_75f.width,height:_75f.height,closed:_75f.closed,collapsed:_75f.collapsed,minimized:_75f.minimized,maximized:_75f.maximized}); -return opts; -},setSelectionState:function(jq){ -return jq.each(function(){ -_69b(this); -}); -},createStyleSheet:function(jq){ -return _5d2(jq[0]); -},getPanel:function(jq){ -return $.data(jq[0],"datagrid").panel; -},getPager:function(jq){ -return $.data(jq[0],"datagrid").panel.children("div.datagrid-pager"); -},getColumnFields:function(jq,_760){ -return _627(jq[0],_760); -},getColumnOption:function(jq,_761){ -return _628(jq[0],_761); -},resize:function(jq,_762){ -return jq.each(function(){ -_5e1(this,_762); -}); -},load:function(jq,_763){ -return jq.each(function(){ -var opts=$(this).datagrid("options"); -if(typeof _763=="string"){ -opts.url=_763; -_763=null; -} -opts.pageNumber=1; -var _764=$(this).datagrid("getPager"); -_764.pagination("refresh",{pageNumber:1}); -_65a(this,_763); -}); -},reload:function(jq,_765){ -return jq.each(function(){ -var opts=$(this).datagrid("options"); -if(typeof _765=="string"){ -opts.url=_765; -_765=null; -} -_65a(this,_765); -}); -},reloadFooter:function(jq,_766){ -return jq.each(function(){ -var opts=$.data(this,"datagrid").options; -var dc=$.data(this,"datagrid").dc; -if(_766){ -$.data(this,"datagrid").footer=_766; -} -if(opts.showFooter){ -opts.view.renderFooter.call(opts.view,this,dc.footer2,false); -opts.view.renderFooter.call(opts.view,this,dc.footer1,true); -if(opts.view.onAfterRender){ -opts.view.onAfterRender.call(opts.view,this); -} -$(this).datagrid("fixRowHeight"); -} -}); -},loading:function(jq){ -return jq.each(function(){ -var opts=$.data(this,"datagrid").options; -$(this).datagrid("getPager").pagination("loading"); -if(opts.loadMsg){ -var _767=$(this).datagrid("getPanel"); -if(!_767.children("div.datagrid-mask").length){ -$("
                                        ").appendTo(_767); -var msg=$("
                                        ").html(opts.loadMsg).appendTo(_767); -msg._outerHeight(40); -msg.css({marginLeft:(-msg.outerWidth()/2),lineHeight:(msg.height()+"px")}); -} -} -}); -},loaded:function(jq){ -return jq.each(function(){ -$(this).datagrid("getPager").pagination("loaded"); -var _768=$(this).datagrid("getPanel"); -_768.children("div.datagrid-mask-msg").remove(); -_768.children("div.datagrid-mask").remove(); -}); -},fitColumns:function(jq){ -return jq.each(function(){ -_65c(this); -}); -},fixColumnSize:function(jq,_769){ -return jq.each(function(){ -_67a(this,_769); -}); -},fixRowHeight:function(jq,_76a){ -return jq.each(function(){ -_5f7(this,_76a); -}); -},freezeRow:function(jq,_76b){ -return jq.each(function(){ -_604(this,_76b); -}); -},autoSizeColumn:function(jq,_76c){ -return jq.each(function(){ -_66e(this,_76c); -}); -},loadData:function(jq,data){ -return jq.each(function(){ -_65b(this,data); -_716(this); -}); -},getData:function(jq){ -return $.data(jq[0],"datagrid").data; -},getRows:function(jq){ -return $.data(jq[0],"datagrid").data.rows; -},getFooterRows:function(jq){ -return $.data(jq[0],"datagrid").footer; -},getRowIndex:function(jq,id){ -return _6a3(jq[0],id); -},getChecked:function(jq){ -return _6a9(jq[0]); -},getSelected:function(jq){ -var rows=_6a6(jq[0]); -return rows.length>0?rows[0]:null; -},getSelections:function(jq){ -return _6a6(jq[0]); -},clearSelections:function(jq){ -return jq.each(function(){ -var _76d=$.data(this,"datagrid"); -var _76e=_76d.selectedRows; -var _76f=_76d.checkedRows; -_76e.splice(0,_76e.length); -_6ba(this); -if(_76d.options.checkOnSelect){ -_76f.splice(0,_76f.length); -} -}); -},clearChecked:function(jq){ -return jq.each(function(){ -var _770=$.data(this,"datagrid"); -var _771=_770.selectedRows; -var _772=_770.checkedRows; -_772.splice(0,_772.length); -_6ca(this); -if(_770.options.selectOnCheck){ -_771.splice(0,_771.length); -} -}); -},scrollTo:function(jq,_773){ -return jq.each(function(){ -_6ac(this,_773); -}); -},highlightRow:function(jq,_774){ -return jq.each(function(){ -_63c(this,_774); -_6ac(this,_774); -}); -},selectAll:function(jq){ -return jq.each(function(){ -_6bf(this); -}); -},unselectAll:function(jq){ -return jq.each(function(){ -_6ba(this); -}); -},selectRow:function(jq,_775){ -return jq.each(function(){ -_643(this,_775); -}); -},selectRecord:function(jq,id){ -return jq.each(function(){ -var opts=$.data(this,"datagrid").options; -if(opts.idField){ -var _776=_6a3(this,id); -if(_776>=0){ -$(this).datagrid("selectRow",_776); -} -} -}); -},unselectRow:function(jq,_777){ -return jq.each(function(){ -_644(this,_777); -}); -},checkRow:function(jq,_778){ -return jq.each(function(){ -_640(this,_778); -}); -},uncheckRow:function(jq,_779){ -return jq.each(function(){ -_641(this,_779); -}); -},checkAll:function(jq){ -return jq.each(function(){ -_6c4(this); -}); -},uncheckAll:function(jq){ -return jq.each(function(){ -_6ca(this); -}); -},beginEdit:function(jq,_77a){ -return jq.each(function(){ -_6db(this,_77a); -}); -},endEdit:function(jq,_77b){ -return jq.each(function(){ -_6e1(this,_77b,false); -}); -},cancelEdit:function(jq,_77c){ -return jq.each(function(){ -_6e1(this,_77c,true); -}); -},getEditors:function(jq,_77d){ -return _6ee(jq[0],_77d); -},getEditor:function(jq,_77e){ -return _6f2(jq[0],_77e); -},refreshRow:function(jq,_77f){ -return jq.each(function(){ -var opts=$.data(this,"datagrid").options; -opts.view.refreshRow.call(opts.view,this,_77f); -}); -},validateRow:function(jq,_780){ -return _6e0(jq[0],_780); -},updateRow:function(jq,_781){ -return jq.each(function(){ -var opts=$.data(this,"datagrid").options; -opts.view.updateRow.call(opts.view,this,_781.index,_781.row); -}); -},appendRow:function(jq,row){ -return jq.each(function(){ -_713(this,row); -}); -},insertRow:function(jq,_782){ -return jq.each(function(){ -_70f(this,_782); -}); -},deleteRow:function(jq,_783){ -return jq.each(function(){ -_709(this,_783); -}); -},getChanges:function(jq,_784){ -return _703(jq[0],_784); -},acceptChanges:function(jq){ -return jq.each(function(){ -_71a(this); -}); -},rejectChanges:function(jq){ -return jq.each(function(){ -_71c(this); -}); -},mergeCells:function(jq,_785){ -return jq.each(function(){ -_72e(this,_785); -}); -},showColumn:function(jq,_786){ -return jq.each(function(){ -var _787=$(this).datagrid("getPanel"); -_787.find("td[field=\""+_786+"\"]").show(); -$(this).datagrid("getColumnOption",_786).hidden=false; -$(this).datagrid("fitColumns"); -}); -},hideColumn:function(jq,_788){ -return jq.each(function(){ -var _789=$(this).datagrid("getPanel"); -_789.find("td[field=\""+_788+"\"]").hide(); -$(this).datagrid("getColumnOption",_788).hidden=true; -$(this).datagrid("fitColumns"); -}); -},sort:function(jq,_78a){ -return jq.each(function(){ -_64f(this,_78a); -}); -},gotoPage:function(jq,_78b){ -return jq.each(function(){ -var _78c=this; -var page,cb; -if(typeof _78b=="object"){ -page=_78b.page; -cb=_78b.callback; -}else{ -page=_78b; -} -$(_78c).datagrid("options").pageNumber=page; -$(_78c).datagrid("getPager").pagination("refresh",{pageNumber:page}); -_65a(_78c,null,function(){ -if(cb){ -cb.call(_78c,page); -} -}); -}); -}}; -$.fn.datagrid.parseOptions=function(_78d){ -var t=$(_78d); -return $.extend({},$.fn.panel.parseOptions(_78d),$.parser.parseOptions(_78d,["url","toolbar","idField","sortName","sortOrder","pagePosition","resizeHandle",{sharedStyleSheet:"boolean",fitColumns:"boolean",autoRowHeight:"boolean",striped:"boolean",nowrap:"boolean"},{rownumbers:"boolean",singleSelect:"boolean",ctrlSelect:"boolean",checkOnSelect:"boolean",selectOnCheck:"boolean"},{pagination:"boolean",pageSize:"number",pageNumber:"number"},{multiSort:"boolean",remoteSort:"boolean",showHeader:"boolean",showFooter:"boolean"},{scrollbarSize:"number"}]),{pageList:(t.attr("pageList")?eval(t.attr("pageList")):undefined),loadMsg:(t.attr("loadMsg")!=undefined?t.attr("loadMsg"):undefined),rowStyler:(t.attr("rowStyler")?eval(t.attr("rowStyler")):undefined)}); -}; -$.fn.datagrid.parseData=function(_78e){ -var t=$(_78e); -var data={total:0,rows:[]}; -var _78f=t.datagrid("getColumnFields",true).concat(t.datagrid("getColumnFields",false)); -t.find("tbody tr").each(function(){ -data.total++; -var row={}; -$.extend(row,$.parser.parseOptions(this,["iconCls","state"])); -for(var i=0;i<_78f.length;i++){ -row[_78f[i]]=$(this).find("td:eq("+i+")").html(); -} -data.rows.push(row); -}); -return data; -}; -var _790={render:function(_791,_792,_793){ -var rows=$(_791).datagrid("getRows"); -$(_792).html(this.renderTable(_791,0,rows,_793)); -},renderFooter:function(_794,_795,_796){ -var opts=$.data(_794,"datagrid").options; -var rows=$.data(_794,"datagrid").footer||[]; -var _797=$(_794).datagrid("getColumnFields",_796); -var _798=[""]; -for(var i=0;i"); -_798.push(this.renderRow.call(this,_794,_797,_796,i,rows[i])); -_798.push(""); -} -_798.push("
                                        "); -$(_795).html(_798.join("")); -},renderTable:function(_799,_79a,rows,_79b){ -var _79c=$.data(_799,"datagrid"); -var opts=_79c.options; -if(_79b){ -if(!(opts.rownumbers||(opts.frozenColumns&&opts.frozenColumns.length))){ -return ""; -} -} -var _79d=$(_799).datagrid("getColumnFields",_79b); -var _79e=[""]; -for(var i=0;i"); -_79e.push(this.renderRow.call(this,_799,_79d,_79b,_79a,row)); -_79e.push(""); -_79a++; -} -_79e.push("
                                        "); -return _79e.join(""); -},renderRow:function(_7a3,_7a4,_7a5,_7a6,_7a7){ -var opts=$.data(_7a3,"datagrid").options; -var cc=[]; -if(_7a5&&opts.rownumbers){ -var _7a8=_7a6+1; -if(opts.pagination){ -_7a8+=(opts.pageNumber-1)*opts.pageSize; -} -cc.push("
                                        "+_7a8+"
                                        "); -} -for(var i=0;i<_7a4.length;i++){ -var _7a9=_7a4[i]; -var col=$(_7a3).datagrid("getColumnOption",_7a9); -if(col){ -var _7aa=_7a7[_7a9]; -var css=col.styler?(col.styler(_7aa,_7a7,_7a6)||""):""; -var _7ab=""; -var _7ac=""; -if(typeof css=="string"){ -_7ac=css; -}else{ -if(css){ -_7ab=css["class"]||""; -_7ac=css["style"]||""; -} -} -var cls=_7ab?"class=\""+_7ab+"\"":""; -var _7ad=col.hidden?"style=\"display:none;"+_7ac+"\"":(_7ac?"style=\""+_7ac+"\"":""); -cc.push(""); -var _7ad=""; -if(!col.checkbox){ -if(col.align){ -_7ad+="text-align:"+col.align+";"; -} -if(!opts.nowrap){ -_7ad+="white-space:normal;height:auto;"; -}else{ -if(opts.autoRowHeight){ -_7ad+="height:auto;"; -} -} -} -cc.push("
                                        "); -if(col.checkbox){ -cc.push(""); -}else{ -if(col.formatter){ -cc.push(col.formatter(_7aa,_7a7,_7a6)); -}else{ -cc.push(_7aa); -} -} -cc.push("
                                        "); -cc.push(""); -} -} -return cc.join(""); -},refreshRow:function(_7ae,_7af){ -this.updateRow.call(this,_7ae,_7af,{}); -},updateRow:function(_7b0,_7b1,row){ -var opts=$.data(_7b0,"datagrid").options; -var rows=$(_7b0).datagrid("getRows"); -var _7b2=_7b3(_7b1); -$.extend(rows[_7b1],row); -var _7b4=_7b3(_7b1); -var _7b5=_7b2.c; -var _7b6=_7b4.s; -var _7b7="datagrid-row "+(_7b1%2&&opts.striped?"datagrid-row-alt ":" ")+_7b4.c; -function _7b3(_7b8){ -var css=opts.rowStyler?opts.rowStyler.call(_7b0,_7b8,rows[_7b8]):""; -var _7b9=""; -var _7ba=""; -if(typeof css=="string"){ -_7ba=css; -}else{ -if(css){ -_7b9=css["class"]||""; -_7ba=css["style"]||""; -} -} -return {c:_7b9,s:_7ba}; -}; -function _7bb(_7bc){ -var _7bd=$(_7b0).datagrid("getColumnFields",_7bc); -var tr=opts.finder.getTr(_7b0,_7b1,"body",(_7bc?1:2)); -var _7be=tr.find("div.datagrid-cell-check input[type=checkbox]").is(":checked"); -tr.html(this.renderRow.call(this,_7b0,_7bd,_7bc,_7b1,rows[_7b1])); -tr.attr("style",_7b6).removeClass(_7b5).addClass(_7b7); -if(_7be){ -tr.find("div.datagrid-cell-check input[type=checkbox]")._propAttr("checked",true); -} -}; -_7bb.call(this,true); -_7bb.call(this,false); -$(_7b0).datagrid("fixRowHeight",_7b1); -},insertRow:function(_7bf,_7c0,row){ -var _7c1=$.data(_7bf,"datagrid"); -var opts=_7c1.options; -var dc=_7c1.dc; -var data=_7c1.data; -if(_7c0==undefined||_7c0==null){ -_7c0=data.rows.length; -} -if(_7c0>data.rows.length){ -_7c0=data.rows.length; -} -function _7c2(_7c3){ -var _7c4=_7c3?1:2; -for(var i=data.rows.length-1;i>=_7c0;i--){ -var tr=opts.finder.getTr(_7bf,i,"body",_7c4); -tr.attr("datagrid-row-index",i+1); -tr.attr("id",_7c1.rowIdPrefix+"-"+_7c4+"-"+(i+1)); -if(_7c3&&opts.rownumbers){ -var _7c5=i+2; -if(opts.pagination){ -_7c5+=(opts.pageNumber-1)*opts.pageSize; -} -tr.find("div.datagrid-cell-rownumber").html(_7c5); -} -if(opts.striped){ -tr.removeClass("datagrid-row-alt").addClass((i+1)%2?"datagrid-row-alt":""); -} -} -}; -function _7c6(_7c7){ -var _7c8=_7c7?1:2; -var _7c9=$(_7bf).datagrid("getColumnFields",_7c7); -var _7ca=_7c1.rowIdPrefix+"-"+_7c8+"-"+_7c0; -var tr=""; -if(_7c0>=data.rows.length){ -if(data.rows.length){ -opts.finder.getTr(_7bf,"","last",_7c8).after(tr); -}else{ -var cc=_7c7?dc.body1:dc.body2; -cc.html(""+tr+"
                                        "); -} -}else{ -opts.finder.getTr(_7bf,_7c0+1,"body",_7c8).before(tr); -} -}; -_7c2.call(this,true); -_7c2.call(this,false); -_7c6.call(this,true); -_7c6.call(this,false); -data.total+=1; -data.rows.splice(_7c0,0,row); -this.refreshRow.call(this,_7bf,_7c0); -},deleteRow:function(_7cb,_7cc){ -var _7cd=$.data(_7cb,"datagrid"); -var opts=_7cd.options; -var data=_7cd.data; -function _7ce(_7cf){ -var _7d0=_7cf?1:2; -for(var i=_7cc+1;itable>tbody>tr[datagrid-row-index="+_7df+"]"); -} -return tr; -}else{ -if(type=="footer"){ -return (_7e0==1?dc.footer1:dc.footer2).find(">table>tbody>tr[datagrid-row-index="+_7df+"]"); -}else{ -if(type=="selected"){ -return (_7e0==1?dc.body1:dc.body2).find(">table>tbody>tr.datagrid-row-selected"); -}else{ -if(type=="highlight"){ -return (_7e0==1?dc.body1:dc.body2).find(">table>tbody>tr.datagrid-row-over"); -}else{ -if(type=="checked"){ -return (_7e0==1?dc.body1:dc.body2).find(">table>tbody>tr.datagrid-row-checked"); -}else{ -if(type=="editing"){ -return (_7e0==1?dc.body1:dc.body2).find(">table>tbody>tr.datagrid-row-editing"); -}else{ -if(type=="last"){ -return (_7e0==1?dc.body1:dc.body2).find(">table>tbody>tr[datagrid-row-index]:last"); -}else{ -if(type=="allbody"){ -return (_7e0==1?dc.body1:dc.body2).find(">table>tbody>tr[datagrid-row-index]"); -}else{ -if(type=="allfooter"){ -return (_7e0==1?dc.footer1:dc.footer2).find(">table>tbody>tr[datagrid-row-index]"); -} -} -} -} -} -} -} -} -} -} -},getRow:function(_7e2,p){ -var _7e3=(typeof p=="object")?p.attr("datagrid-row-index"):p; -return $.data(_7e2,"datagrid").data.rows[parseInt(_7e3)]; -},getRows:function(_7e4){ -return $(_7e4).datagrid("getRows"); -}},view:_790,onBeforeLoad:function(_7e5){ -},onLoadSuccess:function(){ -},onLoadError:function(){ -},onClickRow:function(_7e6,_7e7){ -},onDblClickRow:function(_7e8,_7e9){ -},onClickCell:function(_7ea,_7eb,_7ec){ -},onDblClickCell:function(_7ed,_7ee,_7ef){ -},onBeforeSortColumn:function(sort,_7f0){ -},onSortColumn:function(sort,_7f1){ -},onResizeColumn:function(_7f2,_7f3){ -},onBeforeSelect:function(_7f4,_7f5){ -},onSelect:function(_7f6,_7f7){ -},onBeforeUnselect:function(_7f8,_7f9){ -},onUnselect:function(_7fa,_7fb){ -},onSelectAll:function(rows){ -},onUnselectAll:function(rows){ -},onBeforeCheck:function(_7fc,_7fd){ -},onCheck:function(_7fe,_7ff){ -},onBeforeUncheck:function(_800,_801){ -},onUncheck:function(_802,_803){ -},onCheckAll:function(rows){ -},onUncheckAll:function(rows){ -},onBeforeEdit:function(_804,_805){ -},onBeginEdit:function(_806,_807){ -},onEndEdit:function(_808,_809,_80a){ -},onAfterEdit:function(_80b,_80c,_80d){ -},onCancelEdit:function(_80e,_80f){ -},onHeaderContextMenu:function(e,_810){ -},onRowContextMenu:function(e,_811,_812){ -}}); -})(jQuery); -(function($){ -var _813; -$(document).unbind(".propertygrid").bind("mousedown.propertygrid",function(e){ -var p=$(e.target).closest("div.datagrid-view,div.combo-panel"); -if(p.length){ -return; -} -_814(_813); -_813=undefined; -}); -function _815(_816){ -var _817=$.data(_816,"propertygrid"); -var opts=$.data(_816,"propertygrid").options; -$(_816).datagrid($.extend({},opts,{cls:"propertygrid",view:(opts.showGroup?opts.groupView:opts.view),onBeforeEdit:function(_818,row){ -if(opts.onBeforeEdit.call(_816,_818,row)==false){ -return false; -} -var dg=$(this); -var row=dg.datagrid("getRows")[_818]; -var col=dg.datagrid("getColumnOption","value"); -col.editor=row.editor; -},onClickCell:function(_819,_81a,_81b){ -if(_813!=this){ -_814(_813); -_813=this; -} -if(opts.editIndex!=_819){ -_814(_813); -$(this).datagrid("beginEdit",_819); -var ed=$(this).datagrid("getEditor",{index:_819,field:_81a}); -if(!ed){ -ed=$(this).datagrid("getEditor",{index:_819,field:"value"}); -} -if(ed){ -var t=$(ed.target); -var _81c=t.data("textbox")?t.textbox("textbox"):t; -_81c.focus(); -opts.editIndex=_819; -} -} -opts.onClickCell.call(_816,_819,_81a,_81b); -},loadFilter:function(data){ -_814(this); -return opts.loadFilter.call(this,data); -}})); -}; -function _814(_81d){ -var t=$(_81d); -if(!t.length){ -return; -} -var opts=$.data(_81d,"propertygrid").options; -opts.finder.getTr(_81d,null,"editing").each(function(){ -var _81e=parseInt($(this).attr("datagrid-row-index")); -if(t.datagrid("validateRow",_81e)){ -t.datagrid("endEdit",_81e); -}else{ -t.datagrid("cancelEdit",_81e); -} -}); -opts.editIndex=undefined; -}; -$.fn.propertygrid=function(_81f,_820){ -if(typeof _81f=="string"){ -var _821=$.fn.propertygrid.methods[_81f]; -if(_821){ -return _821(this,_820); -}else{ -return this.datagrid(_81f,_820); -} -} -_81f=_81f||{}; -return this.each(function(){ -var _822=$.data(this,"propertygrid"); -if(_822){ -$.extend(_822.options,_81f); -}else{ -var opts=$.extend({},$.fn.propertygrid.defaults,$.fn.propertygrid.parseOptions(this),_81f); -opts.frozenColumns=$.extend(true,[],opts.frozenColumns); -opts.columns=$.extend(true,[],opts.columns); -$.data(this,"propertygrid",{options:opts}); -} -_815(this); -}); -}; -$.fn.propertygrid.methods={options:function(jq){ -return $.data(jq[0],"propertygrid").options; -}}; -$.fn.propertygrid.parseOptions=function(_823){ -return $.extend({},$.fn.datagrid.parseOptions(_823),$.parser.parseOptions(_823,[{showGroup:"boolean"}])); -}; -var _824=$.extend({},$.fn.datagrid.defaults.view,{render:function(_825,_826,_827){ -var _828=[]; -var _829=this.groups; -for(var i=0;i<_829.length;i++){ -_828.push(this.renderGroup.call(this,_825,i,_829[i],_827)); -} -$(_826).html(_828.join("")); -},renderGroup:function(_82a,_82b,_82c,_82d){ -var _82e=$.data(_82a,"datagrid"); -var opts=_82e.options; -var _82f=$(_82a).datagrid("getColumnFields",_82d); -var _830=[]; -_830.push("
                                        "); -if((_82d&&(opts.rownumbers||opts.frozenColumns.length))||(!_82d&&!(opts.rownumbers||opts.frozenColumns.length))){ -_830.push(""); -_830.push(" "); -_830.push(""); -} -if(!_82d){ -_830.push(""); -_830.push(opts.groupFormatter.call(_82a,_82c.value,_82c.rows)); -_830.push(""); -} -_830.push("
                                        "); -_830.push(""); -var _831=_82c.startIndex; -for(var j=0;j<_82c.rows.length;j++){ -var css=opts.rowStyler?opts.rowStyler.call(_82a,_831,_82c.rows[j]):""; -var _832=""; -var _833=""; -if(typeof css=="string"){ -_833=css; -}else{ -if(css){ -_832=css["class"]||""; -_833=css["style"]||""; -} -} -var cls="class=\"datagrid-row "+(_831%2&&opts.striped?"datagrid-row-alt ":" ")+_832+"\""; -var _834=_833?"style=\""+_833+"\"":""; -var _835=_82e.rowIdPrefix+"-"+(_82d?1:2)+"-"+_831; -_830.push(""); -_830.push(this.renderRow.call(this,_82a,_82f,_82d,_831,_82c.rows[j])); -_830.push(""); -_831++; -} -_830.push("
                                        "); -return _830.join(""); -},bindEvents:function(_836){ -var _837=$.data(_836,"datagrid"); -var dc=_837.dc; -var body=dc.body1.add(dc.body2); -var _838=($.data(body[0],"events")||$._data(body[0],"events")).click[0].handler; -body.unbind("click").bind("click",function(e){ -var tt=$(e.target); -var _839=tt.closest("span.datagrid-row-expander"); -if(_839.length){ -var _83a=_839.closest("div.datagrid-group").attr("group-index"); -if(_839.hasClass("datagrid-row-collapse")){ -$(_836).datagrid("collapseGroup",_83a); -}else{ -$(_836).datagrid("expandGroup",_83a); -} -}else{ -_838(e); -} -e.stopPropagation(); -}); -},onBeforeRender:function(_83b,rows){ -var _83c=$.data(_83b,"datagrid"); -var opts=_83c.options; -_83d(); -var _83e=[]; -for(var i=0;i"+".datagrid-group{height:"+opts.groupHeight+"px;overflow:hidden;font-weight:bold;border-bottom:1px solid #ccc;}"+".datagrid-group-title,.datagrid-group-expander{display:inline-block;vertical-align:bottom;height:100%;line-height:"+opts.groupHeight+"px;padding:0 4px;}"+".datagrid-group-expander{width:"+opts.expanderWidth+"px;text-align:center;padding:0}"+".datagrid-row-expander{margin:"+Math.floor((opts.groupHeight-16)/2)+"px 0;display:inline-block;width:16px;height:16px;cursor:pointer}"+""); -} -}; -}}); -$.extend($.fn.datagrid.methods,{groups:function(jq){ -return jq.datagrid("options").view.groups; -},expandGroup:function(jq,_845){ -return jq.each(function(){ -var view=$.data(this,"datagrid").dc.view; -var _846=view.find(_845!=undefined?"div.datagrid-group[group-index=\""+_845+"\"]":"div.datagrid-group"); -var _847=_846.find("span.datagrid-row-expander"); -if(_847.hasClass("datagrid-row-expand")){ -_847.removeClass("datagrid-row-expand").addClass("datagrid-row-collapse"); -_846.next("table").show(); -} -$(this).datagrid("fixRowHeight"); -}); -},collapseGroup:function(jq,_848){ -return jq.each(function(){ -var view=$.data(this,"datagrid").dc.view; -var _849=view.find(_848!=undefined?"div.datagrid-group[group-index=\""+_848+"\"]":"div.datagrid-group"); -var _84a=_849.find("span.datagrid-row-expander"); -if(_84a.hasClass("datagrid-row-collapse")){ -_84a.removeClass("datagrid-row-collapse").addClass("datagrid-row-expand"); -_849.next("table").hide(); -} -$(this).datagrid("fixRowHeight"); -}); -}}); -$.extend(_824,{refreshGroupTitle:function(_84b,_84c){ -var _84d=$.data(_84b,"datagrid"); -var opts=_84d.options; -var dc=_84d.dc; -var _84e=this.groups[_84c]; -var span=dc.body2.children("div.datagrid-group[group-index="+_84c+"]").find("span.datagrid-group-title"); -span.html(opts.groupFormatter.call(_84b,_84e.value,_84e.rows)); -},insertRow:function(_84f,_850,row){ -var _851=$.data(_84f,"datagrid"); -var opts=_851.options; -var dc=_851.dc; -var _852=null; -var _853; -if(!_851.data.rows.length){ -$(_84f).datagrid("loadData",[row]); -return; -} -for(var i=0;i_852.startIndex+_852.rows.length){ -_850=_852.startIndex+_852.rows.length; -} -} -$.fn.datagrid.defaults.view.insertRow.call(this,_84f,_850,row); -if(_850>=_852.startIndex+_852.rows.length){ -_854(_850,true); -_854(_850,false); -} -_852.rows.splice(_850-_852.startIndex,0,row); -}else{ -_852={value:row[opts.groupField],rows:[row],startIndex:_851.data.rows.length}; -_853=this.groups.length; -dc.body1.append(this.renderGroup.call(this,_84f,_853,_852,true)); -dc.body2.append(this.renderGroup.call(this,_84f,_853,_852,false)); -this.groups.push(_852); -_851.data.rows.push(row); -} -this.refreshGroupTitle(_84f,_853); -function _854(_855,_856){ -var _857=_856?1:2; -var _858=opts.finder.getTr(_84f,_855-1,"body",_857); -var tr=opts.finder.getTr(_84f,_855,"body",_857); -tr.insertAfter(_858); -}; -},updateRow:function(_859,_85a,row){ -var opts=$.data(_859,"datagrid").options; -$.fn.datagrid.defaults.view.updateRow.call(this,_859,_85a,row); -var tb=opts.finder.getTr(_859,_85a,"body",2).closest("table.datagrid-btable"); -var _85b=parseInt(tb.prev().attr("group-index")); -this.refreshGroupTitle(_859,_85b); -},deleteRow:function(_85c,_85d){ -var _85e=$.data(_85c,"datagrid"); -var opts=_85e.options; -var dc=_85e.dc; -var body=dc.body1.add(dc.body2); -var tb=opts.finder.getTr(_85c,_85d,"body",2).closest("table.datagrid-btable"); -var _85f=parseInt(tb.prev().attr("group-index")); -$.fn.datagrid.defaults.view.deleteRow.call(this,_85c,_85d); -var _860=this.groups[_85f]; -if(_860.rows.length>1){ -_860.rows.splice(_85d-_860.startIndex,1); -this.refreshGroupTitle(_85c,_85f); -}else{ -body.children("div.datagrid-group[group-index="+_85f+"]").remove(); -for(var i=_85f+1;i"+""+"
                                        "+""+"").insertAfter(tr); -}; -}; -function _889(_88a,_88b,data,_88c){ -var _88d=$.data(_88a,"treegrid"); -var opts=_88d.options; -var dc=_88d.dc; -data=opts.loadFilter.call(_88a,data,_88b); -var node=find(_88a,_88b); -if(node){ -var _88e=opts.finder.getTr(_88a,_88b,"body",1); -var _88f=opts.finder.getTr(_88a,_88b,"body",2); -var cc1=_88e.next("tr.treegrid-tr-tree").children("td").children("div"); -var cc2=_88f.next("tr.treegrid-tr-tree").children("td").children("div"); -if(!_88c){ -node.children=[]; -} -}else{ -var cc1=dc.body1; -var cc2=dc.body2; -if(!_88c){ -_88d.data=[]; -} -} -if(!_88c){ -cc1.empty(); -cc2.empty(); -} -if(opts.view.onBeforeRender){ -opts.view.onBeforeRender.call(opts.view,_88a,_88b,data); -} -opts.view.render.call(opts.view,_88a,cc1,true); -opts.view.render.call(opts.view,_88a,cc2,false); -if(opts.showFooter){ -opts.view.renderFooter.call(opts.view,_88a,dc.footer1,true); -opts.view.renderFooter.call(opts.view,_88a,dc.footer2,false); -} -if(opts.view.onAfterRender){ -opts.view.onAfterRender.call(opts.view,_88a); -} -if(!_88b&&opts.pagination){ -var _890=$.data(_88a,"treegrid").total; -var _891=$(_88a).datagrid("getPager"); -if(_891.pagination("options").total!=_890){ -_891.pagination({total:_890}); -} -} -_873(_88a); -_87b(_88a); -$(_88a).treegrid("showLines"); -$(_88a).treegrid("setSelectionState"); -$(_88a).treegrid("autoSizeColumn"); -opts.onLoadSuccess.call(_88a,node,data); -}; -function _872(_892,_893,_894,_895,_896){ -var opts=$.data(_892,"treegrid").options; -var body=$(_892).datagrid("getPanel").find("div.datagrid-body"); -if(_894){ -opts.queryParams=_894; -} -var _897=$.extend({},opts.queryParams); -if(opts.pagination){ -$.extend(_897,{page:opts.pageNumber,rows:opts.pageSize}); -} -if(opts.sortName){ -$.extend(_897,{sort:opts.sortName,order:opts.sortOrder}); -} -var row=find(_892,_893); -if(opts.onBeforeLoad.call(_892,row,_897)==false){ -return; -} -var _898=body.find("tr[node-id=\""+_893+"\"] span.tree-folder"); -_898.addClass("tree-loading"); -$(_892).treegrid("loading"); -var _899=opts.loader.call(_892,_897,function(data){ -_898.removeClass("tree-loading"); -$(_892).treegrid("loaded"); -_889(_892,_893,data,_895); -if(_896){ -_896(); -} -},function(){ -_898.removeClass("tree-loading"); -$(_892).treegrid("loaded"); -opts.onLoadError.apply(_892,arguments); -if(_896){ -_896(); -} -}); -if(_899==false){ -_898.removeClass("tree-loading"); -$(_892).treegrid("loaded"); -} -}; -function _89a(_89b){ -var rows=_89c(_89b); -if(rows.length){ -return rows[0]; -}else{ -return null; -} -}; -function _89c(_89d){ -return $.data(_89d,"treegrid").data; -}; -function _89e(_89f,_8a0){ -var row=find(_89f,_8a0); -if(row._parentId){ -return find(_89f,row._parentId); -}else{ -return null; -} -}; -function _877(_8a1,_8a2){ -var opts=$.data(_8a1,"treegrid").options; -var body=$(_8a1).datagrid("getPanel").find("div.datagrid-view2 div.datagrid-body"); -var _8a3=[]; -if(_8a2){ -_8a4(_8a2); -}else{ -var _8a5=_89c(_8a1); -for(var i=0;i<_8a5.length;i++){ -_8a3.push(_8a5[i]); -_8a4(_8a5[i][opts.idField]); -} -} -function _8a4(_8a6){ -var _8a7=find(_8a1,_8a6); -if(_8a7&&_8a7.children){ -for(var i=0,len=_8a7.children.length;i").insertBefore(_8c7); -if(hit.prev().length){ -hit.prev().remove(); -} -} -} -_889(_8c5,_8c6.parent,_8c6.data,true); -}; -function _8c8(_8c9,_8ca){ -var ref=_8ca.before||_8ca.after; -var opts=$.data(_8c9,"treegrid").options; -var _8cb=_89e(_8c9,ref); -_8c4(_8c9,{parent:(_8cb?_8cb[opts.idField]:null),data:[_8ca.data]}); -var _8cc=_8cb?_8cb.children:$(_8c9).treegrid("getRoots"); -for(var i=0;i<_8cc.length;i++){ -if(_8cc[i][opts.idField]==ref){ -var _8cd=_8cc[_8cc.length-1]; -_8cc.splice(_8ca.before?i:(i+1),0,_8cd); -_8cc.splice(_8cc.length-1,1); -break; -} -} -_8ce(true); -_8ce(false); -_87b(_8c9); -$(_8c9).treegrid("showLines"); -function _8ce(_8cf){ -var _8d0=_8cf?1:2; -var tr=opts.finder.getTr(_8c9,_8ca.data[opts.idField],"body",_8d0); -var _8d1=tr.closest("table.datagrid-btable"); -tr=tr.parent().children(); -var dest=opts.finder.getTr(_8c9,ref,"body",_8d0); -if(_8ca.before){ -tr.insertBefore(dest); -}else{ -var sub=dest.next("tr.treegrid-tr-tree"); -tr.insertAfter(sub.length?sub:dest); -} -_8d1.remove(); -}; -}; -function _8d2(_8d3,_8d4){ -var _8d5=$.data(_8d3,"treegrid"); -$(_8d3).datagrid("deleteRow",_8d4); -_87b(_8d3); -_8d5.total-=1; -$(_8d3).datagrid("getPager").pagination("refresh",{total:_8d5.total}); -$(_8d3).treegrid("showLines"); -}; -function _8d6(_8d7){ -var t=$(_8d7); -var opts=t.treegrid("options"); -if(opts.lines){ -t.treegrid("getPanel").addClass("tree-lines"); -}else{ -t.treegrid("getPanel").removeClass("tree-lines"); -return; -} -t.treegrid("getPanel").find("span.tree-indent").removeClass("tree-line tree-join tree-joinbottom"); -t.treegrid("getPanel").find("div.datagrid-cell").removeClass("tree-node-last tree-root-first tree-root-one"); -var _8d8=t.treegrid("getRoots"); -if(_8d8.length>1){ -_8d9(_8d8[0]).addClass("tree-root-first"); -}else{ -if(_8d8.length==1){ -_8d9(_8d8[0]).addClass("tree-root-one"); -} -} -_8da(_8d8); -_8db(_8d8); -function _8da(_8dc){ -$.map(_8dc,function(node){ -if(node.children&&node.children.length){ -_8da(node.children); -}else{ -var cell=_8d9(node); -cell.find(".tree-icon").prev().addClass("tree-join"); -} -}); -if(_8dc.length){ -var cell=_8d9(_8dc[_8dc.length-1]); -cell.addClass("tree-node-last"); -cell.find(".tree-join").removeClass("tree-join").addClass("tree-joinbottom"); -} -}; -function _8db(_8dd){ -$.map(_8dd,function(node){ -if(node.children&&node.children.length){ -_8db(node.children); -} -}); -for(var i=0;i<_8dd.length-1;i++){ -var node=_8dd[i]; -var _8de=t.treegrid("getLevel",node[opts.idField]); -var tr=opts.finder.getTr(_8d7,node[opts.idField]); -var cc=tr.next().find("tr.datagrid-row td[field=\""+opts.treeField+"\"] div.datagrid-cell"); -cc.find("span:eq("+(_8de-1)+")").addClass("tree-line"); -} -}; -function _8d9(node){ -var tr=opts.finder.getTr(_8d7,node[opts.idField]); -var cell=tr.find("td[field=\""+opts.treeField+"\"] div.datagrid-cell"); -return cell; -}; -}; -$.fn.treegrid=function(_8df,_8e0){ -if(typeof _8df=="string"){ -var _8e1=$.fn.treegrid.methods[_8df]; -if(_8e1){ -return _8e1(this,_8e0); -}else{ -return this.datagrid(_8df,_8e0); -} -} -_8df=_8df||{}; -return this.each(function(){ -var _8e2=$.data(this,"treegrid"); -if(_8e2){ -$.extend(_8e2.options,_8df); -}else{ -_8e2=$.data(this,"treegrid",{options:$.extend({},$.fn.treegrid.defaults,$.fn.treegrid.parseOptions(this),_8df),data:[]}); -} -_862(this); -if(_8e2.options.data){ -$(this).treegrid("loadData",_8e2.options.data); -} -_872(this); -}); -}; -$.fn.treegrid.methods={options:function(jq){ -return $.data(jq[0],"treegrid").options; -},resize:function(jq,_8e3){ -return jq.each(function(){ -$(this).datagrid("resize",_8e3); -}); -},fixRowHeight:function(jq,_8e4){ -return jq.each(function(){ -_873(this,_8e4); -}); -},loadData:function(jq,data){ -return jq.each(function(){ -_889(this,data.parent,data); -}); -},load:function(jq,_8e5){ -return jq.each(function(){ -$(this).treegrid("options").pageNumber=1; -$(this).treegrid("getPager").pagination({pageNumber:1}); -$(this).treegrid("reload",_8e5); -}); -},reload:function(jq,id){ -return jq.each(function(){ -var opts=$(this).treegrid("options"); -var _8e6={}; -if(typeof id=="object"){ -_8e6=id; -}else{ -_8e6=$.extend({},opts.queryParams); -_8e6.id=id; -} -if(_8e6.id){ -var node=$(this).treegrid("find",_8e6.id); -if(node.children){ -node.children.splice(0,node.children.length); -} -opts.queryParams=_8e6; -var tr=opts.finder.getTr(this,_8e6.id); -tr.next("tr.treegrid-tr-tree").remove(); -tr.find("span.tree-hit").removeClass("tree-expanded tree-expanded-hover").addClass("tree-collapsed"); -_8b1(this,_8e6.id); -}else{ -_872(this,null,_8e6); -} -}); -},reloadFooter:function(jq,_8e7){ -return jq.each(function(){ -var opts=$.data(this,"treegrid").options; -var dc=$.data(this,"datagrid").dc; -if(_8e7){ -$.data(this,"treegrid").footer=_8e7; -} -if(opts.showFooter){ -opts.view.renderFooter.call(opts.view,this,dc.footer1,true); -opts.view.renderFooter.call(opts.view,this,dc.footer2,false); -if(opts.view.onAfterRender){ -opts.view.onAfterRender.call(opts.view,this); -} -$(this).treegrid("fixRowHeight"); -} -}); -},getData:function(jq){ -return $.data(jq[0],"treegrid").data; -},getFooterRows:function(jq){ -return $.data(jq[0],"treegrid").footer; -},getRoot:function(jq){ -return _89a(jq[0]); -},getRoots:function(jq){ -return _89c(jq[0]); -},getParent:function(jq,id){ -return _89e(jq[0],id); -},getChildren:function(jq,id){ -return _877(jq[0],id); -},getLevel:function(jq,id){ -return _8a9(jq[0],id); -},find:function(jq,id){ -return find(jq[0],id); -},isLeaf:function(jq,id){ -var opts=$.data(jq[0],"treegrid").options; -var tr=opts.finder.getTr(jq[0],id); -var hit=tr.find("span.tree-hit"); -return hit.length==0; -},select:function(jq,id){ -return jq.each(function(){ -$(this).datagrid("selectRow",id); -}); -},unselect:function(jq,id){ -return jq.each(function(){ -$(this).datagrid("unselectRow",id); -}); -},collapse:function(jq,id){ -return jq.each(function(){ -_8ae(this,id); -}); -},expand:function(jq,id){ -return jq.each(function(){ -_8b1(this,id); -}); -},toggle:function(jq,id){ -return jq.each(function(){ -_881(this,id); -}); -},collapseAll:function(jq,id){ -return jq.each(function(){ -_8b9(this,id); -}); -},expandAll:function(jq,id){ -return jq.each(function(){ -_8bd(this,id); -}); -},expandTo:function(jq,id){ -return jq.each(function(){ -_8c1(this,id); -}); -},append:function(jq,_8e8){ -return jq.each(function(){ -_8c4(this,_8e8); -}); -},insert:function(jq,_8e9){ -return jq.each(function(){ -_8c8(this,_8e9); -}); -},remove:function(jq,id){ -return jq.each(function(){ -_8d2(this,id); -}); -},pop:function(jq,id){ -var row=jq.treegrid("find",id); -jq.treegrid("remove",id); -return row; -},refresh:function(jq,id){ -return jq.each(function(){ -var opts=$.data(this,"treegrid").options; -opts.view.refreshRow.call(opts.view,this,id); -}); -},update:function(jq,_8ea){ -return jq.each(function(){ -var opts=$.data(this,"treegrid").options; -opts.view.updateRow.call(opts.view,this,_8ea.id,_8ea.row); -}); -},beginEdit:function(jq,id){ -return jq.each(function(){ -$(this).datagrid("beginEdit",id); -$(this).treegrid("fixRowHeight",id); -}); -},endEdit:function(jq,id){ -return jq.each(function(){ -$(this).datagrid("endEdit",id); -}); -},cancelEdit:function(jq,id){ -return jq.each(function(){ -$(this).datagrid("cancelEdit",id); -}); -},showLines:function(jq){ -return jq.each(function(){ -_8d6(this); -}); -}}; -$.fn.treegrid.parseOptions=function(_8eb){ -return $.extend({},$.fn.datagrid.parseOptions(_8eb),$.parser.parseOptions(_8eb,["treeField",{animate:"boolean"}])); -}; -var _8ec=$.extend({},$.fn.datagrid.defaults.view,{render:function(_8ed,_8ee,_8ef){ -var opts=$.data(_8ed,"treegrid").options; -var _8f0=$(_8ed).datagrid("getColumnFields",_8ef); -var _8f1=$.data(_8ed,"datagrid").rowIdPrefix; -if(_8ef){ -if(!(opts.rownumbers||(opts.frozenColumns&&opts.frozenColumns.length))){ -return; -} -} -var view=this; -if(this.treeNodes&&this.treeNodes.length){ -var _8f2=_8f3(_8ef,this.treeLevel,this.treeNodes); -$(_8ee).append(_8f2.join("")); -} -function _8f3(_8f4,_8f5,_8f6){ -var _8f7=$(_8ed).treegrid("getParent",_8f6[0][opts.idField]); -var _8f8=(_8f7?_8f7.children.length:$(_8ed).treegrid("getRoots").length)-_8f6.length; -var _8f9=[""]; -for(var i=0;i<_8f6.length;i++){ -var row=_8f6[i]; -if(row.state!="open"&&row.state!="closed"){ -row.state="open"; -} -var css=opts.rowStyler?opts.rowStyler.call(_8ed,row):""; -var _8fa=""; -var _8fb=""; -if(typeof css=="string"){ -_8fb=css; -}else{ -if(css){ -_8fa=css["class"]||""; -_8fb=css["style"]||""; -} -} -var cls="class=\"datagrid-row "+(_8f8++%2&&opts.striped?"datagrid-row-alt ":" ")+_8fa+"\""; -var _8fc=_8fb?"style=\""+_8fb+"\"":""; -var _8fd=_8f1+"-"+(_8f4?1:2)+"-"+row[opts.idField]; -_8f9.push(""); -_8f9=_8f9.concat(view.renderRow.call(view,_8ed,_8f0,_8f4,_8f5,row)); -_8f9.push(""); -if(row.children&&row.children.length){ -var tt=_8f3(_8f4,_8f5+1,row.children); -var v=row.state=="closed"?"none":"block"; -_8f9.push(""); -} -} -_8f9.push("
                                        "); -_8f9=_8f9.concat(tt); -_8f9.push("
                                        "); -return _8f9; -}; -},renderFooter:function(_8fe,_8ff,_900){ -var opts=$.data(_8fe,"treegrid").options; -var rows=$.data(_8fe,"treegrid").footer||[]; -var _901=$(_8fe).datagrid("getColumnFields",_900); -var _902=[""]; -for(var i=0;i"); -_902.push(this.renderRow.call(this,_8fe,_901,_900,0,row)); -_902.push(""); -} -_902.push("
                                        "); -$(_8ff).html(_902.join("")); -},renderRow:function(_903,_904,_905,_906,row){ -var opts=$.data(_903,"treegrid").options; -var cc=[]; -if(_905&&opts.rownumbers){ -cc.push("
                                        0
                                        "); -} -for(var i=0;i<_904.length;i++){ -var _907=_904[i]; -var col=$(_903).datagrid("getColumnOption",_907); -if(col){ -var css=col.styler?(col.styler(row[_907],row)||""):""; -var _908=""; -var _909=""; -if(typeof css=="string"){ -_909=css; -}else{ -if(cc){ -_908=css["class"]||""; -_909=css["style"]||""; -} -} -var cls=_908?"class=\""+_908+"\"":""; -var _90a=col.hidden?"style=\"display:none;"+_909+"\"":(_909?"style=\""+_909+"\"":""); -cc.push(""); -var _90a=""; -if(!col.checkbox){ -if(col.align){ -_90a+="text-align:"+col.align+";"; -} -if(!opts.nowrap){ -_90a+="white-space:normal;height:auto;"; -}else{ -if(opts.autoRowHeight){ -_90a+="height:auto;"; -} -} -} -cc.push("
                                        "); -if(col.checkbox){ -if(row.checked){ -cc.push(""); -}else{ -var val=null; -if(col.formatter){ -val=col.formatter(row[_907],row); -}else{ -val=row[_907]; -} -if(_907==opts.treeField){ -for(var j=0;j<_906;j++){ -cc.push(""); -} -if(row.state=="closed"){ -cc.push(""); -cc.push(""); -}else{ -if(row.children&&row.children.length){ -cc.push(""); -cc.push(""); -}else{ -cc.push(""); -cc.push(""); -} -} -cc.push(""+val+""); -}else{ -cc.push(val); -} -} -cc.push("
                                        "); -cc.push(""); -} -} -return cc.join(""); -},refreshRow:function(_90b,id){ -this.updateRow.call(this,_90b,id,{}); -},updateRow:function(_90c,id,row){ -var opts=$.data(_90c,"treegrid").options; -var _90d=$(_90c).treegrid("find",id); -$.extend(_90d,row); -var _90e=$(_90c).treegrid("getLevel",id)-1; -var _90f=opts.rowStyler?opts.rowStyler.call(_90c,_90d):""; -var _910=$.data(_90c,"datagrid").rowIdPrefix; -var _911=_90d[opts.idField]; -function _912(_913){ -var _914=$(_90c).treegrid("getColumnFields",_913); -var tr=opts.finder.getTr(_90c,id,"body",(_913?1:2)); -var _915=tr.find("div.datagrid-cell-rownumber").html(); -var _916=tr.find("div.datagrid-cell-check input[type=checkbox]").is(":checked"); -tr.html(this.renderRow(_90c,_914,_913,_90e,_90d)); -tr.attr("style",_90f||""); -tr.find("div.datagrid-cell-rownumber").html(_915); -if(_916){ -tr.find("div.datagrid-cell-check input[type=checkbox]")._propAttr("checked",true); -} -if(_911!=id){ -tr.attr("id",_910+"-"+(_913?1:2)+"-"+_911); -tr.attr("node-id",_911); -} -}; -_912.call(this,true); -_912.call(this,false); -$(_90c).treegrid("fixRowHeight",id); -},deleteRow:function(_917,id){ -var opts=$.data(_917,"treegrid").options; -var tr=opts.finder.getTr(_917,id); -tr.next("tr.treegrid-tr-tree").remove(); -tr.remove(); -var _918=del(id); -if(_918){ -if(_918.children.length==0){ -tr=opts.finder.getTr(_917,_918[opts.idField]); -tr.next("tr.treegrid-tr-tree").remove(); -var cell=tr.children("td[field=\""+opts.treeField+"\"]").children("div.datagrid-cell"); -cell.find(".tree-icon").removeClass("tree-folder").addClass("tree-file"); -cell.find(".tree-hit").remove(); -$("").prependTo(cell); -} -} -function del(id){ -var cc; -var _919=$(_917).treegrid("getParent",id); -if(_919){ -cc=_919.children; -}else{ -cc=$(_917).treegrid("getData"); -} -for(var i=0;ib?1:-1); -}; -r=_924(r1[sn],r2[sn])*(so=="asc"?1:-1); -if(r!=0){ -return r; -} -} -return r; -}); -for(var i=0;i"); -if(!_942){ -_945.push(""); -_945.push(opts.groupFormatter.call(_93f,_941.value,_941.rows)); -_945.push(""); -} -_945.push("
                                        "); -_945.push(this.renderTable(_93f,_941.startIndex,_941.rows,_942)); -return _945.join(""); -},groupRows:function(_946,rows){ -var _947=$.data(_946,"datagrid"); -var opts=_947.options; -var _948=[]; -for(var i=0;idiv.combo-p>div.combo-panel:visible").panel("close"); -}); -}); -function _958(_959){ -var _95a=$.data(_959,"combo"); -var opts=_95a.options; -if(!_95a.panel){ -_95a.panel=$("
                                        ").appendTo("body"); -_95a.panel.panel({minWidth:opts.panelMinWidth,maxWidth:opts.panelMaxWidth,minHeight:opts.panelMinHeight,maxHeight:opts.panelMaxHeight,doSize:false,closed:true,cls:"combo-p",style:{position:"absolute",zIndex:10},onOpen:function(){ -var _95b=$(this).panel("options").comboTarget; -var _95c=$.data(_95b,"combo"); -if(_95c){ -_95c.options.onShowPanel.call(_95b); -} -},onBeforeClose:function(){ -_957(this); -},onClose:function(){ -var _95d=$(this).panel("options").comboTarget; -var _95e=$(_95d).data("combo"); -if(_95e){ -_95e.options.onHidePanel.call(_95d); -} -}}); -} -var _95f=$.extend(true,[],opts.icons); -if(opts.hasDownArrow){ -_95f.push({iconCls:"combo-arrow",handler:function(e){ -_963(e.data.target); -}}); -} -$(_959).addClass("combo-f").textbox($.extend({},opts,{icons:_95f,onChange:function(){ -}})); -$(_959).attr("comboName",$(_959).attr("textboxName")); -_95a.combo=$(_959).next(); -_95a.combo.addClass("combo"); -}; -function _960(_961){ -var _962=$.data(_961,"combo"); -var opts=_962.options; -var p=_962.panel; -if(p.is(":visible")){ -p.panel("close"); -} -if(!opts.cloned){ -p.panel("destroy"); -} -$(_961).textbox("destroy"); -}; -function _963(_964){ -var _965=$.data(_964,"combo").panel; -if(_965.is(":visible")){ -_966(_964); -}else{ -var p=$(_964).closest("div.combo-panel"); -$("div.combo-panel:visible").not(_965).not(p).panel("close"); -$(_964).combo("showPanel"); -} -$(_964).combo("textbox").focus(); -}; -function _957(_967){ -$(_967).find(".combo-f").each(function(){ -var p=$(this).combo("panel"); -if(p.is(":visible")){ -p.panel("close"); -} -}); -}; -function _968(e){ -var _969=e.data.target; -var _96a=$.data(_969,"combo"); -var opts=_96a.options; -var _96b=_96a.panel; -if(!opts.editable){ -_963(_969); -}else{ -var p=$(_969).closest("div.combo-panel"); -$("div.combo-panel:visible").not(_96b).not(p).panel("close"); -} -}; -function _96c(e){ -var _96d=e.data.target; -var t=$(_96d); -var _96e=t.data("combo"); -var opts=t.combo("options"); -switch(e.keyCode){ -case 38: -opts.keyHandler.up.call(_96d,e); -break; -case 40: -opts.keyHandler.down.call(_96d,e); -break; -case 37: -opts.keyHandler.left.call(_96d,e); -break; -case 39: -opts.keyHandler.right.call(_96d,e); -break; -case 13: -e.preventDefault(); -opts.keyHandler.enter.call(_96d,e); -return false; -case 9: -case 27: -_966(_96d); -break; -default: -if(opts.editable){ -if(_96e.timer){ -clearTimeout(_96e.timer); -} -_96e.timer=setTimeout(function(){ -var q=t.combo("getText"); -if(_96e.previousText!=q){ -_96e.previousText=q; -t.combo("showPanel"); -opts.keyHandler.query.call(_96d,q,e); -t.combo("validate"); -} -},opts.delay); -} -} -}; -function _96f(_970){ -var _971=$.data(_970,"combo"); -var _972=_971.combo; -var _973=_971.panel; -var opts=$(_970).combo("options"); -var _974=_973.panel("options"); -_974.comboTarget=_970; -if(_974.closed){ -_973.panel("panel").show().css({zIndex:($.fn.menu?$.fn.menu.defaults.zIndex++:($.fn.window?$.fn.window.defaults.zIndex++:99)),left:-999999}); -_973.panel("resize",{width:(opts.panelWidth?opts.panelWidth:_972._outerWidth()),height:opts.panelHeight}); -_973.panel("panel").hide(); -_973.panel("open"); -} -(function(){ -if(_973.is(":visible")){ -_973.panel("move",{left:_975(),top:_976()}); -setTimeout(arguments.callee,200); -} -})(); -function _975(){ -var left=_972.offset().left; -if(opts.panelAlign=="right"){ -left+=_972._outerWidth()-_973._outerWidth(); -} -if(left+_973._outerWidth()>$(window)._outerWidth()+$(document).scrollLeft()){ -left=$(window)._outerWidth()+$(document).scrollLeft()-_973._outerWidth(); -} -if(left<0){ -left=0; -} -return left; -}; -function _976(){ -var top=_972.offset().top+_972._outerHeight(); -if(top+_973._outerHeight()>$(window)._outerHeight()+$(document).scrollTop()){ -top=_972.offset().top-_973._outerHeight(); -} -if(top<$(document).scrollTop()){ -top=_972.offset().top+_972._outerHeight(); -} -return top; -}; -}; -function _966(_977){ -var _978=$.data(_977,"combo").panel; -_978.panel("close"); -}; -function _979(_97a,text){ -var _97b=$.data(_97a,"combo"); -var _97c=$(_97a).textbox("getText"); -if(_97c!=text){ -$(_97a).textbox("setText",text); -_97b.previousText=text; -} -}; -function _97d(_97e){ -var _97f=[]; -var _980=$.data(_97e,"combo").combo; -_980.find(".textbox-value").each(function(){ -_97f.push($(this).val()); -}); -return _97f; -}; -function _981(_982,_983){ -var _984=$.data(_982,"combo"); -var opts=_984.options; -var _985=_984.combo; -if(!$.isArray(_983)){ -_983=_983.split(opts.separator); -} -var _986=_97d(_982); -_985.find(".textbox-value").remove(); -var name=$(_982).attr("textboxName")||""; -for(var i=0;i<_983.length;i++){ -var _987=$("").appendTo(_985); -_987.attr("name",name); -if(opts.disabled){ -_987.attr("disabled","disabled"); -} -_987.val(_983[i]); -} -var _988=(function(){ -if(_986.length!=_983.length){ -return true; -} -var a1=$.extend(true,[],_986); -var a2=$.extend(true,[],_983); -a1.sort(); -a2.sort(); -for(var i=0;i_9a3.height()){ -var h=_9a3.scrollTop()+item.position().top+item.outerHeight()-_9a3.height(); -_9a3.scrollTop(h); -} -} -} -}; -function nav(_9a4,dir){ -var opts=$.data(_9a4,"combobox").options; -var _9a5=$(_9a4).combobox("panel"); -var item=_9a5.children("div.combobox-item-hover"); -if(!item.length){ -item=_9a5.children("div.combobox-item-selected"); -} -item.removeClass("combobox-item-hover"); -var _9a6="div.combobox-item:visible:not(.combobox-item-disabled):first"; -var _9a7="div.combobox-item:visible:not(.combobox-item-disabled):last"; -if(!item.length){ -item=_9a5.children(dir=="next"?_9a6:_9a7); -}else{ -if(dir=="next"){ -item=item.nextAll(_9a6); -if(!item.length){ -item=_9a5.children(_9a6); -} -}else{ -item=item.prevAll(_9a6); -if(!item.length){ -item=_9a5.children(_9a7); -} -} -} -if(item.length){ -item.addClass("combobox-item-hover"); -var row=opts.finder.getRow(_9a4,item); -if(row){ -_9a0(_9a4,row[opts.valueField]); -if(opts.selectOnNavigation){ -_9a8(_9a4,row[opts.valueField]); -} -} -} -}; -function _9a8(_9a9,_9aa){ -var opts=$.data(_9a9,"combobox").options; -var _9ab=$(_9a9).combo("getValues"); -if($.inArray(_9aa+"",_9ab)==-1){ -if(opts.multiple){ -_9ab.push(_9aa); -}else{ -_9ab=[_9aa]; -} -_9ac(_9a9,_9ab); -opts.onSelect.call(_9a9,opts.finder.getRow(_9a9,_9aa)); -} -}; -function _9ad(_9ae,_9af){ -var opts=$.data(_9ae,"combobox").options; -var _9b0=$(_9ae).combo("getValues"); -var _9b1=$.inArray(_9af+"",_9b0); -if(_9b1>=0){ -_9b0.splice(_9b1,1); -_9ac(_9ae,_9b0); -opts.onUnselect.call(_9ae,opts.finder.getRow(_9ae,_9af)); -} -}; -function _9ac(_9b2,_9b3,_9b4){ -var opts=$.data(_9b2,"combobox").options; -var _9b5=$(_9b2).combo("panel"); -if(!$.isArray(_9b3)){ -_9b3=_9b3.split(opts.separator); -} -_9b5.find("div.combobox-item-selected").removeClass("combobox-item-selected"); -var vv=[],ss=[]; -for(var i=0;i<_9b3.length;i++){ -var v=_9b3[i]; -var s=v; -opts.finder.getEl(_9b2,v).addClass("combobox-item-selected"); -var row=opts.finder.getRow(_9b2,v); -if(row){ -s=row[opts.textField]; -} -vv.push(v); -ss.push(s); -} -if(!_9b4){ -$(_9b2).combo("setText",ss.join(opts.separator)); -} -$(_9b2).combo("setValues",vv); -}; -function _9b6(_9b7,data,_9b8){ -var _9b9=$.data(_9b7,"combobox"); -var opts=_9b9.options; -_9b9.data=opts.loadFilter.call(_9b7,data); -_9b9.groups=[]; -data=_9b9.data; -var _9ba=$(_9b7).combobox("getValues"); -var dd=[]; -var _9bb=undefined; -for(var i=0;i"); -dd.push(opts.groupFormatter?opts.groupFormatter.call(_9b7,g):g); -dd.push("
                                        "); -} -}else{ -_9bb=undefined; -} -var cls="combobox-item"+(row.disabled?" combobox-item-disabled":"")+(g?" combobox-gitem":""); -dd.push("
                                        "); -dd.push(opts.formatter?opts.formatter.call(_9b7,row):s); -dd.push("
                                        "); -if(row["selected"]&&$.inArray(v,_9ba)==-1){ -_9ba.push(v); -} -} -$(_9b7).combo("panel").html(dd.join("")); -if(opts.multiple){ -_9ac(_9b7,_9ba,_9b8); -}else{ -_9ac(_9b7,_9ba.length?[_9ba[_9ba.length-1]]:[],_9b8); -} -opts.onLoadSuccess.call(_9b7,data); -}; -function _9bc(_9bd,url,_9be,_9bf){ -var opts=$.data(_9bd,"combobox").options; -if(url){ -opts.url=url; -} -_9be=$.extend({},opts.queryParams,_9be||{}); -if(opts.onBeforeLoad.call(_9bd,_9be)==false){ -return; -} -opts.loader.call(_9bd,_9be,function(data){ -_9b6(_9bd,data,_9bf); -},function(){ -opts.onLoadError.apply(this,arguments); -}); -}; -function _9c0(_9c1,q){ -var _9c2=$.data(_9c1,"combobox"); -var opts=_9c2.options; -var qq=opts.multiple?q.split(opts.separator):[q]; -if(opts.mode=="remote"){ -_9c3(qq); -_9bc(_9c1,null,{q:q},true); -}else{ -var _9c4=$(_9c1).combo("panel"); -_9c4.find("div.combobox-item-selected,div.combobox-item-hover").removeClass("combobox-item-selected combobox-item-hover"); -_9c4.find("div.combobox-item,div.combobox-group").hide(); -var data=_9c2.data; -var vv=[]; -$.map(qq,function(q){ -q=$.trim(q); -var _9c5=q; -var _9c6=undefined; -for(var i=0;i=0){ -vv.push(v); -} -}); -t.combobox("setValues",vv); -if(!opts.multiple){ -t.combobox("hidePanel"); -} -}; -function _9cb(_9cc){ -var _9cd=$.data(_9cc,"combobox"); -var opts=_9cd.options; -_99b++; -_9cd.itemIdPrefix="_easyui_combobox_i"+_99b; -_9cd.groupIdPrefix="_easyui_combobox_g"+_99b; -$(_9cc).addClass("combobox-f"); -$(_9cc).combo($.extend({},opts,{onShowPanel:function(){ -$(_9cc).combo("panel").find("div.combobox-item:hidden,div.combobox-group:hidden").show(); -_9a0(_9cc,$(_9cc).combobox("getValue")); -opts.onShowPanel.call(_9cc); -}})); -$(_9cc).combo("panel").unbind().bind("mouseover",function(e){ -$(this).children("div.combobox-item-hover").removeClass("combobox-item-hover"); -var item=$(e.target).closest("div.combobox-item"); -if(!item.hasClass("combobox-item-disabled")){ -item.addClass("combobox-item-hover"); -} -e.stopPropagation(); -}).bind("mouseout",function(e){ -$(e.target).closest("div.combobox-item").removeClass("combobox-item-hover"); -e.stopPropagation(); -}).bind("click",function(e){ -var item=$(e.target).closest("div.combobox-item"); -if(!item.length||item.hasClass("combobox-item-disabled")){ -return; -} -var row=opts.finder.getRow(_9cc,item); -if(!row){ -return; -} -var _9ce=row[opts.valueField]; -if(opts.multiple){ -if(item.hasClass("combobox-item-selected")){ -_9ad(_9cc,_9ce); -}else{ -_9a8(_9cc,_9ce); -} -}else{ -_9a8(_9cc,_9ce); -$(_9cc).combo("hidePanel"); -} -e.stopPropagation(); -}); -}; -$.fn.combobox=function(_9cf,_9d0){ -if(typeof _9cf=="string"){ -var _9d1=$.fn.combobox.methods[_9cf]; -if(_9d1){ -return _9d1(this,_9d0); -}else{ -return this.combo(_9cf,_9d0); -} -} -_9cf=_9cf||{}; -return this.each(function(){ -var _9d2=$.data(this,"combobox"); -if(_9d2){ -$.extend(_9d2.options,_9cf); -}else{ -_9d2=$.data(this,"combobox",{options:$.extend({},$.fn.combobox.defaults,$.fn.combobox.parseOptions(this),_9cf),data:[]}); -} -_9cb(this); -if(_9d2.options.data){ -_9b6(this,_9d2.options.data); -}else{ -var data=$.fn.combobox.parseData(this); -if(data.length){ -_9b6(this,data); -} -} -_9bc(this); -}); -}; -$.fn.combobox.methods={options:function(jq){ -var _9d3=jq.combo("options"); -return $.extend($.data(jq[0],"combobox").options,{width:_9d3.width,height:_9d3.height,originalValue:_9d3.originalValue,disabled:_9d3.disabled,readonly:_9d3.readonly}); -},getData:function(jq){ -return $.data(jq[0],"combobox").data; -},setValues:function(jq,_9d4){ -return jq.each(function(){ -_9ac(this,_9d4); -}); -},setValue:function(jq,_9d5){ -return jq.each(function(){ -_9ac(this,[_9d5]); -}); -},clear:function(jq){ -return jq.each(function(){ -$(this).combo("clear"); -var _9d6=$(this).combo("panel"); -_9d6.find("div.combobox-item-selected").removeClass("combobox-item-selected"); -}); -},reset:function(jq){ -return jq.each(function(){ -var opts=$(this).combobox("options"); -if(opts.multiple){ -$(this).combobox("setValues",opts.originalValue); -}else{ -$(this).combobox("setValue",opts.originalValue); -} -}); -},loadData:function(jq,data){ -return jq.each(function(){ -_9b6(this,data); -}); -},reload:function(jq,url){ -return jq.each(function(){ -if(typeof url=="string"){ -_9bc(this,url); -}else{ -if(url){ -var opts=$(this).combobox("options"); -opts.queryParams=url; -} -_9bc(this); -} -}); -},select:function(jq,_9d7){ -return jq.each(function(){ -_9a8(this,_9d7); -}); -},unselect:function(jq,_9d8){ -return jq.each(function(){ -_9ad(this,_9d8); -}); -}}; -$.fn.combobox.parseOptions=function(_9d9){ -var t=$(_9d9); -return $.extend({},$.fn.combo.parseOptions(_9d9),$.parser.parseOptions(_9d9,["valueField","textField","groupField","mode","method","url"])); -}; -$.fn.combobox.parseData=function(_9da){ -var data=[]; -var opts=$(_9da).combobox("options"); -$(_9da).children().each(function(){ -if(this.tagName.toLowerCase()=="optgroup"){ -var _9db=$(this).attr("label"); -$(this).children().each(function(){ -_9dc(this,_9db); -}); -}else{ -_9dc(this); -} -}); -return data; -function _9dc(el,_9dd){ -var t=$(el); -var row={}; -row[opts.valueField]=t.attr("value")!=undefined?t.attr("value"):t.text(); -row[opts.textField]=t.text(); -row["selected"]=t.is(":selected"); -row["disabled"]=t.is(":disabled"); -if(_9dd){ -opts.groupField=opts.groupField||"group"; -row[opts.groupField]=_9dd; -} -data.push(row); -}; -}; -$.fn.combobox.defaults=$.extend({},$.fn.combo.defaults,{valueField:"value",textField:"text",groupField:null,groupFormatter:function(_9de){ -return _9de; -},mode:"local",method:"post",url:null,data:null,queryParams:{},keyHandler:{up:function(e){ -nav(this,"prev"); -e.preventDefault(); -},down:function(e){ -nav(this,"next"); -e.preventDefault(); -},left:function(e){ -},right:function(e){ -},enter:function(e){ -_9c7(this); -},query:function(q,e){ -_9c0(this,q); -}},filter:function(q,row){ -var opts=$(this).combobox("options"); -return row[opts.textField].toLowerCase().indexOf(q.toLowerCase())==0; -},formatter:function(row){ -var opts=$(this).combobox("options"); -return row[opts.textField]; -},loader:function(_9df,_9e0,_9e1){ -var opts=$(this).combobox("options"); -if(!opts.url){ -return false; -} -$.ajax({type:opts.method,url:opts.url,data:_9df,dataType:"json",success:function(data){ -_9e0(data); -},error:function(){ -_9e1.apply(this,arguments); -}}); -},loadFilter:function(data){ -return data; -},finder:{getEl:function(_9e2,_9e3){ -var _9e4=_99c(_9e2,_9e3); -var id=$.data(_9e2,"combobox").itemIdPrefix+"_"+_9e4; -return $("#"+id); -},getRow:function(_9e5,p){ -var _9e6=$.data(_9e5,"combobox"); -var _9e7=(p instanceof jQuery)?p.attr("id").substr(_9e6.itemIdPrefix.length+1):_99c(_9e5,p); -return _9e6.data[parseInt(_9e7)]; -}},onBeforeLoad:function(_9e8){ -},onLoadSuccess:function(){ -},onLoadError:function(){ -},onSelect:function(_9e9){ -},onUnselect:function(_9ea){ -}}); -})(jQuery); -(function($){ -function _9eb(_9ec){ -var _9ed=$.data(_9ec,"combotree"); -var opts=_9ed.options; -var tree=_9ed.tree; -$(_9ec).addClass("combotree-f"); -$(_9ec).combo(opts); -var _9ee=$(_9ec).combo("panel"); -if(!tree){ -tree=$("
                                          ").appendTo(_9ee); -$.data(_9ec,"combotree").tree=tree; -} -tree.tree($.extend({},opts,{checkbox:opts.multiple,onLoadSuccess:function(node,data){ -var _9ef=$(_9ec).combotree("getValues"); -if(opts.multiple){ -var _9f0=tree.tree("getChecked"); -for(var i=0;i<_9f0.length;i++){ -var id=_9f0[i].id; -(function(){ -for(var i=0;i<_9ef.length;i++){ -if(id==_9ef[i]){ -return; -} -} -_9ef.push(id); -})(); -} -} -$(_9ec).combotree("setValues",_9ef); -opts.onLoadSuccess.call(this,node,data); -},onClick:function(node){ -if(opts.multiple){ -$(this).tree(node.checked?"uncheck":"check",node.target); -}else{ -$(_9ec).combo("hidePanel"); -} -_9f2(_9ec); -opts.onClick.call(this,node); -},onCheck:function(node,_9f1){ -_9f2(_9ec); -opts.onCheck.call(this,node,_9f1); -}})); -}; -function _9f2(_9f3){ -var _9f4=$.data(_9f3,"combotree"); -var opts=_9f4.options; -var tree=_9f4.tree; -var vv=[],ss=[]; -if(opts.multiple){ -var _9f5=tree.tree("getChecked"); -for(var i=0;i<_9f5.length;i++){ -vv.push(_9f5[i].id); -ss.push(_9f5[i].text); -} -}else{ -var node=tree.tree("getSelected"); -if(node){ -vv.push(node.id); -ss.push(node.text); -} -} -$(_9f3).combo("setText",ss.join(opts.separator)).combo("setValues",opts.multiple?vv:(vv.length?vv:[""])); -}; -function _9f6(_9f7,_9f8){ -var _9f9=$.data(_9f7,"combotree"); -var opts=_9f9.options; -var tree=_9f9.tree; -var _9fa=tree.tree("options"); -var _9fb=_9fa.onCheck; -var _9fc=_9fa.onSelect; -_9fa.onCheck=_9fa.onSelect=function(){ -}; -tree.find("span.tree-checkbox").addClass("tree-checkbox0").removeClass("tree-checkbox1 tree-checkbox2"); -if(!$.isArray(_9f8)){ -_9f8=_9f8.split(opts.separator); -} -var vv=$.map(_9f8,function(_9fd){ -return String(_9fd); -}); -var ss=[]; -$.map(vv,function(v){ -var node=tree.tree("find",v); -if(node){ -tree.tree("check",node.target).tree("select",node.target); -ss.push(node.text); -}else{ -ss.push(v); -} -}); -if(opts.multiple){ -var _9fe=tree.tree("getChecked"); -$.map(_9fe,function(node){ -var id=String(node.id); -if($.inArray(id,vv)==-1){ -vv.push(id); -ss.push(node.text); -} -}); -} -_9fa.onCheck=_9fb; -_9fa.onSelect=_9fc; -$(_9f7).combo("setText",ss.join(opts.separator)).combo("setValues",opts.multiple?vv:(vv.length?vv:[""])); -}; -$.fn.combotree=function(_9ff,_a00){ -if(typeof _9ff=="string"){ -var _a01=$.fn.combotree.methods[_9ff]; -if(_a01){ -return _a01(this,_a00); -}else{ -return this.combo(_9ff,_a00); -} -} -_9ff=_9ff||{}; -return this.each(function(){ -var _a02=$.data(this,"combotree"); -if(_a02){ -$.extend(_a02.options,_9ff); -}else{ -$.data(this,"combotree",{options:$.extend({},$.fn.combotree.defaults,$.fn.combotree.parseOptions(this),_9ff)}); -} -_9eb(this); -}); -}; -$.fn.combotree.methods={options:function(jq){ -var _a03=jq.combo("options"); -return $.extend($.data(jq[0],"combotree").options,{width:_a03.width,height:_a03.height,originalValue:_a03.originalValue,disabled:_a03.disabled,readonly:_a03.readonly}); -},clone:function(jq,_a04){ -var t=jq.combo("clone",_a04); -t.data("combotree",{options:$.extend(true,{},jq.combotree("options")),tree:jq.combotree("tree")}); -return t; -},tree:function(jq){ -return $.data(jq[0],"combotree").tree; -},loadData:function(jq,data){ -return jq.each(function(){ -var opts=$.data(this,"combotree").options; -opts.data=data; -var tree=$.data(this,"combotree").tree; -tree.tree("loadData",data); -}); -},reload:function(jq,url){ -return jq.each(function(){ -var opts=$.data(this,"combotree").options; -var tree=$.data(this,"combotree").tree; -if(url){ -opts.url=url; -} -tree.tree({url:opts.url}); -}); -},setValues:function(jq,_a05){ -return jq.each(function(){ -_9f6(this,_a05); -}); -},setValue:function(jq,_a06){ -return jq.each(function(){ -_9f6(this,[_a06]); -}); -},clear:function(jq){ -return jq.each(function(){ -var tree=$.data(this,"combotree").tree; -tree.find("div.tree-node-selected").removeClass("tree-node-selected"); -var cc=tree.tree("getChecked"); -for(var i=0;i").appendTo(_a0e); -_a0a.grid=grid; -} -grid.datagrid($.extend({},opts,{border:false,singleSelect:(!opts.multiple),onLoadSuccess:function(data){ -var _a0f=$(_a09).combo("getValues"); -var _a10=opts.onSelect; -opts.onSelect=function(){ -}; -_a16(_a09,_a0f,_a0a.remainText); -opts.onSelect=_a10; -opts.onLoadSuccess.apply(_a09,arguments); -},onClickRow:_a11,onSelect:function(_a12,row){ -_a13(); -opts.onSelect.call(this,_a12,row); -},onUnselect:function(_a14,row){ -_a13(); -opts.onUnselect.call(this,_a14,row); -},onSelectAll:function(rows){ -_a13(); -opts.onSelectAll.call(this,rows); -},onUnselectAll:function(rows){ -if(opts.multiple){ -_a13(); -} -opts.onUnselectAll.call(this,rows); -}})); -function _a11(_a15,row){ -_a0a.remainText=false; -_a13(); -if(!opts.multiple){ -$(_a09).combo("hidePanel"); -} -opts.onClickRow.call(this,_a15,row); -}; -function _a13(){ -var vv=$.map(grid.datagrid("getSelections"),function(row){ -return row[opts.idField]; -}); -vv=vv.concat(opts.unselectedValues); -if(!opts.multiple){ -vv=vv.length?[vv[0]]:[""]; -} -_a16(_a09,vv,_a0a.remainText); -}; -}; -function nav(_a17,dir){ -var _a18=$.data(_a17,"combogrid"); -var opts=_a18.options; -var grid=_a18.grid; -var _a19=grid.datagrid("getRows").length; -if(!_a19){ -return; -} -var tr=opts.finder.getTr(grid[0],null,"highlight"); -if(!tr.length){ -tr=opts.finder.getTr(grid[0],null,"selected"); -} -var _a1a; -if(!tr.length){ -_a1a=(dir=="next"?0:_a19-1); -}else{ -var _a1a=parseInt(tr.attr("datagrid-row-index")); -_a1a+=(dir=="next"?1:-1); -if(_a1a<0){ -_a1a=_a19-1; -} -if(_a1a>=_a19){ -_a1a=0; -} -} -grid.datagrid("highlightRow",_a1a); -if(opts.selectOnNavigation){ -_a18.remainText=false; -grid.datagrid("selectRow",_a1a); -} -}; -function _a16(_a1b,_a1c,_a1d){ -var _a1e=$.data(_a1b,"combogrid"); -var opts=_a1e.options; -var grid=_a1e.grid; -var _a1f=$(_a1b).combo("getValues"); -var _a20=$(_a1b).combo("options"); -var _a21=_a20.onChange; -_a20.onChange=function(){ -}; -var _a22=grid.datagrid("options"); -var _a23=_a22.onSelect; -var _a24=_a22.onUnselectAll; -_a22.onSelect=_a22.onUnselectAll=function(){ -}; -if(!$.isArray(_a1c)){ -_a1c=_a1c.split(opts.separator); -} -var _a25=[]; -$.map(grid.datagrid("getSelections"),function(row){ -if($.inArray(row[opts.idField],_a1c)>=0){ -_a25.push(row); -} -}); -grid.datagrid("clearSelections"); -grid.data("datagrid").selectedRows=_a25; -var ss=[]; -for(var i=0;i<_a1c.length;i++){ -var _a26=_a1c[i]; -var _a27=grid.datagrid("getRowIndex",_a26); -if(_a27>=0){ -grid.datagrid("selectRow",_a27); -} -ss.push(_a28(_a26,grid.datagrid("getRows"))||_a28(_a26,grid.datagrid("getSelections"))||_a28(_a26,opts.mappingRows)||_a26); -} -opts.unselectedValues=[]; -var _a29=$.map(_a25,function(row){ -return row[opts.idField]; -}); -$.map(_a1c,function(_a2a){ -if($.inArray(_a2a,_a29)==-1){ -opts.unselectedValues.push(_a2a); -} -}); -$(_a1b).combo("setValues",_a1f); -_a20.onChange=_a21; -_a22.onSelect=_a23; -_a22.onUnselectAll=_a24; -if(!_a1d){ -var s=ss.join(opts.separator); -if($(_a1b).combo("getText")!=s){ -$(_a1b).combo("setText",s); -} -} -$(_a1b).combo("setValues",_a1c); -function _a28(_a2b,a){ -for(var i=0;i
                                          ").prependTo(_a42); -if(opts.sharedCalendar){ -var c=$(opts.sharedCalendar); -if(!c[0].pholder){ -c[0].pholder=$("
                                          ").insertAfter(c); -} -c.addClass("calendar-shared").appendTo(cc); -if(!c.hasClass("calendar")){ -c.calendar(); -} -_a3e.calendar=c; -}else{ -_a3e.calendar=$("
                                          ").appendTo(cc).calendar(); -} -$.extend(_a3e.calendar.calendar("options"),{fit:true,border:false,onSelect:function(date){ -var _a43=this.target; -var opts=$(_a43).datebox("options"); -_a4f(_a43,opts.formatter.call(_a43,date)); -$(_a43).combo("hidePanel"); -opts.onSelect.call(_a43,date); -}}); -} -$(_a3d).combo("textbox").parent().addClass("datebox"); -$(_a3d).datebox("initValue",opts.value); -function _a3f(_a44){ -var opts=$(_a44).datebox("options"); -var _a45=$(_a44).combo("panel"); -_a45.unbind(".datebox").bind("click.datebox",function(e){ -if($(e.target).hasClass("datebox-button-a")){ -var _a46=parseInt($(e.target).attr("datebox-button-index")); -opts.buttons[_a46].handler.call(e.target,_a44); -} -}); -}; -function _a40(_a47){ -var _a48=$(_a47).combo("panel"); -if(_a48.children("div.datebox-button").length){ -return; -} -var _a49=$("
                                          ").appendTo(_a48); -var tr=_a49.find("tr"); -for(var i=0;i").appendTo(tr); -var btn=opts.buttons[i]; -var t=$("").html($.isFunction(btn.text)?btn.text(_a47):btn.text).appendTo(td); -t.attr("datebox-button-index",i); -} -tr.find("td").css("width",(100/opts.buttons.length)+"%"); -}; -function _a41(_a4a){ -var _a4b=$(_a4a).combo("panel"); -var cc=_a4b.children("div.datebox-calendar-inner"); -_a4b.children()._outerWidth(_a4b.width()); -_a3e.calendar.appendTo(cc); -_a3e.calendar[0].target=_a4a; -if(opts.panelHeight!="auto"){ -var _a4c=_a4b.height(); -_a4b.children().not(cc).each(function(){ -_a4c-=$(this).outerHeight(); -}); -cc._outerHeight(_a4c); -} -_a3e.calendar.calendar("resize"); -}; -}; -function _a4d(_a4e,q){ -_a4f(_a4e,q,true); -}; -function _a50(_a51){ -var _a52=$.data(_a51,"datebox"); -var opts=_a52.options; -var _a53=_a52.calendar.calendar("options").current; -if(_a53){ -_a4f(_a51,opts.formatter.call(_a51,_a53)); -$(_a51).combo("hidePanel"); -} -}; -function _a4f(_a54,_a55,_a56){ -var _a57=$.data(_a54,"datebox"); -var opts=_a57.options; -var _a58=_a57.calendar; -_a58.calendar("moveTo",opts.parser.call(_a54,_a55)); -if(_a56){ -$(_a54).combo("setValue",_a55); -}else{ -if(_a55){ -_a55=opts.formatter.call(_a54,_a58.calendar("options").current); -} -$(_a54).combo("setText",_a55).combo("setValue",_a55); -} -}; -$.fn.datebox=function(_a59,_a5a){ -if(typeof _a59=="string"){ -var _a5b=$.fn.datebox.methods[_a59]; -if(_a5b){ -return _a5b(this,_a5a); -}else{ -return this.combo(_a59,_a5a); -} -} -_a59=_a59||{}; -return this.each(function(){ -var _a5c=$.data(this,"datebox"); -if(_a5c){ -$.extend(_a5c.options,_a59); -}else{ -$.data(this,"datebox",{options:$.extend({},$.fn.datebox.defaults,$.fn.datebox.parseOptions(this),_a59)}); -} -_a3c(this); -}); -}; -$.fn.datebox.methods={options:function(jq){ -var _a5d=jq.combo("options"); -return $.extend($.data(jq[0],"datebox").options,{width:_a5d.width,height:_a5d.height,originalValue:_a5d.originalValue,disabled:_a5d.disabled,readonly:_a5d.readonly}); -},cloneFrom:function(jq,from){ -return jq.each(function(){ -$(this).combo("cloneFrom",from); -$.data(this,"datebox",{options:$.extend(true,{},$(from).datebox("options")),calendar:$(from).datebox("calendar")}); -$(this).addClass("datebox-f"); -}); -},calendar:function(jq){ -return $.data(jq[0],"datebox").calendar; -},initValue:function(jq,_a5e){ -return jq.each(function(){ -var opts=$(this).datebox("options"); -var _a5f=opts.value; -if(_a5f){ -_a5f=opts.formatter.call(this,opts.parser.call(this,_a5f)); -} -$(this).combo("initValue",_a5f).combo("setText",_a5f); -}); -},setValue:function(jq,_a60){ -return jq.each(function(){ -_a4f(this,_a60); -}); -},reset:function(jq){ -return jq.each(function(){ -var opts=$(this).datebox("options"); -$(this).datebox("setValue",opts.originalValue); -}); -}}; -$.fn.datebox.parseOptions=function(_a61){ -return $.extend({},$.fn.combo.parseOptions(_a61),$.parser.parseOptions(_a61,["sharedCalendar"])); -}; -$.fn.datebox.defaults=$.extend({},$.fn.combo.defaults,{panelWidth:180,panelHeight:"auto",sharedCalendar:null,keyHandler:{up:function(e){ -},down:function(e){ -},left:function(e){ -},right:function(e){ -},enter:function(e){ -_a50(this); -},query:function(q,e){ -_a4d(this,q); -}},currentText:"Today",closeText:"Close",okText:"Ok",buttons:[{text:function(_a62){ -return $(_a62).datebox("options").currentText; -},handler:function(_a63){ -var now=new Date(); -$(_a63).datebox("calendar").calendar({year:now.getFullYear(),month:now.getMonth()+1,current:new Date(now.getFullYear(),now.getMonth(),now.getDate())}); -_a50(_a63); -}},{text:function(_a64){ -return $(_a64).datebox("options").closeText; -},handler:function(_a65){ -$(this).closest("div.combo-panel").panel("close"); -}}],formatter:function(date){ -var y=date.getFullYear(); -var m=date.getMonth()+1; -var d=date.getDate(); -return (m<10?("0"+m):m)+"/"+(d<10?("0"+d):d)+"/"+y; -},parser:function(s){ -if(!s){ -return new Date(); -} -var ss=s.split("/"); -var m=parseInt(ss[0],10); -var d=parseInt(ss[1],10); -var y=parseInt(ss[2],10); -if(!isNaN(y)&&!isNaN(m)&&!isNaN(d)){ -return new Date(y,m-1,d); -}else{ -return new Date(); -} -},onSelect:function(date){ -}}); -})(jQuery); -(function($){ -function _a66(_a67){ -var _a68=$.data(_a67,"datetimebox"); -var opts=_a68.options; -$(_a67).datebox($.extend({},opts,{onShowPanel:function(){ -var _a69=$(this).datetimebox("getValue"); -_a6f(this,_a69,true); -opts.onShowPanel.call(this); -},formatter:$.fn.datebox.defaults.formatter,parser:$.fn.datebox.defaults.parser})); -$(_a67).removeClass("datebox-f").addClass("datetimebox-f"); -$(_a67).datebox("calendar").calendar({onSelect:function(date){ -opts.onSelect.call(this.target,date); -}}); -if(!_a68.spinner){ -var _a6a=$(_a67).datebox("panel"); -var p=$("
                                          ").insertAfter(_a6a.children("div.datebox-calendar-inner")); -_a68.spinner=p.children("input"); -} -_a68.spinner.timespinner({width:opts.spinnerWidth,showSeconds:opts.showSeconds,separator:opts.timeSeparator}); -$(_a67).datetimebox("initValue",opts.value); -}; -function _a6b(_a6c){ -var c=$(_a6c).datetimebox("calendar"); -var t=$(_a6c).datetimebox("spinner"); -var date=c.calendar("options").current; -return new Date(date.getFullYear(),date.getMonth(),date.getDate(),t.timespinner("getHours"),t.timespinner("getMinutes"),t.timespinner("getSeconds")); -}; -function _a6d(_a6e,q){ -_a6f(_a6e,q,true); -}; -function _a70(_a71){ -var opts=$.data(_a71,"datetimebox").options; -var date=_a6b(_a71); -_a6f(_a71,opts.formatter.call(_a71,date)); -$(_a71).combo("hidePanel"); -}; -function _a6f(_a72,_a73,_a74){ -var opts=$.data(_a72,"datetimebox").options; -$(_a72).combo("setValue",_a73); -if(!_a74){ -if(_a73){ -var date=opts.parser.call(_a72,_a73); -$(_a72).combo("setText",opts.formatter.call(_a72,date)); -$(_a72).combo("setValue",opts.formatter.call(_a72,date)); -}else{ -$(_a72).combo("setText",_a73); -} -} -var date=opts.parser.call(_a72,_a73); -$(_a72).datetimebox("calendar").calendar("moveTo",date); -$(_a72).datetimebox("spinner").timespinner("setValue",_a75(date)); -function _a75(date){ -function _a76(_a77){ -return (_a77<10?"0":"")+_a77; -}; -var tt=[_a76(date.getHours()),_a76(date.getMinutes())]; -if(opts.showSeconds){ -tt.push(_a76(date.getSeconds())); -} -return tt.join($(_a72).datetimebox("spinner").timespinner("options").separator); -}; -}; -$.fn.datetimebox=function(_a78,_a79){ -if(typeof _a78=="string"){ -var _a7a=$.fn.datetimebox.methods[_a78]; -if(_a7a){ -return _a7a(this,_a79); -}else{ -return this.datebox(_a78,_a79); -} -} -_a78=_a78||{}; -return this.each(function(){ -var _a7b=$.data(this,"datetimebox"); -if(_a7b){ -$.extend(_a7b.options,_a78); -}else{ -$.data(this,"datetimebox",{options:$.extend({},$.fn.datetimebox.defaults,$.fn.datetimebox.parseOptions(this),_a78)}); -} -_a66(this); -}); -}; -$.fn.datetimebox.methods={options:function(jq){ -var _a7c=jq.datebox("options"); -return $.extend($.data(jq[0],"datetimebox").options,{originalValue:_a7c.originalValue,disabled:_a7c.disabled,readonly:_a7c.readonly}); -},cloneFrom:function(jq,from){ -return jq.each(function(){ -$(this).datebox("cloneFrom",from); -$.data(this,"datetimebox",{options:$.extend(true,{},$(from).datetimebox("options")),spinner:$(from).datetimebox("spinner")}); -$(this).removeClass("datebox-f").addClass("datetimebox-f"); -}); -},spinner:function(jq){ -return $.data(jq[0],"datetimebox").spinner; -},initValue:function(jq,_a7d){ -return jq.each(function(){ -var opts=$(this).datetimebox("options"); -var _a7e=opts.value; -if(_a7e){ -_a7e=opts.formatter.call(this,opts.parser.call(this,_a7e)); -} -$(this).combo("initValue",_a7e).combo("setText",_a7e); -}); -},setValue:function(jq,_a7f){ -return jq.each(function(){ -_a6f(this,_a7f); -}); -},reset:function(jq){ -return jq.each(function(){ -var opts=$(this).datetimebox("options"); -$(this).datetimebox("setValue",opts.originalValue); -}); -}}; -$.fn.datetimebox.parseOptions=function(_a80){ -var t=$(_a80); -return $.extend({},$.fn.datebox.parseOptions(_a80),$.parser.parseOptions(_a80,["timeSeparator","spinnerWidth",{showSeconds:"boolean"}])); -}; -$.fn.datetimebox.defaults=$.extend({},$.fn.datebox.defaults,{spinnerWidth:"100%",showSeconds:true,timeSeparator:":",keyHandler:{up:function(e){ -},down:function(e){ -},left:function(e){ -},right:function(e){ -},enter:function(e){ -_a70(this); -},query:function(q,e){ -_a6d(this,q); -}},buttons:[{text:function(_a81){ -return $(_a81).datetimebox("options").currentText; -},handler:function(_a82){ -var opts=$(_a82).datetimebox("options"); -_a6f(_a82,opts.formatter.call(_a82,new Date())); -$(_a82).datetimebox("hidePanel"); -}},{text:function(_a83){ -return $(_a83).datetimebox("options").okText; -},handler:function(_a84){ -_a70(_a84); -}},{text:function(_a85){ -return $(_a85).datetimebox("options").closeText; -},handler:function(_a86){ -$(_a86).datetimebox("hidePanel"); -}}],formatter:function(date){ -var h=date.getHours(); -var M=date.getMinutes(); -var s=date.getSeconds(); -function _a87(_a88){ -return (_a88<10?"0":"")+_a88; -}; -var _a89=$(this).datetimebox("spinner").timespinner("options").separator; -var r=$.fn.datebox.defaults.formatter(date)+" "+_a87(h)+_a89+_a87(M); -if($(this).datetimebox("options").showSeconds){ -r+=_a89+_a87(s); -} -return r; -},parser:function(s){ -if($.trim(s)==""){ -return new Date(); -} -var dt=s.split(" "); -var d=$.fn.datebox.defaults.parser(dt[0]); -if(dt.length<2){ -return d; -} -var _a8a=$(this).datetimebox("spinner").timespinner("options").separator; -var tt=dt[1].split(_a8a); -var hour=parseInt(tt[0],10)||0; -var _a8b=parseInt(tt[1],10)||0; -var _a8c=parseInt(tt[2],10)||0; -return new Date(d.getFullYear(),d.getMonth(),d.getDate(),hour,_a8b,_a8c); -}}); -})(jQuery); -(function($){ -function init(_a8d){ -var _a8e=$("
                                          "+"
                                          "+""+""+"
                                          "+"
                                          "+"
                                          "+"
                                          "+""+"
                                          ").insertAfter(_a8d); -var t=$(_a8d); -t.addClass("slider-f").hide(); -var name=t.attr("name"); -if(name){ -_a8e.find("input.slider-value").attr("name",name); -t.removeAttr("name").attr("sliderName",name); -} -_a8e.bind("_resize",function(e,_a8f){ -if($(this).hasClass("easyui-fluid")||_a8f){ -_a90(_a8d); -} -return false; -}); -return _a8e; -}; -function _a90(_a91,_a92){ -var _a93=$.data(_a91,"slider"); -var opts=_a93.options; -var _a94=_a93.slider; -if(_a92){ -if(_a92.width){ -opts.width=_a92.width; -} -if(_a92.height){ -opts.height=_a92.height; -} -} -_a94._size(opts); -if(opts.mode=="h"){ -_a94.css("height",""); -_a94.children("div").css("height",""); -}else{ -_a94.css("width",""); -_a94.children("div").css("width",""); -_a94.children("div.slider-rule,div.slider-rulelabel,div.slider-inner")._outerHeight(_a94._outerHeight()); -} -_a95(_a91); -}; -function _a96(_a97){ -var _a98=$.data(_a97,"slider"); -var opts=_a98.options; -var _a99=_a98.slider; -var aa=opts.mode=="h"?opts.rule:opts.rule.slice(0).reverse(); -if(opts.reversed){ -aa=aa.slice(0).reverse(); -} -_a9a(aa); -function _a9a(aa){ -var rule=_a99.find("div.slider-rule"); -var _a9b=_a99.find("div.slider-rulelabel"); -rule.empty(); -_a9b.empty(); -for(var i=0;i").appendTo(rule); -span.css((opts.mode=="h"?"left":"top"),_a9c); -if(aa[i]!="|"){ -span=$("").appendTo(_a9b); -span.html(aa[i]); -if(opts.mode=="h"){ -span.css({left:_a9c,marginLeft:-Math.round(span.outerWidth()/2)}); -}else{ -span.css({top:_a9c,marginTop:-Math.round(span.outerHeight()/2)}); -} -} -} -}; -}; -function _a9d(_a9e){ -var _a9f=$.data(_a9e,"slider"); -var opts=_a9f.options; -var _aa0=_a9f.slider; -_aa0.removeClass("slider-h slider-v slider-disabled"); -_aa0.addClass(opts.mode=="h"?"slider-h":"slider-v"); -_aa0.addClass(opts.disabled?"slider-disabled":""); -var _aa1=_aa0.find(".slider-inner"); -_aa1.html(""+""); -if(opts.range){ -_aa1.append(""+""); -} -_aa0.find("a.slider-handle").draggable({axis:opts.mode,cursor:"pointer",disabled:opts.disabled,onDrag:function(e){ -var left=e.data.left; -var _aa2=_aa0.width(); -if(opts.mode!="h"){ -left=e.data.top; -_aa2=_aa0.height(); -} -if(left<0||left>_aa2){ -return false; -}else{ -_aa3(left,this); -return false; -} -},onStartDrag:function(){ -_a9f.isDragging=true; -opts.onSlideStart.call(_a9e,opts.value); -},onStopDrag:function(e){ -_aa3(opts.mode=="h"?e.data.left:e.data.top,this); -opts.onSlideEnd.call(_a9e,opts.value); -opts.onComplete.call(_a9e,opts.value); -_a9f.isDragging=false; -}}); -_aa0.find("div.slider-inner").unbind(".slider").bind("mousedown.slider",function(e){ -if(_a9f.isDragging||opts.disabled){ -return; -} -var pos=$(this).offset(); -_aa3(opts.mode=="h"?(e.pageX-pos.left):(e.pageY-pos.top)); -opts.onComplete.call(_a9e,opts.value); -}); -function _aa3(pos,_aa4){ -var _aa5=_aa6(_a9e,pos); -var s=Math.abs(_aa5%opts.step); -if(s0; -if(_aa5<=v2&&_aa7){ -v1=_aa5; -}else{ -if(_aa5>=v1&&(!_aa7)){ -v2=_aa5; -} -} -}else{ -if(_aa5v2){ -v2=_aa5; -}else{ -_aa5opts.max){ -_aaf=opts.max; -} -var _ab0=$("").appendTo(_aac); -_ab0.attr("name",name); -_ab0.val(_aaf); -_aae.push(_aaf); -var _ab1=_aac.find(".slider-handle:eq("+i+")"); -var tip=_ab1.next(); -var pos=_ab2(_aa9,_aaf); -if(opts.showTip){ -tip.show(); -tip.html(opts.tipFormatter.call(_aa9,_aaf)); -}else{ -tip.hide(); -} -if(opts.mode=="h"){ -var _ab3="left:"+pos+"px;"; -_ab1.attr("style",_ab3); -tip.attr("style",_ab3+"margin-left:"+(-Math.round(tip.outerWidth()/2))+"px"); -}else{ -var _ab3="top:"+pos+"px;"; -_ab1.attr("style",_ab3); -tip.attr("style",_ab3+"margin-left:"+(-Math.round(tip.outerWidth()))+"px"); -} -} -opts.value=opts.range?_aae:_aae[0]; -$(_aa9).val(opts.range?_aae.join(opts.separator):_aae[0]); -if(_aad.join(",")!=_aae.join(",")){ -opts.onChange.call(_aa9,opts.value,(opts.range?_aad:_aad[0])); -} -}; -function _a95(_ab4){ -var opts=$.data(_ab4,"slider").options; -var fn=opts.onChange; -opts.onChange=function(){ -}; -_aa8(_ab4,opts.value); -opts.onChange=fn; -}; -function _ab2(_ab5,_ab6){ -var _ab7=$.data(_ab5,"slider"); -var opts=_ab7.options; -var _ab8=_ab7.slider; -var size=opts.mode=="h"?_ab8.width():_ab8.height(); -var pos=opts.converter.toPosition.call(_ab5,_ab6,size); -if(opts.mode=="v"){ -pos=_ab8.height()-pos; -} -if(opts.reversed){ -pos=size-pos; -} -return pos.toFixed(0); -}; -function _aa6(_ab9,pos){ -var _aba=$.data(_ab9,"slider"); -var opts=_aba.options; -var _abb=_aba.slider; -var size=opts.mode=="h"?_abb.width():_abb.height(); -var pos=opts.mode=="h"?(opts.reversed?(size-pos):pos):(opts.reversed?pos:(size-pos)); -var _abc=opts.converter.toValue.call(_ab9,pos,size); -return _abc.toFixed(0); -}; -$.fn.slider=function(_abd,_abe){ -if(typeof _abd=="string"){ -return $.fn.slider.methods[_abd](this,_abe); -} -_abd=_abd||{}; -return this.each(function(){ -var _abf=$.data(this,"slider"); -if(_abf){ -$.extend(_abf.options,_abd); -}else{ -_abf=$.data(this,"slider",{options:$.extend({},$.fn.slider.defaults,$.fn.slider.parseOptions(this),_abd),slider:init(this)}); -$(this).removeAttr("disabled"); -} -var opts=_abf.options; -opts.min=parseFloat(opts.min); -opts.max=parseFloat(opts.max); -if(opts.range){ -if(!$.isArray(opts.value)){ -opts.value=$.map(String(opts.value).split(opts.separator),function(v){ -return parseFloat(v); -}); -} -if(opts.value.length<2){ -opts.value.push(opts.max); -} -}else{ -opts.value=parseFloat(opts.value); -} -opts.step=parseFloat(opts.step); -opts.originalValue=opts.value; -_a9d(this); -_a96(this); -_a90(this); -}); -}; -$.fn.slider.methods={options:function(jq){ -return $.data(jq[0],"slider").options; -},destroy:function(jq){ -return jq.each(function(){ -$.data(this,"slider").slider.remove(); -$(this).remove(); -}); -},resize:function(jq,_ac0){ -return jq.each(function(){ -_a90(this,_ac0); -}); -},getValue:function(jq){ -return jq.slider("options").value; -},getValues:function(jq){ -return jq.slider("options").value; -},setValue:function(jq,_ac1){ -return jq.each(function(){ -_aa8(this,[_ac1]); -}); -},setValues:function(jq,_ac2){ -return jq.each(function(){ -_aa8(this,_ac2); -}); -},clear:function(jq){ -return jq.each(function(){ -var opts=$(this).slider("options"); -_aa8(this,opts.range?[opts.min,opts.max]:[opts.min]); -}); -},reset:function(jq){ -return jq.each(function(){ -var opts=$(this).slider("options"); -$(this).slider(opts.range?"setValues":"setValue",opts.originalValue); -}); -},enable:function(jq){ -return jq.each(function(){ -$.data(this,"slider").options.disabled=false; -_a9d(this); -}); -},disable:function(jq){ -return jq.each(function(){ -$.data(this,"slider").options.disabled=true; -_a9d(this); -}); -}}; -$.fn.slider.parseOptions=function(_ac3){ -var t=$(_ac3); -return $.extend({},$.parser.parseOptions(_ac3,["width","height","mode",{reversed:"boolean",showTip:"boolean",range:"boolean",min:"number",max:"number",step:"number"}]),{value:(t.val()||undefined),disabled:(t.attr("disabled")?true:undefined),rule:(t.attr("rule")?eval(t.attr("rule")):undefined)}); -}; -$.fn.slider.defaults={width:"auto",height:"auto",mode:"h",reversed:false,showTip:false,disabled:false,range:false,value:0,separator:",",min:0,max:100,step:1,rule:[],tipFormatter:function(_ac4){ -return _ac4; -},converter:{toPosition:function(_ac5,size){ -var opts=$(this).slider("options"); -return (_ac5-opts.min)/(opts.max-opts.min)*size; -},toValue:function(pos,size){ -var opts=$(this).slider("options"); -return opts.min+(opts.max-opts.min)*(pos/size); -}},onChange:function(_ac6,_ac7){ -},onSlideStart:function(_ac8){ -},onSlideEnd:function(_ac9){ -},onComplete:function(_aca){ -}}; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/jquery.easyui.mobile.js b/vendor/FHC-vendor/easyui/jquery.easyui.mobile.js deleted file mode 100644 index 12120494c..000000000 --- a/vendor/FHC-vendor/easyui/jquery.easyui.mobile.js +++ /dev/null @@ -1,137 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -$.fn.navpanel=function(_1,_2){ -if(typeof _1=="string"){ -var _3=$.fn.navpanel.methods[_1]; -return _3?_3(this,_2):this.panel(_1,_2); -}else{ -_1=_1||{}; -return this.each(function(){ -var _4=$.data(this,"navpanel"); -if(_4){ -$.extend(_4.options,_1); -}else{ -_4=$.data(this,"navpanel",{options:$.extend({},$.fn.navpanel.defaults,$.fn.navpanel.parseOptions(this,_1))}); -} -$(this).panel(_4.options); -}); -} -}; -$.fn.navpanel.methods={options:function(jq){ -return $.data(jq[0],"navpanel").options; -}}; -$.fn.navpanel.parseOptions=function(_5){ -return $.extend({},$.fn.panel.parseOptions(_5),$.parser.parseOptions(_5,[])); -}; -$.fn.navpanel.defaults=$.extend({},$.fn.panel.defaults,{fit:true,border:false,cls:"navpanel"}); -$.parser.plugins.push("navpanel"); -})(jQuery); -(function($){ -$(function(){ -$.mobile.init(); -}); -$.mobile={defaults:{animation:"slide",direction:"left",reverseDirections:{up:"down",down:"up",left:"right",right:"left"}},panels:[],init:function(_6){ -$.mobile.panels=[]; -var _7=$(_6||"body").children(".navpanel:visible"); -if(_7.length){ -_7.not(":first").children(".panel-body").navpanel("close"); -var p=_7.eq(0).children(".panel-body"); -$.mobile.panels.push({panel:p,animation:$.mobile.defaults.animation,direction:$.mobile.defaults.direction}); -} -$(document).unbind(".mobile").bind("click.mobile",function(e){ -var a=$(e.target).closest("a"); -if(a.length){ -var _8=$.parser.parseOptions(a[0],["animation","direction",{back:"boolean"}]); -if(_8.back){ -$.mobile.back(); -e.preventDefault(); -}else{ -var _9=$.trim(a.attr("href")); -if(/^#/.test(_9)){ -var to=$(_9); -if(to.length&&to.hasClass("panel-body")){ -$.mobile.go(to,_8.animation,_8.direction); -e.preventDefault(); -} -} -} -} -}); -$(window).unbind(".mobile").bind("hashchange.mobile",function(){ -var _a=$.mobile.panels.length; -if(_a>1){ -var _b=location.hash; -var p=$.mobile.panels[_a-2]; -if(!_b||_b=="#&"+p.panel.attr("id")){ -$.mobile._back(); -} -} -}); -},nav:function(_c,to,_d,_e){ -if(window.WebKitAnimationEvent){ -_d=_d!=undefined?_d:$.mobile.defaults.animation; -_e=_e!=undefined?_e:$.mobile.defaults.direction; -var _f="m-"+_d+(_e?"-"+_e:""); -var p1=$(_c).panel("open").panel("resize").panel("panel"); -var p2=$(to).panel("open").panel("resize").panel("panel"); -p1.add(p2).bind("webkitAnimationEnd",function(){ -$(this).unbind("webkitAnimationEnd"); -var p=$(this).children(".panel-body"); -if($(this).hasClass("m-in")){ -p.panel("open").panel("resize"); -}else{ -p.panel("close"); -} -$(this).removeClass(_f+" m-in m-out"); -}); -p2.addClass(_f+" m-in"); -p1.addClass(_f+" m-out"); -}else{ -$(to).panel("open").panel("resize"); -$(_c).panel("close"); -} -},_go:function(_10,_11,_12){ -_11=_11!=undefined?_11:$.mobile.defaults.animation; -_12=_12!=undefined?_12:$.mobile.defaults.direction; -var _13=$.mobile.panels[$.mobile.panels.length-1].panel; -var to=$(_10); -if(_13[0]!=to[0]){ -$.mobile.nav(_13,to,_11,_12); -$.mobile.panels.push({panel:to,animation:_11,direction:_12}); -} -},_back:function(){ -if($.mobile.panels.length<2){ -return; -} -var p1=$.mobile.panels.pop(); -var p2=$.mobile.panels[$.mobile.panels.length-1]; -var _14=p1.animation; -var _15=$.mobile.defaults.reverseDirections[p1.direction]||""; -$.mobile.nav(p1.panel,p2.panel,_14,_15); -},go:function(_16,_17,_18){ -_17=_17!=undefined?_17:$.mobile.defaults.animation; -_18=_18!=undefined?_18:$.mobile.defaults.direction; -location.hash="#&"+$(_16).attr("id"); -$.mobile._go(_16,_17,_18); -},back:function(){ -history.go(-1); -}}; -$.map(["validatebox","textbox","filebox","searchbox","combo","combobox","combogrid","combotree","datebox","datetimebox","numberbox","spinner","numberspinner","timespinner","datetimespinner"],function(_19){ -if($.fn[_19]){ -$.extend($.fn[_19].defaults,{height:32,iconWidth:28,tipPosition:"bottom"}); -} -}); -$.map(["spinner","numberspinner","timespinner","datetimespinner"],function(_1a){ -$.extend($.fn[_1a].defaults,{height:32,iconWidth:56}); -}); -$.extend($.fn.menu.defaults,{itemHeight:30,noline:true}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/jquery.min.js b/vendor/FHC-vendor/easyui/jquery.min.js deleted file mode 100644 index 0f60b7bd0..000000000 --- a/vendor/FHC-vendor/easyui/jquery.min.js +++ /dev/null @@ -1,5 +0,0 @@ -/*! jQuery v1.11.3 | (c) 2005, 2015 jQuery Foundation, Inc. | jquery.org/license */ -!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.3",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b="length"in a&&a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,aa=/[+~]/,ba=/'|\\/g,ca=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),da=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ea=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fa){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(ba,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+ra(o[l]);w=aa.test(a)&&pa(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function pa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",ea,!1):e.attachEvent&&e.attachEvent("onunload",ea)),p=!f(g),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){var b=g.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===g||a.ownerDocument===v&&t(v,a)?-1:b===g||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?la(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ca,da),a[3]=(a[3]||a[4]||a[5]||"").replace(ca,da),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ca,da).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(Q," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(ca,da),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return W.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(ca,da).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:oa(function(){return[0]}),last:oa(function(a,b){return[b-1]}),eq:oa(function(a,b,c){return[0>c?c+b:c]}),even:oa(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:oa(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:oa(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:oa(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function sa(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function ta(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ua(a,b,c){for(var d=0,e=b.length;e>d;d++)ga(a,b[d],c);return c}function va(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function wa(a,b,c,d,e,f){return d&&!d[u]&&(d=wa(d)),e&&!e[u]&&(e=wa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ua(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:va(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=va(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=va(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sa(function(a){return a===b},h,!0),l=sa(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[sa(ta(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return wa(i>1&&ta(m),i>1&&ra(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xa(a.slice(i,e)),f>e&&xa(a=a.slice(e)),f>e&&ra(a))}m.push(c)}return ta(m)}function ya(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=va(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&ga.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,ya(e,d)),f.selector=a}return f},i=ga.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ca,da),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ca,da),aa.test(j[0].type)&&pa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&ra(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,aa.test(a)&&pa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1; - -return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="
                                          a",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function aa(){return!0}function ba(){return!1}function ca(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),ha=/^\s+/,ia=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,ja=/<([\w:]+)/,ka=/\s*$/g,ra={option:[1,""],legend:[1,"
                                          ","
                                          "],area:[1,"",""],param:[1,"",""],thead:[1,"","
                                          "],tr:[2,"","
                                          "],col:[2,"","
                                          "],td:[3,"","
                                          "],_default:k.htmlSerialize?[0,"",""]:[1,"X
                                          ","
                                          "]},sa=da(y),ta=sa.appendChild(y.createElement("div"));ra.optgroup=ra.option,ra.tbody=ra.tfoot=ra.colgroup=ra.caption=ra.thead,ra.th=ra.td;function ua(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ua(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function va(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wa(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xa(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function ya(a){var b=pa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function za(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Aa(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Ba(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xa(b).text=a.text,ya(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!ga.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ta.innerHTML=a.outerHTML,ta.removeChild(f=ta.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ua(f),h=ua(a),g=0;null!=(e=h[g]);++g)d[g]&&Ba(e,d[g]);if(b)if(c)for(h=h||ua(a),d=d||ua(f),g=0;null!=(e=h[g]);g++)Aa(e,d[g]);else Aa(a,f);return d=ua(f,"script"),d.length>0&&za(d,!i&&ua(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=da(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(la.test(f)){h=h||o.appendChild(b.createElement("div")),i=(ja.exec(f)||["",""])[1].toLowerCase(),l=ra[i]||ra._default,h.innerHTML=l[1]+f.replace(ia,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&ha.test(f)&&p.push(b.createTextNode(ha.exec(f)[0])),!k.tbody){f="table"!==i||ka.test(f)?""!==l[1]||ka.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ua(p,"input"),va),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ua(o.appendChild(f),"script"),g&&za(h),c)){e=0;while(f=h[e++])oa.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ua(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&za(ua(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ua(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fa,""):void 0;if(!("string"!=typeof a||ma.test(a)||!k.htmlSerialize&&ga.test(a)||!k.leadingWhitespace&&ha.test(a)||ra[(ja.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ia,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ua(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ua(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&na.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ua(i,"script"),xa),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ua(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,ya),j=0;f>j;j++)d=g[j],oa.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qa,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Ca,Da={};function Ea(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fa(a){var b=y,c=Da[a];return c||(c=Ea(a,b),"none"!==c&&c||(Ca=(Ca||m("").appendTo("body"); -_7.attr("src",window.ActiveXObject?"javascript:false":"about:blank"); -_7.css({position:"absolute",top:-1000,left:-1000}); -_7.bind("load",cb); -_8(_5); -function _8(_9){ -var _a=$(_2); -if(_4.url){ -_a.attr("action",_4.url); -} -var t=_a.attr("target"),a=_a.attr("action"); -_a.attr("target",_6); -var _b=$(); -try{ -for(var n in _9){ -var _c=$("").val(_9[n]).appendTo(_a); -_b=_b.add(_c); -} -_d(); -_a[0].submit(); -} -finally{ -_a.attr("action",a); -t?_a.attr("target",t):_a.removeAttr("target"); -_b.remove(); -} -}; -function _d(){ -var f=$("#"+_6); -if(!f.length){ -return; -} -try{ -var s=f.contents()[0].readyState; -if(s&&s.toLowerCase()=="uninitialized"){ -setTimeout(_d,100); -} -} -catch(e){ -cb(); -} -}; -var _e=10; -function cb(){ -var f=$("#"+_6); -if(!f.length){ -return; -} -f.unbind(); -var _f=""; -try{ -var _10=f.contents().find("body"); -_f=_10.html(); -if(_f==""){ -if(--_e){ -setTimeout(cb,100); -return; -} -} -var ta=_10.find(">textarea"); -if(ta.length){ -_f=ta.val(); -}else{ -var pre=_10.find(">pre"); -if(pre.length){ -_f=pre.html(); -} -} -} -catch(e){ -} -_4.success(_f); -setTimeout(function(){ -f.unbind(); -f.remove(); -},100); -}; -}; -function _11(_12,_13){ -var _14=$.data(_12,"form").options; -if(typeof _13=="string"){ -var _15={}; -if(_14.onBeforeLoad.call(_12,_15)==false){ -return; -} -$.ajax({url:_13,data:_15,dataType:"json",success:function(_16){ -_17(_16); -},error:function(){ -_14.onLoadError.apply(_12,arguments); -}}); -}else{ -_17(_13); -} -function _17(_18){ -var _19=$(_12); -for(var _1a in _18){ -var val=_18[_1a]; -if(!_1b(_1a,val)){ -if(!_1c(_1a,val)){ -_19.find("input[name=\""+_1a+"\"]").val(val); -_19.find("textarea[name=\""+_1a+"\"]").val(val); -_19.find("select[name=\""+_1a+"\"]").val(val); -} -} -} -_14.onLoadSuccess.call(_12,_18); -_19.form("validate"); -}; -function _1b(_1d,val){ -var cc=$(_12).find("[switchbuttonName=\""+_1d+"\"]"); -if(cc.length){ -cc.switchbutton("uncheck"); -cc.each(function(){ -if(_1e($(this).switchbutton("options").value,val)){ -$(this).switchbutton("check"); -} -}); -return true; -} -cc=$(_12).find("input[name=\""+_1d+"\"][type=radio], input[name=\""+_1d+"\"][type=checkbox]"); -if(cc.length){ -cc._propAttr("checked",false); -cc.each(function(){ -if(_1e($(this).val(),val)){ -$(this)._propAttr("checked",true); -} -}); -return true; -} -return false; -}; -function _1e(v,val){ -if(v==String(val)||$.inArray(v,$.isArray(val)?val:[val])>=0){ -return true; -}else{ -return false; -} -}; -function _1c(_1f,val){ -var _20=$(_12).find("[textboxName=\""+_1f+"\"],[sliderName=\""+_1f+"\"]"); -if(_20.length){ -for(var i=0;i<_14.fieldTypes.length;i++){ -var _21=_14.fieldTypes[i]; -var _22=_20.data(_21); -if(_22){ -if(_22.options.multiple||_22.options.range){ -_20[_21]("setValues",val); -}else{ -_20[_21]("setValue",val); -} -return true; -} -} -} -return false; -}; -}; -function _23(_24){ -$("input,select,textarea",_24).each(function(){ -var t=this.type,tag=this.tagName.toLowerCase(); -if(t=="text"||t=="hidden"||t=="password"||tag=="textarea"){ -this.value=""; -}else{ -if(t=="file"){ -var _25=$(this); -if(!_25.hasClass("textbox-value")){ -var _26=_25.clone().val(""); -_26.insertAfter(_25); -if(_25.data("validatebox")){ -_25.validatebox("destroy"); -_26.validatebox(); -}else{ -_25.remove(); -} -} -}else{ -if(t=="checkbox"||t=="radio"){ -this.checked=false; -}else{ -if(tag=="select"){ -this.selectedIndex=-1; -} -} -} -} -}); -var _27=$(_24); -var _28=$.data(_24,"form").options; -for(var i=_28.fieldTypes.length-1;i>=0;i--){ -var _29=_28.fieldTypes[i]; -var _2a=_27.find("."+_29+"-f"); -if(_2a.length&&_2a[_29]){ -_2a[_29]("clear"); -} -} -_27.form("validate"); -}; -function _2b(_2c){ -_2c.reset(); -var _2d=$(_2c); -var _2e=$.data(_2c,"form").options; -for(var i=_2e.fieldTypes.length-1;i>=0;i--){ -var _2f=_2e.fieldTypes[i]; -var _30=_2d.find("."+_2f+"-f"); -if(_30.length&&_30[_2f]){ -_30[_2f]("reset"); -} -} -_2d.form("validate"); -}; -function _31(_32){ -var _33=$.data(_32,"form").options; -$(_32).unbind(".form"); -if(_33.ajax){ -$(_32).bind("submit.form",function(){ -setTimeout(function(){ -_1(_32,_33); -},0); -return false; -}); -} -$(_32).bind("_change.form",function(e,t){ -_33.onChange.call(this,t); -}).bind("change.form",function(e){ -var t=e.target; -if(!$(t).hasClass("textbox-text")){ -_33.onChange.call(this,t); -} -}); -_34(_32,_33.novalidate); -}; -function _35(_36,_37){ -_37=_37||{}; -var _38=$.data(_36,"form"); -if(_38){ -$.extend(_38.options,_37); -}else{ -$.data(_36,"form",{options:$.extend({},$.fn.form.defaults,$.fn.form.parseOptions(_36),_37)}); -} -}; -function _39(_3a){ -if($.fn.validatebox){ -var t=$(_3a); -t.find(".validatebox-text:not(:disabled)").validatebox("validate"); -var _3b=t.find(".validatebox-invalid"); -_3b.filter(":not(:disabled):first").focus(); -return _3b.length==0; -} -return true; -}; -function _34(_3c,_3d){ -var _3e=$.data(_3c,"form").options; -_3e.novalidate=_3d; -$(_3c).find(".validatebox-text:not(:disabled)").validatebox(_3d?"disableValidation":"enableValidation"); -}; -$.fn.form=function(_3f,_40){ -if(typeof _3f=="string"){ -this.each(function(){ -_35(this); -}); -return $.fn.form.methods[_3f](this,_40); -} -return this.each(function(){ -_35(this,_3f); -_31(this); -}); -}; -$.fn.form.methods={options:function(jq){ -return $.data(jq[0],"form").options; -},submit:function(jq,_41){ -return jq.each(function(){ -_1(this,_41); -}); -},load:function(jq,_42){ -return jq.each(function(){ -_11(this,_42); -}); -},clear:function(jq){ -return jq.each(function(){ -_23(this); -}); -},reset:function(jq){ -return jq.each(function(){ -_2b(this); -}); -},validate:function(jq){ -return _39(jq[0]); -},disableValidation:function(jq){ -return jq.each(function(){ -_34(this,true); -}); -},enableValidation:function(jq){ -return jq.each(function(){ -_34(this,false); -}); -}}; -$.fn.form.parseOptions=function(_43){ -var t=$(_43); -return $.extend({},$.parser.parseOptions(_43,[{ajax:"boolean"}]),{url:(t.attr("action")?t.attr("action"):undefined)}); -}; -$.fn.form.defaults={fieldTypes:["combobox","combotree","combogrid","datetimebox","datebox","combo","datetimespinner","timespinner","numberspinner","spinner","slider","searchbox","numberbox","textbox","switchbutton"],novalidate:false,ajax:true,url:null,queryParams:{},onSubmit:function(_44){ -return $(this).form("validate"); -},success:function(_45){ -},onBeforeLoad:function(_46){ -},onLoadSuccess:function(_47){ -},onLoadError:function(){ -},onChange:function(_48){ -}}; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.layout.js b/vendor/FHC-vendor/easyui/plugins/jquery.layout.js deleted file mode 100644 index 33a734262..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.layout.js +++ /dev/null @@ -1,483 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -var _1=false; -function _2(_3,_4){ -var _5=$.data(_3,"layout"); -var _6=_5.options; -var _7=_5.panels; -var cc=$(_3); -if(_4){ -$.extend(_6,{width:_4.width,height:_4.height}); -} -if(_3.tagName.toLowerCase()=="body"){ -cc._size("fit"); -}else{ -cc._size(_6); -} -var _8={top:0,left:0,width:cc.width(),height:cc.height()}; -_9(_a(_7.expandNorth)?_7.expandNorth:_7.north,"n"); -_9(_a(_7.expandSouth)?_7.expandSouth:_7.south,"s"); -_b(_a(_7.expandEast)?_7.expandEast:_7.east,"e"); -_b(_a(_7.expandWest)?_7.expandWest:_7.west,"w"); -_7.center.panel("resize",_8); -function _9(pp,_c){ -if(!pp.length||!_a(pp)){ -return; -} -var _d=pp.panel("options"); -pp.panel("resize",{width:cc.width(),height:_d.height}); -var _e=pp.panel("panel").outerHeight(); -pp.panel("move",{left:0,top:(_c=="n"?0:cc.height()-_e)}); -_8.height-=_e; -if(_c=="n"){ -_8.top+=_e; -if(!_d.split&&_d.border){ -_8.top--; -} -} -if(!_d.split&&_d.border){ -_8.height++; -} -}; -function _b(pp,_f){ -if(!pp.length||!_a(pp)){ -return; -} -var _10=pp.panel("options"); -pp.panel("resize",{width:_10.width,height:_8.height}); -var _11=pp.panel("panel").outerWidth(); -pp.panel("move",{left:(_f=="e"?cc.width()-_11:0),top:_8.top}); -_8.width-=_11; -if(_f=="w"){ -_8.left+=_11; -if(!_10.split&&_10.border){ -_8.left--; -} -} -if(!_10.split&&_10.border){ -_8.width++; -} -}; -}; -function _12(_13){ -var cc=$(_13); -cc.addClass("layout"); -function _14(cc){ -var _15=cc.layout("options"); -var _16=_15.onAdd; -_15.onAdd=function(){ -}; -cc.children("div").each(function(){ -var _17=$.fn.layout.parsePanelOptions(this); -if("north,south,east,west,center".indexOf(_17.region)>=0){ -_19(_13,_17,this); -} -}); -_15.onAdd=_16; -}; -cc.children("form").length?_14(cc.children("form")):_14(cc); -cc.append("
                                          "); -cc.bind("_resize",function(e,_18){ -if($(this).hasClass("easyui-fluid")||_18){ -_2(_13); -} -return false; -}); -}; -function _19(_1a,_1b,el){ -_1b.region=_1b.region||"center"; -var _1c=$.data(_1a,"layout").panels; -var cc=$(_1a); -var dir=_1b.region; -if(_1c[dir].length){ -return; -} -var pp=$(el); -if(!pp.length){ -pp=$("
                                          ").appendTo(cc); -} -var _1d=$.extend({},$.fn.layout.paneldefaults,{width:(pp.length?parseInt(pp[0].style.width)||pp.outerWidth():"auto"),height:(pp.length?parseInt(pp[0].style.height)||pp.outerHeight():"auto"),doSize:false,collapsible:true,onOpen:function(){ -var _1e=$(this).panel("header").children("div.panel-tool"); -_1e.children("a.panel-tool-collapse").hide(); -var _1f={north:"up",south:"down",east:"right",west:"left"}; -if(!_1f[dir]){ -return; -} -var _20="layout-button-"+_1f[dir]; -var t=_1e.children("a."+_20); -if(!t.length){ -t=$("").addClass(_20).appendTo(_1e); -t.bind("click",{dir:dir},function(e){ -_2d(_1a,e.data.dir); -return false; -}); -} -$(this).panel("options").collapsible?t.show():t.hide(); -}},_1b,{cls:((_1b.cls||"")+" layout-panel layout-panel-"+dir),bodyCls:((_1b.bodyCls||"")+" layout-body")}); -pp.panel(_1d); -_1c[dir]=pp; -var _21={north:"s",south:"n",east:"w",west:"e"}; -var _22=pp.panel("panel"); -if(pp.panel("options").split){ -_22.addClass("layout-split-"+dir); -} -_22.resizable($.extend({},{handles:(_21[dir]||""),disabled:(!pp.panel("options").split),onStartResize:function(e){ -_1=true; -if(dir=="north"||dir=="south"){ -var _23=$(">div.layout-split-proxy-v",_1a); -}else{ -var _23=$(">div.layout-split-proxy-h",_1a); -} -var top=0,_24=0,_25=0,_26=0; -var pos={display:"block"}; -if(dir=="north"){ -pos.top=parseInt(_22.css("top"))+_22.outerHeight()-_23.height(); -pos.left=parseInt(_22.css("left")); -pos.width=_22.outerWidth(); -pos.height=_23.height(); -}else{ -if(dir=="south"){ -pos.top=parseInt(_22.css("top")); -pos.left=parseInt(_22.css("left")); -pos.width=_22.outerWidth(); -pos.height=_23.height(); -}else{ -if(dir=="east"){ -pos.top=parseInt(_22.css("top"))||0; -pos.left=parseInt(_22.css("left"))||0; -pos.width=_23.width(); -pos.height=_22.outerHeight(); -}else{ -if(dir=="west"){ -pos.top=parseInt(_22.css("top"))||0; -pos.left=_22.outerWidth()-_23.width(); -pos.width=_23.width(); -pos.height=_22.outerHeight(); -} -} -} -} -_23.css(pos); -$("
                                          ").css({left:0,top:0,width:cc.width(),height:cc.height()}).appendTo(cc); -},onResize:function(e){ -if(dir=="north"||dir=="south"){ -var _27=$(">div.layout-split-proxy-v",_1a); -_27.css("top",e.pageY-$(_1a).offset().top-_27.height()/2); -}else{ -var _27=$(">div.layout-split-proxy-h",_1a); -_27.css("left",e.pageX-$(_1a).offset().left-_27.width()/2); -} -return false; -},onStopResize:function(e){ -cc.children("div.layout-split-proxy-v,div.layout-split-proxy-h").hide(); -pp.panel("resize",e.data); -_2(_1a); -_1=false; -cc.find(">div.layout-mask").remove(); -}},_1b)); -cc.layout("options").onAdd.call(_1a,dir); -}; -function _28(_29,_2a){ -var _2b=$.data(_29,"layout").panels; -if(_2b[_2a].length){ -_2b[_2a].panel("destroy"); -_2b[_2a]=$(); -var _2c="expand"+_2a.substring(0,1).toUpperCase()+_2a.substring(1); -if(_2b[_2c]){ -_2b[_2c].panel("destroy"); -_2b[_2c]=undefined; -} -$(_29).layout("options").onRemove.call(_29,_2a); -} -}; -function _2d(_2e,_2f,_30){ -if(_30==undefined){ -_30="normal"; -} -var _31=$.data(_2e,"layout").panels; -var p=_31[_2f]; -var _32=p.panel("options"); -if(_32.onBeforeCollapse.call(p)==false){ -return; -} -var _33="expand"+_2f.substring(0,1).toUpperCase()+_2f.substring(1); -if(!_31[_33]){ -_31[_33]=_34(_2f); -var ep=_31[_33].panel("panel"); -if(!_32.expandMode){ -ep.css("cursor","default"); -}else{ -ep.bind("click",function(){ -if(_32.expandMode=="dock"){ -_41(_2e,_2f); -}else{ -p.panel("expand",false).panel("open"); -var _35=_36(); -p.panel("resize",_35.collapse); -p.panel("panel").animate(_35.expand,function(){ -$(this).unbind(".layout").bind("mouseleave.layout",{region:_2f},function(e){ -if(_1==true){ -return; -} -if($("body>div.combo-p>div.combo-panel:visible").length){ -return; -} -_2d(_2e,e.data.region); -}); -$(_2e).layout("options").onExpand.call(_2e,_2f); -}); -} -return false; -}); -} -} -var _37=_36(); -if(!_a(_31[_33])){ -_31.center.panel("resize",_37.resizeC); -} -p.panel("panel").animate(_37.collapse,_30,function(){ -p.panel("collapse",false).panel("close"); -_31[_33].panel("open").panel("resize",_37.expandP); -$(this).unbind(".layout"); -$(_2e).layout("options").onCollapse.call(_2e,_2f); -}); -function _34(dir){ -var _38={"east":"left","west":"right","north":"down","south":"up"}; -var _39=(_32.region=="north"||_32.region=="south"); -var _3a="layout-button-"+_38[dir]; -var p=$("
                                          ").appendTo(_2e); -p.panel($.extend({},$.fn.layout.paneldefaults,{cls:("layout-expand layout-expand-"+dir),title:" ",iconCls:(_32.hideCollapsedContent?null:_32.iconCls),closed:true,minWidth:0,minHeight:0,doSize:false,region:_32.region,collapsedSize:_32.collapsedSize,noheader:(!_39&&_32.hideExpandTool),tools:((_39&&_32.hideExpandTool)?null:[{iconCls:_3a,handler:function(){ -_41(_2e,_2f); -return false; -}}])})); -if(!_32.hideCollapsedContent){ -var _3b=typeof _32.collapsedContent=="function"?_32.collapsedContent.call(p[0],_32.title):_32.collapsedContent; -_39?p.panel("setTitle",_3b):p.html(_3b); -} -p.panel("panel").hover(function(){ -$(this).addClass("layout-expand-over"); -},function(){ -$(this).removeClass("layout-expand-over"); -}); -return p; -}; -function _36(){ -var cc=$(_2e); -var _3c=_31.center.panel("options"); -var _3d=_32.collapsedSize; -if(_2f=="east"){ -var _3e=p.panel("panel")._outerWidth(); -var _3f=_3c.width+_3e-_3d; -if(_32.split||!_32.border){ -_3f++; -} -return {resizeC:{width:_3f},expand:{left:cc.width()-_3e},expandP:{top:_3c.top,left:cc.width()-_3d,width:_3d,height:_3c.height},collapse:{left:cc.width(),top:_3c.top,height:_3c.height}}; -}else{ -if(_2f=="west"){ -var _3e=p.panel("panel")._outerWidth(); -var _3f=_3c.width+_3e-_3d; -if(_32.split||!_32.border){ -_3f++; -} -return {resizeC:{width:_3f,left:_3d-1},expand:{left:0},expandP:{left:0,top:_3c.top,width:_3d,height:_3c.height},collapse:{left:-_3e,top:_3c.top,height:_3c.height}}; -}else{ -if(_2f=="north"){ -var _40=p.panel("panel")._outerHeight(); -var hh=_3c.height; -if(!_a(_31.expandNorth)){ -hh+=_40-_3d+((_32.split||!_32.border)?1:0); -} -_31.east.add(_31.west).add(_31.expandEast).add(_31.expandWest).panel("resize",{top:_3d-1,height:hh}); -return {resizeC:{top:_3d-1,height:hh},expand:{top:0},expandP:{top:0,left:0,width:cc.width(),height:_3d},collapse:{top:-_40,width:cc.width()}}; -}else{ -if(_2f=="south"){ -var _40=p.panel("panel")._outerHeight(); -var hh=_3c.height; -if(!_a(_31.expandSouth)){ -hh+=_40-_3d+((_32.split||!_32.border)?1:0); -} -_31.east.add(_31.west).add(_31.expandEast).add(_31.expandWest).panel("resize",{height:hh}); -return {resizeC:{height:hh},expand:{top:cc.height()-_40},expandP:{top:cc.height()-_3d,left:0,width:cc.width(),height:_3d},collapse:{top:cc.height(),width:cc.width()}}; -} -} -} -} -}; -}; -function _41(_42,_43){ -var _44=$.data(_42,"layout").panels; -var p=_44[_43]; -var _45=p.panel("options"); -if(_45.onBeforeExpand.call(p)==false){ -return; -} -var _46="expand"+_43.substring(0,1).toUpperCase()+_43.substring(1); -if(_44[_46]){ -_44[_46].panel("close"); -p.panel("panel").stop(true,true); -p.panel("expand",false).panel("open"); -var _47=_48(); -p.panel("resize",_47.collapse); -p.panel("panel").animate(_47.expand,function(){ -_2(_42); -$(_42).layout("options").onExpand.call(_42,_43); -}); -} -function _48(){ -var cc=$(_42); -var _49=_44.center.panel("options"); -if(_43=="east"&&_44.expandEast){ -return {collapse:{left:cc.width(),top:_49.top,height:_49.height},expand:{left:cc.width()-p.panel("panel")._outerWidth()}}; -}else{ -if(_43=="west"&&_44.expandWest){ -return {collapse:{left:-p.panel("panel")._outerWidth(),top:_49.top,height:_49.height},expand:{left:0}}; -}else{ -if(_43=="north"&&_44.expandNorth){ -return {collapse:{top:-p.panel("panel")._outerHeight(),width:cc.width()},expand:{top:0}}; -}else{ -if(_43=="south"&&_44.expandSouth){ -return {collapse:{top:cc.height(),width:cc.width()},expand:{top:cc.height()-p.panel("panel")._outerHeight()}}; -} -} -} -} -}; -}; -function _a(pp){ -if(!pp){ -return false; -} -if(pp.length){ -return pp.panel("panel").is(":visible"); -}else{ -return false; -} -}; -function _4a(_4b){ -var _4c=$.data(_4b,"layout"); -var _4d=_4c.options; -var _4e=_4c.panels; -var _4f=_4d.onCollapse; -_4d.onCollapse=function(){ -}; -_50("east"); -_50("west"); -_50("north"); -_50("south"); -_4d.onCollapse=_4f; -function _50(_51){ -var p=_4e[_51]; -if(p.length&&p.panel("options").collapsed){ -_2d(_4b,_51,0); -} -}; -}; -function _52(_53,_54,_55){ -var p=$(_53).layout("panel",_54); -p.panel("options").split=_55; -var cls="layout-split-"+_54; -var _56=p.panel("panel").removeClass(cls); -if(_55){ -_56.addClass(cls); -} -_56.resizable({disabled:(!_55)}); -_2(_53); -}; -$.fn.layout=function(_57,_58){ -if(typeof _57=="string"){ -return $.fn.layout.methods[_57](this,_58); -} -_57=_57||{}; -return this.each(function(){ -var _59=$.data(this,"layout"); -if(_59){ -$.extend(_59.options,_57); -}else{ -var _5a=$.extend({},$.fn.layout.defaults,$.fn.layout.parseOptions(this),_57); -$.data(this,"layout",{options:_5a,panels:{center:$(),north:$(),south:$(),east:$(),west:$()}}); -_12(this); -} -_2(this); -_4a(this); -}); -}; -$.fn.layout.methods={options:function(jq){ -return $.data(jq[0],"layout").options; -},resize:function(jq,_5b){ -return jq.each(function(){ -_2(this,_5b); -}); -},panel:function(jq,_5c){ -return $.data(jq[0],"layout").panels[_5c]; -},collapse:function(jq,_5d){ -return jq.each(function(){ -_2d(this,_5d); -}); -},expand:function(jq,_5e){ -return jq.each(function(){ -_41(this,_5e); -}); -},add:function(jq,_5f){ -return jq.each(function(){ -_19(this,_5f); -_2(this); -if($(this).layout("panel",_5f.region).panel("options").collapsed){ -_2d(this,_5f.region,0); -} -}); -},remove:function(jq,_60){ -return jq.each(function(){ -_28(this,_60); -_2(this); -}); -},split:function(jq,_61){ -return jq.each(function(){ -_52(this,_61,true); -}); -},unsplit:function(jq,_62){ -return jq.each(function(){ -_52(this,_62,false); -}); -}}; -$.fn.layout.parseOptions=function(_63){ -return $.extend({},$.parser.parseOptions(_63,[{fit:"boolean"}])); -}; -$.fn.layout.defaults={fit:false,onExpand:function(_64){ -},onCollapse:function(_65){ -},onAdd:function(_66){ -},onRemove:function(_67){ -}}; -$.fn.layout.parsePanelOptions=function(_68){ -var t=$(_68); -return $.extend({},$.fn.panel.parseOptions(_68),$.parser.parseOptions(_68,["region",{split:"boolean",collpasedSize:"number",minWidth:"number",minHeight:"number",maxWidth:"number",maxHeight:"number"}])); -}; -$.fn.layout.paneldefaults=$.extend({},$.fn.panel.defaults,{region:null,split:false,collapsedSize:28,expandMode:"float",hideExpandTool:false,hideCollapsedContent:true,collapsedContent:function(_69){ -var p=$(this); -var _6a=p.panel("options"); -if(_6a.region=="north"||_6a.region=="south"){ -return _69; -} -var _6b=_6a.collapsedSize-2; -var _6c=(_6b-16)/2; -_6c=_6b-_6c; -var cc=[]; -if(_6a.iconCls){ -cc.push("
                                          "); -} -cc.push("
                                          "); -cc.push(_69); -cc.push("
                                          "); -return cc.join(""); -},minWidth:10,minHeight:10,maxWidth:10000,maxHeight:10000}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.linkbutton.js b/vendor/FHC-vendor/easyui/plugins/jquery.linkbutton.js deleted file mode 100644 index 98c05fc2a..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.linkbutton.js +++ /dev/null @@ -1,184 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2,_3){ -var _4=$.data(_2,"linkbutton").options; -if(_3){ -$.extend(_4,_3); -} -if(_4.width||_4.height||_4.fit){ -var _5=$(_2); -var _6=_5.parent(); -var _7=_5.is(":visible"); -if(!_7){ -var _8=$("
                                          ").insertBefore(_2); -var _9={position:_5.css("position"),display:_5.css("display"),left:_5.css("left")}; -_5.appendTo("body"); -_5.css({position:"absolute",display:"inline-block",left:-20000}); -} -_5._size(_4,_6); -var _a=_5.find(".l-btn-left"); -_a.css("margin-top",0); -_a.css("margin-top",parseInt((_5.height()-_a.height())/2)+"px"); -if(!_7){ -_5.insertAfter(_8); -_5.css(_9); -_8.remove(); -} -} -}; -function _b(_c){ -var _d=$.data(_c,"linkbutton").options; -var t=$(_c).empty(); -t.addClass("l-btn").removeClass("l-btn-plain l-btn-selected l-btn-plain-selected l-btn-outline"); -t.removeClass("l-btn-small l-btn-medium l-btn-large").addClass("l-btn-"+_d.size); -if(_d.plain){ -t.addClass("l-btn-plain"); -} -if(_d.outline){ -t.addClass("l-btn-outline"); -} -if(_d.selected){ -t.addClass(_d.plain?"l-btn-selected l-btn-plain-selected":"l-btn-selected"); -} -t.attr("group",_d.group||""); -t.attr("id",_d.id||""); -var _e=$("").appendTo(t); -if(_d.text){ -$("").html(_d.text).appendTo(_e); -}else{ -$(" ").appendTo(_e); -} -if(_d.iconCls){ -$(" ").addClass(_d.iconCls).appendTo(_e); -_e.addClass("l-btn-icon-"+_d.iconAlign); -} -t.unbind(".linkbutton").bind("focus.linkbutton",function(){ -if(!_d.disabled){ -$(this).addClass("l-btn-focus"); -} -}).bind("blur.linkbutton",function(){ -$(this).removeClass("l-btn-focus"); -}).bind("click.linkbutton",function(){ -if(!_d.disabled){ -if(_d.toggle){ -if(_d.selected){ -$(this).linkbutton("unselect"); -}else{ -$(this).linkbutton("select"); -} -} -_d.onClick.call(this); -} -}); -_f(_c,_d.selected); -_10(_c,_d.disabled); -}; -function _f(_11,_12){ -var _13=$.data(_11,"linkbutton").options; -if(_12){ -if(_13.group){ -$("a.l-btn[group=\""+_13.group+"\"]").each(function(){ -var o=$(this).linkbutton("options"); -if(o.toggle){ -$(this).removeClass("l-btn-selected l-btn-plain-selected"); -o.selected=false; -} -}); -} -$(_11).addClass(_13.plain?"l-btn-selected l-btn-plain-selected":"l-btn-selected"); -_13.selected=true; -}else{ -if(!_13.group){ -$(_11).removeClass("l-btn-selected l-btn-plain-selected"); -_13.selected=false; -} -} -}; -function _10(_14,_15){ -var _16=$.data(_14,"linkbutton"); -var _17=_16.options; -$(_14).removeClass("l-btn-disabled l-btn-plain-disabled"); -if(_15){ -_17.disabled=true; -var _18=$(_14).attr("href"); -if(_18){ -_16.href=_18; -$(_14).attr("href","javascript:void(0)"); -} -if(_14.onclick){ -_16.onclick=_14.onclick; -_14.onclick=null; -} -_17.plain?$(_14).addClass("l-btn-disabled l-btn-plain-disabled"):$(_14).addClass("l-btn-disabled"); -}else{ -_17.disabled=false; -if(_16.href){ -$(_14).attr("href",_16.href); -} -if(_16.onclick){ -_14.onclick=_16.onclick; -} -} -}; -$.fn.linkbutton=function(_19,_1a){ -if(typeof _19=="string"){ -return $.fn.linkbutton.methods[_19](this,_1a); -} -_19=_19||{}; -return this.each(function(){ -var _1b=$.data(this,"linkbutton"); -if(_1b){ -$.extend(_1b.options,_19); -}else{ -$.data(this,"linkbutton",{options:$.extend({},$.fn.linkbutton.defaults,$.fn.linkbutton.parseOptions(this),_19)}); -$(this).removeAttr("disabled"); -$(this).bind("_resize",function(e,_1c){ -if($(this).hasClass("easyui-fluid")||_1c){ -_1(this); -} -return false; -}); -} -_b(this); -_1(this); -}); -}; -$.fn.linkbutton.methods={options:function(jq){ -return $.data(jq[0],"linkbutton").options; -},resize:function(jq,_1d){ -return jq.each(function(){ -_1(this,_1d); -}); -},enable:function(jq){ -return jq.each(function(){ -_10(this,false); -}); -},disable:function(jq){ -return jq.each(function(){ -_10(this,true); -}); -},select:function(jq){ -return jq.each(function(){ -_f(this,true); -}); -},unselect:function(jq){ -return jq.each(function(){ -_f(this,false); -}); -}}; -$.fn.linkbutton.parseOptions=function(_1e){ -var t=$(_1e); -return $.extend({},$.parser.parseOptions(_1e,["id","iconCls","iconAlign","group","size","text",{plain:"boolean",toggle:"boolean",selected:"boolean",outline:"boolean"}]),{disabled:(t.attr("disabled")?true:undefined),text:($.trim(t.html())||undefined),iconCls:(t.attr("icon")||t.attr("iconCls"))}); -}; -$.fn.linkbutton.defaults={id:null,disabled:false,toggle:false,selected:false,outline:false,group:null,plain:false,text:"",iconCls:null,iconAlign:"left",size:"small",onClick:function(){ -}}; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.menu.js b/vendor/FHC-vendor/easyui/plugins/jquery.menu.js deleted file mode 100644 index 4687b1d34..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.menu.js +++ /dev/null @@ -1,504 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -$(function(){ -$(document).unbind(".menu").bind("mousedown.menu",function(e){ -var m=$(e.target).closest("div.menu,div.combo-p"); -if(m.length){ -return; -} -$("body>div.menu-top:visible").not(".menu-inline").menu("hide"); -_1($("body>div.menu:visible").not(".menu-inline")); -}); -}); -function _2(_3){ -var _4=$.data(_3,"menu").options; -$(_3).addClass("menu-top"); -_4.inline?$(_3).addClass("menu-inline"):$(_3).appendTo("body"); -$(_3).bind("_resize",function(e,_5){ -if($(this).hasClass("easyui-fluid")||_5){ -$(_3).menu("resize",_3); -} -return false; -}); -var _6=_7($(_3)); -for(var i=0;i<_6.length;i++){ -_8(_6[i]); -} -function _7(_9){ -var _a=[]; -_9.addClass("menu"); -_a.push(_9); -if(!_9.hasClass("menu-content")){ -_9.children("div").each(function(){ -var _b=$(this).children("div"); -if(_b.length){ -_b.appendTo("body"); -this.submenu=_b; -var mm=_7(_b); -_a=_a.concat(mm); -} -}); -} -return _a; -}; -function _8(_c){ -var wh=$.parser.parseOptions(_c[0],["width","height"]); -_c[0].originalHeight=wh.height||0; -if(_c.hasClass("menu-content")){ -_c[0].originalWidth=wh.width||_c._outerWidth(); -}else{ -_c[0].originalWidth=wh.width||0; -_c.children("div").each(function(){ -var _d=$(this); -var _e=$.extend({},$.parser.parseOptions(this,["name","iconCls","href",{separator:"boolean"}]),{disabled:(_d.attr("disabled")?true:undefined)}); -if(_e.separator){ -_d.addClass("menu-sep"); -} -if(!_d.hasClass("menu-sep")){ -_d[0].itemName=_e.name||""; -_d[0].itemHref=_e.href||""; -var _f=_d.addClass("menu-item").html(); -_d.empty().append($("
                                          ").html(_f)); -if(_e.iconCls){ -$("
                                          ").addClass(_e.iconCls).appendTo(_d); -} -if(_e.disabled){ -_10(_3,_d[0],true); -} -if(_d[0].submenu){ -$("
                                          ").appendTo(_d); -} -_11(_3,_d); -} -}); -$("
                                          ").prependTo(_c); -} -_12(_3,_c); -if(!_c.hasClass("menu-inline")){ -_c.hide(); -} -_13(_3,_c); -}; -}; -function _12(_14,_15){ -var _16=$.data(_14,"menu").options; -var _17=_15.attr("style")||""; -_15.css({display:"block",left:-10000,height:"auto",overflow:"hidden"}); -_15.find(".menu-item").each(function(){ -$(this)._outerHeight(_16.itemHeight); -$(this).find(".menu-text").css({height:(_16.itemHeight-2)+"px",lineHeight:(_16.itemHeight-2)+"px"}); -}); -_15.removeClass("menu-noline").addClass(_16.noline?"menu-noline":""); -var _18=_15[0].originalWidth||"auto"; -if(isNaN(parseInt(_18))){ -_18=0; -_15.find("div.menu-text").each(function(){ -if(_18<$(this)._outerWidth()){ -_18=$(this)._outerWidth(); -} -}); -_18+=40; -} -var _19=_15.outerHeight(); -var _1a=_15[0].originalHeight||"auto"; -if(isNaN(parseInt(_1a))){ -_1a=_19; -if(_15.hasClass("menu-top")&&_16.alignTo){ -var at=$(_16.alignTo); -var h1=at.offset().top-$(document).scrollTop(); -var h2=$(window)._outerHeight()+$(document).scrollTop()-at.offset().top-at._outerHeight(); -_1a=Math.min(_1a,Math.max(h1,h2)); -}else{ -if(_1a>$(window)._outerHeight()){ -_1a=$(window).height(); -} -} -} -_15.attr("style",_17); -_15._size({fit:(_15[0]==_14?_16.fit:false),width:_18,minWidth:_16.minWidth,height:_1a}); -_15.css("overflow",_15.outerHeight()<_19?"auto":"hidden"); -_15.children("div.menu-line")._outerHeight(_19-2); -}; -function _13(_1b,_1c){ -if(_1c.hasClass("menu-inline")){ -return; -} -var _1d=$.data(_1b,"menu"); -_1c.unbind(".menu").bind("mouseenter.menu",function(){ -if(_1d.timer){ -clearTimeout(_1d.timer); -_1d.timer=null; -} -}).bind("mouseleave.menu",function(){ -if(_1d.options.hideOnUnhover){ -_1d.timer=setTimeout(function(){ -_1e(_1b,$(_1b).hasClass("menu-inline")); -},_1d.options.duration); -} -}); -}; -function _11(_1f,_20){ -if(!_20.hasClass("menu-item")){ -return; -} -_20.unbind(".menu"); -_20.bind("click.menu",function(){ -if($(this).hasClass("menu-item-disabled")){ -return; -} -if(!this.submenu){ -_1e(_1f,$(_1f).hasClass("menu-inline")); -var _21=this.itemHref; -if(_21){ -location.href=_21; -} -} -$(this).trigger("mouseenter"); -var _22=$(_1f).menu("getItem",this); -$.data(_1f,"menu").options.onClick.call(_1f,_22); -}).bind("mouseenter.menu",function(e){ -_20.siblings().each(function(){ -if(this.submenu){ -_1(this.submenu); -} -$(this).removeClass("menu-active"); -}); -_20.addClass("menu-active"); -if($(this).hasClass("menu-item-disabled")){ -_20.addClass("menu-active-disabled"); -return; -} -var _23=_20[0].submenu; -if(_23){ -$(_1f).menu("show",{menu:_23,parent:_20}); -} -}).bind("mouseleave.menu",function(e){ -_20.removeClass("menu-active menu-active-disabled"); -var _24=_20[0].submenu; -if(_24){ -if(e.pageX>=parseInt(_24.css("left"))){ -_20.addClass("menu-active"); -}else{ -_1(_24); -} -}else{ -_20.removeClass("menu-active"); -} -}); -}; -function _1e(_25,_26){ -var _27=$.data(_25,"menu"); -if(_27){ -if($(_25).is(":visible")){ -_1($(_25)); -if(_26){ -$(_25).show(); -}else{ -_27.options.onHide.call(_25); -} -} -} -return false; -}; -function _28(_29,_2a){ -var _2b,top; -_2a=_2a||{}; -var _2c=$(_2a.menu||_29); -$(_29).menu("resize",_2c[0]); -if(_2c.hasClass("menu-top")){ -var _2d=$.data(_29,"menu").options; -$.extend(_2d,_2a); -_2b=_2d.left; -top=_2d.top; -if(_2d.alignTo){ -var at=$(_2d.alignTo); -_2b=at.offset().left; -top=at.offset().top+at._outerHeight(); -if(_2d.align=="right"){ -_2b+=at.outerWidth()-_2c.outerWidth(); -} -} -if(_2b+_2c.outerWidth()>$(window)._outerWidth()+$(document)._scrollLeft()){ -_2b=$(window)._outerWidth()+$(document).scrollLeft()-_2c.outerWidth()-5; -} -if(_2b<0){ -_2b=0; -} -top=_2e(top,_2d.alignTo); -}else{ -var _2f=_2a.parent; -_2b=_2f.offset().left+_2f.outerWidth()-2; -if(_2b+_2c.outerWidth()+5>$(window)._outerWidth()+$(document).scrollLeft()){ -_2b=_2f.offset().left-_2c.outerWidth()+2; -} -top=_2e(_2f.offset().top-3); -} -function _2e(top,_30){ -if(top+_2c.outerHeight()>$(window)._outerHeight()+$(document).scrollTop()){ -if(_30){ -top=$(_30).offset().top-_2c._outerHeight(); -}else{ -top=$(window)._outerHeight()+$(document).scrollTop()-_2c.outerHeight(); -} -} -if(top<0){ -top=0; -} -return top; -}; -_2c.css({left:_2b,top:top}); -_2c.show(0,function(){ -if(!_2c[0].shadow){ -_2c[0].shadow=$("
                                          ").insertAfter(_2c); -} -_2c[0].shadow.css({display:(_2c.hasClass("menu-inline")?"none":"block"),zIndex:$.fn.menu.defaults.zIndex++,left:_2c.css("left"),top:_2c.css("top"),width:_2c.outerWidth(),height:_2c.outerHeight()}); -_2c.css("z-index",$.fn.menu.defaults.zIndex++); -if(_2c.hasClass("menu-top")){ -$.data(_2c[0],"menu").options.onShow.call(_2c[0]); -} -}); -}; -function _1(_31){ -if(_31&&_31.length){ -_32(_31); -_31.find("div.menu-item").each(function(){ -if(this.submenu){ -_1(this.submenu); -} -$(this).removeClass("menu-active"); -}); -} -function _32(m){ -m.stop(true,true); -if(m[0].shadow){ -m[0].shadow.hide(); -} -m.hide(); -}; -}; -function _33(_34,_35){ -var _36=null; -var tmp=$("
                                          "); -function _37(_38){ -_38.children("div.menu-item").each(function(){ -var _39=$(_34).menu("getItem",this); -var s=tmp.empty().html(_39.text).text(); -if(_35==$.trim(s)){ -_36=_39; -}else{ -if(this.submenu&&!_36){ -_37(this.submenu); -} -} -}); -}; -_37($(_34)); -tmp.remove(); -return _36; -}; -function _10(_3a,_3b,_3c){ -var t=$(_3b); -if(!t.hasClass("menu-item")){ -return; -} -if(_3c){ -t.addClass("menu-item-disabled"); -if(_3b.onclick){ -_3b.onclick1=_3b.onclick; -_3b.onclick=null; -} -}else{ -t.removeClass("menu-item-disabled"); -if(_3b.onclick1){ -_3b.onclick=_3b.onclick1; -_3b.onclick1=null; -} -} -}; -function _3d(_3e,_3f){ -var _40=$.data(_3e,"menu").options; -var _41=$(_3e); -if(_3f.parent){ -if(!_3f.parent.submenu){ -var _42=$("
                                          ").appendTo("body"); -_42.hide(); -_3f.parent.submenu=_42; -$("
                                          ").appendTo(_3f.parent); -} -_41=_3f.parent.submenu; -} -if(_3f.separator){ -var _43=$("
                                          ").appendTo(_41); -}else{ -var _43=$("
                                          ").appendTo(_41); -$("
                                          ").html(_3f.text).appendTo(_43); -} -if(_3f.iconCls){ -$("
                                          ").addClass(_3f.iconCls).appendTo(_43); -} -if(_3f.id){ -_43.attr("id",_3f.id); -} -if(_3f.name){ -_43[0].itemName=_3f.name; -} -if(_3f.href){ -_43[0].itemHref=_3f.href; -} -if(_3f.onclick){ -if(typeof _3f.onclick=="string"){ -_43.attr("onclick",_3f.onclick); -}else{ -_43[0].onclick=eval(_3f.onclick); -} -} -if(_3f.handler){ -_43[0].onclick=eval(_3f.handler); -} -if(_3f.disabled){ -_10(_3e,_43[0],true); -} -_11(_3e,_43); -_13(_3e,_41); -_12(_3e,_41); -}; -function _44(_45,_46){ -function _47(el){ -if(el.submenu){ -el.submenu.children("div.menu-item").each(function(){ -_47(this); -}); -var _48=el.submenu[0].shadow; -if(_48){ -_48.remove(); -} -el.submenu.remove(); -} -$(el).remove(); -}; -var _49=$(_46).parent(); -_47(_46); -_12(_45,_49); -}; -function _4a(_4b,_4c,_4d){ -var _4e=$(_4c).parent(); -if(_4d){ -$(_4c).show(); -}else{ -$(_4c).hide(); -} -_12(_4b,_4e); -}; -function _4f(_50){ -$(_50).children("div.menu-item").each(function(){ -_44(_50,this); -}); -if(_50.shadow){ -_50.shadow.remove(); -} -$(_50).remove(); -}; -$.fn.menu=function(_51,_52){ -if(typeof _51=="string"){ -return $.fn.menu.methods[_51](this,_52); -} -_51=_51||{}; -return this.each(function(){ -var _53=$.data(this,"menu"); -if(_53){ -$.extend(_53.options,_51); -}else{ -_53=$.data(this,"menu",{options:$.extend({},$.fn.menu.defaults,$.fn.menu.parseOptions(this),_51)}); -_2(this); -} -$(this).css({left:_53.options.left,top:_53.options.top}); -}); -}; -$.fn.menu.methods={options:function(jq){ -return $.data(jq[0],"menu").options; -},show:function(jq,pos){ -return jq.each(function(){ -_28(this,pos); -}); -},hide:function(jq){ -return jq.each(function(){ -_1e(this); -}); -},destroy:function(jq){ -return jq.each(function(){ -_4f(this); -}); -},setText:function(jq,_54){ -return jq.each(function(){ -$(_54.target).children("div.menu-text").html(_54.text); -}); -},setIcon:function(jq,_55){ -return jq.each(function(){ -$(_55.target).children("div.menu-icon").remove(); -if(_55.iconCls){ -$("
                                          ").addClass(_55.iconCls).appendTo(_55.target); -} -}); -},getItem:function(jq,_56){ -var t=$(_56); -var _57={target:_56,id:t.attr("id"),text:$.trim(t.children("div.menu-text").html()),disabled:t.hasClass("menu-item-disabled"),name:_56.itemName,href:_56.itemHref,onclick:_56.onclick}; -var _58=t.children("div.menu-icon"); -if(_58.length){ -var cc=[]; -var aa=_58.attr("class").split(" "); -for(var i=0;i").addClass(_3.cls.arrow).appendTo(_5); -$("").addClass("m-btn-line").appendTo(_5); -} -$(_2).menubutton("resize"); -if(_3.menu){ -$(_3.menu).menu({duration:_3.duration}); -var _6=$(_3.menu).menu("options"); -var _7=_6.onShow; -var _8=_6.onHide; -$.extend(_6,{onShow:function(){ -var _9=$(this).menu("options"); -var _a=$(_9.alignTo); -var _b=_a.menubutton("options"); -_a.addClass((_b.plain==true)?_b.cls.btn2:_b.cls.btn1); -_7.call(this); -},onHide:function(){ -var _c=$(this).menu("options"); -var _d=$(_c.alignTo); -var _e=_d.menubutton("options"); -_d.removeClass((_e.plain==true)?_e.cls.btn2:_e.cls.btn1); -_8.call(this); -}}); -} -}; -function _f(_10){ -var _11=$.data(_10,"menubutton").options; -var btn=$(_10); -var t=btn.find("."+_11.cls.trigger); -if(!t.length){ -t=btn; -} -t.unbind(".menubutton"); -var _12=null; -t.bind("click.menubutton",function(){ -if(!_13()){ -_14(_10); -return false; -} -}).bind("mouseenter.menubutton",function(){ -if(!_13()){ -_12=setTimeout(function(){ -_14(_10); -},_11.duration); -return false; -} -}).bind("mouseleave.menubutton",function(){ -if(_12){ -clearTimeout(_12); -} -$(_11.menu).triggerHandler("mouseleave"); -}); -function _13(){ -return $(_10).linkbutton("options").disabled; -}; -}; -function _14(_15){ -var _16=$(_15).menubutton("options"); -if(_16.disabled||!_16.menu){ -return; -} -$("body>div.menu-top").menu("hide"); -var btn=$(_15); -var mm=$(_16.menu); -if(mm.length){ -mm.menu("options").alignTo=btn; -mm.menu("show",{alignTo:btn,align:_16.menuAlign}); -} -btn.blur(); -}; -$.fn.menubutton=function(_17,_18){ -if(typeof _17=="string"){ -var _19=$.fn.menubutton.methods[_17]; -if(_19){ -return _19(this,_18); -}else{ -return this.linkbutton(_17,_18); -} -} -_17=_17||{}; -return this.each(function(){ -var _1a=$.data(this,"menubutton"); -if(_1a){ -$.extend(_1a.options,_17); -}else{ -$.data(this,"menubutton",{options:$.extend({},$.fn.menubutton.defaults,$.fn.menubutton.parseOptions(this),_17)}); -$(this).removeAttr("disabled"); -} -_1(this); -_f(this); -}); -}; -$.fn.menubutton.methods={options:function(jq){ -var _1b=jq.linkbutton("options"); -return $.extend($.data(jq[0],"menubutton").options,{toggle:_1b.toggle,selected:_1b.selected,disabled:_1b.disabled}); -},destroy:function(jq){ -return jq.each(function(){ -var _1c=$(this).menubutton("options"); -if(_1c.menu){ -$(_1c.menu).menu("destroy"); -} -$(this).remove(); -}); -}}; -$.fn.menubutton.parseOptions=function(_1d){ -var t=$(_1d); -return $.extend({},$.fn.linkbutton.parseOptions(_1d),$.parser.parseOptions(_1d,["menu",{plain:"boolean",hasDownArrow:"boolean",duration:"number"}])); -}; -$.fn.menubutton.defaults=$.extend({},$.fn.linkbutton.defaults,{plain:true,hasDownArrow:true,menu:null,menuAlign:"left",duration:100,cls:{btn1:"m-btn-active",btn2:"m-btn-plain-active",arrow:"m-btn-downarrow",trigger:"m-btn"}}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.messager.js b/vendor/FHC-vendor/easyui/plugins/jquery.messager.js deleted file mode 100644 index 68bcb0c80..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.messager.js +++ /dev/null @@ -1,179 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(){ -$(document).unbind(".messager").bind("keydown.messager",function(e){ -if(e.keyCode==27){ -$("body").children("div.messager-window").children("div.messager-body").each(function(){ -$(this).dialog("close"); -}); -}else{ -if(e.keyCode==9){ -var _2=$("body").children("div.messager-window"); -if(!_2.length){ -return; -} -var _3=_2.find(".messager-input,.messager-button .l-btn"); -for(var i=0;i<_3.length;i++){ -if($(_3[i]).is(":focus")){ -$(_3[i>=_3.length-1?0:i+1]).focus(); -return false; -} -} -} -} -}); -}; -function _4(){ -$(document).unbind(".messager"); -}; -function _5(_6){ -var _7=$.extend({},$.messager.defaults,{modal:false,shadow:false,draggable:false,resizable:false,closed:true,style:{left:"",top:"",right:0,zIndex:$.fn.window.defaults.zIndex++,bottom:-document.body.scrollTop-document.documentElement.scrollTop},title:"",width:250,height:100,minHeight:0,showType:"slide",showSpeed:600,content:_6.msg,timeout:4000},_6); -var _8=$("
                                          ").appendTo("body"); -_8.dialog($.extend({},_7,{noheader:(_7.title?false:true),openAnimation:(_7.showType),closeAnimation:(_7.showType=="show"?"hide":_7.showType),openDuration:_7.showSpeed,closeDuration:_7.showSpeed,onOpen:function(){ -_8.dialog("dialog").hover(function(){ -if(_7.timer){ -clearTimeout(_7.timer); -} -},function(){ -_9(); -}); -_9(); -function _9(){ -if(_7.timeout>0){ -_7.timer=setTimeout(function(){ -if(_8.length&&_8.data("dialog")){ -_8.dialog("close"); -} -},_7.timeout); -} -}; -if(_6.onOpen){ -_6.onOpen.call(this); -}else{ -_7.onOpen.call(this); -} -},onClose:function(){ -if(_7.timer){ -clearTimeout(_7.timer); -} -if(_6.onClose){ -_6.onClose.call(this); -}else{ -_7.onClose.call(this); -} -_8.dialog("destroy"); -}})); -_8.dialog("dialog").css(_7.style); -_8.dialog("open"); -return _8; -}; -function _a(_b){ -_1(); -var _c=$("
                                          ").appendTo("body"); -_c.dialog($.extend({},_b,{noheader:(_b.title?false:true),onClose:function(){ -_4(); -if(_b.onClose){ -_b.onClose.call(this); -} -setTimeout(function(){ -_c.dialog("destroy"); -},100); -}})); -var _d=_c.dialog("dialog").addClass("messager-window"); -_d.find(".dialog-button").addClass("messager-button").find("a:first").focus(); -return _c; -}; -function _e(_f,_10){ -_f.dialog("close"); -_f.dialog("options").fn(_10); -}; -$.messager={show:function(_11){ -return _5(_11); -},alert:function(_12,msg,_13,fn){ -var _14=typeof _12=="object"?_12:{title:_12,msg:msg,icon:_13,fn:fn}; -var cls=_14.icon?"messager-icon messager-"+_14.icon:""; -_14=$.extend({},$.messager.defaults,{content:"
                                          "+"
                                          "+_14.msg+"
                                          "+"
                                          "},_14); -if(!_14.buttons){ -_14.buttons=[{text:_14.ok,onClick:function(){ -_e(dlg); -}}]; -} -var dlg=_a(_14); -return dlg; -},confirm:function(_15,msg,fn){ -var _16=typeof _15=="object"?_15:{title:_15,msg:msg,fn:fn}; -_16=$.extend({},$.messager.defaults,{content:"
                                          "+"
                                          "+_16.msg+"
                                          "+"
                                          "},_16); -if(!_16.buttons){ -_16.buttons=[{text:_16.ok,onClick:function(){ -_e(dlg,true); -}},{text:_16.cancel,onClick:function(){ -_e(dlg,false); -}}]; -} -var dlg=_a(_16); -return dlg; -},prompt:function(_17,msg,fn){ -var _18=typeof _17=="object"?_17:{title:_17,msg:msg,fn:fn}; -_18=$.extend({},$.messager.defaults,{content:"
                                          "+"
                                          "+_18.msg+"
                                          "+"
                                          "+"
                                          "+"
                                          "},_18); -if(!_18.buttons){ -_18.buttons=[{text:_18.ok,onClick:function(){ -_e(dlg,dlg.find(".messager-input").val()); -}},{text:_18.cancel,onClick:function(){ -_e(dlg); -}}]; -} -var dlg=_a(_18); -dlg.find("input.messager-input").focus(); -return dlg; -},progress:function(_19){ -var _1a={bar:function(){ -return $("body>div.messager-window").find("div.messager-p-bar"); -},close:function(){ -var dlg=$("body>div.messager-window>div.messager-body:has(div.messager-progress)"); -if(dlg.length){ -dlg.dialog("close"); -} -}}; -if(typeof _19=="string"){ -var _1b=_1a[_19]; -return _1b(); -} -_19=_19||{}; -var _1c=$.extend({},{title:"",minHeight:0,content:undefined,msg:"",text:undefined,interval:300},_19); -var dlg=_a($.extend({},$.messager.defaults,{content:"
                                          "+_1c.msg+"
                                          ",closable:false,doSize:false},_1c,{onClose:function(){ -if(this.timer){ -clearInterval(this.timer); -} -if(_19.onClose){ -_19.onClose.call(this); -}else{ -$.messager.defaults.onClose.call(this); -} -}})); -var bar=dlg.find("div.messager-p-bar"); -bar.progressbar({text:_1c.text}); -dlg.dialog("resize"); -if(_1c.interval){ -dlg[0].timer=setInterval(function(){ -var v=bar.progressbar("getValue"); -v+=10; -if(v>100){ -v=0; -} -bar.progressbar("setValue",v); -},_1c.interval); -} -return dlg; -}}; -$.messager.defaults=$.extend({},$.fn.dialog.defaults,{ok:"Ok",cancel:"Cancel",width:300,height:"auto",minHeight:150,modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,fn:function(){ -}}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.mobile.js b/vendor/FHC-vendor/easyui/plugins/jquery.mobile.js deleted file mode 100644 index 12120494c..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.mobile.js +++ /dev/null @@ -1,137 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -$.fn.navpanel=function(_1,_2){ -if(typeof _1=="string"){ -var _3=$.fn.navpanel.methods[_1]; -return _3?_3(this,_2):this.panel(_1,_2); -}else{ -_1=_1||{}; -return this.each(function(){ -var _4=$.data(this,"navpanel"); -if(_4){ -$.extend(_4.options,_1); -}else{ -_4=$.data(this,"navpanel",{options:$.extend({},$.fn.navpanel.defaults,$.fn.navpanel.parseOptions(this,_1))}); -} -$(this).panel(_4.options); -}); -} -}; -$.fn.navpanel.methods={options:function(jq){ -return $.data(jq[0],"navpanel").options; -}}; -$.fn.navpanel.parseOptions=function(_5){ -return $.extend({},$.fn.panel.parseOptions(_5),$.parser.parseOptions(_5,[])); -}; -$.fn.navpanel.defaults=$.extend({},$.fn.panel.defaults,{fit:true,border:false,cls:"navpanel"}); -$.parser.plugins.push("navpanel"); -})(jQuery); -(function($){ -$(function(){ -$.mobile.init(); -}); -$.mobile={defaults:{animation:"slide",direction:"left",reverseDirections:{up:"down",down:"up",left:"right",right:"left"}},panels:[],init:function(_6){ -$.mobile.panels=[]; -var _7=$(_6||"body").children(".navpanel:visible"); -if(_7.length){ -_7.not(":first").children(".panel-body").navpanel("close"); -var p=_7.eq(0).children(".panel-body"); -$.mobile.panels.push({panel:p,animation:$.mobile.defaults.animation,direction:$.mobile.defaults.direction}); -} -$(document).unbind(".mobile").bind("click.mobile",function(e){ -var a=$(e.target).closest("a"); -if(a.length){ -var _8=$.parser.parseOptions(a[0],["animation","direction",{back:"boolean"}]); -if(_8.back){ -$.mobile.back(); -e.preventDefault(); -}else{ -var _9=$.trim(a.attr("href")); -if(/^#/.test(_9)){ -var to=$(_9); -if(to.length&&to.hasClass("panel-body")){ -$.mobile.go(to,_8.animation,_8.direction); -e.preventDefault(); -} -} -} -} -}); -$(window).unbind(".mobile").bind("hashchange.mobile",function(){ -var _a=$.mobile.panels.length; -if(_a>1){ -var _b=location.hash; -var p=$.mobile.panels[_a-2]; -if(!_b||_b=="#&"+p.panel.attr("id")){ -$.mobile._back(); -} -} -}); -},nav:function(_c,to,_d,_e){ -if(window.WebKitAnimationEvent){ -_d=_d!=undefined?_d:$.mobile.defaults.animation; -_e=_e!=undefined?_e:$.mobile.defaults.direction; -var _f="m-"+_d+(_e?"-"+_e:""); -var p1=$(_c).panel("open").panel("resize").panel("panel"); -var p2=$(to).panel("open").panel("resize").panel("panel"); -p1.add(p2).bind("webkitAnimationEnd",function(){ -$(this).unbind("webkitAnimationEnd"); -var p=$(this).children(".panel-body"); -if($(this).hasClass("m-in")){ -p.panel("open").panel("resize"); -}else{ -p.panel("close"); -} -$(this).removeClass(_f+" m-in m-out"); -}); -p2.addClass(_f+" m-in"); -p1.addClass(_f+" m-out"); -}else{ -$(to).panel("open").panel("resize"); -$(_c).panel("close"); -} -},_go:function(_10,_11,_12){ -_11=_11!=undefined?_11:$.mobile.defaults.animation; -_12=_12!=undefined?_12:$.mobile.defaults.direction; -var _13=$.mobile.panels[$.mobile.panels.length-1].panel; -var to=$(_10); -if(_13[0]!=to[0]){ -$.mobile.nav(_13,to,_11,_12); -$.mobile.panels.push({panel:to,animation:_11,direction:_12}); -} -},_back:function(){ -if($.mobile.panels.length<2){ -return; -} -var p1=$.mobile.panels.pop(); -var p2=$.mobile.panels[$.mobile.panels.length-1]; -var _14=p1.animation; -var _15=$.mobile.defaults.reverseDirections[p1.direction]||""; -$.mobile.nav(p1.panel,p2.panel,_14,_15); -},go:function(_16,_17,_18){ -_17=_17!=undefined?_17:$.mobile.defaults.animation; -_18=_18!=undefined?_18:$.mobile.defaults.direction; -location.hash="#&"+$(_16).attr("id"); -$.mobile._go(_16,_17,_18); -},back:function(){ -history.go(-1); -}}; -$.map(["validatebox","textbox","filebox","searchbox","combo","combobox","combogrid","combotree","datebox","datetimebox","numberbox","spinner","numberspinner","timespinner","datetimespinner"],function(_19){ -if($.fn[_19]){ -$.extend($.fn[_19].defaults,{height:32,iconWidth:28,tipPosition:"bottom"}); -} -}); -$.map(["spinner","numberspinner","timespinner","datetimespinner"],function(_1a){ -$.extend($.fn[_1a].defaults,{height:32,iconWidth:56}); -}); -$.extend($.fn.menu.defaults,{itemHeight:30,noline:true}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.numberbox.js b/vendor/FHC-vendor/easyui/plugins/jquery.numberbox.js deleted file mode 100644 index 2f739bcb0..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.numberbox.js +++ /dev/null @@ -1,174 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -var _3=$.data(_2,"numberbox"); -var _4=_3.options; -$(_2).addClass("numberbox-f").textbox(_4); -$(_2).textbox("textbox").css({imeMode:"disabled"}); -$(_2).attr("numberboxName",$(_2).attr("textboxName")); -_3.numberbox=$(_2).next(); -_3.numberbox.addClass("numberbox"); -var _5=_4.parser.call(_2,_4.value); -var _6=_4.formatter.call(_2,_5); -$(_2).numberbox("initValue",_5).numberbox("setText",_6); -}; -function _7(_8,_9){ -var _a=$.data(_8,"numberbox"); -var _b=_a.options; -var _9=_b.parser.call(_8,_9); -var _c=_b.formatter.call(_8,_9); -_b.value=_9; -$(_8).textbox("setText",_c).textbox("setValue",_9); -_c=_b.formatter.call(_8,$(_8).textbox("getValue")); -$(_8).textbox("setText",_c); -}; -$.fn.numberbox=function(_d,_e){ -if(typeof _d=="string"){ -var _f=$.fn.numberbox.methods[_d]; -if(_f){ -return _f(this,_e); -}else{ -return this.textbox(_d,_e); -} -} -_d=_d||{}; -return this.each(function(){ -var _10=$.data(this,"numberbox"); -if(_10){ -$.extend(_10.options,_d); -}else{ -_10=$.data(this,"numberbox",{options:$.extend({},$.fn.numberbox.defaults,$.fn.numberbox.parseOptions(this),_d)}); -} -_1(this); -}); -}; -$.fn.numberbox.methods={options:function(jq){ -var _11=jq.data("textbox")?jq.textbox("options"):{}; -return $.extend($.data(jq[0],"numberbox").options,{width:_11.width,originalValue:_11.originalValue,disabled:_11.disabled,readonly:_11.readonly}); -},fix:function(jq){ -return jq.each(function(){ -$(this).numberbox("setValue",$(this).numberbox("getText")); -}); -},setValue:function(jq,_12){ -return jq.each(function(){ -_7(this,_12); -}); -},clear:function(jq){ -return jq.each(function(){ -$(this).textbox("clear"); -$(this).numberbox("options").value=""; -}); -},reset:function(jq){ -return jq.each(function(){ -$(this).textbox("reset"); -$(this).numberbox("setValue",$(this).numberbox("getValue")); -}); -}}; -$.fn.numberbox.parseOptions=function(_13){ -var t=$(_13); -return $.extend({},$.fn.textbox.parseOptions(_13),$.parser.parseOptions(_13,["decimalSeparator","groupSeparator","suffix",{min:"number",max:"number",precision:"number"}]),{prefix:(t.attr("prefix")?t.attr("prefix"):undefined)}); -}; -$.fn.numberbox.defaults=$.extend({},$.fn.textbox.defaults,{inputEvents:{keypress:function(e){ -var _14=e.data.target; -var _15=$(_14).numberbox("options"); -return _15.filter.call(_14,e); -},blur:function(e){ -var _16=e.data.target; -$(_16).numberbox("setValue",$(_16).numberbox("getText")); -},keydown:function(e){ -if(e.keyCode==13){ -var _17=e.data.target; -$(_17).numberbox("setValue",$(_17).numberbox("getText")); -} -}},min:null,max:null,precision:0,decimalSeparator:".",groupSeparator:"",prefix:"",suffix:"",filter:function(e){ -var _18=$(this).numberbox("options"); -var s=$(this).numberbox("getText"); -if(e.which==13){ -return true; -} -if(e.which==45){ -return (s.indexOf("-")==-1?true:false); -} -var c=String.fromCharCode(e.which); -if(c==_18.decimalSeparator){ -return (s.indexOf(c)==-1?true:false); -}else{ -if(c==_18.groupSeparator){ -return true; -}else{ -if((e.which>=48&&e.which<=57&&e.ctrlKey==false&&e.shiftKey==false)||e.which==0||e.which==8){ -return true; -}else{ -if(e.ctrlKey==true&&(e.which==99||e.which==118)){ -return true; -}else{ -return false; -} -} -} -} -},formatter:function(_19){ -if(!_19){ -return _19; -} -_19=_19+""; -var _1a=$(this).numberbox("options"); -var s1=_19,s2=""; -var _1b=_19.indexOf("."); -if(_1b>=0){ -s1=_19.substring(0,_1b); -s2=_19.substring(_1b+1,_19.length); -} -if(_1a.groupSeparator){ -var p=/(\d+)(\d{3})/; -while(p.test(s1)){ -s1=s1.replace(p,"$1"+_1a.groupSeparator+"$2"); -} -} -if(s2){ -return _1a.prefix+s1+_1a.decimalSeparator+s2+_1a.suffix; -}else{ -return _1a.prefix+s1+_1a.suffix; -} -},parser:function(s){ -s=s+""; -var _1c=$(this).numberbox("options"); -if(parseFloat(s)!=s){ -if(_1c.prefix){ -s=$.trim(s.replace(new RegExp("\\"+$.trim(_1c.prefix),"g"),"")); -} -if(_1c.suffix){ -s=$.trim(s.replace(new RegExp("\\"+$.trim(_1c.suffix),"g"),"")); -} -if(_1c.groupSeparator){ -s=$.trim(s.replace(new RegExp("\\"+_1c.groupSeparator,"g"),"")); -} -if(_1c.decimalSeparator){ -s=$.trim(s.replace(new RegExp("\\"+_1c.decimalSeparator,"g"),".")); -} -s=s.replace(/\s/g,""); -} -var val=parseFloat(s).toFixed(_1c.precision); -if(isNaN(val)){ -val=""; -}else{ -if(typeof (_1c.min)=="number"&&val<_1c.min){ -val=_1c.min.toFixed(_1c.precision); -}else{ -if(typeof (_1c.max)=="number"&&val>_1c.max){ -val=_1c.max.toFixed(_1c.precision); -} -} -} -return val; -}}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.numberspinner.js b/vendor/FHC-vendor/easyui/plugins/jquery.numberspinner.js deleted file mode 100644 index 3901b2031..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.numberspinner.js +++ /dev/null @@ -1,58 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -$(_2).addClass("numberspinner-f"); -var _3=$.data(_2,"numberspinner").options; -$(_2).numberbox(_3).spinner(_3); -$(_2).numberbox("setValue",_3.value); -}; -function _4(_5,_6){ -var _7=$.data(_5,"numberspinner").options; -var v=parseFloat($(_5).numberbox("getValue")||_7.value)||0; -if(_6){ -v-=_7.increment; -}else{ -v+=_7.increment; -} -$(_5).numberbox("setValue",v); -}; -$.fn.numberspinner=function(_8,_9){ -if(typeof _8=="string"){ -var _a=$.fn.numberspinner.methods[_8]; -if(_a){ -return _a(this,_9); -}else{ -return this.numberbox(_8,_9); -} -} -_8=_8||{}; -return this.each(function(){ -var _b=$.data(this,"numberspinner"); -if(_b){ -$.extend(_b.options,_8); -}else{ -$.data(this,"numberspinner",{options:$.extend({},$.fn.numberspinner.defaults,$.fn.numberspinner.parseOptions(this),_8)}); -} -_1(this); -}); -}; -$.fn.numberspinner.methods={options:function(jq){ -var _c=jq.numberbox("options"); -return $.extend($.data(jq[0],"numberspinner").options,{width:_c.width,value:_c.value,originalValue:_c.originalValue,disabled:_c.disabled,readonly:_c.readonly}); -}}; -$.fn.numberspinner.parseOptions=function(_d){ -return $.extend({},$.fn.spinner.parseOptions(_d),$.fn.numberbox.parseOptions(_d),{}); -}; -$.fn.numberspinner.defaults=$.extend({},$.fn.spinner.defaults,$.fn.numberbox.defaults,{spin:function(_e){ -_4(this,_e); -}}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.pagination.js b/vendor/FHC-vendor/easyui/plugins/jquery.pagination.js deleted file mode 100644 index 03335de52..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.pagination.js +++ /dev/null @@ -1,286 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -var _3=$.data(_2,"pagination"); -var _4=_3.options; -var bb=_3.bb={}; -var _5=$(_2).addClass("pagination").html("
                                          "); -var tr=_5.find("tr"); -var aa=$.extend([],_4.layout); -if(!_4.showPageList){ -_6(aa,"list"); -} -if(!_4.showRefresh){ -_6(aa,"refresh"); -} -if(aa[0]=="sep"){ -aa.shift(); -} -if(aa[aa.length-1]=="sep"){ -aa.pop(); -} -for(var _7=0;_7"); -ps.bind("change",function(){ -_4.pageSize=parseInt($(this).val()); -_4.onChangePageSize.call(_2,_4.pageSize); -_10(_2,_4.pageNumber); -}); -for(var i=0;i<_4.pageList.length;i++){ -$("").text(_4.pageList[i]).appendTo(ps); -} -$("").append(ps).appendTo(tr); -}else{ -if(_8=="sep"){ -$("
                                          ").appendTo(tr); -}else{ -if(_8=="first"){ -bb.first=_9("first"); -}else{ -if(_8=="prev"){ -bb.prev=_9("prev"); -}else{ -if(_8=="next"){ -bb.next=_9("next"); -}else{ -if(_8=="last"){ -bb.last=_9("last"); -}else{ -if(_8=="manual"){ -$("").html(_4.beforePageText).appendTo(tr).wrap(""); -bb.num=$("").appendTo(tr).wrap(""); -bb.num.unbind(".pagination").bind("keydown.pagination",function(e){ -if(e.keyCode==13){ -var _a=parseInt($(this).val())||1; -_10(_2,_a); -return false; -} -}); -bb.after=$("").appendTo(tr).wrap(""); -}else{ -if(_8=="refresh"){ -bb.refresh=_9("refresh"); -}else{ -if(_8=="links"){ -$("").appendTo(tr); -} -} -} -} -} -} -} -} -} -} -if(_4.buttons){ -$("
                                          ").appendTo(tr); -if($.isArray(_4.buttons)){ -for(var i=0;i<_4.buttons.length;i++){ -var _b=_4.buttons[i]; -if(_b=="-"){ -$("
                                          ").appendTo(tr); -}else{ -var td=$("").appendTo(tr); -var a=$("").appendTo(td); -a[0].onclick=eval(_b.handler||function(){ -}); -a.linkbutton($.extend({},_b,{plain:true})); -} -} -}else{ -var td=$("").appendTo(tr); -$(_4.buttons).appendTo(td).show(); -} -} -$("
                                          ").appendTo(_5); -$("
                                          ").appendTo(_5); -function _9(_c){ -var _d=_4.nav[_c]; -var a=$("").appendTo(tr); -a.wrap(""); -a.linkbutton({iconCls:_d.iconCls,plain:true}).unbind(".pagination").bind("click.pagination",function(){ -_d.handler.call(_2); -}); -return a; -}; -function _6(aa,_e){ -var _f=$.inArray(_e,aa); -if(_f>=0){ -aa.splice(_f,1); -} -return aa; -}; -}; -function _10(_11,_12){ -var _13=$.data(_11,"pagination").options; -_14(_11,{pageNumber:_12}); -_13.onSelectPage.call(_11,_13.pageNumber,_13.pageSize); -}; -function _14(_15,_16){ -var _17=$.data(_15,"pagination"); -var _18=_17.options; -var bb=_17.bb; -$.extend(_18,_16||{}); -var ps=$(_15).find("select.pagination-page-list"); -if(ps.length){ -ps.val(_18.pageSize+""); -_18.pageSize=parseInt(ps.val()); -} -var _19=Math.ceil(_18.total/_18.pageSize)||1; -if(_18.pageNumber<1){ -_18.pageNumber=1; -} -if(_18.pageNumber>_19){ -_18.pageNumber=_19; -} -if(_18.total==0){ -_18.pageNumber=0; -_19=0; -} -if(bb.num){ -bb.num.val(_18.pageNumber); -} -if(bb.after){ -bb.after.html(_18.afterPageText.replace(/{pages}/,_19)); -} -var td=$(_15).find("td.pagination-links"); -if(td.length){ -td.empty(); -var _1a=_18.pageNumber-Math.floor(_18.links/2); -if(_1a<1){ -_1a=1; -} -var _1b=_1a+_18.links-1; -if(_1b>_19){ -_1b=_19; -} -_1a=_1b-_18.links+1; -if(_1a<1){ -_1a=1; -} -for(var i=_1a;i<=_1b;i++){ -var a=$("").appendTo(td); -a.linkbutton({plain:true,text:i}); -if(i==_18.pageNumber){ -a.linkbutton("select"); -}else{ -a.unbind(".pagination").bind("click.pagination",{pageNumber:i},function(e){ -_10(_15,e.data.pageNumber); -}); -} -} -} -var _1c=_18.displayMsg; -_1c=_1c.replace(/{from}/,_18.total==0?0:_18.pageSize*(_18.pageNumber-1)+1); -_1c=_1c.replace(/{to}/,Math.min(_18.pageSize*(_18.pageNumber),_18.total)); -_1c=_1c.replace(/{total}/,_18.total); -$(_15).find("div.pagination-info").html(_1c); -if(bb.first){ -bb.first.linkbutton({disabled:((!_18.total)||_18.pageNumber==1)}); -} -if(bb.prev){ -bb.prev.linkbutton({disabled:((!_18.total)||_18.pageNumber==1)}); -} -if(bb.next){ -bb.next.linkbutton({disabled:(_18.pageNumber==_19)}); -} -if(bb.last){ -bb.last.linkbutton({disabled:(_18.pageNumber==_19)}); -} -_1d(_15,_18.loading); -}; -function _1d(_1e,_1f){ -var _20=$.data(_1e,"pagination"); -var _21=_20.options; -_21.loading=_1f; -if(_21.showRefresh&&_20.bb.refresh){ -_20.bb.refresh.linkbutton({iconCls:(_21.loading?"pagination-loading":"pagination-load")}); -} -}; -$.fn.pagination=function(_22,_23){ -if(typeof _22=="string"){ -return $.fn.pagination.methods[_22](this,_23); -} -_22=_22||{}; -return this.each(function(){ -var _24; -var _25=$.data(this,"pagination"); -if(_25){ -_24=$.extend(_25.options,_22); -}else{ -_24=$.extend({},$.fn.pagination.defaults,$.fn.pagination.parseOptions(this),_22); -$.data(this,"pagination",{options:_24}); -} -_1(this); -_14(this); -}); -}; -$.fn.pagination.methods={options:function(jq){ -return $.data(jq[0],"pagination").options; -},loading:function(jq){ -return jq.each(function(){ -_1d(this,true); -}); -},loaded:function(jq){ -return jq.each(function(){ -_1d(this,false); -}); -},refresh:function(jq,_26){ -return jq.each(function(){ -_14(this,_26); -}); -},select:function(jq,_27){ -return jq.each(function(){ -_10(this,_27); -}); -}}; -$.fn.pagination.parseOptions=function(_28){ -var t=$(_28); -return $.extend({},$.parser.parseOptions(_28,[{total:"number",pageSize:"number",pageNumber:"number",links:"number"},{loading:"boolean",showPageList:"boolean",showRefresh:"boolean"}]),{pageList:(t.attr("pageList")?eval(t.attr("pageList")):undefined)}); -}; -$.fn.pagination.defaults={total:1,pageSize:10,pageNumber:1,pageList:[10,20,30,50],loading:false,buttons:null,showPageList:true,showRefresh:true,links:10,layout:["list","sep","first","prev","sep","manual","sep","next","last","sep","refresh"],onSelectPage:function(_29,_2a){ -},onBeforeRefresh:function(_2b,_2c){ -},onRefresh:function(_2d,_2e){ -},onChangePageSize:function(_2f){ -},beforePageText:"Page",afterPageText:"of {pages}",displayMsg:"Displaying {from} to {to} of {total} items",nav:{first:{iconCls:"pagination-first",handler:function(){ -var _30=$(this).pagination("options"); -if(_30.pageNumber>1){ -$(this).pagination("select",1); -} -}},prev:{iconCls:"pagination-prev",handler:function(){ -var _31=$(this).pagination("options"); -if(_31.pageNumber>1){ -$(this).pagination("select",_31.pageNumber-1); -} -}},next:{iconCls:"pagination-next",handler:function(){ -var _32=$(this).pagination("options"); -var _33=Math.ceil(_32.total/_32.pageSize); -if(_32.pageNumber<_33){ -$(this).pagination("select",_32.pageNumber+1); -} -}},last:{iconCls:"pagination-last",handler:function(){ -var _34=$(this).pagination("options"); -var _35=Math.ceil(_34.total/_34.pageSize); -if(_34.pageNumber<_35){ -$(this).pagination("select",_35); -} -}},refresh:{iconCls:"pagination-refresh",handler:function(){ -var _36=$(this).pagination("options"); -if(_36.onBeforeRefresh.call(this,_36.pageNumber,_36.pageSize)!=false){ -$(this).pagination("select",_36.pageNumber); -_36.onRefresh.call(this,_36.pageNumber,_36.pageSize); -} -}}}}; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.panel.js b/vendor/FHC-vendor/easyui/plugins/jquery.panel.js deleted file mode 100644 index 07b2de66f..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.panel.js +++ /dev/null @@ -1,613 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -$.fn._remove=function(){ -return this.each(function(){ -$(this).remove(); -try{ -this.outerHTML=""; -} -catch(err){ -} -}); -}; -function _1(_2){ -_2._remove(); -}; -function _3(_4,_5){ -var _6=$.data(_4,"panel"); -var _7=_6.options; -var _8=_6.panel; -var _9=_8.children(".panel-header"); -var _a=_8.children(".panel-body"); -var _b=_8.children(".panel-footer"); -if(_5){ -$.extend(_7,{width:_5.width,height:_5.height,minWidth:_5.minWidth,maxWidth:_5.maxWidth,minHeight:_5.minHeight,maxHeight:_5.maxHeight,left:_5.left,top:_5.top}); -} -_8._size(_7); -_9.add(_a)._outerWidth(_8.width()); -if(!isNaN(parseInt(_7.height))){ -_a._outerHeight(_8.height()-_9._outerHeight()-_b._outerHeight()); -}else{ -_a.css("height",""); -var _c=$.parser.parseValue("minHeight",_7.minHeight,_8.parent()); -var _d=$.parser.parseValue("maxHeight",_7.maxHeight,_8.parent()); -var _e=_9._outerHeight()+_b._outerHeight()+_8._outerHeight()-_8.height(); -_a._size("minHeight",_c?(_c-_e):""); -_a._size("maxHeight",_d?(_d-_e):""); -} -_8.css({height:"",minHeight:"",maxHeight:"",left:_7.left,top:_7.top}); -_7.onResize.apply(_4,[_7.width,_7.height]); -$(_4).panel("doLayout"); -}; -function _f(_10,_11){ -var _12=$.data(_10,"panel").options; -var _13=$.data(_10,"panel").panel; -if(_11){ -if(_11.left!=null){ -_12.left=_11.left; -} -if(_11.top!=null){ -_12.top=_11.top; -} -} -_13.css({left:_12.left,top:_12.top}); -_12.onMove.apply(_10,[_12.left,_12.top]); -}; -function _14(_15){ -$(_15).addClass("panel-body")._size("clear"); -var _16=$("
                                          ").insertBefore(_15); -_16[0].appendChild(_15); -_16.bind("_resize",function(e,_17){ -if($(this).hasClass("easyui-fluid")||_17){ -_3(_15); -} -return false; -}); -return _16; -}; -function _18(_19){ -var _1a=$.data(_19,"panel"); -var _1b=_1a.options; -var _1c=_1a.panel; -_1c.css(_1b.style); -_1c.addClass(_1b.cls); -_1d(); -_1e(); -var _1f=$(_19).panel("header"); -var _20=$(_19).panel("body"); -var _21=$(_19).siblings(".panel-footer"); -if(_1b.border){ -_1f.removeClass("panel-header-noborder"); -_20.removeClass("panel-body-noborder"); -_21.removeClass("panel-footer-noborder"); -}else{ -_1f.addClass("panel-header-noborder"); -_20.addClass("panel-body-noborder"); -_21.addClass("panel-footer-noborder"); -} -_1f.addClass(_1b.headerCls); -_20.addClass(_1b.bodyCls); -$(_19).attr("id",_1b.id||""); -if(_1b.content){ -$(_19).panel("clear"); -$(_19).html(_1b.content); -$.parser.parse($(_19)); -} -function _1d(){ -if(_1b.noheader||(!_1b.title&&!_1b.header)){ -_1(_1c.children(".panel-header")); -_1c.children(".panel-body").addClass("panel-body-noheader"); -}else{ -if(_1b.header){ -$(_1b.header).addClass("panel-header").prependTo(_1c); -}else{ -var _22=_1c.children(".panel-header"); -if(!_22.length){ -_22=$("
                                          ").prependTo(_1c); -} -if(!$.isArray(_1b.tools)){ -_22.find("div.panel-tool .panel-tool-a").appendTo(_1b.tools); -} -_22.empty(); -var _23=$("
                                          ").html(_1b.title).appendTo(_22); -if(_1b.iconCls){ -_23.addClass("panel-with-icon"); -$("
                                          ").addClass(_1b.iconCls).appendTo(_22); -} -var _24=$("
                                          ").appendTo(_22); -_24.bind("click",function(e){ -e.stopPropagation(); -}); -if(_1b.tools){ -if($.isArray(_1b.tools)){ -$.map(_1b.tools,function(t){ -_25(_24,t.iconCls,eval(t.handler)); -}); -}else{ -$(_1b.tools).children().each(function(){ -$(this).addClass($(this).attr("iconCls")).addClass("panel-tool-a").appendTo(_24); -}); -} -} -if(_1b.collapsible){ -_25(_24,"panel-tool-collapse",function(){ -if(_1b.collapsed==true){ -_4d(_19,true); -}else{ -_3b(_19,true); -} -}); -} -if(_1b.minimizable){ -_25(_24,"panel-tool-min",function(){ -_58(_19); -}); -} -if(_1b.maximizable){ -_25(_24,"panel-tool-max",function(){ -if(_1b.maximized==true){ -_5c(_19); -}else{ -_3a(_19); -} -}); -} -if(_1b.closable){ -_25(_24,"panel-tool-close",function(){ -_3c(_19); -}); -} -} -_1c.children("div.panel-body").removeClass("panel-body-noheader"); -} -}; -function _25(c,_26,_27){ -var a=$("").addClass(_26).appendTo(c); -a.bind("click",_27); -}; -function _1e(){ -if(_1b.footer){ -$(_1b.footer).addClass("panel-footer").appendTo(_1c); -$(_19).addClass("panel-body-nobottom"); -}else{ -_1c.children(".panel-footer").remove(); -$(_19).removeClass("panel-body-nobottom"); -} -}; -}; -function _28(_29,_2a){ -var _2b=$.data(_29,"panel"); -var _2c=_2b.options; -if(_2d){ -_2c.queryParams=_2a; -} -if(!_2c.href){ -return; -} -if(!_2b.isLoaded||!_2c.cache){ -var _2d=$.extend({},_2c.queryParams); -if(_2c.onBeforeLoad.call(_29,_2d)==false){ -return; -} -_2b.isLoaded=false; -$(_29).panel("clear"); -if(_2c.loadingMessage){ -$(_29).html($("
                                          ").html(_2c.loadingMessage)); -} -_2c.loader.call(_29,_2d,function(_2e){ -var _2f=_2c.extractor.call(_29,_2e); -$(_29).html(_2f); -$.parser.parse($(_29)); -_2c.onLoad.apply(_29,arguments); -_2b.isLoaded=true; -},function(){ -_2c.onLoadError.apply(_29,arguments); -}); -} -}; -function _30(_31){ -var t=$(_31); -t.find(".combo-f").each(function(){ -$(this).combo("destroy"); -}); -t.find(".m-btn").each(function(){ -$(this).menubutton("destroy"); -}); -t.find(".s-btn").each(function(){ -$(this).splitbutton("destroy"); -}); -t.find(".tooltip-f").each(function(){ -$(this).tooltip("destroy"); -}); -t.children("div").each(function(){ -$(this)._size("unfit"); -}); -t.empty(); -}; -function _32(_33){ -$(_33).panel("doLayout",true); -}; -function _34(_35,_36){ -var _37=$.data(_35,"panel").options; -var _38=$.data(_35,"panel").panel; -if(_36!=true){ -if(_37.onBeforeOpen.call(_35)==false){ -return; -} -} -_38.stop(true,true); -if($.isFunction(_37.openAnimation)){ -_37.openAnimation.call(_35,cb); -}else{ -switch(_37.openAnimation){ -case "slide": -_38.slideDown(_37.openDuration,cb); -break; -case "fade": -_38.fadeIn(_37.openDuration,cb); -break; -case "show": -_38.show(_37.openDuration,cb); -break; -default: -_38.show(); -cb(); -} -} -function cb(){ -_37.closed=false; -_37.minimized=false; -var _39=_38.children(".panel-header").find("a.panel-tool-restore"); -if(_39.length){ -_37.maximized=true; -} -_37.onOpen.call(_35); -if(_37.maximized==true){ -_37.maximized=false; -_3a(_35); -} -if(_37.collapsed==true){ -_37.collapsed=false; -_3b(_35); -} -if(!_37.collapsed){ -_28(_35); -_32(_35); -} -}; -}; -function _3c(_3d,_3e){ -var _3f=$.data(_3d,"panel").options; -var _40=$.data(_3d,"panel").panel; -if(_3e!=true){ -if(_3f.onBeforeClose.call(_3d)==false){ -return; -} -} -_40.stop(true,true); -_40._size("unfit"); -if($.isFunction(_3f.closeAnimation)){ -_3f.closeAnimation.call(_3d,cb); -}else{ -switch(_3f.closeAnimation){ -case "slide": -_40.slideUp(_3f.closeDuration,cb); -break; -case "fade": -_40.fadeOut(_3f.closeDuration,cb); -break; -case "hide": -_40.hide(_3f.closeDuration,cb); -break; -default: -_40.hide(); -cb(); -} -} -function cb(){ -_3f.closed=true; -_3f.onClose.call(_3d); -}; -}; -function _41(_42,_43){ -var _44=$.data(_42,"panel"); -var _45=_44.options; -var _46=_44.panel; -if(_43!=true){ -if(_45.onBeforeDestroy.call(_42)==false){ -return; -} -} -$(_42).panel("clear").panel("clear","footer"); -_1(_46); -_45.onDestroy.call(_42); -}; -function _3b(_47,_48){ -var _49=$.data(_47,"panel").options; -var _4a=$.data(_47,"panel").panel; -var _4b=_4a.children(".panel-body"); -var _4c=_4a.children(".panel-header").find("a.panel-tool-collapse"); -if(_49.collapsed==true){ -return; -} -_4b.stop(true,true); -if(_49.onBeforeCollapse.call(_47)==false){ -return; -} -_4c.addClass("panel-tool-expand"); -if(_48==true){ -_4b.slideUp("normal",function(){ -_49.collapsed=true; -_49.onCollapse.call(_47); -}); -}else{ -_4b.hide(); -_49.collapsed=true; -_49.onCollapse.call(_47); -} -}; -function _4d(_4e,_4f){ -var _50=$.data(_4e,"panel").options; -var _51=$.data(_4e,"panel").panel; -var _52=_51.children(".panel-body"); -var _53=_51.children(".panel-header").find("a.panel-tool-collapse"); -if(_50.collapsed==false){ -return; -} -_52.stop(true,true); -if(_50.onBeforeExpand.call(_4e)==false){ -return; -} -_53.removeClass("panel-tool-expand"); -if(_4f==true){ -_52.slideDown("normal",function(){ -_50.collapsed=false; -_50.onExpand.call(_4e); -_28(_4e); -_32(_4e); -}); -}else{ -_52.show(); -_50.collapsed=false; -_50.onExpand.call(_4e); -_28(_4e); -_32(_4e); -} -}; -function _3a(_54){ -var _55=$.data(_54,"panel").options; -var _56=$.data(_54,"panel").panel; -var _57=_56.children(".panel-header").find("a.panel-tool-max"); -if(_55.maximized==true){ -return; -} -_57.addClass("panel-tool-restore"); -if(!$.data(_54,"panel").original){ -$.data(_54,"panel").original={width:_55.width,height:_55.height,left:_55.left,top:_55.top,fit:_55.fit}; -} -_55.left=0; -_55.top=0; -_55.fit=true; -_3(_54); -_55.minimized=false; -_55.maximized=true; -_55.onMaximize.call(_54); -}; -function _58(_59){ -var _5a=$.data(_59,"panel").options; -var _5b=$.data(_59,"panel").panel; -_5b._size("unfit"); -_5b.hide(); -_5a.minimized=true; -_5a.maximized=false; -_5a.onMinimize.call(_59); -}; -function _5c(_5d){ -var _5e=$.data(_5d,"panel").options; -var _5f=$.data(_5d,"panel").panel; -var _60=_5f.children(".panel-header").find("a.panel-tool-max"); -if(_5e.maximized==false){ -return; -} -_5f.show(); -_60.removeClass("panel-tool-restore"); -$.extend(_5e,$.data(_5d,"panel").original); -_3(_5d); -_5e.minimized=false; -_5e.maximized=false; -$.data(_5d,"panel").original=null; -_5e.onRestore.call(_5d); -}; -function _61(_62,_63){ -$.data(_62,"panel").options.title=_63; -$(_62).panel("header").find("div.panel-title").html(_63); -}; -var _64=null; -$(window).unbind(".panel").bind("resize.panel",function(){ -if(_64){ -clearTimeout(_64); -} -_64=setTimeout(function(){ -var _65=$("body.layout"); -if(_65.length){ -_65.layout("resize"); -$("body").children(".easyui-fluid:visible").each(function(){ -$(this).triggerHandler("_resize"); -}); -}else{ -$("body").panel("doLayout"); -} -_64=null; -},100); -}); -$.fn.panel=function(_66,_67){ -if(typeof _66=="string"){ -return $.fn.panel.methods[_66](this,_67); -} -_66=_66||{}; -return this.each(function(){ -var _68=$.data(this,"panel"); -var _69; -if(_68){ -_69=$.extend(_68.options,_66); -_68.isLoaded=false; -}else{ -_69=$.extend({},$.fn.panel.defaults,$.fn.panel.parseOptions(this),_66); -$(this).attr("title",""); -_68=$.data(this,"panel",{options:_69,panel:_14(this),isLoaded:false}); -} -_18(this); -if(_69.doSize==true){ -_68.panel.css("display","block"); -_3(this); -} -if(_69.closed==true||_69.minimized==true){ -_68.panel.hide(); -}else{ -_34(this); -} -}); -}; -$.fn.panel.methods={options:function(jq){ -return $.data(jq[0],"panel").options; -},panel:function(jq){ -return $.data(jq[0],"panel").panel; -},header:function(jq){ -return $.data(jq[0],"panel").panel.children(".panel-header"); -},footer:function(jq){ -return jq.panel("panel").children(".panel-footer"); -},body:function(jq){ -return $.data(jq[0],"panel").panel.children(".panel-body"); -},setTitle:function(jq,_6a){ -return jq.each(function(){ -_61(this,_6a); -}); -},open:function(jq,_6b){ -return jq.each(function(){ -_34(this,_6b); -}); -},close:function(jq,_6c){ -return jq.each(function(){ -_3c(this,_6c); -}); -},destroy:function(jq,_6d){ -return jq.each(function(){ -_41(this,_6d); -}); -},clear:function(jq,_6e){ -return jq.each(function(){ -_30(_6e=="footer"?$(this).panel("footer"):this); -}); -},refresh:function(jq,_6f){ -return jq.each(function(){ -var _70=$.data(this,"panel"); -_70.isLoaded=false; -if(_6f){ -if(typeof _6f=="string"){ -_70.options.href=_6f; -}else{ -_70.options.queryParams=_6f; -} -} -_28(this); -}); -},resize:function(jq,_71){ -return jq.each(function(){ -_3(this,_71); -}); -},doLayout:function(jq,all){ -return jq.each(function(){ -_72(this,"body"); -_72($(this).siblings(".panel-footer")[0],"footer"); -function _72(_73,_74){ -if(!_73){ -return; -} -var _75=_73==$("body")[0]; -var s=$(_73).find("div.panel:visible,div.accordion:visible,div.tabs-container:visible,div.layout:visible,.easyui-fluid:visible").filter(function(_76,el){ -var p=$(el).parents(".panel-"+_74+":first"); -return _75?p.length==0:p[0]==_73; -}); -s.each(function(){ -$(this).triggerHandler("_resize",[all||false]); -}); -}; -}); -},move:function(jq,_77){ -return jq.each(function(){ -_f(this,_77); -}); -},maximize:function(jq){ -return jq.each(function(){ -_3a(this); -}); -},minimize:function(jq){ -return jq.each(function(){ -_58(this); -}); -},restore:function(jq){ -return jq.each(function(){ -_5c(this); -}); -},collapse:function(jq,_78){ -return jq.each(function(){ -_3b(this,_78); -}); -},expand:function(jq,_79){ -return jq.each(function(){ -_4d(this,_79); -}); -}}; -$.fn.panel.parseOptions=function(_7a){ -var t=$(_7a); -var hh=t.children(".panel-header,header"); -var ff=t.children(".panel-footer,footer"); -return $.extend({},$.parser.parseOptions(_7a,["id","width","height","left","top","title","iconCls","cls","headerCls","bodyCls","tools","href","method","header","footer",{cache:"boolean",fit:"boolean",border:"boolean",noheader:"boolean"},{collapsible:"boolean",minimizable:"boolean",maximizable:"boolean"},{closable:"boolean",collapsed:"boolean",minimized:"boolean",maximized:"boolean",closed:"boolean"},"openAnimation","closeAnimation",{openDuration:"number",closeDuration:"number"},]),{loadingMessage:(t.attr("loadingMessage")!=undefined?t.attr("loadingMessage"):undefined),header:(hh.length?hh.removeClass("panel-header"):undefined),footer:(ff.length?ff.removeClass("panel-footer"):undefined)}); -}; -$.fn.panel.defaults={id:null,title:null,iconCls:null,width:"auto",height:"auto",left:null,top:null,cls:null,headerCls:null,bodyCls:null,style:{},href:null,cache:true,fit:false,border:true,doSize:true,noheader:false,content:null,collapsible:false,minimizable:false,maximizable:false,closable:false,collapsed:false,minimized:false,maximized:false,closed:false,openAnimation:false,openDuration:400,closeAnimation:false,closeDuration:400,tools:null,footer:null,header:null,queryParams:{},method:"get",href:null,loadingMessage:"Loading...",loader:function(_7b,_7c,_7d){ -var _7e=$(this).panel("options"); -if(!_7e.href){ -return false; -} -$.ajax({type:_7e.method,url:_7e.href,cache:false,data:_7b,dataType:"html",success:function(_7f){ -_7c(_7f); -},error:function(){ -_7d.apply(this,arguments); -}}); -},extractor:function(_80){ -var _81=/]*>((.|[\n\r])*)<\/body>/im; -var _82=_81.exec(_80); -if(_82){ -return _82[1]; -}else{ -return _80; -} -},onBeforeLoad:function(_83){ -},onLoad:function(){ -},onLoadError:function(){ -},onBeforeOpen:function(){ -},onOpen:function(){ -},onBeforeClose:function(){ -},onClose:function(){ -},onBeforeDestroy:function(){ -},onDestroy:function(){ -},onResize:function(_84,_85){ -},onMove:function(_86,top){ -},onMaximize:function(){ -},onRestore:function(){ -},onMinimize:function(){ -},onBeforeCollapse:function(){ -},onBeforeExpand:function(){ -},onCollapse:function(){ -},onExpand:function(){ -}}; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.parser.js b/vendor/FHC-vendor/easyui/plugins/jquery.parser.js deleted file mode 100644 index 68b8586c5..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.parser.js +++ /dev/null @@ -1,325 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -$.parser={auto:true,onComplete:function(_1){ -},plugins:["draggable","droppable","resizable","pagination","tooltip","linkbutton","menu","menubutton","splitbutton","switchbutton","progressbar","tree","textbox","filebox","combo","combobox","combotree","combogrid","numberbox","validatebox","searchbox","spinner","numberspinner","timespinner","datetimespinner","calendar","datebox","datetimebox","slider","layout","panel","datagrid","propertygrid","treegrid","datalist","tabs","accordion","window","dialog","form"],parse:function(_2){ -var aa=[]; -for(var i=0;i<$.parser.plugins.length;i++){ -var _3=$.parser.plugins[i]; -var r=$(".easyui-"+_3,_2); -if(r.length){ -if(r[_3]){ -r[_3](); -}else{ -aa.push({name:_3,jq:r}); -} -} -} -if(aa.length&&window.easyloader){ -var _4=[]; -for(var i=0;i=0){ -v=Math.floor((_8.width()-_9)*v/100); -}else{ -v=Math.floor((_8.height()-_9)*v/100); -} -}else{ -v=parseInt(v)||undefined; -} -return v; -},parseOptions:function(_b,_c){ -var t=$(_b); -var _d={}; -var s=$.trim(t.attr("data-options")); -if(s){ -if(s.substring(0,1)!="{"){ -s="{"+s+"}"; -} -_d=(new Function("return "+s))(); -} -$.map(["width","height","left","top","minWidth","maxWidth","minHeight","maxHeight"],function(p){ -var pv=$.trim(_b.style[p]||""); -if(pv){ -if(pv.indexOf("%")==-1){ -pv=parseInt(pv)||undefined; -} -_d[p]=pv; -} -}); -if(_c){ -var _e={}; -for(var i=0;i<_c.length;i++){ -var pp=_c[i]; -if(typeof pp=="string"){ -_e[pp]=t.attr(pp); -}else{ -for(var _f in pp){ -var _10=pp[_f]; -if(_10=="boolean"){ -_e[_f]=t.attr(_f)?(t.attr(_f)=="true"):undefined; -}else{ -if(_10=="number"){ -_e[_f]=t.attr(_f)=="0"?0:parseFloat(t.attr(_f))||undefined; -} -} -} -} -} -$.extend(_d,_e); -} -return _d; -}}; -$(function(){ -var d=$("
                                          ").appendTo("body"); -$._boxModel=d.outerWidth()!=100; -d.remove(); -d=$("
                                          ").appendTo("body"); -$._positionFixed=(d.css("position")=="fixed"); -d.remove(); -if(!window.easyloader&&$.parser.auto){ -$.parser.parse(); -} -}); -$.fn._outerWidth=function(_11){ -if(_11==undefined){ -if(this[0]==window){ -return this.width()||document.body.clientWidth; -} -return this.outerWidth()||0; -} -return this._size("width",_11); -}; -$.fn._outerHeight=function(_12){ -if(_12==undefined){ -if(this[0]==window){ -return this.height()||document.body.clientHeight; -} -return this.outerHeight()||0; -} -return this._size("height",_12); -}; -$.fn._scrollLeft=function(_13){ -if(_13==undefined){ -return this.scrollLeft(); -}else{ -return this.each(function(){ -$(this).scrollLeft(_13); -}); -} -}; -$.fn._propAttr=$.fn.prop||$.fn.attr; -$.fn._size=function(_14,_15){ -if(typeof _14=="string"){ -if(_14=="clear"){ -return this.each(function(){ -$(this).css({width:"",minWidth:"",maxWidth:"",height:"",minHeight:"",maxHeight:""}); -}); -}else{ -if(_14=="fit"){ -return this.each(function(){ -_16(this,this.tagName=="BODY"?$("body"):$(this).parent(),true); -}); -}else{ -if(_14=="unfit"){ -return this.each(function(){ -_16(this,$(this).parent(),false); -}); -}else{ -if(_15==undefined){ -return _17(this[0],_14); -}else{ -return this.each(function(){ -_17(this,_14,_15); -}); -} -} -} -} -}else{ -return this.each(function(){ -_15=_15||$(this).parent(); -$.extend(_14,_16(this,_15,_14.fit)||{}); -var r1=_18(this,"width",_15,_14); -var r2=_18(this,"height",_15,_14); -if(r1||r2){ -$(this).addClass("easyui-fluid"); -}else{ -$(this).removeClass("easyui-fluid"); -} -}); -} -function _16(_19,_1a,fit){ -if(!_1a.length){ -return false; -} -var t=$(_19)[0]; -var p=_1a[0]; -var _1b=p.fcount||0; -if(fit){ -if(!t.fitted){ -t.fitted=true; -p.fcount=_1b+1; -$(p).addClass("panel-noscroll"); -if(p.tagName=="BODY"){ -$("html").addClass("panel-fit"); -} -} -return {width:($(p).width()||1),height:($(p).height()||1)}; -}else{ -if(t.fitted){ -t.fitted=false; -p.fcount=_1b-1; -if(p.fcount==0){ -$(p).removeClass("panel-noscroll"); -if(p.tagName=="BODY"){ -$("html").removeClass("panel-fit"); -} -} -} -return false; -} -}; -function _18(_1c,_1d,_1e,_1f){ -var t=$(_1c); -var p=_1d; -var p1=p.substr(0,1).toUpperCase()+p.substr(1); -var min=$.parser.parseValue("min"+p1,_1f["min"+p1],_1e); -var max=$.parser.parseValue("max"+p1,_1f["max"+p1],_1e); -var val=$.parser.parseValue(p,_1f[p],_1e); -var _20=(String(_1f[p]||"").indexOf("%")>=0?true:false); -if(!isNaN(val)){ -var v=Math.min(Math.max(val,min||0),max||99999); -if(!_20){ -_1f[p]=v; -} -t._size("min"+p1,""); -t._size("max"+p1,""); -t._size(p,v); -}else{ -t._size(p,""); -t._size("min"+p1,min); -t._size("max"+p1,max); -} -return _20||_1f.fit; -}; -function _17(_21,_22,_23){ -var t=$(_21); -if(_23==undefined){ -_23=parseInt(_21.style[_22]); -if(isNaN(_23)){ -return undefined; -} -if($._boxModel){ -_23+=_24(); -} -return _23; -}else{ -if(_23===""){ -t.css(_22,""); -}else{ -if($._boxModel){ -_23-=_24(); -if(_23<0){ -_23=0; -} -} -t.css(_22,_23+"px"); -} -} -function _24(){ -if(_22.toLowerCase().indexOf("width")>=0){ -return t.outerWidth()-t.width(); -}else{ -return t.outerHeight()-t.height(); -} -}; -}; -}; -})(jQuery); -(function($){ -var _25=null; -var _26=null; -var _27=false; -function _28(e){ -if(e.touches.length!=1){ -return; -} -if(!_27){ -_27=true; -dblClickTimer=setTimeout(function(){ -_27=false; -},500); -}else{ -clearTimeout(dblClickTimer); -_27=false; -_29(e,"dblclick"); -} -_25=setTimeout(function(){ -_29(e,"contextmenu",3); -},1000); -_29(e,"mousedown"); -if($.fn.draggable.isDragging||$.fn.resizable.isResizing){ -e.preventDefault(); -} -}; -function _2a(e){ -if(e.touches.length!=1){ -return; -} -if(_25){ -clearTimeout(_25); -} -_29(e,"mousemove"); -if($.fn.draggable.isDragging||$.fn.resizable.isResizing){ -e.preventDefault(); -} -}; -function _2b(e){ -if(_25){ -clearTimeout(_25); -} -_29(e,"mouseup"); -if($.fn.draggable.isDragging||$.fn.resizable.isResizing){ -e.preventDefault(); -} -}; -function _29(e,_2c,_2d){ -var _2e=new $.Event(_2c); -_2e.pageX=e.changedTouches[0].pageX; -_2e.pageY=e.changedTouches[0].pageY; -_2e.which=_2d||1; -$(e.target).trigger(_2e); -}; -if(document.addEventListener){ -document.addEventListener("touchstart",_28,true); -document.addEventListener("touchmove",_2a,true); -document.addEventListener("touchend",_2b,true); -} -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.progressbar.js b/vendor/FHC-vendor/easyui/plugins/jquery.progressbar.js deleted file mode 100644 index 7c8fa5485..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.progressbar.js +++ /dev/null @@ -1,84 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -$(_2).addClass("progressbar"); -$(_2).html("
                                          "); -$(_2).bind("_resize",function(e,_3){ -if($(this).hasClass("easyui-fluid")||_3){ -_4(_2); -} -return false; -}); -return $(_2); -}; -function _4(_5,_6){ -var _7=$.data(_5,"progressbar").options; -var _8=$.data(_5,"progressbar").bar; -if(_6){ -_7.width=_6; -} -_8._size(_7); -_8.find("div.progressbar-text").css("width",_8.width()); -_8.find("div.progressbar-text,div.progressbar-value").css({height:_8.height()+"px",lineHeight:_8.height()+"px"}); -}; -$.fn.progressbar=function(_9,_a){ -if(typeof _9=="string"){ -var _b=$.fn.progressbar.methods[_9]; -if(_b){ -return _b(this,_a); -} -} -_9=_9||{}; -return this.each(function(){ -var _c=$.data(this,"progressbar"); -if(_c){ -$.extend(_c.options,_9); -}else{ -_c=$.data(this,"progressbar",{options:$.extend({},$.fn.progressbar.defaults,$.fn.progressbar.parseOptions(this),_9),bar:_1(this)}); -} -$(this).progressbar("setValue",_c.options.value); -_4(this); -}); -}; -$.fn.progressbar.methods={options:function(jq){ -return $.data(jq[0],"progressbar").options; -},resize:function(jq,_d){ -return jq.each(function(){ -_4(this,_d); -}); -},getValue:function(jq){ -return $.data(jq[0],"progressbar").options.value; -},setValue:function(jq,_e){ -if(_e<0){ -_e=0; -} -if(_e>100){ -_e=100; -} -return jq.each(function(){ -var _f=$.data(this,"progressbar").options; -var _10=_f.text.replace(/{value}/,_e); -var _11=_f.value; -_f.value=_e; -$(this).find("div.progressbar-value").width(_e+"%"); -$(this).find("div.progressbar-text").html(_10); -if(_11!=_e){ -_f.onChange.call(this,_e,_11); -} -}); -}}; -$.fn.progressbar.parseOptions=function(_12){ -return $.extend({},$.parser.parseOptions(_12,["width","height","text",{value:"number"}])); -}; -$.fn.progressbar.defaults={width:"auto",height:22,value:0,text:"{value}%",onChange:function(_13,_14){ -}}; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.propertygrid.js b/vendor/FHC-vendor/easyui/plugins/jquery.propertygrid.js deleted file mode 100644 index 3ea949e51..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.propertygrid.js +++ /dev/null @@ -1,330 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -var _1; -$(document).unbind(".propertygrid").bind("mousedown.propertygrid",function(e){ -var p=$(e.target).closest("div.datagrid-view,div.combo-panel"); -if(p.length){ -return; -} -_2(_1); -_1=undefined; -}); -function _3(_4){ -var _5=$.data(_4,"propertygrid"); -var _6=$.data(_4,"propertygrid").options; -$(_4).datagrid($.extend({},_6,{cls:"propertygrid",view:(_6.showGroup?_6.groupView:_6.view),onBeforeEdit:function(_7,_8){ -if(_6.onBeforeEdit.call(_4,_7,_8)==false){ -return false; -} -var dg=$(this); -var _8=dg.datagrid("getRows")[_7]; -var _9=dg.datagrid("getColumnOption","value"); -_9.editor=_8.editor; -},onClickCell:function(_a,_b,_c){ -if(_1!=this){ -_2(_1); -_1=this; -} -if(_6.editIndex!=_a){ -_2(_1); -$(this).datagrid("beginEdit",_a); -var ed=$(this).datagrid("getEditor",{index:_a,field:_b}); -if(!ed){ -ed=$(this).datagrid("getEditor",{index:_a,field:"value"}); -} -if(ed){ -var t=$(ed.target); -var _d=t.data("textbox")?t.textbox("textbox"):t; -_d.focus(); -_6.editIndex=_a; -} -} -_6.onClickCell.call(_4,_a,_b,_c); -},loadFilter:function(_e){ -_2(this); -return _6.loadFilter.call(this,_e); -}})); -}; -function _2(_f){ -var t=$(_f); -if(!t.length){ -return; -} -var _10=$.data(_f,"propertygrid").options; -_10.finder.getTr(_f,null,"editing").each(function(){ -var _11=parseInt($(this).attr("datagrid-row-index")); -if(t.datagrid("validateRow",_11)){ -t.datagrid("endEdit",_11); -}else{ -t.datagrid("cancelEdit",_11); -} -}); -_10.editIndex=undefined; -}; -$.fn.propertygrid=function(_12,_13){ -if(typeof _12=="string"){ -var _14=$.fn.propertygrid.methods[_12]; -if(_14){ -return _14(this,_13); -}else{ -return this.datagrid(_12,_13); -} -} -_12=_12||{}; -return this.each(function(){ -var _15=$.data(this,"propertygrid"); -if(_15){ -$.extend(_15.options,_12); -}else{ -var _16=$.extend({},$.fn.propertygrid.defaults,$.fn.propertygrid.parseOptions(this),_12); -_16.frozenColumns=$.extend(true,[],_16.frozenColumns); -_16.columns=$.extend(true,[],_16.columns); -$.data(this,"propertygrid",{options:_16}); -} -_3(this); -}); -}; -$.fn.propertygrid.methods={options:function(jq){ -return $.data(jq[0],"propertygrid").options; -}}; -$.fn.propertygrid.parseOptions=function(_17){ -return $.extend({},$.fn.datagrid.parseOptions(_17),$.parser.parseOptions(_17,[{showGroup:"boolean"}])); -}; -var _18=$.extend({},$.fn.datagrid.defaults.view,{render:function(_19,_1a,_1b){ -var _1c=[]; -var _1d=this.groups; -for(var i=0;i<_1d.length;i++){ -_1c.push(this.renderGroup.call(this,_19,i,_1d[i],_1b)); -} -$(_1a).html(_1c.join("")); -},renderGroup:function(_1e,_1f,_20,_21){ -var _22=$.data(_1e,"datagrid"); -var _23=_22.options; -var _24=$(_1e).datagrid("getColumnFields",_21); -var _25=[]; -_25.push("
                                          "); -if((_21&&(_23.rownumbers||_23.frozenColumns.length))||(!_21&&!(_23.rownumbers||_23.frozenColumns.length))){ -_25.push(""); -_25.push(" "); -_25.push(""); -} -if(!_21){ -_25.push(""); -_25.push(_23.groupFormatter.call(_1e,_20.value,_20.rows)); -_25.push(""); -} -_25.push("
                                          "); -_25.push(""); -var _26=_20.startIndex; -for(var j=0;j<_20.rows.length;j++){ -var css=_23.rowStyler?_23.rowStyler.call(_1e,_26,_20.rows[j]):""; -var _27=""; -var _28=""; -if(typeof css=="string"){ -_28=css; -}else{ -if(css){ -_27=css["class"]||""; -_28=css["style"]||""; -} -} -var cls="class=\"datagrid-row "+(_26%2&&_23.striped?"datagrid-row-alt ":" ")+_27+"\""; -var _29=_28?"style=\""+_28+"\"":""; -var _2a=_22.rowIdPrefix+"-"+(_21?1:2)+"-"+_26; -_25.push(""); -_25.push(this.renderRow.call(this,_1e,_24,_21,_26,_20.rows[j])); -_25.push(""); -_26++; -} -_25.push("
                                          "); -return _25.join(""); -},bindEvents:function(_2b){ -var _2c=$.data(_2b,"datagrid"); -var dc=_2c.dc; -var _2d=dc.body1.add(dc.body2); -var _2e=($.data(_2d[0],"events")||$._data(_2d[0],"events")).click[0].handler; -_2d.unbind("click").bind("click",function(e){ -var tt=$(e.target); -var _2f=tt.closest("span.datagrid-row-expander"); -if(_2f.length){ -var _30=_2f.closest("div.datagrid-group").attr("group-index"); -if(_2f.hasClass("datagrid-row-collapse")){ -$(_2b).datagrid("collapseGroup",_30); -}else{ -$(_2b).datagrid("expandGroup",_30); -} -}else{ -_2e(e); -} -e.stopPropagation(); -}); -},onBeforeRender:function(_31,_32){ -var _33=$.data(_31,"datagrid"); -var _34=_33.options; -_35(); -var _36=[]; -for(var i=0;i<_32.length;i++){ -var row=_32[i]; -var _37=_38(row[_34.groupField]); -if(!_37){ -_37={value:row[_34.groupField],rows:[row]}; -_36.push(_37); -}else{ -_37.rows.push(row); -} -} -var _39=0; -var _3a=[]; -for(var i=0;i<_36.length;i++){ -var _37=_36[i]; -_37.startIndex=_39; -_39+=_37.rows.length; -_3a=_3a.concat(_37.rows); -} -_33.data.rows=_3a; -this.groups=_36; -var _3b=this; -setTimeout(function(){ -_3b.bindEvents(_31); -},0); -function _38(_3c){ -for(var i=0;i<_36.length;i++){ -var _3d=_36[i]; -if(_3d.value==_3c){ -return _3d; -} -} -return null; -}; -function _35(){ -if(!$("#datagrid-group-style").length){ -$("head").append(""); -} -}; -}}); -$.extend($.fn.datagrid.methods,{groups:function(jq){ -return jq.datagrid("options").view.groups; -},expandGroup:function(jq,_3e){ -return jq.each(function(){ -var _3f=$.data(this,"datagrid").dc.view; -var _40=_3f.find(_3e!=undefined?"div.datagrid-group[group-index=\""+_3e+"\"]":"div.datagrid-group"); -var _41=_40.find("span.datagrid-row-expander"); -if(_41.hasClass("datagrid-row-expand")){ -_41.removeClass("datagrid-row-expand").addClass("datagrid-row-collapse"); -_40.next("table").show(); -} -$(this).datagrid("fixRowHeight"); -}); -},collapseGroup:function(jq,_42){ -return jq.each(function(){ -var _43=$.data(this,"datagrid").dc.view; -var _44=_43.find(_42!=undefined?"div.datagrid-group[group-index=\""+_42+"\"]":"div.datagrid-group"); -var _45=_44.find("span.datagrid-row-expander"); -if(_45.hasClass("datagrid-row-collapse")){ -_45.removeClass("datagrid-row-collapse").addClass("datagrid-row-expand"); -_44.next("table").hide(); -} -$(this).datagrid("fixRowHeight"); -}); -}}); -$.extend(_18,{refreshGroupTitle:function(_46,_47){ -var _48=$.data(_46,"datagrid"); -var _49=_48.options; -var dc=_48.dc; -var _4a=this.groups[_47]; -var _4b=dc.body2.children("div.datagrid-group[group-index="+_47+"]").find("span.datagrid-group-title"); -_4b.html(_49.groupFormatter.call(_46,_4a.value,_4a.rows)); -},insertRow:function(_4c,_4d,row){ -var _4e=$.data(_4c,"datagrid"); -var _4f=_4e.options; -var dc=_4e.dc; -var _50=null; -var _51; -if(!_4e.data.rows.length){ -$(_4c).datagrid("loadData",[row]); -return; -} -for(var i=0;i_50.startIndex+_50.rows.length){ -_4d=_50.startIndex+_50.rows.length; -} -} -$.fn.datagrid.defaults.view.insertRow.call(this,_4c,_4d,row); -if(_4d>=_50.startIndex+_50.rows.length){ -_52(_4d,true); -_52(_4d,false); -} -_50.rows.splice(_4d-_50.startIndex,0,row); -}else{ -_50={value:row[_4f.groupField],rows:[row],startIndex:_4e.data.rows.length}; -_51=this.groups.length; -dc.body1.append(this.renderGroup.call(this,_4c,_51,_50,true)); -dc.body2.append(this.renderGroup.call(this,_4c,_51,_50,false)); -this.groups.push(_50); -_4e.data.rows.push(row); -} -this.refreshGroupTitle(_4c,_51); -function _52(_53,_54){ -var _55=_54?1:2; -var _56=_4f.finder.getTr(_4c,_53-1,"body",_55); -var tr=_4f.finder.getTr(_4c,_53,"body",_55); -tr.insertAfter(_56); -}; -},updateRow:function(_57,_58,row){ -var _59=$.data(_57,"datagrid").options; -$.fn.datagrid.defaults.view.updateRow.call(this,_57,_58,row); -var tb=_59.finder.getTr(_57,_58,"body",2).closest("table.datagrid-btable"); -var _5a=parseInt(tb.prev().attr("group-index")); -this.refreshGroupTitle(_57,_5a); -},deleteRow:function(_5b,_5c){ -var _5d=$.data(_5b,"datagrid"); -var _5e=_5d.options; -var dc=_5d.dc; -var _5f=dc.body1.add(dc.body2); -var tb=_5e.finder.getTr(_5b,_5c,"body",2).closest("table.datagrid-btable"); -var _60=parseInt(tb.prev().attr("group-index")); -$.fn.datagrid.defaults.view.deleteRow.call(this,_5b,_5c); -var _61=this.groups[_60]; -if(_61.rows.length>1){ -_61.rows.splice(_5c-_61.startIndex,1); -this.refreshGroupTitle(_5b,_60); -}else{ -_5f.children("div.datagrid-group[group-index="+_60+"]").remove(); -for(var i=_60+1;i_13.top&&e.pageY<_13.top+_16){ -dir+="n"; -}else{ -if(e.pageY<_13.top+_15&&e.pageY>_13.top+_15-_16){ -dir+="s"; -} -} -if(e.pageX>_13.left&&e.pageX<_13.left+_16){ -dir+="w"; -}else{ -if(e.pageX<_13.left+_14&&e.pageX>_13.left+_14-_16){ -dir+="e"; -} -} -var _17=_d.handles.split(","); -for(var i=0;i<_17.length;i++){ -var _18=_17[i].replace(/(^\s*)|(\s*$)/g,""); -if(_18=="all"||_18==dir){ -return dir; -} -} -return ""; -}; -}); -}; -$.fn.resizable.methods={options:function(jq){ -return $.data(jq[0],"resizable").options; -},enable:function(jq){ -return jq.each(function(){ -$(this).resizable({disabled:false}); -}); -},disable:function(jq){ -return jq.each(function(){ -$(this).resizable({disabled:true}); -}); -}}; -$.fn.resizable.parseOptions=function(_19){ -var t=$(_19); -return $.extend({},$.parser.parseOptions(_19,["handles",{minWidth:"number",minHeight:"number",maxWidth:"number",maxHeight:"number",edge:"number"}]),{disabled:(t.attr("disabled")?true:undefined)}); -}; -$.fn.resizable.defaults={disabled:false,handles:"n, e, s, w, ne, se, sw, nw, all",minWidth:10,minHeight:10,maxWidth:10000,maxHeight:10000,edge:5,onStartResize:function(e){ -},onResize:function(e){ -},onStopResize:function(e){ -}}; -$.fn.resizable.isResizing=false; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.searchbox.js b/vendor/FHC-vendor/easyui/plugins/jquery.searchbox.js deleted file mode 100644 index cce40daea..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.searchbox.js +++ /dev/null @@ -1,132 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -var _3=$.data(_2,"searchbox"); -var _4=_3.options; -var _5=$.extend(true,[],_4.icons); -_5.push({iconCls:"searchbox-button",handler:function(e){ -var t=$(e.data.target); -var _6=t.searchbox("options"); -_6.searcher.call(e.data.target,t.searchbox("getValue"),t.searchbox("getName")); -}}); -_7(); -var _8=_9(); -$(_2).addClass("searchbox-f").textbox($.extend({},_4,{icons:_5,buttonText:(_8?_8.text:"")})); -$(_2).attr("searchboxName",$(_2).attr("textboxName")); -_3.searchbox=$(_2).next(); -_3.searchbox.addClass("searchbox"); -_a(_8); -function _7(){ -if(_4.menu){ -_3.menu=$(_4.menu).menu(); -var _b=_3.menu.menu("options"); -var _c=_b.onClick; -_b.onClick=function(_d){ -_a(_d); -_c.call(this,_d); -}; -}else{ -if(_3.menu){ -_3.menu.menu("destroy"); -} -_3.menu=null; -} -}; -function _9(){ -if(_3.menu){ -var _e=_3.menu.children("div.menu-item:first"); -_3.menu.children("div.menu-item").each(function(){ -var _f=$.extend({},$.parser.parseOptions(this),{selected:($(this).attr("selected")?true:undefined)}); -if(_f.selected){ -_e=$(this); -return false; -} -}); -return _3.menu.menu("getItem",_e[0]); -}else{ -return null; -} -}; -function _a(_10){ -if(!_10){ -return; -} -$(_2).textbox("button").menubutton({text:_10.text,iconCls:(_10.iconCls||null),menu:_3.menu,menuAlign:_4.buttonAlign,plain:false}); -_3.searchbox.find("input.textbox-value").attr("name",_10.name||_10.text); -$(_2).searchbox("resize"); -}; -}; -$.fn.searchbox=function(_11,_12){ -if(typeof _11=="string"){ -var _13=$.fn.searchbox.methods[_11]; -if(_13){ -return _13(this,_12); -}else{ -return this.textbox(_11,_12); -} -} -_11=_11||{}; -return this.each(function(){ -var _14=$.data(this,"searchbox"); -if(_14){ -$.extend(_14.options,_11); -}else{ -$.data(this,"searchbox",{options:$.extend({},$.fn.searchbox.defaults,$.fn.searchbox.parseOptions(this),_11)}); -} -_1(this); -}); -}; -$.fn.searchbox.methods={options:function(jq){ -var _15=jq.textbox("options"); -return $.extend($.data(jq[0],"searchbox").options,{width:_15.width,value:_15.value,originalValue:_15.originalValue,disabled:_15.disabled,readonly:_15.readonly}); -},menu:function(jq){ -return $.data(jq[0],"searchbox").menu; -},getName:function(jq){ -return $.data(jq[0],"searchbox").searchbox.find("input.textbox-value").attr("name"); -},selectName:function(jq,_16){ -return jq.each(function(){ -var _17=$.data(this,"searchbox").menu; -if(_17){ -_17.children("div.menu-item").each(function(){ -var _18=_17.menu("getItem",this); -if(_18.name==_16){ -$(this).triggerHandler("click"); -return false; -} -}); -} -}); -},destroy:function(jq){ -return jq.each(function(){ -var _19=$(this).searchbox("menu"); -if(_19){ -_19.menu("destroy"); -} -$(this).textbox("destroy"); -}); -}}; -$.fn.searchbox.parseOptions=function(_1a){ -var t=$(_1a); -return $.extend({},$.fn.textbox.parseOptions(_1a),$.parser.parseOptions(_1a,["menu"]),{searcher:(t.attr("searcher")?eval(t.attr("searcher")):undefined)}); -}; -$.fn.searchbox.defaults=$.extend({},$.fn.textbox.defaults,{inputEvents:$.extend({},$.fn.textbox.defaults.inputEvents,{keydown:function(e){ -if(e.keyCode==13){ -e.preventDefault(); -var t=$(e.data.target); -var _1b=t.searchbox("options"); -t.searchbox("setValue",$(this).val()); -_1b.searcher.call(e.data.target,t.searchbox("getValue"),t.searchbox("getName")); -return false; -} -}}),buttonAlign:"left",menu:null,searcher:function(_1c,_1d){ -}}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.slider.js b/vendor/FHC-vendor/easyui/plugins/jquery.slider.js deleted file mode 100644 index f5a8006e8..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.slider.js +++ /dev/null @@ -1,339 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -var _3=$("
                                          "+"
                                          "+""+""+"
                                          "+"
                                          "+"
                                          "+"
                                          "+""+"
                                          ").insertAfter(_2); -var t=$(_2); -t.addClass("slider-f").hide(); -var _4=t.attr("name"); -if(_4){ -_3.find("input.slider-value").attr("name",_4); -t.removeAttr("name").attr("sliderName",_4); -} -_3.bind("_resize",function(e,_5){ -if($(this).hasClass("easyui-fluid")||_5){ -_6(_2); -} -return false; -}); -return _3; -}; -function _6(_7,_8){ -var _9=$.data(_7,"slider"); -var _a=_9.options; -var _b=_9.slider; -if(_8){ -if(_8.width){ -_a.width=_8.width; -} -if(_8.height){ -_a.height=_8.height; -} -} -_b._size(_a); -if(_a.mode=="h"){ -_b.css("height",""); -_b.children("div").css("height",""); -}else{ -_b.css("width",""); -_b.children("div").css("width",""); -_b.children("div.slider-rule,div.slider-rulelabel,div.slider-inner")._outerHeight(_b._outerHeight()); -} -_c(_7); -}; -function _d(_e){ -var _f=$.data(_e,"slider"); -var _10=_f.options; -var _11=_f.slider; -var aa=_10.mode=="h"?_10.rule:_10.rule.slice(0).reverse(); -if(_10.reversed){ -aa=aa.slice(0).reverse(); -} -_12(aa); -function _12(aa){ -var _13=_11.find("div.slider-rule"); -var _14=_11.find("div.slider-rulelabel"); -_13.empty(); -_14.empty(); -for(var i=0;i").appendTo(_13); -_16.css((_10.mode=="h"?"left":"top"),_15); -if(aa[i]!="|"){ -_16=$("").appendTo(_14); -_16.html(aa[i]); -if(_10.mode=="h"){ -_16.css({left:_15,marginLeft:-Math.round(_16.outerWidth()/2)}); -}else{ -_16.css({top:_15,marginTop:-Math.round(_16.outerHeight()/2)}); -} -} -} -}; -}; -function _17(_18){ -var _19=$.data(_18,"slider"); -var _1a=_19.options; -var _1b=_19.slider; -_1b.removeClass("slider-h slider-v slider-disabled"); -_1b.addClass(_1a.mode=="h"?"slider-h":"slider-v"); -_1b.addClass(_1a.disabled?"slider-disabled":""); -var _1c=_1b.find(".slider-inner"); -_1c.html(""+""); -if(_1a.range){ -_1c.append(""+""); -} -_1b.find("a.slider-handle").draggable({axis:_1a.mode,cursor:"pointer",disabled:_1a.disabled,onDrag:function(e){ -var _1d=e.data.left; -var _1e=_1b.width(); -if(_1a.mode!="h"){ -_1d=e.data.top; -_1e=_1b.height(); -} -if(_1d<0||_1d>_1e){ -return false; -}else{ -_1f(_1d,this); -return false; -} -},onStartDrag:function(){ -_19.isDragging=true; -_1a.onSlideStart.call(_18,_1a.value); -},onStopDrag:function(e){ -_1f(_1a.mode=="h"?e.data.left:e.data.top,this); -_1a.onSlideEnd.call(_18,_1a.value); -_1a.onComplete.call(_18,_1a.value); -_19.isDragging=false; -}}); -_1b.find("div.slider-inner").unbind(".slider").bind("mousedown.slider",function(e){ -if(_19.isDragging||_1a.disabled){ -return; -} -var pos=$(this).offset(); -_1f(_1a.mode=="h"?(e.pageX-pos.left):(e.pageY-pos.top)); -_1a.onComplete.call(_18,_1a.value); -}); -function _1f(pos,_20){ -var _21=_22(_18,pos); -var s=Math.abs(_21%_1a.step); -if(s<_1a.step/2){ -_21-=s; -}else{ -_21=_21-s+_1a.step; -} -if(_1a.range){ -var v1=_1a.value[0]; -var v2=_1a.value[1]; -var m=parseFloat((v1+v2)/2); -if(_20){ -var _23=$(_20).nextAll(".slider-handle").length>0; -if(_21<=v2&&_23){ -v1=_21; -}else{ -if(_21>=v1&&(!_23)){ -v2=_21; -} -} -}else{ -if(_21v2){ -v2=_21; -}else{ -_21_28.max){ -_2d=_28.max; -} -var _2e=$("").appendTo(_29); -_2e.attr("name",_2c); -_2e.val(_2d); -_2b.push(_2d); -var _2f=_29.find(".slider-handle:eq("+i+")"); -var tip=_2f.next(); -var pos=_30(_25,_2d); -if(_28.showTip){ -tip.show(); -tip.html(_28.tipFormatter.call(_25,_2d)); -}else{ -tip.hide(); -} -if(_28.mode=="h"){ -var _31="left:"+pos+"px;"; -_2f.attr("style",_31); -tip.attr("style",_31+"margin-left:"+(-Math.round(tip.outerWidth()/2))+"px"); -}else{ -var _31="top:"+pos+"px;"; -_2f.attr("style",_31); -tip.attr("style",_31+"margin-left:"+(-Math.round(tip.outerWidth()))+"px"); -} -} -_28.value=_28.range?_2b:_2b[0]; -$(_25).val(_28.range?_2b.join(_28.separator):_2b[0]); -if(_2a.join(",")!=_2b.join(",")){ -_28.onChange.call(_25,_28.value,(_28.range?_2a:_2a[0])); -} -}; -function _c(_32){ -var _33=$.data(_32,"slider").options; -var fn=_33.onChange; -_33.onChange=function(){ -}; -_24(_32,_33.value); -_33.onChange=fn; -}; -function _30(_34,_35){ -var _36=$.data(_34,"slider"); -var _37=_36.options; -var _38=_36.slider; -var _39=_37.mode=="h"?_38.width():_38.height(); -var pos=_37.converter.toPosition.call(_34,_35,_39); -if(_37.mode=="v"){ -pos=_38.height()-pos; -} -if(_37.reversed){ -pos=_39-pos; -} -return pos.toFixed(0); -}; -function _22(_3a,pos){ -var _3b=$.data(_3a,"slider"); -var _3c=_3b.options; -var _3d=_3b.slider; -var _3e=_3c.mode=="h"?_3d.width():_3d.height(); -var pos=_3c.mode=="h"?(_3c.reversed?(_3e-pos):pos):(_3c.reversed?pos:(_3e-pos)); -var _3f=_3c.converter.toValue.call(_3a,pos,_3e); -return _3f.toFixed(0); -}; -$.fn.slider=function(_40,_41){ -if(typeof _40=="string"){ -return $.fn.slider.methods[_40](this,_41); -} -_40=_40||{}; -return this.each(function(){ -var _42=$.data(this,"slider"); -if(_42){ -$.extend(_42.options,_40); -}else{ -_42=$.data(this,"slider",{options:$.extend({},$.fn.slider.defaults,$.fn.slider.parseOptions(this),_40),slider:_1(this)}); -$(this).removeAttr("disabled"); -} -var _43=_42.options; -_43.min=parseFloat(_43.min); -_43.max=parseFloat(_43.max); -if(_43.range){ -if(!$.isArray(_43.value)){ -_43.value=$.map(String(_43.value).split(_43.separator),function(v){ -return parseFloat(v); -}); -} -if(_43.value.length<2){ -_43.value.push(_43.max); -} -}else{ -_43.value=parseFloat(_43.value); -} -_43.step=parseFloat(_43.step); -_43.originalValue=_43.value; -_17(this); -_d(this); -_6(this); -}); -}; -$.fn.slider.methods={options:function(jq){ -return $.data(jq[0],"slider").options; -},destroy:function(jq){ -return jq.each(function(){ -$.data(this,"slider").slider.remove(); -$(this).remove(); -}); -},resize:function(jq,_44){ -return jq.each(function(){ -_6(this,_44); -}); -},getValue:function(jq){ -return jq.slider("options").value; -},getValues:function(jq){ -return jq.slider("options").value; -},setValue:function(jq,_45){ -return jq.each(function(){ -_24(this,[_45]); -}); -},setValues:function(jq,_46){ -return jq.each(function(){ -_24(this,_46); -}); -},clear:function(jq){ -return jq.each(function(){ -var _47=$(this).slider("options"); -_24(this,_47.range?[_47.min,_47.max]:[_47.min]); -}); -},reset:function(jq){ -return jq.each(function(){ -var _48=$(this).slider("options"); -$(this).slider(_48.range?"setValues":"setValue",_48.originalValue); -}); -},enable:function(jq){ -return jq.each(function(){ -$.data(this,"slider").options.disabled=false; -_17(this); -}); -},disable:function(jq){ -return jq.each(function(){ -$.data(this,"slider").options.disabled=true; -_17(this); -}); -}}; -$.fn.slider.parseOptions=function(_49){ -var t=$(_49); -return $.extend({},$.parser.parseOptions(_49,["width","height","mode",{reversed:"boolean",showTip:"boolean",range:"boolean",min:"number",max:"number",step:"number"}]),{value:(t.val()||undefined),disabled:(t.attr("disabled")?true:undefined),rule:(t.attr("rule")?eval(t.attr("rule")):undefined)}); -}; -$.fn.slider.defaults={width:"auto",height:"auto",mode:"h",reversed:false,showTip:false,disabled:false,range:false,value:0,separator:",",min:0,max:100,step:1,rule:[],tipFormatter:function(_4a){ -return _4a; -},converter:{toPosition:function(_4b,_4c){ -var _4d=$(this).slider("options"); -return (_4b-_4d.min)/(_4d.max-_4d.min)*_4c; -},toValue:function(pos,_4e){ -var _4f=$(this).slider("options"); -return _4f.min+(_4f.max-_4f.min)*(pos/_4e); -}},onChange:function(_50,_51){ -},onSlideStart:function(_52){ -},onSlideEnd:function(_53){ -},onComplete:function(_54){ -}}; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.spinner.js b/vendor/FHC-vendor/easyui/plugins/jquery.spinner.js deleted file mode 100644 index 1e3f9036f..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.spinner.js +++ /dev/null @@ -1,74 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -var _3=$.data(_2,"spinner"); -var _4=_3.options; -var _5=$.extend(true,[],_4.icons); -_5.push({iconCls:"spinner-arrow",handler:function(e){ -_6(e); -}}); -$(_2).addClass("spinner-f").textbox($.extend({},_4,{icons:_5})); -var _7=$(_2).textbox("getIcon",_5.length-1); -_7.append(""); -_7.append(""); -$(_2).attr("spinnerName",$(_2).attr("textboxName")); -_3.spinner=$(_2).next(); -_3.spinner.addClass("spinner"); -}; -function _6(e){ -var _8=e.data.target; -var _9=$(_8).spinner("options"); -var up=$(e.target).closest("a.spinner-arrow-up"); -if(up.length){ -_9.spin.call(_8,false); -_9.onSpinUp.call(_8); -$(_8).spinner("validate"); -} -var _a=$(e.target).closest("a.spinner-arrow-down"); -if(_a.length){ -_9.spin.call(_8,true); -_9.onSpinDown.call(_8); -$(_8).spinner("validate"); -} -}; -$.fn.spinner=function(_b,_c){ -if(typeof _b=="string"){ -var _d=$.fn.spinner.methods[_b]; -if(_d){ -return _d(this,_c); -}else{ -return this.textbox(_b,_c); -} -} -_b=_b||{}; -return this.each(function(){ -var _e=$.data(this,"spinner"); -if(_e){ -$.extend(_e.options,_b); -}else{ -_e=$.data(this,"spinner",{options:$.extend({},$.fn.spinner.defaults,$.fn.spinner.parseOptions(this),_b)}); -} -_1(this); -}); -}; -$.fn.spinner.methods={options:function(jq){ -var _f=jq.textbox("options"); -return $.extend($.data(jq[0],"spinner").options,{width:_f.width,value:_f.value,originalValue:_f.originalValue,disabled:_f.disabled,readonly:_f.readonly}); -}}; -$.fn.spinner.parseOptions=function(_10){ -return $.extend({},$.fn.textbox.parseOptions(_10),$.parser.parseOptions(_10,["min","max",{increment:"number"}])); -}; -$.fn.spinner.defaults=$.extend({},$.fn.textbox.defaults,{min:null,max:null,increment:1,spin:function(_11){ -},onSpinUp:function(){ -},onSpinDown:function(){ -}}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.splitbutton.js b/vendor/FHC-vendor/easyui/plugins/jquery.splitbutton.js deleted file mode 100644 index 0d60bb018..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.splitbutton.js +++ /dev/null @@ -1,49 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -var _3=$.data(_2,"splitbutton").options; -$(_2).menubutton(_3); -$(_2).addClass("s-btn"); -}; -$.fn.splitbutton=function(_4,_5){ -if(typeof _4=="string"){ -var _6=$.fn.splitbutton.methods[_4]; -if(_6){ -return _6(this,_5); -}else{ -return this.menubutton(_4,_5); -} -} -_4=_4||{}; -return this.each(function(){ -var _7=$.data(this,"splitbutton"); -if(_7){ -$.extend(_7.options,_4); -}else{ -$.data(this,"splitbutton",{options:$.extend({},$.fn.splitbutton.defaults,$.fn.splitbutton.parseOptions(this),_4)}); -$(this).removeAttr("disabled"); -} -_1(this); -}); -}; -$.fn.splitbutton.methods={options:function(jq){ -var _8=jq.menubutton("options"); -var _9=$.data(jq[0],"splitbutton").options; -$.extend(_9,{disabled:_8.disabled,toggle:_8.toggle,selected:_8.selected}); -return _9; -}}; -$.fn.splitbutton.parseOptions=function(_a){ -var t=$(_a); -return $.extend({},$.fn.linkbutton.parseOptions(_a),$.parser.parseOptions(_a,["menu",{plain:"boolean",duration:"number"}])); -}; -$.fn.splitbutton.defaults=$.extend({},$.fn.linkbutton.defaults,{plain:true,menu:null,duration:100,cls:{btn1:"m-btn-active s-btn-active",btn2:"m-btn-plain-active s-btn-plain-active",arrow:"m-btn-downarrow",trigger:"m-btn-line"}}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.switchbutton.js b/vendor/FHC-vendor/easyui/plugins/jquery.switchbutton.js deleted file mode 100644 index 3b7c90914..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.switchbutton.js +++ /dev/null @@ -1,193 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -var _3=$(""+""+""+""+""+""+""+"").insertAfter(_2); -var t=$(_2); -t.addClass("switchbutton-f").hide(); -var _4=t.attr("name"); -if(_4){ -t.removeAttr("name").attr("switchbuttonName",_4); -_3.find(".switchbutton-value").attr("name",_4); -} -_3.bind("_resize",function(e,_5){ -if($(this).hasClass("easyui-fluid")||_5){ -_6(_2); -} -return false; -}); -return _3; -}; -function _6(_7,_8){ -var _9=$.data(_7,"switchbutton"); -var _a=_9.options; -var _b=_9.switchbutton; -if(_8){ -$.extend(_a,_8); -} -var _c=_b.is(":visible"); -if(!_c){ -_b.appendTo("body"); -} -_b._size(_a); -var w=_b.width(); -var h=_b.height(); -var w=_b.outerWidth(); -var h=_b.outerHeight(); -var _d=parseInt(_a.handleWidth)||_b.height(); -var _e=w*2-_d; -_b.find(".switchbutton-inner").css({width:_e+"px",height:h+"px",lineHeight:h+"px"}); -_b.find(".switchbutton-handle")._outerWidth(_d)._outerHeight(h).css({marginLeft:-_d/2+"px"}); -_b.find(".switchbutton-on").css({width:(w-_d/2)+"px",textIndent:(_a.reversed?"":"-")+_d/2+"px"}); -_b.find(".switchbutton-off").css({width:(w-_d/2)+"px",textIndent:(_a.reversed?"-":"")+_d/2+"px"}); -_a.marginWidth=w-_d; -_f(_7,_a.checked,false); -if(!_c){ -_b.insertAfter(_7); -} -}; -function _10(_11){ -var _12=$.data(_11,"switchbutton"); -var _13=_12.options; -var _14=_12.switchbutton; -var _15=_14.find(".switchbutton-inner"); -var on=_15.find(".switchbutton-on").html(_13.onText); -var off=_15.find(".switchbutton-off").html(_13.offText); -var _16=_15.find(".switchbutton-handle").html(_13.handleText); -if(_13.reversed){ -off.prependTo(_15); -on.insertAfter(_16); -}else{ -on.prependTo(_15); -off.insertAfter(_16); -} -_14.find(".switchbutton-value")._propAttr("checked",_13.checked); -_14.removeClass("switchbutton-disabled").addClass(_13.disabled?"switchbutton-disabled":""); -_14.removeClass("switchbutton-reversed").addClass(_13.reversed?"switchbutton-reversed":""); -_f(_11,_13.checked); -_17(_11,_13.readonly); -$(_11).switchbutton("setValue",_13.value); -}; -function _f(_18,_19,_1a){ -var _1b=$.data(_18,"switchbutton"); -var _1c=_1b.options; -_1c.checked=_19; -var _1d=_1b.switchbutton.find(".switchbutton-inner"); -var _1e=_1d.find(".switchbutton-on"); -var _1f=_1c.reversed?(_1c.checked?_1c.marginWidth:0):(_1c.checked?0:_1c.marginWidth); -var dir=_1e.css("float").toLowerCase(); -var css={}; -css["margin-"+dir]=-_1f+"px"; -_1a?_1d.animate(css,200):_1d.css(css); -var _20=_1d.find(".switchbutton-value"); -var ck=_20.is(":checked"); -$(_18).add(_20)._propAttr("checked",_1c.checked); -if(ck!=_1c.checked){ -_1c.onChange.call(_18,_1c.checked); -} -}; -function _21(_22,_23){ -var _24=$.data(_22,"switchbutton"); -var _25=_24.options; -var _26=_24.switchbutton; -var _27=_26.find(".switchbutton-value"); -if(_23){ -_25.disabled=true; -$(_22).add(_27).attr("disabled","disabled"); -_26.addClass("switchbutton-disabled"); -}else{ -_25.disabled=false; -$(_22).add(_27).removeAttr("disabled"); -_26.removeClass("switchbutton-disabled"); -} -}; -function _17(_28,_29){ -var _2a=$.data(_28,"switchbutton"); -var _2b=_2a.options; -_2b.readonly=_29==undefined?true:_29; -_2a.switchbutton.removeClass("switchbutton-readonly").addClass(_2b.readonly?"switchbutton-readonly":""); -}; -function _2c(_2d){ -var _2e=$.data(_2d,"switchbutton"); -var _2f=_2e.options; -_2e.switchbutton.unbind(".switchbutton").bind("click.switchbutton",function(){ -if(!_2f.disabled&&!_2f.readonly){ -_f(_2d,_2f.checked?false:true,true); -} -}); -}; -$.fn.switchbutton=function(_30,_31){ -if(typeof _30=="string"){ -return $.fn.switchbutton.methods[_30](this,_31); -} -_30=_30||{}; -return this.each(function(){ -var _32=$.data(this,"switchbutton"); -if(_32){ -$.extend(_32.options,_30); -}else{ -_32=$.data(this,"switchbutton",{options:$.extend({},$.fn.switchbutton.defaults,$.fn.switchbutton.parseOptions(this),_30),switchbutton:_1(this)}); -} -_32.options.originalChecked=_32.options.checked; -_10(this); -_6(this); -_2c(this); -}); -}; -$.fn.switchbutton.methods={options:function(jq){ -var _33=jq.data("switchbutton"); -return $.extend(_33.options,{value:_33.switchbutton.find(".switchbutton-value").val()}); -},resize:function(jq,_34){ -return jq.each(function(){ -_6(this,_34); -}); -},enable:function(jq){ -return jq.each(function(){ -_21(this,false); -}); -},disable:function(jq){ -return jq.each(function(){ -_21(this,true); -}); -},readonly:function(jq,_35){ -return jq.each(function(){ -_17(this,_35); -}); -},check:function(jq){ -return jq.each(function(){ -_f(this,true); -}); -},uncheck:function(jq){ -return jq.each(function(){ -_f(this,false); -}); -},clear:function(jq){ -return jq.each(function(){ -_f(this,false); -}); -},reset:function(jq){ -return jq.each(function(){ -var _36=$(this).switchbutton("options"); -_f(this,_36.originalChecked); -}); -},setValue:function(jq,_37){ -return jq.each(function(){ -$(this).val(_37); -$.data(this,"switchbutton").switchbutton.find(".switchbutton-value").val(_37); -}); -}}; -$.fn.switchbutton.parseOptions=function(_38){ -var t=$(_38); -return $.extend({},$.parser.parseOptions(_38,["onText","offText","handleText",{handleWidth:"number",reversed:"boolean"}]),{value:(t.val()||undefined),checked:(t.attr("checked")?true:undefined),disabled:(t.attr("disabled")?true:undefined),readonly:(t.attr("readonly")?true:undefined)}); -}; -$.fn.switchbutton.defaults={handleWidth:"auto",width:60,height:26,checked:false,disabled:false,readonly:false,reversed:false,onText:"ON",offText:"OFF",handleText:"",value:"on",onChange:function(_39){ -}}; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.tabs.js b/vendor/FHC-vendor/easyui/plugins/jquery.tabs.js deleted file mode 100644 index 04f025d5d..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.tabs.js +++ /dev/null @@ -1,704 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(c){ -var w=0; -$(c).children().each(function(){ -w+=$(this).outerWidth(true); -}); -return w; -}; -function _2(_3){ -var _4=$.data(_3,"tabs").options; -if(_4.tabPosition=="left"||_4.tabPosition=="right"||!_4.showHeader){ -return; -} -var _5=$(_3).children("div.tabs-header"); -var _6=_5.children("div.tabs-tool:not(.tabs-tool-hidden)"); -var _7=_5.children("div.tabs-scroller-left"); -var _8=_5.children("div.tabs-scroller-right"); -var _9=_5.children("div.tabs-wrap"); -var _a=_5.outerHeight(); -if(_4.plain){ -_a-=_a-_5.height(); -} -_6._outerHeight(_a); -var _b=_1(_5.find("ul.tabs")); -var _c=_5.width()-_6._outerWidth(); -if(_b>_c){ -_7.add(_8).show()._outerHeight(_a); -if(_4.toolPosition=="left"){ -_6.css({left:_7.outerWidth(),right:""}); -_9.css({marginLeft:_7.outerWidth()+_6._outerWidth(),marginRight:_8._outerWidth(),width:_c-_7.outerWidth()-_8.outerWidth()}); -}else{ -_6.css({left:"",right:_8.outerWidth()}); -_9.css({marginLeft:_7.outerWidth(),marginRight:_8.outerWidth()+_6._outerWidth(),width:_c-_7.outerWidth()-_8.outerWidth()}); -} -}else{ -_7.add(_8).hide(); -if(_4.toolPosition=="left"){ -_6.css({left:0,right:""}); -_9.css({marginLeft:_6._outerWidth(),marginRight:0,width:_c}); -}else{ -_6.css({left:"",right:0}); -_9.css({marginLeft:0,marginRight:_6._outerWidth(),width:_c}); -} -} -}; -function _d(_e){ -var _f=$.data(_e,"tabs").options; -var _10=$(_e).children("div.tabs-header"); -if(_f.tools){ -if(typeof _f.tools=="string"){ -$(_f.tools).addClass("tabs-tool").appendTo(_10); -$(_f.tools).show(); -}else{ -_10.children("div.tabs-tool").remove(); -var _11=$("
                                          ").appendTo(_10); -var tr=_11.find("tr"); -for(var i=0;i<_f.tools.length;i++){ -var td=$("").appendTo(tr); -var _12=$("").appendTo(td); -_12[0].onclick=eval(_f.tools[i].handler||function(){ -}); -_12.linkbutton($.extend({},_f.tools[i],{plain:true})); -} -} -}else{ -_10.children("div.tabs-tool").remove(); -} -}; -function _13(_14,_15){ -var _16=$.data(_14,"tabs"); -var _17=_16.options; -var cc=$(_14); -if(!_17.doSize){ -return; -} -if(_15){ -$.extend(_17,{width:_15.width,height:_15.height}); -} -cc._size(_17); -var _18=cc.children("div.tabs-header"); -var _19=cc.children("div.tabs-panels"); -var _1a=_18.find("div.tabs-wrap"); -var ul=_1a.find(".tabs"); -ul.children("li").removeClass("tabs-first tabs-last"); -ul.children("li:first").addClass("tabs-first"); -ul.children("li:last").addClass("tabs-last"); -if(_17.tabPosition=="left"||_17.tabPosition=="right"){ -_18._outerWidth(_17.showHeader?_17.headerWidth:0); -_19._outerWidth(cc.width()-_18.outerWidth()); -_18.add(_19)._size("height",isNaN(parseInt(_17.height))?"":cc.height()); -_1a._outerWidth(_18.width()); -ul._outerWidth(_1a.width()).css("height",""); -}else{ -_18.children("div.tabs-scroller-left,div.tabs-scroller-right,div.tabs-tool:not(.tabs-tool-hidden)").css("display",_17.showHeader?"block":"none"); -_18._outerWidth(cc.width()).css("height",""); -if(_17.showHeader){ -_18.css("background-color",""); -_1a.css("height",""); -}else{ -_18.css("background-color","transparent"); -_18._outerHeight(0); -_1a._outerHeight(0); -} -ul._outerHeight(_17.tabHeight).css("width",""); -ul._outerHeight(ul.outerHeight()-ul.height()-1+_17.tabHeight).css("width",""); -_19._size("height",isNaN(parseInt(_17.height))?"":(cc.height()-_18.outerHeight())); -_19._size("width",cc.width()); -} -if(_16.tabs.length){ -var d1=ul.outerWidth(true)-ul.width(); -var li=ul.children("li:first"); -var d2=li.outerWidth(true)-li.width(); -var _1b=_18.width()-_18.children(".tabs-tool:not(.tabs-tool-hidden)")._outerWidth(); -var _1c=Math.floor((_1b-d1-d2*_16.tabs.length)/_16.tabs.length); -$.map(_16.tabs,function(p){ -_1d(p,(_17.justified&&$.inArray(_17.tabPosition,["top","bottom"])>=0)?_1c:undefined); -}); -if(_17.justified&&$.inArray(_17.tabPosition,["top","bottom"])>=0){ -var _1e=_1b-d1-_1(ul); -_1d(_16.tabs[_16.tabs.length-1],_1c+_1e); -} -} -_2(_14); -function _1d(p,_1f){ -var _20=p.panel("options"); -var p_t=_20.tab.find("a.tabs-inner"); -var _1f=_1f?_1f:(parseInt(_20.tabWidth||_17.tabWidth||undefined)); -if(_1f){ -p_t._outerWidth(_1f); -}else{ -p_t.css("width",""); -} -p_t._outerHeight(_17.tabHeight); -p_t.css("lineHeight",p_t.height()+"px"); -p_t.find(".easyui-fluid:visible").triggerHandler("_resize"); -}; -}; -function _21(_22){ -var _23=$.data(_22,"tabs").options; -var tab=_24(_22); -if(tab){ -var _25=$(_22).children("div.tabs-panels"); -var _26=_23.width=="auto"?"auto":_25.width(); -var _27=_23.height=="auto"?"auto":_25.height(); -tab.panel("resize",{width:_26,height:_27}); -} -}; -function _28(_29){ -var _2a=$.data(_29,"tabs").tabs; -var cc=$(_29).addClass("tabs-container"); -var _2b=$("
                                          ").insertBefore(cc); -cc.children("div").each(function(){ -_2b[0].appendChild(this); -}); -cc[0].appendChild(_2b[0]); -$("
                                          "+"
                                          "+"
                                          "+"
                                          "+"
                                            "+"
                                            "+"
                                            ").prependTo(_29); -cc.children("div.tabs-panels").children("div").each(function(i){ -var _2c=$.extend({},$.parser.parseOptions(this),{disabled:($(this).attr("disabled")?true:undefined),selected:($(this).attr("selected")?true:undefined)}); -_3c(_29,_2c,$(this)); -}); -cc.children("div.tabs-header").find(".tabs-scroller-left, .tabs-scroller-right").hover(function(){ -$(this).addClass("tabs-scroller-over"); -},function(){ -$(this).removeClass("tabs-scroller-over"); -}); -cc.bind("_resize",function(e,_2d){ -if($(this).hasClass("easyui-fluid")||_2d){ -_13(_29); -_21(_29); -} -return false; -}); -}; -function _2e(_2f){ -var _30=$.data(_2f,"tabs"); -var _31=_30.options; -$(_2f).children("div.tabs-header").unbind().bind("click",function(e){ -if($(e.target).hasClass("tabs-scroller-left")){ -$(_2f).tabs("scrollBy",-_31.scrollIncrement); -}else{ -if($(e.target).hasClass("tabs-scroller-right")){ -$(_2f).tabs("scrollBy",_31.scrollIncrement); -}else{ -var li=$(e.target).closest("li"); -if(li.hasClass("tabs-disabled")){ -return false; -} -var a=$(e.target).closest("a.tabs-close"); -if(a.length){ -_5a(_2f,_32(li)); -}else{ -if(li.length){ -var _33=_32(li); -var _34=_30.tabs[_33].panel("options"); -if(_34.collapsible){ -_34.closed?_50(_2f,_33):_75(_2f,_33); -}else{ -_50(_2f,_33); -} -} -} -return false; -} -} -}).bind("contextmenu",function(e){ -var li=$(e.target).closest("li"); -if(li.hasClass("tabs-disabled")){ -return; -} -if(li.length){ -_31.onContextMenu.call(_2f,e,li.find("span.tabs-title").html(),_32(li)); -} -}); -function _32(li){ -var _35=0; -li.parent().children("li").each(function(i){ -if(li[0]==this){ -_35=i; -return false; -} -}); -return _35; -}; -}; -function _36(_37){ -var _38=$.data(_37,"tabs").options; -var _39=$(_37).children("div.tabs-header"); -var _3a=$(_37).children("div.tabs-panels"); -_39.removeClass("tabs-header-top tabs-header-bottom tabs-header-left tabs-header-right"); -_3a.removeClass("tabs-panels-top tabs-panels-bottom tabs-panels-left tabs-panels-right"); -if(_38.tabPosition=="top"){ -_39.insertBefore(_3a); -}else{ -if(_38.tabPosition=="bottom"){ -_39.insertAfter(_3a); -_39.addClass("tabs-header-bottom"); -_3a.addClass("tabs-panels-top"); -}else{ -if(_38.tabPosition=="left"){ -_39.addClass("tabs-header-left"); -_3a.addClass("tabs-panels-right"); -}else{ -if(_38.tabPosition=="right"){ -_39.addClass("tabs-header-right"); -_3a.addClass("tabs-panels-left"); -} -} -} -} -if(_38.plain==true){ -_39.addClass("tabs-header-plain"); -}else{ -_39.removeClass("tabs-header-plain"); -} -_39.removeClass("tabs-header-narrow").addClass(_38.narrow?"tabs-header-narrow":""); -var _3b=_39.find(".tabs"); -_3b.removeClass("tabs-pill").addClass(_38.pill?"tabs-pill":""); -_3b.removeClass("tabs-narrow").addClass(_38.narrow?"tabs-narrow":""); -_3b.removeClass("tabs-justified").addClass(_38.justified?"tabs-justified":""); -if(_38.border==true){ -_39.removeClass("tabs-header-noborder"); -_3a.removeClass("tabs-panels-noborder"); -}else{ -_39.addClass("tabs-header-noborder"); -_3a.addClass("tabs-panels-noborder"); -} -_38.doSize=true; -}; -function _3c(_3d,_3e,pp){ -_3e=_3e||{}; -var _3f=$.data(_3d,"tabs"); -var _40=_3f.tabs; -if(_3e.index==undefined||_3e.index>_40.length){ -_3e.index=_40.length; -} -if(_3e.index<0){ -_3e.index=0; -} -var ul=$(_3d).children("div.tabs-header").find("ul.tabs"); -var _41=$(_3d).children("div.tabs-panels"); -var tab=$("
                                          • "+""+""+""+""+"
                                          • "); -if(!pp){ -pp=$("
                                            "); -} -if(_3e.index>=_40.length){ -tab.appendTo(ul); -pp.appendTo(_41); -_40.push(pp); -}else{ -tab.insertBefore(ul.children("li:eq("+_3e.index+")")); -pp.insertBefore(_41.children("div.panel:eq("+_3e.index+")")); -_40.splice(_3e.index,0,pp); -} -pp.panel($.extend({},_3e,{tab:tab,border:false,noheader:true,closed:true,doSize:false,iconCls:(_3e.icon?_3e.icon:undefined),onLoad:function(){ -if(_3e.onLoad){ -_3e.onLoad.call(this,arguments); -} -_3f.options.onLoad.call(_3d,$(this)); -},onBeforeOpen:function(){ -if(_3e.onBeforeOpen){ -if(_3e.onBeforeOpen.call(this)==false){ -return false; -} -} -var p=$(_3d).tabs("getSelected"); -if(p){ -if(p[0]!=this){ -$(_3d).tabs("unselect",_4a(_3d,p)); -p=$(_3d).tabs("getSelected"); -if(p){ -return false; -} -}else{ -_21(_3d); -return false; -} -} -var _42=$(this).panel("options"); -_42.tab.addClass("tabs-selected"); -var _43=$(_3d).find(">div.tabs-header>div.tabs-wrap"); -var _44=_42.tab.position().left; -var _45=_44+_42.tab.outerWidth(); -if(_44<0||_45>_43.width()){ -var _46=_44-(_43.width()-_42.tab.width())/2; -$(_3d).tabs("scrollBy",_46); -}else{ -$(_3d).tabs("scrollBy",0); -} -var _47=$(this).panel("panel"); -_47.css("display","block"); -_21(_3d); -_47.css("display","none"); -},onOpen:function(){ -if(_3e.onOpen){ -_3e.onOpen.call(this); -} -var _48=$(this).panel("options"); -_3f.selectHis.push(_48.title); -_3f.options.onSelect.call(_3d,_48.title,_4a(_3d,this)); -},onBeforeClose:function(){ -if(_3e.onBeforeClose){ -if(_3e.onBeforeClose.call(this)==false){ -return false; -} -} -$(this).panel("options").tab.removeClass("tabs-selected"); -},onClose:function(){ -if(_3e.onClose){ -_3e.onClose.call(this); -} -var _49=$(this).panel("options"); -_3f.options.onUnselect.call(_3d,_49.title,_4a(_3d,this)); -}})); -$(_3d).tabs("update",{tab:pp,options:pp.panel("options"),type:"header"}); -}; -function _4b(_4c,_4d){ -var _4e=$.data(_4c,"tabs"); -var _4f=_4e.options; -if(_4d.selected==undefined){ -_4d.selected=true; -} -_3c(_4c,_4d); -_4f.onAdd.call(_4c,_4d.title,_4d.index); -if(_4d.selected){ -_50(_4c,_4d.index); -} -}; -function _51(_52,_53){ -_53.type=_53.type||"all"; -var _54=$.data(_52,"tabs").selectHis; -var pp=_53.tab; -var _55=pp.panel("options"); -var _56=_55.title; -$.extend(_55,_53.options,{iconCls:(_53.options.icon?_53.options.icon:undefined)}); -if(_53.type=="all"||_53.type=="body"){ -pp.panel(); -} -if(_53.type=="all"||_53.type=="header"){ -var tab=_55.tab; -if(_55.header){ -tab.find(".tabs-inner").html($(_55.header)); -}else{ -var _57=tab.find("span.tabs-title"); -var _58=tab.find("span.tabs-icon"); -_57.html(_55.title); -_58.attr("class","tabs-icon"); -tab.find("a.tabs-close").remove(); -if(_55.closable){ -_57.addClass("tabs-closable"); -$("").appendTo(tab); -}else{ -_57.removeClass("tabs-closable"); -} -if(_55.iconCls){ -_57.addClass("tabs-with-icon"); -_58.addClass(_55.iconCls); -}else{ -_57.removeClass("tabs-with-icon"); -} -if(_55.tools){ -var _59=tab.find("span.tabs-p-tool"); -if(!_59.length){ -var _59=$("").insertAfter(tab.find("a.tabs-inner")); -} -if($.isArray(_55.tools)){ -_59.empty(); -for(var i=0;i<_55.tools.length;i++){ -var t=$("").appendTo(_59); -t.addClass(_55.tools[i].iconCls); -if(_55.tools[i].handler){ -t.bind("click",{handler:_55.tools[i].handler},function(e){ -if($(this).parents("li").hasClass("tabs-disabled")){ -return; -} -e.data.handler.call(this); -}); -} -} -}else{ -$(_55.tools).children().appendTo(_59); -} -var pr=_59.children().length*12; -if(_55.closable){ -pr+=8; -}else{ -pr-=3; -_59.css("right","5px"); -} -_57.css("padding-right",pr+"px"); -}else{ -tab.find("span.tabs-p-tool").remove(); -_57.css("padding-right",""); -} -} -if(_56!=_55.title){ -for(var i=0;i<_54.length;i++){ -if(_54[i]==_56){ -_54[i]=_55.title; -} -} -} -} -if(_55.disabled){ -_55.tab.addClass("tabs-disabled"); -}else{ -_55.tab.removeClass("tabs-disabled"); -} -_13(_52); -$.data(_52,"tabs").options.onUpdate.call(_52,_55.title,_4a(_52,pp)); -}; -function _5a(_5b,_5c){ -var _5d=$.data(_5b,"tabs").options; -var _5e=$.data(_5b,"tabs").tabs; -var _5f=$.data(_5b,"tabs").selectHis; -if(!_60(_5b,_5c)){ -return; -} -var tab=_61(_5b,_5c); -var _62=tab.panel("options").title; -var _63=_4a(_5b,tab); -if(_5d.onBeforeClose.call(_5b,_62,_63)==false){ -return; -} -var tab=_61(_5b,_5c,true); -tab.panel("options").tab.remove(); -tab.panel("destroy"); -_5d.onClose.call(_5b,_62,_63); -_13(_5b); -for(var i=0;i<_5f.length;i++){ -if(_5f[i]==_62){ -_5f.splice(i,1); -i--; -} -} -var _64=_5f.pop(); -if(_64){ -_50(_5b,_64); -}else{ -if(_5e.length){ -_50(_5b,0); -} -} -}; -function _61(_65,_66,_67){ -var _68=$.data(_65,"tabs").tabs; -if(typeof _66=="number"){ -if(_66<0||_66>=_68.length){ -return null; -}else{ -var tab=_68[_66]; -if(_67){ -_68.splice(_66,1); -} -return tab; -} -} -for(var i=0;i<_68.length;i++){ -var tab=_68[i]; -if(tab.panel("options").title==_66){ -if(_67){ -_68.splice(i,1); -} -return tab; -} -} -return null; -}; -function _4a(_69,tab){ -var _6a=$.data(_69,"tabs").tabs; -for(var i=0;i<_6a.length;i++){ -if(_6a[i][0]==$(tab)[0]){ -return i; -} -} -return -1; -}; -function _24(_6b){ -var _6c=$.data(_6b,"tabs").tabs; -for(var i=0;i<_6c.length;i++){ -var tab=_6c[i]; -if(tab.panel("options").tab.hasClass("tabs-selected")){ -return tab; -} -} -return null; -}; -function _6d(_6e){ -var _6f=$.data(_6e,"tabs"); -var _70=_6f.tabs; -for(var i=0;i<_70.length;i++){ -var _71=_70[i].panel("options"); -if(_71.selected&&!_71.disabled){ -_50(_6e,i); -return; -} -} -_50(_6e,_6f.options.selected); -}; -function _50(_72,_73){ -var p=_61(_72,_73); -if(p&&!p.is(":visible")){ -_74(_72); -if(!p.panel("options").disabled){ -p.panel("open"); -} -} -}; -function _75(_76,_77){ -var p=_61(_76,_77); -if(p&&p.is(":visible")){ -_74(_76); -p.panel("close"); -} -}; -function _74(_78){ -$(_78).children("div.tabs-panels").each(function(){ -$(this).stop(true,true); -}); -}; -function _60(_79,_7a){ -return _61(_79,_7a)!=null; -}; -function _7b(_7c,_7d){ -var _7e=$.data(_7c,"tabs").options; -_7e.showHeader=_7d; -$(_7c).tabs("resize"); -}; -function _7f(_80,_81){ -var _82=$(_80).find(">.tabs-header>.tabs-tool"); -if(_81){ -_82.removeClass("tabs-tool-hidden").show(); -}else{ -_82.addClass("tabs-tool-hidden").hide(); -} -$(_80).tabs("resize").tabs("scrollBy",0); -}; -$.fn.tabs=function(_83,_84){ -if(typeof _83=="string"){ -return $.fn.tabs.methods[_83](this,_84); -} -_83=_83||{}; -return this.each(function(){ -var _85=$.data(this,"tabs"); -if(_85){ -$.extend(_85.options,_83); -}else{ -$.data(this,"tabs",{options:$.extend({},$.fn.tabs.defaults,$.fn.tabs.parseOptions(this),_83),tabs:[],selectHis:[]}); -_28(this); -} -_d(this); -_36(this); -_13(this); -_2e(this); -_6d(this); -}); -}; -$.fn.tabs.methods={options:function(jq){ -var cc=jq[0]; -var _86=$.data(cc,"tabs").options; -var s=_24(cc); -_86.selected=s?_4a(cc,s):-1; -return _86; -},tabs:function(jq){ -return $.data(jq[0],"tabs").tabs; -},resize:function(jq,_87){ -return jq.each(function(){ -_13(this,_87); -_21(this); -}); -},add:function(jq,_88){ -return jq.each(function(){ -_4b(this,_88); -}); -},close:function(jq,_89){ -return jq.each(function(){ -_5a(this,_89); -}); -},getTab:function(jq,_8a){ -return _61(jq[0],_8a); -},getTabIndex:function(jq,tab){ -return _4a(jq[0],tab); -},getSelected:function(jq){ -return _24(jq[0]); -},select:function(jq,_8b){ -return jq.each(function(){ -_50(this,_8b); -}); -},unselect:function(jq,_8c){ -return jq.each(function(){ -_75(this,_8c); -}); -},exists:function(jq,_8d){ -return _60(jq[0],_8d); -},update:function(jq,_8e){ -return jq.each(function(){ -_51(this,_8e); -}); -},enableTab:function(jq,_8f){ -return jq.each(function(){ -var _90=$(this).tabs("getTab",_8f).panel("options"); -_90.tab.removeClass("tabs-disabled"); -_90.disabled=false; -}); -},disableTab:function(jq,_91){ -return jq.each(function(){ -var _92=$(this).tabs("getTab",_91).panel("options"); -_92.tab.addClass("tabs-disabled"); -_92.disabled=true; -}); -},showHeader:function(jq){ -return jq.each(function(){ -_7b(this,true); -}); -},hideHeader:function(jq){ -return jq.each(function(){ -_7b(this,false); -}); -},showTool:function(jq){ -return jq.each(function(){ -_7f(this,true); -}); -},hideTool:function(jq){ -return jq.each(function(){ -_7f(this,false); -}); -},scrollBy:function(jq,_93){ -return jq.each(function(){ -var _94=$(this).tabs("options"); -var _95=$(this).find(">div.tabs-header>div.tabs-wrap"); -var pos=Math.min(_95._scrollLeft()+_93,_96()); -_95.animate({scrollLeft:pos},_94.scrollDuration); -function _96(){ -var w=0; -var ul=_95.children("ul"); -ul.children("li").each(function(){ -w+=$(this).outerWidth(true); -}); -return w-_95.width()+(ul.outerWidth()-ul.width()); -}; -}); -}}; -$.fn.tabs.parseOptions=function(_97){ -return $.extend({},$.parser.parseOptions(_97,["tools","toolPosition","tabPosition",{fit:"boolean",border:"boolean",plain:"boolean"},{headerWidth:"number",tabWidth:"number",tabHeight:"number",selected:"number"},{showHeader:"boolean",justified:"boolean",narrow:"boolean",pill:"boolean"}])); -}; -$.fn.tabs.defaults={width:"auto",height:"auto",headerWidth:150,tabWidth:"auto",tabHeight:27,selected:0,showHeader:true,plain:false,fit:false,border:true,justified:false,narrow:false,pill:false,tools:null,toolPosition:"right",tabPosition:"top",scrollIncrement:100,scrollDuration:400,onLoad:function(_98){ -},onSelect:function(_99,_9a){ -},onUnselect:function(_9b,_9c){ -},onBeforeClose:function(_9d,_9e){ -},onClose:function(_9f,_a0){ -},onAdd:function(_a1,_a2){ -},onUpdate:function(_a3,_a4){ -},onContextMenu:function(e,_a5,_a6){ -}}; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.textbox.js b/vendor/FHC-vendor/easyui/plugins/jquery.textbox.js deleted file mode 100644 index c1879e0b1..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.textbox.js +++ /dev/null @@ -1,396 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -$(_2).addClass("textbox-f").hide(); -var _3=$(""+""+""+"").insertAfter(_2); -var _4=$(_2).attr("name"); -if(_4){ -_3.find("input.textbox-value").attr("name",_4); -$(_2).removeAttr("name").attr("textboxName",_4); -} -return _3; -}; -function _5(_6){ -var _7=$.data(_6,"textbox"); -var _8=_7.options; -var tb=_7.textbox; -tb.find(".textbox-text").remove(); -if(_8.multiline){ -$("").prependTo(tb); -}else{ -$("").prependTo(tb); -} -tb.find(".textbox-addon").remove(); -var bb=_8.icons?$.extend(true,[],_8.icons):[]; -if(_8.iconCls){ -bb.push({iconCls:_8.iconCls,disabled:true}); -} -if(bb.length){ -var bc=$("").prependTo(tb); -bc.addClass("textbox-addon-"+_8.iconAlign); -for(var i=0;i"); -} -} -tb.find(".textbox-button").remove(); -if(_8.buttonText||_8.buttonIcon){ -var _9=$("").prependTo(tb); -_9.addClass("textbox-button-"+_8.buttonAlign).linkbutton({text:_8.buttonText,iconCls:_8.buttonIcon}); -} -_a(_6,_8.disabled); -_b(_6,_8.readonly); -}; -function _c(_d){ -var tb=$.data(_d,"textbox").textbox; -tb.find(".textbox-text").validatebox("destroy"); -tb.remove(); -$(_d).remove(); -}; -function _e(_f,_10){ -var _11=$.data(_f,"textbox"); -var _12=_11.options; -var tb=_11.textbox; -var _13=tb.parent(); -if(_10){ -_12.width=_10; -} -if(isNaN(parseInt(_12.width))){ -var c=$(_f).clone(); -c.css("visibility","hidden"); -c.insertAfter(_f); -_12.width=c.outerWidth(); -c.remove(); -} -var _14=tb.is(":visible"); -if(!_14){ -tb.appendTo("body"); -} -var _15=tb.find(".textbox-text"); -var btn=tb.find(".textbox-button"); -var _16=tb.find(".textbox-addon"); -var _17=_16.find(".textbox-icon"); -tb._size(_12,_13); -btn.linkbutton("resize",{height:tb.height()}); -btn.css({left:(_12.buttonAlign=="left"?0:""),right:(_12.buttonAlign=="right"?0:"")}); -_16.css({left:(_12.iconAlign=="left"?(_12.buttonAlign=="left"?btn._outerWidth():0):""),right:(_12.iconAlign=="right"?(_12.buttonAlign=="right"?btn._outerWidth():0):"")}); -_17.css({width:_12.iconWidth+"px",height:tb.height()+"px"}); -_15.css({paddingLeft:(_f.style.paddingLeft||""),paddingRight:(_f.style.paddingRight||""),marginLeft:_18("left"),marginRight:_18("right")}); -if(_12.multiline){ -_15.css({paddingTop:(_f.style.paddingTop||""),paddingBottom:(_f.style.paddingBottom||"")}); -_15._outerHeight(tb.height()); -}else{ -var _19=Math.floor((tb.height()-_15.height())/2); -_15.css({paddingTop:_19+"px",paddingBottom:_19+"px"}); -} -_15._outerWidth(tb.width()-_17.length*_12.iconWidth-btn._outerWidth()); -if(!_14){ -tb.insertAfter(_f); -} -_12.onResize.call(_f,_12.width,_12.height); -function _18(_1a){ -return (_12.iconAlign==_1a?_16._outerWidth():0)+(_12.buttonAlign==_1a?btn._outerWidth():0); -}; -}; -function _1b(_1c){ -var _1d=$(_1c).textbox("options"); -var _1e=$(_1c).textbox("textbox"); -_1e.validatebox($.extend({},_1d,{deltaX:$(_1c).textbox("getTipX"),onBeforeValidate:function(){ -var box=$(this); -if(!box.is(":focus")){ -_1d.oldInputValue=box.val(); -box.val(_1d.value); -} -},onValidate:function(_1f){ -var box=$(this); -if(_1d.oldInputValue!=undefined){ -box.val(_1d.oldInputValue); -_1d.oldInputValue=undefined; -} -var tb=box.parent(); -if(_1f){ -tb.removeClass("textbox-invalid"); -}else{ -tb.addClass("textbox-invalid"); -} -}})); -}; -function _20(_21){ -var _22=$.data(_21,"textbox"); -var _23=_22.options; -var tb=_22.textbox; -var _24=tb.find(".textbox-text"); -_24.attr("placeholder",_23.prompt); -_24.unbind(".textbox"); -if(!_23.disabled&&!_23.readonly){ -_24.bind("blur.textbox",function(e){ -if(!tb.hasClass("textbox-focused")){ -return; -} -_23.value=$(this).val(); -if(_23.value==""){ -$(this).val(_23.prompt).addClass("textbox-prompt"); -}else{ -$(this).removeClass("textbox-prompt"); -} -tb.removeClass("textbox-focused"); -}).bind("focus.textbox",function(e){ -if(tb.hasClass("textbox-focused")){ -return; -} -if($(this).val()!=_23.value){ -$(this).val(_23.value); -} -$(this).removeClass("textbox-prompt"); -tb.addClass("textbox-focused"); -}); -for(var _25 in _23.inputEvents){ -_24.bind(_25+".textbox",{target:_21},_23.inputEvents[_25]); -} -} -var _26=tb.find(".textbox-addon"); -_26.unbind().bind("click",{target:_21},function(e){ -var _27=$(e.target).closest("a.textbox-icon:not(.textbox-icon-disabled)"); -if(_27.length){ -var _28=parseInt(_27.attr("icon-index")); -var _29=_23.icons[_28]; -if(_29&&_29.handler){ -_29.handler.call(_27[0],e); -_23.onClickIcon.call(_21,_28); -} -} -}); -_26.find(".textbox-icon").each(function(_2a){ -var _2b=_23.icons[_2a]; -var _2c=$(this); -if(!_2b||_2b.disabled||_23.disabled||_23.readonly){ -_2c.addClass("textbox-icon-disabled"); -}else{ -_2c.removeClass("textbox-icon-disabled"); -} -}); -var btn=tb.find(".textbox-button"); -btn.unbind(".textbox").bind("click.textbox",function(){ -if(!btn.linkbutton("options").disabled){ -_23.onClickButton.call(_21); -} -}); -btn.linkbutton((_23.disabled||_23.readonly)?"disable":"enable"); -tb.unbind(".textbox").bind("_resize.textbox",function(e,_2d){ -if($(this).hasClass("easyui-fluid")||_2d){ -_e(_21); -} -return false; -}); -}; -function _a(_2e,_2f){ -var _30=$.data(_2e,"textbox"); -var _31=_30.options; -var tb=_30.textbox; -if(_2f){ -_31.disabled=true; -$(_2e).attr("disabled","disabled"); -tb.addClass("textbox-disabled"); -tb.find(".textbox-text,.textbox-value").attr("disabled","disabled"); -}else{ -_31.disabled=false; -tb.removeClass("textbox-disabled"); -$(_2e).removeAttr("disabled"); -tb.find(".textbox-text,.textbox-value").removeAttr("disabled"); -} -}; -function _b(_32,_33){ -var _34=$.data(_32,"textbox"); -var _35=_34.options; -_35.readonly=_33==undefined?true:_33; -_34.textbox.removeClass("textbox-readonly").addClass(_35.readonly?"textbox-readonly":""); -var _36=_34.textbox.find(".textbox-text"); -_36.removeAttr("readonly"); -if(_35.readonly||!_35.editable){ -_36.attr("readonly","readonly"); -} -}; -$.fn.textbox=function(_37,_38){ -if(typeof _37=="string"){ -var _39=$.fn.textbox.methods[_37]; -if(_39){ -return _39(this,_38); -}else{ -return this.each(function(){ -var _3a=$(this).textbox("textbox"); -_3a.validatebox(_37,_38); -}); -} -} -_37=_37||{}; -return this.each(function(){ -var _3b=$.data(this,"textbox"); -if(_3b){ -$.extend(_3b.options,_37); -if(_37.value!=undefined){ -_3b.options.originalValue=_37.value; -} -}else{ -_3b=$.data(this,"textbox",{options:$.extend({},$.fn.textbox.defaults,$.fn.textbox.parseOptions(this),_37),textbox:_1(this)}); -_3b.options.originalValue=_3b.options.value; -} -_5(this); -_20(this); -_e(this); -_1b(this); -$(this).textbox("initValue",_3b.options.value); -}); -}; -$.fn.textbox.methods={options:function(jq){ -return $.data(jq[0],"textbox").options; -},cloneFrom:function(jq,_3c){ -return jq.each(function(){ -var t=$(this); -if(t.data("textbox")){ -return; -} -if(!$(_3c).data("textbox")){ -$(_3c).textbox(); -} -var _3d=t.attr("name")||""; -t.addClass("textbox-f").hide(); -t.removeAttr("name").attr("textboxName",_3d); -var _3e=$(_3c).next().clone().insertAfter(t); -_3e.find("input.textbox-value").attr("name",_3d); -$.data(this,"textbox",{options:$.extend(true,{},$(_3c).textbox("options")),textbox:_3e}); -var _3f=$(_3c).textbox("button"); -if(_3f.length){ -t.textbox("button").linkbutton($.extend(true,{},_3f.linkbutton("options"))); -} -_20(this); -_1b(this); -}); -},textbox:function(jq){ -return $.data(jq[0],"textbox").textbox.find(".textbox-text"); -},button:function(jq){ -return $.data(jq[0],"textbox").textbox.find(".textbox-button"); -},destroy:function(jq){ -return jq.each(function(){ -_c(this); -}); -},resize:function(jq,_40){ -return jq.each(function(){ -_e(this,_40); -}); -},disable:function(jq){ -return jq.each(function(){ -_a(this,true); -_20(this); -}); -},enable:function(jq){ -return jq.each(function(){ -_a(this,false); -_20(this); -}); -},readonly:function(jq,_41){ -return jq.each(function(){ -_b(this,_41); -_20(this); -}); -},isValid:function(jq){ -return jq.textbox("textbox").validatebox("isValid"); -},clear:function(jq){ -return jq.each(function(){ -$(this).textbox("setValue",""); -}); -},setText:function(jq,_42){ -return jq.each(function(){ -var _43=$(this).textbox("options"); -var _44=$(this).textbox("textbox"); -_42=_42==undefined?"":String(_42); -if($(this).textbox("getText")!=_42){ -_44.val(_42); -} -_43.value=_42; -if(!_44.is(":focus")){ -if(_42){ -_44.removeClass("textbox-prompt"); -}else{ -_44.val(_43.prompt).addClass("textbox-prompt"); -} -} -$(this).textbox("validate"); -}); -},initValue:function(jq,_45){ -return jq.each(function(){ -var _46=$.data(this,"textbox"); -_46.options.value=""; -$(this).textbox("setText",_45); -_46.textbox.find(".textbox-value").val(_45); -$(this).val(_45); -}); -},setValue:function(jq,_47){ -return jq.each(function(){ -var _48=$.data(this,"textbox").options; -var _49=$(this).textbox("getValue"); -$(this).textbox("initValue",_47); -if(_49!=_47){ -_48.onChange.call(this,_47,_49); -$(this).closest("form").trigger("_change",[this]); -} -}); -},getText:function(jq){ -var _4a=jq.textbox("textbox"); -if(_4a.is(":focus")){ -return _4a.val(); -}else{ -return jq.textbox("options").value; -} -},getValue:function(jq){ -return jq.data("textbox").textbox.find(".textbox-value").val(); -},reset:function(jq){ -return jq.each(function(){ -var _4b=$(this).textbox("options"); -$(this).textbox("setValue",_4b.originalValue); -}); -},getIcon:function(jq,_4c){ -return jq.data("textbox").textbox.find(".textbox-icon:eq("+_4c+")"); -},getTipX:function(jq){ -var _4d=jq.data("textbox"); -var _4e=_4d.options; -var tb=_4d.textbox; -var _4f=tb.find(".textbox-text"); -var _50=tb.find(".textbox-addon")._outerWidth(); -var _51=tb.find(".textbox-button")._outerWidth(); -if(_4e.tipPosition=="right"){ -return (_4e.iconAlign=="right"?_50:0)+(_4e.buttonAlign=="right"?_51:0)+1; -}else{ -if(_4e.tipPosition=="left"){ -return (_4e.iconAlign=="left"?-_50:0)+(_4e.buttonAlign=="left"?-_51:0)-1; -}else{ -return _50/2*(_4e.iconAlign=="right"?1:-1); -} -} -}}; -$.fn.textbox.parseOptions=function(_52){ -var t=$(_52); -return $.extend({},$.fn.validatebox.parseOptions(_52),$.parser.parseOptions(_52,["prompt","iconCls","iconAlign","buttonText","buttonIcon","buttonAlign",{multiline:"boolean",editable:"boolean",iconWidth:"number"}]),{value:(t.val()||undefined),type:(t.attr("type")?t.attr("type"):undefined),disabled:(t.attr("disabled")?true:undefined),readonly:(t.attr("readonly")?true:undefined)}); -}; -$.fn.textbox.defaults=$.extend({},$.fn.validatebox.defaults,{width:"auto",height:22,prompt:"",value:"",type:"text",multiline:false,editable:true,disabled:false,readonly:false,icons:[],iconCls:null,iconAlign:"right",iconWidth:18,buttonText:"",buttonIcon:null,buttonAlign:"right",inputEvents:{blur:function(e){ -var t=$(e.data.target); -var _53=t.textbox("options"); -t.textbox("setValue",_53.value); -},keydown:function(e){ -if(e.keyCode==13){ -var t=$(e.data.target); -t.textbox("setValue",t.textbox("getText")); -} -}},onChange:function(_54,_55){ -},onResize:function(_56,_57){ -},onClickButton:function(){ -},onClickIcon:function(_58){ -}}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.timespinner.js b/vendor/FHC-vendor/easyui/plugins/jquery.timespinner.js deleted file mode 100644 index 1a7bb26f4..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.timespinner.js +++ /dev/null @@ -1,176 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -var _3=0; -if(typeof _2.selectionStart=="number"){ -_3=_2.selectionStart; -}else{ -if(_2.createTextRange){ -var _4=_2.createTextRange(); -var s=document.selection.createRange(); -s.setEndPoint("StartToStart",_4); -_3=s.text.length; -} -} -return _3; -}; -function _5(_6,_7,_8){ -if(_6.setSelectionRange){ -_6.setSelectionRange(_7,_8); -}else{ -if(_6.createTextRange){ -var _9=_6.createTextRange(); -_9.collapse(); -_9.moveEnd("character",_8); -_9.moveStart("character",_7); -_9.select(); -} -} -}; -function _a(_b){ -var _c=$.data(_b,"timespinner").options; -$(_b).addClass("timespinner-f").spinner(_c); -var _d=_c.formatter.call(_b,_c.parser.call(_b,_c.value)); -$(_b).timespinner("initValue",_d); -}; -function _e(e){ -var _f=e.data.target; -var _10=$.data(_f,"timespinner").options; -var _11=_1(this); -for(var i=0;i<_10.selections.length;i++){ -var _12=_10.selections[i]; -if(_11>=_12[0]&&_11<=_12[1]){ -_13(_f,i); -return; -} -} -}; -function _13(_14,_15){ -var _16=$.data(_14,"timespinner").options; -if(_15!=undefined){ -_16.highlight=_15; -} -var _17=_16.selections[_16.highlight]; -if(_17){ -var tb=$(_14).timespinner("textbox"); -_5(tb[0],_17[0],_17[1]); -tb.focus(); -} -}; -function _18(_19,_1a){ -var _1b=$.data(_19,"timespinner").options; -var _1a=_1b.parser.call(_19,_1a); -var _1c=_1b.formatter.call(_19,_1a); -$(_19).spinner("setValue",_1c); -}; -function _1d(_1e,_1f){ -var _20=$.data(_1e,"timespinner").options; -var s=$(_1e).timespinner("getValue"); -var _21=_20.selections[_20.highlight]; -var s1=s.substring(0,_21[0]); -var s2=s.substring(_21[0],_21[1]); -var s3=s.substring(_21[1]); -var v=s1+((parseInt(s2,10)||0)+_20.increment*(_1f?-1:1))+s3; -$(_1e).timespinner("setValue",v); -_13(_1e); -}; -$.fn.timespinner=function(_22,_23){ -if(typeof _22=="string"){ -var _24=$.fn.timespinner.methods[_22]; -if(_24){ -return _24(this,_23); -}else{ -return this.spinner(_22,_23); -} -} -_22=_22||{}; -return this.each(function(){ -var _25=$.data(this,"timespinner"); -if(_25){ -$.extend(_25.options,_22); -}else{ -$.data(this,"timespinner",{options:$.extend({},$.fn.timespinner.defaults,$.fn.timespinner.parseOptions(this),_22)}); -} -_a(this); -}); -}; -$.fn.timespinner.methods={options:function(jq){ -var _26=jq.data("spinner")?jq.spinner("options"):{}; -return $.extend($.data(jq[0],"timespinner").options,{width:_26.width,value:_26.value,originalValue:_26.originalValue,disabled:_26.disabled,readonly:_26.readonly}); -},setValue:function(jq,_27){ -return jq.each(function(){ -_18(this,_27); -}); -},getHours:function(jq){ -var _28=$.data(jq[0],"timespinner").options; -var vv=jq.timespinner("getValue").split(_28.separator); -return parseInt(vv[0],10); -},getMinutes:function(jq){ -var _29=$.data(jq[0],"timespinner").options; -var vv=jq.timespinner("getValue").split(_29.separator); -return parseInt(vv[1],10); -},getSeconds:function(jq){ -var _2a=$.data(jq[0],"timespinner").options; -var vv=jq.timespinner("getValue").split(_2a.separator); -return parseInt(vv[2],10)||0; -}}; -$.fn.timespinner.parseOptions=function(_2b){ -return $.extend({},$.fn.spinner.parseOptions(_2b),$.parser.parseOptions(_2b,["separator",{showSeconds:"boolean",highlight:"number"}])); -}; -$.fn.timespinner.defaults=$.extend({},$.fn.spinner.defaults,{inputEvents:$.extend({},$.fn.spinner.defaults.inputEvents,{click:function(e){ -_e.call(this,e); -},blur:function(e){ -var t=$(e.data.target); -t.timespinner("setValue",t.timespinner("getText")); -},keydown:function(e){ -if(e.keyCode==13){ -var t=$(e.data.target); -t.timespinner("setValue",t.timespinner("getText")); -} -}}),formatter:function(_2c){ -if(!_2c){ -return ""; -} -var _2d=$(this).timespinner("options"); -var tt=[_2e(_2c.getHours()),_2e(_2c.getMinutes())]; -if(_2d.showSeconds){ -tt.push(_2e(_2c.getSeconds())); -} -return tt.join(_2d.separator); -function _2e(_2f){ -return (_2f<10?"0":"")+_2f; -}; -},parser:function(s){ -var _30=$(this).timespinner("options"); -var _31=_32(s); -if(_31){ -var min=_32(_30.min); -var max=_32(_30.max); -if(min&&min>_31){ -_31=min; -} -if(max&&max<_31){ -_31=max; -} -} -return _31; -function _32(s){ -if(!s){ -return null; -} -var tt=s.split(_30.separator); -return new Date(1900,0,0,parseInt(tt[0],10)||0,parseInt(tt[1],10)||0,parseInt(tt[2],10)||0); -}; -},selections:[[0,2],[3,5],[6,8]],separator:":",showSeconds:false,highlight:0,spin:function(_33){ -_1d(this,_33); -}}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.tooltip.js b/vendor/FHC-vendor/easyui/plugins/jquery.tooltip.js deleted file mode 100644 index 2acb9e04e..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.tooltip.js +++ /dev/null @@ -1,232 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -$(_2).addClass("tooltip-f"); -}; -function _3(_4){ -var _5=$.data(_4,"tooltip").options; -$(_4).unbind(".tooltip").bind(_5.showEvent+".tooltip",function(e){ -$(_4).tooltip("show",e); -}).bind(_5.hideEvent+".tooltip",function(e){ -$(_4).tooltip("hide",e); -}).bind("mousemove.tooltip",function(e){ -if(_5.trackMouse){ -_5.trackMouseX=e.pageX; -_5.trackMouseY=e.pageY; -$(_4).tooltip("reposition"); -} -}); -}; -function _6(_7){ -var _8=$.data(_7,"tooltip"); -if(_8.showTimer){ -clearTimeout(_8.showTimer); -_8.showTimer=null; -} -if(_8.hideTimer){ -clearTimeout(_8.hideTimer); -_8.hideTimer=null; -} -}; -function _9(_a){ -var _b=$.data(_a,"tooltip"); -if(!_b||!_b.tip){ -return; -} -var _c=_b.options; -var _d=_b.tip; -var _e={left:-100000,top:-100000}; -if($(_a).is(":visible")){ -_e=_f(_c.position); -if(_c.position=="top"&&_e.top<0){ -_e=_f("bottom"); -}else{ -if((_c.position=="bottom")&&(_e.top+_d._outerHeight()>$(window)._outerHeight()+$(document).scrollTop())){ -_e=_f("top"); -} -} -if(_e.left<0){ -if(_c.position=="left"){ -_e=_f("right"); -}else{ -$(_a).tooltip("arrow").css("left",_d._outerWidth()/2+_e.left); -_e.left=0; -} -}else{ -if(_e.left+_d._outerWidth()>$(window)._outerWidth()+$(document)._scrollLeft()){ -if(_c.position=="right"){ -_e=_f("left"); -}else{ -var _10=_e.left; -_e.left=$(window)._outerWidth()+$(document)._scrollLeft()-_d._outerWidth(); -$(_a).tooltip("arrow").css("left",_d._outerWidth()/2-(_e.left-_10)); -} -} -} -} -_d.css({left:_e.left,top:_e.top,zIndex:(_c.zIndex!=undefined?_c.zIndex:($.fn.window?$.fn.window.defaults.zIndex++:""))}); -_c.onPosition.call(_a,_e.left,_e.top); -function _f(_11){ -_c.position=_11||"bottom"; -_d.removeClass("tooltip-top tooltip-bottom tooltip-left tooltip-right").addClass("tooltip-"+_c.position); -var _12,top; -if(_c.trackMouse){ -t=$(); -_12=_c.trackMouseX+_c.deltaX; -top=_c.trackMouseY+_c.deltaY; -}else{ -var t=$(_a); -_12=t.offset().left+_c.deltaX; -top=t.offset().top+_c.deltaY; -} -switch(_c.position){ -case "right": -_12+=t._outerWidth()+12+(_c.trackMouse?12:0); -top-=(_d._outerHeight()-t._outerHeight())/2; -break; -case "left": -_12-=_d._outerWidth()+12+(_c.trackMouse?12:0); -top-=(_d._outerHeight()-t._outerHeight())/2; -break; -case "top": -_12-=(_d._outerWidth()-t._outerWidth())/2; -top-=_d._outerHeight()+12+(_c.trackMouse?12:0); -break; -case "bottom": -_12-=(_d._outerWidth()-t._outerWidth())/2; -top+=t._outerHeight()+12+(_c.trackMouse?12:0); -break; -} -return {left:_12,top:top}; -}; -}; -function _13(_14,e){ -var _15=$.data(_14,"tooltip"); -var _16=_15.options; -var tip=_15.tip; -if(!tip){ -tip=$("
                                            "+"
                                            "+"
                                            "+"
                                            "+"
                                            ").appendTo("body"); -_15.tip=tip; -_17(_14); -} -_6(_14); -_15.showTimer=setTimeout(function(){ -$(_14).tooltip("reposition"); -tip.show(); -_16.onShow.call(_14,e); -var _18=tip.children(".tooltip-arrow-outer"); -var _19=tip.children(".tooltip-arrow"); -var bc="border-"+_16.position+"-color"; -_18.add(_19).css({borderTopColor:"",borderBottomColor:"",borderLeftColor:"",borderRightColor:""}); -_18.css(bc,tip.css(bc)); -_19.css(bc,tip.css("backgroundColor")); -},_16.showDelay); -}; -function _1a(_1b,e){ -var _1c=$.data(_1b,"tooltip"); -if(_1c&&_1c.tip){ -_6(_1b); -_1c.hideTimer=setTimeout(function(){ -_1c.tip.hide(); -_1c.options.onHide.call(_1b,e); -},_1c.options.hideDelay); -} -}; -function _17(_1d,_1e){ -var _1f=$.data(_1d,"tooltip"); -var _20=_1f.options; -if(_1e){ -_20.content=_1e; -} -if(!_1f.tip){ -return; -} -var cc=typeof _20.content=="function"?_20.content.call(_1d):_20.content; -_1f.tip.children(".tooltip-content").html(cc); -_20.onUpdate.call(_1d,cc); -}; -function _21(_22){ -var _23=$.data(_22,"tooltip"); -if(_23){ -_6(_22); -var _24=_23.options; -if(_23.tip){ -_23.tip.remove(); -} -if(_24._title){ -$(_22).attr("title",_24._title); -} -$.removeData(_22,"tooltip"); -$(_22).unbind(".tooltip").removeClass("tooltip-f"); -_24.onDestroy.call(_22); -} -}; -$.fn.tooltip=function(_25,_26){ -if(typeof _25=="string"){ -return $.fn.tooltip.methods[_25](this,_26); -} -_25=_25||{}; -return this.each(function(){ -var _27=$.data(this,"tooltip"); -if(_27){ -$.extend(_27.options,_25); -}else{ -$.data(this,"tooltip",{options:$.extend({},$.fn.tooltip.defaults,$.fn.tooltip.parseOptions(this),_25)}); -_1(this); -} -_3(this); -_17(this); -}); -}; -$.fn.tooltip.methods={options:function(jq){ -return $.data(jq[0],"tooltip").options; -},tip:function(jq){ -return $.data(jq[0],"tooltip").tip; -},arrow:function(jq){ -return jq.tooltip("tip").children(".tooltip-arrow-outer,.tooltip-arrow"); -},show:function(jq,e){ -return jq.each(function(){ -_13(this,e); -}); -},hide:function(jq,e){ -return jq.each(function(){ -_1a(this,e); -}); -},update:function(jq,_28){ -return jq.each(function(){ -_17(this,_28); -}); -},reposition:function(jq){ -return jq.each(function(){ -_9(this); -}); -},destroy:function(jq){ -return jq.each(function(){ -_21(this); -}); -}}; -$.fn.tooltip.parseOptions=function(_29){ -var t=$(_29); -var _2a=$.extend({},$.parser.parseOptions(_29,["position","showEvent","hideEvent","content",{trackMouse:"boolean",deltaX:"number",deltaY:"number",showDelay:"number",hideDelay:"number"}]),{_title:t.attr("title")}); -t.attr("title",""); -if(!_2a.content){ -_2a.content=_2a._title; -} -return _2a; -}; -$.fn.tooltip.defaults={position:"bottom",content:null,trackMouse:false,deltaX:0,deltaY:0,showEvent:"mouseenter",hideEvent:"mouseleave",showDelay:200,hideDelay:100,onShow:function(e){ -},onHide:function(e){ -},onUpdate:function(_2b){ -},onPosition:function(_2c,top){ -},onDestroy:function(){ -}}; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.tree.js b/vendor/FHC-vendor/easyui/plugins/jquery.tree.js deleted file mode 100644 index 965fa6761..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.tree.js +++ /dev/null @@ -1,1249 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -var _3=$(_2); -_3.addClass("tree"); -return _3; -}; -function _4(_5){ -var _6=$.data(_5,"tree").options; -$(_5).unbind().bind("mouseover",function(e){ -var tt=$(e.target); -var _7=tt.closest("div.tree-node"); -if(!_7.length){ -return; -} -_7.addClass("tree-node-hover"); -if(tt.hasClass("tree-hit")){ -if(tt.hasClass("tree-expanded")){ -tt.addClass("tree-expanded-hover"); -}else{ -tt.addClass("tree-collapsed-hover"); -} -} -e.stopPropagation(); -}).bind("mouseout",function(e){ -var tt=$(e.target); -var _8=tt.closest("div.tree-node"); -if(!_8.length){ -return; -} -_8.removeClass("tree-node-hover"); -if(tt.hasClass("tree-hit")){ -if(tt.hasClass("tree-expanded")){ -tt.removeClass("tree-expanded-hover"); -}else{ -tt.removeClass("tree-collapsed-hover"); -} -} -e.stopPropagation(); -}).bind("click",function(e){ -var tt=$(e.target); -var _9=tt.closest("div.tree-node"); -if(!_9.length){ -return; -} -if(tt.hasClass("tree-hit")){ -_8f(_5,_9[0]); -return false; -}else{ -if(tt.hasClass("tree-checkbox")){ -_34(_5,_9[0]); -return false; -}else{ -_e9(_5,_9[0]); -_6.onClick.call(_5,_c(_5,_9[0])); -} -} -e.stopPropagation(); -}).bind("dblclick",function(e){ -var _a=$(e.target).closest("div.tree-node"); -if(!_a.length){ -return; -} -_e9(_5,_a[0]); -_6.onDblClick.call(_5,_c(_5,_a[0])); -e.stopPropagation(); -}).bind("contextmenu",function(e){ -var _b=$(e.target).closest("div.tree-node"); -if(!_b.length){ -return; -} -_6.onContextMenu.call(_5,e,_c(_5,_b[0])); -e.stopPropagation(); -}); -}; -function _d(_e){ -var _f=$.data(_e,"tree").options; -_f.dnd=false; -var _10=$(_e).find("div.tree-node"); -_10.draggable("disable"); -_10.css("cursor","pointer"); -}; -function _11(_12){ -var _13=$.data(_12,"tree"); -var _14=_13.options; -var _15=_13.tree; -_13.disabledNodes=[]; -_14.dnd=true; -_15.find("div.tree-node").draggable({disabled:false,revert:true,cursor:"pointer",proxy:function(_16){ -var p=$("
                                            ").appendTo("body"); -p.html(" "+$(_16).find(".tree-title").html()); -p.hide(); -return p; -},deltaX:15,deltaY:15,onBeforeDrag:function(e){ -if(_14.onBeforeDrag.call(_12,_c(_12,this))==false){ -return false; -} -if($(e.target).hasClass("tree-hit")||$(e.target).hasClass("tree-checkbox")){ -return false; -} -if(e.which!=1){ -return false; -} -var _17=$(this).find("span.tree-indent"); -if(_17.length){ -e.data.offsetWidth-=_17.length*_17.width(); -} -},onStartDrag:function(e){ -$(this).next("ul").find("div.tree-node").each(function(){ -$(this).droppable("disable"); -_13.disabledNodes.push(this); -}); -$(this).draggable("proxy").css({left:-10000,top:-10000}); -_14.onStartDrag.call(_12,_c(_12,this)); -var _18=_c(_12,this); -if(_18.id==undefined){ -_18.id="easyui_tree_node_id_temp"; -_64(_12,_18); -} -_13.draggingNodeId=_18.id; -},onDrag:function(e){ -var x1=e.pageX,y1=e.pageY,x2=e.data.startX,y2=e.data.startY; -var d=Math.sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2)); -if(d>3){ -$(this).draggable("proxy").show(); -} -this.pageY=e.pageY; -},onStopDrag:function(){ -for(var i=0;i<_13.disabledNodes.length;i++){ -$(_13.disabledNodes[i]).droppable("enable"); -} -_13.disabledNodes=[]; -var _19=_dc(_12,_13.draggingNodeId); -if(_19&&_19.id=="easyui_tree_node_id_temp"){ -_19.id=""; -_64(_12,_19); -} -_14.onStopDrag.call(_12,_19); -}}).droppable({accept:"div.tree-node",onDragEnter:function(e,_1a){ -if(_14.onDragEnter.call(_12,this,_1b(_1a))==false){ -_1c(_1a,false); -$(this).removeClass("tree-node-append tree-node-top tree-node-bottom"); -$(this).droppable("disable"); -_13.disabledNodes.push(this); -} -},onDragOver:function(e,_1d){ -if($(this).droppable("options").disabled){ -return; -} -var _1e=_1d.pageY; -var top=$(this).offset().top; -var _1f=top+$(this).outerHeight(); -_1c(_1d,true); -$(this).removeClass("tree-node-append tree-node-top tree-node-bottom"); -if(_1e>top+(_1f-top)/2){ -if(_1f-_1e<5){ -$(this).addClass("tree-node-bottom"); -}else{ -$(this).addClass("tree-node-append"); -} -}else{ -if(_1e-top<5){ -$(this).addClass("tree-node-top"); -}else{ -$(this).addClass("tree-node-append"); -} -} -if(_14.onDragOver.call(_12,this,_1b(_1d))==false){ -_1c(_1d,false); -$(this).removeClass("tree-node-append tree-node-top tree-node-bottom"); -$(this).droppable("disable"); -_13.disabledNodes.push(this); -} -},onDragLeave:function(e,_20){ -_1c(_20,false); -$(this).removeClass("tree-node-append tree-node-top tree-node-bottom"); -_14.onDragLeave.call(_12,this,_1b(_20)); -},onDrop:function(e,_21){ -var _22=this; -var _23,_24; -if($(this).hasClass("tree-node-append")){ -_23=_25; -_24="append"; -}else{ -_23=_26; -_24=$(this).hasClass("tree-node-top")?"top":"bottom"; -} -if(_14.onBeforeDrop.call(_12,_22,_1b(_21),_24)==false){ -$(this).removeClass("tree-node-append tree-node-top tree-node-bottom"); -return; -} -_23(_21,_22,_24); -$(this).removeClass("tree-node-append tree-node-top tree-node-bottom"); -}}); -function _1b(_27,pop){ -return $(_27).closest("ul.tree").tree(pop?"pop":"getData",_27); -}; -function _1c(_28,_29){ -var _2a=$(_28).draggable("proxy").find("span.tree-dnd-icon"); -_2a.removeClass("tree-dnd-yes tree-dnd-no").addClass(_29?"tree-dnd-yes":"tree-dnd-no"); -}; -function _25(_2b,_2c){ -if(_c(_12,_2c).state=="closed"){ -_83(_12,_2c,function(){ -_2d(); -}); -}else{ -_2d(); -} -function _2d(){ -var _2e=_1b(_2b,true); -$(_12).tree("append",{parent:_2c,data:[_2e]}); -_14.onDrop.call(_12,_2c,_2e,"append"); -}; -}; -function _26(_2f,_30,_31){ -var _32={}; -if(_31=="top"){ -_32.before=_30; -}else{ -_32.after=_30; -} -var _33=_1b(_2f,true); -_32.data=_33; -$(_12).tree("insert",_32); -_14.onDrop.call(_12,_30,_33,_31); -}; -}; -function _34(_35,_36,_37){ -var _38=$.data(_35,"tree"); -var _39=_38.options; -if(!_39.checkbox){ -return; -} -var _3a=_c(_35,_36); -if(_37==undefined){ -var ck=$(_36).find(".tree-checkbox"); -if(ck.hasClass("tree-checkbox1")){ -_37=false; -}else{ -if(ck.hasClass("tree-checkbox0")){ -_37=true; -}else{ -if(_3a._checked==undefined){ -_3a._checked=$(_36).find(".tree-checkbox").hasClass("tree-checkbox1"); -} -_37=!_3a._checked; -} -} -} -_3a._checked=_37; -if(_39.onBeforeCheck.call(_35,_3a,_37)==false){ -return; -} -if(_39.cascadeCheck){ -_3b(_3a,_37); -_3c(_3a,_37); -}else{ -_3d($(_3a.target),_37?"1":"0"); -} -_39.onCheck.call(_35,_3a,_37); -function _3d(_3e,_3f){ -var ck=_3e.find(".tree-checkbox"); -ck.removeClass("tree-checkbox0 tree-checkbox1 tree-checkbox2"); -ck.addClass("tree-checkbox"+_3f); -}; -function _3b(_40,_41){ -if(_39.deepCheck){ -var _42=$("#"+_40.domId); -var _43=_41?"1":"0"; -_3d(_42,_43); -_3d(_42.next(),_43); -}else{ -_44(_40,_41); -_68(_40.children||[],function(n){ -_44(n,_41); -}); -} -}; -function _44(_45,_46){ -if(_45.hidden){ -return; -} -var cls="tree-checkbox"+(_46?"1":"0"); -var _47=$("#"+_45.domId); -_3d(_47,_46?"1":"0"); -if(_45.children){ -for(var i=0;i<_45.children.length;i++){ -if(_45.children[i].hidden){ -if(!$("#"+_45.children[i].domId).find("."+cls).length){ -_3d(_47,"2"); -var _48=_9a(_35,_47[0]); -while(_48){ -_3d($(_48.target),"2"); -_48=_9a(_35,_48[0]); -} -return; -} -} -} -} -}; -function _3c(_49,_4a){ -var _4b=$("#"+_49.domId); -var _4c=_9a(_35,_4b[0]); -if(_4c){ -var _4d=""; -if(_4e(_4b,true)){ -_4d="1"; -}else{ -if(_4e(_4b,false)){ -_4d="0"; -}else{ -_4d="2"; -} -} -_3d($(_4c.target),_4d); -_3c(_4c,_4a); -} -}; -function _4e(_4f,_50){ -var cls="tree-checkbox"+(_50?"1":"0"); -var ck=_4f.find(".tree-checkbox"); -if(!ck.hasClass(cls)){ -return false; -} -var b=true; -_4f.parent().siblings().each(function(){ -var ck=$(this).children("div.tree-node").children(".tree-checkbox"); -if(ck.length&&!ck.hasClass(cls)){ -b=false; -return false; -} -}); -return b; -}; -}; -function _51(_52,_53){ -var _54=$.data(_52,"tree").options; -if(!_54.checkbox){ -return; -} -var _55=$(_53); -if(_56(_52,_53)){ -var ck=_55.find(".tree-checkbox"); -if(ck.length){ -if(ck.hasClass("tree-checkbox1")){ -_34(_52,_53,true); -}else{ -_34(_52,_53,false); -} -}else{ -if(_54.onlyLeafCheck){ -$("").insertBefore(_55.find(".tree-title")); -} -} -}else{ -var ck=_55.find(".tree-checkbox"); -if(_54.onlyLeafCheck){ -ck.remove(); -}else{ -if(ck.hasClass("tree-checkbox1")){ -_34(_52,_53,true); -}else{ -if(ck.hasClass("tree-checkbox2")){ -var _57=true; -var _58=true; -var _59=_5a(_52,_53); -for(var i=0;i<_59.length;i++){ -if(_59[i].checked){ -_58=false; -}else{ -_57=false; -} -} -if(_57){ -_34(_52,_53,true); -} -if(_58){ -_34(_52,_53,false); -} -} -} -} -} -}; -function _5b(_5c,ul,_5d,_5e){ -var _5f=$.data(_5c,"tree"); -var _60=_5f.options; -var _61=$(ul).prevAll("div.tree-node:first"); -_5d=_60.loadFilter.call(_5c,_5d,_61[0]); -var _62=_63(_5c,"domId",_61.attr("id")); -if(!_5e){ -_62?_62.children=_5d:_5f.data=_5d; -$(ul).empty(); -}else{ -if(_62){ -_62.children?_62.children=_62.children.concat(_5d):_62.children=_5d; -}else{ -_5f.data=_5f.data.concat(_5d); -} -} -_60.view.render.call(_60.view,_5c,ul,_5d); -if(_60.dnd){ -_11(_5c); -} -if(_62){ -_64(_5c,_62); -} -var _65=[]; -var _66=[]; -for(var i=0;i<_5d.length;i++){ -var _67=_5d[i]; -if(!_67.checked){ -_65.push(_67); -} -} -_68(_5d,function(_69){ -if(_69.checked){ -_66.push(_69); -} -}); -var _6a=_60.onCheck; -_60.onCheck=function(){ -}; -if(_65.length){ -_34(_5c,$("#"+_65[0].domId)[0],false); -} -for(var i=0;i<_66.length;i++){ -_34(_5c,$("#"+_66[i].domId)[0],true); -} -_60.onCheck=_6a; -setTimeout(function(){ -_6b(_5c,_5c); -},0); -_60.onLoadSuccess.call(_5c,_62,_5d); -}; -function _6b(_6c,ul,_6d){ -var _6e=$.data(_6c,"tree").options; -if(_6e.lines){ -$(_6c).addClass("tree-lines"); -}else{ -$(_6c).removeClass("tree-lines"); -return; -} -if(!_6d){ -_6d=true; -$(_6c).find("span.tree-indent").removeClass("tree-line tree-join tree-joinbottom"); -$(_6c).find("div.tree-node").removeClass("tree-node-last tree-root-first tree-root-one"); -var _6f=$(_6c).tree("getRoots"); -if(_6f.length>1){ -$(_6f[0].target).addClass("tree-root-first"); -}else{ -if(_6f.length==1){ -$(_6f[0].target).addClass("tree-root-one"); -} -} -} -$(ul).children("li").each(function(){ -var _70=$(this).children("div.tree-node"); -var ul=_70.next("ul"); -if(ul.length){ -if($(this).next().length){ -_71(_70); -} -_6b(_6c,ul,_6d); -}else{ -_72(_70); -} -}); -var _73=$(ul).children("li:last").children("div.tree-node").addClass("tree-node-last"); -_73.children("span.tree-join").removeClass("tree-join").addClass("tree-joinbottom"); -function _72(_74,_75){ -var _76=_74.find("span.tree-icon"); -_76.prev("span.tree-indent").addClass("tree-join"); -}; -function _71(_77){ -var _78=_77.find("span.tree-indent, span.tree-hit").length; -_77.next().find("div.tree-node").each(function(){ -$(this).children("span:eq("+(_78-1)+")").addClass("tree-line"); -}); -}; -}; -function _79(_7a,ul,_7b,_7c){ -var _7d=$.data(_7a,"tree").options; -_7b=$.extend({},_7d.queryParams,_7b||{}); -var _7e=null; -if(_7a!=ul){ -var _7f=$(ul).prev(); -_7e=_c(_7a,_7f[0]); -} -if(_7d.onBeforeLoad.call(_7a,_7e,_7b)==false){ -return; -} -var _80=$(ul).prev().children("span.tree-folder"); -_80.addClass("tree-loading"); -var _81=_7d.loader.call(_7a,_7b,function(_82){ -_80.removeClass("tree-loading"); -_5b(_7a,ul,_82); -if(_7c){ -_7c(); -} -},function(){ -_80.removeClass("tree-loading"); -_7d.onLoadError.apply(_7a,arguments); -if(_7c){ -_7c(); -} -}); -if(_81==false){ -_80.removeClass("tree-loading"); -} -}; -function _83(_84,_85,_86){ -var _87=$.data(_84,"tree").options; -var hit=$(_85).children("span.tree-hit"); -if(hit.length==0){ -return; -} -if(hit.hasClass("tree-expanded")){ -return; -} -var _88=_c(_84,_85); -if(_87.onBeforeExpand.call(_84,_88)==false){ -return; -} -hit.removeClass("tree-collapsed tree-collapsed-hover").addClass("tree-expanded"); -hit.next().addClass("tree-folder-open"); -var ul=$(_85).next(); -if(ul.length){ -if(_87.animate){ -ul.slideDown("normal",function(){ -_88.state="open"; -_87.onExpand.call(_84,_88); -if(_86){ -_86(); -} -}); -}else{ -ul.css("display","block"); -_88.state="open"; -_87.onExpand.call(_84,_88); -if(_86){ -_86(); -} -} -}else{ -var _89=$("
                                              ").insertAfter(_85); -_79(_84,_89[0],{id:_88.id},function(){ -if(_89.is(":empty")){ -_89.remove(); -} -if(_87.animate){ -_89.slideDown("normal",function(){ -_88.state="open"; -_87.onExpand.call(_84,_88); -if(_86){ -_86(); -} -}); -}else{ -_89.css("display","block"); -_88.state="open"; -_87.onExpand.call(_84,_88); -if(_86){ -_86(); -} -} -}); -} -}; -function _8a(_8b,_8c){ -var _8d=$.data(_8b,"tree").options; -var hit=$(_8c).children("span.tree-hit"); -if(hit.length==0){ -return; -} -if(hit.hasClass("tree-collapsed")){ -return; -} -var _8e=_c(_8b,_8c); -if(_8d.onBeforeCollapse.call(_8b,_8e)==false){ -return; -} -hit.removeClass("tree-expanded tree-expanded-hover").addClass("tree-collapsed"); -hit.next().removeClass("tree-folder-open"); -var ul=$(_8c).next(); -if(_8d.animate){ -ul.slideUp("normal",function(){ -_8e.state="closed"; -_8d.onCollapse.call(_8b,_8e); -}); -}else{ -ul.css("display","none"); -_8e.state="closed"; -_8d.onCollapse.call(_8b,_8e); -} -}; -function _8f(_90,_91){ -var hit=$(_91).children("span.tree-hit"); -if(hit.length==0){ -return; -} -if(hit.hasClass("tree-expanded")){ -_8a(_90,_91); -}else{ -_83(_90,_91); -} -}; -function _92(_93,_94){ -var _95=_5a(_93,_94); -if(_94){ -_95.unshift(_c(_93,_94)); -} -for(var i=0;i<_95.length;i++){ -_83(_93,_95[i].target); -} -}; -function _96(_97,_98){ -var _99=[]; -var p=_9a(_97,_98); -while(p){ -_99.unshift(p); -p=_9a(_97,p.target); -} -for(var i=0;i<_99.length;i++){ -_83(_97,_99[i].target); -} -}; -function _9b(_9c,_9d){ -var c=$(_9c).parent(); -while(c[0].tagName!="BODY"&&c.css("overflow-y")!="auto"){ -c=c.parent(); -} -var n=$(_9d); -var _9e=n.offset().top; -if(c[0].tagName!="BODY"){ -var _9f=c.offset().top; -if(_9e<_9f){ -c.scrollTop(c.scrollTop()+_9e-_9f); -}else{ -if(_9e+n.outerHeight()>_9f+c.outerHeight()-18){ -c.scrollTop(c.scrollTop()+_9e+n.outerHeight()-_9f-c.outerHeight()+18); -} -} -}else{ -c.scrollTop(_9e); -} -}; -function _a0(_a1,_a2){ -var _a3=_5a(_a1,_a2); -if(_a2){ -_a3.unshift(_c(_a1,_a2)); -} -for(var i=0;i<_a3.length;i++){ -_8a(_a1,_a3[i].target); -} -}; -function _a4(_a5,_a6){ -var _a7=$(_a6.parent); -var _a8=_a6.data; -if(!_a8){ -return; -} -_a8=$.isArray(_a8)?_a8:[_a8]; -if(!_a8.length){ -return; -} -var ul; -if(_a7.length==0){ -ul=$(_a5); -}else{ -if(_56(_a5,_a7[0])){ -var _a9=_a7.find("span.tree-icon"); -_a9.removeClass("tree-file").addClass("tree-folder tree-folder-open"); -var hit=$("").insertBefore(_a9); -if(hit.prev().length){ -hit.prev().remove(); -} -} -ul=_a7.next(); -if(!ul.length){ -ul=$("
                                                ").insertAfter(_a7); -} -} -_5b(_a5,ul[0],_a8,true); -_51(_a5,ul.prev()); -}; -function _aa(_ab,_ac){ -var ref=_ac.before||_ac.after; -var _ad=_9a(_ab,ref); -var _ae=_ac.data; -if(!_ae){ -return; -} -_ae=$.isArray(_ae)?_ae:[_ae]; -if(!_ae.length){ -return; -} -_a4(_ab,{parent:(_ad?_ad.target:null),data:_ae}); -var _af=_ad?_ad.children:$(_ab).tree("getRoots"); -for(var i=0;i<_af.length;i++){ -if(_af[i].domId==$(ref).attr("id")){ -for(var j=_ae.length-1;j>=0;j--){ -_af.splice((_ac.before?i:(i+1)),0,_ae[j]); -} -_af.splice(_af.length-_ae.length,_ae.length); -break; -} -} -var li=$(); -for(var i=0;i<_ae.length;i++){ -li=li.add($("#"+_ae[i].domId).parent()); -} -if(_ac.before){ -li.insertBefore($(ref).parent()); -}else{ -li.insertAfter($(ref).parent()); -} -}; -function _b0(_b1,_b2){ -var _b3=del(_b2); -$(_b2).parent().remove(); -if(_b3){ -if(!_b3.children||!_b3.children.length){ -var _b4=$(_b3.target); -_b4.find(".tree-icon").removeClass("tree-folder").addClass("tree-file"); -_b4.find(".tree-hit").remove(); -$("").prependTo(_b4); -_b4.next().remove(); -} -_64(_b1,_b3); -_51(_b1,_b3.target); -} -_6b(_b1,_b1); -function del(_b5){ -var id=$(_b5).attr("id"); -var _b6=_9a(_b1,_b5); -var cc=_b6?_b6.children:$.data(_b1,"tree").data; -for(var i=0;i=0;i--){ -_e7.unshift(_e8.children[i]); -} -} -} -}; -function _e9(_ea,_eb){ -var _ec=$.data(_ea,"tree").options; -var _ed=_c(_ea,_eb); -if(_ec.onBeforeSelect.call(_ea,_ed)==false){ -return; -} -$(_ea).find("div.tree-node-selected").removeClass("tree-node-selected"); -$(_eb).addClass("tree-node-selected"); -_ec.onSelect.call(_ea,_ed); -}; -function _56(_ee,_ef){ -return $(_ef).children("span.tree-hit").length==0; -}; -function _f0(_f1,_f2){ -var _f3=$.data(_f1,"tree").options; -var _f4=_c(_f1,_f2); -if(_f3.onBeforeEdit.call(_f1,_f4)==false){ -return; -} -$(_f2).css("position","relative"); -var nt=$(_f2).find(".tree-title"); -var _f5=nt.outerWidth(); -nt.empty(); -var _f6=$("").appendTo(nt); -_f6.val(_f4.text).focus(); -_f6.width(_f5+20); -_f6.height(document.compatMode=="CSS1Compat"?(18-(_f6.outerHeight()-_f6.height())):18); -_f6.bind("click",function(e){ -return false; -}).bind("mousedown",function(e){ -e.stopPropagation(); -}).bind("mousemove",function(e){ -e.stopPropagation(); -}).bind("keydown",function(e){ -if(e.keyCode==13){ -_f7(_f1,_f2); -return false; -}else{ -if(e.keyCode==27){ -_fd(_f1,_f2); -return false; -} -} -}).bind("blur",function(e){ -e.stopPropagation(); -_f7(_f1,_f2); -}); -}; -function _f7(_f8,_f9){ -var _fa=$.data(_f8,"tree").options; -$(_f9).css("position",""); -var _fb=$(_f9).find("input.tree-editor"); -var val=_fb.val(); -_fb.remove(); -var _fc=_c(_f8,_f9); -_fc.text=val; -_64(_f8,_fc); -_fa.onAfterEdit.call(_f8,_fc); -}; -function _fd(_fe,_ff){ -var opts=$.data(_fe,"tree").options; -$(_ff).css("position",""); -$(_ff).find("input.tree-editor").remove(); -var node=_c(_fe,_ff); -_64(_fe,node); -opts.onCancelEdit.call(_fe,node); -}; -function _100(_101,q){ -var _102=$.data(_101,"tree"); -var opts=_102.options; -var ids={}; -_68(_102.data,function(node){ -if(opts.filter.call(_101,q,node)){ -$("#"+node.domId).removeClass("tree-node-hidden"); -ids[node.domId]=1; -node.hidden=false; -}else{ -$("#"+node.domId).addClass("tree-node-hidden"); -node.hidden=true; -} -}); -for(var id in ids){ -_103(id); -} -function _103(_104){ -var p=$(_101).tree("getParent",$("#"+_104)[0]); -while(p){ -$(p.target).removeClass("tree-node-hidden"); -p.hidden=false; -p=$(_101).tree("getParent",p.target); -} -}; -}; -$.fn.tree=function(_105,_106){ -if(typeof _105=="string"){ -return $.fn.tree.methods[_105](this,_106); -} -var _105=_105||{}; -return this.each(function(){ -var _107=$.data(this,"tree"); -var opts; -if(_107){ -opts=$.extend(_107.options,_105); -_107.options=opts; -}else{ -opts=$.extend({},$.fn.tree.defaults,$.fn.tree.parseOptions(this),_105); -$.data(this,"tree",{options:opts,tree:_1(this),data:[]}); -var data=$.fn.tree.parseData(this); -if(data.length){ -_5b(this,this,data); -} -} -_4(this); -if(opts.data){ -_5b(this,this,$.extend(true,[],opts.data)); -} -_79(this,this); -}); -}; -$.fn.tree.methods={options:function(jq){ -return $.data(jq[0],"tree").options; -},loadData:function(jq,data){ -return jq.each(function(){ -_5b(this,this,data); -}); -},getNode:function(jq,_108){ -return _c(jq[0],_108); -},getData:function(jq,_109){ -return _d5(jq[0],_109); -},reload:function(jq,_10a){ -return jq.each(function(){ -if(_10a){ -var node=$(_10a); -var hit=node.children("span.tree-hit"); -hit.removeClass("tree-expanded tree-expanded-hover").addClass("tree-collapsed"); -node.next().remove(); -_83(this,_10a); -}else{ -$(this).empty(); -_79(this,this); -} -}); -},getRoot:function(jq,_10b){ -return _bd(jq[0],_10b); -},getRoots:function(jq){ -return _c1(jq[0]); -},getParent:function(jq,_10c){ -return _9a(jq[0],_10c); -},getChildren:function(jq,_10d){ -return _5a(jq[0],_10d); -},getChecked:function(jq,_10e){ -return _cc(jq[0],_10e); -},getSelected:function(jq){ -return _d2(jq[0]); -},isLeaf:function(jq,_10f){ -return _56(jq[0],_10f); -},find:function(jq,id){ -return _dc(jq[0],id); -},select:function(jq,_110){ -return jq.each(function(){ -_e9(this,_110); -}); -},check:function(jq,_111){ -return jq.each(function(){ -_34(this,_111,true); -}); -},uncheck:function(jq,_112){ -return jq.each(function(){ -_34(this,_112,false); -}); -},collapse:function(jq,_113){ -return jq.each(function(){ -_8a(this,_113); -}); -},expand:function(jq,_114){ -return jq.each(function(){ -_83(this,_114); -}); -},collapseAll:function(jq,_115){ -return jq.each(function(){ -_a0(this,_115); -}); -},expandAll:function(jq,_116){ -return jq.each(function(){ -_92(this,_116); -}); -},expandTo:function(jq,_117){ -return jq.each(function(){ -_96(this,_117); -}); -},scrollTo:function(jq,_118){ -return jq.each(function(){ -_9b(this,_118); -}); -},toggle:function(jq,_119){ -return jq.each(function(){ -_8f(this,_119); -}); -},append:function(jq,_11a){ -return jq.each(function(){ -_a4(this,_11a); -}); -},insert:function(jq,_11b){ -return jq.each(function(){ -_aa(this,_11b); -}); -},remove:function(jq,_11c){ -return jq.each(function(){ -_b0(this,_11c); -}); -},pop:function(jq,_11d){ -var node=jq.tree("getData",_11d); -jq.tree("remove",_11d); -return node; -},update:function(jq,_11e){ -return jq.each(function(){ -_64(this,_11e); -}); -},enableDnd:function(jq){ -return jq.each(function(){ -_11(this); -}); -},disableDnd:function(jq){ -return jq.each(function(){ -_d(this); -}); -},beginEdit:function(jq,_11f){ -return jq.each(function(){ -_f0(this,_11f); -}); -},endEdit:function(jq,_120){ -return jq.each(function(){ -_f7(this,_120); -}); -},cancelEdit:function(jq,_121){ -return jq.each(function(){ -_fd(this,_121); -}); -},doFilter:function(jq,q){ -return jq.each(function(){ -_100(this,q); -}); -}}; -$.fn.tree.parseOptions=function(_122){ -var t=$(_122); -return $.extend({},$.parser.parseOptions(_122,["url","method",{checkbox:"boolean",cascadeCheck:"boolean",onlyLeafCheck:"boolean"},{animate:"boolean",lines:"boolean",dnd:"boolean"}])); -}; -$.fn.tree.parseData=function(_123){ -var data=[]; -_124(data,$(_123)); -return data; -function _124(aa,tree){ -tree.children("li").each(function(){ -var node=$(this); -var item=$.extend({},$.parser.parseOptions(this,["id","iconCls","state"]),{checked:(node.attr("checked")?true:undefined)}); -item.text=node.children("span").html(); -if(!item.text){ -item.text=node.html(); -} -var _125=node.children("ul"); -if(_125.length){ -item.children=[]; -_124(item.children,_125); -} -aa.push(item); -}); -}; -}; -var _126=1; -var _127={render:function(_128,ul,data){ -var opts=$.data(_128,"tree").options; -var _129=$(ul).prev("div.tree-node").find("span.tree-indent, span.tree-hit").length; -var cc=_12a(_129,data); -$(ul).append(cc.join("")); -function _12a(_12b,_12c){ -var cc=[]; -for(var i=0;i<_12c.length;i++){ -var item=_12c[i]; -if(item.state!="open"&&item.state!="closed"){ -item.state="open"; -} -item.domId="_easyui_tree_"+_126++; -cc.push("
                                              • "); -cc.push("
                                                "); -for(var j=0;j<_12b;j++){ -cc.push(""); -} -var _12d=false; -if(item.state=="closed"){ -cc.push(""); -cc.push(""); -}else{ -if(item.children&&item.children.length){ -cc.push(""); -cc.push(""); -}else{ -cc.push(""); -cc.push(""); -_12d=true; -} -} -if(opts.checkbox){ -if((!opts.onlyLeafCheck)||_12d){ -cc.push(""); -} -} -cc.push(""+opts.formatter.call(_128,item)+""); -cc.push("
                                                "); -if(item.children&&item.children.length){ -var tmp=_12a(_12b+1,item.children); -cc.push("
                                                  "); -cc=cc.concat(tmp); -cc.push("
                                                "); -} -cc.push("
                                              • "); -} -return cc; -}; -}}; -$.fn.tree.defaults={url:null,method:"post",animate:false,checkbox:false,cascadeCheck:true,onlyLeafCheck:false,lines:false,dnd:false,data:null,queryParams:{},formatter:function(node){ -return node.text; -},filter:function(q,node){ -return node.text.toLowerCase().indexOf(q.toLowerCase())>=0; -},loader:function(_12e,_12f,_130){ -var opts=$(this).tree("options"); -if(!opts.url){ -return false; -} -$.ajax({type:opts.method,url:opts.url,data:_12e,dataType:"json",success:function(data){ -_12f(data); -},error:function(){ -_130.apply(this,arguments); -}}); -},loadFilter:function(data,_131){ -return data; -},view:_127,onBeforeLoad:function(node,_132){ -},onLoadSuccess:function(node,data){ -},onLoadError:function(){ -},onClick:function(node){ -},onDblClick:function(node){ -},onBeforeExpand:function(node){ -},onExpand:function(node){ -},onBeforeCollapse:function(node){ -},onCollapse:function(node){ -},onBeforeCheck:function(node,_133){ -},onCheck:function(node,_134){ -},onBeforeSelect:function(node){ -},onSelect:function(node){ -},onContextMenu:function(e,node){ -},onBeforeDrag:function(node){ -},onStartDrag:function(node){ -},onStopDrag:function(node){ -},onDragEnter:function(_135,_136){ -},onDragOver:function(_137,_138){ -},onDragLeave:function(_139,_13a){ -},onBeforeDrop:function(_13b,_13c,_13d){ -},onDrop:function(_13e,_13f,_140){ -},onBeforeEdit:function(node){ -},onAfterEdit:function(node){ -},onCancelEdit:function(node){ -}}; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.treegrid.js b/vendor/FHC-vendor/easyui/plugins/jquery.treegrid.js deleted file mode 100644 index 633992a67..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.treegrid.js +++ /dev/null @@ -1,1116 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2){ -var _3=$.data(_2,"treegrid"); -var _4=_3.options; -$(_2).datagrid($.extend({},_4,{url:null,data:null,loader:function(){ -return false; -},onBeforeLoad:function(){ -return false; -},onLoadSuccess:function(){ -},onResizeColumn:function(_5,_6){ -_16(_2); -_4.onResizeColumn.call(_2,_5,_6); -},onBeforeSortColumn:function(_7,_8){ -if(_4.onBeforeSortColumn.call(_2,_7,_8)==false){ -return false; -} -},onSortColumn:function(_9,_a){ -_4.sortName=_9; -_4.sortOrder=_a; -if(_4.remoteSort){ -_15(_2); -}else{ -var _b=$(_2).treegrid("getData"); -_2f(_2,0,_b); -} -_4.onSortColumn.call(_2,_9,_a); -},onClickCell:function(_c,_d){ -_4.onClickCell.call(_2,_d,_37(_2,_c)); -},onDblClickCell:function(_e,_f){ -_4.onDblClickCell.call(_2,_f,_37(_2,_e)); -},onRowContextMenu:function(e,_10){ -_4.onContextMenu.call(_2,e,_37(_2,_10)); -}})); -var _11=$.data(_2,"datagrid").options; -_4.columns=_11.columns; -_4.frozenColumns=_11.frozenColumns; -_3.dc=$.data(_2,"datagrid").dc; -if(_4.pagination){ -var _12=$(_2).datagrid("getPager"); -_12.pagination({pageNumber:_4.pageNumber,pageSize:_4.pageSize,pageList:_4.pageList,onSelectPage:function(_13,_14){ -_4.pageNumber=_13; -_4.pageSize=_14; -_15(_2); -}}); -_4.pageSize=_12.pagination("options").pageSize; -} -}; -function _16(_17,_18){ -var _19=$.data(_17,"datagrid").options; -var dc=$.data(_17,"datagrid").dc; -if(!dc.body1.is(":empty")&&(!_19.nowrap||_19.autoRowHeight)){ -if(_18!=undefined){ -var _1a=_1b(_17,_18); -for(var i=0;i<_1a.length;i++){ -_1c(_1a[i][_19.idField]); -} -} -} -$(_17).datagrid("fixRowHeight",_18); -function _1c(_1d){ -var tr1=_19.finder.getTr(_17,_1d,"body",1); -var tr2=_19.finder.getTr(_17,_1d,"body",2); -tr1.css("height",""); -tr2.css("height",""); -var _1e=Math.max(tr1.height(),tr2.height()); -tr1.css("height",_1e); -tr2.css("height",_1e); -}; -}; -function _1f(_20){ -var dc=$.data(_20,"datagrid").dc; -var _21=$.data(_20,"treegrid").options; -if(!_21.rownumbers){ -return; -} -dc.body1.find("div.datagrid-cell-rownumber").each(function(i){ -$(this).html(i+1); -}); -}; -function _22(_23){ -return function(e){ -$.fn.datagrid.defaults.rowEvents[_23?"mouseover":"mouseout"](e); -var tt=$(e.target); -var fn=_23?"addClass":"removeClass"; -if(tt.hasClass("tree-hit")){ -tt.hasClass("tree-expanded")?tt[fn]("tree-expanded-hover"):tt[fn]("tree-collapsed-hover"); -} -}; -}; -function _24(e){ -var tt=$(e.target); -if(tt.hasClass("tree-hit")){ -var tr=tt.closest("tr.datagrid-row"); -var _25=tr.closest("div.datagrid-view").children(".datagrid-f")[0]; -_26(_25,tr.attr("node-id")); -}else{ -$.fn.datagrid.defaults.rowEvents.click(e); -} -}; -function _27(_28,_29){ -var _2a=$.data(_28,"treegrid").options; -var tr1=_2a.finder.getTr(_28,_29,"body",1); -var tr2=_2a.finder.getTr(_28,_29,"body",2); -var _2b=$(_28).datagrid("getColumnFields",true).length+(_2a.rownumbers?1:0); -var _2c=$(_28).datagrid("getColumnFields",false).length; -_2d(tr1,_2b); -_2d(tr2,_2c); -function _2d(tr,_2e){ -$(""+""+"
                                                "+""+"").insertAfter(tr); -}; -}; -function _2f(_30,_31,_32,_33){ -var _34=$.data(_30,"treegrid"); -var _35=_34.options; -var dc=_34.dc; -_32=_35.loadFilter.call(_30,_32,_31); -var _36=_37(_30,_31); -if(_36){ -var _38=_35.finder.getTr(_30,_31,"body",1); -var _39=_35.finder.getTr(_30,_31,"body",2); -var cc1=_38.next("tr.treegrid-tr-tree").children("td").children("div"); -var cc2=_39.next("tr.treegrid-tr-tree").children("td").children("div"); -if(!_33){ -_36.children=[]; -} -}else{ -var cc1=dc.body1; -var cc2=dc.body2; -if(!_33){ -_34.data=[]; -} -} -if(!_33){ -cc1.empty(); -cc2.empty(); -} -if(_35.view.onBeforeRender){ -_35.view.onBeforeRender.call(_35.view,_30,_31,_32); -} -_35.view.render.call(_35.view,_30,cc1,true); -_35.view.render.call(_35.view,_30,cc2,false); -if(_35.showFooter){ -_35.view.renderFooter.call(_35.view,_30,dc.footer1,true); -_35.view.renderFooter.call(_35.view,_30,dc.footer2,false); -} -if(_35.view.onAfterRender){ -_35.view.onAfterRender.call(_35.view,_30); -} -if(!_31&&_35.pagination){ -var _3a=$.data(_30,"treegrid").total; -var _3b=$(_30).datagrid("getPager"); -if(_3b.pagination("options").total!=_3a){ -_3b.pagination({total:_3a}); -} -} -_16(_30); -_1f(_30); -$(_30).treegrid("showLines"); -$(_30).treegrid("setSelectionState"); -$(_30).treegrid("autoSizeColumn"); -_35.onLoadSuccess.call(_30,_36,_32); -}; -function _15(_3c,_3d,_3e,_3f,_40){ -var _41=$.data(_3c,"treegrid").options; -var _42=$(_3c).datagrid("getPanel").find("div.datagrid-body"); -if(_3e){ -_41.queryParams=_3e; -} -var _43=$.extend({},_41.queryParams); -if(_41.pagination){ -$.extend(_43,{page:_41.pageNumber,rows:_41.pageSize}); -} -if(_41.sortName){ -$.extend(_43,{sort:_41.sortName,order:_41.sortOrder}); -} -var row=_37(_3c,_3d); -if(_41.onBeforeLoad.call(_3c,row,_43)==false){ -return; -} -var _44=_42.find("tr[node-id=\""+_3d+"\"] span.tree-folder"); -_44.addClass("tree-loading"); -$(_3c).treegrid("loading"); -var _45=_41.loader.call(_3c,_43,function(_46){ -_44.removeClass("tree-loading"); -$(_3c).treegrid("loaded"); -_2f(_3c,_3d,_46,_3f); -if(_40){ -_40(); -} -},function(){ -_44.removeClass("tree-loading"); -$(_3c).treegrid("loaded"); -_41.onLoadError.apply(_3c,arguments); -if(_40){ -_40(); -} -}); -if(_45==false){ -_44.removeClass("tree-loading"); -$(_3c).treegrid("loaded"); -} -}; -function _47(_48){ -var _49=_4a(_48); -if(_49.length){ -return _49[0]; -}else{ -return null; -} -}; -function _4a(_4b){ -return $.data(_4b,"treegrid").data; -}; -function _4c(_4d,_4e){ -var row=_37(_4d,_4e); -if(row._parentId){ -return _37(_4d,row._parentId); -}else{ -return null; -} -}; -function _1b(_4f,_50){ -var _51=$.data(_4f,"treegrid").options; -var _52=$(_4f).datagrid("getPanel").find("div.datagrid-view2 div.datagrid-body"); -var _53=[]; -if(_50){ -_54(_50); -}else{ -var _55=_4a(_4f); -for(var i=0;i<_55.length;i++){ -_53.push(_55[i]); -_54(_55[i][_51.idField]); -} -} -function _54(_56){ -var _57=_37(_4f,_56); -if(_57&&_57.children){ -for(var i=0,len=_57.children.length;i").insertBefore(_84); -if(hit.prev().length){ -hit.prev().remove(); -} -} -} -_2f(_80,_81.parent,_81.data,true); -}; -function _85(_86,_87){ -var ref=_87.before||_87.after; -var _88=$.data(_86,"treegrid").options; -var _89=_4c(_86,ref); -_7f(_86,{parent:(_89?_89[_88.idField]:null),data:[_87.data]}); -var _8a=_89?_89.children:$(_86).treegrid("getRoots"); -for(var i=0;i<_8a.length;i++){ -if(_8a[i][_88.idField]==ref){ -var _8b=_8a[_8a.length-1]; -_8a.splice(_87.before?i:(i+1),0,_8b); -_8a.splice(_8a.length-1,1); -break; -} -} -_8c(true); -_8c(false); -_1f(_86); -$(_86).treegrid("showLines"); -function _8c(_8d){ -var _8e=_8d?1:2; -var tr=_88.finder.getTr(_86,_87.data[_88.idField],"body",_8e); -var _8f=tr.closest("table.datagrid-btable"); -tr=tr.parent().children(); -var _90=_88.finder.getTr(_86,ref,"body",_8e); -if(_87.before){ -tr.insertBefore(_90); -}else{ -var sub=_90.next("tr.treegrid-tr-tree"); -tr.insertAfter(sub.length?sub:_90); -} -_8f.remove(); -}; -}; -function _91(_92,_93){ -var _94=$.data(_92,"treegrid"); -$(_92).datagrid("deleteRow",_93); -_1f(_92); -_94.total-=1; -$(_92).datagrid("getPager").pagination("refresh",{total:_94.total}); -$(_92).treegrid("showLines"); -}; -function _95(_96){ -var t=$(_96); -var _97=t.treegrid("options"); -if(_97.lines){ -t.treegrid("getPanel").addClass("tree-lines"); -}else{ -t.treegrid("getPanel").removeClass("tree-lines"); -return; -} -t.treegrid("getPanel").find("span.tree-indent").removeClass("tree-line tree-join tree-joinbottom"); -t.treegrid("getPanel").find("div.datagrid-cell").removeClass("tree-node-last tree-root-first tree-root-one"); -var _98=t.treegrid("getRoots"); -if(_98.length>1){ -_99(_98[0]).addClass("tree-root-first"); -}else{ -if(_98.length==1){ -_99(_98[0]).addClass("tree-root-one"); -} -} -_9a(_98); -_9b(_98); -function _9a(_9c){ -$.map(_9c,function(_9d){ -if(_9d.children&&_9d.children.length){ -_9a(_9d.children); -}else{ -var _9e=_99(_9d); -_9e.find(".tree-icon").prev().addClass("tree-join"); -} -}); -if(_9c.length){ -var _9f=_99(_9c[_9c.length-1]); -_9f.addClass("tree-node-last"); -_9f.find(".tree-join").removeClass("tree-join").addClass("tree-joinbottom"); -} -}; -function _9b(_a0){ -$.map(_a0,function(_a1){ -if(_a1.children&&_a1.children.length){ -_9b(_a1.children); -} -}); -for(var i=0;i<_a0.length-1;i++){ -var _a2=_a0[i]; -var _a3=t.treegrid("getLevel",_a2[_97.idField]); -var tr=_97.finder.getTr(_96,_a2[_97.idField]); -var cc=tr.next().find("tr.datagrid-row td[field=\""+_97.treeField+"\"] div.datagrid-cell"); -cc.find("span:eq("+(_a3-1)+")").addClass("tree-line"); -} -}; -function _99(_a4){ -var tr=_97.finder.getTr(_96,_a4[_97.idField]); -var _a5=tr.find("td[field=\""+_97.treeField+"\"] div.datagrid-cell"); -return _a5; -}; -}; -$.fn.treegrid=function(_a6,_a7){ -if(typeof _a6=="string"){ -var _a8=$.fn.treegrid.methods[_a6]; -if(_a8){ -return _a8(this,_a7); -}else{ -return this.datagrid(_a6,_a7); -} -} -_a6=_a6||{}; -return this.each(function(){ -var _a9=$.data(this,"treegrid"); -if(_a9){ -$.extend(_a9.options,_a6); -}else{ -_a9=$.data(this,"treegrid",{options:$.extend({},$.fn.treegrid.defaults,$.fn.treegrid.parseOptions(this),_a6),data:[]}); -} -_1(this); -if(_a9.options.data){ -$(this).treegrid("loadData",_a9.options.data); -} -_15(this); -}); -}; -$.fn.treegrid.methods={options:function(jq){ -return $.data(jq[0],"treegrid").options; -},resize:function(jq,_aa){ -return jq.each(function(){ -$(this).datagrid("resize",_aa); -}); -},fixRowHeight:function(jq,_ab){ -return jq.each(function(){ -_16(this,_ab); -}); -},loadData:function(jq,_ac){ -return jq.each(function(){ -_2f(this,_ac.parent,_ac); -}); -},load:function(jq,_ad){ -return jq.each(function(){ -$(this).treegrid("options").pageNumber=1; -$(this).treegrid("getPager").pagination({pageNumber:1}); -$(this).treegrid("reload",_ad); -}); -},reload:function(jq,id){ -return jq.each(function(){ -var _ae=$(this).treegrid("options"); -var _af={}; -if(typeof id=="object"){ -_af=id; -}else{ -_af=$.extend({},_ae.queryParams); -_af.id=id; -} -if(_af.id){ -var _b0=$(this).treegrid("find",_af.id); -if(_b0.children){ -_b0.children.splice(0,_b0.children.length); -} -_ae.queryParams=_af; -var tr=_ae.finder.getTr(this,_af.id); -tr.next("tr.treegrid-tr-tree").remove(); -tr.find("span.tree-hit").removeClass("tree-expanded tree-expanded-hover").addClass("tree-collapsed"); -_67(this,_af.id); -}else{ -_15(this,null,_af); -} -}); -},reloadFooter:function(jq,_b1){ -return jq.each(function(){ -var _b2=$.data(this,"treegrid").options; -var dc=$.data(this,"datagrid").dc; -if(_b1){ -$.data(this,"treegrid").footer=_b1; -} -if(_b2.showFooter){ -_b2.view.renderFooter.call(_b2.view,this,dc.footer1,true); -_b2.view.renderFooter.call(_b2.view,this,dc.footer2,false); -if(_b2.view.onAfterRender){ -_b2.view.onAfterRender.call(_b2.view,this); -} -$(this).treegrid("fixRowHeight"); -} -}); -},getData:function(jq){ -return $.data(jq[0],"treegrid").data; -},getFooterRows:function(jq){ -return $.data(jq[0],"treegrid").footer; -},getRoot:function(jq){ -return _47(jq[0]); -},getRoots:function(jq){ -return _4a(jq[0]); -},getParent:function(jq,id){ -return _4c(jq[0],id); -},getChildren:function(jq,id){ -return _1b(jq[0],id); -},getLevel:function(jq,id){ -return _59(jq[0],id); -},find:function(jq,id){ -return _37(jq[0],id); -},isLeaf:function(jq,id){ -var _b3=$.data(jq[0],"treegrid").options; -var tr=_b3.finder.getTr(jq[0],id); -var hit=tr.find("span.tree-hit"); -return hit.length==0; -},select:function(jq,id){ -return jq.each(function(){ -$(this).datagrid("selectRow",id); -}); -},unselect:function(jq,id){ -return jq.each(function(){ -$(this).datagrid("unselectRow",id); -}); -},collapse:function(jq,id){ -return jq.each(function(){ -_63(this,id); -}); -},expand:function(jq,id){ -return jq.each(function(){ -_67(this,id); -}); -},toggle:function(jq,id){ -return jq.each(function(){ -_26(this,id); -}); -},collapseAll:function(jq,id){ -return jq.each(function(){ -_71(this,id); -}); -},expandAll:function(jq,id){ -return jq.each(function(){ -_76(this,id); -}); -},expandTo:function(jq,id){ -return jq.each(function(){ -_7b(this,id); -}); -},append:function(jq,_b4){ -return jq.each(function(){ -_7f(this,_b4); -}); -},insert:function(jq,_b5){ -return jq.each(function(){ -_85(this,_b5); -}); -},remove:function(jq,id){ -return jq.each(function(){ -_91(this,id); -}); -},pop:function(jq,id){ -var row=jq.treegrid("find",id); -jq.treegrid("remove",id); -return row; -},refresh:function(jq,id){ -return jq.each(function(){ -var _b6=$.data(this,"treegrid").options; -_b6.view.refreshRow.call(_b6.view,this,id); -}); -},update:function(jq,_b7){ -return jq.each(function(){ -var _b8=$.data(this,"treegrid").options; -_b8.view.updateRow.call(_b8.view,this,_b7.id,_b7.row); -}); -},beginEdit:function(jq,id){ -return jq.each(function(){ -$(this).datagrid("beginEdit",id); -$(this).treegrid("fixRowHeight",id); -}); -},endEdit:function(jq,id){ -return jq.each(function(){ -$(this).datagrid("endEdit",id); -}); -},cancelEdit:function(jq,id){ -return jq.each(function(){ -$(this).datagrid("cancelEdit",id); -}); -},showLines:function(jq){ -return jq.each(function(){ -_95(this); -}); -}}; -$.fn.treegrid.parseOptions=function(_b9){ -return $.extend({},$.fn.datagrid.parseOptions(_b9),$.parser.parseOptions(_b9,["treeField",{animate:"boolean"}])); -}; -var _ba=$.extend({},$.fn.datagrid.defaults.view,{render:function(_bb,_bc,_bd){ -var _be=$.data(_bb,"treegrid").options; -var _bf=$(_bb).datagrid("getColumnFields",_bd); -var _c0=$.data(_bb,"datagrid").rowIdPrefix; -if(_bd){ -if(!(_be.rownumbers||(_be.frozenColumns&&_be.frozenColumns.length))){ -return; -} -} -var _c1=this; -if(this.treeNodes&&this.treeNodes.length){ -var _c2=_c3(_bd,this.treeLevel,this.treeNodes); -$(_bc).append(_c2.join("")); -} -function _c3(_c4,_c5,_c6){ -var _c7=$(_bb).treegrid("getParent",_c6[0][_be.idField]); -var _c8=(_c7?_c7.children.length:$(_bb).treegrid("getRoots").length)-_c6.length; -var _c9=[""]; -for(var i=0;i<_c6.length;i++){ -var row=_c6[i]; -if(row.state!="open"&&row.state!="closed"){ -row.state="open"; -} -var css=_be.rowStyler?_be.rowStyler.call(_bb,row):""; -var _ca=""; -var _cb=""; -if(typeof css=="string"){ -_cb=css; -}else{ -if(css){ -_ca=css["class"]||""; -_cb=css["style"]||""; -} -} -var cls="class=\"datagrid-row "+(_c8++%2&&_be.striped?"datagrid-row-alt ":" ")+_ca+"\""; -var _cc=_cb?"style=\""+_cb+"\"":""; -var _cd=_c0+"-"+(_c4?1:2)+"-"+row[_be.idField]; -_c9.push(""); -_c9=_c9.concat(_c1.renderRow.call(_c1,_bb,_bf,_c4,_c5,row)); -_c9.push(""); -if(row.children&&row.children.length){ -var tt=_c3(_c4,_c5+1,row.children); -var v=row.state=="closed"?"none":"block"; -_c9.push(""); -} -} -_c9.push("
                                                "); -_c9=_c9.concat(tt); -_c9.push("
                                                "); -return _c9; -}; -},renderFooter:function(_ce,_cf,_d0){ -var _d1=$.data(_ce,"treegrid").options; -var _d2=$.data(_ce,"treegrid").footer||[]; -var _d3=$(_ce).datagrid("getColumnFields",_d0); -var _d4=[""]; -for(var i=0;i<_d2.length;i++){ -var row=_d2[i]; -row[_d1.idField]=row[_d1.idField]||("foot-row-id"+i); -_d4.push(""); -_d4.push(this.renderRow.call(this,_ce,_d3,_d0,0,row)); -_d4.push(""); -} -_d4.push("
                                                "); -$(_cf).html(_d4.join("")); -},renderRow:function(_d5,_d6,_d7,_d8,row){ -var _d9=$.data(_d5,"treegrid").options; -var cc=[]; -if(_d7&&_d9.rownumbers){ -cc.push("
                                                0
                                                "); -} -for(var i=0;i<_d6.length;i++){ -var _da=_d6[i]; -var col=$(_d5).datagrid("getColumnOption",_da); -if(col){ -var css=col.styler?(col.styler(row[_da],row)||""):""; -var _db=""; -var _dc=""; -if(typeof css=="string"){ -_dc=css; -}else{ -if(cc){ -_db=css["class"]||""; -_dc=css["style"]||""; -} -} -var cls=_db?"class=\""+_db+"\"":""; -var _dd=col.hidden?"style=\"display:none;"+_dc+"\"":(_dc?"style=\""+_dc+"\"":""); -cc.push(""); -var _dd=""; -if(!col.checkbox){ -if(col.align){ -_dd+="text-align:"+col.align+";"; -} -if(!_d9.nowrap){ -_dd+="white-space:normal;height:auto;"; -}else{ -if(_d9.autoRowHeight){ -_dd+="height:auto;"; -} -} -} -cc.push("
                                                "); -if(col.checkbox){ -if(row.checked){ -cc.push(""); -}else{ -var val=null; -if(col.formatter){ -val=col.formatter(row[_da],row); -}else{ -val=row[_da]; -} -if(_da==_d9.treeField){ -for(var j=0;j<_d8;j++){ -cc.push(""); -} -if(row.state=="closed"){ -cc.push(""); -cc.push(""); -}else{ -if(row.children&&row.children.length){ -cc.push(""); -cc.push(""); -}else{ -cc.push(""); -cc.push(""); -} -} -cc.push(""+val+""); -}else{ -cc.push(val); -} -} -cc.push("
                                                "); -cc.push(""); -} -} -return cc.join(""); -},refreshRow:function(_de,id){ -this.updateRow.call(this,_de,id,{}); -},updateRow:function(_df,id,row){ -var _e0=$.data(_df,"treegrid").options; -var _e1=$(_df).treegrid("find",id); -$.extend(_e1,row); -var _e2=$(_df).treegrid("getLevel",id)-1; -var _e3=_e0.rowStyler?_e0.rowStyler.call(_df,_e1):""; -var _e4=$.data(_df,"datagrid").rowIdPrefix; -var _e5=_e1[_e0.idField]; -function _e6(_e7){ -var _e8=$(_df).treegrid("getColumnFields",_e7); -var tr=_e0.finder.getTr(_df,id,"body",(_e7?1:2)); -var _e9=tr.find("div.datagrid-cell-rownumber").html(); -var _ea=tr.find("div.datagrid-cell-check input[type=checkbox]").is(":checked"); -tr.html(this.renderRow(_df,_e8,_e7,_e2,_e1)); -tr.attr("style",_e3||""); -tr.find("div.datagrid-cell-rownumber").html(_e9); -if(_ea){ -tr.find("div.datagrid-cell-check input[type=checkbox]")._propAttr("checked",true); -} -if(_e5!=id){ -tr.attr("id",_e4+"-"+(_e7?1:2)+"-"+_e5); -tr.attr("node-id",_e5); -} -}; -_e6.call(this,true); -_e6.call(this,false); -$(_df).treegrid("fixRowHeight",id); -},deleteRow:function(_eb,id){ -var _ec=$.data(_eb,"treegrid").options; -var tr=_ec.finder.getTr(_eb,id); -tr.next("tr.treegrid-tr-tree").remove(); -tr.remove(); -var _ed=del(id); -if(_ed){ -if(_ed.children.length==0){ -tr=_ec.finder.getTr(_eb,_ed[_ec.idField]); -tr.next("tr.treegrid-tr-tree").remove(); -var _ee=tr.children("td[field=\""+_ec.treeField+"\"]").children("div.datagrid-cell"); -_ee.find(".tree-icon").removeClass("tree-folder").addClass("tree-file"); -_ee.find(".tree-hit").remove(); -$("").prependTo(_ee); -} -} -function del(id){ -var cc; -var _ef=$(_eb).treegrid("getParent",id); -if(_ef){ -cc=_ef.children; -}else{ -cc=$(_eb).treegrid("getData"); -} -for(var i=0;ib?1:-1); -}; -r=_100(r1[sn],r2[sn])*(so=="asc"?1:-1); -if(r!=0){ -return r; -} -} -return r; -}); -for(var i=0;i<_ff.length;i++){ -var _101=_ff[i].children; -if(_101&&_101.length){ -_fe(_101); -} -} -}; -},transfer:function(_102,_103,data){ -var opts=$.data(_102,"treegrid").options; -var rows=[]; -for(var i=0;i=_3d[0]&&len<=_3d[1]; -},message:"Please enter a value between {0} and {1}."},remote:{validator:function(_3e,_3f){ -var _40={}; -_40[_3f[1]]=_3e; -var _41=$.ajax({url:_3f[0],dataType:"json",data:_40,async:false,cache:false,type:"post"}).responseText; -return _41=="true"; -},message:"Please fix this field."}},onBeforeValidate:function(){ -},onValidate:function(_42){ -}}; -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/plugins/jquery.window.js b/vendor/FHC-vendor/easyui/plugins/jquery.window.js deleted file mode 100644 index 96880e44e..000000000 --- a/vendor/FHC-vendor/easyui/plugins/jquery.window.js +++ /dev/null @@ -1,258 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -(function($){ -function _1(_2,_3){ -var _4=$.data(_2,"window"); -if(_3){ -if(_3.left!=null){ -_4.options.left=_3.left; -} -if(_3.top!=null){ -_4.options.top=_3.top; -} -} -$(_2).panel("move",_4.options); -if(_4.shadow){ -_4.shadow.css({left:_4.options.left,top:_4.options.top}); -} -}; -function _5(_6,_7){ -var _8=$.data(_6,"window").options; -var pp=$(_6).window("panel"); -var _9=pp._outerWidth(); -if(_8.inline){ -var _a=pp.parent(); -_8.left=Math.ceil((_a.width()-_9)/2+_a.scrollLeft()); -}else{ -_8.left=Math.ceil(($(window)._outerWidth()-_9)/2+$(document).scrollLeft()); -} -if(_7){ -_1(_6); -} -}; -function _b(_c,_d){ -var _e=$.data(_c,"window").options; -var pp=$(_c).window("panel"); -var _f=pp._outerHeight(); -if(_e.inline){ -var _10=pp.parent(); -_e.top=Math.ceil((_10.height()-_f)/2+_10.scrollTop()); -}else{ -_e.top=Math.ceil(($(window)._outerHeight()-_f)/2+$(document).scrollTop()); -} -if(_d){ -_1(_c); -} -}; -function _11(_12){ -var _13=$.data(_12,"window"); -var _14=_13.options; -var win=$(_12).panel($.extend({},_13.options,{border:false,doSize:true,closed:true,cls:"window",headerCls:"window-header",bodyCls:"window-body "+(_14.noheader?"window-body-noheader":""),onBeforeDestroy:function(){ -if(_14.onBeforeDestroy.call(_12)==false){ -return false; -} -if(_13.shadow){ -_13.shadow.remove(); -} -if(_13.mask){ -_13.mask.remove(); -} -},onClose:function(){ -if(_13.shadow){ -_13.shadow.hide(); -} -if(_13.mask){ -_13.mask.hide(); -} -_14.onClose.call(_12); -},onOpen:function(){ -if(_13.mask){ -_13.mask.css($.extend({display:"block",zIndex:$.fn.window.defaults.zIndex++},$.fn.window.getMaskSize(_12))); -} -if(_13.shadow){ -_13.shadow.css({display:"block",zIndex:$.fn.window.defaults.zIndex++,left:_14.left,top:_14.top,width:_13.window._outerWidth(),height:_13.window._outerHeight()}); -} -_13.window.css("z-index",$.fn.window.defaults.zIndex++); -_14.onOpen.call(_12); -},onResize:function(_15,_16){ -var _17=$(this).panel("options"); -$.extend(_14,{width:_17.width,height:_17.height,left:_17.left,top:_17.top}); -if(_13.shadow){ -_13.shadow.css({left:_14.left,top:_14.top,width:_13.window._outerWidth(),height:_13.window._outerHeight()}); -} -_14.onResize.call(_12,_15,_16); -},onMinimize:function(){ -if(_13.shadow){ -_13.shadow.hide(); -} -if(_13.mask){ -_13.mask.hide(); -} -_13.options.onMinimize.call(_12); -},onBeforeCollapse:function(){ -if(_14.onBeforeCollapse.call(_12)==false){ -return false; -} -if(_13.shadow){ -_13.shadow.hide(); -} -},onExpand:function(){ -if(_13.shadow){ -_13.shadow.show(); -} -_14.onExpand.call(_12); -}})); -_13.window=win.panel("panel"); -if(_13.mask){ -_13.mask.remove(); -} -if(_14.modal){ -_13.mask=$("
                                                ").insertAfter(_13.window); -} -if(_13.shadow){ -_13.shadow.remove(); -} -if(_14.shadow){ -_13.shadow=$("
                                                ").insertAfter(_13.window); -} -var _18=_14.closed; -if(_14.left==null){ -_5(_12); -} -if(_14.top==null){ -_b(_12); -} -_1(_12); -if(!_18){ -win.window("open"); -} -}; -function _19(_1a){ -var _1b=$.data(_1a,"window"); -_1b.window.draggable({handle:">div.panel-header>div.panel-title",disabled:_1b.options.draggable==false,onStartDrag:function(e){ -if(_1b.mask){ -_1b.mask.css("z-index",$.fn.window.defaults.zIndex++); -} -if(_1b.shadow){ -_1b.shadow.css("z-index",$.fn.window.defaults.zIndex++); -} -_1b.window.css("z-index",$.fn.window.defaults.zIndex++); -if(!_1b.proxy){ -_1b.proxy=$("
                                                ").insertAfter(_1b.window); -} -_1b.proxy.css({display:"none",zIndex:$.fn.window.defaults.zIndex++,left:e.data.left,top:e.data.top}); -_1b.proxy._outerWidth(_1b.window._outerWidth()); -_1b.proxy._outerHeight(_1b.window._outerHeight()); -setTimeout(function(){ -if(_1b.proxy){ -_1b.proxy.show(); -} -},500); -},onDrag:function(e){ -_1b.proxy.css({display:"block",left:e.data.left,top:e.data.top}); -return false; -},onStopDrag:function(e){ -_1b.options.left=e.data.left; -_1b.options.top=e.data.top; -$(_1a).window("move"); -_1b.proxy.remove(); -_1b.proxy=null; -}}); -_1b.window.resizable({disabled:_1b.options.resizable==false,onStartResize:function(e){ -if(_1b.pmask){ -_1b.pmask.remove(); -} -_1b.pmask=$("
                                                ").insertAfter(_1b.window); -_1b.pmask.css({zIndex:$.fn.window.defaults.zIndex++,left:e.data.left,top:e.data.top,width:_1b.window._outerWidth(),height:_1b.window._outerHeight()}); -if(_1b.proxy){ -_1b.proxy.remove(); -} -_1b.proxy=$("
                                                ").insertAfter(_1b.window); -_1b.proxy.css({zIndex:$.fn.window.defaults.zIndex++,left:e.data.left,top:e.data.top}); -_1b.proxy._outerWidth(e.data.width)._outerHeight(e.data.height); -},onResize:function(e){ -_1b.proxy.css({left:e.data.left,top:e.data.top}); -_1b.proxy._outerWidth(e.data.width); -_1b.proxy._outerHeight(e.data.height); -return false; -},onStopResize:function(e){ -$(_1a).window("resize",e.data); -_1b.pmask.remove(); -_1b.pmask=null; -_1b.proxy.remove(); -_1b.proxy=null; -}}); -}; -$(window).resize(function(){ -$("body>div.window-mask").css({width:$(window)._outerWidth(),height:$(window)._outerHeight()}); -setTimeout(function(){ -$("body>div.window-mask").css($.fn.window.getMaskSize()); -},50); -}); -$.fn.window=function(_1c,_1d){ -if(typeof _1c=="string"){ -var _1e=$.fn.window.methods[_1c]; -if(_1e){ -return _1e(this,_1d); -}else{ -return this.panel(_1c,_1d); -} -} -_1c=_1c||{}; -return this.each(function(){ -var _1f=$.data(this,"window"); -if(_1f){ -$.extend(_1f.options,_1c); -}else{ -_1f=$.data(this,"window",{options:$.extend({},$.fn.window.defaults,$.fn.window.parseOptions(this),_1c)}); -if(!_1f.options.inline){ -document.body.appendChild(this); -} -} -_11(this); -_19(this); -}); -}; -$.fn.window.methods={options:function(jq){ -var _20=jq.panel("options"); -var _21=$.data(jq[0],"window").options; -return $.extend(_21,{closed:_20.closed,collapsed:_20.collapsed,minimized:_20.minimized,maximized:_20.maximized}); -},window:function(jq){ -return $.data(jq[0],"window").window; -},move:function(jq,_22){ -return jq.each(function(){ -_1(this,_22); -}); -},hcenter:function(jq){ -return jq.each(function(){ -_5(this,true); -}); -},vcenter:function(jq){ -return jq.each(function(){ -_b(this,true); -}); -},center:function(jq){ -return jq.each(function(){ -_5(this); -_b(this); -_1(this); -}); -}}; -$.fn.window.getMaskSize=function(_23){ -var _24=$(_23).data("window"); -var _25=(_24&&_24.options.inline); -return {width:(_25?"100%":$(document).width()),height:(_25?"100%":$(document).height())}; -}; -$.fn.window.parseOptions=function(_26){ -return $.extend({},$.fn.panel.parseOptions(_26),$.parser.parseOptions(_26,[{draggable:"boolean",resizable:"boolean",shadow:"boolean",modal:"boolean",inline:"boolean"}])); -}; -$.fn.window.defaults=$.extend({},$.fn.panel.defaults,{zIndex:9000,draggable:true,resizable:true,shadow:true,modal:false,inline:false,title:"New Window",collapsible:true,minimizable:true,maximizable:true,closable:true,closed:false}); -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/readme.txt b/vendor/FHC-vendor/easyui/readme.txt deleted file mode 100644 index 7014da0a9..000000000 --- a/vendor/FHC-vendor/easyui/readme.txt +++ /dev/null @@ -1,4 +0,0 @@ -Current Version: 1.4.4 -====================== -This software is allowed to use under freeware license or you need to buy commercial license for better support or other purpose. -Please contact us at info@jeasyui.com diff --git a/vendor/FHC-vendor/easyui/src/easyloader.js b/vendor/FHC-vendor/easyui/src/easyloader.js deleted file mode 100644 index 704aa8474..000000000 --- a/vendor/FHC-vendor/easyui/src/easyloader.js +++ /dev/null @@ -1,426 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * easyloader - jQuery EasyUI - * - */ -(function(){ - var modules = { - draggable:{ - js:'jquery.draggable.js' - }, - droppable:{ - js:'jquery.droppable.js' - }, - resizable:{ - js:'jquery.resizable.js' - }, - linkbutton:{ - js:'jquery.linkbutton.js', - css:'linkbutton.css' - }, - progressbar:{ - js:'jquery.progressbar.js', - css:'progressbar.css' - }, - tooltip:{ - js:'jquery.tooltip.js', - css:'tooltip.css' - }, - pagination:{ - js:'jquery.pagination.js', - css:'pagination.css', - dependencies:['linkbutton'] - }, - datagrid:{ - js:'jquery.datagrid.js', - css:'datagrid.css', - dependencies:['panel','resizable','linkbutton','pagination'] - }, - treegrid:{ - js:'jquery.treegrid.js', - css:'tree.css', - dependencies:['datagrid'] - }, - propertygrid:{ - js:'jquery.propertygrid.js', - css:'propertygrid.css', - dependencies:['datagrid'] - }, - datalist:{ - js:'jquery.datalist.js', - css:'datalist.css', - dependencies:['datagrid'] - }, - panel: { - js:'jquery.panel.js', - css:'panel.css' - }, - window:{ - js:'jquery.window.js', - css:'window.css', - dependencies:['resizable','draggable','panel'] - }, - dialog:{ - js:'jquery.dialog.js', - css:'dialog.css', - dependencies:['linkbutton','window'] - }, - messager:{ - js:'jquery.messager.js', - css:'messager.css', - dependencies:['linkbutton','dialog','progressbar'] - }, - layout:{ - js:'jquery.layout.js', - css:'layout.css', - dependencies:['resizable','panel'] - }, - form:{ - js:'jquery.form.js' - }, - menu:{ - js:'jquery.menu.js', - css:'menu.css' - }, - tabs:{ - js:'jquery.tabs.js', - css:'tabs.css', - dependencies:['panel','linkbutton'] - }, - menubutton:{ - js:'jquery.menubutton.js', - css:'menubutton.css', - dependencies:['linkbutton','menu'] - }, - splitbutton:{ - js:'jquery.splitbutton.js', - css:'splitbutton.css', - dependencies:['menubutton'] - }, - switchbutton:{ - js:'jquery.switchbutton.js', - css:'switchbutton.css' - }, - accordion:{ - js:'jquery.accordion.js', - css:'accordion.css', - dependencies:['panel'] - }, - calendar:{ - js:'jquery.calendar.js', - css:'calendar.css' - }, - textbox:{ - js:'jquery.textbox.js', - css:'textbox.css', - dependencies:['validatebox','linkbutton'] - }, - filebox:{ - js:'jquery.filebox.js', - css:'filebox.css', - dependencies:['textbox'] - }, - combo:{ - js:'jquery.combo.js', - css:'combo.css', - dependencies:['panel','textbox'] - }, - combobox:{ - js:'jquery.combobox.js', - css:'combobox.css', - dependencies:['combo'] - }, - combotree:{ - js:'jquery.combotree.js', - dependencies:['combo','tree'] - }, - combogrid:{ - js:'jquery.combogrid.js', - dependencies:['combo','datagrid'] - }, - validatebox:{ - js:'jquery.validatebox.js', - css:'validatebox.css', - dependencies:['tooltip'] - }, - numberbox:{ - js:'jquery.numberbox.js', - dependencies:['textbox'] - }, - searchbox:{ - js:'jquery.searchbox.js', - css:'searchbox.css', - dependencies:['menubutton','textbox'] - }, - spinner:{ - js:'jquery.spinner.js', - css:'spinner.css', - dependencies:['textbox'] - }, - numberspinner:{ - js:'jquery.numberspinner.js', - dependencies:['spinner','numberbox'] - }, - timespinner:{ - js:'jquery.timespinner.js', - dependencies:['spinner'] - }, - tree:{ - js:'jquery.tree.js', - css:'tree.css', - dependencies:['draggable','droppable'] - }, - datebox:{ - js:'jquery.datebox.js', - css:'datebox.css', - dependencies:['calendar','combo'] - }, - datetimebox:{ - js:'jquery.datetimebox.js', - dependencies:['datebox','timespinner'] - }, - slider:{ - js:'jquery.slider.js', - dependencies:['draggable'] - }, - parser:{ - js:'jquery.parser.js' - }, - mobile:{ - js:'jquery.mobile.js' - } - }; - - var locales = { - 'af':'easyui-lang-af.js', - 'ar':'easyui-lang-ar.js', - 'bg':'easyui-lang-bg.js', - 'ca':'easyui-lang-ca.js', - 'cs':'easyui-lang-cs.js', - 'cz':'easyui-lang-cz.js', - 'da':'easyui-lang-da.js', - 'de':'easyui-lang-de.js', - 'el':'easyui-lang-el.js', - 'en':'easyui-lang-en.js', - 'es':'easyui-lang-es.js', - 'fr':'easyui-lang-fr.js', - 'it':'easyui-lang-it.js', - 'jp':'easyui-lang-jp.js', - 'nl':'easyui-lang-nl.js', - 'pl':'easyui-lang-pl.js', - 'pt_BR':'easyui-lang-pt_BR.js', - 'ru':'easyui-lang-ru.js', - 'sv_SE':'easyui-lang-sv_SE.js', - 'tr':'easyui-lang-tr.js', - 'zh_CN':'easyui-lang-zh_CN.js', - 'zh_TW':'easyui-lang-zh_TW.js' - }; - - var queues = {}; - - function loadJs(url, callback){ - var done = false; - var script = document.createElement('script'); - script.type = 'text/javascript'; - script.language = 'javascript'; - script.src = url; - script.onload = script.onreadystatechange = function(){ - if (!done && (!script.readyState || script.readyState == 'loaded' || script.readyState == 'complete')){ - done = true; - script.onload = script.onreadystatechange = null; - if (callback){ - callback.call(script); - } - } - } - document.getElementsByTagName("head")[0].appendChild(script); - } - - function runJs(url, callback){ - loadJs(url, function(){ - document.getElementsByTagName("head")[0].removeChild(this); - if (callback){ - callback(); - } - }); - } - - function loadCss(url, callback){ - var link = document.createElement('link'); - link.rel = 'stylesheet'; - link.type = 'text/css'; - link.media = 'screen'; - link.href = url; - document.getElementsByTagName('head')[0].appendChild(link); - if (callback){ - callback.call(link); - } - } - - function loadSingle(name, callback){ - queues[name] = 'loading'; - - var module = modules[name]; - var jsStatus = 'loading'; - var cssStatus = (easyloader.css && module['css']) ? 'loading' : 'loaded'; - - if (easyloader.css && module['css']){ - if (/^http/i.test(module['css'])){ - var url = module['css']; - } else { - var url = easyloader.base + 'themes/' + easyloader.theme + '/' + module['css']; - } - loadCss(url, function(){ - cssStatus = 'loaded'; - if (jsStatus == 'loaded' && cssStatus == 'loaded'){ - finish(); - } - }); - } - - if (/^http/i.test(module['js'])){ - var url = module['js']; - } else { - var url = easyloader.base + 'plugins/' + module['js']; - } - loadJs(url, function(){ - jsStatus = 'loaded'; - if (jsStatus == 'loaded' && cssStatus == 'loaded'){ - finish(); - } - }); - - function finish(){ - queues[name] = 'loaded'; - easyloader.onProgress(name); - if (callback){ - callback(); - } - } - } - - function loadModule(name, callback){ - var mm = []; - var doLoad = false; - - if (typeof name == 'string'){ - add(name); - } else { - for(var i=0; i.panel>.accordion-header'); - if (headers.length){ - headerHeight = $(headers[0]).css('height', '')._outerHeight(); - } - if (!isNaN(parseInt(opts.height))){ - bodyHeight = cc.height() - headerHeight*headers.length; - } - - _resize(true, bodyHeight - _resize(false) + 1); - - function _resize(collapsible, height){ - var totalHeight = 0; - for(var i=0; i= panels.length){ - return null; - } else { - return panels[which]; - } - } - return findBy(container, 'title', which); - } - - function setProperties(container){ - var opts = $.data(container, 'accordion').options; - var cc = $(container); - if (opts.border){ - cc.removeClass('accordion-noborder'); - } else { - cc.addClass('accordion-noborder'); - } - } - - function init(container){ - var state = $.data(container, 'accordion'); - var cc = $(container); - cc.addClass('accordion'); - - state.panels = []; - cc.children('div').each(function(){ - var opts = $.extend({}, $.parser.parseOptions(this), { - selected: ($(this).attr('selected') ? true : undefined) - }); - var pp = $(this); - state.panels.push(pp); - createPanel(container, pp, opts); - }); - - cc.bind('_resize', function(e,force){ - if ($(this).hasClass('easyui-fluid') || force){ - setSize(container); - } - return false; - }); - } - - function createPanel(container, pp, options){ - var opts = $.data(container, 'accordion').options; - pp.panel($.extend({}, { - collapsible: true, - minimizable: false, - maximizable: false, - closable: false, - doSize: false, - collapsed: true, - headerCls: 'accordion-header', - bodyCls: 'accordion-body' - }, options, { - onBeforeExpand: function(){ - if (options.onBeforeExpand){ - if (options.onBeforeExpand.call(this) == false){return false} - } - if (!opts.multiple){ - // get all selected panel - var all = $.grep(getSelections(container), function(p){ - return p.panel('options').collapsible; - }); - for(var i=0; i').addClass('accordion-collapse accordion-expand').appendTo(tool); - t.bind('click', function(){ - togglePanel(pp); - return false; - }); - pp.panel('options').collapsible ? t.show() : t.hide(); - - header.click(function(){ - togglePanel(pp); - return false; - }); - - function togglePanel(p){ - var popts = p.panel('options'); - if (popts.collapsible){ - var index = getPanelIndex(container, p); - if (popts.collapsed){ - select(container, index); - } else { - unselect(container, index); - } - } - } - } - - /** - * select and set the specified panel active - */ - function select(container, which){ - var p = getPanel(container, which); - if (!p){return} - stopAnimate(container); - var opts = $.data(container, 'accordion').options; - p.panel('expand', opts.animate); - } - - function unselect(container, which){ - var p = getPanel(container, which); - if (!p){return} - stopAnimate(container); - var opts = $.data(container, 'accordion').options; - p.panel('collapse', opts.animate); - } - - function doFirstSelect(container){ - var opts = $.data(container, 'accordion').options; - var p = findBy(container, 'selected', true); - if (p){ - _select(getPanelIndex(container, p)); - } else { - _select(opts.selected); - } - - function _select(index){ - var animate = opts.animate; - opts.animate = false; - select(container, index); - opts.animate = animate; - } - } - - /** - * stop the animation of all panels - */ - function stopAnimate(container){ - var panels = $.data(container, 'accordion').panels; - for(var i=0; i').appendTo(container); - panels.push(pp); - createPanel(container, pp, options); - setSize(container); - - opts.onAdd.call(container, options.title, panels.length-1); - - if (options.selected){ - select(container, panels.length-1); - } - } - - function remove(container, which){ - var state = $.data(container, 'accordion'); - var opts = state.options; - var panels = state.panels; - - stopAnimate(container); - - var panel = getPanel(container, which); - var title = panel.panel('options').title; - var index = getPanelIndex(container, panel); - - if (!panel){return} - if (opts.onBeforeRemove.call(container, title, index) == false){return} - - panels.splice(index, 1); - panel.panel('destroy'); - if (panels.length){ - setSize(container); - var curr = getSelected(container); - if (!curr){ - select(container, 0); - } - } - - opts.onRemove.call(container, title, index); - } - - $.fn.accordion = function(options, param){ - if (typeof options == 'string'){ - return $.fn.accordion.methods[options](this, param); - } - - options = options || {}; - return this.each(function(){ - var state = $.data(this, 'accordion'); - if (state){ - $.extend(state.options, options); - } else { - $.data(this, 'accordion', { - options: $.extend({}, $.fn.accordion.defaults, $.fn.accordion.parseOptions(this), options), - accordion: $(this).addClass('accordion'), - panels: [] - }); - init(this); - } - - setProperties(this); - setSize(this); - doFirstSelect(this); - }); - }; - - $.fn.accordion.methods = { - options: function(jq){ - return $.data(jq[0], 'accordion').options; - }, - panels: function(jq){ - return $.data(jq[0], 'accordion').panels; - }, - resize: function(jq, param){ - return jq.each(function(){ - setSize(this, param); - }); - }, - getSelections: function(jq){ - return getSelections(jq[0]); - }, - getSelected: function(jq){ - return getSelected(jq[0]); - }, - getPanel: function(jq, which){ - return getPanel(jq[0], which); - }, - getPanelIndex: function(jq, panel){ - return getPanelIndex(jq[0], panel); - }, - select: function(jq, which){ - return jq.each(function(){ - select(this, which); - }); - }, - unselect: function(jq, which){ - return jq.each(function(){ - unselect(this, which); - }); - }, - add: function(jq, options){ - return jq.each(function(){ - add(this, options); - }); - }, - remove: function(jq, which){ - return jq.each(function(){ - remove(this, which); - }); - } - }; - - $.fn.accordion.parseOptions = function(target){ - var t = $(target); - return $.extend({}, $.parser.parseOptions(target, [ - 'width','height', - {fit:'boolean',border:'boolean',animate:'boolean',multiple:'boolean',selected:'number'} - ])); - }; - - $.fn.accordion.defaults = { - width: 'auto', - height: 'auto', - fit: false, - border: true, - animate: true, - multiple: false, - selected: 0, - - onSelect: function(title, index){}, - onUnselect: function(title, index){}, - onAdd: function(title, index){}, - onBeforeRemove: function(title, index){}, - onRemove: function(title, index){} - }; -})(jQuery); diff --git a/vendor/FHC-vendor/easyui/src/jquery.calendar.js b/vendor/FHC-vendor/easyui/src/jquery.calendar.js deleted file mode 100644 index ad582f4cc..000000000 --- a/vendor/FHC-vendor/easyui/src/jquery.calendar.js +++ /dev/null @@ -1,438 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * calendar - jQuery EasyUI - * - */ -(function($){ - - function setSize(target, param){ - var opts = $.data(target, 'calendar').options; - var t = $(target); - if (param){ - $.extend(opts, { - width: param.width, - height: param.height - }); - } - t._size(opts, t.parent()); - t.find('.calendar-body')._outerHeight(t.height() - t.find('.calendar-header')._outerHeight()); - if (t.find('.calendar-menu').is(':visible')){ - showSelectMenus(target); - } - } - - function init(target){ - $(target).addClass('calendar').html( - '
                                                ' + - '
                                                ' + - '
                                                ' + - '
                                                ' + - '
                                                ' + - '
                                                ' + - '' + - '
                                                ' + - '
                                                ' + - '
                                                ' + - '
                                                ' + - '
                                                ' + - '' + - '' + - '' + - '
                                                ' + - '
                                                ' + - '
                                                ' + - '
                                                ' + - '
                                                ' - ); - - - $(target).bind('_resize', function(e,force){ - if ($(this).hasClass('easyui-fluid') || force){ - setSize(target); - } - return false; - }); - } - - function bindEvents(target){ - var opts = $.data(target, 'calendar').options; - var menu = $(target).find('.calendar-menu'); - menu.find('.calendar-menu-year').unbind('.calendar').bind('keypress.calendar', function(e){ - if (e.keyCode == 13){ - setDate(true); - } - }); - $(target).unbind('.calendar').bind('mouseover.calendar', function(e){ - var t = toTarget(e.target); - if (t.hasClass('calendar-nav') || t.hasClass('calendar-text') || (t.hasClass('calendar-day') && !t.hasClass('calendar-disabled'))){ - t.addClass('calendar-nav-hover'); - } - }).bind('mouseout.calendar', function(e){ - var t = toTarget(e.target); - if (t.hasClass('calendar-nav') || t.hasClass('calendar-text') || (t.hasClass('calendar-day') && !t.hasClass('calendar-disabled'))){ - t.removeClass('calendar-nav-hover'); - } - }).bind('click.calendar', function(e){ - var t = toTarget(e.target); - if (t.hasClass('calendar-menu-next') || t.hasClass('calendar-nextyear')){ - showYear(1); - } else if (t.hasClass('calendar-menu-prev') || t.hasClass('calendar-prevyear')){ - showYear(-1); - } else if (t.hasClass('calendar-menu-month')){ - menu.find('.calendar-selected').removeClass('calendar-selected'); - t.addClass('calendar-selected'); - setDate(true); - } else if (t.hasClass('calendar-prevmonth')){ - showMonth(-1); - } else if (t.hasClass('calendar-nextmonth')){ - showMonth(1); - } else if (t.hasClass('calendar-text')){ - if (menu.is(':visible')){ - menu.hide(); - } else { - showSelectMenus(target); - } - } else if (t.hasClass('calendar-day')){ - if (t.hasClass('calendar-disabled')){return} - var oldValue = opts.current; - t.closest('div.calendar-body').find('.calendar-selected').removeClass('calendar-selected'); - t.addClass('calendar-selected'); - var parts = t.attr('abbr').split(','); - var y = parseInt(parts[0]); - var m = parseInt(parts[1]); - var d = parseInt(parts[2]); - opts.current = new Date(y, m-1, d); - opts.onSelect.call(target, opts.current); - if (!oldValue || oldValue.getTime() != opts.current.getTime()){ - opts.onChange.call(target, opts.current, oldValue); - } - if (opts.year != y || opts.month != m){ - opts.year = y; - opts.month = m; - show(target); - } - } - }); - function toTarget(t){ - var day = $(t).closest('.calendar-day'); - if (day.length){ - return day; - } else { - return $(t); - } - } - function setDate(hideMenu){ - var menu = $(target).find('.calendar-menu'); - var year = menu.find('.calendar-menu-year').val(); - var month = menu.find('.calendar-selected').attr('abbr'); - if (!isNaN(year)){ - opts.year = parseInt(year); - opts.month = parseInt(month); - show(target); - } - if (hideMenu){menu.hide()} - } - function showYear(delta){ - opts.year += delta; - show(target); - menu.find('.calendar-menu-year').val(opts.year); - } - function showMonth(delta){ - opts.month += delta; - if (opts.month > 12){ - opts.year++; - opts.month = 1; - } else if (opts.month < 1){ - opts.year--; - opts.month = 12; - } - show(target); - - menu.find('td.calendar-selected').removeClass('calendar-selected'); - menu.find('td:eq(' + (opts.month-1) + ')').addClass('calendar-selected'); - } - } - - /** - * show the select menu that can change year or month, if the menu is not be created then create it. - */ - function showSelectMenus(target){ - var opts = $.data(target, 'calendar').options; - $(target).find('.calendar-menu').show(); - - if ($(target).find('.calendar-menu-month-inner').is(':empty')){ - $(target).find('.calendar-menu-month-inner').empty(); - var t = $('
                                                ').appendTo($(target).find('.calendar-menu-month-inner')); - var idx = 0; - for(var i=0; i<3; i++){ - var tr = $('').appendTo(t); - for(var j=0; j<4; j++){ - $('').html(opts.months[idx++]).attr('abbr',idx).appendTo(tr); - } - } - } - - var body = $(target).find('.calendar-body'); - var sele = $(target).find('.calendar-menu'); - var seleYear = sele.find('.calendar-menu-year-inner'); - var seleMonth = sele.find('.calendar-menu-month-inner'); - - seleYear.find('input').val(opts.year).focus(); - seleMonth.find('td.calendar-selected').removeClass('calendar-selected'); - seleMonth.find('td:eq('+(opts.month-1)+')').addClass('calendar-selected'); - - sele._outerWidth(body._outerWidth()); - sele._outerHeight(body._outerHeight()); - seleMonth._outerHeight(sele.height() - seleYear._outerHeight()); - } - - /** - * get weeks data. - */ - function getWeeks(target, year, month){ - var opts = $.data(target, 'calendar').options; - var dates = []; - var lastDay = new Date(year, month, 0).getDate(); - for(var i=1; i<=lastDay; i++) dates.push([year,month,i]); - - // group date by week - var weeks = [], week = []; - var memoDay = -1; - while(dates.length > 0){ - var date = dates.shift(); - week.push(date); - var day = new Date(date[0],date[1]-1,date[2]).getDay(); - if (memoDay == day){ - day = 0; - } else if (day == (opts.firstDay==0 ? 7 : opts.firstDay) - 1){ - weeks.push(week); - week = []; - } - memoDay = day; - } - if (week.length){ - weeks.push(week); - } - - var firstWeek = weeks[0]; - if (firstWeek.length < 7){ - while(firstWeek.length < 7){ - var firstDate = firstWeek[0]; - var date = new Date(firstDate[0],firstDate[1]-1,firstDate[2]-1) - firstWeek.unshift([date.getFullYear(), date.getMonth()+1, date.getDate()]); - } - } else { - var firstDate = firstWeek[0]; - var week = []; - for(var i=1; i<=7; i++){ - var date = new Date(firstDate[0], firstDate[1]-1, firstDate[2]-i); - week.unshift([date.getFullYear(), date.getMonth()+1, date.getDate()]); - } - weeks.unshift(week); - } - - var lastWeek = weeks[weeks.length-1]; - while(lastWeek.length < 7){ - var lastDate = lastWeek[lastWeek.length-1]; - var date = new Date(lastDate[0], lastDate[1]-1, lastDate[2]+1); - lastWeek.push([date.getFullYear(), date.getMonth()+1, date.getDate()]); - } - if (weeks.length < 6){ - var lastDate = lastWeek[lastWeek.length-1]; - var week = []; - for(var i=1; i<=7; i++){ - var date = new Date(lastDate[0], lastDate[1]-1, lastDate[2]+i); - week.push([date.getFullYear(), date.getMonth()+1, date.getDate()]); - } - weeks.push(week); - } - - return weeks; - } - - /** - * show the calendar day. - */ - function show(target){ - var opts = $.data(target, 'calendar').options; - if (opts.current && !opts.validator.call(target, opts.current)){ - opts.current = null; - } - - var now = new Date(); - var todayInfo = now.getFullYear()+','+(now.getMonth()+1)+','+now.getDate(); - var currentInfo = opts.current ? (opts.current.getFullYear()+','+(opts.current.getMonth()+1)+','+opts.current.getDate()) : ''; - // calulate the saturday and sunday index - var saIndex = 6 - opts.firstDay; - var suIndex = saIndex + 1; - if (saIndex >= 7) saIndex -= 7; - if (suIndex >= 7) suIndex -= 7; - - $(target).find('.calendar-title span').html(opts.months[opts.month-1] + ' ' + opts.year); - - var body = $(target).find('div.calendar-body'); - body.children('table').remove(); - - var data = ['']; - data.push(''); - for(var i=opts.firstDay; i'+opts.weeks[i]+''); - } - for(var i=0; i'+opts.weeks[i]+''); - } - data.push(''); - - data.push(''); - var weeks = getWeeks(target, opts.year, opts.month); - for(var i=0; i'); - for(var j=0; j' + d + ''); - } - data.push(''); - } - data.push(''); - data.push('
                                                '); - - body.append(data.join('')); - body.children('table.calendar-dtable').prependTo(body); - - opts.onNavigate.call(target, opts.year, opts.month); - } - - $.fn.calendar = function(options, param){ - if (typeof options == 'string'){ - return $.fn.calendar.methods[options](this, param); - } - - options = options || {}; - return this.each(function(){ - var state = $.data(this, 'calendar'); - if (state){ - $.extend(state.options, options); - } else { - state = $.data(this, 'calendar', { - options:$.extend({}, $.fn.calendar.defaults, $.fn.calendar.parseOptions(this), options) - }); - init(this); - } - if (state.options.border == false){ - $(this).addClass('calendar-noborder'); - } - setSize(this); - bindEvents(this); - show(this); - $(this).find('div.calendar-menu').hide(); // hide the calendar menu - }); - }; - - $.fn.calendar.methods = { - options: function(jq){ - return $.data(jq[0], 'calendar').options; - }, - resize: function(jq, param){ - return jq.each(function(){ - setSize(this, param); - }); - }, - moveTo: function(jq, date){ - return jq.each(function(){ - if (!date){ - var now = new Date(); - $(this).calendar({ - year: now.getFullYear(), - month: now.getMonth()+1, - current: date - }); - return; - } - var opts = $(this).calendar('options'); - if (opts.validator.call(this, date)){ - var oldValue = opts.current; - $(this).calendar({ - year: date.getFullYear(), - month: date.getMonth()+1, - current: date - }); - if (!oldValue || oldValue.getTime() != date.getTime()){ - opts.onChange.call(this, opts.current, oldValue); - } - } - }); - } - }; - - $.fn.calendar.parseOptions = function(target){ - var t = $(target); - return $.extend({}, $.parser.parseOptions(target, [ - {firstDay:'number',fit:'boolean',border:'boolean'} - ])); - }; - - $.fn.calendar.defaults = { - width:180, - height:180, - fit:false, - border:true, - firstDay:0, - weeks:['S','M','T','W','T','F','S'], - months:['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], - year:new Date().getFullYear(), - month:new Date().getMonth()+1, - current:(function(){ - var d = new Date(); - return new Date(d.getFullYear(), d.getMonth(), d.getDate()); - })(), - - formatter:function(date){return date.getDate()}, - styler:function(date){return ''}, - validator:function(date){return true}, - - onSelect: function(date){}, - onChange: function(newDate, oldDate){}, - onNavigate: function(year, month){} - }; -})(jQuery); diff --git a/vendor/FHC-vendor/easyui/src/jquery.combobox.js b/vendor/FHC-vendor/easyui/src/jquery.combobox.js deleted file mode 100644 index ed4b3099c..000000000 --- a/vendor/FHC-vendor/easyui/src/jquery.combobox.js +++ /dev/null @@ -1,566 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * combobox - jQuery EasyUI - * - * Dependencies: - * combo - * - */ -(function($){ - var COMBOBOX_SERNO = 0; - - function getRowIndex(target, value){ - var state = $.data(target, 'combobox'); - var opts = state.options; - var data = state.data; - for(var i=0; i panel.height()){ - var h = panel.scrollTop() + item.position().top + item.outerHeight() - panel.height(); - panel.scrollTop(h); - } - } - } - - function nav(target, dir){ - var opts = $.data(target, 'combobox').options; - var panel = $(target).combobox('panel'); - var item = panel.children('div.combobox-item-hover'); - if (!item.length){ - item = panel.children('div.combobox-item-selected'); - } - item.removeClass('combobox-item-hover'); - var firstSelector = 'div.combobox-item:visible:not(.combobox-item-disabled):first'; - var lastSelector = 'div.combobox-item:visible:not(.combobox-item-disabled):last'; - if (!item.length){ - item = panel.children(dir=='next' ? firstSelector : lastSelector); -// item = panel.children('div.combobox-item:visible:' + (dir=='next'?'first':'last')); - } else { - if (dir == 'next'){ - item = item.nextAll(firstSelector); -// item = item.nextAll('div.combobox-item:visible:first'); - if (!item.length){ - item = panel.children(firstSelector); -// item = panel.children('div.combobox-item:visible:first'); - } - } else { - item = item.prevAll(firstSelector); -// item = item.prevAll('div.combobox-item:visible:first'); - if (!item.length){ - item = panel.children(lastSelector); -// item = panel.children('div.combobox-item:visible:last'); - } - } - } - if (item.length){ - item.addClass('combobox-item-hover'); - var row = opts.finder.getRow(target, item); - if (row){ - scrollTo(target, row[opts.valueField]); - if (opts.selectOnNavigation){ - select(target, row[opts.valueField]); - } - } - } - } - - /** - * select the specified value - */ - function select(target, value){ - var opts = $.data(target, 'combobox').options; - var values = $(target).combo('getValues'); - if ($.inArray(value+'', values) == -1){ - if (opts.multiple){ - values.push(value); - } else { - values = [value]; - } - setValues(target, values); - opts.onSelect.call(target, opts.finder.getRow(target, value)); - } - } - - /** - * unselect the specified value - */ - function unselect(target, value){ - var opts = $.data(target, 'combobox').options; - var values = $(target).combo('getValues'); - var index = $.inArray(value+'', values); - if (index >= 0){ - values.splice(index, 1); - setValues(target, values); - opts.onUnselect.call(target, opts.finder.getRow(target, value)); - } - } - - /** - * set values - */ - function setValues(target, values, remainText){ - var opts = $.data(target, 'combobox').options; - var panel = $(target).combo('panel'); - - if (!$.isArray(values)){values = values.split(opts.separator)} - panel.find('div.combobox-item-selected').removeClass('combobox-item-selected'); - var vv = [], ss = []; - for(var i=0; i'); - dd.push(opts.groupFormatter ? opts.groupFormatter.call(target, g) : g); - dd.push(''); - } - } else { - group = undefined; - } - - var cls = 'combobox-item' + (row.disabled ? ' combobox-item-disabled' : '') + (g ? ' combobox-gitem' : ''); - dd.push('
                                                '); - dd.push(opts.formatter ? opts.formatter.call(target, row) : s); - dd.push('
                                                '); - -// if (item['selected']){ -// (function(){ -// for(var i=0; i= 0){ - vv.push(v); - } - }); - t.combobox('setValues', vv); - if (!opts.multiple){ - t.combobox('hidePanel'); - } - } - - /** - * create the component - */ - function create(target){ - var state = $.data(target, 'combobox'); - var opts = state.options; - - COMBOBOX_SERNO++; - state.itemIdPrefix = '_easyui_combobox_i' + COMBOBOX_SERNO; - state.groupIdPrefix = '_easyui_combobox_g' + COMBOBOX_SERNO; - - $(target).addClass('combobox-f'); - $(target).combo($.extend({}, opts, { - onShowPanel: function(){ - $(target).combo('panel').find('div.combobox-item:hidden,div.combobox-group:hidden').show(); - scrollTo(target, $(target).combobox('getValue')); - opts.onShowPanel.call(target); - } - })); - - $(target).combo('panel').unbind().bind('mouseover', function(e){ - $(this).children('div.combobox-item-hover').removeClass('combobox-item-hover'); - var item = $(e.target).closest('div.combobox-item'); - if (!item.hasClass('combobox-item-disabled')){ - item.addClass('combobox-item-hover'); - } - e.stopPropagation(); - }).bind('mouseout', function(e){ - $(e.target).closest('div.combobox-item').removeClass('combobox-item-hover'); - e.stopPropagation(); - }).bind('click', function(e){ - var item = $(e.target).closest('div.combobox-item'); - if (!item.length || item.hasClass('combobox-item-disabled')){return} - var row = opts.finder.getRow(target, item); - if (!row){return} - var value = row[opts.valueField]; - if (opts.multiple){ - if (item.hasClass('combobox-item-selected')){ - unselect(target, value); - } else { - select(target, value); - } - } else { - select(target, value); - $(target).combo('hidePanel'); - } - e.stopPropagation(); - }); - } - - $.fn.combobox = function(options, param){ - if (typeof options == 'string'){ - var method = $.fn.combobox.methods[options]; - if (method){ - return method(this, param); - } else { - return this.combo(options, param); - } - } - - options = options || {}; - return this.each(function(){ - var state = $.data(this, 'combobox'); - if (state){ - $.extend(state.options, options); - } else { - state = $.data(this, 'combobox', { - options: $.extend({}, $.fn.combobox.defaults, $.fn.combobox.parseOptions(this), options), - data: [] - }); - } - create(this); - if (state.options.data){ - loadData(this, state.options.data); - } else { - var data = $.fn.combobox.parseData(this); - if (data.length){ - loadData(this, data); - } - } - request(this); - }); - }; - - - $.fn.combobox.methods = { - options: function(jq){ - var copts = jq.combo('options'); - return $.extend($.data(jq[0], 'combobox').options, { - width: copts.width, - height: copts.height, - originalValue: copts.originalValue, - disabled: copts.disabled, - readonly: copts.readonly - }); - }, - getData: function(jq){ - return $.data(jq[0], 'combobox').data; - }, - setValues: function(jq, values){ - return jq.each(function(){ - setValues(this, values); - }); - }, - setValue: function(jq, value){ - return jq.each(function(){ - setValues(this, [value]); - }); - }, - clear: function(jq){ - return jq.each(function(){ - $(this).combo('clear'); - var panel = $(this).combo('panel'); - panel.find('div.combobox-item-selected').removeClass('combobox-item-selected'); - }); - }, - reset: function(jq){ - return jq.each(function(){ - var opts = $(this).combobox('options'); - if (opts.multiple){ - $(this).combobox('setValues', opts.originalValue); - } else { - $(this).combobox('setValue', opts.originalValue); - } - }); - }, - loadData: function(jq, data){ - return jq.each(function(){ - loadData(this, data); - }); - }, - reload: function(jq, url){ - return jq.each(function(){ - if (typeof url == 'string'){ - request(this, url); - } else { - if (url){ - var opts = $(this).combobox('options'); - opts.queryParams = url; - } - request(this); - } - }); - }, - select: function(jq, value){ - return jq.each(function(){ - select(this, value); - }); - }, - unselect: function(jq, value){ - return jq.each(function(){ - unselect(this, value); - }); - } - }; - - $.fn.combobox.parseOptions = function(target){ - var t = $(target); - return $.extend({}, $.fn.combo.parseOptions(target), $.parser.parseOptions(target,[ - 'valueField','textField','groupField','mode','method','url' - ])); - }; - - $.fn.combobox.parseData = function(target){ - var data = []; - var opts = $(target).combobox('options'); - $(target).children().each(function(){ - if (this.tagName.toLowerCase() == 'optgroup'){ - var group = $(this).attr('label'); - $(this).children().each(function(){ - _parseItem(this, group); - }); - } else { - _parseItem(this); - } - }); - return data; - - function _parseItem(el, group){ - var t = $(el); - var row = {}; - row[opts.valueField] = t.attr('value')!=undefined ? t.attr('value') : t.text(); - row[opts.textField] = t.text(); - row['selected'] = t.is(':selected'); - row['disabled'] = t.is(':disabled'); - if (group){ - opts.groupField = opts.groupField || 'group'; - row[opts.groupField] = group; - } - data.push(row); - } - }; - - $.fn.combobox.defaults = $.extend({}, $.fn.combo.defaults, { - valueField: 'value', - textField: 'text', - groupField: null, - groupFormatter: function(group){return group;}, - mode: 'local', // or 'remote' - method: 'post', - url: null, - data: null, - queryParams: {}, - - keyHandler: { - up: function(e){nav(this,'prev');e.preventDefault()}, - down: function(e){nav(this,'next');e.preventDefault()}, - left: function(e){}, - right: function(e){}, - enter: function(e){doEnter(this)}, - query: function(q,e){doQuery(this, q)} - }, - filter: function(q, row){ - var opts = $(this).combobox('options'); - return row[opts.textField].toLowerCase().indexOf(q.toLowerCase()) == 0; - }, - formatter: function(row){ - var opts = $(this).combobox('options'); - return row[opts.textField]; - }, - loader: function(param, success, error){ - var opts = $(this).combobox('options'); - if (!opts.url) return false; - $.ajax({ - type: opts.method, - url: opts.url, - data: param, - dataType: 'json', - success: function(data){ - success(data); - }, - error: function(){ - error.apply(this, arguments); - } - }); - }, - loadFilter: function(data){ - return data; - }, - finder:{ - getEl:function(target, value){ - var index = getRowIndex(target, value); - var id = $.data(target, 'combobox').itemIdPrefix + '_' + index; - return $('#'+id); - }, - getRow:function(target, p){ - var state = $.data(target, 'combobox'); - var index = (p instanceof jQuery) ? p.attr('id').substr(state.itemIdPrefix.length+1) : getRowIndex(target, p); - return state.data[parseInt(index)]; - } - }, - - onBeforeLoad: function(param){}, - onLoadSuccess: function(){}, - onLoadError: function(){}, - onSelect: function(record){}, - onUnselect: function(record){} - }); -})(jQuery); diff --git a/vendor/FHC-vendor/easyui/src/jquery.datebox.js b/vendor/FHC-vendor/easyui/src/jquery.datebox.js deleted file mode 100644 index c25f7d01b..000000000 --- a/vendor/FHC-vendor/easyui/src/jquery.datebox.js +++ /dev/null @@ -1,285 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * datebox - jQuery EasyUI - * - * Dependencies: - * calendar - * combo - * - */ -(function($){ - /** - * create date box - */ - function createBox(target){ - var state = $.data(target, 'datebox'); - var opts = state.options; - - $(target).addClass('datebox-f').combo($.extend({}, opts, { - onShowPanel:function(){ - bindEvents(this); - setButtons(this); - setCalendar(this); - setValue(this, $(this).datebox('getText'), true); - opts.onShowPanel.call(this); - } - })); - - /** - * if the calendar isn't created, create it. - */ - if (!state.calendar){ - var panel = $(target).combo('panel').css('overflow','hidden'); - panel.panel('options').onBeforeDestroy = function(){ - var c = $(this).find('.calendar-shared'); - if (c.length){ - c.insertBefore(c[0].pholder); - } - }; - var cc = $('
                                                ').prependTo(panel); - if (opts.sharedCalendar){ - var c = $(opts.sharedCalendar); - if (!c[0].pholder){ - c[0].pholder = $('').insertAfter(c); - } - c.addClass('calendar-shared').appendTo(cc); - if (!c.hasClass('calendar')){ - c.calendar(); - } - state.calendar = c; - } else { - state.calendar = $('
                                                ').appendTo(cc).calendar(); - } - - $.extend(state.calendar.calendar('options'), { - fit:true, - border:false, - onSelect:function(date){ - var target = this.target; - var opts = $(target).datebox('options'); - setValue(target, opts.formatter.call(target, date)); - $(target).combo('hidePanel'); - opts.onSelect.call(target, date); - } - }); - } - - $(target).combo('textbox').parent().addClass('datebox'); - $(target).datebox('initValue', opts.value); - - function bindEvents(target){ - var opts = $(target).datebox('options'); - var panel = $(target).combo('panel'); - panel.unbind('.datebox').bind('click.datebox', function(e){ - if ($(e.target).hasClass('datebox-button-a')){ - var index = parseInt($(e.target).attr('datebox-button-index')); - opts.buttons[index].handler.call(e.target, target); - } - }); - } - function setButtons(target){ - var panel = $(target).combo('panel'); - if (panel.children('div.datebox-button').length){return} - var button = $('
                                                ').appendTo(panel); - var tr = button.find('tr'); - for(var i=0; i').appendTo(tr); - var btn = opts.buttons[i]; - var t = $('').html($.isFunction(btn.text) ? btn.text(target) : btn.text).appendTo(td); - t.attr('datebox-button-index', i); - } - tr.find('td').css('width', (100/opts.buttons.length)+'%'); - } - function setCalendar(target){ - var panel = $(target).combo('panel'); - var cc = panel.children('div.datebox-calendar-inner'); - panel.children()._outerWidth(panel.width()); - state.calendar.appendTo(cc); - state.calendar[0].target = target; - if (opts.panelHeight != 'auto'){ - var height = panel.height(); - panel.children().not(cc).each(function(){ - height -= $(this).outerHeight(); - }); - cc._outerHeight(height); - } - state.calendar.calendar('resize'); - } - } - - /** - * called when user inputs some value in text box - */ - function doQuery(target, q){ - setValue(target, q, true); - } - - /** - * called when user press enter key - */ - function doEnter(target){ - var state = $.data(target, 'datebox'); - var opts = state.options; - var current = state.calendar.calendar('options').current; - if (current){ - setValue(target, opts.formatter.call(target, current)); - $(target).combo('hidePanel'); - } - } - - function setValue(target, value, remainText){ - var state = $.data(target, 'datebox'); - var opts = state.options; - var calendar = state.calendar; - calendar.calendar('moveTo', opts.parser.call(target, value)); - if (remainText){ - $(target).combo('setValue', value); - } else { - if (value){ - value = opts.formatter.call(target, calendar.calendar('options').current); - } - $(target).combo('setText', value).combo('setValue', value); - } - } - - $.fn.datebox = function(options, param){ - if (typeof options == 'string'){ - var method = $.fn.datebox.methods[options]; - if (method){ - return method(this, param); - } else { - return this.combo(options, param); - } - } - - options = options || {}; - return this.each(function(){ - var state = $.data(this, 'datebox'); - if (state){ - $.extend(state.options, options); - } else { - $.data(this, 'datebox', { - options: $.extend({}, $.fn.datebox.defaults, $.fn.datebox.parseOptions(this), options) - }); - } - createBox(this); - }); - }; - - $.fn.datebox.methods = { - options: function(jq){ - var copts = jq.combo('options'); - return $.extend($.data(jq[0], 'datebox').options, { - width: copts.width, - height: copts.height, - originalValue: copts.originalValue, - disabled: copts.disabled, - readonly: copts.readonly - }); - }, - cloneFrom: function(jq, from){ - return jq.each(function(){ - $(this).combo('cloneFrom', from); - $.data(this, 'datebox', { - options: $.extend(true, {}, $(from).datebox('options')), - calendar: $(from).datebox('calendar') - }); - $(this).addClass('datebox-f'); - }); - }, - calendar: function(jq){ // get the calendar object - return $.data(jq[0], 'datebox').calendar; - }, - initValue: function(jq, value){ - return jq.each(function(){ - var opts = $(this).datebox('options'); - var value = opts.value; - if (value){ - value = opts.formatter.call(this, opts.parser.call(this, value)); - } - $(this).combo('initValue', value).combo('setText', value); - }); - }, - setValue: function(jq, value){ - return jq.each(function(){ - setValue(this, value); - }); - }, - reset: function(jq){ - return jq.each(function(){ - var opts = $(this).datebox('options'); - $(this).datebox('setValue', opts.originalValue); - }); - } - }; - - $.fn.datebox.parseOptions = function(target){ - return $.extend({}, $.fn.combo.parseOptions(target), $.parser.parseOptions(target, ['sharedCalendar'])); - }; - - $.fn.datebox.defaults = $.extend({}, $.fn.combo.defaults, { - panelWidth:180, - panelHeight:'auto', - sharedCalendar:null, - - keyHandler: { - up:function(e){}, - down:function(e){}, - left: function(e){}, - right: function(e){}, - enter:function(e){doEnter(this)}, - query:function(q,e){doQuery(this, q)} - }, - - currentText:'Today', - closeText:'Close', - okText:'Ok', - - buttons:[{ - text: function(target){return $(target).datebox('options').currentText;}, - handler: function(target){ - var now = new Date(); - $(target).datebox('calendar').calendar({ - year:now.getFullYear(), - month:now.getMonth()+1, - current:new Date(now.getFullYear(), now.getMonth(), now.getDate()) - }); - doEnter(target); - } - },{ - text: function(target){return $(target).datebox('options').closeText;}, - handler: function(target){ - $(this).closest('div.combo-panel').panel('close'); - } - }], - - formatter:function(date){ - var y = date.getFullYear(); - var m = date.getMonth()+1; - var d = date.getDate(); - return (m<10?('0'+m):m)+'/'+(d<10?('0'+d):d)+'/'+y; - }, - parser:function(s){ - if (!s) return new Date(); - var ss = s.split('/'); - var m = parseInt(ss[0],10); - var d = parseInt(ss[1],10); - var y = parseInt(ss[2],10); - if (!isNaN(y) && !isNaN(m) && !isNaN(d)){ - return new Date(y,m-1,d); - } else { - return new Date(); - } - }, - - onSelect:function(date){} - }); -})(jQuery); diff --git a/vendor/FHC-vendor/easyui/src/jquery.draggable.js b/vendor/FHC-vendor/easyui/src/jquery.draggable.js deleted file mode 100644 index fe8786c83..000000000 --- a/vendor/FHC-vendor/easyui/src/jquery.draggable.js +++ /dev/null @@ -1,395 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * draggable - jQuery EasyUI - * - */ -(function($){ - function drag(e){ - var state = $.data(e.data.target, 'draggable'); - var opts = state.options; - var proxy = state.proxy; - - var dragData = e.data; - var left = dragData.startLeft + e.pageX - dragData.startX; - var top = dragData.startTop + e.pageY - dragData.startY; - - if (proxy){ - if (proxy.parent()[0] == document.body){ - if (opts.deltaX != null && opts.deltaX != undefined){ - left = e.pageX + opts.deltaX; - } else { - left = e.pageX - e.data.offsetWidth; - } - if (opts.deltaY != null && opts.deltaY != undefined){ - top = e.pageY + opts.deltaY; - } else { - top = e.pageY - e.data.offsetHeight; - } - } else { - if (opts.deltaX != null && opts.deltaX != undefined){ - left += e.data.offsetWidth + opts.deltaX; - } - if (opts.deltaY != null && opts.deltaY != undefined){ - top += e.data.offsetHeight + opts.deltaY; - } - } - } - - if (e.data.parent != document.body) { - left += $(e.data.parent).scrollLeft(); - top += $(e.data.parent).scrollTop(); - } - - if (opts.axis == 'h') { - dragData.left = left; - } else if (opts.axis == 'v') { - dragData.top = top; - } else { - dragData.left = left; - dragData.top = top; - } - } - - function applyDrag(e){ - var state = $.data(e.data.target, 'draggable'); - var opts = state.options; - var proxy = state.proxy; - if (!proxy){ - proxy = $(e.data.target); - } - proxy.css({ - left:e.data.left, - top:e.data.top - }); - $('body').css('cursor', opts.cursor); - } - - function doDown(e){ - if (!$.fn.draggable.isDragging){return false;} - - var state = $.data(e.data.target, 'draggable'); - var opts = state.options; - - var droppables = $('.droppable').filter(function(){ - return e.data.target != this; - }).filter(function(){ - var accept = $.data(this, 'droppable').options.accept; - if (accept){ - return $(accept).filter(function(){ - return this == e.data.target; - }).length > 0; - } else { - return true; - } - }); - state.droppables = droppables; - - var proxy = state.proxy; - if (!proxy){ - if (opts.proxy){ - if (opts.proxy == 'clone'){ - proxy = $(e.data.target).clone().insertAfter(e.data.target); - } else { - proxy = opts.proxy.call(e.data.target, e.data.target); - } - state.proxy = proxy; - } else { - proxy = $(e.data.target); - } - } - - proxy.css('position', 'absolute'); - drag(e); - applyDrag(e); - - opts.onStartDrag.call(e.data.target, e); - return false; - } - - function doMove(e){ - if (!$.fn.draggable.isDragging){return false;} - - var state = $.data(e.data.target, 'draggable'); - drag(e); - if (state.options.onDrag.call(e.data.target, e) != false){ - applyDrag(e); - } - - var source = e.data.target; - state.droppables.each(function(){ - var dropObj = $(this); - if (dropObj.droppable('options').disabled){return;} - - var p2 = dropObj.offset(); - if (e.pageX > p2.left && e.pageX < p2.left + dropObj.outerWidth() - && e.pageY > p2.top && e.pageY < p2.top + dropObj.outerHeight()){ - if (!this.entered){ - $(this).trigger('_dragenter', [source]); - this.entered = true; - } - $(this).trigger('_dragover', [source]); - } else { - if (this.entered){ - $(this).trigger('_dragleave', [source]); - this.entered = false; - } - } - }); - - return false; - } - - function doUp(e){ - if (!$.fn.draggable.isDragging){ - clearDragging(); - return false; - } - - doMove(e); - - var state = $.data(e.data.target, 'draggable'); - var proxy = state.proxy; - var opts = state.options; - if (opts.revert){ - if (checkDrop() == true){ - $(e.data.target).css({ - position:e.data.startPosition, - left:e.data.startLeft, - top:e.data.startTop - }); - } else { - if (proxy){ - var left, top; - if (proxy.parent()[0] == document.body){ - left = e.data.startX - e.data.offsetWidth; - top = e.data.startY - e.data.offsetHeight; - } else { - left = e.data.startLeft; - top = e.data.startTop; - } - proxy.animate({ - left: left, - top: top - }, function(){ - removeProxy(); - }); - } else { - $(e.data.target).animate({ - left:e.data.startLeft, - top:e.data.startTop - }, function(){ - $(e.data.target).css('position', e.data.startPosition); - }); - } - } - } else { - $(e.data.target).css({ - position:'absolute', - left:e.data.left, - top:e.data.top - }); - checkDrop(); - } - - opts.onStopDrag.call(e.data.target, e); - - clearDragging(); - - function removeProxy(){ - if (proxy){ - proxy.remove(); - } - state.proxy = null; - } - - function checkDrop(){ - var dropped = false; - state.droppables.each(function(){ - var dropObj = $(this); - if (dropObj.droppable('options').disabled){return;} - - var p2 = dropObj.offset(); - if (e.pageX > p2.left && e.pageX < p2.left + dropObj.outerWidth() - && e.pageY > p2.top && e.pageY < p2.top + dropObj.outerHeight()){ - if (opts.revert){ - $(e.data.target).css({ - position:e.data.startPosition, - left:e.data.startLeft, - top:e.data.startTop - }); - } - $(this).trigger('_drop', [e.data.target]); - removeProxy(); - dropped = true; - this.entered = false; - return false; - } - }); - if (!dropped && !opts.revert){ - removeProxy(); - } - return dropped; - } - - return false; - } - - function clearDragging(){ - if ($.fn.draggable.timer){ - clearTimeout($.fn.draggable.timer); - $.fn.draggable.timer = undefined; - } - $(document).unbind('.draggable'); - $.fn.draggable.isDragging = false; - setTimeout(function(){ - $('body').css('cursor',''); - },100); - } - - $.fn.draggable = function(options, param){ - if (typeof options == 'string'){ - return $.fn.draggable.methods[options](this, param); - } - - return this.each(function(){ - var opts; - var state = $.data(this, 'draggable'); - if (state) { - state.handle.unbind('.draggable'); - opts = $.extend(state.options, options); - } else { - opts = $.extend({}, $.fn.draggable.defaults, $.fn.draggable.parseOptions(this), options || {}); - } - var handle = opts.handle ? (typeof opts.handle=='string' ? $(opts.handle, this) : opts.handle) : $(this); - - $.data(this, 'draggable', { - options: opts, - handle: handle - }); - - if (opts.disabled) { - $(this).css('cursor', ''); - return; - } - - handle.unbind('.draggable').bind('mousemove.draggable', {target:this}, function(e){ - if ($.fn.draggable.isDragging){return} - var opts = $.data(e.data.target, 'draggable').options; - if (checkArea(e)){ - $(this).css('cursor', opts.cursor); - } else { - $(this).css('cursor', ''); - } - }).bind('mouseleave.draggable', {target:this}, function(e){ - $(this).css('cursor', ''); - }).bind('mousedown.draggable', {target:this}, function(e){ - if (checkArea(e) == false) return; - $(this).css('cursor', ''); - - var position = $(e.data.target).position(); - var offset = $(e.data.target).offset(); - var data = { - startPosition: $(e.data.target).css('position'), - startLeft: position.left, - startTop: position.top, - left: position.left, - top: position.top, - startX: e.pageX, - startY: e.pageY, - offsetWidth: (e.pageX - offset.left), - offsetHeight: (e.pageY - offset.top), - target: e.data.target, - parent: $(e.data.target).parent()[0] - }; - - $.extend(e.data, data); - var opts = $.data(e.data.target, 'draggable').options; - if (opts.onBeforeDrag.call(e.data.target, e) == false) return; - - $(document).bind('mousedown.draggable', e.data, doDown); - $(document).bind('mousemove.draggable', e.data, doMove); - $(document).bind('mouseup.draggable', e.data, doUp); - - $.fn.draggable.timer = setTimeout(function(){ - $.fn.draggable.isDragging = true; - doDown(e); - }, opts.delay); - return false; - }); - - // check if the handle can be dragged - function checkArea(e) { - var state = $.data(e.data.target, 'draggable'); - var handle = state.handle; - var offset = $(handle).offset(); - var width = $(handle).outerWidth(); - var height = $(handle).outerHeight(); - var t = e.pageY - offset.top; - var r = offset.left + width - e.pageX; - var b = offset.top + height - e.pageY; - var l = e.pageX - offset.left; - - return Math.min(t,r,b,l) > state.options.edge; - } - - }); - }; - - $.fn.draggable.methods = { - options: function(jq){ - return $.data(jq[0], 'draggable').options; - }, - proxy: function(jq){ - return $.data(jq[0], 'draggable').proxy; - }, - enable: function(jq){ - return jq.each(function(){ - $(this).draggable({disabled:false}); - }); - }, - disable: function(jq){ - return jq.each(function(){ - $(this).draggable({disabled:true}); - }); - } - }; - - $.fn.draggable.parseOptions = function(target){ - var t = $(target); - return $.extend({}, - $.parser.parseOptions(target, ['cursor','handle','axis', - {'revert':'boolean','deltaX':'number','deltaY':'number','edge':'number','delay':'number'}]), { - disabled: (t.attr('disabled') ? true : undefined) - }); - }; - - $.fn.draggable.defaults = { - proxy:null, // 'clone' or a function that will create the proxy object, - // the function has the source parameter that indicate the source object dragged. - revert:false, - cursor:'move', - deltaX:null, - deltaY:null, - handle: null, - disabled: false, - edge:0, - axis:null, // v or h - delay:100, - - onBeforeDrag: function(e){}, - onStartDrag: function(e){}, - onDrag: function(e){}, - onStopDrag: function(e){} - }; - - $.fn.draggable.isDragging = false; - -})(jQuery); diff --git a/vendor/FHC-vendor/easyui/src/jquery.droppable.js b/vendor/FHC-vendor/easyui/src/jquery.droppable.js deleted file mode 100644 index 73e49718b..000000000 --- a/vendor/FHC-vendor/easyui/src/jquery.droppable.js +++ /dev/null @@ -1,81 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * droppable - jQuery EasyUI - * - */ -(function($){ - function init(target){ - $(target).addClass('droppable'); - $(target).bind('_dragenter', function(e, source){ - $.data(target, 'droppable').options.onDragEnter.apply(target, [e, source]); - }); - $(target).bind('_dragleave', function(e, source){ - $.data(target, 'droppable').options.onDragLeave.apply(target, [e, source]); - }); - $(target).bind('_dragover', function(e, source){ - $.data(target, 'droppable').options.onDragOver.apply(target, [e, source]); - }); - $(target).bind('_drop', function(e, source){ - $.data(target, 'droppable').options.onDrop.apply(target, [e, source]); - }); - } - - $.fn.droppable = function(options, param){ - if (typeof options == 'string'){ - return $.fn.droppable.methods[options](this, param); - } - - options = options || {}; - return this.each(function(){ - var state = $.data(this, 'droppable'); - if (state){ - $.extend(state.options, options); - } else { - init(this); - $.data(this, 'droppable', { - options: $.extend({}, $.fn.droppable.defaults, $.fn.droppable.parseOptions(this), options) - }); - } - }); - }; - - $.fn.droppable.methods = { - options: function(jq){ - return $.data(jq[0], 'droppable').options; - }, - enable: function(jq){ - return jq.each(function(){ - $(this).droppable({disabled:false}); - }); - }, - disable: function(jq){ - return jq.each(function(){ - $(this).droppable({disabled:true}); - }); - } - }; - - $.fn.droppable.parseOptions = function(target){ - var t = $(target); - return $.extend({}, $.parser.parseOptions(target, ['accept']), { - disabled: (t.attr('disabled') ? true : undefined) - }); - }; - - $.fn.droppable.defaults = { - accept:null, - disabled:false, - onDragEnter:function(e, source){}, - onDragOver:function(e, source){}, - onDragLeave:function(e, source){}, - onDrop:function(e, source){} - }; -})(jQuery); diff --git a/vendor/FHC-vendor/easyui/src/jquery.form.js b/vendor/FHC-vendor/easyui/src/jquery.form.js deleted file mode 100644 index 0e77c4f03..000000000 --- a/vendor/FHC-vendor/easyui/src/jquery.form.js +++ /dev/null @@ -1,387 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * form - jQuery EasyUI - * - */ -(function($){ - /** - * submit the form - */ - function ajaxSubmit(target, options){ - var opts = $.data(target, 'form').options; - $.extend(opts, options||{}); - - var param = $.extend({}, opts.queryParams); - if (opts.onSubmit.call(target, param) == false){return;} - $(target).find('.textbox-text:focus').blur(); - - var frameId = 'easyui_frame_' + (new Date().getTime()); - var frame = $('').appendTo('body') - frame.attr('src', window.ActiveXObject ? 'javascript:false' : 'about:blank'); - frame.css({ - position:'absolute', - top:-1000, - left:-1000 - }); - frame.bind('load', cb); - - submit(param); - - function submit(param){ - var form = $(target); - if (opts.url){ - form.attr('action', opts.url); - } - var t = form.attr('target'), a = form.attr('action'); - form.attr('target', frameId); - var paramFields = $(); - try { - for(var n in param){ - var field = $('').val(param[n]).appendTo(form); - paramFields = paramFields.add(field); - } - checkState(); - form[0].submit(); - } finally { - form.attr('action', a); - t ? form.attr('target', t) : form.removeAttr('target'); - paramFields.remove(); - } - } - - function checkState(){ - var f = $('#'+frameId); - if (!f.length){return} - try{ - var s = f.contents()[0].readyState; - if (s && s.toLowerCase() == 'uninitialized'){ - setTimeout(checkState, 100); - } - } catch(e){ - cb(); - } - } - - var checkCount = 10; - function cb(){ - var f = $('#'+frameId); - if (!f.length){return} - f.unbind(); - var data = ''; - try{ - var body = f.contents().find('body'); - data = body.html(); - if (data == ''){ - if (--checkCount){ - setTimeout(cb, 100); - return; - } - } - var ta = body.find('>textarea'); - if (ta.length){ - data = ta.val(); - } else { - var pre = body.find('>pre'); - if (pre.length){ - data = pre.html(); - } - } - } catch(e){ - } - opts.success(data); - setTimeout(function(){ - f.unbind(); - f.remove(); - }, 100); - } - } - - /** - * load form data - * if data is a URL string type load from remote site, - * otherwise load from local data object. - */ - function load(target, data){ - var opts = $.data(target, 'form').options; - - if (typeof data == 'string'){ - var param = {}; - if (opts.onBeforeLoad.call(target, param) == false) return; - - $.ajax({ - url: data, - data: param, - dataType: 'json', - success: function(data){ - _load(data); - }, - error: function(){ - opts.onLoadError.apply(target, arguments); - } - }); - } else { - _load(data); - } - - function _load(data){ - var form = $(target); - for(var name in data){ - var val = data[name]; - if (!_checkField(name, val)){ - if (!_loadBox(name, val)){ - form.find('input[name="'+name+'"]').val(val); - form.find('textarea[name="'+name+'"]').val(val); - form.find('select[name="'+name+'"]').val(val); - } - } - } - opts.onLoadSuccess.call(target, data); - form.form('validate'); - } - - /** - * check the checkbox and radio fields - */ - function _checkField(name, val){ - var cc = $(target).find('[switchbuttonName="'+name+'"]'); - if (cc.length){ - cc.switchbutton('uncheck'); - cc.each(function(){ - if (_isChecked($(this).switchbutton('options').value, val)){ - $(this).switchbutton('check'); - } - }); - return true; - } - cc = $(target).find('input[name="'+name+'"][type=radio], input[name="'+name+'"][type=checkbox]'); - if (cc.length){ - cc._propAttr('checked', false); - cc.each(function(){ - if (_isChecked($(this).val(), val)){ - $(this)._propAttr('checked', true); - } - }); - return true; - } - return false; - } - function _isChecked(v, val){ - if (v == String(val) || $.inArray(v, $.isArray(val)?val:[val]) >= 0){ - return true; - } else { - return false; - } - } - - function _loadBox(name, val){ - var field = $(target).find('[textboxName="'+name+'"],[sliderName="'+name+'"]'); - if (field.length){ - for(var i=0; i=0; i--){ - var type = opts.fieldTypes[i]; - var field = form.find('.'+type+'-f'); - if (field.length && field[type]){ - field[type]('clear'); - } - } - form.form('validate'); - } - - function reset(target){ - target.reset(); - var form = $(target); - var opts = $.data(target, 'form').options; - for(var i=opts.fieldTypes.length-1; i>=0; i--){ - var type = opts.fieldTypes[i]; - var field = form.find('.'+type+'-f'); - if (field.length && field[type]){ - field[type]('reset'); - } - } - form.form('validate'); - } - - /** - * set the form to make it can submit with ajax. - */ - function setForm(target){ - var options = $.data(target, 'form').options; - $(target).unbind('.form'); - if (options.ajax){ - $(target).bind('submit.form', function(){ - setTimeout(function(){ - ajaxSubmit(target, options); - }, 0); - return false; - }); - } - $(target).bind('_change.form', function(e, t){ - options.onChange.call(this, t); - }).bind('change.form', function(e){ - var t = e.target; - if (!$(t).hasClass('textbox-text')){ - options.onChange.call(this, t); - } - }); - setValidation(target, options.novalidate); - } - - function initForm(target, options){ - options = options || {}; - var state = $.data(target, 'form'); - if (state){ - $.extend(state.options, options); - } else { - $.data(target, 'form', { - options: $.extend({}, $.fn.form.defaults, $.fn.form.parseOptions(target), options) - }); - } - } - - function validate(target){ - if ($.fn.validatebox){ - var t = $(target); - t.find('.validatebox-text:not(:disabled)').validatebox('validate'); - var invalidbox = t.find('.validatebox-invalid'); - invalidbox.filter(':not(:disabled):first').focus(); - return invalidbox.length == 0; - } - return true; - } - - function setValidation(target, novalidate){ - var opts = $.data(target, 'form').options; - opts.novalidate = novalidate; - $(target).find('.validatebox-text:not(:disabled)').validatebox(novalidate ? 'disableValidation' : 'enableValidation'); - } - - $.fn.form = function(options, param){ - if (typeof options == 'string'){ - this.each(function(){ - initForm(this); - }); - return $.fn.form.methods[options](this, param); - } - - return this.each(function(){ - initForm(this, options); - setForm(this); - }); - }; - - $.fn.form.methods = { - options: function(jq){ - return $.data(jq[0], 'form').options; - }, - submit: function(jq, options){ - return jq.each(function(){ - ajaxSubmit(this, options); - }); - }, - load: function(jq, data){ - return jq.each(function(){ - load(this, data); - }); - }, - clear: function(jq){ - return jq.each(function(){ - clear(this); - }); - }, - reset: function(jq){ - return jq.each(function(){ - reset(this); - }); - }, - validate: function(jq){ - return validate(jq[0]); - }, - disableValidation: function(jq){ - return jq.each(function(){ - setValidation(this, true); - }); - }, - enableValidation: function(jq){ - return jq.each(function(){ - setValidation(this, false); - }); - } - }; - - $.fn.form.parseOptions = function(target){ - var t = $(target); - return $.extend({}, $.parser.parseOptions(target, [{ajax:'boolean'}]), { - url: (t.attr('action') ? t.attr('action') : undefined) - }); - }; - - $.fn.form.defaults = { - fieldTypes: ['combobox','combotree','combogrid','datetimebox','datebox','combo', - 'datetimespinner','timespinner','numberspinner','spinner', - 'slider','searchbox','numberbox','textbox','switchbutton'], - novalidate: false, - ajax: true, - url: null, - queryParams: {}, - onSubmit: function(param){return $(this).form('validate');}, - success: function(data){}, - onBeforeLoad: function(param){}, - onLoadSuccess: function(data){}, - onLoadError: function(){}, - onChange: function(target){} - }; -})(jQuery); diff --git a/vendor/FHC-vendor/easyui/src/jquery.linkbutton.js b/vendor/FHC-vendor/easyui/src/jquery.linkbutton.js deleted file mode 100644 index 2f5bad804..000000000 --- a/vendor/FHC-vendor/easyui/src/jquery.linkbutton.js +++ /dev/null @@ -1,242 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * linkbutton - jQuery EasyUI - * - */ -(function($){ - function setSize(target, param){ - var opts = $.data(target, 'linkbutton').options; - if (param){ - $.extend(opts, param); - } - if (opts.width || opts.height || opts.fit){ - var btn = $(target); - var parent = btn.parent(); - var isVisible = btn.is(':visible'); - if (!isVisible){ - var spacer = $('
                                                ').insertBefore(target); - var style = { - position: btn.css('position'), - display: btn.css('display'), - left: btn.css('left') - }; - btn.appendTo('body'); - btn.css({ - position: 'absolute', - display: 'inline-block', - left: -20000 - }); - } - btn._size(opts, parent); - var left = btn.find('.l-btn-left'); - left.css('margin-top', 0); - left.css('margin-top', parseInt((btn.height()-left.height())/2)+'px'); - if (!isVisible){ - btn.insertAfter(spacer); - btn.css(style); - spacer.remove(); - } - } - } - - function createButton(target) { - var opts = $.data(target, 'linkbutton').options; - var t = $(target).empty(); - - t.addClass('l-btn').removeClass('l-btn-plain l-btn-selected l-btn-plain-selected l-btn-outline'); - t.removeClass('l-btn-small l-btn-medium l-btn-large').addClass('l-btn-'+opts.size); - if (opts.plain){t.addClass('l-btn-plain')} - if (opts.outline){t.addClass('l-btn-outline')} - if (opts.selected){ - t.addClass(opts.plain ? 'l-btn-selected l-btn-plain-selected' : 'l-btn-selected'); - } - t.attr('group', opts.group || ''); - t.attr('id', opts.id || ''); - - var inner = $('').appendTo(t); - if (opts.text){ - $('').html(opts.text).appendTo(inner); - } else { - $(' ').appendTo(inner); - } - if (opts.iconCls){ - $(' ').addClass(opts.iconCls).appendTo(inner); - inner.addClass('l-btn-icon-'+opts.iconAlign); - } - - t.unbind('.linkbutton').bind('focus.linkbutton',function(){ - if (!opts.disabled){ - $(this).addClass('l-btn-focus'); - } - }).bind('blur.linkbutton',function(){ - $(this).removeClass('l-btn-focus'); - }).bind('click.linkbutton',function(){ - if (!opts.disabled){ - if (opts.toggle){ - if (opts.selected){ - $(this).linkbutton('unselect'); - } else { - $(this).linkbutton('select'); - } - } - opts.onClick.call(this); - } -// return false; - }); -// if (opts.toggle && !opts.disabled){ -// t.bind('click.linkbutton', function(){ -// if (opts.selected){ -// $(this).linkbutton('unselect'); -// } else { -// $(this).linkbutton('select'); -// } -// }); -// } - - setSelected(target, opts.selected) - setDisabled(target, opts.disabled); - } - - function setSelected(target, selected){ - var opts = $.data(target, 'linkbutton').options; - if (selected){ - if (opts.group){ - $('a.l-btn[group="'+opts.group+'"]').each(function(){ - var o = $(this).linkbutton('options'); - if (o.toggle){ - $(this).removeClass('l-btn-selected l-btn-plain-selected'); - o.selected = false; - } - }); - } - $(target).addClass(opts.plain ? 'l-btn-selected l-btn-plain-selected' : 'l-btn-selected'); - opts.selected = true; - } else { - if (!opts.group){ - $(target).removeClass('l-btn-selected l-btn-plain-selected'); - opts.selected = false; - } - } - } - - function setDisabled(target, disabled){ - var state = $.data(target, 'linkbutton'); - var opts = state.options; - $(target).removeClass('l-btn-disabled l-btn-plain-disabled'); - if (disabled){ - opts.disabled = true; - var href = $(target).attr('href'); - if (href){ - state.href = href; - $(target).attr('href', 'javascript:void(0)'); - } - if (target.onclick){ - state.onclick = target.onclick; - target.onclick = null; - } - opts.plain ? $(target).addClass('l-btn-disabled l-btn-plain-disabled') : $(target).addClass('l-btn-disabled'); - } else { - opts.disabled = false; - if (state.href) { - $(target).attr('href', state.href); - } - if (state.onclick) { - target.onclick = state.onclick; - } - } - } - - $.fn.linkbutton = function(options, param){ - if (typeof options == 'string'){ - return $.fn.linkbutton.methods[options](this, param); - } - - options = options || {}; - return this.each(function(){ - var state = $.data(this, 'linkbutton'); - if (state){ - $.extend(state.options, options); - } else { - $.data(this, 'linkbutton', { - options: $.extend({}, $.fn.linkbutton.defaults, $.fn.linkbutton.parseOptions(this), options) - }); - $(this).removeAttr('disabled'); - $(this).bind('_resize', function(e, force){ - if ($(this).hasClass('easyui-fluid') || force){ - setSize(this); - } - return false; - }); - } - - createButton(this); - setSize(this); - }); - }; - - $.fn.linkbutton.methods = { - options: function(jq){ - return $.data(jq[0], 'linkbutton').options; - }, - resize: function(jq, param){ - return jq.each(function(){ - setSize(this, param); - }); - }, - enable: function(jq){ - return jq.each(function(){ - setDisabled(this, false); - }); - }, - disable: function(jq){ - return jq.each(function(){ - setDisabled(this, true); - }); - }, - select: function(jq){ - return jq.each(function(){ - setSelected(this, true); - }); - }, - unselect: function(jq){ - return jq.each(function(){ - setSelected(this, false); - }); - } - }; - - $.fn.linkbutton.parseOptions = function(target){ - var t = $(target); - return $.extend({}, $.parser.parseOptions(target, - ['id','iconCls','iconAlign','group','size','text',{plain:'boolean',toggle:'boolean',selected:'boolean',outline:'boolean'}] - ), { - disabled: (t.attr('disabled') ? true : undefined), - text: ($.trim(t.html()) || undefined), - iconCls: (t.attr('icon') || t.attr('iconCls')) - }); - }; - - $.fn.linkbutton.defaults = { - id: null, - disabled: false, - toggle: false, - selected: false, - outline: false, - group: null, - plain: false, - text: '', - iconCls: null, - iconAlign: 'left', - size: 'small', // small,large - onClick: function(){} - }; - -})(jQuery); diff --git a/vendor/FHC-vendor/easyui/src/jquery.menu.js b/vendor/FHC-vendor/easyui/src/jquery.menu.js deleted file mode 100644 index 9992c506f..000000000 --- a/vendor/FHC-vendor/easyui/src/jquery.menu.js +++ /dev/null @@ -1,637 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * menu - jQuery EasyUI - * - */ -(function($){ - $(function(){ - $(document).unbind('.menu').bind('mousedown.menu', function(e){ - var m = $(e.target).closest('div.menu,div.combo-p'); - if (m.length){return} - $('body>div.menu-top:visible').not('.menu-inline').menu('hide'); - hideMenu($('body>div.menu:visible').not('.menu-inline')); - }); - }); - - /** - * initialize the target menu, the function can be invoked only once - */ - function init(target){ - var opts = $.data(target, 'menu').options; - $(target).addClass('menu-top'); // the top menu - opts.inline ? $(target).addClass('menu-inline') : $(target).appendTo('body'); - $(target).bind('_resize', function(e, force){ - if ($(this).hasClass('easyui-fluid') || force){ - $(target).menu('resize', target); - } - return false; - }); - - var menus = splitMenu($(target)); - for(var i=0; i').html(text)); - if (itemOpts.iconCls){ - $('').addClass(itemOpts.iconCls).appendTo(item); - } - if (itemOpts.disabled){ - setDisabled(target, item[0], true); - } - if (item[0].submenu){ - $('').appendTo(item); // has sub menu - } - - bindMenuItemEvent(target, item); - } - }); - $('').prependTo(menu); - } - setMenuSize(target, menu); - if (!menu.hasClass('menu-inline')){ - menu.hide(); - } - - bindMenuEvent(target, menu); - } - } - - function setMenuSize(target, menu){ - var opts = $.data(target, 'menu').options; - var style = menu.attr('style') || ''; - menu.css({ - display: 'block', - left:-10000, - height: 'auto', - overflow: 'hidden' - }); - menu.find('.menu-item').each(function(){ - $(this)._outerHeight(opts.itemHeight); - $(this).find('.menu-text').css({ - height: (opts.itemHeight-2)+'px', - lineHeight: (opts.itemHeight-2)+'px' - }); - }); - menu.removeClass('menu-noline').addClass(opts.noline?'menu-noline':''); - - var width = menu[0].originalWidth || 'auto'; - if (isNaN(parseInt(width))){ - width = 0; - menu.find('div.menu-text').each(function(){ - if (width < $(this)._outerWidth()){ - width = $(this)._outerWidth(); - } - }); - width += 40; - } - - var autoHeight = menu.outerHeight(); - var height = menu[0].originalHeight || 'auto'; - if (isNaN(parseInt(height))){ - height = autoHeight; - - if (menu.hasClass('menu-top') && opts.alignTo){ - var at = $(opts.alignTo); - var h1 = at.offset().top - $(document).scrollTop(); - var h2 = $(window)._outerHeight() + $(document).scrollTop() - at.offset().top - at._outerHeight(); - height = Math.min(height, Math.max(h1, h2)); - } else if (height > $(window)._outerHeight()){ - height = $(window).height(); - } - } - - menu.attr('style', style); // restore the original style - menu._size({ - fit: (menu[0]==target?opts.fit:false), - width: width, - minWidth: opts.minWidth, - height: height - }); - menu.css('overflow', menu.outerHeight() < autoHeight ? 'auto' : 'hidden'); - menu.children('div.menu-line')._outerHeight(autoHeight-2); - } - - /** - * bind menu event - */ - function bindMenuEvent(target, menu){ - if (menu.hasClass('menu-inline')){return} - var state = $.data(target, 'menu'); - menu.unbind('.menu').bind('mouseenter.menu', function(){ - if (state.timer){ - clearTimeout(state.timer); - state.timer = null; - } - }).bind('mouseleave.menu', function(){ - if (state.options.hideOnUnhover){ - state.timer = setTimeout(function(){ - hideAll(target, $(target).hasClass('menu-inline')); - }, state.options.duration); - } - }); - } - - /** - * bind menu item event - */ - function bindMenuItemEvent(target, item){ - if (!item.hasClass('menu-item')){return} - item.unbind('.menu'); - item.bind('click.menu', function(){ - if ($(this).hasClass('menu-item-disabled')){ - return; - } - // only the sub menu clicked can hide all menus - if (!this.submenu){ - hideAll(target, $(target).hasClass('menu-inline')); - var href = this.itemHref; - if (href){ - location.href = href; - } - } - $(this).trigger('mouseenter'); - var item = $(target).menu('getItem', this); - $.data(target, 'menu').options.onClick.call(target, item); - }).bind('mouseenter.menu', function(e){ - // hide other menu - item.siblings().each(function(){ - if (this.submenu){ - hideMenu(this.submenu); - } - $(this).removeClass('menu-active'); - }); - // show this menu - item.addClass('menu-active'); - - if ($(this).hasClass('menu-item-disabled')){ - item.addClass('menu-active-disabled'); - return; - } - - var submenu = item[0].submenu; - if (submenu){ - $(target).menu('show', { - menu: submenu, - parent: item - }); - } - }).bind('mouseleave.menu', function(e){ - item.removeClass('menu-active menu-active-disabled'); - var submenu = item[0].submenu; - if (submenu){ - if (e.pageX>=parseInt(submenu.css('left'))){ - item.addClass('menu-active'); - } else { - hideMenu(submenu); - } - - } else { - item.removeClass('menu-active'); - } - }); - } - - /** - * hide top menu and it's all sub menus - */ - function hideAll(target, inline){ - var state = $.data(target, 'menu'); - if (state){ - if ($(target).is(':visible')){ - hideMenu($(target)); - if (inline){ - $(target).show(); - } else { - state.options.onHide.call(target); - } - } - } - return false; - } - - /** - * show the menu, the 'param' object has one or more properties: - * left: the left position to display - * top: the top position to display - * menu: the menu to display, if not defined, the 'target menu' is used - * parent: the parent menu item to align to - * alignTo: the element object to align to - */ - function showMenu(target, param){ - var left,top; - param = param || {}; - var menu = $(param.menu || target); - $(target).menu('resize', menu[0]); - if (menu.hasClass('menu-top')){ - var opts = $.data(target, 'menu').options; - $.extend(opts, param); - left = opts.left; - top = opts.top; - if (opts.alignTo){ - var at = $(opts.alignTo); - left = at.offset().left; - top = at.offset().top + at._outerHeight(); - if (opts.align == 'right'){ - left += at.outerWidth() - menu.outerWidth(); - } - } - if (left + menu.outerWidth() > $(window)._outerWidth() + $(document)._scrollLeft()){ - left = $(window)._outerWidth() + $(document).scrollLeft() - menu.outerWidth() - 5; - } - if (left < 0){left = 0;} - top = _fixTop(top, opts.alignTo); - } else { - var parent = param.parent; // the parent menu item - left = parent.offset().left + parent.outerWidth() - 2; - if (left + menu.outerWidth() + 5 > $(window)._outerWidth() + $(document).scrollLeft()){ - left = parent.offset().left - menu.outerWidth() + 2; - } - top = _fixTop(parent.offset().top - 3); - } - - function _fixTop(top, alignTo){ - if (top + menu.outerHeight() > $(window)._outerHeight() + $(document).scrollTop()){ - if (alignTo){ - top = $(alignTo).offset().top - menu._outerHeight(); - } else { - top = $(window)._outerHeight() + $(document).scrollTop() - menu.outerHeight(); - } - } - if (top < 0){top = 0;} - return top; - } - - menu.css({left:left,top:top}); - menu.show(0, function(){ - if (!menu[0].shadow){ - menu[0].shadow = $('').insertAfter(menu); - } - menu[0].shadow.css({ - display:(menu.hasClass('menu-inline')?'none':'block'), - zIndex:$.fn.menu.defaults.zIndex++, - left:menu.css('left'), - top:menu.css('top'), - width:menu.outerWidth(), - height:menu.outerHeight() - }); - menu.css('z-index', $.fn.menu.defaults.zIndex++); - if (menu.hasClass('menu-top')){ - $.data(menu[0], 'menu').options.onShow.call(menu[0]); - } - }); - } - - function hideMenu(menu){ - if (menu && menu.length){ - hideit(menu); - menu.find('div.menu-item').each(function(){ - if (this.submenu){ - hideMenu(this.submenu); - } - $(this).removeClass('menu-active'); - }); - } - - function hideit(m){ - m.stop(true,true); - if (m[0].shadow){ - m[0].shadow.hide(); - } - m.hide(); - } - } - - function findItem(target, text){ - var result = null; - var tmp = $('
                                                '); - function find(menu){ - menu.children('div.menu-item').each(function(){ - var item = $(target).menu('getItem', this); - var s = tmp.empty().html(item.text).text(); - if (text == $.trim(s)) { - result = item; - } else if (this.submenu && !result){ - find(this.submenu); - } - }); - } - find($(target)); - tmp.remove(); - return result; - } - - function setDisabled(target, itemEl, disabled){ - var t = $(itemEl); - if (!t.hasClass('menu-item')){return} - - if (disabled){ - t.addClass('menu-item-disabled'); - if (itemEl.onclick){ - itemEl.onclick1 = itemEl.onclick; - itemEl.onclick = null; - } - } else { - t.removeClass('menu-item-disabled'); - if (itemEl.onclick1){ - itemEl.onclick = itemEl.onclick1; - itemEl.onclick1 = null; - } - } - } - - function appendItem(target, param){ - var opts = $.data(target, 'menu').options; - var menu = $(target); - if (param.parent){ - if (!param.parent.submenu){ - var submenu = $('').appendTo('body'); - submenu.hide(); - param.parent.submenu = submenu; - $('').appendTo(param.parent); - } - menu = param.parent.submenu; - } - if (param.separator){ - var item = $('').appendTo(menu); - } else { - var item = $('').appendTo(menu); - $('').html(param.text).appendTo(item); - } - if (param.iconCls) $('').addClass(param.iconCls).appendTo(item); - if (param.id) item.attr('id', param.id); - if (param.name){item[0].itemName = param.name} - if (param.href){item[0].itemHref = param.href} - if (param.onclick){ - if (typeof param.onclick == 'string'){ - item.attr('onclick', param.onclick); - } else { - item[0].onclick = eval(param.onclick); - } - } - if (param.handler){item[0].onclick = eval(param.handler)} - if (param.disabled){setDisabled(target, item[0], true)} - - bindMenuItemEvent(target, item); - bindMenuEvent(target, menu); - setMenuSize(target, menu); - } - - function removeItem(target, itemEl){ - function removeit(el){ - if (el.submenu){ - el.submenu.children('div.menu-item').each(function(){ - removeit(this); - }); - var shadow = el.submenu[0].shadow; - if (shadow) shadow.remove(); - el.submenu.remove(); - } - $(el).remove(); - } - var menu = $(itemEl).parent(); - removeit(itemEl); - setMenuSize(target, menu); - } - - function setVisible(target, itemEl, visible){ - var menu = $(itemEl).parent(); - if (visible){ - $(itemEl).show(); - } else { - $(itemEl).hide(); - } - setMenuSize(target, menu); - } - - function destroyMenu(target){ - $(target).children('div.menu-item').each(function(){ - removeItem(target, this); - }); - if (target.shadow) target.shadow.remove(); - $(target).remove(); - } - - $.fn.menu = function(options, param){ - if (typeof options == 'string'){ - return $.fn.menu.methods[options](this, param); - } - - options = options || {}; - return this.each(function(){ - var state = $.data(this, 'menu'); - if (state){ - $.extend(state.options, options); - } else { - state = $.data(this, 'menu', { - options: $.extend({}, $.fn.menu.defaults, $.fn.menu.parseOptions(this), options) - }); - init(this); - } - $(this).css({ - left: state.options.left, - top: state.options.top - }); - }); - }; - - $.fn.menu.methods = { - options: function(jq){ - return $.data(jq[0], 'menu').options; - }, - show: function(jq, pos){ - return jq.each(function(){ - showMenu(this, pos); - }); - }, - hide: function(jq){ - return jq.each(function(){ - hideAll(this); - }); - }, - destroy: function(jq){ - return jq.each(function(){ - destroyMenu(this); - }); - }, - /** - * set the menu item text - * param: { - * target: DOM object, indicate the menu item - * text: string, the new text - * } - */ - setText: function(jq, param){ - return jq.each(function(){ - $(param.target).children('div.menu-text').html(param.text); - }); - }, - /** - * set the menu icon class - * param: { - * target: DOM object, indicate the menu item - * iconCls: the menu item icon class - * } - */ - setIcon: function(jq, param){ - return jq.each(function(){ - $(param.target).children('div.menu-icon').remove(); - if (param.iconCls){ - $('').addClass(param.iconCls).appendTo(param.target); - } - }); - }, - /** - * get the menu item data that contains the following property: - * { - * target: DOM object, the menu item - * id: the menu id - * text: the menu item text - * iconCls: the icon class - * href: a remote address to redirect to - * onclick: a function to be called when the item is clicked - * } - */ - getItem: function(jq, itemEl){ - var t = $(itemEl); - var item = { - target: itemEl, - id: t.attr('id'), - text: $.trim(t.children('div.menu-text').html()), - disabled: t.hasClass('menu-item-disabled'), -// href: t.attr('href'), -// name: t.attr('name'), - name: itemEl.itemName, - href: itemEl.itemHref, - onclick: itemEl.onclick - } - var icon = t.children('div.menu-icon'); - if (icon.length){ - var cc = []; - var aa = icon.attr('class').split(' '); - for(var i=0; i= 0){ - v = Math.floor((parent.width()-delta) * v / 100.0); - } else { - v = Math.floor((parent.height()-delta) * v / 100.0); - } - } else { - v = parseInt(v) || undefined; - } - return v; - }, - - /** - * parse options, including standard 'data-options' attribute. - * - * calling examples: - * $.parser.parseOptions(target); - * $.parser.parseOptions(target, ['id','title','width',{fit:'boolean',border:'boolean'},{min:'number'}]); - */ - parseOptions: function(target, properties){ - var t = $(target); - var options = {}; - - var s = $.trim(t.attr('data-options')); - if (s){ - if (s.substring(0, 1) != '{'){ - s = '{' + s + '}'; - } - options = (new Function('return ' + s))(); - } - $.map(['width','height','left','top','minWidth','maxWidth','minHeight','maxHeight'], function(p){ - var pv = $.trim(target.style[p] || ''); - if (pv){ - if (pv.indexOf('%') == -1){ - pv = parseInt(pv) || undefined; - } - options[p] = pv; - } - }); - - if (properties){ - var opts = {}; - for(var i=0; i').appendTo('body'); - $._boxModel = d.outerWidth()!=100; - d.remove(); - d = $('
                                                ').appendTo('body'); - $._positionFixed = (d.css('position') == 'fixed'); - d.remove(); - - if (!window.easyloader && $.parser.auto){ - $.parser.parse(); - } - }); - - /** - * extend plugin to set box model width - */ - $.fn._outerWidth = function(width){ - if (width == undefined){ - if (this[0] == window){ - return this.width() || document.body.clientWidth; - } - return this.outerWidth()||0; - } - return this._size('width', width); - }; - - /** - * extend plugin to set box model height - */ - $.fn._outerHeight = function(height){ - if (height == undefined){ - if (this[0] == window){ - return this.height() || document.body.clientHeight; - } - return this.outerHeight()||0; - } - return this._size('height', height); - }; - - $.fn._scrollLeft = function(left){ - if (left == undefined){ - return this.scrollLeft(); - } else { - return this.each(function(){$(this).scrollLeft(left)}); - } - }; - - $.fn._propAttr = $.fn.prop || $.fn.attr; - - $.fn._size = function(options, parent){ - if (typeof options == 'string'){ - if (options == 'clear'){ - return this.each(function(){ - $(this).css({width:'',minWidth:'',maxWidth:'',height:'',minHeight:'',maxHeight:''}); - }); - } else if (options == 'fit'){ - return this.each(function(){ - _fit(this, this.tagName=='BODY' ? $('body') : $(this).parent(), true); - }); - } else if (options == 'unfit'){ - return this.each(function(){ - _fit(this, $(this).parent(), false); - }); - } else { - if (parent == undefined){ - return _css(this[0], options); - } else { - return this.each(function(){ - _css(this, options, parent); - }); - } - } - } else { - return this.each(function(){ - parent = parent || $(this).parent(); - $.extend(options, _fit(this, parent, options.fit)||{}); - var r1 = _setSize(this, 'width', parent, options); - var r2 = _setSize(this, 'height', parent, options); - if (r1 || r2){ - $(this).addClass('easyui-fluid'); - } else { - $(this).removeClass('easyui-fluid'); - } - }); - } - - function _fit(target, parent, fit){ - if (!parent.length){return false;} - var t = $(target)[0]; - var p = parent[0]; - var fcount = p.fcount || 0; - if (fit){ - if (!t.fitted){ - t.fitted = true; - p.fcount = fcount + 1; - $(p).addClass('panel-noscroll'); - if (p.tagName == 'BODY'){ - $('html').addClass('panel-fit'); - } - } - return { - width: ($(p).width()||1), - height: ($(p).height()||1) - }; - } else { - if (t.fitted){ - t.fitted = false; - p.fcount = fcount - 1; - if (p.fcount == 0){ - $(p).removeClass('panel-noscroll'); - if (p.tagName == 'BODY'){ - $('html').removeClass('panel-fit'); - } - } - } - return false; - } - } - function _setSize(target, property, parent, options){ - var t = $(target); - var p = property; - var p1 = p.substr(0,1).toUpperCase() + p.substr(1); - var min = $.parser.parseValue('min'+p1, options['min'+p1], parent);// || 0; - var max = $.parser.parseValue('max'+p1, options['max'+p1], parent);// || 99999; - var val = $.parser.parseValue(p, options[p], parent); - var fluid = (String(options[p]||'').indexOf('%') >= 0 ? true : false); - - if (!isNaN(val)){ - var v = Math.min(Math.max(val, min||0), max||99999); - if (!fluid){ - options[p] = v; - } - t._size('min'+p1, ''); - t._size('max'+p1, ''); - t._size(p, v); - } else { - t._size(p, ''); - t._size('min'+p1, min); - t._size('max'+p1, max); - } - return fluid || options.fit; - } - function _css(target, property, value){ - var t = $(target); - if (value == undefined){ - value = parseInt(target.style[property]); - if (isNaN(value)){return undefined;} - if ($._boxModel){ - value += getDeltaSize(); - } - return value; - } else if (value === ''){ - t.css(property, ''); - } else { - if ($._boxModel){ - value -= getDeltaSize(); - if (value < 0){value = 0;} - } - t.css(property, value+'px'); - } - function getDeltaSize(){ - if (property.toLowerCase().indexOf('width') >= 0){ - return t.outerWidth() - t.width(); - } else { - return t.outerHeight() - t.height(); - } - } - } - }; - -})(jQuery); - -/** - * support for mobile devices - */ -(function($){ - var longTouchTimer = null; - var dblTouchTimer = null; - var isDblClick = false; - - function onTouchStart(e){ - if (e.touches.length != 1){return} - if (!isDblClick){ - isDblClick = true; - dblClickTimer = setTimeout(function(){ - isDblClick = false; - }, 500); - } else { - clearTimeout(dblClickTimer); - isDblClick = false; - fire(e, 'dblclick'); -// e.preventDefault(); - } - longTouchTimer = setTimeout(function(){ - fire(e, 'contextmenu', 3); - }, 1000); - fire(e, 'mousedown'); - if ($.fn.draggable.isDragging || $.fn.resizable.isResizing){ - e.preventDefault(); - } - } - function onTouchMove(e){ - if (e.touches.length != 1){return} - if (longTouchTimer){ - clearTimeout(longTouchTimer); - } - fire(e, 'mousemove'); - if ($.fn.draggable.isDragging || $.fn.resizable.isResizing){ - e.preventDefault(); - } - } - function onTouchEnd(e){ -// if (e.touches.length > 0){return} - if (longTouchTimer){ - clearTimeout(longTouchTimer); - } - fire(e, 'mouseup'); - if ($.fn.draggable.isDragging || $.fn.resizable.isResizing){ - e.preventDefault(); - } - } - - function fire(e, name, which){ - var event = new $.Event(name); - event.pageX = e.changedTouches[0].pageX; - event.pageY = e.changedTouches[0].pageY; - event.which = which || 1; - $(e.target).trigger(event); - } - - if (document.addEventListener){ - document.addEventListener("touchstart", onTouchStart, true); - document.addEventListener("touchmove", onTouchMove, true); - document.addEventListener("touchend", onTouchEnd, true); - } -})(jQuery); - diff --git a/vendor/FHC-vendor/easyui/src/jquery.progressbar.js b/vendor/FHC-vendor/easyui/src/jquery.progressbar.js deleted file mode 100644 index 66aca6a12..000000000 --- a/vendor/FHC-vendor/easyui/src/jquery.progressbar.js +++ /dev/null @@ -1,107 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * progressbar - jQuery EasyUI - * - * Dependencies: - * none - * - */ -(function($){ - function init(target){ - $(target).addClass('progressbar'); - $(target).html('
                                                '); - $(target).bind('_resize', function(e,force){ - if ($(this).hasClass('easyui-fluid') || force){ - setSize(target); - } - return false; - }); - return $(target); - } - - function setSize(target,width){ - var opts = $.data(target, 'progressbar').options; - var bar = $.data(target, 'progressbar').bar; - if (width) opts.width = width; - bar._size(opts); - - bar.find('div.progressbar-text').css('width', bar.width()); - bar.find('div.progressbar-text,div.progressbar-value').css({ - height: bar.height()+'px', - lineHeight: bar.height()+'px' - }); - } - - $.fn.progressbar = function(options, param){ - if (typeof options == 'string'){ - var method = $.fn.progressbar.methods[options]; - if (method){ - return method(this, param); - } - } - - options = options || {}; - return this.each(function(){ - var state = $.data(this, 'progressbar'); - if (state){ - $.extend(state.options, options); - } else { - state = $.data(this, 'progressbar', { - options: $.extend({}, $.fn.progressbar.defaults, $.fn.progressbar.parseOptions(this), options), - bar: init(this) - }); - } - $(this).progressbar('setValue', state.options.value); - setSize(this); - }); - }; - - $.fn.progressbar.methods = { - options: function(jq){ - return $.data(jq[0], 'progressbar').options; - }, - resize: function(jq, width){ - return jq.each(function(){ - setSize(this, width); - }); - }, - getValue: function(jq){ - return $.data(jq[0], 'progressbar').options.value; - }, - setValue: function(jq, value){ - if (value < 0) value = 0; - if (value > 100) value = 100; - return jq.each(function(){ - var opts = $.data(this, 'progressbar').options; - var text = opts.text.replace(/{value}/, value); - var oldValue = opts.value; - opts.value = value; - $(this).find('div.progressbar-value').width(value+'%'); - $(this).find('div.progressbar-text').html(text); - if (oldValue != value){ - opts.onChange.call(this, value, oldValue); - } - }); - } - }; - - $.fn.progressbar.parseOptions = function(target){ - return $.extend({}, $.parser.parseOptions(target, ['width','height','text',{value:'number'}])); - }; - - $.fn.progressbar.defaults = { - width: 'auto', - height: 22, - value: 0, // percentage value - text: '{value}%', - onChange:function(newValue,oldValue){} - }; -})(jQuery); diff --git a/vendor/FHC-vendor/easyui/src/jquery.propertygrid.js b/vendor/FHC-vendor/easyui/src/jquery.propertygrid.js deleted file mode 100644 index 65658157b..000000000 --- a/vendor/FHC-vendor/easyui/src/jquery.propertygrid.js +++ /dev/null @@ -1,420 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * propertygrid - jQuery EasyUI - * - * Dependencies: - * datagrid - * - */ -(function($){ - var currTarget; - $(document).unbind('.propertygrid').bind('mousedown.propertygrid', function(e){ - var p = $(e.target).closest('div.datagrid-view,div.combo-panel'); - if (p.length){return;} - stopEditing(currTarget); - currTarget = undefined; - }); - - function buildGrid(target){ - var state = $.data(target, 'propertygrid'); - var opts = $.data(target, 'propertygrid').options; - $(target).datagrid($.extend({}, opts, { - cls:'propertygrid', - view:(opts.showGroup ? opts.groupView : opts.view), - onBeforeEdit:function(index, row){ - if (opts.onBeforeEdit.call(target, index, row) == false){return false;} - var dg = $(this); - var row = dg.datagrid('getRows')[index]; - var col = dg.datagrid('getColumnOption', 'value'); - col.editor = row.editor; - }, - onClickCell:function(index, field, value){ - if (currTarget != this){ - stopEditing(currTarget); - currTarget = this; - } - if (opts.editIndex != index){ - stopEditing(currTarget); - $(this).datagrid('beginEdit', index); - var ed = $(this).datagrid('getEditor', {index:index,field:field}); - if (!ed){ - ed = $(this).datagrid('getEditor', {index:index,field:'value'}); - } - if (ed){ - var t = $(ed.target); - var input = t.data('textbox') ? t.textbox('textbox') : t; - input.focus(); - opts.editIndex = index; - } - } - opts.onClickCell.call(target, index, field, value); - }, - loadFilter:function(data){ - stopEditing(this); - return opts.loadFilter.call(this, data); - } - })); - } - - function stopEditing(target){ - var t = $(target); - if (!t.length){return} - var opts = $.data(target, 'propertygrid').options; - opts.finder.getTr(target, null, 'editing').each(function(){ - var index = parseInt($(this).attr('datagrid-row-index')); - if (t.datagrid('validateRow', index)){ - t.datagrid('endEdit', index); - } else { - t.datagrid('cancelEdit', index); - } - }); - opts.editIndex = undefined; - } - - $.fn.propertygrid = function(options, param){ - if (typeof options == 'string'){ - var method = $.fn.propertygrid.methods[options]; - if (method){ - return method(this, param); - } else { - return this.datagrid(options, param); - } - } - - options = options || {}; - return this.each(function(){ - var state = $.data(this, 'propertygrid'); - if (state){ - $.extend(state.options, options); - } else { - var opts = $.extend({}, $.fn.propertygrid.defaults, $.fn.propertygrid.parseOptions(this), options); - opts.frozenColumns = $.extend(true, [], opts.frozenColumns); - opts.columns = $.extend(true, [], opts.columns); - $.data(this, 'propertygrid', { - options: opts - }); - } - buildGrid(this); - }); - } - - $.fn.propertygrid.methods = { - options: function(jq){ - return $.data(jq[0], 'propertygrid').options; - } - }; - - $.fn.propertygrid.parseOptions = function(target){ - return $.extend({}, $.fn.datagrid.parseOptions(target), $.parser.parseOptions(target,[{showGroup:'boolean'}])); - }; - - // the group view definition - var groupview = $.extend({}, $.fn.datagrid.defaults.view, { - render: function(target, container, frozen){ - var table = []; - var groups = this.groups; - for(var i=0; i'); - if ((frozen && (opts.rownumbers || opts.frozenColumns.length)) || - (!frozen && !(opts.rownumbers || opts.frozenColumns.length))){ - table.push(''); - table.push(' '); - table.push(''); - } - if (!frozen){ - table.push(''); - table.push(opts.groupFormatter.call(target, group.value, group.rows)); - table.push(''); - } - table.push(''); - - table.push(''); - var index = group.startIndex; - for(var j=0; j'); - table.push(this.renderRow.call(this, target, fields, frozen, index, group.rows[j])); - table.push(''); - index++; - } - table.push('
                                                '); - return table.join(''); - }, - - bindEvents: function(target){ - var state = $.data(target, 'datagrid'); - var dc = state.dc; - var body = dc.body1.add(dc.body2); - var clickHandler = ($.data(body[0],'events')||$._data(body[0],'events')).click[0].handler; - body.unbind('click').bind('click', function(e){ - var tt = $(e.target); - var expander = tt.closest('span.datagrid-row-expander'); - if (expander.length){ - var gindex = expander.closest('div.datagrid-group').attr('group-index'); - if (expander.hasClass('datagrid-row-collapse')){ - $(target).datagrid('collapseGroup', gindex); - } else { - $(target).datagrid('expandGroup', gindex); - } - } else { - clickHandler(e); - } - e.stopPropagation(); - }); - }, - - onBeforeRender: function(target, rows){ - var state = $.data(target, 'datagrid'); - var opts = state.options; - - initCss(); - - var groups = []; - for(var i=0; i' + - '.datagrid-group{height:'+opts.groupHeight+'px;overflow:hidden;font-weight:bold;border-bottom:1px solid #ccc;}' + - '.datagrid-group-title,.datagrid-group-expander{display:inline-block;vertical-align:bottom;height:100%;line-height:'+opts.groupHeight+'px;padding:0 4px;}' + - '.datagrid-group-expander{width:'+opts.expanderWidth+'px;text-align:center;padding:0}' + - '.datagrid-row-expander{margin:'+Math.floor((opts.groupHeight-16)/2)+'px 0;display:inline-block;width:16px;height:16px;cursor:pointer}' + - '' - ); - } - } - } - }); - - $.extend($.fn.datagrid.methods, { - groups:function(jq){ - return jq.datagrid('options').view.groups; - }, - expandGroup:function(jq, groupIndex){ - return jq.each(function(){ - var view = $.data(this, 'datagrid').dc.view; - var group = view.find(groupIndex!=undefined ? 'div.datagrid-group[group-index="'+groupIndex+'"]' : 'div.datagrid-group'); - var expander = group.find('span.datagrid-row-expander'); - if (expander.hasClass('datagrid-row-expand')){ - expander.removeClass('datagrid-row-expand').addClass('datagrid-row-collapse'); - group.next('table').show(); - } - $(this).datagrid('fixRowHeight'); - }); - }, - collapseGroup:function(jq, groupIndex){ - return jq.each(function(){ - var view = $.data(this, 'datagrid').dc.view; - var group = view.find(groupIndex!=undefined ? 'div.datagrid-group[group-index="'+groupIndex+'"]' : 'div.datagrid-group'); - var expander = group.find('span.datagrid-row-expander'); - if (expander.hasClass('datagrid-row-collapse')){ - expander.removeClass('datagrid-row-collapse').addClass('datagrid-row-expand'); - group.next('table').hide(); - } - $(this).datagrid('fixRowHeight'); - }); - } - }); - - $.extend(groupview, { - refreshGroupTitle: function(target, groupIndex){ - var state = $.data(target, 'datagrid'); - var opts = state.options; - var dc = state.dc; - var group = this.groups[groupIndex]; - var span = dc.body2.children('div.datagrid-group[group-index=' + groupIndex + ']').find('span.datagrid-group-title'); - span.html(opts.groupFormatter.call(target, group.value, group.rows)); - }, - - insertRow: function(target, index, row){ - var state = $.data(target, 'datagrid'); - var opts = state.options; - var dc = state.dc; - var group = null; - var groupIndex; - - if (!state.data.rows.length){ - $(target).datagrid('loadData', [row]); - return; - } - - for(var i=0; i group.startIndex + group.rows.length){ - index = group.startIndex + group.rows.length; - } - $.fn.datagrid.defaults.view.insertRow.call(this, target, index, row); - - if (index >= group.startIndex + group.rows.length){ - _moveTr(index, true); - _moveTr(index, false); - } - group.rows.splice(index - group.startIndex, 0, row); - } else { - group = { - value: row[opts.groupField], - rows: [row], - startIndex: state.data.rows.length - } - groupIndex = this.groups.length; - dc.body1.append(this.renderGroup.call(this, target, groupIndex, group, true)); - dc.body2.append(this.renderGroup.call(this, target, groupIndex, group, false)); - this.groups.push(group); - state.data.rows.push(row); - } - - this.refreshGroupTitle(target, groupIndex); - - function _moveTr(index,frozen){ - var serno = frozen?1:2; - var prevTr = opts.finder.getTr(target, index-1, 'body', serno); - var tr = opts.finder.getTr(target, index, 'body', serno); - tr.insertAfter(prevTr); - } - }, - - updateRow: function(target, index, row){ - var opts = $.data(target, 'datagrid').options; - $.fn.datagrid.defaults.view.updateRow.call(this, target, index, row); - var tb = opts.finder.getTr(target, index, 'body', 2).closest('table.datagrid-btable'); - var groupIndex = parseInt(tb.prev().attr('group-index')); - this.refreshGroupTitle(target, groupIndex); - }, - - deleteRow: function(target, index){ - var state = $.data(target, 'datagrid'); - var opts = state.options; - var dc = state.dc; - var body = dc.body1.add(dc.body2); - - var tb = opts.finder.getTr(target, index, 'body', 2).closest('table.datagrid-btable'); - var groupIndex = parseInt(tb.prev().attr('group-index')); - - $.fn.datagrid.defaults.view.deleteRow.call(this, target, index); - - var group = this.groups[groupIndex]; - if (group.rows.length > 1){ - group.rows.splice(index-group.startIndex, 1); - this.refreshGroupTitle(target, groupIndex); - } else { - body.children('div.datagrid-group[group-index='+groupIndex+']').remove(); - for(var i=groupIndex+1; i= options.minWidth && resizeData.width <= options.maxWidth) { -// resizeData.left = resizeData.startLeft + e.pageX - resizeData.startX; -// } - } - if (resizeData.dir.indexOf('n') != -1) { - var height = resizeData.startHeight - e.pageY + resizeData.startY; - height = Math.min( - Math.max(height, options.minHeight), - options.maxHeight - ); - resizeData.height = height; - resizeData.top = resizeData.startTop + resizeData.startHeight - resizeData.height; - -// resizeData.height = resizeData.startHeight - e.pageY + resizeData.startY; -// if (resizeData.height >= options.minHeight && resizeData.height <= options.maxHeight) { -// resizeData.top = resizeData.startTop + e.pageY - resizeData.startY; -// } - } - } - - function applySize(e){ - var resizeData = e.data; - var t = $(resizeData.target); - t.css({ - left: resizeData.left, - top: resizeData.top - }); - if (t.outerWidth() != resizeData.width){t._outerWidth(resizeData.width)} - if (t.outerHeight() != resizeData.height){t._outerHeight(resizeData.height)} -// t._outerWidth(resizeData.width)._outerHeight(resizeData.height); - } - - function doDown(e){ -// isResizing = true; - $.fn.resizable.isResizing = true; - $.data(e.data.target, 'resizable').options.onStartResize.call(e.data.target, e); - return false; - } - - function doMove(e){ - resize(e); - if ($.data(e.data.target, 'resizable').options.onResize.call(e.data.target, e) != false){ - applySize(e) - } - return false; - } - - function doUp(e){ -// isResizing = false; - $.fn.resizable.isResizing = false; - resize(e, true); - applySize(e); - $.data(e.data.target, 'resizable').options.onStopResize.call(e.data.target, e); - $(document).unbind('.resizable'); - $('body').css('cursor',''); -// $('body').css('cursor','auto'); - return false; - } - - return this.each(function(){ - var opts = null; - var state = $.data(this, 'resizable'); - if (state) { - $(this).unbind('.resizable'); - opts = $.extend(state.options, options || {}); - } else { - opts = $.extend({}, $.fn.resizable.defaults, $.fn.resizable.parseOptions(this), options || {}); - $.data(this, 'resizable', { - options:opts - }); - } - - if (opts.disabled == true) { - return; - } - - // bind mouse event using namespace resizable - $(this).bind('mousemove.resizable', {target:this}, function(e){ -// if (isResizing) return; - if ($.fn.resizable.isResizing){return} - var dir = getDirection(e); - if (dir == '') { - $(e.data.target).css('cursor', ''); - } else { - $(e.data.target).css('cursor', dir + '-resize'); - } - }).bind('mouseleave.resizable', {target:this}, function(e){ - $(e.data.target).css('cursor', ''); - }).bind('mousedown.resizable', {target:this}, function(e){ - var dir = getDirection(e); - if (dir == '') return; - - function getCssValue(css) { - var val = parseInt($(e.data.target).css(css)); - if (isNaN(val)) { - return 0; - } else { - return val; - } - } - - var data = { - target: e.data.target, - dir: dir, - startLeft: getCssValue('left'), - startTop: getCssValue('top'), - left: getCssValue('left'), - top: getCssValue('top'), - startX: e.pageX, - startY: e.pageY, - startWidth: $(e.data.target).outerWidth(), - startHeight: $(e.data.target).outerHeight(), - width: $(e.data.target).outerWidth(), - height: $(e.data.target).outerHeight(), - deltaWidth: $(e.data.target).outerWidth() - $(e.data.target).width(), - deltaHeight: $(e.data.target).outerHeight() - $(e.data.target).height() - }; - $(document).bind('mousedown.resizable', data, doDown); - $(document).bind('mousemove.resizable', data, doMove); - $(document).bind('mouseup.resizable', data, doUp); - $('body').css('cursor', dir+'-resize'); - }); - - // get the resize direction - function getDirection(e) { - var tt = $(e.data.target); - var dir = ''; - var offset = tt.offset(); - var width = tt.outerWidth(); - var height = tt.outerHeight(); - var edge = opts.edge; - if (e.pageY > offset.top && e.pageY < offset.top + edge) { - dir += 'n'; - } else if (e.pageY < offset.top + height && e.pageY > offset.top + height - edge) { - dir += 's'; - } - if (e.pageX > offset.left && e.pageX < offset.left + edge) { - dir += 'w'; - } else if (e.pageX < offset.left + width && e.pageX > offset.left + width - edge) { - dir += 'e'; - } - - var handles = opts.handles.split(','); - for(var i=0; i' + - '
                                                ' + - '' + - '' + - '
                                                ' + - '
                                                ' + - '
                                                ' + - '
                                                ' + - '' + - '').insertAfter(target); - var t = $(target); - t.addClass('slider-f').hide(); - var name = t.attr('name'); - if (name){ - slider.find('input.slider-value').attr('name', name); - t.removeAttr('name').attr('sliderName', name); - } - slider.bind('_resize', function(e,force){ - if ($(this).hasClass('easyui-fluid') || force){ - setSize(target); - } - return false; - }); - return slider; - } - - /** - * set the slider size, for vertical slider, the height property is required - */ - function setSize(target, param){ - var state = $.data(target, 'slider'); - var opts = state.options; - var slider = state.slider; - - if (param){ - if (param.width) opts.width = param.width; - if (param.height) opts.height = param.height; - } - slider._size(opts); - if (opts.mode == 'h'){ - slider.css('height', ''); - slider.children('div').css('height', ''); - } else { - slider.css('width', ''); - slider.children('div').css('width', ''); - slider.children('div.slider-rule,div.slider-rulelabel,div.slider-inner')._outerHeight(slider._outerHeight()); - } - initValue(target); - } - - /** - * show slider rule if needed - */ - function showRule(target){ - var state = $.data(target, 'slider'); - var opts = state.options; - var slider = state.slider; - - var aa = opts.mode == 'h' ? opts.rule : opts.rule.slice(0).reverse(); - if (opts.reversed){ - aa = aa.slice(0).reverse(); - } - _build(aa); - - function _build(aa){ - var rule = slider.find('div.slider-rule'); - var label = slider.find('div.slider-rulelabel'); - rule.empty(); - label.empty(); - for(var i=0; i').appendTo(rule); - span.css((opts.mode=='h'?'left':'top'), distance); - - // show the labels - if (aa[i] != '|'){ - span = $('').appendTo(label); - span.html(aa[i]); - if (opts.mode == 'h'){ - span.css({ - left: distance, - marginLeft: -Math.round(span.outerWidth()/2) - }); - } else { - span.css({ - top: distance, - marginTop: -Math.round(span.outerHeight()/2) - }); - } - } - } - } - } - - /** - * build the slider and set some properties - */ - function buildSlider(target){ - var state = $.data(target, 'slider'); - var opts = state.options; - var slider = state.slider; - - slider.removeClass('slider-h slider-v slider-disabled'); - slider.addClass(opts.mode == 'h' ? 'slider-h' : 'slider-v'); - slider.addClass(opts.disabled ? 'slider-disabled' : ''); - - var inner = slider.find('.slider-inner'); - inner.html( - '' + - '' - ); - if (opts.range){ - inner.append( - '' + - '' - ); - } - - slider.find('a.slider-handle').draggable({ - axis:opts.mode, - cursor:'pointer', - disabled: opts.disabled, - onDrag:function(e){ - var left = e.data.left; - var width = slider.width(); - if (opts.mode!='h'){ - left = e.data.top; - width = slider.height(); - } - if (left < 0 || left > width) { - return false; - } else { - setPos(left, this); - return false; - } - }, - onStartDrag:function(){ - state.isDragging = true; - opts.onSlideStart.call(target, opts.value); - }, - onStopDrag:function(e){ - setPos(opts.mode=='h'?e.data.left:e.data.top, this); - opts.onSlideEnd.call(target, opts.value); - opts.onComplete.call(target, opts.value); - state.isDragging = false; - } - }); - slider.find('div.slider-inner').unbind('.slider').bind('mousedown.slider', function(e){ - if (state.isDragging || opts.disabled){return} - var pos = $(this).offset(); - setPos(opts.mode=='h'?(e.pageX-pos.left):(e.pageY-pos.top)); - opts.onComplete.call(target, opts.value); - }); - - function setPos(pos, handle){ - var value = pos2value(target, pos); - var s = Math.abs(value % opts.step); - if (s < opts.step/2){ - value -= s; - } else { - value = value - s + opts.step; - } - if (opts.range){ - var v1 = opts.value[0]; - var v2 = opts.value[1]; - var m = parseFloat((v1+v2)/2); - if (handle){ - var isLeft = $(handle).nextAll('.slider-handle').length > 0; - if (value <= v2 && isLeft){ - v1 = value; - } else if (value >= v1 && (!isLeft)){ - v2 = value; - } - } else { - if (value < v1){ - v1 = value; - } else if (value > v2){ - v2 = value; - } else { - value < m ? v1 = value : v2 = value; - } - } - $(target).slider('setValues', [v1,v2]); - } else { - $(target).slider('setValue', value); - } - } - } - - /** - * set a specified value to slider - */ - function setValues(target, values){ - var state = $.data(target, 'slider'); - var opts = state.options; - var slider = state.slider; - var oldValues = $.isArray(opts.value) ? opts.value : [opts.value]; - var newValues = []; - - if (!$.isArray(values)){ - values = $.map(String(values).split(opts.separator), function(v){ - return parseFloat(v); - }); - } - - slider.find('.slider-value').remove(); - var name = $(target).attr('sliderName') || ''; - for(var i=0; i opts.max) value = opts.max; - - var input = $('').appendTo(slider); - input.attr('name', name); - input.val(value); - newValues.push(value); - - var handle = slider.find('.slider-handle:eq('+i+')'); - var tip = handle.next(); - var pos = value2pos(target, value); - if (opts.showTip){ - tip.show(); - tip.html(opts.tipFormatter.call(target, value)); - } else { - tip.hide(); - } - - if (opts.mode == 'h'){ - var style = 'left:'+pos+'px;'; - handle.attr('style', style); - tip.attr('style', style + 'margin-left:' + (-Math.round(tip.outerWidth()/2)) + 'px'); - } else { - var style = 'top:' + pos + 'px;'; - handle.attr('style', style); - tip.attr('style', style + 'margin-left:' + (-Math.round(tip.outerWidth())) + 'px'); - } - } - opts.value = opts.range ? newValues : newValues[0]; - $(target).val(opts.range ? newValues.join(opts.separator) : newValues[0]); - - if (oldValues.join(',') != newValues.join(',')){ - opts.onChange.call(target, opts.value, (opts.range?oldValues:oldValues[0])); - } - } - - function initValue(target){ - var opts = $.data(target, 'slider').options; - var fn = opts.onChange; - opts.onChange = function(){}; - setValues(target, opts.value); - opts.onChange = fn; - } - - /** - * translate value to slider position - */ - function value2pos(target, value){ - var state = $.data(target, 'slider'); - var opts = state.options; - var slider = state.slider; - var size = opts.mode == 'h' ? slider.width() : slider.height(); - var pos = opts.converter.toPosition.call(target, value, size); - if (opts.mode == 'v'){ - pos = slider.height() - pos; - } - if (opts.reversed){ - pos = size - pos; - } - return pos.toFixed(0); - } - - /** - * translate slider position to value - */ - function pos2value(target, pos){ - var state = $.data(target, 'slider'); - var opts = state.options; - var slider = state.slider; - var size = opts.mode == 'h' ? slider.width() : slider.height(); - var pos = opts.mode=='h' ? (opts.reversed?(size-pos):pos) : (opts.reversed?pos:(size-pos)); - var value = opts.converter.toValue.call(target, pos, size); - return value.toFixed(0); - } - - $.fn.slider = function(options, param){ - if (typeof options == 'string'){ - return $.fn.slider.methods[options](this, param); - } - - options = options || {}; - return this.each(function(){ - var state = $.data(this, 'slider'); - if (state){ - $.extend(state.options, options); - } else { - state = $.data(this, 'slider', { - options: $.extend({}, $.fn.slider.defaults, $.fn.slider.parseOptions(this), options), - slider: init(this) - }); - $(this).removeAttr('disabled'); - } - - var opts = state.options; - opts.min = parseFloat(opts.min); - opts.max = parseFloat(opts.max); - if (opts.range){ - if (!$.isArray(opts.value)){ - opts.value = $.map(String(opts.value).split(opts.separator), function(v){ - return parseFloat(v); - }); - } - if (opts.value.length < 2){ - opts.value.push(opts.max); - } - } else { - opts.value = parseFloat(opts.value); - } - opts.step = parseFloat(opts.step); - opts.originalValue = opts.value; - - buildSlider(this); - showRule(this); - setSize(this); - }); - }; - - $.fn.slider.methods = { - options: function(jq){ - return $.data(jq[0], 'slider').options; - }, - destroy: function(jq){ - return jq.each(function(){ - $.data(this, 'slider').slider.remove(); - $(this).remove(); - }); - }, - resize: function(jq, param){ - return jq.each(function(){ - setSize(this, param); - }); - }, - getValue: function(jq){ - return jq.slider('options').value; - }, - getValues: function(jq){ - return jq.slider('options').value; - }, - setValue: function(jq, value){ - return jq.each(function(){ - setValues(this, [value]); - }); - }, - setValues: function(jq, values){ - return jq.each(function(){ - setValues(this, values); - }); - }, - clear: function(jq){ - return jq.each(function(){ - var opts = $(this).slider('options'); - setValues(this, opts.range?[opts.min,opts.max]:[opts.min]); - }); - }, - reset: function(jq){ - return jq.each(function(){ - var opts = $(this).slider('options'); - $(this).slider(opts.range?'setValues':'setValue', opts.originalValue); - }); - }, - enable: function(jq){ - return jq.each(function(){ - $.data(this, 'slider').options.disabled = false; - buildSlider(this); - }); - }, - disable: function(jq){ - return jq.each(function(){ - $.data(this, 'slider').options.disabled = true; - buildSlider(this); - }); - } - }; - - $.fn.slider.parseOptions = function(target){ - var t = $(target); - return $.extend({}, $.parser.parseOptions(target, [ - 'width','height','mode',{reversed:'boolean',showTip:'boolean',range:'boolean',min:'number',max:'number',step:'number'} - ]), { - value: (t.val() || undefined), - disabled: (t.attr('disabled') ? true : undefined), - rule: (t.attr('rule') ? eval(t.attr('rule')) : undefined) - }); - }; - - $.fn.slider.defaults = { - width: 'auto', - height: 'auto', - mode: 'h', // 'h'(horizontal) or 'v'(vertical) - reversed: false, - showTip: false, - disabled: false, - range: false, - value: 0, - separator: ',', - min: 0, - max: 100, - step: 1, - rule: [], // [0,'|',100] - tipFormatter: function(value){return value}, - converter:{ - toPosition:function(value, size){ - var opts = $(this).slider('options'); - return (value-opts.min)/(opts.max-opts.min)*size; - }, - toValue:function(pos, size){ - var opts = $(this).slider('options'); - return opts.min + (opts.max-opts.min)*(pos/size); - } - }, - onChange: function(value, oldValue){}, - onSlideStart: function(value){}, - onSlideEnd: function(value){}, - onComplete: function(value){} - }; -})(jQuery); diff --git a/vendor/FHC-vendor/easyui/src/jquery.tabs.js b/vendor/FHC-vendor/easyui/src/jquery.tabs.js deleted file mode 100644 index dc5705007..000000000 --- a/vendor/FHC-vendor/easyui/src/jquery.tabs.js +++ /dev/null @@ -1,884 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * tabs - jQuery EasyUI - * - * Dependencies: - * panel - * linkbutton - * - */ -(function($){ - function getContentWidth(c){ - var w = 0; - $(c).children().each(function(){ - w += $(this).outerWidth(true); - }); - return w; - } - /** - * set the tabs scrollers to show or not, - * dependent on the tabs count and width - */ - function setScrollers(container) { - var opts = $.data(container, 'tabs').options; - if (opts.tabPosition == 'left' || opts.tabPosition == 'right' || !opts.showHeader){return} - - var header = $(container).children('div.tabs-header'); - var tool = header.children('div.tabs-tool:not(.tabs-tool-hidden)'); - var sLeft = header.children('div.tabs-scroller-left'); - var sRight = header.children('div.tabs-scroller-right'); - var wrap = header.children('div.tabs-wrap'); - - // set the tool height - var tHeight = header.outerHeight(); - if (opts.plain){ - tHeight -= tHeight - header.height(); - } - tool._outerHeight(tHeight); - - var tabsWidth = getContentWidth(header.find('ul.tabs')); - var cWidth = header.width() - tool._outerWidth(); - - if (tabsWidth > cWidth) { - sLeft.add(sRight).show()._outerHeight(tHeight); - if (opts.toolPosition == 'left'){ - tool.css({ - left: sLeft.outerWidth(), - right: '' - }); - wrap.css({ - marginLeft: sLeft.outerWidth() + tool._outerWidth(), - marginRight: sRight._outerWidth(), - width: cWidth - sLeft.outerWidth() - sRight.outerWidth() - }); - } else { - tool.css({ - left: '', - right: sRight.outerWidth() - }); - wrap.css({ - marginLeft: sLeft.outerWidth(), - marginRight: sRight.outerWidth() + tool._outerWidth(), - width: cWidth - sLeft.outerWidth() - sRight.outerWidth() - }); - } - } else { - sLeft.add(sRight).hide(); - if (opts.toolPosition == 'left'){ - tool.css({ - left: 0, - right: '' - }); - wrap.css({ - marginLeft: tool._outerWidth(), - marginRight: 0, - width: cWidth - }); - } else { - tool.css({ - left: '', - right: 0 - }); - wrap.css({ - marginLeft: 0, - marginRight: tool._outerWidth(), - width: cWidth - }); - } - } - } - - function addTools(container){ - var opts = $.data(container, 'tabs').options; - var header = $(container).children('div.tabs-header'); - if (opts.tools) { - if (typeof opts.tools == 'string'){ - $(opts.tools).addClass('tabs-tool').appendTo(header); - $(opts.tools).show(); - } else { - header.children('div.tabs-tool').remove(); - var tools = $('
                                                ').appendTo(header); - var tr = tools.find('tr'); - for(var i=0; i').appendTo(tr); - var tool = $('').appendTo(td); - tool[0].onclick = eval(opts.tools[i].handler || function(){}); - tool.linkbutton($.extend({}, opts.tools[i], { - plain: true - })); - } - } - } else { - header.children('div.tabs-tool').remove(); - } - } - - function setSize(container, param) { - var state = $.data(container, 'tabs'); - var opts = state.options; - var cc = $(container); - - if (!opts.doSize){return} - if (param){ - $.extend(opts, { - width: param.width, - height: param.height - }); - } - cc._size(opts); - - var header = cc.children('div.tabs-header'); - var panels = cc.children('div.tabs-panels'); - var wrap = header.find('div.tabs-wrap'); - var ul = wrap.find('.tabs'); - ul.children('li').removeClass('tabs-first tabs-last'); - ul.children('li:first').addClass('tabs-first'); - ul.children('li:last').addClass('tabs-last'); - - if (opts.tabPosition == 'left' || opts.tabPosition == 'right'){ - header._outerWidth(opts.showHeader ? opts.headerWidth : 0); - panels._outerWidth(cc.width() - header.outerWidth()); - header.add(panels)._size('height', isNaN(parseInt(opts.height)) ? '' : cc.height()); - wrap._outerWidth(header.width()); - ul._outerWidth(wrap.width()).css('height',''); - } else { - header.children('div.tabs-scroller-left,div.tabs-scroller-right,div.tabs-tool:not(.tabs-tool-hidden)').css('display', opts.showHeader?'block':'none'); - header._outerWidth(cc.width()).css('height',''); - if (opts.showHeader){ - header.css('background-color',''); - wrap.css('height',''); - } else { - header.css('background-color','transparent'); - header._outerHeight(0); - wrap._outerHeight(0); - } - ul._outerHeight(opts.tabHeight).css('width',''); - ul._outerHeight(ul.outerHeight()-ul.height()-1+opts.tabHeight).css('width',''); - - panels._size('height', isNaN(parseInt(opts.height)) ? '' : (cc.height()-header.outerHeight())); - panels._size('width', cc.width()); - } - - if (state.tabs.length){ - var d1 = ul.outerWidth(true) - ul.width(); - var li = ul.children('li:first'); - var d2 = li.outerWidth(true) - li.width(); - var hwidth = header.width() - header.children('.tabs-tool:not(.tabs-tool-hidden)')._outerWidth(); - var justifiedWidth = Math.floor((hwidth-d1-d2*state.tabs.length)/state.tabs.length); - - $.map(state.tabs, function(p){ - setTabSize(p, (opts.justified && $.inArray(opts.tabPosition,['top','bottom'])>=0) ? justifiedWidth : undefined); - }); - if (opts.justified && $.inArray(opts.tabPosition,['top','bottom'])>=0){ - var deltaWidth = hwidth - d1 - getContentWidth(ul); - setTabSize(state.tabs[state.tabs.length-1], justifiedWidth+deltaWidth); - } - } - setScrollers(container); - - function setTabSize(p, width){ - var p_opts = p.panel('options'); - var p_t = p_opts.tab.find('a.tabs-inner'); - var width = width ? width : (parseInt(p_opts.tabWidth||opts.tabWidth||undefined)); - if (width){ - p_t._outerWidth(width); - } else { - p_t.css('width', ''); - } - p_t._outerHeight(opts.tabHeight); - p_t.css('lineHeight', p_t.height()+'px'); - p_t.find('.easyui-fluid:visible').triggerHandler('_resize'); - } - } - - /** - * set selected tab panel size - */ - function setSelectedSize(container){ - var opts = $.data(container, 'tabs').options; - var tab = getSelectedTab(container); - if (tab){ - var panels = $(container).children('div.tabs-panels'); - var width = opts.width=='auto' ? 'auto' : panels.width(); - var height = opts.height=='auto' ? 'auto' : panels.height(); - tab.panel('resize', { - width: width, - height: height - }); - } - } - - /** - * wrap the tabs header and body - */ - function wrapTabs(container) { - var tabs = $.data(container, 'tabs').tabs; - var cc = $(container).addClass('tabs-container'); - var panels = $('
                                                ').insertBefore(cc); - cc.children('div').each(function(){ - panels[0].appendChild(this); - }); - cc[0].appendChild(panels[0]); - $('
                                                ' - + '
                                                ' - + '
                                                ' - + '
                                                ' - + '
                                                  ' - + '
                                                  ' - + '
                                                  ').prependTo(container); - - cc.children('div.tabs-panels').children('div').each(function(i){ - var opts = $.extend({}, $.parser.parseOptions(this), { - disabled: ($(this).attr('disabled') ? true : undefined), - selected: ($(this).attr('selected') ? true : undefined) - }); - createTab(container, opts, $(this)); - }); - - cc.children('div.tabs-header').find('.tabs-scroller-left, .tabs-scroller-right').hover( - function(){$(this).addClass('tabs-scroller-over');}, - function(){$(this).removeClass('tabs-scroller-over');} - ); - cc.bind('_resize', function(e,force){ - if ($(this).hasClass('easyui-fluid') || force){ - setSize(container); - setSelectedSize(container); - } - return false; - }); - } - - function bindEvents(container){ - var state = $.data(container, 'tabs') - var opts = state.options; - $(container).children('div.tabs-header').unbind().bind('click', function(e){ - if ($(e.target).hasClass('tabs-scroller-left')){ - $(container).tabs('scrollBy', -opts.scrollIncrement); - } else if ($(e.target).hasClass('tabs-scroller-right')){ - $(container).tabs('scrollBy', opts.scrollIncrement); - } else { - var li = $(e.target).closest('li'); - if (li.hasClass('tabs-disabled')){return false;} - var a = $(e.target).closest('a.tabs-close'); - if (a.length){ - closeTab(container, getLiIndex(li)); - } else if (li.length){ -// selectTab(container, getLiIndex(li)); - var index = getLiIndex(li); - var popts = state.tabs[index].panel('options'); - if (popts.collapsible){ - popts.closed ? selectTab(container, index) : unselectTab(container, index); - } else { - selectTab(container, index); - } - } - return false; - } - }).bind('contextmenu', function(e){ - var li = $(e.target).closest('li'); - if (li.hasClass('tabs-disabled')){return;} - if (li.length){ - opts.onContextMenu.call(container, e, li.find('span.tabs-title').html(), getLiIndex(li)); - } - }); - - function getLiIndex(li){ - var index = 0; - li.parent().children('li').each(function(i){ - if (li[0] == this){ - index = i; - return false; - } - }); - return index; - } - } - - function setProperties(container){ - var opts = $.data(container, 'tabs').options; - var header = $(container).children('div.tabs-header'); - var panels = $(container).children('div.tabs-panels'); - - header.removeClass('tabs-header-top tabs-header-bottom tabs-header-left tabs-header-right'); - panels.removeClass('tabs-panels-top tabs-panels-bottom tabs-panels-left tabs-panels-right'); - if (opts.tabPosition == 'top'){ - header.insertBefore(panels); - } else if (opts.tabPosition == 'bottom'){ - header.insertAfter(panels); - header.addClass('tabs-header-bottom'); - panels.addClass('tabs-panels-top'); - } else if (opts.tabPosition == 'left'){ - header.addClass('tabs-header-left'); - panels.addClass('tabs-panels-right'); - } else if (opts.tabPosition == 'right'){ - header.addClass('tabs-header-right'); - panels.addClass('tabs-panels-left'); - } - - if (opts.plain == true) { - header.addClass('tabs-header-plain'); - } else { - header.removeClass('tabs-header-plain'); - } - header.removeClass('tabs-header-narrow').addClass(opts.narrow?'tabs-header-narrow':''); - var tabs = header.find('.tabs'); - tabs.removeClass('tabs-pill').addClass(opts.pill?'tabs-pill':''); - tabs.removeClass('tabs-narrow').addClass(opts.narrow?'tabs-narrow':''); - tabs.removeClass('tabs-justified').addClass(opts.justified?'tabs-justified':''); - if (opts.border == true){ - header.removeClass('tabs-header-noborder'); - panels.removeClass('tabs-panels-noborder'); - } else { - header.addClass('tabs-header-noborder'); - panels.addClass('tabs-panels-noborder'); - } - opts.doSize = true; - } - - function createTab(container, options, pp) { - options = options || {}; - var state = $.data(container, 'tabs'); - var tabs = state.tabs; - if (options.index == undefined || options.index > tabs.length){options.index = tabs.length} - if (options.index < 0){options.index = 0} - - var ul = $(container).children('div.tabs-header').find('ul.tabs'); - var panels = $(container).children('div.tabs-panels'); - var tab = $( - '
                                                • ' + - '' + - '' + - '' + - '' + - '
                                                • '); - if (!pp){pp = $('
                                                  ');} - if (options.index >= tabs.length){ - tab.appendTo(ul); - pp.appendTo(panels); - tabs.push(pp); - } else { - tab.insertBefore(ul.children('li:eq('+options.index+')')); - pp.insertBefore(panels.children('div.panel:eq('+options.index+')')); - tabs.splice(options.index, 0, pp); - } - - // create panel - pp.panel($.extend({}, options, { - tab: tab, - border: false, - noheader: true, - closed: true, - doSize: false, - iconCls: (options.icon ? options.icon : undefined), - onLoad: function(){ - if (options.onLoad){ - options.onLoad.call(this, arguments); - } - state.options.onLoad.call(container, $(this)); - }, - onBeforeOpen: function(){ - if (options.onBeforeOpen){ - if (options.onBeforeOpen.call(this) == false){return false;} - } - var p = $(container).tabs('getSelected'); - if (p){ - if (p[0] != this){ - $(container).tabs('unselect', getTabIndex(container, p)); - p = $(container).tabs('getSelected'); - if (p){ - return false; - } - } else { - setSelectedSize(container); - return false; - } - } - - var popts = $(this).panel('options'); - popts.tab.addClass('tabs-selected'); - // scroll the tab to center position if required. - var wrap = $(container).find('>div.tabs-header>div.tabs-wrap'); - var left = popts.tab.position().left; - var right = left + popts.tab.outerWidth(); - if (left < 0 || right > wrap.width()){ - var deltaX = left - (wrap.width()-popts.tab.width()) / 2; - $(container).tabs('scrollBy', deltaX); - } else { - $(container).tabs('scrollBy', 0); - } - - var panel = $(this).panel('panel'); - panel.css('display','block'); - setSelectedSize(container); - panel.css('display','none'); - }, - onOpen: function(){ - if (options.onOpen){ - options.onOpen.call(this); - } - var popts = $(this).panel('options'); - state.selectHis.push(popts.title); - state.options.onSelect.call(container, popts.title, getTabIndex(container, this)); - }, - onBeforeClose: function(){ - if (options.onBeforeClose){ - if (options.onBeforeClose.call(this) == false){return false;} - } - $(this).panel('options').tab.removeClass('tabs-selected'); - }, - onClose: function(){ - if (options.onClose){ - options.onClose.call(this); - } - var popts = $(this).panel('options'); - state.options.onUnselect.call(container, popts.title, getTabIndex(container, this)); - } - })); - - // only update the tab header - $(container).tabs('update', { - tab: pp, - options: pp.panel('options'), - type: 'header' - }); - } - - function addTab(container, options) { - var state = $.data(container, 'tabs'); - var opts = state.options; - if (options.selected == undefined) options.selected = true; - - createTab(container, options); - opts.onAdd.call(container, options.title, options.index); - if (options.selected){ - selectTab(container, options.index); // select the added tab panel - } - } - - /** - * update tab panel, param has following properties: - * tab: the tab panel to be updated - * options: the tab panel options - * type: the update type, possible values are: 'header','body','all' - */ - function updateTab(container, param){ - param.type = param.type || 'all'; - var selectHis = $.data(container, 'tabs').selectHis; - var pp = param.tab; // the tab panel - var opts = pp.panel('options'); // get the tab panel options - var oldTitle = opts.title; - $.extend(opts, param.options, { - iconCls: (param.options.icon ? param.options.icon : undefined) - }); - - if (param.type == 'all' || param.type == 'body'){ - pp.panel(); - } - if (param.type == 'all' || param.type == 'header'){ - var tab = opts.tab; - - if (opts.header){ - tab.find('.tabs-inner').html($(opts.header)); - } else { - var s_title = tab.find('span.tabs-title'); - var s_icon = tab.find('span.tabs-icon'); - s_title.html(opts.title); - s_icon.attr('class', 'tabs-icon'); - - tab.find('a.tabs-close').remove(); - if (opts.closable){ - s_title.addClass('tabs-closable'); - $('').appendTo(tab); - } else{ - s_title.removeClass('tabs-closable'); - } - if (opts.iconCls){ - s_title.addClass('tabs-with-icon'); - s_icon.addClass(opts.iconCls); - } else { - s_title.removeClass('tabs-with-icon'); - } - if (opts.tools){ - var p_tool = tab.find('span.tabs-p-tool'); - if (!p_tool.length){ - var p_tool = $('').insertAfter(tab.find('a.tabs-inner')); - } - if ($.isArray(opts.tools)){ - p_tool.empty(); - for(var i=0; i').appendTo(p_tool); - t.addClass(opts.tools[i].iconCls); - if (opts.tools[i].handler){ - t.bind('click', {handler:opts.tools[i].handler}, function(e){ - if ($(this).parents('li').hasClass('tabs-disabled')){return;} - e.data.handler.call(this); - }); - } - } - } else { - $(opts.tools).children().appendTo(p_tool); - } - var pr = p_tool.children().length * 12; - if (opts.closable) { - pr += 8; - } else { - pr -= 3; - p_tool.css('right','5px'); - } - s_title.css('padding-right', pr+'px'); - } else { - tab.find('span.tabs-p-tool').remove(); - s_title.css('padding-right', ''); - } - } - if (oldTitle != opts.title){ - for(var i=0; i= tabs.length){ - return null; - } else { - var tab = tabs[which]; - if (removeit) { - tabs.splice(which, 1); - } - return tab; - } - } - for(var i=0; i.tabs-header>.tabs-tool'); - if (visible){ - tool.removeClass('tabs-tool-hidden').show(); - } else { - tool.addClass('tabs-tool-hidden').hide(); - } - $(container).tabs('resize').tabs('scrollBy', 0); - } - - - $.fn.tabs = function(options, param){ - if (typeof options == 'string') { - return $.fn.tabs.methods[options](this, param); - } - - options = options || {}; - return this.each(function(){ - var state = $.data(this, 'tabs'); - if (state) { - $.extend(state.options, options); - } else { - $.data(this, 'tabs', { - options: $.extend({},$.fn.tabs.defaults, $.fn.tabs.parseOptions(this), options), - tabs: [], - selectHis: [] - }); - wrapTabs(this); - } - - addTools(this); - setProperties(this); - setSize(this); - bindEvents(this); - - doFirstSelect(this); - }); - }; - - $.fn.tabs.methods = { - options: function(jq){ - var cc = jq[0]; - var opts = $.data(cc, 'tabs').options; - var s = getSelectedTab(cc); - opts.selected = s ? getTabIndex(cc, s) : -1; - return opts; - }, - tabs: function(jq){ - return $.data(jq[0], 'tabs').tabs; - }, - resize: function(jq, param){ - return jq.each(function(){ - setSize(this, param); - setSelectedSize(this); - }); - }, - add: function(jq, options){ - return jq.each(function(){ - addTab(this, options); - }); - }, - close: function(jq, which){ - return jq.each(function(){ - closeTab(this, which); - }); - }, - getTab: function(jq, which){ - return getTab(jq[0], which); - }, - getTabIndex: function(jq, tab){ - return getTabIndex(jq[0], tab); - }, - getSelected: function(jq){ - return getSelectedTab(jq[0]); - }, - select: function(jq, which){ - return jq.each(function(){ - selectTab(this, which); - }); - }, - unselect: function(jq, which){ - return jq.each(function(){ - unselectTab(this, which); - }); - }, - exists: function(jq, which){ - return exists(jq[0], which); - }, - update: function(jq, options){ - return jq.each(function(){ - updateTab(this, options); - }); - }, - enableTab: function(jq, which){ - return jq.each(function(){ - var opts = $(this).tabs('getTab', which).panel('options'); - opts.tab.removeClass('tabs-disabled'); - opts.disabled = false; - }); - }, - disableTab: function(jq, which){ - return jq.each(function(){ - var opts = $(this).tabs('getTab', which).panel('options'); - opts.tab.addClass('tabs-disabled'); - opts.disabled = true; - }); - }, - showHeader: function(jq){ - return jq.each(function(){ - showHeader(this, true); - }); - }, - hideHeader: function(jq){ - return jq.each(function(){ - showHeader(this, false); - }); - }, - showTool: function(jq){ - return jq.each(function(){ - showTool(this, true); - }); - }, - hideTool: function(jq){ - return jq.each(function(){ - showTool(this, false); - }); - }, - scrollBy: function(jq, deltaX){ // scroll the tab header by the specified amount of pixels - return jq.each(function(){ - var opts = $(this).tabs('options'); - var wrap = $(this).find('>div.tabs-header>div.tabs-wrap'); - var pos = Math.min(wrap._scrollLeft() + deltaX, getMaxScrollWidth()); - wrap.animate({scrollLeft: pos}, opts.scrollDuration); - - function getMaxScrollWidth(){ - var w = 0; - var ul = wrap.children('ul'); - ul.children('li').each(function(){ - w += $(this).outerWidth(true); - }); - return w - wrap.width() + (ul.outerWidth() - ul.width()); - } - }); - } - }; - - $.fn.tabs.parseOptions = function(target){ - return $.extend({}, $.parser.parseOptions(target, [ - 'tools','toolPosition','tabPosition', - {fit:'boolean',border:'boolean',plain:'boolean'}, - {headerWidth:'number',tabWidth:'number',tabHeight:'number',selected:'number'}, - {showHeader:'boolean',justified:'boolean',narrow:'boolean',pill:'boolean'} - ])); - }; - - $.fn.tabs.defaults = { - width: 'auto', - height: 'auto', - headerWidth: 150, // the tab header width, it is valid only when tabPosition set to 'left' or 'right' - tabWidth: 'auto', // the tab width - tabHeight: 27, // the tab height - selected: 0, // the initialized selected tab index - showHeader: true, - plain: false, - fit: false, - border: true, - justified: false, - narrow: false, - pill: false, - tools: null, - toolPosition: 'right', // left,right - tabPosition: 'top', // possible values: top,bottom - scrollIncrement: 100, - scrollDuration: 400, - onLoad: function(panel){}, - onSelect: function(title, index){}, - onUnselect: function(title, index){}, - onBeforeClose: function(title, index){}, - onClose: function(title, index){}, - onAdd: function(title, index){}, - onUpdate: function(title, index){}, - onContextMenu: function(e, title, index){} - }; -})(jQuery); diff --git a/vendor/FHC-vendor/easyui/src/jquery.window.js b/vendor/FHC-vendor/easyui/src/jquery.window.js deleted file mode 100644 index 397e194d5..000000000 --- a/vendor/FHC-vendor/easyui/src/jquery.window.js +++ /dev/null @@ -1,374 +0,0 @@ -/** - * jQuery EasyUI 1.4.4 - * - * Copyright (c) 2009-2015 www.jeasyui.com. All rights reserved. - * - * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php - * To use it on other terms please contact us: info@jeasyui.com - * - */ -/** - * window - jQuery EasyUI - * - * Dependencies: - * panel - * draggable - * resizable - * - */ -(function($){ - function moveWindow(target, param){ - var state = $.data(target, 'window'); - if (param){ - if (param.left != null) state.options.left = param.left; - if (param.top != null) state.options.top = param.top; - } - $(target).panel('move', state.options); - if (state.shadow){ - state.shadow.css({ - left: state.options.left, - top: state.options.top - }); - } - } - - /** - * center the window only horizontally - */ - function hcenter(target, tomove){ - var opts = $.data(target, 'window').options; - var pp = $(target).window('panel'); - var width = pp._outerWidth(); - if (opts.inline){ - var parent = pp.parent(); - opts.left = Math.ceil((parent.width() - width) / 2 + parent.scrollLeft()); - } else { - opts.left = Math.ceil(($(window)._outerWidth() - width) / 2 + $(document).scrollLeft()); - } - if (tomove){moveWindow(target);} - } - - /** - * center the window only vertically - */ - function vcenter(target, tomove){ - var opts = $.data(target, 'window').options; - var pp = $(target).window('panel'); - var height = pp._outerHeight(); - if (opts.inline){ - var parent = pp.parent(); - opts.top = Math.ceil((parent.height() - height) / 2 + parent.scrollTop()); - } else { - opts.top = Math.ceil(($(window)._outerHeight() - height) / 2 + $(document).scrollTop()); - } - if (tomove){moveWindow(target);} - } - - function create(target){ - var state = $.data(target, 'window'); - var opts = state.options; - var win = $(target).panel($.extend({}, state.options, { - border: false, - doSize: true, // size the panel, the property undefined in window component - closed: true, // close the panel - cls: 'window', - headerCls: 'window-header', - bodyCls: 'window-body ' + (opts.noheader ? 'window-body-noheader' : ''), - - onBeforeDestroy: function(){ - if (opts.onBeforeDestroy.call(target) == false){return false;} - if (state.shadow){state.shadow.remove();} - if (state.mask){state.mask.remove();} - }, - onClose: function(){ - if (state.shadow){state.shadow.hide();} - if (state.mask){state.mask.hide();} - opts.onClose.call(target); - }, - onOpen: function(){ - if (state.mask){ - state.mask.css($.extend({ - display:'block', - zIndex: $.fn.window.defaults.zIndex++ - }, $.fn.window.getMaskSize(target))); - } - if (state.shadow){ - state.shadow.css({ - display:'block', - zIndex: $.fn.window.defaults.zIndex++, - left: opts.left, - top: opts.top, - width: state.window._outerWidth(), - height: state.window._outerHeight() - }); - } - state.window.css('z-index', $.fn.window.defaults.zIndex++); - - opts.onOpen.call(target); - }, - onResize: function(width, height){ - var popts = $(this).panel('options'); - $.extend(opts, { - width: popts.width, - height: popts.height, - left: popts.left, - top: popts.top - }); - if (state.shadow){ - state.shadow.css({ - left: opts.left, - top: opts.top, - width: state.window._outerWidth(), - height: state.window._outerHeight() - }); - } - opts.onResize.call(target, width, height); - }, - onMinimize: function(){ - if (state.shadow){state.shadow.hide();} - if (state.mask){state.mask.hide();} - state.options.onMinimize.call(target); - }, - onBeforeCollapse: function(){ - if (opts.onBeforeCollapse.call(target) == false){return false;} - if (state.shadow){state.shadow.hide();} - }, - onExpand: function(){ - if (state.shadow){state.shadow.show();} - opts.onExpand.call(target); - } - })); - - state.window = win.panel('panel'); - - // create mask - if (state.mask){state.mask.remove();} - if (opts.modal){ - state.mask = $('').insertAfter(state.window); - } - - // create shadow - if (state.shadow){state.shadow.remove();} - if (opts.shadow){ - state.shadow = $('').insertAfter(state.window); - } - - // center and open the window - var closed = opts.closed; - if (opts.left == null){hcenter(target);} - if (opts.top == null){vcenter(target);} - moveWindow(target); - if (!closed){win.window('open');} - } - - - /** - * set window drag and resize property - */ - function setProperties(target){ - var state = $.data(target, 'window'); - - state.window.draggable({ - handle: '>div.panel-header>div.panel-title', - disabled: state.options.draggable == false, - onStartDrag: function(e){ - if (state.mask) state.mask.css('z-index', $.fn.window.defaults.zIndex++); - if (state.shadow) state.shadow.css('z-index', $.fn.window.defaults.zIndex++); - state.window.css('z-index', $.fn.window.defaults.zIndex++); - - if (!state.proxy){ - state.proxy = $('
                                                  ').insertAfter(state.window); - } - state.proxy.css({ - display:'none', - zIndex: $.fn.window.defaults.zIndex++, - left: e.data.left, - top: e.data.top - }); - state.proxy._outerWidth(state.window._outerWidth()); - state.proxy._outerHeight(state.window._outerHeight()); - setTimeout(function(){ - if (state.proxy) state.proxy.show(); - }, 500); - }, - onDrag: function(e){ - state.proxy.css({ - display:'block', - left: e.data.left, - top: e.data.top - }); - return false; - }, - onStopDrag: function(e){ - state.options.left = e.data.left; - state.options.top = e.data.top; - $(target).window('move'); - state.proxy.remove(); - state.proxy = null; - } - }); - - state.window.resizable({ - disabled: state.options.resizable == false, - onStartResize:function(e){ - if (state.pmask){state.pmask.remove();} - state.pmask = $('
                                                  ').insertAfter(state.window); - state.pmask.css({ - zIndex: $.fn.window.defaults.zIndex++, - left: e.data.left, - top: e.data.top, - width: state.window._outerWidth(), - height: state.window._outerHeight() - }); - if (state.proxy){state.proxy.remove();} - state.proxy = $('
                                                  ').insertAfter(state.window); - state.proxy.css({ - zIndex: $.fn.window.defaults.zIndex++, - left: e.data.left, - top: e.data.top - }); - state.proxy._outerWidth(e.data.width)._outerHeight(e.data.height); - }, - onResize: function(e){ - state.proxy.css({ - left: e.data.left, - top: e.data.top - }); - state.proxy._outerWidth(e.data.width); - state.proxy._outerHeight(e.data.height); - return false; - }, - onStopResize: function(e){ - $(target).window('resize', e.data); - state.pmask.remove(); - state.pmask = null; - state.proxy.remove(); - state.proxy = null; - } - }); - } - - // function getPageArea() { - // if (document.compatMode == 'BackCompat') { - // return { - // width: Math.max(document.body.scrollWidth, document.body.clientWidth), - // height: Math.max(document.body.scrollHeight, document.body.clientHeight) - // } - // } else { - // return { - // width: Math.max(document.documentElement.scrollWidth, document.documentElement.clientWidth), - // height: Math.max(document.documentElement.scrollHeight, document.documentElement.clientHeight) - // } - // } - // } - - // when window resize, reset the width and height of the window's mask - $(window).resize(function(){ - $('body>div.window-mask').css({ - width: $(window)._outerWidth(), - height: $(window)._outerHeight() - }); - setTimeout(function(){ - $('body>div.window-mask').css($.fn.window.getMaskSize()); - }, 50); - }); - - $.fn.window = function(options, param){ - if (typeof options == 'string'){ - var method = $.fn.window.methods[options]; - if (method){ - return method(this, param); - } else { - return this.panel(options, param); - } - } - - options = options || {}; - return this.each(function(){ - var state = $.data(this, 'window'); - if (state){ - $.extend(state.options, options); - } else { - state = $.data(this, 'window', { - options: $.extend({}, $.fn.window.defaults, $.fn.window.parseOptions(this), options) - }); - if (!state.options.inline){ - document.body.appendChild(this); - } - } - create(this); - setProperties(this); - }); - }; - - $.fn.window.methods = { - options: function(jq){ - var popts = jq.panel('options'); - var wopts = $.data(jq[0], 'window').options; - return $.extend(wopts, { - closed: popts.closed, - collapsed: popts.collapsed, - minimized: popts.minimized, - maximized: popts.maximized - }); - }, - window: function(jq){ - return $.data(jq[0], 'window').window; - }, - move: function(jq, param){ - return jq.each(function(){ - moveWindow(this, param); - }); - }, - hcenter: function(jq){ - return jq.each(function(){ - hcenter(this, true); - }); - }, - vcenter: function(jq){ - return jq.each(function(){ - vcenter(this, true); - }); - }, - center: function(jq){ - return jq.each(function(){ - hcenter(this); - vcenter(this); - moveWindow(this); - }); - } - }; - - $.fn.window.getMaskSize = function(target){ - var state = $(target).data('window'); - var inline = (state && state.options.inline); - return { - width: (inline ? '100%' : $(document).width()), - height: (inline ? '100%' : $(document).height()) - }; - }; - - $.fn.window.parseOptions = function(target){ - return $.extend({}, $.fn.panel.parseOptions(target), $.parser.parseOptions(target, [ - {draggable:'boolean',resizable:'boolean',shadow:'boolean',modal:'boolean',inline:'boolean'} - ])); - }; - - // Inherited from $.fn.panel.defaults - $.fn.window.defaults = $.extend({}, $.fn.panel.defaults, { - zIndex: 9000, - draggable: true, - resizable: true, - shadow: true, - modal: false, - inline: false, // true to stay inside its parent, false to go on top of all elements - - // window's property which difference from panel - title: 'New Window', - collapsible: true, - minimizable: true, - maximizable: true, - closable: true, - closed: false - }); -})(jQuery); diff --git a/vendor/FHC-vendor/easyui/themes/black/accordion.css b/vendor/FHC-vendor/easyui/themes/black/accordion.css deleted file mode 100644 index a0f6ddc3d..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/accordion.css +++ /dev/null @@ -1,41 +0,0 @@ -.accordion { - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.accordion .accordion-header { - border-width: 0 0 1px; - cursor: pointer; -} -.accordion .accordion-body { - border-width: 0 0 1px; -} -.accordion-noborder { - border-width: 0; -} -.accordion-noborder .accordion-header { - border-width: 0 0 1px; -} -.accordion-noborder .accordion-body { - border-width: 0 0 1px; -} -.accordion-collapse { - background: url('images/accordion_arrows.png') no-repeat 0 0; -} -.accordion-expand { - background: url('images/accordion_arrows.png') no-repeat -16px 0; -} -.accordion { - background: #666; - border-color: #000; -} -.accordion .accordion-header { - background: #3d3d3d; - filter: none; -} -.accordion .accordion-header-selected { - background: #0052A3; -} -.accordion .accordion-header-selected .panel-title { - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/calendar.css b/vendor/FHC-vendor/easyui/themes/black/calendar.css deleted file mode 100644 index e862e22e5..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/calendar.css +++ /dev/null @@ -1,197 +0,0 @@ -.calendar { - border-width: 1px; - border-style: solid; - padding: 1px; - overflow: hidden; -} -.calendar table { - table-layout: fixed; - border-collapse: separate; - font-size: 12px; - width: 100%; - height: 100%; -} -.calendar table td, -.calendar table th { - font-size: 12px; -} -.calendar-noborder { - border: 0; -} -.calendar-header { - position: relative; - height: 22px; -} -.calendar-title { - text-align: center; - height: 22px; -} -.calendar-title span { - position: relative; - display: inline-block; - top: 2px; - padding: 0 3px; - height: 18px; - line-height: 18px; - font-size: 12px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth, -.calendar-nextmonth, -.calendar-prevyear, -.calendar-nextyear { - position: absolute; - top: 50%; - margin-top: -7px; - width: 14px; - height: 14px; - cursor: pointer; - font-size: 1px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth { - left: 20px; - background: url('images/calendar_arrows.png') no-repeat -18px -2px; -} -.calendar-nextmonth { - right: 20px; - background: url('images/calendar_arrows.png') no-repeat -34px -2px; -} -.calendar-prevyear { - left: 3px; - background: url('images/calendar_arrows.png') no-repeat -1px -2px; -} -.calendar-nextyear { - right: 3px; - background: url('images/calendar_arrows.png') no-repeat -49px -2px; -} -.calendar-body { - position: relative; -} -.calendar-body th, -.calendar-body td { - text-align: center; -} -.calendar-day { - border: 0; - padding: 1px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-other-month { - opacity: 0.3; - filter: alpha(opacity=30); -} -.calendar-disabled { - opacity: 0.6; - filter: alpha(opacity=60); - cursor: default; -} -.calendar-menu { - position: absolute; - top: 0; - left: 0; - width: 180px; - height: 150px; - padding: 5px; - font-size: 12px; - display: none; - overflow: hidden; -} -.calendar-menu-year-inner { - text-align: center; - padding-bottom: 5px; -} -.calendar-menu-year { - width: 40px; - text-align: center; - border-width: 1px; - border-style: solid; - margin: 0; - padding: 2px; - font-weight: bold; - font-size: 12px; -} -.calendar-menu-prev, -.calendar-menu-next { - display: inline-block; - width: 21px; - height: 21px; - vertical-align: top; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-menu-prev { - margin-right: 10px; - background: url('images/calendar_arrows.png') no-repeat 2px 2px; -} -.calendar-menu-next { - margin-left: 10px; - background: url('images/calendar_arrows.png') no-repeat -45px 2px; -} -.calendar-menu-month { - text-align: center; - cursor: pointer; - font-weight: bold; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-body th, -.calendar-menu-month { - color: #ffffff; -} -.calendar-day { - color: #fff; -} -.calendar-sunday { - color: #CC2222; -} -.calendar-saturday { - color: #00ee00; -} -.calendar-today { - color: #0000ff; -} -.calendar-menu-year { - border-color: #000; -} -.calendar { - border-color: #000; -} -.calendar-header { - background: #3d3d3d; -} -.calendar-body, -.calendar-menu { - background: #666; -} -.calendar-body th { - background: #555; - padding: 2px 0; -} -.calendar-hover, -.calendar-nav-hover, -.calendar-menu-hover { - background-color: #777; - color: #fff; -} -.calendar-hover { - border: 1px solid #555; - padding: 0; -} -.calendar-selected { - background-color: #0052A3; - color: #fff; - border: 1px solid #00458a; - padding: 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/combo.css b/vendor/FHC-vendor/easyui/themes/black/combo.css deleted file mode 100644 index ca0e46181..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/combo.css +++ /dev/null @@ -1,60 +0,0 @@ -.combo { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.combo .combo-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0px 2px; - vertical-align: baseline; -} -.combo-arrow { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.combo-arrow-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.combo-panel { - overflow: auto; -} -.combo-arrow { - background: url('images/combo_arrow.png') no-repeat center center; -} -.combo-panel { - background-color: #666; -} -.combo { - border-color: #000; - background-color: #fff; -} -.combo-arrow { - background-color: #3d3d3d; -} -.combo-arrow-hover { - background-color: #777; -} -.combo-arrow:hover { - background-color: #777; -} -.combo .textbox-icon-disabled:hover { - cursor: default; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/combobox.css b/vendor/FHC-vendor/easyui/themes/black/combobox.css deleted file mode 100644 index 284332e00..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/combobox.css +++ /dev/null @@ -1,24 +0,0 @@ -.combobox-item, -.combobox-group { - font-size: 12px; - padding: 3px; - padding-right: 0px; -} -.combobox-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.combobox-gitem { - padding-left: 10px; -} -.combobox-group { - font-weight: bold; -} -.combobox-item-hover { - background-color: #777; - color: #fff; -} -.combobox-item-selected { - background-color: #0052A3; - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/datagrid.css b/vendor/FHC-vendor/easyui/themes/black/datagrid.css deleted file mode 100644 index c0d09f5c9..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/datagrid.css +++ /dev/null @@ -1,276 +0,0 @@ -.datagrid .panel-body { - overflow: hidden; - position: relative; -} -.datagrid-view { - position: relative; - overflow: hidden; -} -.datagrid-view1, -.datagrid-view2 { - position: absolute; - overflow: hidden; - top: 0; -} -.datagrid-view1 { - left: 0; -} -.datagrid-view2 { - right: 0; -} -.datagrid-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - opacity: 0.3; - filter: alpha(opacity=30); - display: none; -} -.datagrid-mask-msg { - position: absolute; - top: 50%; - margin-top: -20px; - padding: 10px 5px 10px 30px; - width: auto; - height: 16px; - border-width: 2px; - border-style: solid; - display: none; -} -.datagrid-sort-icon { - padding: 0; - display: none; -} -.datagrid-toolbar { - height: auto; - padding: 1px 2px; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #444; - border-right: 1px solid #777; - margin: 2px 1px; -} -.datagrid .datagrid-pager { - display: block; - margin: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.datagrid .datagrid-pager-top { - border-width: 0 0 1px 0; -} -.datagrid-header { - overflow: hidden; - cursor: default; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-header-inner { - float: left; - width: 10000px; -} -.datagrid-header-row, -.datagrid-row { - height: 25px; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-width: 0 1px 1px 0; - border-style: dotted; - margin: 0; - padding: 0; -} -.datagrid-cell, -.datagrid-cell-group, -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - margin: 0; - padding: 0 4px; - white-space: nowrap; - word-wrap: normal; - overflow: hidden; - height: 18px; - line-height: 18px; - font-size: 12px; -} -.datagrid-header .datagrid-cell { - height: auto; -} -.datagrid-header .datagrid-cell span { - font-size: 12px; -} -.datagrid-cell-group { - text-align: center; - text-overflow: ellipsis; -} -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - width: 30px; - text-align: center; - margin: 0; - padding: 0; -} -.datagrid-body { - margin: 0; - padding: 0; - overflow: auto; - zoom: 1; -} -.datagrid-view1 .datagrid-body-inner { - padding-bottom: 20px; -} -.datagrid-view1 .datagrid-body { - overflow: hidden; -} -.datagrid-footer { - overflow: hidden; -} -.datagrid-footer-inner { - border-width: 1px 0 0 0; - border-style: solid; - width: 10000px; - float: left; -} -.datagrid-row-editing .datagrid-cell { - height: auto; -} -.datagrid-header-check, -.datagrid-cell-check { - padding: 0; - width: 27px; - height: 18px; - font-size: 1px; - text-align: center; - overflow: hidden; -} -.datagrid-header-check input, -.datagrid-cell-check input { - margin: 0; - padding: 0; - width: 15px; - height: 18px; -} -.datagrid-resize-proxy { - position: absolute; - width: 1px; - height: 10000px; - top: 0; - cursor: e-resize; - display: none; -} -.datagrid-body .datagrid-editable { - margin: 0; - padding: 0; -} -.datagrid-body .datagrid-editable table { - width: 100%; - height: 100%; -} -.datagrid-body .datagrid-editable td { - border: 0; - margin: 0; - padding: 0; -} -.datagrid-view .datagrid-editable-input { - margin: 0; - padding: 2px 4px; - border: 1px solid #000; - font-size: 12px; - outline-style: none; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.datagrid-sort .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -64px center; -} -.datagrid-sort-desc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -16px center; -} -.datagrid-sort-asc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat 0px center; -} -.datagrid-row-collapse { - background: url('images/datagrid_icons.png') no-repeat -48px center; -} -.datagrid-row-expand { - background: url('images/datagrid_icons.png') no-repeat -32px center; -} -.datagrid-mask-msg { - background: #666 url('images/loading.gif') no-repeat scroll 5px center; -} -.datagrid-header, -.datagrid-td-rownumber { - background-color: #444; - background: -webkit-linear-gradient(top,#4c4c4c 0,#3f3f3f 100%); - background: -moz-linear-gradient(top,#4c4c4c 0,#3f3f3f 100%); - background: -o-linear-gradient(top,#4c4c4c 0,#3f3f3f 100%); - background: linear-gradient(to bottom,#4c4c4c 0,#3f3f3f 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4c4c4c,endColorstr=#3f3f3f,GradientType=0); -} -.datagrid-cell-rownumber { - color: #fff; -} -.datagrid-resize-proxy { - background: #cccccc; -} -.datagrid-mask { - background: #000; -} -.datagrid-mask-msg { - border-color: #000; -} -.datagrid-toolbar, -.datagrid-pager { - background: #555; -} -.datagrid-header, -.datagrid-toolbar, -.datagrid-pager, -.datagrid-footer-inner { - border-color: #222; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-color: #222; -} -.datagrid-htable, -.datagrid-btable, -.datagrid-ftable { - color: #fff; - border-collapse: separate; -} -.datagrid-row-alt { - background: #555; -} -.datagrid-row-over, -.datagrid-header td.datagrid-header-over { - background: #777; - color: #fff; - cursor: default; -} -.datagrid-row-selected { - background: #0052A3; - color: #fff; -} -.datagrid-row-editing .textbox, -.datagrid-row-editing .textbox-text { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/datalist.css b/vendor/FHC-vendor/easyui/themes/black/datalist.css deleted file mode 100644 index 94dd67e5f..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/datalist.css +++ /dev/null @@ -1,95 +0,0 @@ -.datalist .datagrid-header { - border-width: 0; -} -.datalist .datagrid-group, -.m-list .m-list-group { - height: 25px; - line-height: 25px; - font-weight: bold; - overflow: hidden; - background-color: #444; - border-style: solid; - border-width: 0 0 1px 0; - border-color: #222; -} -.datalist .datagrid-group-expander { - display: none; -} -.datalist .datagrid-group-title { - padding: 0 4px; -} -.datalist .datagrid-btable { - width: 100%; - table-layout: fixed; -} -.datalist .datagrid-row td { - border-style: solid; - border-left-color: transparent; - border-right-color: transparent; - border-bottom-width: 0; -} -.datalist-lines .datagrid-row td { - border-bottom-width: 1px; -} -.datalist .datagrid-cell, -.m-list li { - width: auto; - height: auto; - padding: 2px 4px; - line-height: 18px; - position: relative; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link, -.m-list li>a { - display: block; - position: relative; - cursor: pointer; - color: #fff; - text-decoration: none; - overflow: hidden; - margin: -2px -4px; - padding: 2px 4px; - padding-right: 16px; - line-height: 18px; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link::after, -.m-list li>a::after { - position: absolute; - display: block; - width: 8px; - height: 8px; - content: ''; - right: 6px; - top: 50%; - margin-top: -4px; - border-style: solid; - border-width: 1px 1px 0 0; - -ms-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); -} -.m-list { - margin: 0; - padding: 0; - list-style: none; -} -.m-list li { - border-style: solid; - border-width: 0 0 1px 0; - border-color: #222; -} -.m-list li>a:hover { - background: #777; - color: #fff; -} -.m-list .m-list-group { - padding: 0 4px; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/datebox.css b/vendor/FHC-vendor/easyui/themes/black/datebox.css deleted file mode 100644 index e368f6405..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/datebox.css +++ /dev/null @@ -1,36 +0,0 @@ -.datebox-calendar-inner { - height: 180px; -} -.datebox-button { - height: 18px; - padding: 2px 5px; - text-align: center; -} -.datebox-button a { - font-size: 12px; - font-weight: bold; - text-decoration: none; - opacity: 0.6; - filter: alpha(opacity=60); -} -.datebox-button a:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.datebox-current, -.datebox-close { - float: left; -} -.datebox-close { - float: right; -} -.datebox .combo-arrow { - background-image: url('images/datebox_arrow.png'); - background-position: center center; -} -.datebox-button { - background-color: #555; -} -.datebox-button a { - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/dialog.css b/vendor/FHC-vendor/easyui/themes/black/dialog.css deleted file mode 100644 index ed832df72..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/dialog.css +++ /dev/null @@ -1,32 +0,0 @@ -.dialog-content { - overflow: auto; -} -.dialog-toolbar { - padding: 2px 5px; -} -.dialog-tool-separator { - float: left; - height: 24px; - border-left: 1px solid #444; - border-right: 1px solid #777; - margin: 2px 1px; -} -.dialog-button { - padding: 5px; - text-align: right; -} -.dialog-button .l-btn { - margin-left: 5px; -} -.dialog-toolbar, -.dialog-button { - background: #555; - border-width: 1px; - border-style: solid; -} -.dialog-toolbar { - border-color: #000 #000 #222 #000; -} -.dialog-button { - border-color: #222 #000 #000 #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/easyui.css b/vendor/FHC-vendor/easyui/themes/black/easyui.css deleted file mode 100644 index 597207a3b..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/easyui.css +++ /dev/null @@ -1,2869 +0,0 @@ -.panel { - overflow: hidden; - text-align: left; - margin: 0; - border: 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.panel-header, -.panel-body { - border-width: 1px; - border-style: solid; -} -.panel-header { - padding: 5px; - position: relative; -} -.panel-title { - background: url('images/blank.gif') no-repeat; -} -.panel-header-noborder { - border-width: 0 0 1px 0; -} -.panel-body { - overflow: auto; - border-top-width: 0; - padding: 0; -} -.panel-body-noheader { - border-top-width: 1px; -} -.panel-body-noborder { - border-width: 0px; -} -.panel-body-nobottom { - border-bottom-width: 0; -} -.panel-with-icon { - padding-left: 18px; -} -.panel-icon, -.panel-tool { - position: absolute; - top: 50%; - margin-top: -8px; - height: 16px; - overflow: hidden; -} -.panel-icon { - left: 5px; - width: 16px; -} -.panel-tool { - right: 5px; - width: auto; -} -.panel-tool a { - display: inline-block; - width: 16px; - height: 16px; - opacity: 0.6; - filter: alpha(opacity=60); - margin: 0 0 0 2px; - vertical-align: top; -} -.panel-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - background-color: #777; - -moz-border-radius: 3px 3px 3px 3px; - -webkit-border-radius: 3px 3px 3px 3px; - border-radius: 3px 3px 3px 3px; -} -.panel-loading { - padding: 11px 0px 10px 30px; -} -.panel-noscroll { - overflow: hidden; -} -.panel-fit, -.panel-fit body { - height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: hidden; -} -.panel-loading { - background: url('images/loading.gif') no-repeat 10px 10px; -} -.panel-tool-close { - background: url('images/panel_tools.png') no-repeat -16px 0px; -} -.panel-tool-min { - background: url('images/panel_tools.png') no-repeat 0px 0px; -} -.panel-tool-max { - background: url('images/panel_tools.png') no-repeat 0px -16px; -} -.panel-tool-restore { - background: url('images/panel_tools.png') no-repeat -16px -16px; -} -.panel-tool-collapse { - background: url('images/panel_tools.png') no-repeat -32px 0; -} -.panel-tool-expand { - background: url('images/panel_tools.png') no-repeat -32px -16px; -} -.panel-header, -.panel-body { - border-color: #000; -} -.panel-header { - background-color: #3d3d3d; - background: -webkit-linear-gradient(top,#454545 0,#383838 100%); - background: -moz-linear-gradient(top,#454545 0,#383838 100%); - background: -o-linear-gradient(top,#454545 0,#383838 100%); - background: linear-gradient(to bottom,#454545 0,#383838 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#383838,GradientType=0); -} -.panel-body { - background-color: #666; - color: #fff; - font-size: 12px; -} -.panel-title { - font-size: 12px; - font-weight: bold; - color: #fff; - height: 16px; - line-height: 16px; -} -.panel-footer { - border: 1px solid #000; - overflow: hidden; - background: #555; -} -.panel-footer-noborder { - border-width: 1px 0 0 0; -} -.accordion { - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.accordion .accordion-header { - border-width: 0 0 1px; - cursor: pointer; -} -.accordion .accordion-body { - border-width: 0 0 1px; -} -.accordion-noborder { - border-width: 0; -} -.accordion-noborder .accordion-header { - border-width: 0 0 1px; -} -.accordion-noborder .accordion-body { - border-width: 0 0 1px; -} -.accordion-collapse { - background: url('images/accordion_arrows.png') no-repeat 0 0; -} -.accordion-expand { - background: url('images/accordion_arrows.png') no-repeat -16px 0; -} -.accordion { - background: #666; - border-color: #000; -} -.accordion .accordion-header { - background: #3d3d3d; - filter: none; -} -.accordion .accordion-header-selected { - background: #0052A3; -} -.accordion .accordion-header-selected .panel-title { - color: #fff; -} -.window { - overflow: hidden; - padding: 5px; - border-width: 1px; - border-style: solid; -} -.window .window-header { - background: transparent; - padding: 0px 0px 6px 0px; -} -.window .window-body { - border-width: 1px; - border-style: solid; - border-top-width: 0px; -} -.window .window-body-noheader { - border-top-width: 1px; -} -.window .panel-body-nobottom { - border-bottom-width: 0; -} -.window .window-header .panel-icon, -.window .window-header .panel-tool { - top: 50%; - margin-top: -11px; -} -.window .window-header .panel-icon { - left: 1px; -} -.window .window-header .panel-tool { - right: 1px; -} -.window .window-header .panel-with-icon { - padding-left: 18px; -} -.window-proxy { - position: absolute; - overflow: hidden; -} -.window-proxy-mask { - position: absolute; - filter: alpha(opacity=5); - opacity: 0.05; -} -.window-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - filter: alpha(opacity=40); - opacity: 0.40; - font-size: 1px; - overflow: hidden; -} -.window, -.window-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.window-shadow { - background: #777; - -moz-box-shadow: 2px 2px 3px #787878; - -webkit-box-shadow: 2px 2px 3px #787878; - box-shadow: 2px 2px 3px #787878; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.window, -.window .window-body { - border-color: #000; -} -.window { - background-color: #3d3d3d; - background: -webkit-linear-gradient(top,#454545 0,#383838 20%); - background: -moz-linear-gradient(top,#454545 0,#383838 20%); - background: -o-linear-gradient(top,#454545 0,#383838 20%); - background: linear-gradient(to bottom,#454545 0,#383838 20%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#383838,GradientType=0); -} -.window-proxy { - border: 1px dashed #000; -} -.window-proxy-mask, -.window-mask { - background: #000; -} -.window .panel-footer { - border: 1px solid #000; - position: relative; - top: -1px; -} -.dialog-content { - overflow: auto; -} -.dialog-toolbar { - padding: 2px 5px; -} -.dialog-tool-separator { - float: left; - height: 24px; - border-left: 1px solid #444; - border-right: 1px solid #777; - margin: 2px 1px; -} -.dialog-button { - padding: 5px; - text-align: right; -} -.dialog-button .l-btn { - margin-left: 5px; -} -.dialog-toolbar, -.dialog-button { - background: #555; - border-width: 1px; - border-style: solid; -} -.dialog-toolbar { - border-color: #000 #000 #222 #000; -} -.dialog-button { - border-color: #222 #000 #000 #000; -} -.l-btn { - text-decoration: none; - display: inline-block; - overflow: hidden; - margin: 0; - padding: 0; - cursor: pointer; - outline: none; - text-align: center; - vertical-align: middle; - line-height: normal; -} -.l-btn-plain { - border-width: 0; - padding: 1px; -} -.l-btn-left { - display: inline-block; - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - vertical-align: top; -} -.l-btn-text { - display: inline-block; - vertical-align: top; - width: auto; - line-height: 24px; - font-size: 12px; - padding: 0; - margin: 0 4px; -} -.l-btn-icon { - display: inline-block; - width: 16px; - height: 16px; - line-height: 16px; - position: absolute; - top: 50%; - margin-top: -8px; - font-size: 1px; -} -.l-btn span span .l-btn-empty { - display: inline-block; - margin: 0; - width: 16px; - height: 24px; - font-size: 1px; - vertical-align: top; -} -.l-btn span .l-btn-icon-left { - padding: 0 0 0 20px; - background-position: left center; -} -.l-btn span .l-btn-icon-right { - padding: 0 20px 0 0; - background-position: right center; -} -.l-btn-icon-left .l-btn-text { - margin: 0 4px 0 24px; -} -.l-btn-icon-left .l-btn-icon { - left: 4px; -} -.l-btn-icon-right .l-btn-text { - margin: 0 24px 0 4px; -} -.l-btn-icon-right .l-btn-icon { - right: 4px; -} -.l-btn-icon-top .l-btn-text { - margin: 20px 4px 0 4px; -} -.l-btn-icon-top .l-btn-icon { - top: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-icon-bottom .l-btn-text { - margin: 0 4px 20px 4px; -} -.l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-left .l-btn-empty { - margin: 0 4px; - width: 16px; -} -.l-btn-plain:hover { - padding: 0; -} -.l-btn-focus { - outline: #0000FF dotted thin; -} -.l-btn-large .l-btn-text { - line-height: 40px; -} -.l-btn-large .l-btn-icon { - width: 32px; - height: 32px; - line-height: 32px; - margin-top: -16px; -} -.l-btn-large .l-btn-icon-left .l-btn-text { - margin-left: 40px; -} -.l-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.l-btn-large .l-btn-icon-top .l-btn-text { - margin-top: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-top .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-left .l-btn-empty { - margin: 0 4px; - width: 32px; -} -.l-btn { - color: #fff; - background: #777; - background-repeat: repeat-x; - border: 1px solid #555; - background: -webkit-linear-gradient(top,#919191 0,#6a6a6a 100%); - background: -moz-linear-gradient(top,#919191 0,#6a6a6a 100%); - background: -o-linear-gradient(top,#919191 0,#6a6a6a 100%); - background: linear-gradient(to bottom,#919191 0,#6a6a6a 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#919191,endColorstr=#6a6a6a,GradientType=0); - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn:hover { - background: #777; - color: #fff; - border: 1px solid #555; - filter: none; -} -.l-btn-plain { - background: transparent; - border-width: 0; - filter: none; -} -.l-btn-outline { - border-width: 1px; - border-color: #555; - padding: 0; -} -.l-btn-plain:hover { - background: #777; - color: #fff; - border: 1px solid #555; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn-disabled, -.l-btn-disabled:hover { - opacity: 0.5; - cursor: default; - background: #777; - color: #fff; - background: -webkit-linear-gradient(top,#919191 0,#6a6a6a 100%); - background: -moz-linear-gradient(top,#919191 0,#6a6a6a 100%); - background: -o-linear-gradient(top,#919191 0,#6a6a6a 100%); - background: linear-gradient(to bottom,#919191 0,#6a6a6a 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#919191,endColorstr=#6a6a6a,GradientType=0); -} -.l-btn-disabled .l-btn-text, -.l-btn-disabled .l-btn-icon { - filter: alpha(opacity=50); -} -.l-btn-plain-disabled, -.l-btn-plain-disabled:hover { - background: transparent; - filter: alpha(opacity=50); -} -.l-btn-selected, -.l-btn-selected:hover { - background: #000; - filter: none; -} -.l-btn-plain-selected, -.l-btn-plain-selected:hover { - background: #000; -} -.textbox { - position: relative; - border: 1px solid #000; - background-color: #fff; - vertical-align: middle; - display: inline-block; - overflow: hidden; - white-space: nowrap; - margin: 0; - padding: 0; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox .textbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 4px; - white-space: normal; - vertical-align: top; - outline-style: none; - resize: none; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox textarea.textbox-text { - white-space: pre-wrap; -} -.textbox .textbox-prompt { - font-size: 12px; - color: #aaa; -} -.textbox .textbox-button, -.textbox .textbox-button:hover { - position: absolute; - top: 0; - padding: 0; - vertical-align: top; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.textbox-button-right, -.textbox-button-right:hover { - border-width: 0 0 0 1px; -} -.textbox-button-left, -.textbox-button-left:hover { - border-width: 0 1px 0 0; -} -.textbox-addon { - position: absolute; - top: 0; -} -.textbox-icon { - display: inline-block; - width: 18px; - height: 20px; - overflow: hidden; - vertical-align: top; - background-position: center center; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); - text-decoration: none; - outline-style: none; -} -.textbox-icon-disabled, -.textbox-icon-readonly { - cursor: default; -} -.textbox-icon:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.textbox-icon-disabled:hover { - opacity: 0.6; - filter: alpha(opacity=60); -} -.textbox-focused { - -moz-box-shadow: 0 0 3px 0 #000; - -webkit-box-shadow: 0 0 3px 0 #000; - box-shadow: 0 0 3px 0 #000; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.filebox .textbox-value { - vertical-align: top; - position: absolute; - top: 0; - left: -5000px; -} -.filebox-label { - display: inline-block; - position: absolute; - width: 100%; - height: 100%; - cursor: pointer; - left: 0; - top: 0; - z-index: 10; - background: url('images/blank.gif') no-repeat; -} -.l-btn-disabled .filebox-label { - cursor: default; -} -.combo { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.combo .combo-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0px 2px; - vertical-align: baseline; -} -.combo-arrow { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.combo-arrow-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.combo-panel { - overflow: auto; -} -.combo-arrow { - background: url('images/combo_arrow.png') no-repeat center center; -} -.combo-panel { - background-color: #666; -} -.combo { - border-color: #000; - background-color: #fff; -} -.combo-arrow { - background-color: #3d3d3d; -} -.combo-arrow-hover { - background-color: #777; -} -.combo-arrow:hover { - background-color: #777; -} -.combo .textbox-icon-disabled:hover { - cursor: default; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.combobox-item, -.combobox-group { - font-size: 12px; - padding: 3px; - padding-right: 0px; -} -.combobox-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.combobox-gitem { - padding-left: 10px; -} -.combobox-group { - font-weight: bold; -} -.combobox-item-hover { - background-color: #777; - color: #fff; -} -.combobox-item-selected { - background-color: #0052A3; - color: #fff; -} -.layout { - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - z-index: 0; -} -.layout-panel { - position: absolute; - overflow: hidden; -} -.layout-body { - min-width: 1px; - min-height: 1px; -} -.layout-panel-east, -.layout-panel-west { - z-index: 2; -} -.layout-panel-north, -.layout-panel-south { - z-index: 3; -} -.layout-expand { - position: absolute; - padding: 0px; - font-size: 1px; - cursor: pointer; - z-index: 1; -} -.layout-expand .panel-header, -.layout-expand .panel-body { - background: transparent; - filter: none; - overflow: hidden; -} -.layout-expand .panel-header { - border-bottom-width: 0px; -} -.layout-expand .panel-body { - position: relative; -} -.layout-expand .panel-body .panel-icon { - margin-top: 0; - top: 0; - left: 50%; - margin-left: -8px; -} -.layout-expand-west .panel-header .panel-icon, -.layout-expand-east .panel-header .panel-icon { - display: none; -} -.layout-expand-title { - position: absolute; - top: 0; - left: 21px; - white-space: nowrap; - word-wrap: normal; - -webkit-transform: rotate(90deg); - -webkit-transform-origin: 0 0; - -moz-transform: rotate(90deg); - -moz-transform-origin: 0 0; - -o-transform: rotate(90deg); - -o-transform-origin: 0 0; - transform: rotate(90deg); - transform-origin: 0 0; -} -.layout-expand-with-icon { - top: 18px; -} -.layout-expand .panel-body-noheader .layout-expand-title, -.layout-expand .panel-body-noheader .panel-icon { - top: 5px; -} -.layout-expand .panel-body-noheader .layout-expand-with-icon { - top: 23px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - position: absolute; - font-size: 1px; - display: none; - z-index: 5; -} -.layout-split-proxy-h { - width: 5px; - cursor: e-resize; -} -.layout-split-proxy-v { - height: 5px; - cursor: n-resize; -} -.layout-mask { - position: absolute; - background: #fafafa; - filter: alpha(opacity=10); - opacity: 0.10; - z-index: 4; -} -.layout-button-up { - background: url('images/layout_arrows.png') no-repeat -16px -16px; -} -.layout-button-down { - background: url('images/layout_arrows.png') no-repeat -16px 0; -} -.layout-button-left { - background: url('images/layout_arrows.png') no-repeat 0 0; -} -.layout-button-right { - background: url('images/layout_arrows.png') no-repeat 0 -16px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - background-color: #cccccc; -} -.layout-split-north { - border-bottom: 5px solid #444; -} -.layout-split-south { - border-top: 5px solid #444; -} -.layout-split-east { - border-left: 5px solid #444; -} -.layout-split-west { - border-right: 5px solid #444; -} -.layout-expand { - background-color: #3d3d3d; -} -.layout-expand-over { - background-color: #3d3d3d; -} -.tabs-container { - overflow: hidden; -} -.tabs-header { - border-width: 1px; - border-style: solid; - border-bottom-width: 0; - position: relative; - padding: 0; - padding-top: 2px; - overflow: hidden; -} -.tabs-scroller-left, -.tabs-scroller-right { - position: absolute; - top: auto; - bottom: 0; - width: 18px; - font-size: 1px; - display: none; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.tabs-scroller-left { - left: 0; -} -.tabs-scroller-right { - right: 0; -} -.tabs-tool { - position: absolute; - bottom: 0; - padding: 1px; - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.tabs-header-plain .tabs-tool { - padding: 0 1px; -} -.tabs-wrap { - position: relative; - left: 0; - overflow: hidden; - width: 100%; - margin: 0; - padding: 0; -} -.tabs-scrolling { - margin-left: 18px; - margin-right: 18px; -} -.tabs-disabled { - opacity: 0.3; - filter: alpha(opacity=30); -} -.tabs { - list-style-type: none; - height: 26px; - margin: 0px; - padding: 0px; - padding-left: 4px; - width: 50000px; - border-style: solid; - border-width: 0 0 1px 0; -} -.tabs li { - float: left; - display: inline-block; - margin: 0 4px -1px 0; - padding: 0; - position: relative; - border: 0; -} -.tabs li a.tabs-inner { - display: inline-block; - text-decoration: none; - margin: 0; - padding: 0 10px; - height: 25px; - line-height: 25px; - text-align: center; - white-space: nowrap; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.tabs li.tabs-selected a.tabs-inner { - font-weight: bold; - outline: none; -} -.tabs li.tabs-selected a:hover.tabs-inner { - cursor: default; - pointer: default; -} -.tabs li a.tabs-close, -.tabs-p-tool { - position: absolute; - font-size: 1px; - display: block; - height: 12px; - padding: 0; - top: 50%; - margin-top: -6px; - overflow: hidden; -} -.tabs li a.tabs-close { - width: 12px; - right: 5px; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs-p-tool { - right: 16px; -} -.tabs-p-tool a { - display: inline-block; - font-size: 1px; - width: 12px; - height: 12px; - margin: 0; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs li a:hover.tabs-close, -.tabs-p-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - cursor: hand; - cursor: pointer; -} -.tabs-with-icon { - padding-left: 18px; -} -.tabs-icon { - position: absolute; - width: 16px; - height: 16px; - left: 10px; - top: 50%; - margin-top: -8px; -} -.tabs-title { - font-size: 12px; -} -.tabs-closable { - padding-right: 8px; -} -.tabs-panels { - margin: 0px; - padding: 0px; - border-width: 1px; - border-style: solid; - border-top-width: 0; - overflow: hidden; -} -.tabs-header-bottom { - border-width: 0 1px 1px 1px; - padding: 0 0 2px 0; -} -.tabs-header-bottom .tabs { - border-width: 1px 0 0 0; -} -.tabs-header-bottom .tabs li { - margin: -1px 4px 0 0; -} -.tabs-header-bottom .tabs li a.tabs-inner { - -moz-border-radius: 0 0 5px 5px; - -webkit-border-radius: 0 0 5px 5px; - border-radius: 0 0 5px 5px; -} -.tabs-header-bottom .tabs-tool { - top: 0; -} -.tabs-header-bottom .tabs-scroller-left, -.tabs-header-bottom .tabs-scroller-right { - top: 0; - bottom: auto; -} -.tabs-panels-top { - border-width: 1px 1px 0 1px; -} -.tabs-header-left { - float: left; - border-width: 1px 0 1px 1px; - padding: 0; -} -.tabs-header-right { - float: right; - border-width: 1px 1px 1px 0; - padding: 0; -} -.tabs-header-left .tabs-wrap, -.tabs-header-right .tabs-wrap { - height: 100%; -} -.tabs-header-left .tabs { - height: 100%; - padding: 4px 0 0 2px; - border-width: 0 1px 0 0; -} -.tabs-header-right .tabs { - height: 100%; - padding: 4px 2px 0 0; - border-width: 0 0 0 1px; -} -.tabs-header-left .tabs li, -.tabs-header-right .tabs li { - display: block; - width: 100%; - position: relative; -} -.tabs-header-left .tabs li { - left: auto; - right: 0; - margin: 0 -1px 4px 0; - float: right; -} -.tabs-header-right .tabs li { - left: 0; - right: auto; - margin: 0 0 4px -1px; - float: left; -} -.tabs-justified li a.tabs-inner { - padding-left: 0; - padding-right: 0; -} -.tabs-header-left .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.tabs-header-right .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.tabs-panels-right { - float: right; - border-width: 1px 1px 1px 0; -} -.tabs-panels-left { - float: left; - border-width: 1px 0 1px 1px; -} -.tabs-header-noborder, -.tabs-panels-noborder { - border: 0px; -} -.tabs-header-plain { - border: 0px; - background: transparent; -} -.tabs-pill { - padding-bottom: 3px; -} -.tabs-header-bottom .tabs-pill { - padding-top: 3px; - padding-bottom: 0; -} -.tabs-header-left .tabs-pill { - padding-right: 3px; -} -.tabs-header-right .tabs-pill { - padding-left: 3px; -} -.tabs-header .tabs-pill li a.tabs-inner { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tabs-header-narrow, -.tabs-header-narrow .tabs-narrow { - padding: 0; -} -.tabs-narrow li, -.tabs-header-bottom .tabs-narrow li { - margin-left: 0; - margin-right: -1px; -} -.tabs-narrow li.tabs-last, -.tabs-header-bottom .tabs-narrow li.tabs-last { - margin-right: 0; -} -.tabs-header-left .tabs-narrow, -.tabs-header-right .tabs-narrow { - padding-top: 0; -} -.tabs-header-left .tabs-narrow li { - margin-bottom: -1px; - margin-right: -1px; -} -.tabs-header-left .tabs-narrow li.tabs-last, -.tabs-header-right .tabs-narrow li.tabs-last { - margin-bottom: 0; -} -.tabs-header-right .tabs-narrow li { - margin-bottom: -1px; - margin-left: -1px; -} -.tabs-scroller-left { - background: #3d3d3d url('images/tabs_icons.png') no-repeat 1px center; -} -.tabs-scroller-right { - background: #3d3d3d url('images/tabs_icons.png') no-repeat -15px center; -} -.tabs li a.tabs-close { - background: url('images/tabs_icons.png') no-repeat -34px center; -} -.tabs li a.tabs-inner:hover { - background: #777; - color: #fff; - filter: none; -} -.tabs li.tabs-selected a.tabs-inner { - background-color: #666; - color: #fff; - background: -webkit-linear-gradient(top,#454545 0,#666 100%); - background: -moz-linear-gradient(top,#454545 0,#666 100%); - background: -o-linear-gradient(top,#454545 0,#666 100%); - background: linear-gradient(to bottom,#454545 0,#666 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#666,GradientType=0); -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(top,#666 0,#454545 100%); - background: -moz-linear-gradient(top,#666 0,#454545 100%); - background: -o-linear-gradient(top,#666 0,#454545 100%); - background: linear-gradient(to bottom,#666 0,#454545 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#666,endColorstr=#454545,GradientType=0); -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#454545 0,#666 100%); - background: -moz-linear-gradient(left,#454545 0,#666 100%); - background: -o-linear-gradient(left,#454545 0,#666 100%); - background: linear-gradient(to right,#454545 0,#666 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#666,GradientType=1); -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#666 0,#454545 100%); - background: -moz-linear-gradient(left,#666 0,#454545 100%); - background: -o-linear-gradient(left,#666 0,#454545 100%); - background: linear-gradient(to right,#666 0,#454545 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#666,endColorstr=#454545,GradientType=1); -} -.tabs li a.tabs-inner { - color: #fff; - background-color: #3d3d3d; - background: -webkit-linear-gradient(top,#454545 0,#383838 100%); - background: -moz-linear-gradient(top,#454545 0,#383838 100%); - background: -o-linear-gradient(top,#454545 0,#383838 100%); - background: linear-gradient(to bottom,#454545 0,#383838 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#383838,GradientType=0); -} -.tabs-header, -.tabs-tool { - background-color: #3d3d3d; -} -.tabs-header-plain { - background: transparent; -} -.tabs-header, -.tabs-scroller-left, -.tabs-scroller-right, -.tabs-tool, -.tabs, -.tabs-panels, -.tabs li a.tabs-inner, -.tabs li.tabs-selected a.tabs-inner, -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner, -.tabs-header-left .tabs li.tabs-selected a.tabs-inner, -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-color: #000; -} -.tabs-p-tool a:hover, -.tabs li a:hover.tabs-close, -.tabs-scroller-over { - background-color: #777; -} -.tabs li.tabs-selected a.tabs-inner { - border-bottom: 1px solid #666; -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - border-top: 1px solid #666; -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - border-right: 1px solid #666; -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-left: 1px solid #666; -} -.tabs-header .tabs-pill li.tabs-selected a.tabs-inner { - background: #0052A3; - color: #fff; - filter: none; - border-color: #000; -} -.datagrid .panel-body { - overflow: hidden; - position: relative; -} -.datagrid-view { - position: relative; - overflow: hidden; -} -.datagrid-view1, -.datagrid-view2 { - position: absolute; - overflow: hidden; - top: 0; -} -.datagrid-view1 { - left: 0; -} -.datagrid-view2 { - right: 0; -} -.datagrid-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - opacity: 0.3; - filter: alpha(opacity=30); - display: none; -} -.datagrid-mask-msg { - position: absolute; - top: 50%; - margin-top: -20px; - padding: 10px 5px 10px 30px; - width: auto; - height: 16px; - border-width: 2px; - border-style: solid; - display: none; -} -.datagrid-sort-icon { - padding: 0; - display: none; -} -.datagrid-toolbar { - height: auto; - padding: 1px 2px; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #444; - border-right: 1px solid #777; - margin: 2px 1px; -} -.datagrid .datagrid-pager { - display: block; - margin: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.datagrid .datagrid-pager-top { - border-width: 0 0 1px 0; -} -.datagrid-header { - overflow: hidden; - cursor: default; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-header-inner { - float: left; - width: 10000px; -} -.datagrid-header-row, -.datagrid-row { - height: 25px; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-width: 0 1px 1px 0; - border-style: dotted; - margin: 0; - padding: 0; -} -.datagrid-cell, -.datagrid-cell-group, -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - margin: 0; - padding: 0 4px; - white-space: nowrap; - word-wrap: normal; - overflow: hidden; - height: 18px; - line-height: 18px; - font-size: 12px; -} -.datagrid-header .datagrid-cell { - height: auto; -} -.datagrid-header .datagrid-cell span { - font-size: 12px; -} -.datagrid-cell-group { - text-align: center; - text-overflow: ellipsis; -} -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - width: 30px; - text-align: center; - margin: 0; - padding: 0; -} -.datagrid-body { - margin: 0; - padding: 0; - overflow: auto; - zoom: 1; -} -.datagrid-view1 .datagrid-body-inner { - padding-bottom: 20px; -} -.datagrid-view1 .datagrid-body { - overflow: hidden; -} -.datagrid-footer { - overflow: hidden; -} -.datagrid-footer-inner { - border-width: 1px 0 0 0; - border-style: solid; - width: 10000px; - float: left; -} -.datagrid-row-editing .datagrid-cell { - height: auto; -} -.datagrid-header-check, -.datagrid-cell-check { - padding: 0; - width: 27px; - height: 18px; - font-size: 1px; - text-align: center; - overflow: hidden; -} -.datagrid-header-check input, -.datagrid-cell-check input { - margin: 0; - padding: 0; - width: 15px; - height: 18px; -} -.datagrid-resize-proxy { - position: absolute; - width: 1px; - height: 10000px; - top: 0; - cursor: e-resize; - display: none; -} -.datagrid-body .datagrid-editable { - margin: 0; - padding: 0; -} -.datagrid-body .datagrid-editable table { - width: 100%; - height: 100%; -} -.datagrid-body .datagrid-editable td { - border: 0; - margin: 0; - padding: 0; -} -.datagrid-view .datagrid-editable-input { - margin: 0; - padding: 2px 4px; - border: 1px solid #000; - font-size: 12px; - outline-style: none; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.datagrid-sort .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -64px center; -} -.datagrid-sort-desc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -16px center; -} -.datagrid-sort-asc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat 0px center; -} -.datagrid-row-collapse { - background: url('images/datagrid_icons.png') no-repeat -48px center; -} -.datagrid-row-expand { - background: url('images/datagrid_icons.png') no-repeat -32px center; -} -.datagrid-mask-msg { - background: #666 url('images/loading.gif') no-repeat scroll 5px center; -} -.datagrid-header, -.datagrid-td-rownumber { - background-color: #444; - background: -webkit-linear-gradient(top,#4c4c4c 0,#3f3f3f 100%); - background: -moz-linear-gradient(top,#4c4c4c 0,#3f3f3f 100%); - background: -o-linear-gradient(top,#4c4c4c 0,#3f3f3f 100%); - background: linear-gradient(to bottom,#4c4c4c 0,#3f3f3f 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4c4c4c,endColorstr=#3f3f3f,GradientType=0); -} -.datagrid-cell-rownumber { - color: #fff; -} -.datagrid-resize-proxy { - background: #cccccc; -} -.datagrid-mask { - background: #000; -} -.datagrid-mask-msg { - border-color: #000; -} -.datagrid-toolbar, -.datagrid-pager { - background: #555; -} -.datagrid-header, -.datagrid-toolbar, -.datagrid-pager, -.datagrid-footer-inner { - border-color: #222; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-color: #222; -} -.datagrid-htable, -.datagrid-btable, -.datagrid-ftable { - color: #fff; - border-collapse: separate; -} -.datagrid-row-alt { - background: #555; -} -.datagrid-row-over, -.datagrid-header td.datagrid-header-over { - background: #777; - color: #fff; - cursor: default; -} -.datagrid-row-selected { - background: #0052A3; - color: #fff; -} -.datagrid-row-editing .textbox, -.datagrid-row-editing .textbox-text { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.propertygrid .datagrid-view1 .datagrid-body td { - padding-bottom: 1px; - border-width: 0 1px 0 0; -} -.propertygrid .datagrid-group { - height: 21px; - overflow: hidden; - border-width: 0 0 1px 0; - border-style: solid; -} -.propertygrid .datagrid-group span { - font-weight: bold; -} -.propertygrid .datagrid-view1 .datagrid-body td { - border-color: #222; -} -.propertygrid .datagrid-view1 .datagrid-group { - border-color: #3d3d3d; -} -.propertygrid .datagrid-view2 .datagrid-group { - border-color: #222; -} -.propertygrid .datagrid-group, -.propertygrid .datagrid-view1 .datagrid-body, -.propertygrid .datagrid-view1 .datagrid-row-over, -.propertygrid .datagrid-view1 .datagrid-row-selected { - background: #3d3d3d; -} -.datalist .datagrid-header { - border-width: 0; -} -.datalist .datagrid-group, -.m-list .m-list-group { - height: 25px; - line-height: 25px; - font-weight: bold; - overflow: hidden; - background-color: #444; - border-style: solid; - border-width: 0 0 1px 0; - border-color: #222; -} -.datalist .datagrid-group-expander { - display: none; -} -.datalist .datagrid-group-title { - padding: 0 4px; -} -.datalist .datagrid-btable { - width: 100%; - table-layout: fixed; -} -.datalist .datagrid-row td { - border-style: solid; - border-left-color: transparent; - border-right-color: transparent; - border-bottom-width: 0; -} -.datalist-lines .datagrid-row td { - border-bottom-width: 1px; -} -.datalist .datagrid-cell, -.m-list li { - width: auto; - height: auto; - padding: 2px 4px; - line-height: 18px; - position: relative; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link, -.m-list li>a { - display: block; - position: relative; - cursor: pointer; - color: #fff; - text-decoration: none; - overflow: hidden; - margin: -2px -4px; - padding: 2px 4px; - padding-right: 16px; - line-height: 18px; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link::after, -.m-list li>a::after { - position: absolute; - display: block; - width: 8px; - height: 8px; - content: ''; - right: 6px; - top: 50%; - margin-top: -4px; - border-style: solid; - border-width: 1px 1px 0 0; - -ms-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); -} -.m-list { - margin: 0; - padding: 0; - list-style: none; -} -.m-list li { - border-style: solid; - border-width: 0 0 1px 0; - border-color: #222; -} -.m-list li>a:hover { - background: #777; - color: #fff; -} -.m-list .m-list-group { - padding: 0 4px; -} -.pagination { - zoom: 1; -} -.pagination table { - float: left; - height: 30px; -} -.pagination td { - border: 0; -} -.pagination-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #444; - border-right: 1px solid #777; - margin: 3px 1px; -} -.pagination .pagination-num { - border-width: 1px; - border-style: solid; - margin: 0 2px; - padding: 2px; - width: 2em; - height: auto; -} -.pagination-page-list { - margin: 0px 6px; - padding: 1px 2px; - width: auto; - height: auto; - border-width: 1px; - border-style: solid; -} -.pagination-info { - float: right; - margin: 0 6px 0 0; - padding: 0; - height: 30px; - line-height: 30px; - font-size: 12px; -} -.pagination span { - font-size: 12px; -} -.pagination-link .l-btn-text { - width: 24px; - text-align: center; - margin: 0; -} -.pagination-first { - background: url('images/pagination_icons.png') no-repeat 0 center; -} -.pagination-prev { - background: url('images/pagination_icons.png') no-repeat -16px center; -} -.pagination-next { - background: url('images/pagination_icons.png') no-repeat -32px center; -} -.pagination-last { - background: url('images/pagination_icons.png') no-repeat -48px center; -} -.pagination-load { - background: url('images/pagination_icons.png') no-repeat -64px center; -} -.pagination-loading { - background: url('images/loading.gif') no-repeat center center; -} -.pagination-page-list, -.pagination .pagination-num { - border-color: #000; -} -.calendar { - border-width: 1px; - border-style: solid; - padding: 1px; - overflow: hidden; -} -.calendar table { - table-layout: fixed; - border-collapse: separate; - font-size: 12px; - width: 100%; - height: 100%; -} -.calendar table td, -.calendar table th { - font-size: 12px; -} -.calendar-noborder { - border: 0; -} -.calendar-header { - position: relative; - height: 22px; -} -.calendar-title { - text-align: center; - height: 22px; -} -.calendar-title span { - position: relative; - display: inline-block; - top: 2px; - padding: 0 3px; - height: 18px; - line-height: 18px; - font-size: 12px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth, -.calendar-nextmonth, -.calendar-prevyear, -.calendar-nextyear { - position: absolute; - top: 50%; - margin-top: -7px; - width: 14px; - height: 14px; - cursor: pointer; - font-size: 1px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth { - left: 20px; - background: url('images/calendar_arrows.png') no-repeat -18px -2px; -} -.calendar-nextmonth { - right: 20px; - background: url('images/calendar_arrows.png') no-repeat -34px -2px; -} -.calendar-prevyear { - left: 3px; - background: url('images/calendar_arrows.png') no-repeat -1px -2px; -} -.calendar-nextyear { - right: 3px; - background: url('images/calendar_arrows.png') no-repeat -49px -2px; -} -.calendar-body { - position: relative; -} -.calendar-body th, -.calendar-body td { - text-align: center; -} -.calendar-day { - border: 0; - padding: 1px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-other-month { - opacity: 0.3; - filter: alpha(opacity=30); -} -.calendar-disabled { - opacity: 0.6; - filter: alpha(opacity=60); - cursor: default; -} -.calendar-menu { - position: absolute; - top: 0; - left: 0; - width: 180px; - height: 150px; - padding: 5px; - font-size: 12px; - display: none; - overflow: hidden; -} -.calendar-menu-year-inner { - text-align: center; - padding-bottom: 5px; -} -.calendar-menu-year { - width: 40px; - text-align: center; - border-width: 1px; - border-style: solid; - margin: 0; - padding: 2px; - font-weight: bold; - font-size: 12px; -} -.calendar-menu-prev, -.calendar-menu-next { - display: inline-block; - width: 21px; - height: 21px; - vertical-align: top; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-menu-prev { - margin-right: 10px; - background: url('images/calendar_arrows.png') no-repeat 2px 2px; -} -.calendar-menu-next { - margin-left: 10px; - background: url('images/calendar_arrows.png') no-repeat -45px 2px; -} -.calendar-menu-month { - text-align: center; - cursor: pointer; - font-weight: bold; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-body th, -.calendar-menu-month { - color: #ffffff; -} -.calendar-day { - color: #fff; -} -.calendar-sunday { - color: #CC2222; -} -.calendar-saturday { - color: #00ee00; -} -.calendar-today { - color: #0000ff; -} -.calendar-menu-year { - border-color: #000; -} -.calendar { - border-color: #000; -} -.calendar-header { - background: #3d3d3d; -} -.calendar-body, -.calendar-menu { - background: #666; -} -.calendar-body th { - background: #555; - padding: 2px 0; -} -.calendar-hover, -.calendar-nav-hover, -.calendar-menu-hover { - background-color: #777; - color: #fff; -} -.calendar-hover { - border: 1px solid #555; - padding: 0; -} -.calendar-selected { - background-color: #0052A3; - color: #fff; - border: 1px solid #00458a; - padding: 0; -} -.datebox-calendar-inner { - height: 180px; -} -.datebox-button { - height: 18px; - padding: 2px 5px; - text-align: center; -} -.datebox-button a { - font-size: 12px; - font-weight: bold; - text-decoration: none; - opacity: 0.6; - filter: alpha(opacity=60); -} -.datebox-button a:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.datebox-current, -.datebox-close { - float: left; -} -.datebox-close { - float: right; -} -.datebox .combo-arrow { - background-image: url('images/datebox_arrow.png'); - background-position: center center; -} -.datebox-button { - background-color: #555; -} -.datebox-button a { - color: #fff; -} -.numberbox { - border: 1px solid #000; - margin: 0; - padding: 0 2px; - vertical-align: middle; -} -.textbox { - padding: 0; -} -.spinner { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.spinner .spinner-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0 2px; - vertical-align: baseline; -} -.spinner-arrow { - background-color: #3d3d3d; - display: inline-block; - overflow: hidden; - vertical-align: top; - margin: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - width: 18px; -} -.spinner-arrow-up, -.spinner-arrow-down { - opacity: 0.6; - filter: alpha(opacity=60); - display: block; - font-size: 1px; - width: 18px; - height: 10px; - width: 100%; - height: 50%; - color: #fff; - outline-style: none; -} -.spinner-arrow-hover { - background-color: #777; - opacity: 1.0; - filter: alpha(opacity=100); -} -.spinner-arrow-up:hover, -.spinner-arrow-down:hover { - opacity: 1.0; - filter: alpha(opacity=100); - background-color: #777; -} -.textbox-icon-disabled .spinner-arrow-up:hover, -.textbox-icon-disabled .spinner-arrow-down:hover { - opacity: 0.6; - filter: alpha(opacity=60); - background-color: #3d3d3d; - cursor: default; -} -.spinner .textbox-icon-disabled { - opacity: 0.6; - filter: alpha(opacity=60); -} -.spinner-arrow-up { - background: url('images/spinner_arrows.png') no-repeat 1px center; -} -.spinner-arrow-down { - background: url('images/spinner_arrows.png') no-repeat -15px center; -} -.spinner { - border-color: #000; -} -.progressbar { - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - overflow: hidden; - position: relative; -} -.progressbar-text { - text-align: center; - position: absolute; -} -.progressbar-value { - position: relative; - overflow: hidden; - width: 0; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.progressbar { - border-color: #000; -} -.progressbar-text { - color: #fff; - font-size: 12px; -} -.progressbar-value .progressbar-text { - background-color: #0052A3; - color: #fff; -} -.searchbox { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.searchbox .searchbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 0 2px; - vertical-align: top; -} -.searchbox .searchbox-prompt { - font-size: 12px; - color: #ccc; -} -.searchbox-button { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.searchbox-button-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.searchbox .l-btn-plain { - border: 0; - padding: 0; - vertical-align: top; - opacity: 0.6; - filter: alpha(opacity=60); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .l-btn-plain:hover { - border: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox a.m-btn-plain-active { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .m-btn-active { - border-width: 0 1px 0 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .textbox-button-right { - border-width: 0 0 0 1px; -} -.searchbox .textbox-button-left { - border-width: 0 1px 0 0; -} -.searchbox-button { - background: url('images/searchbox_button.png') no-repeat center center; -} -.searchbox { - border-color: #000; - background-color: #fff; -} -.searchbox .l-btn-plain { - background: #3d3d3d; -} -.searchbox .l-btn-plain-disabled, -.searchbox .l-btn-plain-disabled:hover { - opacity: 0.5; - filter: alpha(opacity=50); -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.slider-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.slider-h { - height: 22px; -} -.slider-v { - width: 22px; -} -.slider-inner { - position: relative; - height: 6px; - top: 7px; - border-width: 1px; - border-style: solid; - border-radius: 5px; -} -.slider-handle { - position: absolute; - display: block; - outline: none; - width: 20px; - height: 20px; - top: 50%; - margin-top: -10px; - margin-left: -10px; -} -.slider-tip { - position: absolute; - display: inline-block; - line-height: 12px; - font-size: 12px; - white-space: nowrap; - top: -22px; -} -.slider-rule { - position: relative; - top: 15px; -} -.slider-rule span { - position: absolute; - display: inline-block; - font-size: 0; - height: 5px; - border-width: 0 0 0 1px; - border-style: solid; -} -.slider-rulelabel { - position: relative; - top: 20px; -} -.slider-rulelabel span { - position: absolute; - display: inline-block; - font-size: 12px; -} -.slider-v .slider-inner { - width: 6px; - left: 7px; - top: 0; - float: left; -} -.slider-v .slider-handle { - left: 50%; - margin-top: -10px; -} -.slider-v .slider-tip { - left: -10px; - margin-top: -6px; -} -.slider-v .slider-rule { - float: left; - top: 0; - left: 16px; -} -.slider-v .slider-rule span { - width: 5px; - height: 'auto'; - border-left: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.slider-v .slider-rulelabel { - float: left; - top: 0; - left: 23px; -} -.slider-handle { - background: url('images/slider_handle.png') no-repeat; -} -.slider-inner { - border-color: #000; - background: #3d3d3d; -} -.slider-rule span { - border-color: #000; -} -.slider-rulelabel span { - color: #fff; -} -.menu { - position: absolute; - margin: 0; - padding: 2px; - border-width: 1px; - border-style: solid; - overflow: hidden; -} -.menu-inline { - position: relative; -} -.menu-item { - position: relative; - margin: 0; - padding: 0; - overflow: hidden; - white-space: nowrap; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.menu-text { - height: 20px; - line-height: 20px; - float: left; - padding-left: 28px; -} -.menu-icon { - position: absolute; - width: 16px; - height: 16px; - left: 2px; - top: 50%; - margin-top: -8px; -} -.menu-rightarrow { - position: absolute; - width: 16px; - height: 16px; - right: 0; - top: 50%; - margin-top: -8px; -} -.menu-line { - position: absolute; - left: 26px; - top: 0; - height: 2000px; - font-size: 1px; -} -.menu-sep { - margin: 3px 0px 3px 25px; - font-size: 1px; -} -.menu-noline .menu-line { - display: none; -} -.menu-noline .menu-sep { - margin-left: 0; - margin-right: 0; -} -.menu-active { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.menu-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: default; -} -.menu-text, -.menu-text span { - font-size: 12px; -} -.menu-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - background: #777; - -moz-box-shadow: 2px 2px 3px #787878; - -webkit-box-shadow: 2px 2px 3px #787878; - box-shadow: 2px 2px 3px #787878; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.menu-rightarrow { - background: url('images/menu_arrows.png') no-repeat -32px center; -} -.menu-line { - border-left: 1px solid #444; - border-right: 1px solid #777; -} -.menu-sep { - border-top: 1px solid #444; - border-bottom: 1px solid #777; -} -.menu { - background-color: #666; - border-color: #444; - color: #fff; -} -.menu-content { - background: #666; -} -.menu-item { - border-color: transparent; - _border-color: #666; -} -.menu-active { - border-color: #555; - color: #fff; - background: #777; -} -.menu-active-disabled { - border-color: transparent; - background: transparent; - color: #fff; -} -.m-btn-downarrow, -.s-btn-downarrow { - display: inline-block; - position: absolute; - width: 16px; - height: 16px; - font-size: 1px; - right: 0; - top: 50%; - margin-top: -8px; -} -.m-btn-active, -.s-btn-active { - background: #777; - color: #fff; - border: 1px solid #555; - filter: none; -} -.m-btn-plain-active, -.s-btn-plain-active { - background: transparent; - padding: 0; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.m-btn .l-btn-left .l-btn-text { - margin-right: 20px; -} -.m-btn .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.m-btn .l-btn-icon-right .l-btn-icon { - right: 20px; -} -.m-btn .l-btn-icon-top .l-btn-text { - margin-right: 4px; - margin-bottom: 14px; -} -.m-btn .l-btn-icon-bottom .l-btn-text { - margin-right: 4px; - margin-bottom: 34px; -} -.m-btn .l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 20px; -} -.m-btn .l-btn-icon-top .m-btn-downarrow, -.m-btn .l-btn-icon-bottom .m-btn-downarrow { - top: auto; - bottom: 0px; - left: 50%; - margin-left: -8px; -} -.m-btn-line { - display: inline-block; - position: absolute; - font-size: 1px; - display: none; -} -.m-btn .l-btn-left .m-btn-line { - right: 0; - width: 16px; - height: 500px; - border-style: solid; - border-color: #cccccc; - border-width: 0 0 0 1px; -} -.m-btn .l-btn-icon-top .m-btn-line, -.m-btn .l-btn-icon-bottom .m-btn-line { - left: 0; - bottom: 0; - width: 500px; - height: 16px; - border-width: 1px 0 0 0; -} -.m-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 56px; -} -.m-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 50px; -} -.m-btn-downarrow, -.s-btn-downarrow { - background: url('images/menu_arrows.png') no-repeat 0 center; -} -.m-btn-plain-active, -.s-btn-plain-active { - border-color: #555; - background-color: #777; - color: #fff; -} -.s-btn:hover .m-btn-line, -.s-btn-active .m-btn-line, -.s-btn-plain-active .m-btn-line { - display: inline-block; -} -.l-btn:hover .s-btn-downarrow, -.s-btn-active .s-btn-downarrow, -.s-btn-plain-active .s-btn-downarrow { - border-style: solid; - border-color: #cccccc; - border-width: 0 0 0 1px; -} -.messager-body { - padding: 10px; - overflow: auto; -} -.messager-button { - text-align: center; - padding: 5px; -} -.messager-button .l-btn { - width: 70px; -} -.messager-icon { - float: left; - width: 32px; - height: 32px; - margin: 0 10px 10px 0; -} -.messager-error { - background: url('images/messager_icons.png') no-repeat scroll -64px 0; -} -.messager-info { - background: url('images/messager_icons.png') no-repeat scroll 0 0; -} -.messager-question { - background: url('images/messager_icons.png') no-repeat scroll -32px 0; -} -.messager-warning { - background: url('images/messager_icons.png') no-repeat scroll -96px 0; -} -.messager-progress { - padding: 10px; -} -.messager-p-msg { - margin-bottom: 5px; -} -.messager-body .messager-input { - width: 100%; - padding: 1px 0; - border: 1px solid #000; -} -.tree { - margin: 0; - padding: 0; - list-style-type: none; -} -.tree li { - white-space: nowrap; -} -.tree li ul { - list-style-type: none; - margin: 0; - padding: 0; -} -.tree-node { - height: 18px; - white-space: nowrap; - cursor: pointer; -} -.tree-hit { - cursor: pointer; -} -.tree-expanded, -.tree-collapsed, -.tree-folder, -.tree-file, -.tree-checkbox, -.tree-indent { - display: inline-block; - width: 16px; - height: 18px; - vertical-align: top; - overflow: hidden; -} -.tree-expanded { - background: url('images/tree_icons.png') no-repeat -18px 0px; -} -.tree-expanded-hover { - background: url('images/tree_icons.png') no-repeat -50px 0px; -} -.tree-collapsed { - background: url('images/tree_icons.png') no-repeat 0px 0px; -} -.tree-collapsed-hover { - background: url('images/tree_icons.png') no-repeat -32px 0px; -} -.tree-lines .tree-expanded, -.tree-lines .tree-root-first .tree-expanded { - background: url('images/tree_icons.png') no-repeat -144px 0; -} -.tree-lines .tree-collapsed, -.tree-lines .tree-root-first .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -128px 0; -} -.tree-lines .tree-node-last .tree-expanded, -.tree-lines .tree-root-one .tree-expanded { - background: url('images/tree_icons.png') no-repeat -80px 0; -} -.tree-lines .tree-node-last .tree-collapsed, -.tree-lines .tree-root-one .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -64px 0; -} -.tree-line { - background: url('images/tree_icons.png') no-repeat -176px 0; -} -.tree-join { - background: url('images/tree_icons.png') no-repeat -192px 0; -} -.tree-joinbottom { - background: url('images/tree_icons.png') no-repeat -160px 0; -} -.tree-folder { - background: url('images/tree_icons.png') no-repeat -208px 0; -} -.tree-folder-open { - background: url('images/tree_icons.png') no-repeat -224px 0; -} -.tree-file { - background: url('images/tree_icons.png') no-repeat -240px 0; -} -.tree-loading { - background: url('images/loading.gif') no-repeat center center; -} -.tree-checkbox0 { - background: url('images/tree_icons.png') no-repeat -208px -18px; -} -.tree-checkbox1 { - background: url('images/tree_icons.png') no-repeat -224px -18px; -} -.tree-checkbox2 { - background: url('images/tree_icons.png') no-repeat -240px -18px; -} -.tree-title { - font-size: 12px; - display: inline-block; - text-decoration: none; - vertical-align: top; - white-space: nowrap; - padding: 0 2px; - height: 18px; - line-height: 18px; -} -.tree-node-proxy { - font-size: 12px; - line-height: 20px; - padding: 0 2px 0 20px; - border-width: 1px; - border-style: solid; - z-index: 9900000; -} -.tree-dnd-icon { - display: inline-block; - position: absolute; - width: 16px; - height: 18px; - left: 2px; - top: 50%; - margin-top: -9px; -} -.tree-dnd-yes { - background: url('images/tree_icons.png') no-repeat -256px 0; -} -.tree-dnd-no { - background: url('images/tree_icons.png') no-repeat -256px -18px; -} -.tree-node-top { - border-top: 1px dotted red; -} -.tree-node-bottom { - border-bottom: 1px dotted red; -} -.tree-node-append .tree-title { - border: 1px dotted red; -} -.tree-editor { - border: 1px solid #ccc; - font-size: 12px; - height: 14px !important; - height: 18px; - line-height: 14px; - padding: 1px 2px; - width: 80px; - position: absolute; - top: 0; -} -.tree-node-proxy { - background-color: #666; - color: #fff; - border-color: #000; -} -.tree-node-hover { - background: #777; - color: #fff; -} -.tree-node-selected { - background: #0052A3; - color: #fff; -} -.tree-node-hidden { - display: none; -} -.validatebox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; - color: #000; -} -.tooltip { - position: absolute; - display: none; - z-index: 9900000; - outline: none; - opacity: 1; - filter: alpha(opacity=100); - padding: 5px; - border-width: 1px; - border-style: solid; - border-radius: 5px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tooltip-content { - font-size: 12px; -} -.tooltip-arrow-outer, -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - line-height: 0; - font-size: 0; - border-style: solid; - border-width: 6px; - border-color: transparent; - _border-color: tomato; - _filter: chroma(color=tomato); -} -.tooltip-arrow { - display: none \9; -} -.tooltip-right .tooltip-arrow-outer { - left: 0; - top: 50%; - margin: -6px 0 0 -13px; -} -.tooltip-right .tooltip-arrow { - left: 0; - top: 50%; - margin: -6px 0 0 -12px; -} -.tooltip-left .tooltip-arrow-outer { - right: 0; - top: 50%; - margin: -6px -13px 0 0; -} -.tooltip-left .tooltip-arrow { - right: 0; - top: 50%; - margin: -6px -12px 0 0; -} -.tooltip-top .tooltip-arrow-outer { - bottom: 0; - left: 50%; - margin: 0 0 -13px -6px; -} -.tooltip-top .tooltip-arrow { - bottom: 0; - left: 50%; - margin: 0 0 -12px -6px; -} -.tooltip-bottom .tooltip-arrow-outer { - top: 0; - left: 50%; - margin: -13px 0 0 -6px; -} -.tooltip-bottom .tooltip-arrow { - top: 0; - left: 50%; - margin: -12px 0 0 -6px; -} -.tooltip { - background-color: #666; - border-color: #000; - color: #fff; -} -.tooltip-right .tooltip-arrow-outer { - border-right-color: #000; -} -.tooltip-right .tooltip-arrow { - border-right-color: #666; -} -.tooltip-left .tooltip-arrow-outer { - border-left-color: #000; -} -.tooltip-left .tooltip-arrow { - border-left-color: #666; -} -.tooltip-top .tooltip-arrow-outer { - border-top-color: #000; -} -.tooltip-top .tooltip-arrow { - border-top-color: #666; -} -.tooltip-bottom .tooltip-arrow-outer { - border-bottom-color: #000; -} -.tooltip-bottom .tooltip-arrow { - border-bottom-color: #666; -} -.switchbutton { - text-decoration: none; - display: inline-block; - overflow: hidden; - vertical-align: middle; - margin: 0; - padding: 0; - cursor: pointer; - background: #555; - border: 1px solid #555; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-inner { - display: inline-block; - overflow: hidden; - position: relative; - top: -1px; - left: -1px; -} -.switchbutton-on, -.switchbutton-off, -.switchbutton-handle { - display: inline-block; - text-align: center; - height: 100%; - float: left; - font-size: 12px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-on { - background: #0052A3; - color: #fff; -} -.switchbutton-off { - background-color: #666; - color: #fff; -} -.switchbutton-on, -.switchbutton-reversed .switchbutton-off { - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.switchbutton-off, -.switchbutton-reversed .switchbutton-on { - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.switchbutton-handle { - position: absolute; - top: 0; - left: 50%; - background-color: #666; - color: #fff; - border: 1px solid #555; - -moz-box-shadow: 0 0 3px 0 #555; - -webkit-box-shadow: 0 0 3px 0 #555; - box-shadow: 0 0 3px 0 #555; -} -.switchbutton-value { - position: absolute; - top: 0; - left: -5000px; -} -.switchbutton-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.switchbutton-disabled, -.switchbutton-readonly { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/filebox.css b/vendor/FHC-vendor/easyui/themes/black/filebox.css deleted file mode 100644 index c6bac6631..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/filebox.css +++ /dev/null @@ -1,20 +0,0 @@ -.filebox .textbox-value { - vertical-align: top; - position: absolute; - top: 0; - left: -5000px; -} -.filebox-label { - display: inline-block; - position: absolute; - width: 100%; - height: 100%; - cursor: pointer; - left: 0; - top: 0; - z-index: 10; - background: url('images/blank.gif') no-repeat; -} -.l-btn-disabled .filebox-label { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/images/accordion_arrows.png b/vendor/FHC-vendor/easyui/themes/black/images/accordion_arrows.png deleted file mode 100644 index 45fd44aa3..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/accordion_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/blank.gif b/vendor/FHC-vendor/easyui/themes/black/images/blank.gif deleted file mode 100644 index 1d11fa9ad..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/blank.gif and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/calendar_arrows.png b/vendor/FHC-vendor/easyui/themes/black/images/calendar_arrows.png deleted file mode 100644 index 430c4ad68..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/calendar_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/combo_arrow.png b/vendor/FHC-vendor/easyui/themes/black/images/combo_arrow.png deleted file mode 100644 index ac58921c3..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/combo_arrow.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/datagrid_icons.png b/vendor/FHC-vendor/easyui/themes/black/images/datagrid_icons.png deleted file mode 100644 index 7f19b9307..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/datagrid_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/datebox_arrow.png b/vendor/FHC-vendor/easyui/themes/black/images/datebox_arrow.png deleted file mode 100644 index 783c83357..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/datebox_arrow.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/layout_arrows.png b/vendor/FHC-vendor/easyui/themes/black/images/layout_arrows.png deleted file mode 100644 index 19c611fa9..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/layout_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/linkbutton_bg.png b/vendor/FHC-vendor/easyui/themes/black/images/linkbutton_bg.png deleted file mode 100644 index fc66bd2cd..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/linkbutton_bg.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/loading.gif b/vendor/FHC-vendor/easyui/themes/black/images/loading.gif deleted file mode 100644 index 68f01d048..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/loading.gif and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/menu_arrows.png b/vendor/FHC-vendor/easyui/themes/black/images/menu_arrows.png deleted file mode 100644 index 2a984941d..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/menu_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/messager_icons.png b/vendor/FHC-vendor/easyui/themes/black/images/messager_icons.png deleted file mode 100644 index 62c18c135..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/messager_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/pagination_icons.png b/vendor/FHC-vendor/easyui/themes/black/images/pagination_icons.png deleted file mode 100644 index b3315faf3..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/pagination_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/panel_tools.png b/vendor/FHC-vendor/easyui/themes/black/images/panel_tools.png deleted file mode 100644 index f97761eb3..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/panel_tools.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/searchbox_button.png b/vendor/FHC-vendor/easyui/themes/black/images/searchbox_button.png deleted file mode 100644 index 6dd193158..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/searchbox_button.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/slider_handle.png b/vendor/FHC-vendor/easyui/themes/black/images/slider_handle.png deleted file mode 100644 index b9802bae1..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/slider_handle.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/spinner_arrows.png b/vendor/FHC-vendor/easyui/themes/black/images/spinner_arrows.png deleted file mode 100644 index 25ee848d7..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/spinner_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/tabs_icons.png b/vendor/FHC-vendor/easyui/themes/black/images/tabs_icons.png deleted file mode 100644 index 732b1237a..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/tabs_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/tree_icons.png b/vendor/FHC-vendor/easyui/themes/black/images/tree_icons.png deleted file mode 100644 index 2b4fd2025..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/tree_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/images/validatebox_warning.png b/vendor/FHC-vendor/easyui/themes/black/images/validatebox_warning.png deleted file mode 100644 index 2b3d4f05b..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/black/images/validatebox_warning.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/black/layout.css b/vendor/FHC-vendor/easyui/themes/black/layout.css deleted file mode 100644 index e5ebc51da..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/layout.css +++ /dev/null @@ -1,133 +0,0 @@ -.layout { - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - z-index: 0; -} -.layout-panel { - position: absolute; - overflow: hidden; -} -.layout-body { - min-width: 1px; - min-height: 1px; -} -.layout-panel-east, -.layout-panel-west { - z-index: 2; -} -.layout-panel-north, -.layout-panel-south { - z-index: 3; -} -.layout-expand { - position: absolute; - padding: 0px; - font-size: 1px; - cursor: pointer; - z-index: 1; -} -.layout-expand .panel-header, -.layout-expand .panel-body { - background: transparent; - filter: none; - overflow: hidden; -} -.layout-expand .panel-header { - border-bottom-width: 0px; -} -.layout-expand .panel-body { - position: relative; -} -.layout-expand .panel-body .panel-icon { - margin-top: 0; - top: 0; - left: 50%; - margin-left: -8px; -} -.layout-expand-west .panel-header .panel-icon, -.layout-expand-east .panel-header .panel-icon { - display: none; -} -.layout-expand-title { - position: absolute; - top: 0; - left: 21px; - white-space: nowrap; - word-wrap: normal; - -webkit-transform: rotate(90deg); - -webkit-transform-origin: 0 0; - -moz-transform: rotate(90deg); - -moz-transform-origin: 0 0; - -o-transform: rotate(90deg); - -o-transform-origin: 0 0; - transform: rotate(90deg); - transform-origin: 0 0; -} -.layout-expand-with-icon { - top: 18px; -} -.layout-expand .panel-body-noheader .layout-expand-title, -.layout-expand .panel-body-noheader .panel-icon { - top: 5px; -} -.layout-expand .panel-body-noheader .layout-expand-with-icon { - top: 23px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - position: absolute; - font-size: 1px; - display: none; - z-index: 5; -} -.layout-split-proxy-h { - width: 5px; - cursor: e-resize; -} -.layout-split-proxy-v { - height: 5px; - cursor: n-resize; -} -.layout-mask { - position: absolute; - background: #fafafa; - filter: alpha(opacity=10); - opacity: 0.10; - z-index: 4; -} -.layout-button-up { - background: url('images/layout_arrows.png') no-repeat -16px -16px; -} -.layout-button-down { - background: url('images/layout_arrows.png') no-repeat -16px 0; -} -.layout-button-left { - background: url('images/layout_arrows.png') no-repeat 0 0; -} -.layout-button-right { - background: url('images/layout_arrows.png') no-repeat 0 -16px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - background-color: #cccccc; -} -.layout-split-north { - border-bottom: 5px solid #444; -} -.layout-split-south { - border-top: 5px solid #444; -} -.layout-split-east { - border-left: 5px solid #444; -} -.layout-split-west { - border-right: 5px solid #444; -} -.layout-expand { - background-color: #3d3d3d; -} -.layout-expand-over { - background-color: #3d3d3d; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/linkbutton.css b/vendor/FHC-vendor/easyui/themes/black/linkbutton.css deleted file mode 100644 index 18a7f0eab..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/linkbutton.css +++ /dev/null @@ -1,203 +0,0 @@ -.l-btn { - text-decoration: none; - display: inline-block; - overflow: hidden; - margin: 0; - padding: 0; - cursor: pointer; - outline: none; - text-align: center; - vertical-align: middle; - line-height: normal; -} -.l-btn-plain { - border-width: 0; - padding: 1px; -} -.l-btn-left { - display: inline-block; - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - vertical-align: top; -} -.l-btn-text { - display: inline-block; - vertical-align: top; - width: auto; - line-height: 24px; - font-size: 12px; - padding: 0; - margin: 0 4px; -} -.l-btn-icon { - display: inline-block; - width: 16px; - height: 16px; - line-height: 16px; - position: absolute; - top: 50%; - margin-top: -8px; - font-size: 1px; -} -.l-btn span span .l-btn-empty { - display: inline-block; - margin: 0; - width: 16px; - height: 24px; - font-size: 1px; - vertical-align: top; -} -.l-btn span .l-btn-icon-left { - padding: 0 0 0 20px; - background-position: left center; -} -.l-btn span .l-btn-icon-right { - padding: 0 20px 0 0; - background-position: right center; -} -.l-btn-icon-left .l-btn-text { - margin: 0 4px 0 24px; -} -.l-btn-icon-left .l-btn-icon { - left: 4px; -} -.l-btn-icon-right .l-btn-text { - margin: 0 24px 0 4px; -} -.l-btn-icon-right .l-btn-icon { - right: 4px; -} -.l-btn-icon-top .l-btn-text { - margin: 20px 4px 0 4px; -} -.l-btn-icon-top .l-btn-icon { - top: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-icon-bottom .l-btn-text { - margin: 0 4px 20px 4px; -} -.l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-left .l-btn-empty { - margin: 0 4px; - width: 16px; -} -.l-btn-plain:hover { - padding: 0; -} -.l-btn-focus { - outline: #0000FF dotted thin; -} -.l-btn-large .l-btn-text { - line-height: 40px; -} -.l-btn-large .l-btn-icon { - width: 32px; - height: 32px; - line-height: 32px; - margin-top: -16px; -} -.l-btn-large .l-btn-icon-left .l-btn-text { - margin-left: 40px; -} -.l-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.l-btn-large .l-btn-icon-top .l-btn-text { - margin-top: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-top .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-left .l-btn-empty { - margin: 0 4px; - width: 32px; -} -.l-btn { - color: #fff; - background: #777; - background-repeat: repeat-x; - border: 1px solid #555; - background: -webkit-linear-gradient(top,#919191 0,#6a6a6a 100%); - background: -moz-linear-gradient(top,#919191 0,#6a6a6a 100%); - background: -o-linear-gradient(top,#919191 0,#6a6a6a 100%); - background: linear-gradient(to bottom,#919191 0,#6a6a6a 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#919191,endColorstr=#6a6a6a,GradientType=0); - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn:hover { - background: #777; - color: #fff; - border: 1px solid #555; - filter: none; -} -.l-btn-plain { - background: transparent; - border-width: 0; - filter: none; -} -.l-btn-outline { - border-width: 1px; - border-color: #555; - padding: 0; -} -.l-btn-plain:hover { - background: #777; - color: #fff; - border: 1px solid #555; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn-disabled, -.l-btn-disabled:hover { - opacity: 0.5; - cursor: default; - background: #777; - color: #fff; - background: -webkit-linear-gradient(top,#919191 0,#6a6a6a 100%); - background: -moz-linear-gradient(top,#919191 0,#6a6a6a 100%); - background: -o-linear-gradient(top,#919191 0,#6a6a6a 100%); - background: linear-gradient(to bottom,#919191 0,#6a6a6a 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#919191,endColorstr=#6a6a6a,GradientType=0); -} -.l-btn-disabled .l-btn-text, -.l-btn-disabled .l-btn-icon { - filter: alpha(opacity=50); -} -.l-btn-plain-disabled, -.l-btn-plain-disabled:hover { - background: transparent; - filter: alpha(opacity=50); -} -.l-btn-selected, -.l-btn-selected:hover { - background: #000; - filter: none; -} -.l-btn-plain-selected, -.l-btn-plain-selected:hover { - background: #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/menu.css b/vendor/FHC-vendor/easyui/themes/black/menu.css deleted file mode 100644 index 430d0d8de..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/menu.css +++ /dev/null @@ -1,119 +0,0 @@ -.menu { - position: absolute; - margin: 0; - padding: 2px; - border-width: 1px; - border-style: solid; - overflow: hidden; -} -.menu-inline { - position: relative; -} -.menu-item { - position: relative; - margin: 0; - padding: 0; - overflow: hidden; - white-space: nowrap; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.menu-text { - height: 20px; - line-height: 20px; - float: left; - padding-left: 28px; -} -.menu-icon { - position: absolute; - width: 16px; - height: 16px; - left: 2px; - top: 50%; - margin-top: -8px; -} -.menu-rightarrow { - position: absolute; - width: 16px; - height: 16px; - right: 0; - top: 50%; - margin-top: -8px; -} -.menu-line { - position: absolute; - left: 26px; - top: 0; - height: 2000px; - font-size: 1px; -} -.menu-sep { - margin: 3px 0px 3px 25px; - font-size: 1px; -} -.menu-noline .menu-line { - display: none; -} -.menu-noline .menu-sep { - margin-left: 0; - margin-right: 0; -} -.menu-active { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.menu-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: default; -} -.menu-text, -.menu-text span { - font-size: 12px; -} -.menu-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - background: #777; - -moz-box-shadow: 2px 2px 3px #787878; - -webkit-box-shadow: 2px 2px 3px #787878; - box-shadow: 2px 2px 3px #787878; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.menu-rightarrow { - background: url('images/menu_arrows.png') no-repeat -32px center; -} -.menu-line { - border-left: 1px solid #444; - border-right: 1px solid #777; -} -.menu-sep { - border-top: 1px solid #444; - border-bottom: 1px solid #777; -} -.menu { - background-color: #666; - border-color: #444; - color: #fff; -} -.menu-content { - background: #666; -} -.menu-item { - border-color: transparent; - _border-color: #666; -} -.menu-active { - border-color: #555; - color: #fff; - background: #777; -} -.menu-active-disabled { - border-color: transparent; - background: transparent; - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/menubutton.css b/vendor/FHC-vendor/easyui/themes/black/menubutton.css deleted file mode 100644 index 55a2b5ead..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/menubutton.css +++ /dev/null @@ -1,94 +0,0 @@ -.m-btn-downarrow, -.s-btn-downarrow { - display: inline-block; - position: absolute; - width: 16px; - height: 16px; - font-size: 1px; - right: 0; - top: 50%; - margin-top: -8px; -} -.m-btn-active, -.s-btn-active { - background: #777; - color: #fff; - border: 1px solid #555; - filter: none; -} -.m-btn-plain-active, -.s-btn-plain-active { - background: transparent; - padding: 0; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.m-btn .l-btn-left .l-btn-text { - margin-right: 20px; -} -.m-btn .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.m-btn .l-btn-icon-right .l-btn-icon { - right: 20px; -} -.m-btn .l-btn-icon-top .l-btn-text { - margin-right: 4px; - margin-bottom: 14px; -} -.m-btn .l-btn-icon-bottom .l-btn-text { - margin-right: 4px; - margin-bottom: 34px; -} -.m-btn .l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 20px; -} -.m-btn .l-btn-icon-top .m-btn-downarrow, -.m-btn .l-btn-icon-bottom .m-btn-downarrow { - top: auto; - bottom: 0px; - left: 50%; - margin-left: -8px; -} -.m-btn-line { - display: inline-block; - position: absolute; - font-size: 1px; - display: none; -} -.m-btn .l-btn-left .m-btn-line { - right: 0; - width: 16px; - height: 500px; - border-style: solid; - border-color: #cccccc; - border-width: 0 0 0 1px; -} -.m-btn .l-btn-icon-top .m-btn-line, -.m-btn .l-btn-icon-bottom .m-btn-line { - left: 0; - bottom: 0; - width: 500px; - height: 16px; - border-width: 1px 0 0 0; -} -.m-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 56px; -} -.m-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 50px; -} -.m-btn-downarrow, -.s-btn-downarrow { - background: url('images/menu_arrows.png') no-repeat 0 center; -} -.m-btn-plain-active, -.s-btn-plain-active { - border-color: #555; - background-color: #777; - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/messager.css b/vendor/FHC-vendor/easyui/themes/black/messager.css deleted file mode 100644 index b5ddb99a7..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/messager.css +++ /dev/null @@ -1,40 +0,0 @@ -.messager-body { - padding: 10px; - overflow: auto; -} -.messager-button { - text-align: center; - padding: 5px; -} -.messager-button .l-btn { - width: 70px; -} -.messager-icon { - float: left; - width: 32px; - height: 32px; - margin: 0 10px 10px 0; -} -.messager-error { - background: url('images/messager_icons.png') no-repeat scroll -64px 0; -} -.messager-info { - background: url('images/messager_icons.png') no-repeat scroll 0 0; -} -.messager-question { - background: url('images/messager_icons.png') no-repeat scroll -32px 0; -} -.messager-warning { - background: url('images/messager_icons.png') no-repeat scroll -96px 0; -} -.messager-progress { - padding: 10px; -} -.messager-p-msg { - margin-bottom: 5px; -} -.messager-body .messager-input { - width: 100%; - padding: 1px 0; - border: 1px solid #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/numberbox.css b/vendor/FHC-vendor/easyui/themes/black/numberbox.css deleted file mode 100644 index 3ee54c36b..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/numberbox.css +++ /dev/null @@ -1,9 +0,0 @@ -.numberbox { - border: 1px solid #000; - margin: 0; - padding: 0 2px; - vertical-align: middle; -} -.textbox { - padding: 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/pagination.css b/vendor/FHC-vendor/easyui/themes/black/pagination.css deleted file mode 100644 index 0431a2209..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/pagination.css +++ /dev/null @@ -1,71 +0,0 @@ -.pagination { - zoom: 1; -} -.pagination table { - float: left; - height: 30px; -} -.pagination td { - border: 0; -} -.pagination-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #444; - border-right: 1px solid #777; - margin: 3px 1px; -} -.pagination .pagination-num { - border-width: 1px; - border-style: solid; - margin: 0 2px; - padding: 2px; - width: 2em; - height: auto; -} -.pagination-page-list { - margin: 0px 6px; - padding: 1px 2px; - width: auto; - height: auto; - border-width: 1px; - border-style: solid; -} -.pagination-info { - float: right; - margin: 0 6px 0 0; - padding: 0; - height: 30px; - line-height: 30px; - font-size: 12px; -} -.pagination span { - font-size: 12px; -} -.pagination-link .l-btn-text { - width: 24px; - text-align: center; - margin: 0; -} -.pagination-first { - background: url('images/pagination_icons.png') no-repeat 0 center; -} -.pagination-prev { - background: url('images/pagination_icons.png') no-repeat -16px center; -} -.pagination-next { - background: url('images/pagination_icons.png') no-repeat -32px center; -} -.pagination-last { - background: url('images/pagination_icons.png') no-repeat -48px center; -} -.pagination-load { - background: url('images/pagination_icons.png') no-repeat -64px center; -} -.pagination-loading { - background: url('images/loading.gif') no-repeat center center; -} -.pagination-page-list, -.pagination .pagination-num { - border-color: #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/panel.css b/vendor/FHC-vendor/easyui/themes/black/panel.css deleted file mode 100644 index 07845d2ca..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/panel.css +++ /dev/null @@ -1,142 +0,0 @@ -.panel { - overflow: hidden; - text-align: left; - margin: 0; - border: 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.panel-header, -.panel-body { - border-width: 1px; - border-style: solid; -} -.panel-header { - padding: 5px; - position: relative; -} -.panel-title { - background: url('images/blank.gif') no-repeat; -} -.panel-header-noborder { - border-width: 0 0 1px 0; -} -.panel-body { - overflow: auto; - border-top-width: 0; - padding: 0; -} -.panel-body-noheader { - border-top-width: 1px; -} -.panel-body-noborder { - border-width: 0px; -} -.panel-body-nobottom { - border-bottom-width: 0; -} -.panel-with-icon { - padding-left: 18px; -} -.panel-icon, -.panel-tool { - position: absolute; - top: 50%; - margin-top: -8px; - height: 16px; - overflow: hidden; -} -.panel-icon { - left: 5px; - width: 16px; -} -.panel-tool { - right: 5px; - width: auto; -} -.panel-tool a { - display: inline-block; - width: 16px; - height: 16px; - opacity: 0.6; - filter: alpha(opacity=60); - margin: 0 0 0 2px; - vertical-align: top; -} -.panel-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - background-color: #777; - -moz-border-radius: 3px 3px 3px 3px; - -webkit-border-radius: 3px 3px 3px 3px; - border-radius: 3px 3px 3px 3px; -} -.panel-loading { - padding: 11px 0px 10px 30px; -} -.panel-noscroll { - overflow: hidden; -} -.panel-fit, -.panel-fit body { - height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: hidden; -} -.panel-loading { - background: url('images/loading.gif') no-repeat 10px 10px; -} -.panel-tool-close { - background: url('images/panel_tools.png') no-repeat -16px 0px; -} -.panel-tool-min { - background: url('images/panel_tools.png') no-repeat 0px 0px; -} -.panel-tool-max { - background: url('images/panel_tools.png') no-repeat 0px -16px; -} -.panel-tool-restore { - background: url('images/panel_tools.png') no-repeat -16px -16px; -} -.panel-tool-collapse { - background: url('images/panel_tools.png') no-repeat -32px 0; -} -.panel-tool-expand { - background: url('images/panel_tools.png') no-repeat -32px -16px; -} -.panel-header, -.panel-body { - border-color: #000; -} -.panel-header { - background-color: #3d3d3d; - background: -webkit-linear-gradient(top,#454545 0,#383838 100%); - background: -moz-linear-gradient(top,#454545 0,#383838 100%); - background: -o-linear-gradient(top,#454545 0,#383838 100%); - background: linear-gradient(to bottom,#454545 0,#383838 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#383838,GradientType=0); -} -.panel-body { - background-color: #666; - color: #fff; - font-size: 12px; -} -.panel-title { - font-size: 12px; - font-weight: bold; - color: #fff; - height: 16px; - line-height: 16px; -} -.panel-footer { - border: 1px solid #000; - overflow: hidden; - background: #555; -} -.panel-footer-noborder { - border-width: 1px 0 0 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/progressbar.css b/vendor/FHC-vendor/easyui/themes/black/progressbar.css deleted file mode 100644 index 79fcf624b..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/progressbar.css +++ /dev/null @@ -1,32 +0,0 @@ -.progressbar { - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - overflow: hidden; - position: relative; -} -.progressbar-text { - text-align: center; - position: absolute; -} -.progressbar-value { - position: relative; - overflow: hidden; - width: 0; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.progressbar { - border-color: #000; -} -.progressbar-text { - color: #fff; - font-size: 12px; -} -.progressbar-value .progressbar-text { - background-color: #0052A3; - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/propertygrid.css b/vendor/FHC-vendor/easyui/themes/black/propertygrid.css deleted file mode 100644 index d71ce7c8b..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/propertygrid.css +++ /dev/null @@ -1,28 +0,0 @@ -.propertygrid .datagrid-view1 .datagrid-body td { - padding-bottom: 1px; - border-width: 0 1px 0 0; -} -.propertygrid .datagrid-group { - height: 21px; - overflow: hidden; - border-width: 0 0 1px 0; - border-style: solid; -} -.propertygrid .datagrid-group span { - font-weight: bold; -} -.propertygrid .datagrid-view1 .datagrid-body td { - border-color: #222; -} -.propertygrid .datagrid-view1 .datagrid-group { - border-color: #3d3d3d; -} -.propertygrid .datagrid-view2 .datagrid-group { - border-color: #222; -} -.propertygrid .datagrid-group, -.propertygrid .datagrid-view1 .datagrid-body, -.propertygrid .datagrid-view1 .datagrid-row-over, -.propertygrid .datagrid-view1 .datagrid-row-selected { - background: #3d3d3d; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/searchbox.css b/vendor/FHC-vendor/easyui/themes/black/searchbox.css deleted file mode 100644 index 4260efbc2..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/searchbox.css +++ /dev/null @@ -1,90 +0,0 @@ -.searchbox { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.searchbox .searchbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 0 2px; - vertical-align: top; -} -.searchbox .searchbox-prompt { - font-size: 12px; - color: #ccc; -} -.searchbox-button { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.searchbox-button-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.searchbox .l-btn-plain { - border: 0; - padding: 0; - vertical-align: top; - opacity: 0.6; - filter: alpha(opacity=60); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .l-btn-plain:hover { - border: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox a.m-btn-plain-active { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .m-btn-active { - border-width: 0 1px 0 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .textbox-button-right { - border-width: 0 0 0 1px; -} -.searchbox .textbox-button-left { - border-width: 0 1px 0 0; -} -.searchbox-button { - background: url('images/searchbox_button.png') no-repeat center center; -} -.searchbox { - border-color: #000; - background-color: #fff; -} -.searchbox .l-btn-plain { - background: #3d3d3d; -} -.searchbox .l-btn-plain-disabled, -.searchbox .l-btn-plain-disabled:hover { - opacity: 0.5; - filter: alpha(opacity=50); -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/slider.css b/vendor/FHC-vendor/easyui/themes/black/slider.css deleted file mode 100644 index cd66bf549..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/slider.css +++ /dev/null @@ -1,101 +0,0 @@ -.slider-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.slider-h { - height: 22px; -} -.slider-v { - width: 22px; -} -.slider-inner { - position: relative; - height: 6px; - top: 7px; - border-width: 1px; - border-style: solid; - border-radius: 5px; -} -.slider-handle { - position: absolute; - display: block; - outline: none; - width: 20px; - height: 20px; - top: 50%; - margin-top: -10px; - margin-left: -10px; -} -.slider-tip { - position: absolute; - display: inline-block; - line-height: 12px; - font-size: 12px; - white-space: nowrap; - top: -22px; -} -.slider-rule { - position: relative; - top: 15px; -} -.slider-rule span { - position: absolute; - display: inline-block; - font-size: 0; - height: 5px; - border-width: 0 0 0 1px; - border-style: solid; -} -.slider-rulelabel { - position: relative; - top: 20px; -} -.slider-rulelabel span { - position: absolute; - display: inline-block; - font-size: 12px; -} -.slider-v .slider-inner { - width: 6px; - left: 7px; - top: 0; - float: left; -} -.slider-v .slider-handle { - left: 50%; - margin-top: -10px; -} -.slider-v .slider-tip { - left: -10px; - margin-top: -6px; -} -.slider-v .slider-rule { - float: left; - top: 0; - left: 16px; -} -.slider-v .slider-rule span { - width: 5px; - height: 'auto'; - border-left: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.slider-v .slider-rulelabel { - float: left; - top: 0; - left: 23px; -} -.slider-handle { - background: url('images/slider_handle.png') no-repeat; -} -.slider-inner { - border-color: #000; - background: #3d3d3d; -} -.slider-rule span { - border-color: #000; -} -.slider-rulelabel span { - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/spinner.css b/vendor/FHC-vendor/easyui/themes/black/spinner.css deleted file mode 100644 index 041b3a22f..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/spinner.css +++ /dev/null @@ -1,72 +0,0 @@ -.spinner { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.spinner .spinner-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0 2px; - vertical-align: baseline; -} -.spinner-arrow { - background-color: #3d3d3d; - display: inline-block; - overflow: hidden; - vertical-align: top; - margin: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - width: 18px; -} -.spinner-arrow-up, -.spinner-arrow-down { - opacity: 0.6; - filter: alpha(opacity=60); - display: block; - font-size: 1px; - width: 18px; - height: 10px; - width: 100%; - height: 50%; - color: #fff; - outline-style: none; -} -.spinner-arrow-hover { - background-color: #777; - opacity: 1.0; - filter: alpha(opacity=100); -} -.spinner-arrow-up:hover, -.spinner-arrow-down:hover { - opacity: 1.0; - filter: alpha(opacity=100); - background-color: #777; -} -.textbox-icon-disabled .spinner-arrow-up:hover, -.textbox-icon-disabled .spinner-arrow-down:hover { - opacity: 0.6; - filter: alpha(opacity=60); - background-color: #3d3d3d; - cursor: default; -} -.spinner .textbox-icon-disabled { - opacity: 0.6; - filter: alpha(opacity=60); -} -.spinner-arrow-up { - background: url('images/spinner_arrows.png') no-repeat 1px center; -} -.spinner-arrow-down { - background: url('images/spinner_arrows.png') no-repeat -15px center; -} -.spinner { - border-color: #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/splitbutton.css b/vendor/FHC-vendor/easyui/themes/black/splitbutton.css deleted file mode 100644 index b42e3963f..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/splitbutton.css +++ /dev/null @@ -1,12 +0,0 @@ -.s-btn:hover .m-btn-line, -.s-btn-active .m-btn-line, -.s-btn-plain-active .m-btn-line { - display: inline-block; -} -.l-btn:hover .s-btn-downarrow, -.s-btn-active .s-btn-downarrow, -.s-btn-plain-active .s-btn-downarrow { - border-style: solid; - border-color: #cccccc; - border-width: 0 0 0 1px; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/switchbutton.css b/vendor/FHC-vendor/easyui/themes/black/switchbutton.css deleted file mode 100644 index b1b5714e9..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/switchbutton.css +++ /dev/null @@ -1,77 +0,0 @@ -.switchbutton { - text-decoration: none; - display: inline-block; - overflow: hidden; - vertical-align: middle; - margin: 0; - padding: 0; - cursor: pointer; - background: #555; - border: 1px solid #555; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-inner { - display: inline-block; - overflow: hidden; - position: relative; - top: -1px; - left: -1px; -} -.switchbutton-on, -.switchbutton-off, -.switchbutton-handle { - display: inline-block; - text-align: center; - height: 100%; - float: left; - font-size: 12px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-on { - background: #0052A3; - color: #fff; -} -.switchbutton-off { - background-color: #666; - color: #fff; -} -.switchbutton-on, -.switchbutton-reversed .switchbutton-off { - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.switchbutton-off, -.switchbutton-reversed .switchbutton-on { - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.switchbutton-handle { - position: absolute; - top: 0; - left: 50%; - background-color: #666; - color: #fff; - border: 1px solid #555; - -moz-box-shadow: 0 0 3px 0 #555; - -webkit-box-shadow: 0 0 3px 0 #555; - box-shadow: 0 0 3px 0 #555; -} -.switchbutton-value { - position: absolute; - top: 0; - left: -5000px; -} -.switchbutton-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.switchbutton-disabled, -.switchbutton-readonly { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/tabs.css b/vendor/FHC-vendor/easyui/themes/black/tabs.css deleted file mode 100644 index 4ab73de61..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/tabs.css +++ /dev/null @@ -1,413 +0,0 @@ -.tabs-container { - overflow: hidden; -} -.tabs-header { - border-width: 1px; - border-style: solid; - border-bottom-width: 0; - position: relative; - padding: 0; - padding-top: 2px; - overflow: hidden; -} -.tabs-scroller-left, -.tabs-scroller-right { - position: absolute; - top: auto; - bottom: 0; - width: 18px; - font-size: 1px; - display: none; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.tabs-scroller-left { - left: 0; -} -.tabs-scroller-right { - right: 0; -} -.tabs-tool { - position: absolute; - bottom: 0; - padding: 1px; - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.tabs-header-plain .tabs-tool { - padding: 0 1px; -} -.tabs-wrap { - position: relative; - left: 0; - overflow: hidden; - width: 100%; - margin: 0; - padding: 0; -} -.tabs-scrolling { - margin-left: 18px; - margin-right: 18px; -} -.tabs-disabled { - opacity: 0.3; - filter: alpha(opacity=30); -} -.tabs { - list-style-type: none; - height: 26px; - margin: 0px; - padding: 0px; - padding-left: 4px; - width: 50000px; - border-style: solid; - border-width: 0 0 1px 0; -} -.tabs li { - float: left; - display: inline-block; - margin: 0 4px -1px 0; - padding: 0; - position: relative; - border: 0; -} -.tabs li a.tabs-inner { - display: inline-block; - text-decoration: none; - margin: 0; - padding: 0 10px; - height: 25px; - line-height: 25px; - text-align: center; - white-space: nowrap; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.tabs li.tabs-selected a.tabs-inner { - font-weight: bold; - outline: none; -} -.tabs li.tabs-selected a:hover.tabs-inner { - cursor: default; - pointer: default; -} -.tabs li a.tabs-close, -.tabs-p-tool { - position: absolute; - font-size: 1px; - display: block; - height: 12px; - padding: 0; - top: 50%; - margin-top: -6px; - overflow: hidden; -} -.tabs li a.tabs-close { - width: 12px; - right: 5px; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs-p-tool { - right: 16px; -} -.tabs-p-tool a { - display: inline-block; - font-size: 1px; - width: 12px; - height: 12px; - margin: 0; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs li a:hover.tabs-close, -.tabs-p-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - cursor: hand; - cursor: pointer; -} -.tabs-with-icon { - padding-left: 18px; -} -.tabs-icon { - position: absolute; - width: 16px; - height: 16px; - left: 10px; - top: 50%; - margin-top: -8px; -} -.tabs-title { - font-size: 12px; -} -.tabs-closable { - padding-right: 8px; -} -.tabs-panels { - margin: 0px; - padding: 0px; - border-width: 1px; - border-style: solid; - border-top-width: 0; - overflow: hidden; -} -.tabs-header-bottom { - border-width: 0 1px 1px 1px; - padding: 0 0 2px 0; -} -.tabs-header-bottom .tabs { - border-width: 1px 0 0 0; -} -.tabs-header-bottom .tabs li { - margin: -1px 4px 0 0; -} -.tabs-header-bottom .tabs li a.tabs-inner { - -moz-border-radius: 0 0 5px 5px; - -webkit-border-radius: 0 0 5px 5px; - border-radius: 0 0 5px 5px; -} -.tabs-header-bottom .tabs-tool { - top: 0; -} -.tabs-header-bottom .tabs-scroller-left, -.tabs-header-bottom .tabs-scroller-right { - top: 0; - bottom: auto; -} -.tabs-panels-top { - border-width: 1px 1px 0 1px; -} -.tabs-header-left { - float: left; - border-width: 1px 0 1px 1px; - padding: 0; -} -.tabs-header-right { - float: right; - border-width: 1px 1px 1px 0; - padding: 0; -} -.tabs-header-left .tabs-wrap, -.tabs-header-right .tabs-wrap { - height: 100%; -} -.tabs-header-left .tabs { - height: 100%; - padding: 4px 0 0 2px; - border-width: 0 1px 0 0; -} -.tabs-header-right .tabs { - height: 100%; - padding: 4px 2px 0 0; - border-width: 0 0 0 1px; -} -.tabs-header-left .tabs li, -.tabs-header-right .tabs li { - display: block; - width: 100%; - position: relative; -} -.tabs-header-left .tabs li { - left: auto; - right: 0; - margin: 0 -1px 4px 0; - float: right; -} -.tabs-header-right .tabs li { - left: 0; - right: auto; - margin: 0 0 4px -1px; - float: left; -} -.tabs-justified li a.tabs-inner { - padding-left: 0; - padding-right: 0; -} -.tabs-header-left .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.tabs-header-right .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.tabs-panels-right { - float: right; - border-width: 1px 1px 1px 0; -} -.tabs-panels-left { - float: left; - border-width: 1px 0 1px 1px; -} -.tabs-header-noborder, -.tabs-panels-noborder { - border: 0px; -} -.tabs-header-plain { - border: 0px; - background: transparent; -} -.tabs-pill { - padding-bottom: 3px; -} -.tabs-header-bottom .tabs-pill { - padding-top: 3px; - padding-bottom: 0; -} -.tabs-header-left .tabs-pill { - padding-right: 3px; -} -.tabs-header-right .tabs-pill { - padding-left: 3px; -} -.tabs-header .tabs-pill li a.tabs-inner { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tabs-header-narrow, -.tabs-header-narrow .tabs-narrow { - padding: 0; -} -.tabs-narrow li, -.tabs-header-bottom .tabs-narrow li { - margin-left: 0; - margin-right: -1px; -} -.tabs-narrow li.tabs-last, -.tabs-header-bottom .tabs-narrow li.tabs-last { - margin-right: 0; -} -.tabs-header-left .tabs-narrow, -.tabs-header-right .tabs-narrow { - padding-top: 0; -} -.tabs-header-left .tabs-narrow li { - margin-bottom: -1px; - margin-right: -1px; -} -.tabs-header-left .tabs-narrow li.tabs-last, -.tabs-header-right .tabs-narrow li.tabs-last { - margin-bottom: 0; -} -.tabs-header-right .tabs-narrow li { - margin-bottom: -1px; - margin-left: -1px; -} -.tabs-scroller-left { - background: #3d3d3d url('images/tabs_icons.png') no-repeat 1px center; -} -.tabs-scroller-right { - background: #3d3d3d url('images/tabs_icons.png') no-repeat -15px center; -} -.tabs li a.tabs-close { - background: url('images/tabs_icons.png') no-repeat -34px center; -} -.tabs li a.tabs-inner:hover { - background: #777; - color: #fff; - filter: none; -} -.tabs li.tabs-selected a.tabs-inner { - background-color: #666; - color: #fff; - background: -webkit-linear-gradient(top,#454545 0,#666 100%); - background: -moz-linear-gradient(top,#454545 0,#666 100%); - background: -o-linear-gradient(top,#454545 0,#666 100%); - background: linear-gradient(to bottom,#454545 0,#666 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#666,GradientType=0); -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(top,#666 0,#454545 100%); - background: -moz-linear-gradient(top,#666 0,#454545 100%); - background: -o-linear-gradient(top,#666 0,#454545 100%); - background: linear-gradient(to bottom,#666 0,#454545 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#666,endColorstr=#454545,GradientType=0); -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#454545 0,#666 100%); - background: -moz-linear-gradient(left,#454545 0,#666 100%); - background: -o-linear-gradient(left,#454545 0,#666 100%); - background: linear-gradient(to right,#454545 0,#666 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#666,GradientType=1); -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#666 0,#454545 100%); - background: -moz-linear-gradient(left,#666 0,#454545 100%); - background: -o-linear-gradient(left,#666 0,#454545 100%); - background: linear-gradient(to right,#666 0,#454545 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#666,endColorstr=#454545,GradientType=1); -} -.tabs li a.tabs-inner { - color: #fff; - background-color: #3d3d3d; - background: -webkit-linear-gradient(top,#454545 0,#383838 100%); - background: -moz-linear-gradient(top,#454545 0,#383838 100%); - background: -o-linear-gradient(top,#454545 0,#383838 100%); - background: linear-gradient(to bottom,#454545 0,#383838 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#383838,GradientType=0); -} -.tabs-header, -.tabs-tool { - background-color: #3d3d3d; -} -.tabs-header-plain { - background: transparent; -} -.tabs-header, -.tabs-scroller-left, -.tabs-scroller-right, -.tabs-tool, -.tabs, -.tabs-panels, -.tabs li a.tabs-inner, -.tabs li.tabs-selected a.tabs-inner, -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner, -.tabs-header-left .tabs li.tabs-selected a.tabs-inner, -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-color: #000; -} -.tabs-p-tool a:hover, -.tabs li a:hover.tabs-close, -.tabs-scroller-over { - background-color: #777; -} -.tabs li.tabs-selected a.tabs-inner { - border-bottom: 1px solid #666; -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - border-top: 1px solid #666; -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - border-right: 1px solid #666; -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-left: 1px solid #666; -} -.tabs-header .tabs-pill li.tabs-selected a.tabs-inner { - background: #0052A3; - color: #fff; - filter: none; - border-color: #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/textbox.css b/vendor/FHC-vendor/easyui/themes/black/textbox.css deleted file mode 100644 index 6debaea8b..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/textbox.css +++ /dev/null @@ -1,90 +0,0 @@ -.textbox { - position: relative; - border: 1px solid #000; - background-color: #fff; - vertical-align: middle; - display: inline-block; - overflow: hidden; - white-space: nowrap; - margin: 0; - padding: 0; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox .textbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 4px; - white-space: normal; - vertical-align: top; - outline-style: none; - resize: none; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox textarea.textbox-text { - white-space: pre-wrap; -} -.textbox .textbox-prompt { - font-size: 12px; - color: #aaa; -} -.textbox .textbox-button, -.textbox .textbox-button:hover { - position: absolute; - top: 0; - padding: 0; - vertical-align: top; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.textbox-button-right, -.textbox-button-right:hover { - border-width: 0 0 0 1px; -} -.textbox-button-left, -.textbox-button-left:hover { - border-width: 0 1px 0 0; -} -.textbox-addon { - position: absolute; - top: 0; -} -.textbox-icon { - display: inline-block; - width: 18px; - height: 20px; - overflow: hidden; - vertical-align: top; - background-position: center center; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); - text-decoration: none; - outline-style: none; -} -.textbox-icon-disabled, -.textbox-icon-readonly { - cursor: default; -} -.textbox-icon:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.textbox-icon-disabled:hover { - opacity: 0.6; - filter: alpha(opacity=60); -} -.textbox-focused { - -moz-box-shadow: 0 0 3px 0 #000; - -webkit-box-shadow: 0 0 3px 0 #000; - box-shadow: 0 0 3px 0 #000; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/tooltip.css b/vendor/FHC-vendor/easyui/themes/black/tooltip.css deleted file mode 100644 index 391fd95aa..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/tooltip.css +++ /dev/null @@ -1,103 +0,0 @@ -.tooltip { - position: absolute; - display: none; - z-index: 9900000; - outline: none; - opacity: 1; - filter: alpha(opacity=100); - padding: 5px; - border-width: 1px; - border-style: solid; - border-radius: 5px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tooltip-content { - font-size: 12px; -} -.tooltip-arrow-outer, -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - line-height: 0; - font-size: 0; - border-style: solid; - border-width: 6px; - border-color: transparent; - _border-color: tomato; - _filter: chroma(color=tomato); -} -.tooltip-arrow { - display: none \9; -} -.tooltip-right .tooltip-arrow-outer { - left: 0; - top: 50%; - margin: -6px 0 0 -13px; -} -.tooltip-right .tooltip-arrow { - left: 0; - top: 50%; - margin: -6px 0 0 -12px; -} -.tooltip-left .tooltip-arrow-outer { - right: 0; - top: 50%; - margin: -6px -13px 0 0; -} -.tooltip-left .tooltip-arrow { - right: 0; - top: 50%; - margin: -6px -12px 0 0; -} -.tooltip-top .tooltip-arrow-outer { - bottom: 0; - left: 50%; - margin: 0 0 -13px -6px; -} -.tooltip-top .tooltip-arrow { - bottom: 0; - left: 50%; - margin: 0 0 -12px -6px; -} -.tooltip-bottom .tooltip-arrow-outer { - top: 0; - left: 50%; - margin: -13px 0 0 -6px; -} -.tooltip-bottom .tooltip-arrow { - top: 0; - left: 50%; - margin: -12px 0 0 -6px; -} -.tooltip { - background-color: #666; - border-color: #000; - color: #fff; -} -.tooltip-right .tooltip-arrow-outer { - border-right-color: #000; -} -.tooltip-right .tooltip-arrow { - border-right-color: #666; -} -.tooltip-left .tooltip-arrow-outer { - border-left-color: #000; -} -.tooltip-left .tooltip-arrow { - border-left-color: #666; -} -.tooltip-top .tooltip-arrow-outer { - border-top-color: #000; -} -.tooltip-top .tooltip-arrow { - border-top-color: #666; -} -.tooltip-bottom .tooltip-arrow-outer { - border-bottom-color: #000; -} -.tooltip-bottom .tooltip-arrow { - border-bottom-color: #666; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/tree.css b/vendor/FHC-vendor/easyui/themes/black/tree.css deleted file mode 100644 index e55f905b2..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/tree.css +++ /dev/null @@ -1,160 +0,0 @@ -.tree { - margin: 0; - padding: 0; - list-style-type: none; -} -.tree li { - white-space: nowrap; -} -.tree li ul { - list-style-type: none; - margin: 0; - padding: 0; -} -.tree-node { - height: 18px; - white-space: nowrap; - cursor: pointer; -} -.tree-hit { - cursor: pointer; -} -.tree-expanded, -.tree-collapsed, -.tree-folder, -.tree-file, -.tree-checkbox, -.tree-indent { - display: inline-block; - width: 16px; - height: 18px; - vertical-align: top; - overflow: hidden; -} -.tree-expanded { - background: url('images/tree_icons.png') no-repeat -18px 0px; -} -.tree-expanded-hover { - background: url('images/tree_icons.png') no-repeat -50px 0px; -} -.tree-collapsed { - background: url('images/tree_icons.png') no-repeat 0px 0px; -} -.tree-collapsed-hover { - background: url('images/tree_icons.png') no-repeat -32px 0px; -} -.tree-lines .tree-expanded, -.tree-lines .tree-root-first .tree-expanded { - background: url('images/tree_icons.png') no-repeat -144px 0; -} -.tree-lines .tree-collapsed, -.tree-lines .tree-root-first .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -128px 0; -} -.tree-lines .tree-node-last .tree-expanded, -.tree-lines .tree-root-one .tree-expanded { - background: url('images/tree_icons.png') no-repeat -80px 0; -} -.tree-lines .tree-node-last .tree-collapsed, -.tree-lines .tree-root-one .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -64px 0; -} -.tree-line { - background: url('images/tree_icons.png') no-repeat -176px 0; -} -.tree-join { - background: url('images/tree_icons.png') no-repeat -192px 0; -} -.tree-joinbottom { - background: url('images/tree_icons.png') no-repeat -160px 0; -} -.tree-folder { - background: url('images/tree_icons.png') no-repeat -208px 0; -} -.tree-folder-open { - background: url('images/tree_icons.png') no-repeat -224px 0; -} -.tree-file { - background: url('images/tree_icons.png') no-repeat -240px 0; -} -.tree-loading { - background: url('images/loading.gif') no-repeat center center; -} -.tree-checkbox0 { - background: url('images/tree_icons.png') no-repeat -208px -18px; -} -.tree-checkbox1 { - background: url('images/tree_icons.png') no-repeat -224px -18px; -} -.tree-checkbox2 { - background: url('images/tree_icons.png') no-repeat -240px -18px; -} -.tree-title { - font-size: 12px; - display: inline-block; - text-decoration: none; - vertical-align: top; - white-space: nowrap; - padding: 0 2px; - height: 18px; - line-height: 18px; -} -.tree-node-proxy { - font-size: 12px; - line-height: 20px; - padding: 0 2px 0 20px; - border-width: 1px; - border-style: solid; - z-index: 9900000; -} -.tree-dnd-icon { - display: inline-block; - position: absolute; - width: 16px; - height: 18px; - left: 2px; - top: 50%; - margin-top: -9px; -} -.tree-dnd-yes { - background: url('images/tree_icons.png') no-repeat -256px 0; -} -.tree-dnd-no { - background: url('images/tree_icons.png') no-repeat -256px -18px; -} -.tree-node-top { - border-top: 1px dotted red; -} -.tree-node-bottom { - border-bottom: 1px dotted red; -} -.tree-node-append .tree-title { - border: 1px dotted red; -} -.tree-editor { - border: 1px solid #ccc; - font-size: 12px; - height: 14px !important; - height: 18px; - line-height: 14px; - padding: 1px 2px; - width: 80px; - position: absolute; - top: 0; -} -.tree-node-proxy { - background-color: #666; - color: #fff; - border-color: #000; -} -.tree-node-hover { - background: #777; - color: #fff; -} -.tree-node-selected { - background: #0052A3; - color: #fff; -} -.tree-node-hidden { - display: none; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/validatebox.css b/vendor/FHC-vendor/easyui/themes/black/validatebox.css deleted file mode 100644 index 1fc3ad64e..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/validatebox.css +++ /dev/null @@ -1,5 +0,0 @@ -.validatebox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; - color: #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/black/window.css b/vendor/FHC-vendor/easyui/themes/black/window.css deleted file mode 100644 index 01942abd6..000000000 --- a/vendor/FHC-vendor/easyui/themes/black/window.css +++ /dev/null @@ -1,94 +0,0 @@ -.window { - overflow: hidden; - padding: 5px; - border-width: 1px; - border-style: solid; -} -.window .window-header { - background: transparent; - padding: 0px 0px 6px 0px; -} -.window .window-body { - border-width: 1px; - border-style: solid; - border-top-width: 0px; -} -.window .window-body-noheader { - border-top-width: 1px; -} -.window .panel-body-nobottom { - border-bottom-width: 0; -} -.window .window-header .panel-icon, -.window .window-header .panel-tool { - top: 50%; - margin-top: -11px; -} -.window .window-header .panel-icon { - left: 1px; -} -.window .window-header .panel-tool { - right: 1px; -} -.window .window-header .panel-with-icon { - padding-left: 18px; -} -.window-proxy { - position: absolute; - overflow: hidden; -} -.window-proxy-mask { - position: absolute; - filter: alpha(opacity=5); - opacity: 0.05; -} -.window-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - filter: alpha(opacity=40); - opacity: 0.40; - font-size: 1px; - overflow: hidden; -} -.window, -.window-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.window-shadow { - background: #777; - -moz-box-shadow: 2px 2px 3px #787878; - -webkit-box-shadow: 2px 2px 3px #787878; - box-shadow: 2px 2px 3px #787878; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.window, -.window .window-body { - border-color: #000; -} -.window { - background-color: #3d3d3d; - background: -webkit-linear-gradient(top,#454545 0,#383838 20%); - background: -moz-linear-gradient(top,#454545 0,#383838 20%); - background: -o-linear-gradient(top,#454545 0,#383838 20%); - background: linear-gradient(to bottom,#454545 0,#383838 20%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#383838,GradientType=0); -} -.window-proxy { - border: 1px dashed #000; -} -.window-proxy-mask, -.window-mask { - background: #000; -} -.window .panel-footer { - border: 1px solid #000; - position: relative; - top: -1px; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/accordion.css b/vendor/FHC-vendor/easyui/themes/bootstrap/accordion.css deleted file mode 100644 index 26db0fa70..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/accordion.css +++ /dev/null @@ -1,41 +0,0 @@ -.accordion { - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.accordion .accordion-header { - border-width: 0 0 1px; - cursor: pointer; -} -.accordion .accordion-body { - border-width: 0 0 1px; -} -.accordion-noborder { - border-width: 0; -} -.accordion-noborder .accordion-header { - border-width: 0 0 1px; -} -.accordion-noborder .accordion-body { - border-width: 0 0 1px; -} -.accordion-collapse { - background: url('images/accordion_arrows.png') no-repeat 0 0; -} -.accordion-expand { - background: url('images/accordion_arrows.png') no-repeat -16px 0; -} -.accordion { - background: #ffffff; - border-color: #D4D4D4; -} -.accordion .accordion-header { - background: #F2F2F2; - filter: none; -} -.accordion .accordion-header-selected { - background: #0081c2; -} -.accordion .accordion-header-selected .panel-title { - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/calendar.css b/vendor/FHC-vendor/easyui/themes/bootstrap/calendar.css deleted file mode 100644 index 5eb1efff2..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/calendar.css +++ /dev/null @@ -1,197 +0,0 @@ -.calendar { - border-width: 1px; - border-style: solid; - padding: 1px; - overflow: hidden; -} -.calendar table { - table-layout: fixed; - border-collapse: separate; - font-size: 12px; - width: 100%; - height: 100%; -} -.calendar table td, -.calendar table th { - font-size: 12px; -} -.calendar-noborder { - border: 0; -} -.calendar-header { - position: relative; - height: 22px; -} -.calendar-title { - text-align: center; - height: 22px; -} -.calendar-title span { - position: relative; - display: inline-block; - top: 2px; - padding: 0 3px; - height: 18px; - line-height: 18px; - font-size: 12px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth, -.calendar-nextmonth, -.calendar-prevyear, -.calendar-nextyear { - position: absolute; - top: 50%; - margin-top: -7px; - width: 14px; - height: 14px; - cursor: pointer; - font-size: 1px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth { - left: 20px; - background: url('images/calendar_arrows.png') no-repeat -18px -2px; -} -.calendar-nextmonth { - right: 20px; - background: url('images/calendar_arrows.png') no-repeat -34px -2px; -} -.calendar-prevyear { - left: 3px; - background: url('images/calendar_arrows.png') no-repeat -1px -2px; -} -.calendar-nextyear { - right: 3px; - background: url('images/calendar_arrows.png') no-repeat -49px -2px; -} -.calendar-body { - position: relative; -} -.calendar-body th, -.calendar-body td { - text-align: center; -} -.calendar-day { - border: 0; - padding: 1px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-other-month { - opacity: 0.3; - filter: alpha(opacity=30); -} -.calendar-disabled { - opacity: 0.6; - filter: alpha(opacity=60); - cursor: default; -} -.calendar-menu { - position: absolute; - top: 0; - left: 0; - width: 180px; - height: 150px; - padding: 5px; - font-size: 12px; - display: none; - overflow: hidden; -} -.calendar-menu-year-inner { - text-align: center; - padding-bottom: 5px; -} -.calendar-menu-year { - width: 40px; - text-align: center; - border-width: 1px; - border-style: solid; - margin: 0; - padding: 2px; - font-weight: bold; - font-size: 12px; -} -.calendar-menu-prev, -.calendar-menu-next { - display: inline-block; - width: 21px; - height: 21px; - vertical-align: top; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-menu-prev { - margin-right: 10px; - background: url('images/calendar_arrows.png') no-repeat 2px 2px; -} -.calendar-menu-next { - margin-left: 10px; - background: url('images/calendar_arrows.png') no-repeat -45px 2px; -} -.calendar-menu-month { - text-align: center; - cursor: pointer; - font-weight: bold; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-body th, -.calendar-menu-month { - color: #808080; -} -.calendar-day { - color: #333; -} -.calendar-sunday { - color: #CC2222; -} -.calendar-saturday { - color: #00ee00; -} -.calendar-today { - color: #0000ff; -} -.calendar-menu-year { - border-color: #D4D4D4; -} -.calendar { - border-color: #D4D4D4; -} -.calendar-header { - background: #F2F2F2; -} -.calendar-body, -.calendar-menu { - background: #ffffff; -} -.calendar-body th { - background: #F5F5F5; - padding: 2px 0; -} -.calendar-hover, -.calendar-nav-hover, -.calendar-menu-hover { - background-color: #e6e6e6; - color: #00438a; -} -.calendar-hover { - border: 1px solid #ddd; - padding: 0; -} -.calendar-selected { - background-color: #0081c2; - color: #fff; - border: 1px solid #0070a9; - padding: 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/combo.css b/vendor/FHC-vendor/easyui/themes/bootstrap/combo.css deleted file mode 100644 index e3ee8e172..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/combo.css +++ /dev/null @@ -1,60 +0,0 @@ -.combo { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.combo .combo-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0px 2px; - vertical-align: baseline; -} -.combo-arrow { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.combo-arrow-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.combo-panel { - overflow: auto; -} -.combo-arrow { - background: url('images/combo_arrow.png') no-repeat center center; -} -.combo-panel { - background-color: #ffffff; -} -.combo { - border-color: #D4D4D4; - background-color: #fff; -} -.combo-arrow { - background-color: #F2F2F2; -} -.combo-arrow-hover { - background-color: #e6e6e6; -} -.combo-arrow:hover { - background-color: #e6e6e6; -} -.combo .textbox-icon-disabled:hover { - cursor: default; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/combobox.css b/vendor/FHC-vendor/easyui/themes/bootstrap/combobox.css deleted file mode 100644 index 82abe6302..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/combobox.css +++ /dev/null @@ -1,24 +0,0 @@ -.combobox-item, -.combobox-group { - font-size: 12px; - padding: 3px; - padding-right: 0px; -} -.combobox-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.combobox-gitem { - padding-left: 10px; -} -.combobox-group { - font-weight: bold; -} -.combobox-item-hover { - background-color: #e6e6e6; - color: #00438a; -} -.combobox-item-selected { - background-color: #0081c2; - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/datagrid.css b/vendor/FHC-vendor/easyui/themes/bootstrap/datagrid.css deleted file mode 100644 index d0cbc9a26..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/datagrid.css +++ /dev/null @@ -1,276 +0,0 @@ -.datagrid .panel-body { - overflow: hidden; - position: relative; -} -.datagrid-view { - position: relative; - overflow: hidden; -} -.datagrid-view1, -.datagrid-view2 { - position: absolute; - overflow: hidden; - top: 0; -} -.datagrid-view1 { - left: 0; -} -.datagrid-view2 { - right: 0; -} -.datagrid-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - opacity: 0.3; - filter: alpha(opacity=30); - display: none; -} -.datagrid-mask-msg { - position: absolute; - top: 50%; - margin-top: -20px; - padding: 10px 5px 10px 30px; - width: auto; - height: 16px; - border-width: 2px; - border-style: solid; - display: none; -} -.datagrid-sort-icon { - padding: 0; - display: none; -} -.datagrid-toolbar { - height: auto; - padding: 1px 2px; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.datagrid .datagrid-pager { - display: block; - margin: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.datagrid .datagrid-pager-top { - border-width: 0 0 1px 0; -} -.datagrid-header { - overflow: hidden; - cursor: default; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-header-inner { - float: left; - width: 10000px; -} -.datagrid-header-row, -.datagrid-row { - height: 25px; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-width: 0 1px 1px 0; - border-style: dotted; - margin: 0; - padding: 0; -} -.datagrid-cell, -.datagrid-cell-group, -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - margin: 0; - padding: 0 4px; - white-space: nowrap; - word-wrap: normal; - overflow: hidden; - height: 18px; - line-height: 18px; - font-size: 12px; -} -.datagrid-header .datagrid-cell { - height: auto; -} -.datagrid-header .datagrid-cell span { - font-size: 12px; -} -.datagrid-cell-group { - text-align: center; - text-overflow: ellipsis; -} -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - width: 30px; - text-align: center; - margin: 0; - padding: 0; -} -.datagrid-body { - margin: 0; - padding: 0; - overflow: auto; - zoom: 1; -} -.datagrid-view1 .datagrid-body-inner { - padding-bottom: 20px; -} -.datagrid-view1 .datagrid-body { - overflow: hidden; -} -.datagrid-footer { - overflow: hidden; -} -.datagrid-footer-inner { - border-width: 1px 0 0 0; - border-style: solid; - width: 10000px; - float: left; -} -.datagrid-row-editing .datagrid-cell { - height: auto; -} -.datagrid-header-check, -.datagrid-cell-check { - padding: 0; - width: 27px; - height: 18px; - font-size: 1px; - text-align: center; - overflow: hidden; -} -.datagrid-header-check input, -.datagrid-cell-check input { - margin: 0; - padding: 0; - width: 15px; - height: 18px; -} -.datagrid-resize-proxy { - position: absolute; - width: 1px; - height: 10000px; - top: 0; - cursor: e-resize; - display: none; -} -.datagrid-body .datagrid-editable { - margin: 0; - padding: 0; -} -.datagrid-body .datagrid-editable table { - width: 100%; - height: 100%; -} -.datagrid-body .datagrid-editable td { - border: 0; - margin: 0; - padding: 0; -} -.datagrid-view .datagrid-editable-input { - margin: 0; - padding: 2px 4px; - border: 1px solid #D4D4D4; - font-size: 12px; - outline-style: none; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.datagrid-sort .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -64px center; -} -.datagrid-sort-desc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -16px center; -} -.datagrid-sort-asc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat 0px center; -} -.datagrid-row-collapse { - background: url('images/datagrid_icons.png') no-repeat -48px center; -} -.datagrid-row-expand { - background: url('images/datagrid_icons.png') no-repeat -32px center; -} -.datagrid-mask-msg { - background: #ffffff url('images/loading.gif') no-repeat scroll 5px center; -} -.datagrid-header, -.datagrid-td-rownumber { - background-color: #F2F2F2; - background: -webkit-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: -moz-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: -o-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: linear-gradient(to bottom,#ffffff 0,#F2F2F2 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#F2F2F2,GradientType=0); -} -.datagrid-cell-rownumber { - color: #333; -} -.datagrid-resize-proxy { - background: #bbb; -} -.datagrid-mask { - background: #ccc; -} -.datagrid-mask-msg { - border-color: #D4D4D4; -} -.datagrid-toolbar, -.datagrid-pager { - background: #F5F5F5; -} -.datagrid-header, -.datagrid-toolbar, -.datagrid-pager, -.datagrid-footer-inner { - border-color: #e6e6e6; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-color: #ccc; -} -.datagrid-htable, -.datagrid-btable, -.datagrid-ftable { - color: #333; - border-collapse: separate; -} -.datagrid-row-alt { - background: #F5F5F5; -} -.datagrid-row-over, -.datagrid-header td.datagrid-header-over { - background: #e6e6e6; - color: #00438a; - cursor: default; -} -.datagrid-row-selected { - background: #0081c2; - color: #fff; -} -.datagrid-row-editing .textbox, -.datagrid-row-editing .textbox-text { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/datebox.css b/vendor/FHC-vendor/easyui/themes/bootstrap/datebox.css deleted file mode 100644 index b9d2bcb86..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/datebox.css +++ /dev/null @@ -1,36 +0,0 @@ -.datebox-calendar-inner { - height: 180px; -} -.datebox-button { - height: 18px; - padding: 2px 5px; - text-align: center; -} -.datebox-button a { - font-size: 12px; - font-weight: bold; - text-decoration: none; - opacity: 0.6; - filter: alpha(opacity=60); -} -.datebox-button a:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.datebox-current, -.datebox-close { - float: left; -} -.datebox-close { - float: right; -} -.datebox .combo-arrow { - background-image: url('images/datebox_arrow.png'); - background-position: center center; -} -.datebox-button { - background-color: #F5F5F5; -} -.datebox-button a { - color: #444; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/dialog.css b/vendor/FHC-vendor/easyui/themes/bootstrap/dialog.css deleted file mode 100644 index 5fdaec391..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/dialog.css +++ /dev/null @@ -1,32 +0,0 @@ -.dialog-content { - overflow: auto; -} -.dialog-toolbar { - padding: 2px 5px; -} -.dialog-tool-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.dialog-button { - padding: 5px; - text-align: right; -} -.dialog-button .l-btn { - margin-left: 5px; -} -.dialog-toolbar, -.dialog-button { - background: #F5F5F5; - border-width: 1px; - border-style: solid; -} -.dialog-toolbar { - border-color: #D4D4D4 #D4D4D4 #e6e6e6 #D4D4D4; -} -.dialog-button { - border-color: #e6e6e6 #D4D4D4 #D4D4D4 #D4D4D4; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/easyui.css b/vendor/FHC-vendor/easyui/themes/bootstrap/easyui.css deleted file mode 100644 index 763f5c7cd..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/easyui.css +++ /dev/null @@ -1,2888 +0,0 @@ -.panel { - overflow: hidden; - text-align: left; - margin: 0; - border: 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.panel-header, -.panel-body { - border-width: 1px; - border-style: solid; -} -.panel-header { - padding: 5px; - position: relative; -} -.panel-title { - background: url('images/blank.gif') no-repeat; -} -.panel-header-noborder { - border-width: 0 0 1px 0; -} -.panel-body { - overflow: auto; - border-top-width: 0; - padding: 0; -} -.panel-body-noheader { - border-top-width: 1px; -} -.panel-body-noborder { - border-width: 0px; -} -.panel-body-nobottom { - border-bottom-width: 0; -} -.panel-with-icon { - padding-left: 18px; -} -.panel-icon, -.panel-tool { - position: absolute; - top: 50%; - margin-top: -8px; - height: 16px; - overflow: hidden; -} -.panel-icon { - left: 5px; - width: 16px; -} -.panel-tool { - right: 5px; - width: auto; -} -.panel-tool a { - display: inline-block; - width: 16px; - height: 16px; - opacity: 0.6; - filter: alpha(opacity=60); - margin: 0 0 0 2px; - vertical-align: top; -} -.panel-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - background-color: #e6e6e6; - -moz-border-radius: 3px 3px 3px 3px; - -webkit-border-radius: 3px 3px 3px 3px; - border-radius: 3px 3px 3px 3px; -} -.panel-loading { - padding: 11px 0px 10px 30px; -} -.panel-noscroll { - overflow: hidden; -} -.panel-fit, -.panel-fit body { - height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: hidden; -} -.panel-loading { - background: url('images/loading.gif') no-repeat 10px 10px; -} -.panel-tool-close { - background: url('images/panel_tools.png') no-repeat -16px 0px; -} -.panel-tool-min { - background: url('images/panel_tools.png') no-repeat 0px 0px; -} -.panel-tool-max { - background: url('images/panel_tools.png') no-repeat 0px -16px; -} -.panel-tool-restore { - background: url('images/panel_tools.png') no-repeat -16px -16px; -} -.panel-tool-collapse { - background: url('images/panel_tools.png') no-repeat -32px 0; -} -.panel-tool-expand { - background: url('images/panel_tools.png') no-repeat -32px -16px; -} -.panel-header, -.panel-body { - border-color: #D4D4D4; -} -.panel-header { - background-color: #F2F2F2; - background: -webkit-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: -moz-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: -o-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: linear-gradient(to bottom,#ffffff 0,#F2F2F2 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#F2F2F2,GradientType=0); -} -.panel-body { - background-color: #ffffff; - color: #333; - font-size: 12px; -} -.panel-title { - font-size: 12px; - font-weight: bold; - color: #777; - height: 16px; - line-height: 16px; -} -.panel-footer { - border: 1px solid #D4D4D4; - overflow: hidden; - background: #F5F5F5; -} -.panel-footer-noborder { - border-width: 1px 0 0 0; -} -.accordion { - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.accordion .accordion-header { - border-width: 0 0 1px; - cursor: pointer; -} -.accordion .accordion-body { - border-width: 0 0 1px; -} -.accordion-noborder { - border-width: 0; -} -.accordion-noborder .accordion-header { - border-width: 0 0 1px; -} -.accordion-noborder .accordion-body { - border-width: 0 0 1px; -} -.accordion-collapse { - background: url('images/accordion_arrows.png') no-repeat 0 0; -} -.accordion-expand { - background: url('images/accordion_arrows.png') no-repeat -16px 0; -} -.accordion { - background: #ffffff; - border-color: #D4D4D4; -} -.accordion .accordion-header { - background: #F2F2F2; - filter: none; -} -.accordion .accordion-header-selected { - background: #0081c2; -} -.accordion .accordion-header-selected .panel-title { - color: #fff; -} -.window { - overflow: hidden; - padding: 5px; - border-width: 1px; - border-style: solid; -} -.window .window-header { - background: transparent; - padding: 0px 0px 6px 0px; -} -.window .window-body { - border-width: 1px; - border-style: solid; - border-top-width: 0px; -} -.window .window-body-noheader { - border-top-width: 1px; -} -.window .panel-body-nobottom { - border-bottom-width: 0; -} -.window .window-header .panel-icon, -.window .window-header .panel-tool { - top: 50%; - margin-top: -11px; -} -.window .window-header .panel-icon { - left: 1px; -} -.window .window-header .panel-tool { - right: 1px; -} -.window .window-header .panel-with-icon { - padding-left: 18px; -} -.window-proxy { - position: absolute; - overflow: hidden; -} -.window-proxy-mask { - position: absolute; - filter: alpha(opacity=5); - opacity: 0.05; -} -.window-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - filter: alpha(opacity=40); - opacity: 0.40; - font-size: 1px; - overflow: hidden; -} -.window, -.window-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.window-shadow { - background: #ccc; - -moz-box-shadow: 2px 2px 3px #cccccc; - -webkit-box-shadow: 2px 2px 3px #cccccc; - box-shadow: 2px 2px 3px #cccccc; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.window, -.window .window-body { - border-color: #D4D4D4; -} -.window { - background-color: #F2F2F2; - background: -webkit-linear-gradient(top,#ffffff 0,#F2F2F2 20%); - background: -moz-linear-gradient(top,#ffffff 0,#F2F2F2 20%); - background: -o-linear-gradient(top,#ffffff 0,#F2F2F2 20%); - background: linear-gradient(to bottom,#ffffff 0,#F2F2F2 20%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#F2F2F2,GradientType=0); -} -.window-proxy { - border: 1px dashed #D4D4D4; -} -.window-proxy-mask, -.window-mask { - background: #ccc; -} -.window .panel-footer { - border: 1px solid #D4D4D4; - position: relative; - top: -1px; -} -.dialog-content { - overflow: auto; -} -.dialog-toolbar { - padding: 2px 5px; -} -.dialog-tool-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.dialog-button { - padding: 5px; - text-align: right; -} -.dialog-button .l-btn { - margin-left: 5px; -} -.dialog-toolbar, -.dialog-button { - background: #F5F5F5; - border-width: 1px; - border-style: solid; -} -.dialog-toolbar { - border-color: #D4D4D4 #D4D4D4 #e6e6e6 #D4D4D4; -} -.dialog-button { - border-color: #e6e6e6 #D4D4D4 #D4D4D4 #D4D4D4; -} -.l-btn { - text-decoration: none; - display: inline-block; - overflow: hidden; - margin: 0; - padding: 0; - cursor: pointer; - outline: none; - text-align: center; - vertical-align: middle; - line-height: normal; -} -.l-btn-plain { - border-width: 0; - padding: 1px; -} -.l-btn-left { - display: inline-block; - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - vertical-align: top; -} -.l-btn-text { - display: inline-block; - vertical-align: top; - width: auto; - line-height: 24px; - font-size: 12px; - padding: 0; - margin: 0 4px; -} -.l-btn-icon { - display: inline-block; - width: 16px; - height: 16px; - line-height: 16px; - position: absolute; - top: 50%; - margin-top: -8px; - font-size: 1px; -} -.l-btn span span .l-btn-empty { - display: inline-block; - margin: 0; - width: 16px; - height: 24px; - font-size: 1px; - vertical-align: top; -} -.l-btn span .l-btn-icon-left { - padding: 0 0 0 20px; - background-position: left center; -} -.l-btn span .l-btn-icon-right { - padding: 0 20px 0 0; - background-position: right center; -} -.l-btn-icon-left .l-btn-text { - margin: 0 4px 0 24px; -} -.l-btn-icon-left .l-btn-icon { - left: 4px; -} -.l-btn-icon-right .l-btn-text { - margin: 0 24px 0 4px; -} -.l-btn-icon-right .l-btn-icon { - right: 4px; -} -.l-btn-icon-top .l-btn-text { - margin: 20px 4px 0 4px; -} -.l-btn-icon-top .l-btn-icon { - top: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-icon-bottom .l-btn-text { - margin: 0 4px 20px 4px; -} -.l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-left .l-btn-empty { - margin: 0 4px; - width: 16px; -} -.l-btn-plain:hover { - padding: 0; -} -.l-btn-focus { - outline: #0000FF dotted thin; -} -.l-btn-large .l-btn-text { - line-height: 40px; -} -.l-btn-large .l-btn-icon { - width: 32px; - height: 32px; - line-height: 32px; - margin-top: -16px; -} -.l-btn-large .l-btn-icon-left .l-btn-text { - margin-left: 40px; -} -.l-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.l-btn-large .l-btn-icon-top .l-btn-text { - margin-top: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-top .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-left .l-btn-empty { - margin: 0 4px; - width: 32px; -} -.l-btn { - color: #444; - background: #f5f5f5; - background-repeat: repeat-x; - border: 1px solid #bbb; - background: -webkit-linear-gradient(top,#ffffff 0,#e6e6e6 100%); - background: -moz-linear-gradient(top,#ffffff 0,#e6e6e6 100%); - background: -o-linear-gradient(top,#ffffff 0,#e6e6e6 100%); - background: linear-gradient(to bottom,#ffffff 0,#e6e6e6 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#e6e6e6,GradientType=0); - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn:hover { - background: #e6e6e6; - color: #00438a; - border: 1px solid #ddd; - filter: none; -} -.l-btn-plain { - background: transparent; - border-width: 0; - filter: none; -} -.l-btn-outline { - border-width: 1px; - border-color: #ddd; - padding: 0; -} -.l-btn-plain:hover { - background: #e6e6e6; - color: #00438a; - border: 1px solid #ddd; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn-disabled, -.l-btn-disabled:hover { - opacity: 0.5; - cursor: default; - background: #f5f5f5; - color: #444; - background: -webkit-linear-gradient(top,#ffffff 0,#e6e6e6 100%); - background: -moz-linear-gradient(top,#ffffff 0,#e6e6e6 100%); - background: -o-linear-gradient(top,#ffffff 0,#e6e6e6 100%); - background: linear-gradient(to bottom,#ffffff 0,#e6e6e6 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#e6e6e6,GradientType=0); -} -.l-btn-disabled .l-btn-text, -.l-btn-disabled .l-btn-icon { - filter: alpha(opacity=50); -} -.l-btn-plain-disabled, -.l-btn-plain-disabled:hover { - background: transparent; - filter: alpha(opacity=50); -} -.l-btn-selected, -.l-btn-selected:hover { - background: #ddd; - filter: none; -} -.l-btn-plain-selected, -.l-btn-plain-selected:hover { - background: #ddd; -} -.textbox { - position: relative; - border: 1px solid #D4D4D4; - background-color: #fff; - vertical-align: middle; - display: inline-block; - overflow: hidden; - white-space: nowrap; - margin: 0; - padding: 0; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox .textbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 4px; - white-space: normal; - vertical-align: top; - outline-style: none; - resize: none; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox textarea.textbox-text { - white-space: pre-wrap; -} -.textbox .textbox-prompt { - font-size: 12px; - color: #aaa; -} -.textbox .textbox-button, -.textbox .textbox-button:hover { - position: absolute; - top: 0; - padding: 0; - vertical-align: top; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.textbox-button-right, -.textbox-button-right:hover { - border-width: 0 0 0 1px; -} -.textbox-button-left, -.textbox-button-left:hover { - border-width: 0 1px 0 0; -} -.textbox-addon { - position: absolute; - top: 0; -} -.textbox-icon { - display: inline-block; - width: 18px; - height: 20px; - overflow: hidden; - vertical-align: top; - background-position: center center; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); - text-decoration: none; - outline-style: none; -} -.textbox-icon-disabled, -.textbox-icon-readonly { - cursor: default; -} -.textbox-icon:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.textbox-icon-disabled:hover { - opacity: 0.6; - filter: alpha(opacity=60); -} -.textbox-focused { - -moz-box-shadow: 0 0 3px 0 #D4D4D4; - -webkit-box-shadow: 0 0 3px 0 #D4D4D4; - box-shadow: 0 0 3px 0 #D4D4D4; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.filebox .textbox-value { - vertical-align: top; - position: absolute; - top: 0; - left: -5000px; -} -.filebox-label { - display: inline-block; - position: absolute; - width: 100%; - height: 100%; - cursor: pointer; - left: 0; - top: 0; - z-index: 10; - background: url('images/blank.gif') no-repeat; -} -.l-btn-disabled .filebox-label { - cursor: default; -} -.combo { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.combo .combo-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0px 2px; - vertical-align: baseline; -} -.combo-arrow { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.combo-arrow-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.combo-panel { - overflow: auto; -} -.combo-arrow { - background: url('images/combo_arrow.png') no-repeat center center; -} -.combo-panel { - background-color: #ffffff; -} -.combo { - border-color: #D4D4D4; - background-color: #fff; -} -.combo-arrow { - background-color: #F2F2F2; -} -.combo-arrow-hover { - background-color: #e6e6e6; -} -.combo-arrow:hover { - background-color: #e6e6e6; -} -.combo .textbox-icon-disabled:hover { - cursor: default; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.combobox-item, -.combobox-group { - font-size: 12px; - padding: 3px; - padding-right: 0px; -} -.combobox-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.combobox-gitem { - padding-left: 10px; -} -.combobox-group { - font-weight: bold; -} -.combobox-item-hover { - background-color: #e6e6e6; - color: #00438a; -} -.combobox-item-selected { - background-color: #0081c2; - color: #fff; -} -.layout { - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - z-index: 0; -} -.layout-panel { - position: absolute; - overflow: hidden; -} -.layout-body { - min-width: 1px; - min-height: 1px; -} -.layout-panel-east, -.layout-panel-west { - z-index: 2; -} -.layout-panel-north, -.layout-panel-south { - z-index: 3; -} -.layout-expand { - position: absolute; - padding: 0px; - font-size: 1px; - cursor: pointer; - z-index: 1; -} -.layout-expand .panel-header, -.layout-expand .panel-body { - background: transparent; - filter: none; - overflow: hidden; -} -.layout-expand .panel-header { - border-bottom-width: 0px; -} -.layout-expand .panel-body { - position: relative; -} -.layout-expand .panel-body .panel-icon { - margin-top: 0; - top: 0; - left: 50%; - margin-left: -8px; -} -.layout-expand-west .panel-header .panel-icon, -.layout-expand-east .panel-header .panel-icon { - display: none; -} -.layout-expand-title { - position: absolute; - top: 0; - left: 21px; - white-space: nowrap; - word-wrap: normal; - -webkit-transform: rotate(90deg); - -webkit-transform-origin: 0 0; - -moz-transform: rotate(90deg); - -moz-transform-origin: 0 0; - -o-transform: rotate(90deg); - -o-transform-origin: 0 0; - transform: rotate(90deg); - transform-origin: 0 0; -} -.layout-expand-with-icon { - top: 18px; -} -.layout-expand .panel-body-noheader .layout-expand-title, -.layout-expand .panel-body-noheader .panel-icon { - top: 5px; -} -.layout-expand .panel-body-noheader .layout-expand-with-icon { - top: 23px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - position: absolute; - font-size: 1px; - display: none; - z-index: 5; -} -.layout-split-proxy-h { - width: 5px; - cursor: e-resize; -} -.layout-split-proxy-v { - height: 5px; - cursor: n-resize; -} -.layout-mask { - position: absolute; - background: #fafafa; - filter: alpha(opacity=10); - opacity: 0.10; - z-index: 4; -} -.layout-button-up { - background: url('images/layout_arrows.png') no-repeat -16px -16px; -} -.layout-button-down { - background: url('images/layout_arrows.png') no-repeat -16px 0; -} -.layout-button-left { - background: url('images/layout_arrows.png') no-repeat 0 0; -} -.layout-button-right { - background: url('images/layout_arrows.png') no-repeat 0 -16px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - background-color: #bbb; -} -.layout-split-north { - border-bottom: 5px solid #eee; -} -.layout-split-south { - border-top: 5px solid #eee; -} -.layout-split-east { - border-left: 5px solid #eee; -} -.layout-split-west { - border-right: 5px solid #eee; -} -.layout-expand { - background-color: #F2F2F2; -} -.layout-expand-over { - background-color: #F2F2F2; -} -.tabs-container { - overflow: hidden; -} -.tabs-header { - border-width: 1px; - border-style: solid; - border-bottom-width: 0; - position: relative; - padding: 0; - padding-top: 2px; - overflow: hidden; -} -.tabs-scroller-left, -.tabs-scroller-right { - position: absolute; - top: auto; - bottom: 0; - width: 18px; - font-size: 1px; - display: none; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.tabs-scroller-left { - left: 0; -} -.tabs-scroller-right { - right: 0; -} -.tabs-tool { - position: absolute; - bottom: 0; - padding: 1px; - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.tabs-header-plain .tabs-tool { - padding: 0 1px; -} -.tabs-wrap { - position: relative; - left: 0; - overflow: hidden; - width: 100%; - margin: 0; - padding: 0; -} -.tabs-scrolling { - margin-left: 18px; - margin-right: 18px; -} -.tabs-disabled { - opacity: 0.3; - filter: alpha(opacity=30); -} -.tabs { - list-style-type: none; - height: 26px; - margin: 0px; - padding: 0px; - padding-left: 4px; - width: 50000px; - border-style: solid; - border-width: 0 0 1px 0; -} -.tabs li { - float: left; - display: inline-block; - margin: 0 4px -1px 0; - padding: 0; - position: relative; - border: 0; -} -.tabs li a.tabs-inner { - display: inline-block; - text-decoration: none; - margin: 0; - padding: 0 10px; - height: 25px; - line-height: 25px; - text-align: center; - white-space: nowrap; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.tabs li.tabs-selected a.tabs-inner { - font-weight: bold; - outline: none; -} -.tabs li.tabs-selected a:hover.tabs-inner { - cursor: default; - pointer: default; -} -.tabs li a.tabs-close, -.tabs-p-tool { - position: absolute; - font-size: 1px; - display: block; - height: 12px; - padding: 0; - top: 50%; - margin-top: -6px; - overflow: hidden; -} -.tabs li a.tabs-close { - width: 12px; - right: 5px; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs-p-tool { - right: 16px; -} -.tabs-p-tool a { - display: inline-block; - font-size: 1px; - width: 12px; - height: 12px; - margin: 0; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs li a:hover.tabs-close, -.tabs-p-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - cursor: hand; - cursor: pointer; -} -.tabs-with-icon { - padding-left: 18px; -} -.tabs-icon { - position: absolute; - width: 16px; - height: 16px; - left: 10px; - top: 50%; - margin-top: -8px; -} -.tabs-title { - font-size: 12px; -} -.tabs-closable { - padding-right: 8px; -} -.tabs-panels { - margin: 0px; - padding: 0px; - border-width: 1px; - border-style: solid; - border-top-width: 0; - overflow: hidden; -} -.tabs-header-bottom { - border-width: 0 1px 1px 1px; - padding: 0 0 2px 0; -} -.tabs-header-bottom .tabs { - border-width: 1px 0 0 0; -} -.tabs-header-bottom .tabs li { - margin: -1px 4px 0 0; -} -.tabs-header-bottom .tabs li a.tabs-inner { - -moz-border-radius: 0 0 5px 5px; - -webkit-border-radius: 0 0 5px 5px; - border-radius: 0 0 5px 5px; -} -.tabs-header-bottom .tabs-tool { - top: 0; -} -.tabs-header-bottom .tabs-scroller-left, -.tabs-header-bottom .tabs-scroller-right { - top: 0; - bottom: auto; -} -.tabs-panels-top { - border-width: 1px 1px 0 1px; -} -.tabs-header-left { - float: left; - border-width: 1px 0 1px 1px; - padding: 0; -} -.tabs-header-right { - float: right; - border-width: 1px 1px 1px 0; - padding: 0; -} -.tabs-header-left .tabs-wrap, -.tabs-header-right .tabs-wrap { - height: 100%; -} -.tabs-header-left .tabs { - height: 100%; - padding: 4px 0 0 2px; - border-width: 0 1px 0 0; -} -.tabs-header-right .tabs { - height: 100%; - padding: 4px 2px 0 0; - border-width: 0 0 0 1px; -} -.tabs-header-left .tabs li, -.tabs-header-right .tabs li { - display: block; - width: 100%; - position: relative; -} -.tabs-header-left .tabs li { - left: auto; - right: 0; - margin: 0 -1px 4px 0; - float: right; -} -.tabs-header-right .tabs li { - left: 0; - right: auto; - margin: 0 0 4px -1px; - float: left; -} -.tabs-justified li a.tabs-inner { - padding-left: 0; - padding-right: 0; -} -.tabs-header-left .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.tabs-header-right .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.tabs-panels-right { - float: right; - border-width: 1px 1px 1px 0; -} -.tabs-panels-left { - float: left; - border-width: 1px 0 1px 1px; -} -.tabs-header-noborder, -.tabs-panels-noborder { - border: 0px; -} -.tabs-header-plain { - border: 0px; - background: transparent; -} -.tabs-pill { - padding-bottom: 3px; -} -.tabs-header-bottom .tabs-pill { - padding-top: 3px; - padding-bottom: 0; -} -.tabs-header-left .tabs-pill { - padding-right: 3px; -} -.tabs-header-right .tabs-pill { - padding-left: 3px; -} -.tabs-header .tabs-pill li a.tabs-inner { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tabs-header-narrow, -.tabs-header-narrow .tabs-narrow { - padding: 0; -} -.tabs-narrow li, -.tabs-header-bottom .tabs-narrow li { - margin-left: 0; - margin-right: -1px; -} -.tabs-narrow li.tabs-last, -.tabs-header-bottom .tabs-narrow li.tabs-last { - margin-right: 0; -} -.tabs-header-left .tabs-narrow, -.tabs-header-right .tabs-narrow { - padding-top: 0; -} -.tabs-header-left .tabs-narrow li { - margin-bottom: -1px; - margin-right: -1px; -} -.tabs-header-left .tabs-narrow li.tabs-last, -.tabs-header-right .tabs-narrow li.tabs-last { - margin-bottom: 0; -} -.tabs-header-right .tabs-narrow li { - margin-bottom: -1px; - margin-left: -1px; -} -.tabs-scroller-left { - background: #F2F2F2 url('images/tabs_icons.png') no-repeat 1px center; -} -.tabs-scroller-right { - background: #F2F2F2 url('images/tabs_icons.png') no-repeat -15px center; -} -.tabs li a.tabs-close { - background: url('images/tabs_icons.png') no-repeat -34px center; -} -.tabs li a.tabs-inner:hover { - background: #e6e6e6; - color: #00438a; - filter: none; -} -.tabs li.tabs-selected a.tabs-inner { - background-color: #ffffff; - color: #777; - background: -webkit-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -moz-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -o-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: linear-gradient(to bottom,#ffffff 0,#ffffff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff,GradientType=0); -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -moz-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -o-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: linear-gradient(to bottom,#ffffff 0,#ffffff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff,GradientType=0); -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#ffffff 0,#ffffff 100%); - background: -moz-linear-gradient(left,#ffffff 0,#ffffff 100%); - background: -o-linear-gradient(left,#ffffff 0,#ffffff 100%); - background: linear-gradient(to right,#ffffff 0,#ffffff 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff,GradientType=1); -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#ffffff 0,#ffffff 100%); - background: -moz-linear-gradient(left,#ffffff 0,#ffffff 100%); - background: -o-linear-gradient(left,#ffffff 0,#ffffff 100%); - background: linear-gradient(to right,#ffffff 0,#ffffff 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff,GradientType=1); -} -.tabs li a.tabs-inner { - color: #777; - background-color: #F2F2F2; - background: -webkit-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: -moz-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: -o-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: linear-gradient(to bottom,#ffffff 0,#F2F2F2 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#F2F2F2,GradientType=0); -} -.tabs-header, -.tabs-tool { - background-color: #F2F2F2; -} -.tabs-header-plain { - background: transparent; -} -.tabs-header, -.tabs-scroller-left, -.tabs-scroller-right, -.tabs-tool, -.tabs, -.tabs-panels, -.tabs li a.tabs-inner, -.tabs li.tabs-selected a.tabs-inner, -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner, -.tabs-header-left .tabs li.tabs-selected a.tabs-inner, -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-color: #D4D4D4; -} -.tabs-p-tool a:hover, -.tabs li a:hover.tabs-close, -.tabs-scroller-over { - background-color: #e6e6e6; -} -.tabs li.tabs-selected a.tabs-inner { - border-bottom: 1px solid #ffffff; -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - border-top: 1px solid #ffffff; -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - border-right: 1px solid #ffffff; -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-left: 1px solid #ffffff; -} -.tabs-header .tabs-pill li.tabs-selected a.tabs-inner { - background: #0081c2; - color: #fff; - filter: none; - border-color: #D4D4D4; -} -.datagrid .panel-body { - overflow: hidden; - position: relative; -} -.datagrid-view { - position: relative; - overflow: hidden; -} -.datagrid-view1, -.datagrid-view2 { - position: absolute; - overflow: hidden; - top: 0; -} -.datagrid-view1 { - left: 0; -} -.datagrid-view2 { - right: 0; -} -.datagrid-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - opacity: 0.3; - filter: alpha(opacity=30); - display: none; -} -.datagrid-mask-msg { - position: absolute; - top: 50%; - margin-top: -20px; - padding: 10px 5px 10px 30px; - width: auto; - height: 16px; - border-width: 2px; - border-style: solid; - display: none; -} -.datagrid-sort-icon { - padding: 0; - display: none; -} -.datagrid-toolbar { - height: auto; - padding: 1px 2px; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.datagrid .datagrid-pager { - display: block; - margin: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.datagrid .datagrid-pager-top { - border-width: 0 0 1px 0; -} -.datagrid-header { - overflow: hidden; - cursor: default; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-header-inner { - float: left; - width: 10000px; -} -.datagrid-header-row, -.datagrid-row { - height: 25px; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-width: 0 1px 1px 0; - border-style: dotted; - margin: 0; - padding: 0; -} -.datagrid-cell, -.datagrid-cell-group, -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - margin: 0; - padding: 0 4px; - white-space: nowrap; - word-wrap: normal; - overflow: hidden; - height: 18px; - line-height: 18px; - font-size: 12px; -} -.datagrid-header .datagrid-cell { - height: auto; -} -.datagrid-header .datagrid-cell span { - font-size: 12px; -} -.datagrid-cell-group { - text-align: center; - text-overflow: ellipsis; -} -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - width: 30px; - text-align: center; - margin: 0; - padding: 0; -} -.datagrid-body { - margin: 0; - padding: 0; - overflow: auto; - zoom: 1; -} -.datagrid-view1 .datagrid-body-inner { - padding-bottom: 20px; -} -.datagrid-view1 .datagrid-body { - overflow: hidden; -} -.datagrid-footer { - overflow: hidden; -} -.datagrid-footer-inner { - border-width: 1px 0 0 0; - border-style: solid; - width: 10000px; - float: left; -} -.datagrid-row-editing .datagrid-cell { - height: auto; -} -.datagrid-header-check, -.datagrid-cell-check { - padding: 0; - width: 27px; - height: 18px; - font-size: 1px; - text-align: center; - overflow: hidden; -} -.datagrid-header-check input, -.datagrid-cell-check input { - margin: 0; - padding: 0; - width: 15px; - height: 18px; -} -.datagrid-resize-proxy { - position: absolute; - width: 1px; - height: 10000px; - top: 0; - cursor: e-resize; - display: none; -} -.datagrid-body .datagrid-editable { - margin: 0; - padding: 0; -} -.datagrid-body .datagrid-editable table { - width: 100%; - height: 100%; -} -.datagrid-body .datagrid-editable td { - border: 0; - margin: 0; - padding: 0; -} -.datagrid-view .datagrid-editable-input { - margin: 0; - padding: 2px 4px; - border: 1px solid #D4D4D4; - font-size: 12px; - outline-style: none; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.datagrid-sort .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -64px center; -} -.datagrid-sort-desc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -16px center; -} -.datagrid-sort-asc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat 0px center; -} -.datagrid-row-collapse { - background: url('images/datagrid_icons.png') no-repeat -48px center; -} -.datagrid-row-expand { - background: url('images/datagrid_icons.png') no-repeat -32px center; -} -.datagrid-mask-msg { - background: #ffffff url('images/loading.gif') no-repeat scroll 5px center; -} -.datagrid-header, -.datagrid-td-rownumber { - background-color: #F2F2F2; - background: -webkit-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: -moz-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: -o-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: linear-gradient(to bottom,#ffffff 0,#F2F2F2 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#F2F2F2,GradientType=0); -} -.datagrid-cell-rownumber { - color: #333; -} -.datagrid-resize-proxy { - background: #bbb; -} -.datagrid-mask { - background: #ccc; -} -.datagrid-mask-msg { - border-color: #D4D4D4; -} -.datagrid-toolbar, -.datagrid-pager { - background: #F5F5F5; -} -.datagrid-header, -.datagrid-toolbar, -.datagrid-pager, -.datagrid-footer-inner { - border-color: #e6e6e6; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-color: #ccc; -} -.datagrid-htable, -.datagrid-btable, -.datagrid-ftable { - color: #333; - border-collapse: separate; -} -.datagrid-row-alt { - background: #F5F5F5; -} -.datagrid-row-over, -.datagrid-header td.datagrid-header-over { - background: #e6e6e6; - color: #00438a; - cursor: default; -} -.datagrid-row-selected { - background: #0081c2; - color: #fff; -} -.datagrid-row-editing .textbox, -.datagrid-row-editing .textbox-text { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.propertygrid .datagrid-view1 .datagrid-body td { - padding-bottom: 1px; - border-width: 0 1px 0 0; -} -.propertygrid .datagrid-group { - height: 21px; - overflow: hidden; - border-width: 0 0 1px 0; - border-style: solid; -} -.propertygrid .datagrid-group span { - font-weight: bold; -} -.propertygrid .datagrid-view1 .datagrid-body td { - border-color: #e6e6e6; -} -.propertygrid .datagrid-view1 .datagrid-group { - border-color: #F2F2F2; -} -.propertygrid .datagrid-view2 .datagrid-group { - border-color: #e6e6e6; -} -.propertygrid .datagrid-group, -.propertygrid .datagrid-view1 .datagrid-body, -.propertygrid .datagrid-view1 .datagrid-row-over, -.propertygrid .datagrid-view1 .datagrid-row-selected { - background: #F2F2F2; -} -.datalist .datagrid-header { - border-width: 0; -} -.datalist .datagrid-group, -.m-list .m-list-group { - height: 25px; - line-height: 25px; - font-weight: bold; - overflow: hidden; - background-color: #F2F2F2; - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ccc; -} -.datalist .datagrid-group-expander { - display: none; -} -.datalist .datagrid-group-title { - padding: 0 4px; -} -.datalist .datagrid-btable { - width: 100%; - table-layout: fixed; -} -.datalist .datagrid-row td { - border-style: solid; - border-left-color: transparent; - border-right-color: transparent; - border-bottom-width: 0; -} -.datalist-lines .datagrid-row td { - border-bottom-width: 1px; -} -.datalist .datagrid-cell, -.m-list li { - width: auto; - height: auto; - padding: 2px 4px; - line-height: 18px; - position: relative; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link, -.m-list li>a { - display: block; - position: relative; - cursor: pointer; - color: #333; - text-decoration: none; - overflow: hidden; - margin: -2px -4px; - padding: 2px 4px; - padding-right: 16px; - line-height: 18px; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link::after, -.m-list li>a::after { - position: absolute; - display: block; - width: 8px; - height: 8px; - content: ''; - right: 6px; - top: 50%; - margin-top: -4px; - border-style: solid; - border-width: 1px 1px 0 0; - -ms-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); -} -.m-list { - margin: 0; - padding: 0; - list-style: none; -} -.m-list li { - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ccc; -} -.m-list li>a:hover { - background: #e6e6e6; - color: #00438a; -} -.m-list .m-list-group { - padding: 0 4px; -} -.pagination { - zoom: 1; -} -.pagination table { - float: left; - height: 30px; -} -.pagination td { - border: 0; -} -.pagination-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 3px 1px; -} -.pagination .pagination-num { - border-width: 1px; - border-style: solid; - margin: 0 2px; - padding: 2px; - width: 2em; - height: auto; -} -.pagination-page-list { - margin: 0px 6px; - padding: 1px 2px; - width: auto; - height: auto; - border-width: 1px; - border-style: solid; -} -.pagination-info { - float: right; - margin: 0 6px 0 0; - padding: 0; - height: 30px; - line-height: 30px; - font-size: 12px; -} -.pagination span { - font-size: 12px; -} -.pagination-link .l-btn-text { - width: 24px; - text-align: center; - margin: 0; -} -.pagination-first { - background: url('images/pagination_icons.png') no-repeat 0 center; -} -.pagination-prev { - background: url('images/pagination_icons.png') no-repeat -16px center; -} -.pagination-next { - background: url('images/pagination_icons.png') no-repeat -32px center; -} -.pagination-last { - background: url('images/pagination_icons.png') no-repeat -48px center; -} -.pagination-load { - background: url('images/pagination_icons.png') no-repeat -64px center; -} -.pagination-loading { - background: url('images/loading.gif') no-repeat center center; -} -.pagination-page-list, -.pagination .pagination-num { - border-color: #D4D4D4; -} -.calendar { - border-width: 1px; - border-style: solid; - padding: 1px; - overflow: hidden; -} -.calendar table { - table-layout: fixed; - border-collapse: separate; - font-size: 12px; - width: 100%; - height: 100%; -} -.calendar table td, -.calendar table th { - font-size: 12px; -} -.calendar-noborder { - border: 0; -} -.calendar-header { - position: relative; - height: 22px; -} -.calendar-title { - text-align: center; - height: 22px; -} -.calendar-title span { - position: relative; - display: inline-block; - top: 2px; - padding: 0 3px; - height: 18px; - line-height: 18px; - font-size: 12px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth, -.calendar-nextmonth, -.calendar-prevyear, -.calendar-nextyear { - position: absolute; - top: 50%; - margin-top: -7px; - width: 14px; - height: 14px; - cursor: pointer; - font-size: 1px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth { - left: 20px; - background: url('images/calendar_arrows.png') no-repeat -18px -2px; -} -.calendar-nextmonth { - right: 20px; - background: url('images/calendar_arrows.png') no-repeat -34px -2px; -} -.calendar-prevyear { - left: 3px; - background: url('images/calendar_arrows.png') no-repeat -1px -2px; -} -.calendar-nextyear { - right: 3px; - background: url('images/calendar_arrows.png') no-repeat -49px -2px; -} -.calendar-body { - position: relative; -} -.calendar-body th, -.calendar-body td { - text-align: center; -} -.calendar-day { - border: 0; - padding: 1px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-other-month { - opacity: 0.3; - filter: alpha(opacity=30); -} -.calendar-disabled { - opacity: 0.6; - filter: alpha(opacity=60); - cursor: default; -} -.calendar-menu { - position: absolute; - top: 0; - left: 0; - width: 180px; - height: 150px; - padding: 5px; - font-size: 12px; - display: none; - overflow: hidden; -} -.calendar-menu-year-inner { - text-align: center; - padding-bottom: 5px; -} -.calendar-menu-year { - width: 40px; - text-align: center; - border-width: 1px; - border-style: solid; - margin: 0; - padding: 2px; - font-weight: bold; - font-size: 12px; -} -.calendar-menu-prev, -.calendar-menu-next { - display: inline-block; - width: 21px; - height: 21px; - vertical-align: top; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-menu-prev { - margin-right: 10px; - background: url('images/calendar_arrows.png') no-repeat 2px 2px; -} -.calendar-menu-next { - margin-left: 10px; - background: url('images/calendar_arrows.png') no-repeat -45px 2px; -} -.calendar-menu-month { - text-align: center; - cursor: pointer; - font-weight: bold; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-body th, -.calendar-menu-month { - color: #808080; -} -.calendar-day { - color: #333; -} -.calendar-sunday { - color: #CC2222; -} -.calendar-saturday { - color: #00ee00; -} -.calendar-today { - color: #0000ff; -} -.calendar-menu-year { - border-color: #D4D4D4; -} -.calendar { - border-color: #D4D4D4; -} -.calendar-header { - background: #F2F2F2; -} -.calendar-body, -.calendar-menu { - background: #ffffff; -} -.calendar-body th { - background: #F5F5F5; - padding: 2px 0; -} -.calendar-hover, -.calendar-nav-hover, -.calendar-menu-hover { - background-color: #e6e6e6; - color: #00438a; -} -.calendar-hover { - border: 1px solid #ddd; - padding: 0; -} -.calendar-selected { - background-color: #0081c2; - color: #fff; - border: 1px solid #0070a9; - padding: 0; -} -.datebox-calendar-inner { - height: 180px; -} -.datebox-button { - height: 18px; - padding: 2px 5px; - text-align: center; -} -.datebox-button a { - font-size: 12px; - font-weight: bold; - text-decoration: none; - opacity: 0.6; - filter: alpha(opacity=60); -} -.datebox-button a:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.datebox-current, -.datebox-close { - float: left; -} -.datebox-close { - float: right; -} -.datebox .combo-arrow { - background-image: url('images/datebox_arrow.png'); - background-position: center center; -} -.datebox-button { - background-color: #F5F5F5; -} -.datebox-button a { - color: #444; -} -.numberbox { - border: 1px solid #D4D4D4; - margin: 0; - padding: 0 2px; - vertical-align: middle; -} -.textbox { - padding: 0; -} -.spinner { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.spinner .spinner-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0 2px; - vertical-align: baseline; -} -.spinner-arrow { - background-color: #F2F2F2; - display: inline-block; - overflow: hidden; - vertical-align: top; - margin: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - width: 18px; -} -.spinner-arrow-up, -.spinner-arrow-down { - opacity: 0.6; - filter: alpha(opacity=60); - display: block; - font-size: 1px; - width: 18px; - height: 10px; - width: 100%; - height: 50%; - color: #444; - outline-style: none; -} -.spinner-arrow-hover { - background-color: #e6e6e6; - opacity: 1.0; - filter: alpha(opacity=100); -} -.spinner-arrow-up:hover, -.spinner-arrow-down:hover { - opacity: 1.0; - filter: alpha(opacity=100); - background-color: #e6e6e6; -} -.textbox-icon-disabled .spinner-arrow-up:hover, -.textbox-icon-disabled .spinner-arrow-down:hover { - opacity: 0.6; - filter: alpha(opacity=60); - background-color: #F2F2F2; - cursor: default; -} -.spinner .textbox-icon-disabled { - opacity: 0.6; - filter: alpha(opacity=60); -} -.spinner-arrow-up { - background: url('images/spinner_arrows.png') no-repeat 1px center; -} -.spinner-arrow-down { - background: url('images/spinner_arrows.png') no-repeat -15px center; -} -.spinner { - border-color: #D4D4D4; -} -.progressbar { - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - overflow: hidden; - position: relative; -} -.progressbar-text { - text-align: center; - position: absolute; -} -.progressbar-value { - position: relative; - overflow: hidden; - width: 0; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.progressbar { - border-color: #D4D4D4; -} -.progressbar-text { - color: #333; - font-size: 12px; -} -.progressbar-value .progressbar-text { - background-color: #0081c2; - color: #fff; -} -.searchbox { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.searchbox .searchbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 0 2px; - vertical-align: top; -} -.searchbox .searchbox-prompt { - font-size: 12px; - color: #ccc; -} -.searchbox-button { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.searchbox-button-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.searchbox .l-btn-plain { - border: 0; - padding: 0; - vertical-align: top; - opacity: 0.6; - filter: alpha(opacity=60); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .l-btn-plain:hover { - border: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox a.m-btn-plain-active { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .m-btn-active { - border-width: 0 1px 0 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .textbox-button-right { - border-width: 0 0 0 1px; -} -.searchbox .textbox-button-left { - border-width: 0 1px 0 0; -} -.searchbox-button { - background: url('images/searchbox_button.png') no-repeat center center; -} -.searchbox { - border-color: #D4D4D4; - background-color: #fff; -} -.searchbox .l-btn-plain { - background: #F2F2F2; -} -.searchbox .l-btn-plain-disabled, -.searchbox .l-btn-plain-disabled:hover { - opacity: 0.5; - filter: alpha(opacity=50); -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.slider-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.slider-h { - height: 22px; -} -.slider-v { - width: 22px; -} -.slider-inner { - position: relative; - height: 6px; - top: 7px; - border-width: 1px; - border-style: solid; - border-radius: 5px; -} -.slider-handle { - position: absolute; - display: block; - outline: none; - width: 20px; - height: 20px; - top: 50%; - margin-top: -10px; - margin-left: -10px; -} -.slider-tip { - position: absolute; - display: inline-block; - line-height: 12px; - font-size: 12px; - white-space: nowrap; - top: -22px; -} -.slider-rule { - position: relative; - top: 15px; -} -.slider-rule span { - position: absolute; - display: inline-block; - font-size: 0; - height: 5px; - border-width: 0 0 0 1px; - border-style: solid; -} -.slider-rulelabel { - position: relative; - top: 20px; -} -.slider-rulelabel span { - position: absolute; - display: inline-block; - font-size: 12px; -} -.slider-v .slider-inner { - width: 6px; - left: 7px; - top: 0; - float: left; -} -.slider-v .slider-handle { - left: 50%; - margin-top: -10px; -} -.slider-v .slider-tip { - left: -10px; - margin-top: -6px; -} -.slider-v .slider-rule { - float: left; - top: 0; - left: 16px; -} -.slider-v .slider-rule span { - width: 5px; - height: 'auto'; - border-left: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.slider-v .slider-rulelabel { - float: left; - top: 0; - left: 23px; -} -.slider-handle { - background: url('images/slider_handle.png') no-repeat; -} -.slider-inner { - border-color: #D4D4D4; - background: #F2F2F2; -} -.slider-rule span { - border-color: #D4D4D4; -} -.slider-rulelabel span { - color: #333; -} -.menu { - position: absolute; - margin: 0; - padding: 2px; - border-width: 1px; - border-style: solid; - overflow: hidden; -} -.menu-inline { - position: relative; -} -.menu-item { - position: relative; - margin: 0; - padding: 0; - overflow: hidden; - white-space: nowrap; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.menu-text { - height: 20px; - line-height: 20px; - float: left; - padding-left: 28px; -} -.menu-icon { - position: absolute; - width: 16px; - height: 16px; - left: 2px; - top: 50%; - margin-top: -8px; -} -.menu-rightarrow { - position: absolute; - width: 16px; - height: 16px; - right: 0; - top: 50%; - margin-top: -8px; -} -.menu-line { - position: absolute; - left: 26px; - top: 0; - height: 2000px; - font-size: 1px; -} -.menu-sep { - margin: 3px 0px 3px 25px; - font-size: 1px; -} -.menu-noline .menu-line { - display: none; -} -.menu-noline .menu-sep { - margin-left: 0; - margin-right: 0; -} -.menu-active { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.menu-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: default; -} -.menu-text, -.menu-text span { - font-size: 12px; -} -.menu-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - background: #ccc; - -moz-box-shadow: 2px 2px 3px #cccccc; - -webkit-box-shadow: 2px 2px 3px #cccccc; - box-shadow: 2px 2px 3px #cccccc; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.menu-rightarrow { - background: url('images/menu_arrows.png') no-repeat -32px center; -} -.menu-line { - border-left: 1px solid #ccc; - border-right: 1px solid #fff; -} -.menu-sep { - border-top: 1px solid #ccc; - border-bottom: 1px solid #fff; -} -.menu { - background-color: #fff; - border-color: #e6e6e6; - color: #333; -} -.menu-content { - background: #ffffff; -} -.menu-item { - border-color: transparent; - _border-color: #fff; -} -.menu-active { - border-color: #ddd; - color: #00438a; - background: #e6e6e6; -} -.menu-active-disabled { - border-color: transparent; - background: transparent; - color: #333; -} -.m-btn-downarrow, -.s-btn-downarrow { - display: inline-block; - position: absolute; - width: 16px; - height: 16px; - font-size: 1px; - right: 0; - top: 50%; - margin-top: -8px; -} -.m-btn-active, -.s-btn-active { - background: #e6e6e6; - color: #00438a; - border: 1px solid #ddd; - filter: none; -} -.m-btn-plain-active, -.s-btn-plain-active { - background: transparent; - padding: 0; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.m-btn .l-btn-left .l-btn-text { - margin-right: 20px; -} -.m-btn .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.m-btn .l-btn-icon-right .l-btn-icon { - right: 20px; -} -.m-btn .l-btn-icon-top .l-btn-text { - margin-right: 4px; - margin-bottom: 14px; -} -.m-btn .l-btn-icon-bottom .l-btn-text { - margin-right: 4px; - margin-bottom: 34px; -} -.m-btn .l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 20px; -} -.m-btn .l-btn-icon-top .m-btn-downarrow, -.m-btn .l-btn-icon-bottom .m-btn-downarrow { - top: auto; - bottom: 0px; - left: 50%; - margin-left: -8px; -} -.m-btn-line { - display: inline-block; - position: absolute; - font-size: 1px; - display: none; -} -.m-btn .l-btn-left .m-btn-line { - right: 0; - width: 16px; - height: 500px; - border-style: solid; - border-color: #bbb; - border-width: 0 0 0 1px; -} -.m-btn .l-btn-icon-top .m-btn-line, -.m-btn .l-btn-icon-bottom .m-btn-line { - left: 0; - bottom: 0; - width: 500px; - height: 16px; - border-width: 1px 0 0 0; -} -.m-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 56px; -} -.m-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 50px; -} -.m-btn-downarrow, -.s-btn-downarrow { - background: url('images/menu_arrows.png') no-repeat 0 center; -} -.m-btn-plain-active, -.s-btn-plain-active { - border-color: #ddd; - background-color: #e6e6e6; - color: #00438a; -} -.s-btn:hover .m-btn-line, -.s-btn-active .m-btn-line, -.s-btn-plain-active .m-btn-line { - display: inline-block; -} -.l-btn:hover .s-btn-downarrow, -.s-btn-active .s-btn-downarrow, -.s-btn-plain-active .s-btn-downarrow { - border-style: solid; - border-color: #bbb; - border-width: 0 0 0 1px; -} -.messager-body { - padding: 10px; - overflow: auto; -} -.messager-button { - text-align: center; - padding: 5px; -} -.messager-button .l-btn { - width: 70px; -} -.messager-icon { - float: left; - width: 32px; - height: 32px; - margin: 0 10px 10px 0; -} -.messager-error { - background: url('images/messager_icons.png') no-repeat scroll -64px 0; -} -.messager-info { - background: url('images/messager_icons.png') no-repeat scroll 0 0; -} -.messager-question { - background: url('images/messager_icons.png') no-repeat scroll -32px 0; -} -.messager-warning { - background: url('images/messager_icons.png') no-repeat scroll -96px 0; -} -.messager-progress { - padding: 10px; -} -.messager-p-msg { - margin-bottom: 5px; -} -.messager-body .messager-input { - width: 100%; - padding: 1px 0; - border: 1px solid #D4D4D4; -} -.tree { - margin: 0; - padding: 0; - list-style-type: none; -} -.tree li { - white-space: nowrap; -} -.tree li ul { - list-style-type: none; - margin: 0; - padding: 0; -} -.tree-node { - height: 18px; - white-space: nowrap; - cursor: pointer; -} -.tree-hit { - cursor: pointer; -} -.tree-expanded, -.tree-collapsed, -.tree-folder, -.tree-file, -.tree-checkbox, -.tree-indent { - display: inline-block; - width: 16px; - height: 18px; - vertical-align: top; - overflow: hidden; -} -.tree-expanded { - background: url('images/tree_icons.png') no-repeat -18px 0px; -} -.tree-expanded-hover { - background: url('images/tree_icons.png') no-repeat -50px 0px; -} -.tree-collapsed { - background: url('images/tree_icons.png') no-repeat 0px 0px; -} -.tree-collapsed-hover { - background: url('images/tree_icons.png') no-repeat -32px 0px; -} -.tree-lines .tree-expanded, -.tree-lines .tree-root-first .tree-expanded { - background: url('images/tree_icons.png') no-repeat -144px 0; -} -.tree-lines .tree-collapsed, -.tree-lines .tree-root-first .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -128px 0; -} -.tree-lines .tree-node-last .tree-expanded, -.tree-lines .tree-root-one .tree-expanded { - background: url('images/tree_icons.png') no-repeat -80px 0; -} -.tree-lines .tree-node-last .tree-collapsed, -.tree-lines .tree-root-one .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -64px 0; -} -.tree-line { - background: url('images/tree_icons.png') no-repeat -176px 0; -} -.tree-join { - background: url('images/tree_icons.png') no-repeat -192px 0; -} -.tree-joinbottom { - background: url('images/tree_icons.png') no-repeat -160px 0; -} -.tree-folder { - background: url('images/tree_icons.png') no-repeat -208px 0; -} -.tree-folder-open { - background: url('images/tree_icons.png') no-repeat -224px 0; -} -.tree-file { - background: url('images/tree_icons.png') no-repeat -240px 0; -} -.tree-loading { - background: url('images/loading.gif') no-repeat center center; -} -.tree-checkbox0 { - background: url('images/tree_icons.png') no-repeat -208px -18px; -} -.tree-checkbox1 { - background: url('images/tree_icons.png') no-repeat -224px -18px; -} -.tree-checkbox2 { - background: url('images/tree_icons.png') no-repeat -240px -18px; -} -.tree-title { - font-size: 12px; - display: inline-block; - text-decoration: none; - vertical-align: top; - white-space: nowrap; - padding: 0 2px; - height: 18px; - line-height: 18px; -} -.tree-node-proxy { - font-size: 12px; - line-height: 20px; - padding: 0 2px 0 20px; - border-width: 1px; - border-style: solid; - z-index: 9900000; -} -.tree-dnd-icon { - display: inline-block; - position: absolute; - width: 16px; - height: 18px; - left: 2px; - top: 50%; - margin-top: -9px; -} -.tree-dnd-yes { - background: url('images/tree_icons.png') no-repeat -256px 0; -} -.tree-dnd-no { - background: url('images/tree_icons.png') no-repeat -256px -18px; -} -.tree-node-top { - border-top: 1px dotted red; -} -.tree-node-bottom { - border-bottom: 1px dotted red; -} -.tree-node-append .tree-title { - border: 1px dotted red; -} -.tree-editor { - border: 1px solid #ccc; - font-size: 12px; - height: 14px !important; - height: 18px; - line-height: 14px; - padding: 1px 2px; - width: 80px; - position: absolute; - top: 0; -} -.tree-node-proxy { - background-color: #ffffff; - color: #333; - border-color: #D4D4D4; -} -.tree-node-hover { - background: #e6e6e6; - color: #00438a; -} -.tree-node-selected { - background: #0081c2; - color: #fff; -} -.tree-node-hidden { - display: none; -} -.validatebox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; - color: #000; -} -.tooltip { - position: absolute; - display: none; - z-index: 9900000; - outline: none; - opacity: 1; - filter: alpha(opacity=100); - padding: 5px; - border-width: 1px; - border-style: solid; - border-radius: 5px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tooltip-content { - font-size: 12px; -} -.tooltip-arrow-outer, -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - line-height: 0; - font-size: 0; - border-style: solid; - border-width: 6px; - border-color: transparent; - _border-color: tomato; - _filter: chroma(color=tomato); -} -.tooltip-arrow { - display: none \9; -} -.tooltip-right .tooltip-arrow-outer { - left: 0; - top: 50%; - margin: -6px 0 0 -13px; -} -.tooltip-right .tooltip-arrow { - left: 0; - top: 50%; - margin: -6px 0 0 -12px; -} -.tooltip-left .tooltip-arrow-outer { - right: 0; - top: 50%; - margin: -6px -13px 0 0; -} -.tooltip-left .tooltip-arrow { - right: 0; - top: 50%; - margin: -6px -12px 0 0; -} -.tooltip-top .tooltip-arrow-outer { - bottom: 0; - left: 50%; - margin: 0 0 -13px -6px; -} -.tooltip-top .tooltip-arrow { - bottom: 0; - left: 50%; - margin: 0 0 -12px -6px; -} -.tooltip-bottom .tooltip-arrow-outer { - top: 0; - left: 50%; - margin: -13px 0 0 -6px; -} -.tooltip-bottom .tooltip-arrow { - top: 0; - left: 50%; - margin: -12px 0 0 -6px; -} -.tooltip { - background-color: #ffffff; - border-color: #D4D4D4; - color: #333; -} -.tooltip-right .tooltip-arrow-outer { - border-right-color: #D4D4D4; -} -.tooltip-right .tooltip-arrow { - border-right-color: #ffffff; -} -.tooltip-left .tooltip-arrow-outer { - border-left-color: #D4D4D4; -} -.tooltip-left .tooltip-arrow { - border-left-color: #ffffff; -} -.tooltip-top .tooltip-arrow-outer { - border-top-color: #D4D4D4; -} -.tooltip-top .tooltip-arrow { - border-top-color: #ffffff; -} -.tooltip-bottom .tooltip-arrow-outer { - border-bottom-color: #D4D4D4; -} -.tooltip-bottom .tooltip-arrow { - border-bottom-color: #ffffff; -} -.switchbutton { - text-decoration: none; - display: inline-block; - overflow: hidden; - vertical-align: middle; - margin: 0; - padding: 0; - cursor: pointer; - background: #bbb; - border: 1px solid #bbb; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-inner { - display: inline-block; - overflow: hidden; - position: relative; - top: -1px; - left: -1px; -} -.switchbutton-on, -.switchbutton-off, -.switchbutton-handle { - display: inline-block; - text-align: center; - height: 100%; - float: left; - font-size: 12px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-on { - background: #0081c2; - color: #fff; -} -.switchbutton-off { - background-color: #ffffff; - color: #333; -} -.switchbutton-on, -.switchbutton-reversed .switchbutton-off { - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.switchbutton-off, -.switchbutton-reversed .switchbutton-on { - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.switchbutton-handle { - position: absolute; - top: 0; - left: 50%; - background-color: #ffffff; - color: #333; - border: 1px solid #bbb; - -moz-box-shadow: 0 0 3px 0 #bbb; - -webkit-box-shadow: 0 0 3px 0 #bbb; - box-shadow: 0 0 3px 0 #bbb; -} -.switchbutton-value { - position: absolute; - top: 0; - left: -5000px; -} -.switchbutton-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.switchbutton-disabled, -.switchbutton-readonly { - cursor: default; -} -.tabs-panels { - border-color: transparent; -} -.tabs li a.tabs-inner { - border-color: transparent; - background: transparent; - filter: none; - color: #0088CC; -} -.menu-active { - background-color: #0081C2; - border-color: #0081C2; - color: #fff; -} -.menu-active-disabled { - border-color: transparent; - background: transparent; - color: #333; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/filebox.css b/vendor/FHC-vendor/easyui/themes/bootstrap/filebox.css deleted file mode 100644 index c6bac6631..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/filebox.css +++ /dev/null @@ -1,20 +0,0 @@ -.filebox .textbox-value { - vertical-align: top; - position: absolute; - top: 0; - left: -5000px; -} -.filebox-label { - display: inline-block; - position: absolute; - width: 100%; - height: 100%; - cursor: pointer; - left: 0; - top: 0; - z-index: 10; - background: url('images/blank.gif') no-repeat; -} -.l-btn-disabled .filebox-label { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/accordion_arrows.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/accordion_arrows.png deleted file mode 100644 index 720835f69..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/accordion_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/blank.gif b/vendor/FHC-vendor/easyui/themes/bootstrap/images/blank.gif deleted file mode 100644 index 1d11fa9ad..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/blank.gif and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/calendar_arrows.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/calendar_arrows.png deleted file mode 100644 index 430c4ad68..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/calendar_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/combo_arrow.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/combo_arrow.png deleted file mode 100644 index 2e59fb9f3..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/combo_arrow.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/datagrid_icons.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/datagrid_icons.png deleted file mode 100644 index 762d0ce0f..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/datagrid_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/datebox_arrow.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/datebox_arrow.png deleted file mode 100644 index 783c83357..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/datebox_arrow.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/layout_arrows.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/layout_arrows.png deleted file mode 100644 index 6f4165425..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/layout_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/linkbutton_bg.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/linkbutton_bg.png deleted file mode 100644 index fc66bd2cd..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/linkbutton_bg.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/loading.gif b/vendor/FHC-vendor/easyui/themes/bootstrap/images/loading.gif deleted file mode 100644 index 68f01d048..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/loading.gif and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/menu_arrows.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/menu_arrows.png deleted file mode 100644 index b986842e7..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/menu_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/messager_icons.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/messager_icons.png deleted file mode 100644 index 62c18c135..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/messager_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/pagination_icons.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/pagination_icons.png deleted file mode 100644 index 616f0bdd6..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/pagination_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/panel_tools.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/panel_tools.png deleted file mode 100644 index fe682ef89..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/panel_tools.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/searchbox_button.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/searchbox_button.png deleted file mode 100644 index 6dd193158..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/searchbox_button.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/slider_handle.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/slider_handle.png deleted file mode 100644 index b9802bae1..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/slider_handle.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/spinner_arrows.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/spinner_arrows.png deleted file mode 100644 index b68592de3..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/spinner_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/tabs_icons.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/tabs_icons.png deleted file mode 100644 index 4d29966d7..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/tabs_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/tree_icons.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/tree_icons.png deleted file mode 100644 index e9be4f3a9..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/tree_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/images/validatebox_warning.png b/vendor/FHC-vendor/easyui/themes/bootstrap/images/validatebox_warning.png deleted file mode 100644 index 2b3d4f05b..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/bootstrap/images/validatebox_warning.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/layout.css b/vendor/FHC-vendor/easyui/themes/bootstrap/layout.css deleted file mode 100644 index ebd38a8d9..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/layout.css +++ /dev/null @@ -1,133 +0,0 @@ -.layout { - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - z-index: 0; -} -.layout-panel { - position: absolute; - overflow: hidden; -} -.layout-body { - min-width: 1px; - min-height: 1px; -} -.layout-panel-east, -.layout-panel-west { - z-index: 2; -} -.layout-panel-north, -.layout-panel-south { - z-index: 3; -} -.layout-expand { - position: absolute; - padding: 0px; - font-size: 1px; - cursor: pointer; - z-index: 1; -} -.layout-expand .panel-header, -.layout-expand .panel-body { - background: transparent; - filter: none; - overflow: hidden; -} -.layout-expand .panel-header { - border-bottom-width: 0px; -} -.layout-expand .panel-body { - position: relative; -} -.layout-expand .panel-body .panel-icon { - margin-top: 0; - top: 0; - left: 50%; - margin-left: -8px; -} -.layout-expand-west .panel-header .panel-icon, -.layout-expand-east .panel-header .panel-icon { - display: none; -} -.layout-expand-title { - position: absolute; - top: 0; - left: 21px; - white-space: nowrap; - word-wrap: normal; - -webkit-transform: rotate(90deg); - -webkit-transform-origin: 0 0; - -moz-transform: rotate(90deg); - -moz-transform-origin: 0 0; - -o-transform: rotate(90deg); - -o-transform-origin: 0 0; - transform: rotate(90deg); - transform-origin: 0 0; -} -.layout-expand-with-icon { - top: 18px; -} -.layout-expand .panel-body-noheader .layout-expand-title, -.layout-expand .panel-body-noheader .panel-icon { - top: 5px; -} -.layout-expand .panel-body-noheader .layout-expand-with-icon { - top: 23px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - position: absolute; - font-size: 1px; - display: none; - z-index: 5; -} -.layout-split-proxy-h { - width: 5px; - cursor: e-resize; -} -.layout-split-proxy-v { - height: 5px; - cursor: n-resize; -} -.layout-mask { - position: absolute; - background: #fafafa; - filter: alpha(opacity=10); - opacity: 0.10; - z-index: 4; -} -.layout-button-up { - background: url('images/layout_arrows.png') no-repeat -16px -16px; -} -.layout-button-down { - background: url('images/layout_arrows.png') no-repeat -16px 0; -} -.layout-button-left { - background: url('images/layout_arrows.png') no-repeat 0 0; -} -.layout-button-right { - background: url('images/layout_arrows.png') no-repeat 0 -16px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - background-color: #bbb; -} -.layout-split-north { - border-bottom: 5px solid #eee; -} -.layout-split-south { - border-top: 5px solid #eee; -} -.layout-split-east { - border-left: 5px solid #eee; -} -.layout-split-west { - border-right: 5px solid #eee; -} -.layout-expand { - background-color: #F2F2F2; -} -.layout-expand-over { - background-color: #F2F2F2; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/linkbutton.css b/vendor/FHC-vendor/easyui/themes/bootstrap/linkbutton.css deleted file mode 100644 index 35ccfae56..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/linkbutton.css +++ /dev/null @@ -1,203 +0,0 @@ -.l-btn { - text-decoration: none; - display: inline-block; - overflow: hidden; - margin: 0; - padding: 0; - cursor: pointer; - outline: none; - text-align: center; - vertical-align: middle; - line-height: normal; -} -.l-btn-plain { - border-width: 0; - padding: 1px; -} -.l-btn-left { - display: inline-block; - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - vertical-align: top; -} -.l-btn-text { - display: inline-block; - vertical-align: top; - width: auto; - line-height: 24px; - font-size: 12px; - padding: 0; - margin: 0 4px; -} -.l-btn-icon { - display: inline-block; - width: 16px; - height: 16px; - line-height: 16px; - position: absolute; - top: 50%; - margin-top: -8px; - font-size: 1px; -} -.l-btn span span .l-btn-empty { - display: inline-block; - margin: 0; - width: 16px; - height: 24px; - font-size: 1px; - vertical-align: top; -} -.l-btn span .l-btn-icon-left { - padding: 0 0 0 20px; - background-position: left center; -} -.l-btn span .l-btn-icon-right { - padding: 0 20px 0 0; - background-position: right center; -} -.l-btn-icon-left .l-btn-text { - margin: 0 4px 0 24px; -} -.l-btn-icon-left .l-btn-icon { - left: 4px; -} -.l-btn-icon-right .l-btn-text { - margin: 0 24px 0 4px; -} -.l-btn-icon-right .l-btn-icon { - right: 4px; -} -.l-btn-icon-top .l-btn-text { - margin: 20px 4px 0 4px; -} -.l-btn-icon-top .l-btn-icon { - top: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-icon-bottom .l-btn-text { - margin: 0 4px 20px 4px; -} -.l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-left .l-btn-empty { - margin: 0 4px; - width: 16px; -} -.l-btn-plain:hover { - padding: 0; -} -.l-btn-focus { - outline: #0000FF dotted thin; -} -.l-btn-large .l-btn-text { - line-height: 40px; -} -.l-btn-large .l-btn-icon { - width: 32px; - height: 32px; - line-height: 32px; - margin-top: -16px; -} -.l-btn-large .l-btn-icon-left .l-btn-text { - margin-left: 40px; -} -.l-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.l-btn-large .l-btn-icon-top .l-btn-text { - margin-top: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-top .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-left .l-btn-empty { - margin: 0 4px; - width: 32px; -} -.l-btn { - color: #444; - background: #f5f5f5; - background-repeat: repeat-x; - border: 1px solid #bbb; - background: -webkit-linear-gradient(top,#ffffff 0,#e6e6e6 100%); - background: -moz-linear-gradient(top,#ffffff 0,#e6e6e6 100%); - background: -o-linear-gradient(top,#ffffff 0,#e6e6e6 100%); - background: linear-gradient(to bottom,#ffffff 0,#e6e6e6 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#e6e6e6,GradientType=0); - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn:hover { - background: #e6e6e6; - color: #00438a; - border: 1px solid #ddd; - filter: none; -} -.l-btn-plain { - background: transparent; - border-width: 0; - filter: none; -} -.l-btn-outline { - border-width: 1px; - border-color: #ddd; - padding: 0; -} -.l-btn-plain:hover { - background: #e6e6e6; - color: #00438a; - border: 1px solid #ddd; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn-disabled, -.l-btn-disabled:hover { - opacity: 0.5; - cursor: default; - background: #f5f5f5; - color: #444; - background: -webkit-linear-gradient(top,#ffffff 0,#e6e6e6 100%); - background: -moz-linear-gradient(top,#ffffff 0,#e6e6e6 100%); - background: -o-linear-gradient(top,#ffffff 0,#e6e6e6 100%); - background: linear-gradient(to bottom,#ffffff 0,#e6e6e6 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#e6e6e6,GradientType=0); -} -.l-btn-disabled .l-btn-text, -.l-btn-disabled .l-btn-icon { - filter: alpha(opacity=50); -} -.l-btn-plain-disabled, -.l-btn-plain-disabled:hover { - background: transparent; - filter: alpha(opacity=50); -} -.l-btn-selected, -.l-btn-selected:hover { - background: #ddd; - filter: none; -} -.l-btn-plain-selected, -.l-btn-plain-selected:hover { - background: #ddd; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/menu.css b/vendor/FHC-vendor/easyui/themes/bootstrap/menu.css deleted file mode 100644 index d74908f1f..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/menu.css +++ /dev/null @@ -1,119 +0,0 @@ -.menu { - position: absolute; - margin: 0; - padding: 2px; - border-width: 1px; - border-style: solid; - overflow: hidden; -} -.menu-inline { - position: relative; -} -.menu-item { - position: relative; - margin: 0; - padding: 0; - overflow: hidden; - white-space: nowrap; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.menu-text { - height: 20px; - line-height: 20px; - float: left; - padding-left: 28px; -} -.menu-icon { - position: absolute; - width: 16px; - height: 16px; - left: 2px; - top: 50%; - margin-top: -8px; -} -.menu-rightarrow { - position: absolute; - width: 16px; - height: 16px; - right: 0; - top: 50%; - margin-top: -8px; -} -.menu-line { - position: absolute; - left: 26px; - top: 0; - height: 2000px; - font-size: 1px; -} -.menu-sep { - margin: 3px 0px 3px 25px; - font-size: 1px; -} -.menu-noline .menu-line { - display: none; -} -.menu-noline .menu-sep { - margin-left: 0; - margin-right: 0; -} -.menu-active { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.menu-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: default; -} -.menu-text, -.menu-text span { - font-size: 12px; -} -.menu-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - background: #ccc; - -moz-box-shadow: 2px 2px 3px #cccccc; - -webkit-box-shadow: 2px 2px 3px #cccccc; - box-shadow: 2px 2px 3px #cccccc; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.menu-rightarrow { - background: url('images/menu_arrows.png') no-repeat -32px center; -} -.menu-line { - border-left: 1px solid #ccc; - border-right: 1px solid #fff; -} -.menu-sep { - border-top: 1px solid #ccc; - border-bottom: 1px solid #fff; -} -.menu { - background-color: #fff; - border-color: #e6e6e6; - color: #333; -} -.menu-content { - background: #ffffff; -} -.menu-item { - border-color: transparent; - _border-color: #fff; -} -.menu-active { - border-color: #ddd; - color: #00438a; - background: #e6e6e6; -} -.menu-active-disabled { - border-color: transparent; - background: transparent; - color: #333; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/menubutton.css b/vendor/FHC-vendor/easyui/themes/bootstrap/menubutton.css deleted file mode 100644 index 89ac235a7..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/menubutton.css +++ /dev/null @@ -1,94 +0,0 @@ -.m-btn-downarrow, -.s-btn-downarrow { - display: inline-block; - position: absolute; - width: 16px; - height: 16px; - font-size: 1px; - right: 0; - top: 50%; - margin-top: -8px; -} -.m-btn-active, -.s-btn-active { - background: #e6e6e6; - color: #00438a; - border: 1px solid #ddd; - filter: none; -} -.m-btn-plain-active, -.s-btn-plain-active { - background: transparent; - padding: 0; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.m-btn .l-btn-left .l-btn-text { - margin-right: 20px; -} -.m-btn .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.m-btn .l-btn-icon-right .l-btn-icon { - right: 20px; -} -.m-btn .l-btn-icon-top .l-btn-text { - margin-right: 4px; - margin-bottom: 14px; -} -.m-btn .l-btn-icon-bottom .l-btn-text { - margin-right: 4px; - margin-bottom: 34px; -} -.m-btn .l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 20px; -} -.m-btn .l-btn-icon-top .m-btn-downarrow, -.m-btn .l-btn-icon-bottom .m-btn-downarrow { - top: auto; - bottom: 0px; - left: 50%; - margin-left: -8px; -} -.m-btn-line { - display: inline-block; - position: absolute; - font-size: 1px; - display: none; -} -.m-btn .l-btn-left .m-btn-line { - right: 0; - width: 16px; - height: 500px; - border-style: solid; - border-color: #bbb; - border-width: 0 0 0 1px; -} -.m-btn .l-btn-icon-top .m-btn-line, -.m-btn .l-btn-icon-bottom .m-btn-line { - left: 0; - bottom: 0; - width: 500px; - height: 16px; - border-width: 1px 0 0 0; -} -.m-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 56px; -} -.m-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 50px; -} -.m-btn-downarrow, -.s-btn-downarrow { - background: url('images/menu_arrows.png') no-repeat 0 center; -} -.m-btn-plain-active, -.s-btn-plain-active { - border-color: #ddd; - background-color: #e6e6e6; - color: #00438a; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/messager.css b/vendor/FHC-vendor/easyui/themes/bootstrap/messager.css deleted file mode 100644 index ca59b511d..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/messager.css +++ /dev/null @@ -1,40 +0,0 @@ -.messager-body { - padding: 10px; - overflow: auto; -} -.messager-button { - text-align: center; - padding: 5px; -} -.messager-button .l-btn { - width: 70px; -} -.messager-icon { - float: left; - width: 32px; - height: 32px; - margin: 0 10px 10px 0; -} -.messager-error { - background: url('images/messager_icons.png') no-repeat scroll -64px 0; -} -.messager-info { - background: url('images/messager_icons.png') no-repeat scroll 0 0; -} -.messager-question { - background: url('images/messager_icons.png') no-repeat scroll -32px 0; -} -.messager-warning { - background: url('images/messager_icons.png') no-repeat scroll -96px 0; -} -.messager-progress { - padding: 10px; -} -.messager-p-msg { - margin-bottom: 5px; -} -.messager-body .messager-input { - width: 100%; - padding: 1px 0; - border: 1px solid #D4D4D4; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/numberbox.css b/vendor/FHC-vendor/easyui/themes/bootstrap/numberbox.css deleted file mode 100644 index f3023a7b9..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/numberbox.css +++ /dev/null @@ -1,9 +0,0 @@ -.numberbox { - border: 1px solid #D4D4D4; - margin: 0; - padding: 0 2px; - vertical-align: middle; -} -.textbox { - padding: 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/pagination.css b/vendor/FHC-vendor/easyui/themes/bootstrap/pagination.css deleted file mode 100644 index 02c2d7ecf..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/pagination.css +++ /dev/null @@ -1,71 +0,0 @@ -.pagination { - zoom: 1; -} -.pagination table { - float: left; - height: 30px; -} -.pagination td { - border: 0; -} -.pagination-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 3px 1px; -} -.pagination .pagination-num { - border-width: 1px; - border-style: solid; - margin: 0 2px; - padding: 2px; - width: 2em; - height: auto; -} -.pagination-page-list { - margin: 0px 6px; - padding: 1px 2px; - width: auto; - height: auto; - border-width: 1px; - border-style: solid; -} -.pagination-info { - float: right; - margin: 0 6px 0 0; - padding: 0; - height: 30px; - line-height: 30px; - font-size: 12px; -} -.pagination span { - font-size: 12px; -} -.pagination-link .l-btn-text { - width: 24px; - text-align: center; - margin: 0; -} -.pagination-first { - background: url('images/pagination_icons.png') no-repeat 0 center; -} -.pagination-prev { - background: url('images/pagination_icons.png') no-repeat -16px center; -} -.pagination-next { - background: url('images/pagination_icons.png') no-repeat -32px center; -} -.pagination-last { - background: url('images/pagination_icons.png') no-repeat -48px center; -} -.pagination-load { - background: url('images/pagination_icons.png') no-repeat -64px center; -} -.pagination-loading { - background: url('images/loading.gif') no-repeat center center; -} -.pagination-page-list, -.pagination .pagination-num { - border-color: #D4D4D4; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/panel.css b/vendor/FHC-vendor/easyui/themes/bootstrap/panel.css deleted file mode 100644 index a200052c0..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/panel.css +++ /dev/null @@ -1,142 +0,0 @@ -.panel { - overflow: hidden; - text-align: left; - margin: 0; - border: 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.panel-header, -.panel-body { - border-width: 1px; - border-style: solid; -} -.panel-header { - padding: 5px; - position: relative; -} -.panel-title { - background: url('images/blank.gif') no-repeat; -} -.panel-header-noborder { - border-width: 0 0 1px 0; -} -.panel-body { - overflow: auto; - border-top-width: 0; - padding: 0; -} -.panel-body-noheader { - border-top-width: 1px; -} -.panel-body-noborder { - border-width: 0px; -} -.panel-body-nobottom { - border-bottom-width: 0; -} -.panel-with-icon { - padding-left: 18px; -} -.panel-icon, -.panel-tool { - position: absolute; - top: 50%; - margin-top: -8px; - height: 16px; - overflow: hidden; -} -.panel-icon { - left: 5px; - width: 16px; -} -.panel-tool { - right: 5px; - width: auto; -} -.panel-tool a { - display: inline-block; - width: 16px; - height: 16px; - opacity: 0.6; - filter: alpha(opacity=60); - margin: 0 0 0 2px; - vertical-align: top; -} -.panel-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - background-color: #e6e6e6; - -moz-border-radius: 3px 3px 3px 3px; - -webkit-border-radius: 3px 3px 3px 3px; - border-radius: 3px 3px 3px 3px; -} -.panel-loading { - padding: 11px 0px 10px 30px; -} -.panel-noscroll { - overflow: hidden; -} -.panel-fit, -.panel-fit body { - height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: hidden; -} -.panel-loading { - background: url('images/loading.gif') no-repeat 10px 10px; -} -.panel-tool-close { - background: url('images/panel_tools.png') no-repeat -16px 0px; -} -.panel-tool-min { - background: url('images/panel_tools.png') no-repeat 0px 0px; -} -.panel-tool-max { - background: url('images/panel_tools.png') no-repeat 0px -16px; -} -.panel-tool-restore { - background: url('images/panel_tools.png') no-repeat -16px -16px; -} -.panel-tool-collapse { - background: url('images/panel_tools.png') no-repeat -32px 0; -} -.panel-tool-expand { - background: url('images/panel_tools.png') no-repeat -32px -16px; -} -.panel-header, -.panel-body { - border-color: #D4D4D4; -} -.panel-header { - background-color: #F2F2F2; - background: -webkit-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: -moz-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: -o-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: linear-gradient(to bottom,#ffffff 0,#F2F2F2 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#F2F2F2,GradientType=0); -} -.panel-body { - background-color: #ffffff; - color: #333; - font-size: 12px; -} -.panel-title { - font-size: 12px; - font-weight: bold; - color: #777; - height: 16px; - line-height: 16px; -} -.panel-footer { - border: 1px solid #D4D4D4; - overflow: hidden; - background: #F5F5F5; -} -.panel-footer-noborder { - border-width: 1px 0 0 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/progressbar.css b/vendor/FHC-vendor/easyui/themes/bootstrap/progressbar.css deleted file mode 100644 index c660f0e4b..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/progressbar.css +++ /dev/null @@ -1,32 +0,0 @@ -.progressbar { - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - overflow: hidden; - position: relative; -} -.progressbar-text { - text-align: center; - position: absolute; -} -.progressbar-value { - position: relative; - overflow: hidden; - width: 0; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.progressbar { - border-color: #D4D4D4; -} -.progressbar-text { - color: #333; - font-size: 12px; -} -.progressbar-value .progressbar-text { - background-color: #0081c2; - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/propertygrid.css b/vendor/FHC-vendor/easyui/themes/bootstrap/propertygrid.css deleted file mode 100644 index abf87d6a8..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/propertygrid.css +++ /dev/null @@ -1,28 +0,0 @@ -.propertygrid .datagrid-view1 .datagrid-body td { - padding-bottom: 1px; - border-width: 0 1px 0 0; -} -.propertygrid .datagrid-group { - height: 21px; - overflow: hidden; - border-width: 0 0 1px 0; - border-style: solid; -} -.propertygrid .datagrid-group span { - font-weight: bold; -} -.propertygrid .datagrid-view1 .datagrid-body td { - border-color: #e6e6e6; -} -.propertygrid .datagrid-view1 .datagrid-group { - border-color: #F2F2F2; -} -.propertygrid .datagrid-view2 .datagrid-group { - border-color: #e6e6e6; -} -.propertygrid .datagrid-group, -.propertygrid .datagrid-view1 .datagrid-body, -.propertygrid .datagrid-view1 .datagrid-row-over, -.propertygrid .datagrid-view1 .datagrid-row-selected { - background: #F2F2F2; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/searchbox.css b/vendor/FHC-vendor/easyui/themes/bootstrap/searchbox.css deleted file mode 100644 index a56a088da..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/searchbox.css +++ /dev/null @@ -1,90 +0,0 @@ -.searchbox { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.searchbox .searchbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 0 2px; - vertical-align: top; -} -.searchbox .searchbox-prompt { - font-size: 12px; - color: #ccc; -} -.searchbox-button { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.searchbox-button-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.searchbox .l-btn-plain { - border: 0; - padding: 0; - vertical-align: top; - opacity: 0.6; - filter: alpha(opacity=60); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .l-btn-plain:hover { - border: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox a.m-btn-plain-active { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .m-btn-active { - border-width: 0 1px 0 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .textbox-button-right { - border-width: 0 0 0 1px; -} -.searchbox .textbox-button-left { - border-width: 0 1px 0 0; -} -.searchbox-button { - background: url('images/searchbox_button.png') no-repeat center center; -} -.searchbox { - border-color: #D4D4D4; - background-color: #fff; -} -.searchbox .l-btn-plain { - background: #F2F2F2; -} -.searchbox .l-btn-plain-disabled, -.searchbox .l-btn-plain-disabled:hover { - opacity: 0.5; - filter: alpha(opacity=50); -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/slider.css b/vendor/FHC-vendor/easyui/themes/bootstrap/slider.css deleted file mode 100644 index b58d8de55..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/slider.css +++ /dev/null @@ -1,101 +0,0 @@ -.slider-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.slider-h { - height: 22px; -} -.slider-v { - width: 22px; -} -.slider-inner { - position: relative; - height: 6px; - top: 7px; - border-width: 1px; - border-style: solid; - border-radius: 5px; -} -.slider-handle { - position: absolute; - display: block; - outline: none; - width: 20px; - height: 20px; - top: 50%; - margin-top: -10px; - margin-left: -10px; -} -.slider-tip { - position: absolute; - display: inline-block; - line-height: 12px; - font-size: 12px; - white-space: nowrap; - top: -22px; -} -.slider-rule { - position: relative; - top: 15px; -} -.slider-rule span { - position: absolute; - display: inline-block; - font-size: 0; - height: 5px; - border-width: 0 0 0 1px; - border-style: solid; -} -.slider-rulelabel { - position: relative; - top: 20px; -} -.slider-rulelabel span { - position: absolute; - display: inline-block; - font-size: 12px; -} -.slider-v .slider-inner { - width: 6px; - left: 7px; - top: 0; - float: left; -} -.slider-v .slider-handle { - left: 50%; - margin-top: -10px; -} -.slider-v .slider-tip { - left: -10px; - margin-top: -6px; -} -.slider-v .slider-rule { - float: left; - top: 0; - left: 16px; -} -.slider-v .slider-rule span { - width: 5px; - height: 'auto'; - border-left: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.slider-v .slider-rulelabel { - float: left; - top: 0; - left: 23px; -} -.slider-handle { - background: url('images/slider_handle.png') no-repeat; -} -.slider-inner { - border-color: #D4D4D4; - background: #F2F2F2; -} -.slider-rule span { - border-color: #D4D4D4; -} -.slider-rulelabel span { - color: #333; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/spinner.css b/vendor/FHC-vendor/easyui/themes/bootstrap/spinner.css deleted file mode 100644 index abdef0e3d..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/spinner.css +++ /dev/null @@ -1,72 +0,0 @@ -.spinner { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.spinner .spinner-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0 2px; - vertical-align: baseline; -} -.spinner-arrow { - background-color: #F2F2F2; - display: inline-block; - overflow: hidden; - vertical-align: top; - margin: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - width: 18px; -} -.spinner-arrow-up, -.spinner-arrow-down { - opacity: 0.6; - filter: alpha(opacity=60); - display: block; - font-size: 1px; - width: 18px; - height: 10px; - width: 100%; - height: 50%; - color: #444; - outline-style: none; -} -.spinner-arrow-hover { - background-color: #e6e6e6; - opacity: 1.0; - filter: alpha(opacity=100); -} -.spinner-arrow-up:hover, -.spinner-arrow-down:hover { - opacity: 1.0; - filter: alpha(opacity=100); - background-color: #e6e6e6; -} -.textbox-icon-disabled .spinner-arrow-up:hover, -.textbox-icon-disabled .spinner-arrow-down:hover { - opacity: 0.6; - filter: alpha(opacity=60); - background-color: #F2F2F2; - cursor: default; -} -.spinner .textbox-icon-disabled { - opacity: 0.6; - filter: alpha(opacity=60); -} -.spinner-arrow-up { - background: url('images/spinner_arrows.png') no-repeat 1px center; -} -.spinner-arrow-down { - background: url('images/spinner_arrows.png') no-repeat -15px center; -} -.spinner { - border-color: #D4D4D4; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/splitbutton.css b/vendor/FHC-vendor/easyui/themes/bootstrap/splitbutton.css deleted file mode 100644 index bf8645332..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/splitbutton.css +++ /dev/null @@ -1,12 +0,0 @@ -.s-btn:hover .m-btn-line, -.s-btn-active .m-btn-line, -.s-btn-plain-active .m-btn-line { - display: inline-block; -} -.l-btn:hover .s-btn-downarrow, -.s-btn-active .s-btn-downarrow, -.s-btn-plain-active .s-btn-downarrow { - border-style: solid; - border-color: #bbb; - border-width: 0 0 0 1px; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/switchbutton.css b/vendor/FHC-vendor/easyui/themes/bootstrap/switchbutton.css deleted file mode 100644 index 38803aa0d..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/switchbutton.css +++ /dev/null @@ -1,77 +0,0 @@ -.switchbutton { - text-decoration: none; - display: inline-block; - overflow: hidden; - vertical-align: middle; - margin: 0; - padding: 0; - cursor: pointer; - background: #bbb; - border: 1px solid #bbb; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-inner { - display: inline-block; - overflow: hidden; - position: relative; - top: -1px; - left: -1px; -} -.switchbutton-on, -.switchbutton-off, -.switchbutton-handle { - display: inline-block; - text-align: center; - height: 100%; - float: left; - font-size: 12px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-on { - background: #0081c2; - color: #fff; -} -.switchbutton-off { - background-color: #ffffff; - color: #333; -} -.switchbutton-on, -.switchbutton-reversed .switchbutton-off { - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.switchbutton-off, -.switchbutton-reversed .switchbutton-on { - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.switchbutton-handle { - position: absolute; - top: 0; - left: 50%; - background-color: #ffffff; - color: #333; - border: 1px solid #bbb; - -moz-box-shadow: 0 0 3px 0 #bbb; - -webkit-box-shadow: 0 0 3px 0 #bbb; - box-shadow: 0 0 3px 0 #bbb; -} -.switchbutton-value { - position: absolute; - top: 0; - left: -5000px; -} -.switchbutton-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.switchbutton-disabled, -.switchbutton-readonly { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/tabs.css b/vendor/FHC-vendor/easyui/themes/bootstrap/tabs.css deleted file mode 100644 index c06a4aab4..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/tabs.css +++ /dev/null @@ -1,413 +0,0 @@ -.tabs-container { - overflow: hidden; -} -.tabs-header { - border-width: 1px; - border-style: solid; - border-bottom-width: 0; - position: relative; - padding: 0; - padding-top: 2px; - overflow: hidden; -} -.tabs-scroller-left, -.tabs-scroller-right { - position: absolute; - top: auto; - bottom: 0; - width: 18px; - font-size: 1px; - display: none; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.tabs-scroller-left { - left: 0; -} -.tabs-scroller-right { - right: 0; -} -.tabs-tool { - position: absolute; - bottom: 0; - padding: 1px; - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.tabs-header-plain .tabs-tool { - padding: 0 1px; -} -.tabs-wrap { - position: relative; - left: 0; - overflow: hidden; - width: 100%; - margin: 0; - padding: 0; -} -.tabs-scrolling { - margin-left: 18px; - margin-right: 18px; -} -.tabs-disabled { - opacity: 0.3; - filter: alpha(opacity=30); -} -.tabs { - list-style-type: none; - height: 26px; - margin: 0px; - padding: 0px; - padding-left: 4px; - width: 50000px; - border-style: solid; - border-width: 0 0 1px 0; -} -.tabs li { - float: left; - display: inline-block; - margin: 0 4px -1px 0; - padding: 0; - position: relative; - border: 0; -} -.tabs li a.tabs-inner { - display: inline-block; - text-decoration: none; - margin: 0; - padding: 0 10px; - height: 25px; - line-height: 25px; - text-align: center; - white-space: nowrap; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.tabs li.tabs-selected a.tabs-inner { - font-weight: bold; - outline: none; -} -.tabs li.tabs-selected a:hover.tabs-inner { - cursor: default; - pointer: default; -} -.tabs li a.tabs-close, -.tabs-p-tool { - position: absolute; - font-size: 1px; - display: block; - height: 12px; - padding: 0; - top: 50%; - margin-top: -6px; - overflow: hidden; -} -.tabs li a.tabs-close { - width: 12px; - right: 5px; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs-p-tool { - right: 16px; -} -.tabs-p-tool a { - display: inline-block; - font-size: 1px; - width: 12px; - height: 12px; - margin: 0; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs li a:hover.tabs-close, -.tabs-p-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - cursor: hand; - cursor: pointer; -} -.tabs-with-icon { - padding-left: 18px; -} -.tabs-icon { - position: absolute; - width: 16px; - height: 16px; - left: 10px; - top: 50%; - margin-top: -8px; -} -.tabs-title { - font-size: 12px; -} -.tabs-closable { - padding-right: 8px; -} -.tabs-panels { - margin: 0px; - padding: 0px; - border-width: 1px; - border-style: solid; - border-top-width: 0; - overflow: hidden; -} -.tabs-header-bottom { - border-width: 0 1px 1px 1px; - padding: 0 0 2px 0; -} -.tabs-header-bottom .tabs { - border-width: 1px 0 0 0; -} -.tabs-header-bottom .tabs li { - margin: -1px 4px 0 0; -} -.tabs-header-bottom .tabs li a.tabs-inner { - -moz-border-radius: 0 0 5px 5px; - -webkit-border-radius: 0 0 5px 5px; - border-radius: 0 0 5px 5px; -} -.tabs-header-bottom .tabs-tool { - top: 0; -} -.tabs-header-bottom .tabs-scroller-left, -.tabs-header-bottom .tabs-scroller-right { - top: 0; - bottom: auto; -} -.tabs-panels-top { - border-width: 1px 1px 0 1px; -} -.tabs-header-left { - float: left; - border-width: 1px 0 1px 1px; - padding: 0; -} -.tabs-header-right { - float: right; - border-width: 1px 1px 1px 0; - padding: 0; -} -.tabs-header-left .tabs-wrap, -.tabs-header-right .tabs-wrap { - height: 100%; -} -.tabs-header-left .tabs { - height: 100%; - padding: 4px 0 0 2px; - border-width: 0 1px 0 0; -} -.tabs-header-right .tabs { - height: 100%; - padding: 4px 2px 0 0; - border-width: 0 0 0 1px; -} -.tabs-header-left .tabs li, -.tabs-header-right .tabs li { - display: block; - width: 100%; - position: relative; -} -.tabs-header-left .tabs li { - left: auto; - right: 0; - margin: 0 -1px 4px 0; - float: right; -} -.tabs-header-right .tabs li { - left: 0; - right: auto; - margin: 0 0 4px -1px; - float: left; -} -.tabs-justified li a.tabs-inner { - padding-left: 0; - padding-right: 0; -} -.tabs-header-left .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.tabs-header-right .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.tabs-panels-right { - float: right; - border-width: 1px 1px 1px 0; -} -.tabs-panels-left { - float: left; - border-width: 1px 0 1px 1px; -} -.tabs-header-noborder, -.tabs-panels-noborder { - border: 0px; -} -.tabs-header-plain { - border: 0px; - background: transparent; -} -.tabs-pill { - padding-bottom: 3px; -} -.tabs-header-bottom .tabs-pill { - padding-top: 3px; - padding-bottom: 0; -} -.tabs-header-left .tabs-pill { - padding-right: 3px; -} -.tabs-header-right .tabs-pill { - padding-left: 3px; -} -.tabs-header .tabs-pill li a.tabs-inner { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tabs-header-narrow, -.tabs-header-narrow .tabs-narrow { - padding: 0; -} -.tabs-narrow li, -.tabs-header-bottom .tabs-narrow li { - margin-left: 0; - margin-right: -1px; -} -.tabs-narrow li.tabs-last, -.tabs-header-bottom .tabs-narrow li.tabs-last { - margin-right: 0; -} -.tabs-header-left .tabs-narrow, -.tabs-header-right .tabs-narrow { - padding-top: 0; -} -.tabs-header-left .tabs-narrow li { - margin-bottom: -1px; - margin-right: -1px; -} -.tabs-header-left .tabs-narrow li.tabs-last, -.tabs-header-right .tabs-narrow li.tabs-last { - margin-bottom: 0; -} -.tabs-header-right .tabs-narrow li { - margin-bottom: -1px; - margin-left: -1px; -} -.tabs-scroller-left { - background: #F2F2F2 url('images/tabs_icons.png') no-repeat 1px center; -} -.tabs-scroller-right { - background: #F2F2F2 url('images/tabs_icons.png') no-repeat -15px center; -} -.tabs li a.tabs-close { - background: url('images/tabs_icons.png') no-repeat -34px center; -} -.tabs li a.tabs-inner:hover { - background: #e6e6e6; - color: #00438a; - filter: none; -} -.tabs li.tabs-selected a.tabs-inner { - background-color: #ffffff; - color: #777; - background: -webkit-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -moz-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -o-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: linear-gradient(to bottom,#ffffff 0,#ffffff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff,GradientType=0); -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -moz-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -o-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: linear-gradient(to bottom,#ffffff 0,#ffffff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff,GradientType=0); -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#ffffff 0,#ffffff 100%); - background: -moz-linear-gradient(left,#ffffff 0,#ffffff 100%); - background: -o-linear-gradient(left,#ffffff 0,#ffffff 100%); - background: linear-gradient(to right,#ffffff 0,#ffffff 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff,GradientType=1); -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#ffffff 0,#ffffff 100%); - background: -moz-linear-gradient(left,#ffffff 0,#ffffff 100%); - background: -o-linear-gradient(left,#ffffff 0,#ffffff 100%); - background: linear-gradient(to right,#ffffff 0,#ffffff 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff,GradientType=1); -} -.tabs li a.tabs-inner { - color: #777; - background-color: #F2F2F2; - background: -webkit-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: -moz-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: -o-linear-gradient(top,#ffffff 0,#F2F2F2 100%); - background: linear-gradient(to bottom,#ffffff 0,#F2F2F2 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#F2F2F2,GradientType=0); -} -.tabs-header, -.tabs-tool { - background-color: #F2F2F2; -} -.tabs-header-plain { - background: transparent; -} -.tabs-header, -.tabs-scroller-left, -.tabs-scroller-right, -.tabs-tool, -.tabs, -.tabs-panels, -.tabs li a.tabs-inner, -.tabs li.tabs-selected a.tabs-inner, -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner, -.tabs-header-left .tabs li.tabs-selected a.tabs-inner, -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-color: #D4D4D4; -} -.tabs-p-tool a:hover, -.tabs li a:hover.tabs-close, -.tabs-scroller-over { - background-color: #e6e6e6; -} -.tabs li.tabs-selected a.tabs-inner { - border-bottom: 1px solid #ffffff; -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - border-top: 1px solid #ffffff; -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - border-right: 1px solid #ffffff; -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-left: 1px solid #ffffff; -} -.tabs-header .tabs-pill li.tabs-selected a.tabs-inner { - background: #0081c2; - color: #fff; - filter: none; - border-color: #D4D4D4; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/textbox.css b/vendor/FHC-vendor/easyui/themes/bootstrap/textbox.css deleted file mode 100644 index 5110137c9..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/textbox.css +++ /dev/null @@ -1,90 +0,0 @@ -.textbox { - position: relative; - border: 1px solid #D4D4D4; - background-color: #fff; - vertical-align: middle; - display: inline-block; - overflow: hidden; - white-space: nowrap; - margin: 0; - padding: 0; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox .textbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 4px; - white-space: normal; - vertical-align: top; - outline-style: none; - resize: none; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox textarea.textbox-text { - white-space: pre-wrap; -} -.textbox .textbox-prompt { - font-size: 12px; - color: #aaa; -} -.textbox .textbox-button, -.textbox .textbox-button:hover { - position: absolute; - top: 0; - padding: 0; - vertical-align: top; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.textbox-button-right, -.textbox-button-right:hover { - border-width: 0 0 0 1px; -} -.textbox-button-left, -.textbox-button-left:hover { - border-width: 0 1px 0 0; -} -.textbox-addon { - position: absolute; - top: 0; -} -.textbox-icon { - display: inline-block; - width: 18px; - height: 20px; - overflow: hidden; - vertical-align: top; - background-position: center center; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); - text-decoration: none; - outline-style: none; -} -.textbox-icon-disabled, -.textbox-icon-readonly { - cursor: default; -} -.textbox-icon:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.textbox-icon-disabled:hover { - opacity: 0.6; - filter: alpha(opacity=60); -} -.textbox-focused { - -moz-box-shadow: 0 0 3px 0 #D4D4D4; - -webkit-box-shadow: 0 0 3px 0 #D4D4D4; - box-shadow: 0 0 3px 0 #D4D4D4; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/tooltip.css b/vendor/FHC-vendor/easyui/themes/bootstrap/tooltip.css deleted file mode 100644 index ed9fe1c25..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/tooltip.css +++ /dev/null @@ -1,103 +0,0 @@ -.tooltip { - position: absolute; - display: none; - z-index: 9900000; - outline: none; - opacity: 1; - filter: alpha(opacity=100); - padding: 5px; - border-width: 1px; - border-style: solid; - border-radius: 5px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tooltip-content { - font-size: 12px; -} -.tooltip-arrow-outer, -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - line-height: 0; - font-size: 0; - border-style: solid; - border-width: 6px; - border-color: transparent; - _border-color: tomato; - _filter: chroma(color=tomato); -} -.tooltip-arrow { - display: none \9; -} -.tooltip-right .tooltip-arrow-outer { - left: 0; - top: 50%; - margin: -6px 0 0 -13px; -} -.tooltip-right .tooltip-arrow { - left: 0; - top: 50%; - margin: -6px 0 0 -12px; -} -.tooltip-left .tooltip-arrow-outer { - right: 0; - top: 50%; - margin: -6px -13px 0 0; -} -.tooltip-left .tooltip-arrow { - right: 0; - top: 50%; - margin: -6px -12px 0 0; -} -.tooltip-top .tooltip-arrow-outer { - bottom: 0; - left: 50%; - margin: 0 0 -13px -6px; -} -.tooltip-top .tooltip-arrow { - bottom: 0; - left: 50%; - margin: 0 0 -12px -6px; -} -.tooltip-bottom .tooltip-arrow-outer { - top: 0; - left: 50%; - margin: -13px 0 0 -6px; -} -.tooltip-bottom .tooltip-arrow { - top: 0; - left: 50%; - margin: -12px 0 0 -6px; -} -.tooltip { - background-color: #ffffff; - border-color: #D4D4D4; - color: #333; -} -.tooltip-right .tooltip-arrow-outer { - border-right-color: #D4D4D4; -} -.tooltip-right .tooltip-arrow { - border-right-color: #ffffff; -} -.tooltip-left .tooltip-arrow-outer { - border-left-color: #D4D4D4; -} -.tooltip-left .tooltip-arrow { - border-left-color: #ffffff; -} -.tooltip-top .tooltip-arrow-outer { - border-top-color: #D4D4D4; -} -.tooltip-top .tooltip-arrow { - border-top-color: #ffffff; -} -.tooltip-bottom .tooltip-arrow-outer { - border-bottom-color: #D4D4D4; -} -.tooltip-bottom .tooltip-arrow { - border-bottom-color: #ffffff; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/tree.css b/vendor/FHC-vendor/easyui/themes/bootstrap/tree.css deleted file mode 100644 index c9e76a1dd..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/tree.css +++ /dev/null @@ -1,160 +0,0 @@ -.tree { - margin: 0; - padding: 0; - list-style-type: none; -} -.tree li { - white-space: nowrap; -} -.tree li ul { - list-style-type: none; - margin: 0; - padding: 0; -} -.tree-node { - height: 18px; - white-space: nowrap; - cursor: pointer; -} -.tree-hit { - cursor: pointer; -} -.tree-expanded, -.tree-collapsed, -.tree-folder, -.tree-file, -.tree-checkbox, -.tree-indent { - display: inline-block; - width: 16px; - height: 18px; - vertical-align: top; - overflow: hidden; -} -.tree-expanded { - background: url('images/tree_icons.png') no-repeat -18px 0px; -} -.tree-expanded-hover { - background: url('images/tree_icons.png') no-repeat -50px 0px; -} -.tree-collapsed { - background: url('images/tree_icons.png') no-repeat 0px 0px; -} -.tree-collapsed-hover { - background: url('images/tree_icons.png') no-repeat -32px 0px; -} -.tree-lines .tree-expanded, -.tree-lines .tree-root-first .tree-expanded { - background: url('images/tree_icons.png') no-repeat -144px 0; -} -.tree-lines .tree-collapsed, -.tree-lines .tree-root-first .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -128px 0; -} -.tree-lines .tree-node-last .tree-expanded, -.tree-lines .tree-root-one .tree-expanded { - background: url('images/tree_icons.png') no-repeat -80px 0; -} -.tree-lines .tree-node-last .tree-collapsed, -.tree-lines .tree-root-one .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -64px 0; -} -.tree-line { - background: url('images/tree_icons.png') no-repeat -176px 0; -} -.tree-join { - background: url('images/tree_icons.png') no-repeat -192px 0; -} -.tree-joinbottom { - background: url('images/tree_icons.png') no-repeat -160px 0; -} -.tree-folder { - background: url('images/tree_icons.png') no-repeat -208px 0; -} -.tree-folder-open { - background: url('images/tree_icons.png') no-repeat -224px 0; -} -.tree-file { - background: url('images/tree_icons.png') no-repeat -240px 0; -} -.tree-loading { - background: url('images/loading.gif') no-repeat center center; -} -.tree-checkbox0 { - background: url('images/tree_icons.png') no-repeat -208px -18px; -} -.tree-checkbox1 { - background: url('images/tree_icons.png') no-repeat -224px -18px; -} -.tree-checkbox2 { - background: url('images/tree_icons.png') no-repeat -240px -18px; -} -.tree-title { - font-size: 12px; - display: inline-block; - text-decoration: none; - vertical-align: top; - white-space: nowrap; - padding: 0 2px; - height: 18px; - line-height: 18px; -} -.tree-node-proxy { - font-size: 12px; - line-height: 20px; - padding: 0 2px 0 20px; - border-width: 1px; - border-style: solid; - z-index: 9900000; -} -.tree-dnd-icon { - display: inline-block; - position: absolute; - width: 16px; - height: 18px; - left: 2px; - top: 50%; - margin-top: -9px; -} -.tree-dnd-yes { - background: url('images/tree_icons.png') no-repeat -256px 0; -} -.tree-dnd-no { - background: url('images/tree_icons.png') no-repeat -256px -18px; -} -.tree-node-top { - border-top: 1px dotted red; -} -.tree-node-bottom { - border-bottom: 1px dotted red; -} -.tree-node-append .tree-title { - border: 1px dotted red; -} -.tree-editor { - border: 1px solid #ccc; - font-size: 12px; - height: 14px !important; - height: 18px; - line-height: 14px; - padding: 1px 2px; - width: 80px; - position: absolute; - top: 0; -} -.tree-node-proxy { - background-color: #ffffff; - color: #333; - border-color: #D4D4D4; -} -.tree-node-hover { - background: #e6e6e6; - color: #00438a; -} -.tree-node-selected { - background: #0081c2; - color: #fff; -} -.tree-node-hidden { - display: none; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/validatebox.css b/vendor/FHC-vendor/easyui/themes/bootstrap/validatebox.css deleted file mode 100644 index 1fc3ad64e..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/validatebox.css +++ /dev/null @@ -1,5 +0,0 @@ -.validatebox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; - color: #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/bootstrap/window.css b/vendor/FHC-vendor/easyui/themes/bootstrap/window.css deleted file mode 100644 index dcbd62436..000000000 --- a/vendor/FHC-vendor/easyui/themes/bootstrap/window.css +++ /dev/null @@ -1,94 +0,0 @@ -.window { - overflow: hidden; - padding: 5px; - border-width: 1px; - border-style: solid; -} -.window .window-header { - background: transparent; - padding: 0px 0px 6px 0px; -} -.window .window-body { - border-width: 1px; - border-style: solid; - border-top-width: 0px; -} -.window .window-body-noheader { - border-top-width: 1px; -} -.window .panel-body-nobottom { - border-bottom-width: 0; -} -.window .window-header .panel-icon, -.window .window-header .panel-tool { - top: 50%; - margin-top: -11px; -} -.window .window-header .panel-icon { - left: 1px; -} -.window .window-header .panel-tool { - right: 1px; -} -.window .window-header .panel-with-icon { - padding-left: 18px; -} -.window-proxy { - position: absolute; - overflow: hidden; -} -.window-proxy-mask { - position: absolute; - filter: alpha(opacity=5); - opacity: 0.05; -} -.window-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - filter: alpha(opacity=40); - opacity: 0.40; - font-size: 1px; - overflow: hidden; -} -.window, -.window-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.window-shadow { - background: #ccc; - -moz-box-shadow: 2px 2px 3px #cccccc; - -webkit-box-shadow: 2px 2px 3px #cccccc; - box-shadow: 2px 2px 3px #cccccc; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.window, -.window .window-body { - border-color: #D4D4D4; -} -.window { - background-color: #F2F2F2; - background: -webkit-linear-gradient(top,#ffffff 0,#F2F2F2 20%); - background: -moz-linear-gradient(top,#ffffff 0,#F2F2F2 20%); - background: -o-linear-gradient(top,#ffffff 0,#F2F2F2 20%); - background: linear-gradient(to bottom,#ffffff 0,#F2F2F2 20%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#F2F2F2,GradientType=0); -} -.window-proxy { - border: 1px dashed #D4D4D4; -} -.window-proxy-mask, -.window-mask { - background: #ccc; -} -.window .panel-footer { - border: 1px solid #D4D4D4; - position: relative; - top: -1px; -} diff --git a/vendor/FHC-vendor/easyui/themes/color.css b/vendor/FHC-vendor/easyui/themes/color.css deleted file mode 100644 index 9f811596e..000000000 --- a/vendor/FHC-vendor/easyui/themes/color.css +++ /dev/null @@ -1,112 +0,0 @@ -.c1,.c1:hover{ - color: #fff; - border-color: #3c8b3c; - background: #4cae4c; - background: -webkit-linear-gradient(top,#4cae4c 0,#449d44 100%); - background: -moz-linear-gradient(top,#4cae4c 0,#449d44 100%); - background: -o-linear-gradient(top,#4cae4c 0,#449d44 100%); - background: linear-gradient(to bottom,#4cae4c 0,#449d44 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4cae4c,endColorstr=#449d44,GradientType=0); -} -a.c1:hover{ - background: #449d44; - filter: none; -} -.c2,.c2:hover{ - color: #fff; - border-color: #5f5f5f; - background: #747474; - background: -webkit-linear-gradient(top,#747474 0,#676767 100%); - background: -moz-linear-gradient(top,#747474 0,#676767 100%); - background: -o-linear-gradient(top,#747474 0,#676767 100%); - background: linear-gradient(to bottom,#747474 0,#676767 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#747474,endColorstr=#676767,GradientType=0); -} -a.c2:hover{ - background: #676767; - filter: none; -} -.c3,.c3:hover{ - color: #333; - border-color: #ff8080; - background: #ffb3b3; - background: -webkit-linear-gradient(top,#ffb3b3 0,#ff9999 100%); - background: -moz-linear-gradient(top,#ffb3b3 0,#ff9999 100%); - background: -o-linear-gradient(top,#ffb3b3 0,#ff9999 100%); - background: linear-gradient(to bottom,#ffb3b3 0,#ff9999 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffb3b3,endColorstr=#ff9999,GradientType=0); -} -a.c3:hover{ - background: #ff9999; - filter: none; -} -.c4,.c4:hover{ - color: #333; - border-color: #52d689; - background: #b8eecf; - background: -webkit-linear-gradient(top,#b8eecf 0,#a4e9c1 100%); - background: -moz-linear-gradient(top,#b8eecf 0,#a4e9c1 100%); - background: -o-linear-gradient(top,#b8eecf 0,#a4e9c1 100%); - background: linear-gradient(to bottom,#b8eecf 0,#a4e9c1 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b8eecf,endColorstr=#a4e9c1,GradientType=0); -} -a.c4:hover{ - background: #a4e9c1; - filter: none; -} -.c5,.c5:hover{ - color: #fff; - border-color: #b52b27; - background: #d84f4b; - background: -webkit-linear-gradient(top,#d84f4b 0,#c9302c 100%); - background: -moz-linear-gradient(top,#d84f4b 0,#c9302c 100%); - background: -o-linear-gradient(top,#d84f4b 0,#c9302c 100%); - background: linear-gradient(to bottom,#d84f4b 0,#c9302c 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#d84f4b,endColorstr=#c9302c,GradientType=0); -} -a.c5:hover{ - background: #c9302c; - filter: none; -} -.c6,.c6:hover{ - color: #fff; - border-color: #1f637b; - background: #2984a4; - background: -webkit-linear-gradient(top,#2984a4 0,#24748f 100%); - background: -moz-linear-gradient(top,#2984a4 0,#24748f 100%); - background: -o-linear-gradient(top,#2984a4 0,#24748f 100%); - background: linear-gradient(to bottom,#2984a4 0,#24748f 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#2984a4,endColorstr=#24748f,GradientType=0); -} -a.c6:hover{ - background: #24748f; - filter: none; -} -.c7,.c7:hover{ - color: #333; - border-color: #e68900; - background: #ffab2e; - background: -webkit-linear-gradient(top,#ffab2e 0,#ff9900 100%); - background: -moz-linear-gradient(top,#ffab2e 0,#ff9900 100%); - background: -o-linear-gradient(top,#ffab2e 0,#ff9900 100%); - background: linear-gradient(to bottom,#ffab2e 0,#ff9900 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffab2e,endColorstr=#ff9900,GradientType=0); -} -a.c7:hover{ - background: #ff9900; - filter: none; -} -.c8,.c8:hover{ - color: #fff; - border-color: #4b72a4; - background: #698cba; - background: -webkit-linear-gradient(top,#698cba 0,#577eb2 100%); - background: -moz-linear-gradient(top,#698cba 0,#577eb2 100%); - background: -o-linear-gradient(top,#698cba 0,#577eb2 100%); - background: linear-gradient(to bottom,#698cba 0,#577eb2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#698cba,endColorstr=#577eb2,GradientType=0); -} -a.c8:hover{ - background: #577eb2; - filter: none; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/accordion.css b/vendor/FHC-vendor/easyui/themes/default/accordion.css deleted file mode 100644 index 40696c710..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/accordion.css +++ /dev/null @@ -1,41 +0,0 @@ -.accordion { - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.accordion .accordion-header { - border-width: 0 0 1px; - cursor: pointer; -} -.accordion .accordion-body { - border-width: 0 0 1px; -} -.accordion-noborder { - border-width: 0; -} -.accordion-noborder .accordion-header { - border-width: 0 0 1px; -} -.accordion-noborder .accordion-body { - border-width: 0 0 1px; -} -.accordion-collapse { - background: url('images/accordion_arrows.png') no-repeat 0 0; -} -.accordion-expand { - background: url('images/accordion_arrows.png') no-repeat -16px 0; -} -.accordion { - background: #ffffff; - border-color: #95B8E7; -} -.accordion .accordion-header { - background: #E0ECFF; - filter: none; -} -.accordion .accordion-header-selected { - background: #ffe48d; -} -.accordion .accordion-header-selected .panel-title { - color: #000000; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/calendar.css b/vendor/FHC-vendor/easyui/themes/default/calendar.css deleted file mode 100644 index 633462705..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/calendar.css +++ /dev/null @@ -1,197 +0,0 @@ -.calendar { - border-width: 1px; - border-style: solid; - padding: 1px; - overflow: hidden; -} -.calendar table { - table-layout: fixed; - border-collapse: separate; - font-size: 12px; - width: 100%; - height: 100%; -} -.calendar table td, -.calendar table th { - font-size: 12px; -} -.calendar-noborder { - border: 0; -} -.calendar-header { - position: relative; - height: 22px; -} -.calendar-title { - text-align: center; - height: 22px; -} -.calendar-title span { - position: relative; - display: inline-block; - top: 2px; - padding: 0 3px; - height: 18px; - line-height: 18px; - font-size: 12px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth, -.calendar-nextmonth, -.calendar-prevyear, -.calendar-nextyear { - position: absolute; - top: 50%; - margin-top: -7px; - width: 14px; - height: 14px; - cursor: pointer; - font-size: 1px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth { - left: 20px; - background: url('images/calendar_arrows.png') no-repeat -18px -2px; -} -.calendar-nextmonth { - right: 20px; - background: url('images/calendar_arrows.png') no-repeat -34px -2px; -} -.calendar-prevyear { - left: 3px; - background: url('images/calendar_arrows.png') no-repeat -1px -2px; -} -.calendar-nextyear { - right: 3px; - background: url('images/calendar_arrows.png') no-repeat -49px -2px; -} -.calendar-body { - position: relative; -} -.calendar-body th, -.calendar-body td { - text-align: center; -} -.calendar-day { - border: 0; - padding: 1px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-other-month { - opacity: 0.3; - filter: alpha(opacity=30); -} -.calendar-disabled { - opacity: 0.6; - filter: alpha(opacity=60); - cursor: default; -} -.calendar-menu { - position: absolute; - top: 0; - left: 0; - width: 180px; - height: 150px; - padding: 5px; - font-size: 12px; - display: none; - overflow: hidden; -} -.calendar-menu-year-inner { - text-align: center; - padding-bottom: 5px; -} -.calendar-menu-year { - width: 40px; - text-align: center; - border-width: 1px; - border-style: solid; - margin: 0; - padding: 2px; - font-weight: bold; - font-size: 12px; -} -.calendar-menu-prev, -.calendar-menu-next { - display: inline-block; - width: 21px; - height: 21px; - vertical-align: top; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-menu-prev { - margin-right: 10px; - background: url('images/calendar_arrows.png') no-repeat 2px 2px; -} -.calendar-menu-next { - margin-left: 10px; - background: url('images/calendar_arrows.png') no-repeat -45px 2px; -} -.calendar-menu-month { - text-align: center; - cursor: pointer; - font-weight: bold; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-body th, -.calendar-menu-month { - color: #4d4d4d; -} -.calendar-day { - color: #000000; -} -.calendar-sunday { - color: #CC2222; -} -.calendar-saturday { - color: #00ee00; -} -.calendar-today { - color: #0000ff; -} -.calendar-menu-year { - border-color: #95B8E7; -} -.calendar { - border-color: #95B8E7; -} -.calendar-header { - background: #E0ECFF; -} -.calendar-body, -.calendar-menu { - background: #ffffff; -} -.calendar-body th { - background: #F4F4F4; - padding: 2px 0; -} -.calendar-hover, -.calendar-nav-hover, -.calendar-menu-hover { - background-color: #eaf2ff; - color: #000000; -} -.calendar-hover { - border: 1px solid #b7d2ff; - padding: 0; -} -.calendar-selected { - background-color: #ffe48d; - color: #000000; - border: 1px solid #ffab3f; - padding: 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/combo.css b/vendor/FHC-vendor/easyui/themes/default/combo.css deleted file mode 100644 index a4937aab1..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/combo.css +++ /dev/null @@ -1,60 +0,0 @@ -.combo { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.combo .combo-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0px 2px; - vertical-align: baseline; -} -.combo-arrow { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.combo-arrow-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.combo-panel { - overflow: auto; -} -.combo-arrow { - background: url('images/combo_arrow.png') no-repeat center center; -} -.combo-panel { - background-color: #ffffff; -} -.combo { - border-color: #95B8E7; - background-color: #fff; -} -.combo-arrow { - background-color: #E0ECFF; -} -.combo-arrow-hover { - background-color: #eaf2ff; -} -.combo-arrow:hover { - background-color: #eaf2ff; -} -.combo .textbox-icon-disabled:hover { - cursor: default; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/combobox.css b/vendor/FHC-vendor/easyui/themes/default/combobox.css deleted file mode 100644 index 72eb42301..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/combobox.css +++ /dev/null @@ -1,24 +0,0 @@ -.combobox-item, -.combobox-group { - font-size: 12px; - padding: 3px; - padding-right: 0px; -} -.combobox-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.combobox-gitem { - padding-left: 10px; -} -.combobox-group { - font-weight: bold; -} -.combobox-item-hover { - background-color: #eaf2ff; - color: #000000; -} -.combobox-item-selected { - background-color: #ffe48d; - color: #000000; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/datagrid.css b/vendor/FHC-vendor/easyui/themes/default/datagrid.css deleted file mode 100644 index 9c351d97e..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/datagrid.css +++ /dev/null @@ -1,276 +0,0 @@ -.datagrid .panel-body { - overflow: hidden; - position: relative; -} -.datagrid-view { - position: relative; - overflow: hidden; -} -.datagrid-view1, -.datagrid-view2 { - position: absolute; - overflow: hidden; - top: 0; -} -.datagrid-view1 { - left: 0; -} -.datagrid-view2 { - right: 0; -} -.datagrid-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - opacity: 0.3; - filter: alpha(opacity=30); - display: none; -} -.datagrid-mask-msg { - position: absolute; - top: 50%; - margin-top: -20px; - padding: 10px 5px 10px 30px; - width: auto; - height: 16px; - border-width: 2px; - border-style: solid; - display: none; -} -.datagrid-sort-icon { - padding: 0; - display: none; -} -.datagrid-toolbar { - height: auto; - padding: 1px 2px; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.datagrid .datagrid-pager { - display: block; - margin: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.datagrid .datagrid-pager-top { - border-width: 0 0 1px 0; -} -.datagrid-header { - overflow: hidden; - cursor: default; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-header-inner { - float: left; - width: 10000px; -} -.datagrid-header-row, -.datagrid-row { - height: 25px; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-width: 0 1px 1px 0; - border-style: dotted; - margin: 0; - padding: 0; -} -.datagrid-cell, -.datagrid-cell-group, -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - margin: 0; - padding: 0 4px; - white-space: nowrap; - word-wrap: normal; - overflow: hidden; - height: 18px; - line-height: 18px; - font-size: 12px; -} -.datagrid-header .datagrid-cell { - height: auto; -} -.datagrid-header .datagrid-cell span { - font-size: 12px; -} -.datagrid-cell-group { - text-align: center; - text-overflow: ellipsis; -} -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - width: 30px; - text-align: center; - margin: 0; - padding: 0; -} -.datagrid-body { - margin: 0; - padding: 0; - overflow: auto; - zoom: 1; -} -.datagrid-view1 .datagrid-body-inner { - padding-bottom: 20px; -} -.datagrid-view1 .datagrid-body { - overflow: hidden; -} -.datagrid-footer { - overflow: hidden; -} -.datagrid-footer-inner { - border-width: 1px 0 0 0; - border-style: solid; - width: 10000px; - float: left; -} -.datagrid-row-editing .datagrid-cell { - height: auto; -} -.datagrid-header-check, -.datagrid-cell-check { - padding: 0; - width: 27px; - height: 18px; - font-size: 1px; - text-align: center; - overflow: hidden; -} -.datagrid-header-check input, -.datagrid-cell-check input { - margin: 0; - padding: 0; - width: 15px; - height: 18px; -} -.datagrid-resize-proxy { - position: absolute; - width: 1px; - height: 10000px; - top: 0; - cursor: e-resize; - display: none; -} -.datagrid-body .datagrid-editable { - margin: 0; - padding: 0; -} -.datagrid-body .datagrid-editable table { - width: 100%; - height: 100%; -} -.datagrid-body .datagrid-editable td { - border: 0; - margin: 0; - padding: 0; -} -.datagrid-view .datagrid-editable-input { - margin: 0; - padding: 2px 4px; - border: 1px solid #95B8E7; - font-size: 12px; - outline-style: none; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.datagrid-sort .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -64px center; -} -.datagrid-sort-desc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -16px center; -} -.datagrid-sort-asc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat 0px center; -} -.datagrid-row-collapse { - background: url('images/datagrid_icons.png') no-repeat -48px center; -} -.datagrid-row-expand { - background: url('images/datagrid_icons.png') no-repeat -32px center; -} -.datagrid-mask-msg { - background: #ffffff url('images/loading.gif') no-repeat scroll 5px center; -} -.datagrid-header, -.datagrid-td-rownumber { - background-color: #efefef; - background: -webkit-linear-gradient(top,#F9F9F9 0,#efefef 100%); - background: -moz-linear-gradient(top,#F9F9F9 0,#efefef 100%); - background: -o-linear-gradient(top,#F9F9F9 0,#efefef 100%); - background: linear-gradient(to bottom,#F9F9F9 0,#efefef 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F9F9F9,endColorstr=#efefef,GradientType=0); -} -.datagrid-cell-rownumber { - color: #000000; -} -.datagrid-resize-proxy { - background: #aac5e7; -} -.datagrid-mask { - background: #ccc; -} -.datagrid-mask-msg { - border-color: #95B8E7; -} -.datagrid-toolbar, -.datagrid-pager { - background: #F4F4F4; -} -.datagrid-header, -.datagrid-toolbar, -.datagrid-pager, -.datagrid-footer-inner { - border-color: #dddddd; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-color: #ccc; -} -.datagrid-htable, -.datagrid-btable, -.datagrid-ftable { - color: #000000; - border-collapse: separate; -} -.datagrid-row-alt { - background: #fafafa; -} -.datagrid-row-over, -.datagrid-header td.datagrid-header-over { - background: #eaf2ff; - color: #000000; - cursor: default; -} -.datagrid-row-selected { - background: #ffe48d; - color: #000000; -} -.datagrid-row-editing .textbox, -.datagrid-row-editing .textbox-text { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/datalist.css b/vendor/FHC-vendor/easyui/themes/default/datalist.css deleted file mode 100644 index eedd25bc0..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/datalist.css +++ /dev/null @@ -1,95 +0,0 @@ -.datalist .datagrid-header { - border-width: 0; -} -.datalist .datagrid-group, -.m-list .m-list-group { - height: 25px; - line-height: 25px; - font-weight: bold; - overflow: hidden; - background-color: #efefef; - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ccc; -} -.datalist .datagrid-group-expander { - display: none; -} -.datalist .datagrid-group-title { - padding: 0 4px; -} -.datalist .datagrid-btable { - width: 100%; - table-layout: fixed; -} -.datalist .datagrid-row td { - border-style: solid; - border-left-color: transparent; - border-right-color: transparent; - border-bottom-width: 0; -} -.datalist-lines .datagrid-row td { - border-bottom-width: 1px; -} -.datalist .datagrid-cell, -.m-list li { - width: auto; - height: auto; - padding: 2px 4px; - line-height: 18px; - position: relative; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link, -.m-list li>a { - display: block; - position: relative; - cursor: pointer; - color: #000000; - text-decoration: none; - overflow: hidden; - margin: -2px -4px; - padding: 2px 4px; - padding-right: 16px; - line-height: 18px; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link::after, -.m-list li>a::after { - position: absolute; - display: block; - width: 8px; - height: 8px; - content: ''; - right: 6px; - top: 50%; - margin-top: -4px; - border-style: solid; - border-width: 1px 1px 0 0; - -ms-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); -} -.m-list { - margin: 0; - padding: 0; - list-style: none; -} -.m-list li { - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ccc; -} -.m-list li>a:hover { - background: #eaf2ff; - color: #000000; -} -.m-list .m-list-group { - padding: 0 4px; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/datebox.css b/vendor/FHC-vendor/easyui/themes/default/datebox.css deleted file mode 100644 index 6225a0d2b..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/datebox.css +++ /dev/null @@ -1,36 +0,0 @@ -.datebox-calendar-inner { - height: 180px; -} -.datebox-button { - height: 18px; - padding: 2px 5px; - text-align: center; -} -.datebox-button a { - font-size: 12px; - font-weight: bold; - text-decoration: none; - opacity: 0.6; - filter: alpha(opacity=60); -} -.datebox-button a:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.datebox-current, -.datebox-close { - float: left; -} -.datebox-close { - float: right; -} -.datebox .combo-arrow { - background-image: url('images/datebox_arrow.png'); - background-position: center center; -} -.datebox-button { - background-color: #F4F4F4; -} -.datebox-button a { - color: #444; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/dialog.css b/vendor/FHC-vendor/easyui/themes/default/dialog.css deleted file mode 100644 index c3510e66f..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/dialog.css +++ /dev/null @@ -1,32 +0,0 @@ -.dialog-content { - overflow: auto; -} -.dialog-toolbar { - padding: 2px 5px; -} -.dialog-tool-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.dialog-button { - padding: 5px; - text-align: right; -} -.dialog-button .l-btn { - margin-left: 5px; -} -.dialog-toolbar, -.dialog-button { - background: #F4F4F4; - border-width: 1px; - border-style: solid; -} -.dialog-toolbar { - border-color: #95B8E7 #95B8E7 #dddddd #95B8E7; -} -.dialog-button { - border-color: #dddddd #95B8E7 #95B8E7 #95B8E7; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/easyui.css b/vendor/FHC-vendor/easyui/themes/default/easyui.css deleted file mode 100644 index 4e21c2763..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/easyui.css +++ /dev/null @@ -1,2869 +0,0 @@ -.panel { - overflow: hidden; - text-align: left; - margin: 0; - border: 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.panel-header, -.panel-body { - border-width: 1px; - border-style: solid; -} -.panel-header { - padding: 5px; - position: relative; -} -.panel-title { - background: url('images/blank.gif') no-repeat; -} -.panel-header-noborder { - border-width: 0 0 1px 0; -} -.panel-body { - overflow: auto; - border-top-width: 0; - padding: 0; -} -.panel-body-noheader { - border-top-width: 1px; -} -.panel-body-noborder { - border-width: 0px; -} -.panel-body-nobottom { - border-bottom-width: 0; -} -.panel-with-icon { - padding-left: 18px; -} -.panel-icon, -.panel-tool { - position: absolute; - top: 50%; - margin-top: -8px; - height: 16px; - overflow: hidden; -} -.panel-icon { - left: 5px; - width: 16px; -} -.panel-tool { - right: 5px; - width: auto; -} -.panel-tool a { - display: inline-block; - width: 16px; - height: 16px; - opacity: 0.6; - filter: alpha(opacity=60); - margin: 0 0 0 2px; - vertical-align: top; -} -.panel-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - background-color: #eaf2ff; - -moz-border-radius: 3px 3px 3px 3px; - -webkit-border-radius: 3px 3px 3px 3px; - border-radius: 3px 3px 3px 3px; -} -.panel-loading { - padding: 11px 0px 10px 30px; -} -.panel-noscroll { - overflow: hidden; -} -.panel-fit, -.panel-fit body { - height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: hidden; -} -.panel-loading { - background: url('images/loading.gif') no-repeat 10px 10px; -} -.panel-tool-close { - background: url('images/panel_tools.png') no-repeat -16px 0px; -} -.panel-tool-min { - background: url('images/panel_tools.png') no-repeat 0px 0px; -} -.panel-tool-max { - background: url('images/panel_tools.png') no-repeat 0px -16px; -} -.panel-tool-restore { - background: url('images/panel_tools.png') no-repeat -16px -16px; -} -.panel-tool-collapse { - background: url('images/panel_tools.png') no-repeat -32px 0; -} -.panel-tool-expand { - background: url('images/panel_tools.png') no-repeat -32px -16px; -} -.panel-header, -.panel-body { - border-color: #95B8E7; -} -.panel-header { - background-color: #E0ECFF; - background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%); - background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%); - background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%); - background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0); -} -.panel-body { - background-color: #ffffff; - color: #000000; - font-size: 12px; -} -.panel-title { - font-size: 12px; - font-weight: bold; - color: #0E2D5F; - height: 16px; - line-height: 16px; -} -.panel-footer { - border: 1px solid #95B8E7; - overflow: hidden; - background: #F4F4F4; -} -.panel-footer-noborder { - border-width: 1px 0 0 0; -} -.accordion { - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.accordion .accordion-header { - border-width: 0 0 1px; - cursor: pointer; -} -.accordion .accordion-body { - border-width: 0 0 1px; -} -.accordion-noborder { - border-width: 0; -} -.accordion-noborder .accordion-header { - border-width: 0 0 1px; -} -.accordion-noborder .accordion-body { - border-width: 0 0 1px; -} -.accordion-collapse { - background: url('images/accordion_arrows.png') no-repeat 0 0; -} -.accordion-expand { - background: url('images/accordion_arrows.png') no-repeat -16px 0; -} -.accordion { - background: #ffffff; - border-color: #95B8E7; -} -.accordion .accordion-header { - background: #E0ECFF; - filter: none; -} -.accordion .accordion-header-selected { - background: #ffe48d; -} -.accordion .accordion-header-selected .panel-title { - color: #000000; -} -.window { - overflow: hidden; - padding: 5px; - border-width: 1px; - border-style: solid; -} -.window .window-header { - background: transparent; - padding: 0px 0px 6px 0px; -} -.window .window-body { - border-width: 1px; - border-style: solid; - border-top-width: 0px; -} -.window .window-body-noheader { - border-top-width: 1px; -} -.window .panel-body-nobottom { - border-bottom-width: 0; -} -.window .window-header .panel-icon, -.window .window-header .panel-tool { - top: 50%; - margin-top: -11px; -} -.window .window-header .panel-icon { - left: 1px; -} -.window .window-header .panel-tool { - right: 1px; -} -.window .window-header .panel-with-icon { - padding-left: 18px; -} -.window-proxy { - position: absolute; - overflow: hidden; -} -.window-proxy-mask { - position: absolute; - filter: alpha(opacity=5); - opacity: 0.05; -} -.window-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - filter: alpha(opacity=40); - opacity: 0.40; - font-size: 1px; - overflow: hidden; -} -.window, -.window-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.window-shadow { - background: #ccc; - -moz-box-shadow: 2px 2px 3px #cccccc; - -webkit-box-shadow: 2px 2px 3px #cccccc; - box-shadow: 2px 2px 3px #cccccc; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.window, -.window .window-body { - border-color: #95B8E7; -} -.window { - background-color: #E0ECFF; - background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%); - background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%); - background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%); - background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 20%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0); -} -.window-proxy { - border: 1px dashed #95B8E7; -} -.window-proxy-mask, -.window-mask { - background: #ccc; -} -.window .panel-footer { - border: 1px solid #95B8E7; - position: relative; - top: -1px; -} -.dialog-content { - overflow: auto; -} -.dialog-toolbar { - padding: 2px 5px; -} -.dialog-tool-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.dialog-button { - padding: 5px; - text-align: right; -} -.dialog-button .l-btn { - margin-left: 5px; -} -.dialog-toolbar, -.dialog-button { - background: #F4F4F4; - border-width: 1px; - border-style: solid; -} -.dialog-toolbar { - border-color: #95B8E7 #95B8E7 #dddddd #95B8E7; -} -.dialog-button { - border-color: #dddddd #95B8E7 #95B8E7 #95B8E7; -} -.l-btn { - text-decoration: none; - display: inline-block; - overflow: hidden; - margin: 0; - padding: 0; - cursor: pointer; - outline: none; - text-align: center; - vertical-align: middle; - line-height: normal; -} -.l-btn-plain { - border-width: 0; - padding: 1px; -} -.l-btn-left { - display: inline-block; - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - vertical-align: top; -} -.l-btn-text { - display: inline-block; - vertical-align: top; - width: auto; - line-height: 24px; - font-size: 12px; - padding: 0; - margin: 0 4px; -} -.l-btn-icon { - display: inline-block; - width: 16px; - height: 16px; - line-height: 16px; - position: absolute; - top: 50%; - margin-top: -8px; - font-size: 1px; -} -.l-btn span span .l-btn-empty { - display: inline-block; - margin: 0; - width: 16px; - height: 24px; - font-size: 1px; - vertical-align: top; -} -.l-btn span .l-btn-icon-left { - padding: 0 0 0 20px; - background-position: left center; -} -.l-btn span .l-btn-icon-right { - padding: 0 20px 0 0; - background-position: right center; -} -.l-btn-icon-left .l-btn-text { - margin: 0 4px 0 24px; -} -.l-btn-icon-left .l-btn-icon { - left: 4px; -} -.l-btn-icon-right .l-btn-text { - margin: 0 24px 0 4px; -} -.l-btn-icon-right .l-btn-icon { - right: 4px; -} -.l-btn-icon-top .l-btn-text { - margin: 20px 4px 0 4px; -} -.l-btn-icon-top .l-btn-icon { - top: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-icon-bottom .l-btn-text { - margin: 0 4px 20px 4px; -} -.l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-left .l-btn-empty { - margin: 0 4px; - width: 16px; -} -.l-btn-plain:hover { - padding: 0; -} -.l-btn-focus { - outline: #0000FF dotted thin; -} -.l-btn-large .l-btn-text { - line-height: 40px; -} -.l-btn-large .l-btn-icon { - width: 32px; - height: 32px; - line-height: 32px; - margin-top: -16px; -} -.l-btn-large .l-btn-icon-left .l-btn-text { - margin-left: 40px; -} -.l-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.l-btn-large .l-btn-icon-top .l-btn-text { - margin-top: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-top .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-left .l-btn-empty { - margin: 0 4px; - width: 32px; -} -.l-btn { - color: #444; - background: #fafafa; - background-repeat: repeat-x; - border: 1px solid #bbb; - background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0); - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn:hover { - background: #eaf2ff; - color: #000000; - border: 1px solid #b7d2ff; - filter: none; -} -.l-btn-plain { - background: transparent; - border-width: 0; - filter: none; -} -.l-btn-outline { - border-width: 1px; - border-color: #b7d2ff; - padding: 0; -} -.l-btn-plain:hover { - background: #eaf2ff; - color: #000000; - border: 1px solid #b7d2ff; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn-disabled, -.l-btn-disabled:hover { - opacity: 0.5; - cursor: default; - background: #fafafa; - color: #444; - background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0); -} -.l-btn-disabled .l-btn-text, -.l-btn-disabled .l-btn-icon { - filter: alpha(opacity=50); -} -.l-btn-plain-disabled, -.l-btn-plain-disabled:hover { - background: transparent; - filter: alpha(opacity=50); -} -.l-btn-selected, -.l-btn-selected:hover { - background: #ddd; - filter: none; -} -.l-btn-plain-selected, -.l-btn-plain-selected:hover { - background: #ddd; -} -.textbox { - position: relative; - border: 1px solid #95B8E7; - background-color: #fff; - vertical-align: middle; - display: inline-block; - overflow: hidden; - white-space: nowrap; - margin: 0; - padding: 0; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox .textbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 4px; - white-space: normal; - vertical-align: top; - outline-style: none; - resize: none; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox textarea.textbox-text { - white-space: pre-wrap; -} -.textbox .textbox-prompt { - font-size: 12px; - color: #aaa; -} -.textbox .textbox-button, -.textbox .textbox-button:hover { - position: absolute; - top: 0; - padding: 0; - vertical-align: top; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.textbox-button-right, -.textbox-button-right:hover { - border-width: 0 0 0 1px; -} -.textbox-button-left, -.textbox-button-left:hover { - border-width: 0 1px 0 0; -} -.textbox-addon { - position: absolute; - top: 0; -} -.textbox-icon { - display: inline-block; - width: 18px; - height: 20px; - overflow: hidden; - vertical-align: top; - background-position: center center; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); - text-decoration: none; - outline-style: none; -} -.textbox-icon-disabled, -.textbox-icon-readonly { - cursor: default; -} -.textbox-icon:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.textbox-icon-disabled:hover { - opacity: 0.6; - filter: alpha(opacity=60); -} -.textbox-focused { - -moz-box-shadow: 0 0 3px 0 #95B8E7; - -webkit-box-shadow: 0 0 3px 0 #95B8E7; - box-shadow: 0 0 3px 0 #95B8E7; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.filebox .textbox-value { - vertical-align: top; - position: absolute; - top: 0; - left: -5000px; -} -.filebox-label { - display: inline-block; - position: absolute; - width: 100%; - height: 100%; - cursor: pointer; - left: 0; - top: 0; - z-index: 10; - background: url('images/blank.gif') no-repeat; -} -.l-btn-disabled .filebox-label { - cursor: default; -} -.combo { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.combo .combo-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0px 2px; - vertical-align: baseline; -} -.combo-arrow { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.combo-arrow-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.combo-panel { - overflow: auto; -} -.combo-arrow { - background: url('images/combo_arrow.png') no-repeat center center; -} -.combo-panel { - background-color: #ffffff; -} -.combo { - border-color: #95B8E7; - background-color: #fff; -} -.combo-arrow { - background-color: #E0ECFF; -} -.combo-arrow-hover { - background-color: #eaf2ff; -} -.combo-arrow:hover { - background-color: #eaf2ff; -} -.combo .textbox-icon-disabled:hover { - cursor: default; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.combobox-item, -.combobox-group { - font-size: 12px; - padding: 3px; - padding-right: 0px; -} -.combobox-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.combobox-gitem { - padding-left: 10px; -} -.combobox-group { - font-weight: bold; -} -.combobox-item-hover { - background-color: #eaf2ff; - color: #000000; -} -.combobox-item-selected { - background-color: #ffe48d; - color: #000000; -} -.layout { - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - z-index: 0; -} -.layout-panel { - position: absolute; - overflow: hidden; -} -.layout-body { - min-width: 1px; - min-height: 1px; -} -.layout-panel-east, -.layout-panel-west { - z-index: 2; -} -.layout-panel-north, -.layout-panel-south { - z-index: 3; -} -.layout-expand { - position: absolute; - padding: 0px; - font-size: 1px; - cursor: pointer; - z-index: 1; -} -.layout-expand .panel-header, -.layout-expand .panel-body { - background: transparent; - filter: none; - overflow: hidden; -} -.layout-expand .panel-header { - border-bottom-width: 0px; -} -.layout-expand .panel-body { - position: relative; -} -.layout-expand .panel-body .panel-icon { - margin-top: 0; - top: 0; - left: 50%; - margin-left: -8px; -} -.layout-expand-west .panel-header .panel-icon, -.layout-expand-east .panel-header .panel-icon { - display: none; -} -.layout-expand-title { - position: absolute; - top: 0; - left: 21px; - white-space: nowrap; - word-wrap: normal; - -webkit-transform: rotate(90deg); - -webkit-transform-origin: 0 0; - -moz-transform: rotate(90deg); - -moz-transform-origin: 0 0; - -o-transform: rotate(90deg); - -o-transform-origin: 0 0; - transform: rotate(90deg); - transform-origin: 0 0; -} -.layout-expand-with-icon { - top: 18px; -} -.layout-expand .panel-body-noheader .layout-expand-title, -.layout-expand .panel-body-noheader .panel-icon { - top: 5px; -} -.layout-expand .panel-body-noheader .layout-expand-with-icon { - top: 23px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - position: absolute; - font-size: 1px; - display: none; - z-index: 5; -} -.layout-split-proxy-h { - width: 5px; - cursor: e-resize; -} -.layout-split-proxy-v { - height: 5px; - cursor: n-resize; -} -.layout-mask { - position: absolute; - background: #fafafa; - filter: alpha(opacity=10); - opacity: 0.10; - z-index: 4; -} -.layout-button-up { - background: url('images/layout_arrows.png') no-repeat -16px -16px; -} -.layout-button-down { - background: url('images/layout_arrows.png') no-repeat -16px 0; -} -.layout-button-left { - background: url('images/layout_arrows.png') no-repeat 0 0; -} -.layout-button-right { - background: url('images/layout_arrows.png') no-repeat 0 -16px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - background-color: #aac5e7; -} -.layout-split-north { - border-bottom: 5px solid #E6EEF8; -} -.layout-split-south { - border-top: 5px solid #E6EEF8; -} -.layout-split-east { - border-left: 5px solid #E6EEF8; -} -.layout-split-west { - border-right: 5px solid #E6EEF8; -} -.layout-expand { - background-color: #E0ECFF; -} -.layout-expand-over { - background-color: #E0ECFF; -} -.tabs-container { - overflow: hidden; -} -.tabs-header { - border-width: 1px; - border-style: solid; - border-bottom-width: 0; - position: relative; - padding: 0; - padding-top: 2px; - overflow: hidden; -} -.tabs-scroller-left, -.tabs-scroller-right { - position: absolute; - top: auto; - bottom: 0; - width: 18px; - font-size: 1px; - display: none; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.tabs-scroller-left { - left: 0; -} -.tabs-scroller-right { - right: 0; -} -.tabs-tool { - position: absolute; - bottom: 0; - padding: 1px; - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.tabs-header-plain .tabs-tool { - padding: 0 1px; -} -.tabs-wrap { - position: relative; - left: 0; - overflow: hidden; - width: 100%; - margin: 0; - padding: 0; -} -.tabs-scrolling { - margin-left: 18px; - margin-right: 18px; -} -.tabs-disabled { - opacity: 0.3; - filter: alpha(opacity=30); -} -.tabs { - list-style-type: none; - height: 26px; - margin: 0px; - padding: 0px; - padding-left: 4px; - width: 50000px; - border-style: solid; - border-width: 0 0 1px 0; -} -.tabs li { - float: left; - display: inline-block; - margin: 0 4px -1px 0; - padding: 0; - position: relative; - border: 0; -} -.tabs li a.tabs-inner { - display: inline-block; - text-decoration: none; - margin: 0; - padding: 0 10px; - height: 25px; - line-height: 25px; - text-align: center; - white-space: nowrap; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.tabs li.tabs-selected a.tabs-inner { - font-weight: bold; - outline: none; -} -.tabs li.tabs-selected a:hover.tabs-inner { - cursor: default; - pointer: default; -} -.tabs li a.tabs-close, -.tabs-p-tool { - position: absolute; - font-size: 1px; - display: block; - height: 12px; - padding: 0; - top: 50%; - margin-top: -6px; - overflow: hidden; -} -.tabs li a.tabs-close { - width: 12px; - right: 5px; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs-p-tool { - right: 16px; -} -.tabs-p-tool a { - display: inline-block; - font-size: 1px; - width: 12px; - height: 12px; - margin: 0; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs li a:hover.tabs-close, -.tabs-p-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - cursor: hand; - cursor: pointer; -} -.tabs-with-icon { - padding-left: 18px; -} -.tabs-icon { - position: absolute; - width: 16px; - height: 16px; - left: 10px; - top: 50%; - margin-top: -8px; -} -.tabs-title { - font-size: 12px; -} -.tabs-closable { - padding-right: 8px; -} -.tabs-panels { - margin: 0px; - padding: 0px; - border-width: 1px; - border-style: solid; - border-top-width: 0; - overflow: hidden; -} -.tabs-header-bottom { - border-width: 0 1px 1px 1px; - padding: 0 0 2px 0; -} -.tabs-header-bottom .tabs { - border-width: 1px 0 0 0; -} -.tabs-header-bottom .tabs li { - margin: -1px 4px 0 0; -} -.tabs-header-bottom .tabs li a.tabs-inner { - -moz-border-radius: 0 0 5px 5px; - -webkit-border-radius: 0 0 5px 5px; - border-radius: 0 0 5px 5px; -} -.tabs-header-bottom .tabs-tool { - top: 0; -} -.tabs-header-bottom .tabs-scroller-left, -.tabs-header-bottom .tabs-scroller-right { - top: 0; - bottom: auto; -} -.tabs-panels-top { - border-width: 1px 1px 0 1px; -} -.tabs-header-left { - float: left; - border-width: 1px 0 1px 1px; - padding: 0; -} -.tabs-header-right { - float: right; - border-width: 1px 1px 1px 0; - padding: 0; -} -.tabs-header-left .tabs-wrap, -.tabs-header-right .tabs-wrap { - height: 100%; -} -.tabs-header-left .tabs { - height: 100%; - padding: 4px 0 0 2px; - border-width: 0 1px 0 0; -} -.tabs-header-right .tabs { - height: 100%; - padding: 4px 2px 0 0; - border-width: 0 0 0 1px; -} -.tabs-header-left .tabs li, -.tabs-header-right .tabs li { - display: block; - width: 100%; - position: relative; -} -.tabs-header-left .tabs li { - left: auto; - right: 0; - margin: 0 -1px 4px 0; - float: right; -} -.tabs-header-right .tabs li { - left: 0; - right: auto; - margin: 0 0 4px -1px; - float: left; -} -.tabs-justified li a.tabs-inner { - padding-left: 0; - padding-right: 0; -} -.tabs-header-left .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.tabs-header-right .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.tabs-panels-right { - float: right; - border-width: 1px 1px 1px 0; -} -.tabs-panels-left { - float: left; - border-width: 1px 0 1px 1px; -} -.tabs-header-noborder, -.tabs-panels-noborder { - border: 0px; -} -.tabs-header-plain { - border: 0px; - background: transparent; -} -.tabs-pill { - padding-bottom: 3px; -} -.tabs-header-bottom .tabs-pill { - padding-top: 3px; - padding-bottom: 0; -} -.tabs-header-left .tabs-pill { - padding-right: 3px; -} -.tabs-header-right .tabs-pill { - padding-left: 3px; -} -.tabs-header .tabs-pill li a.tabs-inner { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tabs-header-narrow, -.tabs-header-narrow .tabs-narrow { - padding: 0; -} -.tabs-narrow li, -.tabs-header-bottom .tabs-narrow li { - margin-left: 0; - margin-right: -1px; -} -.tabs-narrow li.tabs-last, -.tabs-header-bottom .tabs-narrow li.tabs-last { - margin-right: 0; -} -.tabs-header-left .tabs-narrow, -.tabs-header-right .tabs-narrow { - padding-top: 0; -} -.tabs-header-left .tabs-narrow li { - margin-bottom: -1px; - margin-right: -1px; -} -.tabs-header-left .tabs-narrow li.tabs-last, -.tabs-header-right .tabs-narrow li.tabs-last { - margin-bottom: 0; -} -.tabs-header-right .tabs-narrow li { - margin-bottom: -1px; - margin-left: -1px; -} -.tabs-scroller-left { - background: #E0ECFF url('images/tabs_icons.png') no-repeat 1px center; -} -.tabs-scroller-right { - background: #E0ECFF url('images/tabs_icons.png') no-repeat -15px center; -} -.tabs li a.tabs-close { - background: url('images/tabs_icons.png') no-repeat -34px center; -} -.tabs li a.tabs-inner:hover { - background: #eaf2ff; - color: #000000; - filter: none; -} -.tabs li.tabs-selected a.tabs-inner { - background-color: #ffffff; - color: #0E2D5F; - background: -webkit-linear-gradient(top,#EFF5FF 0,#ffffff 100%); - background: -moz-linear-gradient(top,#EFF5FF 0,#ffffff 100%); - background: -o-linear-gradient(top,#EFF5FF 0,#ffffff 100%); - background: linear-gradient(to bottom,#EFF5FF 0,#ffffff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#ffffff,GradientType=0); -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(top,#ffffff 0,#EFF5FF 100%); - background: -moz-linear-gradient(top,#ffffff 0,#EFF5FF 100%); - background: -o-linear-gradient(top,#ffffff 0,#EFF5FF 100%); - background: linear-gradient(to bottom,#ffffff 0,#EFF5FF 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#EFF5FF,GradientType=0); -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#EFF5FF 0,#ffffff 100%); - background: -moz-linear-gradient(left,#EFF5FF 0,#ffffff 100%); - background: -o-linear-gradient(left,#EFF5FF 0,#ffffff 100%); - background: linear-gradient(to right,#EFF5FF 0,#ffffff 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#ffffff,GradientType=1); -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#ffffff 0,#EFF5FF 100%); - background: -moz-linear-gradient(left,#ffffff 0,#EFF5FF 100%); - background: -o-linear-gradient(left,#ffffff 0,#EFF5FF 100%); - background: linear-gradient(to right,#ffffff 0,#EFF5FF 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#EFF5FF,GradientType=1); -} -.tabs li a.tabs-inner { - color: #0E2D5F; - background-color: #E0ECFF; - background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%); - background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%); - background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%); - background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0); -} -.tabs-header, -.tabs-tool { - background-color: #E0ECFF; -} -.tabs-header-plain { - background: transparent; -} -.tabs-header, -.tabs-scroller-left, -.tabs-scroller-right, -.tabs-tool, -.tabs, -.tabs-panels, -.tabs li a.tabs-inner, -.tabs li.tabs-selected a.tabs-inner, -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner, -.tabs-header-left .tabs li.tabs-selected a.tabs-inner, -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-color: #95B8E7; -} -.tabs-p-tool a:hover, -.tabs li a:hover.tabs-close, -.tabs-scroller-over { - background-color: #eaf2ff; -} -.tabs li.tabs-selected a.tabs-inner { - border-bottom: 1px solid #ffffff; -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - border-top: 1px solid #ffffff; -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - border-right: 1px solid #ffffff; -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-left: 1px solid #ffffff; -} -.tabs-header .tabs-pill li.tabs-selected a.tabs-inner { - background: #ffe48d; - color: #000000; - filter: none; - border-color: #95B8E7; -} -.datagrid .panel-body { - overflow: hidden; - position: relative; -} -.datagrid-view { - position: relative; - overflow: hidden; -} -.datagrid-view1, -.datagrid-view2 { - position: absolute; - overflow: hidden; - top: 0; -} -.datagrid-view1 { - left: 0; -} -.datagrid-view2 { - right: 0; -} -.datagrid-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - opacity: 0.3; - filter: alpha(opacity=30); - display: none; -} -.datagrid-mask-msg { - position: absolute; - top: 50%; - margin-top: -20px; - padding: 10px 5px 10px 30px; - width: auto; - height: 16px; - border-width: 2px; - border-style: solid; - display: none; -} -.datagrid-sort-icon { - padding: 0; - display: none; -} -.datagrid-toolbar { - height: auto; - padding: 1px 2px; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.datagrid .datagrid-pager { - display: block; - margin: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.datagrid .datagrid-pager-top { - border-width: 0 0 1px 0; -} -.datagrid-header { - overflow: hidden; - cursor: default; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-header-inner { - float: left; - width: 10000px; -} -.datagrid-header-row, -.datagrid-row { - height: 25px; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-width: 0 1px 1px 0; - border-style: dotted; - margin: 0; - padding: 0; -} -.datagrid-cell, -.datagrid-cell-group, -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - margin: 0; - padding: 0 4px; - white-space: nowrap; - word-wrap: normal; - overflow: hidden; - height: 18px; - line-height: 18px; - font-size: 12px; -} -.datagrid-header .datagrid-cell { - height: auto; -} -.datagrid-header .datagrid-cell span { - font-size: 12px; -} -.datagrid-cell-group { - text-align: center; - text-overflow: ellipsis; -} -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - width: 30px; - text-align: center; - margin: 0; - padding: 0; -} -.datagrid-body { - margin: 0; - padding: 0; - overflow: auto; - zoom: 1; -} -.datagrid-view1 .datagrid-body-inner { - padding-bottom: 20px; -} -.datagrid-view1 .datagrid-body { - overflow: hidden; -} -.datagrid-footer { - overflow: hidden; -} -.datagrid-footer-inner { - border-width: 1px 0 0 0; - border-style: solid; - width: 10000px; - float: left; -} -.datagrid-row-editing .datagrid-cell { - height: auto; -} -.datagrid-header-check, -.datagrid-cell-check { - padding: 0; - width: 27px; - height: 18px; - font-size: 1px; - text-align: center; - overflow: hidden; -} -.datagrid-header-check input, -.datagrid-cell-check input { - margin: 0; - padding: 0; - width: 15px; - height: 18px; -} -.datagrid-resize-proxy { - position: absolute; - width: 1px; - height: 10000px; - top: 0; - cursor: e-resize; - display: none; -} -.datagrid-body .datagrid-editable { - margin: 0; - padding: 0; -} -.datagrid-body .datagrid-editable table { - width: 100%; - height: 100%; -} -.datagrid-body .datagrid-editable td { - border: 0; - margin: 0; - padding: 0; -} -.datagrid-view .datagrid-editable-input { - margin: 0; - padding: 2px 4px; - border: 1px solid #95B8E7; - font-size: 12px; - outline-style: none; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.datagrid-sort .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -64px center; -} -.datagrid-sort-desc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -16px center; -} -.datagrid-sort-asc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat 0px center; -} -.datagrid-row-collapse { - background: url('images/datagrid_icons.png') no-repeat -48px center; -} -.datagrid-row-expand { - background: url('images/datagrid_icons.png') no-repeat -32px center; -} -.datagrid-mask-msg { - background: #ffffff url('images/loading.gif') no-repeat scroll 5px center; -} -.datagrid-header, -.datagrid-td-rownumber { - background-color: #efefef; - background: -webkit-linear-gradient(top,#F9F9F9 0,#efefef 100%); - background: -moz-linear-gradient(top,#F9F9F9 0,#efefef 100%); - background: -o-linear-gradient(top,#F9F9F9 0,#efefef 100%); - background: linear-gradient(to bottom,#F9F9F9 0,#efefef 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F9F9F9,endColorstr=#efefef,GradientType=0); -} -.datagrid-cell-rownumber { - color: #000000; -} -.datagrid-resize-proxy { - background: #aac5e7; -} -.datagrid-mask { - background: #ccc; -} -.datagrid-mask-msg { - border-color: #95B8E7; -} -.datagrid-toolbar, -.datagrid-pager { - background: #F4F4F4; -} -.datagrid-header, -.datagrid-toolbar, -.datagrid-pager, -.datagrid-footer-inner { - border-color: #dddddd; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-color: #ccc; -} -.datagrid-htable, -.datagrid-btable, -.datagrid-ftable { - color: #000000; - border-collapse: separate; -} -.datagrid-row-alt { - background: #fafafa; -} -.datagrid-row-over, -.datagrid-header td.datagrid-header-over { - background: #eaf2ff; - color: #000000; - cursor: default; -} -.datagrid-row-selected { - background: #ffe48d; - color: #000000; -} -.datagrid-row-editing .textbox, -.datagrid-row-editing .textbox-text { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.propertygrid .datagrid-view1 .datagrid-body td { - padding-bottom: 1px; - border-width: 0 1px 0 0; -} -.propertygrid .datagrid-group { - height: 21px; - overflow: hidden; - border-width: 0 0 1px 0; - border-style: solid; -} -.propertygrid .datagrid-group span { - font-weight: bold; -} -.propertygrid .datagrid-view1 .datagrid-body td { - border-color: #dddddd; -} -.propertygrid .datagrid-view1 .datagrid-group { - border-color: #E0ECFF; -} -.propertygrid .datagrid-view2 .datagrid-group { - border-color: #dddddd; -} -.propertygrid .datagrid-group, -.propertygrid .datagrid-view1 .datagrid-body, -.propertygrid .datagrid-view1 .datagrid-row-over, -.propertygrid .datagrid-view1 .datagrid-row-selected { - background: #E0ECFF; -} -.datalist .datagrid-header { - border-width: 0; -} -.datalist .datagrid-group, -.m-list .m-list-group { - height: 25px; - line-height: 25px; - font-weight: bold; - overflow: hidden; - background-color: #efefef; - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ccc; -} -.datalist .datagrid-group-expander { - display: none; -} -.datalist .datagrid-group-title { - padding: 0 4px; -} -.datalist .datagrid-btable { - width: 100%; - table-layout: fixed; -} -.datalist .datagrid-row td { - border-style: solid; - border-left-color: transparent; - border-right-color: transparent; - border-bottom-width: 0; -} -.datalist-lines .datagrid-row td { - border-bottom-width: 1px; -} -.datalist .datagrid-cell, -.m-list li { - width: auto; - height: auto; - padding: 2px 4px; - line-height: 18px; - position: relative; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link, -.m-list li>a { - display: block; - position: relative; - cursor: pointer; - color: #000000; - text-decoration: none; - overflow: hidden; - margin: -2px -4px; - padding: 2px 4px; - padding-right: 16px; - line-height: 18px; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link::after, -.m-list li>a::after { - position: absolute; - display: block; - width: 8px; - height: 8px; - content: ''; - right: 6px; - top: 50%; - margin-top: -4px; - border-style: solid; - border-width: 1px 1px 0 0; - -ms-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); -} -.m-list { - margin: 0; - padding: 0; - list-style: none; -} -.m-list li { - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ccc; -} -.m-list li>a:hover { - background: #eaf2ff; - color: #000000; -} -.m-list .m-list-group { - padding: 0 4px; -} -.pagination { - zoom: 1; -} -.pagination table { - float: left; - height: 30px; -} -.pagination td { - border: 0; -} -.pagination-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 3px 1px; -} -.pagination .pagination-num { - border-width: 1px; - border-style: solid; - margin: 0 2px; - padding: 2px; - width: 2em; - height: auto; -} -.pagination-page-list { - margin: 0px 6px; - padding: 1px 2px; - width: auto; - height: auto; - border-width: 1px; - border-style: solid; -} -.pagination-info { - float: right; - margin: 0 6px 0 0; - padding: 0; - height: 30px; - line-height: 30px; - font-size: 12px; -} -.pagination span { - font-size: 12px; -} -.pagination-link .l-btn-text { - width: 24px; - text-align: center; - margin: 0; -} -.pagination-first { - background: url('images/pagination_icons.png') no-repeat 0 center; -} -.pagination-prev { - background: url('images/pagination_icons.png') no-repeat -16px center; -} -.pagination-next { - background: url('images/pagination_icons.png') no-repeat -32px center; -} -.pagination-last { - background: url('images/pagination_icons.png') no-repeat -48px center; -} -.pagination-load { - background: url('images/pagination_icons.png') no-repeat -64px center; -} -.pagination-loading { - background: url('images/loading.gif') no-repeat center center; -} -.pagination-page-list, -.pagination .pagination-num { - border-color: #95B8E7; -} -.calendar { - border-width: 1px; - border-style: solid; - padding: 1px; - overflow: hidden; -} -.calendar table { - table-layout: fixed; - border-collapse: separate; - font-size: 12px; - width: 100%; - height: 100%; -} -.calendar table td, -.calendar table th { - font-size: 12px; -} -.calendar-noborder { - border: 0; -} -.calendar-header { - position: relative; - height: 22px; -} -.calendar-title { - text-align: center; - height: 22px; -} -.calendar-title span { - position: relative; - display: inline-block; - top: 2px; - padding: 0 3px; - height: 18px; - line-height: 18px; - font-size: 12px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth, -.calendar-nextmonth, -.calendar-prevyear, -.calendar-nextyear { - position: absolute; - top: 50%; - margin-top: -7px; - width: 14px; - height: 14px; - cursor: pointer; - font-size: 1px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth { - left: 20px; - background: url('images/calendar_arrows.png') no-repeat -18px -2px; -} -.calendar-nextmonth { - right: 20px; - background: url('images/calendar_arrows.png') no-repeat -34px -2px; -} -.calendar-prevyear { - left: 3px; - background: url('images/calendar_arrows.png') no-repeat -1px -2px; -} -.calendar-nextyear { - right: 3px; - background: url('images/calendar_arrows.png') no-repeat -49px -2px; -} -.calendar-body { - position: relative; -} -.calendar-body th, -.calendar-body td { - text-align: center; -} -.calendar-day { - border: 0; - padding: 1px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-other-month { - opacity: 0.3; - filter: alpha(opacity=30); -} -.calendar-disabled { - opacity: 0.6; - filter: alpha(opacity=60); - cursor: default; -} -.calendar-menu { - position: absolute; - top: 0; - left: 0; - width: 180px; - height: 150px; - padding: 5px; - font-size: 12px; - display: none; - overflow: hidden; -} -.calendar-menu-year-inner { - text-align: center; - padding-bottom: 5px; -} -.calendar-menu-year { - width: 40px; - text-align: center; - border-width: 1px; - border-style: solid; - margin: 0; - padding: 2px; - font-weight: bold; - font-size: 12px; -} -.calendar-menu-prev, -.calendar-menu-next { - display: inline-block; - width: 21px; - height: 21px; - vertical-align: top; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-menu-prev { - margin-right: 10px; - background: url('images/calendar_arrows.png') no-repeat 2px 2px; -} -.calendar-menu-next { - margin-left: 10px; - background: url('images/calendar_arrows.png') no-repeat -45px 2px; -} -.calendar-menu-month { - text-align: center; - cursor: pointer; - font-weight: bold; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-body th, -.calendar-menu-month { - color: #4d4d4d; -} -.calendar-day { - color: #000000; -} -.calendar-sunday { - color: #CC2222; -} -.calendar-saturday { - color: #00ee00; -} -.calendar-today { - color: #0000ff; -} -.calendar-menu-year { - border-color: #95B8E7; -} -.calendar { - border-color: #95B8E7; -} -.calendar-header { - background: #E0ECFF; -} -.calendar-body, -.calendar-menu { - background: #ffffff; -} -.calendar-body th { - background: #F4F4F4; - padding: 2px 0; -} -.calendar-hover, -.calendar-nav-hover, -.calendar-menu-hover { - background-color: #eaf2ff; - color: #000000; -} -.calendar-hover { - border: 1px solid #b7d2ff; - padding: 0; -} -.calendar-selected { - background-color: #ffe48d; - color: #000000; - border: 1px solid #ffab3f; - padding: 0; -} -.datebox-calendar-inner { - height: 180px; -} -.datebox-button { - height: 18px; - padding: 2px 5px; - text-align: center; -} -.datebox-button a { - font-size: 12px; - font-weight: bold; - text-decoration: none; - opacity: 0.6; - filter: alpha(opacity=60); -} -.datebox-button a:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.datebox-current, -.datebox-close { - float: left; -} -.datebox-close { - float: right; -} -.datebox .combo-arrow { - background-image: url('images/datebox_arrow.png'); - background-position: center center; -} -.datebox-button { - background-color: #F4F4F4; -} -.datebox-button a { - color: #444; -} -.numberbox { - border: 1px solid #95B8E7; - margin: 0; - padding: 0 2px; - vertical-align: middle; -} -.textbox { - padding: 0; -} -.spinner { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.spinner .spinner-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0 2px; - vertical-align: baseline; -} -.spinner-arrow { - background-color: #E0ECFF; - display: inline-block; - overflow: hidden; - vertical-align: top; - margin: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - width: 18px; -} -.spinner-arrow-up, -.spinner-arrow-down { - opacity: 0.6; - filter: alpha(opacity=60); - display: block; - font-size: 1px; - width: 18px; - height: 10px; - width: 100%; - height: 50%; - color: #444; - outline-style: none; -} -.spinner-arrow-hover { - background-color: #eaf2ff; - opacity: 1.0; - filter: alpha(opacity=100); -} -.spinner-arrow-up:hover, -.spinner-arrow-down:hover { - opacity: 1.0; - filter: alpha(opacity=100); - background-color: #eaf2ff; -} -.textbox-icon-disabled .spinner-arrow-up:hover, -.textbox-icon-disabled .spinner-arrow-down:hover { - opacity: 0.6; - filter: alpha(opacity=60); - background-color: #E0ECFF; - cursor: default; -} -.spinner .textbox-icon-disabled { - opacity: 0.6; - filter: alpha(opacity=60); -} -.spinner-arrow-up { - background: url('images/spinner_arrows.png') no-repeat 1px center; -} -.spinner-arrow-down { - background: url('images/spinner_arrows.png') no-repeat -15px center; -} -.spinner { - border-color: #95B8E7; -} -.progressbar { - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - overflow: hidden; - position: relative; -} -.progressbar-text { - text-align: center; - position: absolute; -} -.progressbar-value { - position: relative; - overflow: hidden; - width: 0; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.progressbar { - border-color: #95B8E7; -} -.progressbar-text { - color: #000000; - font-size: 12px; -} -.progressbar-value .progressbar-text { - background-color: #ffe48d; - color: #000000; -} -.searchbox { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.searchbox .searchbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 0 2px; - vertical-align: top; -} -.searchbox .searchbox-prompt { - font-size: 12px; - color: #ccc; -} -.searchbox-button { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.searchbox-button-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.searchbox .l-btn-plain { - border: 0; - padding: 0; - vertical-align: top; - opacity: 0.6; - filter: alpha(opacity=60); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .l-btn-plain:hover { - border: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox a.m-btn-plain-active { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .m-btn-active { - border-width: 0 1px 0 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .textbox-button-right { - border-width: 0 0 0 1px; -} -.searchbox .textbox-button-left { - border-width: 0 1px 0 0; -} -.searchbox-button { - background: url('images/searchbox_button.png') no-repeat center center; -} -.searchbox { - border-color: #95B8E7; - background-color: #fff; -} -.searchbox .l-btn-plain { - background: #E0ECFF; -} -.searchbox .l-btn-plain-disabled, -.searchbox .l-btn-plain-disabled:hover { - opacity: 0.5; - filter: alpha(opacity=50); -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.slider-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.slider-h { - height: 22px; -} -.slider-v { - width: 22px; -} -.slider-inner { - position: relative; - height: 6px; - top: 7px; - border-width: 1px; - border-style: solid; - border-radius: 5px; -} -.slider-handle { - position: absolute; - display: block; - outline: none; - width: 20px; - height: 20px; - top: 50%; - margin-top: -10px; - margin-left: -10px; -} -.slider-tip { - position: absolute; - display: inline-block; - line-height: 12px; - font-size: 12px; - white-space: nowrap; - top: -22px; -} -.slider-rule { - position: relative; - top: 15px; -} -.slider-rule span { - position: absolute; - display: inline-block; - font-size: 0; - height: 5px; - border-width: 0 0 0 1px; - border-style: solid; -} -.slider-rulelabel { - position: relative; - top: 20px; -} -.slider-rulelabel span { - position: absolute; - display: inline-block; - font-size: 12px; -} -.slider-v .slider-inner { - width: 6px; - left: 7px; - top: 0; - float: left; -} -.slider-v .slider-handle { - left: 50%; - margin-top: -10px; -} -.slider-v .slider-tip { - left: -10px; - margin-top: -6px; -} -.slider-v .slider-rule { - float: left; - top: 0; - left: 16px; -} -.slider-v .slider-rule span { - width: 5px; - height: 'auto'; - border-left: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.slider-v .slider-rulelabel { - float: left; - top: 0; - left: 23px; -} -.slider-handle { - background: url('images/slider_handle.png') no-repeat; -} -.slider-inner { - border-color: #95B8E7; - background: #E0ECFF; -} -.slider-rule span { - border-color: #95B8E7; -} -.slider-rulelabel span { - color: #000000; -} -.menu { - position: absolute; - margin: 0; - padding: 2px; - border-width: 1px; - border-style: solid; - overflow: hidden; -} -.menu-inline { - position: relative; -} -.menu-item { - position: relative; - margin: 0; - padding: 0; - overflow: hidden; - white-space: nowrap; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.menu-text { - height: 20px; - line-height: 20px; - float: left; - padding-left: 28px; -} -.menu-icon { - position: absolute; - width: 16px; - height: 16px; - left: 2px; - top: 50%; - margin-top: -8px; -} -.menu-rightarrow { - position: absolute; - width: 16px; - height: 16px; - right: 0; - top: 50%; - margin-top: -8px; -} -.menu-line { - position: absolute; - left: 26px; - top: 0; - height: 2000px; - font-size: 1px; -} -.menu-sep { - margin: 3px 0px 3px 25px; - font-size: 1px; -} -.menu-noline .menu-line { - display: none; -} -.menu-noline .menu-sep { - margin-left: 0; - margin-right: 0; -} -.menu-active { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.menu-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: default; -} -.menu-text, -.menu-text span { - font-size: 12px; -} -.menu-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - background: #ccc; - -moz-box-shadow: 2px 2px 3px #cccccc; - -webkit-box-shadow: 2px 2px 3px #cccccc; - box-shadow: 2px 2px 3px #cccccc; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.menu-rightarrow { - background: url('images/menu_arrows.png') no-repeat -32px center; -} -.menu-line { - border-left: 1px solid #ccc; - border-right: 1px solid #fff; -} -.menu-sep { - border-top: 1px solid #ccc; - border-bottom: 1px solid #fff; -} -.menu { - background-color: #fafafa; - border-color: #ddd; - color: #444; -} -.menu-content { - background: #ffffff; -} -.menu-item { - border-color: transparent; - _border-color: #fafafa; -} -.menu-active { - border-color: #b7d2ff; - color: #000000; - background: #eaf2ff; -} -.menu-active-disabled { - border-color: transparent; - background: transparent; - color: #444; -} -.m-btn-downarrow, -.s-btn-downarrow { - display: inline-block; - position: absolute; - width: 16px; - height: 16px; - font-size: 1px; - right: 0; - top: 50%; - margin-top: -8px; -} -.m-btn-active, -.s-btn-active { - background: #eaf2ff; - color: #000000; - border: 1px solid #b7d2ff; - filter: none; -} -.m-btn-plain-active, -.s-btn-plain-active { - background: transparent; - padding: 0; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.m-btn .l-btn-left .l-btn-text { - margin-right: 20px; -} -.m-btn .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.m-btn .l-btn-icon-right .l-btn-icon { - right: 20px; -} -.m-btn .l-btn-icon-top .l-btn-text { - margin-right: 4px; - margin-bottom: 14px; -} -.m-btn .l-btn-icon-bottom .l-btn-text { - margin-right: 4px; - margin-bottom: 34px; -} -.m-btn .l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 20px; -} -.m-btn .l-btn-icon-top .m-btn-downarrow, -.m-btn .l-btn-icon-bottom .m-btn-downarrow { - top: auto; - bottom: 0px; - left: 50%; - margin-left: -8px; -} -.m-btn-line { - display: inline-block; - position: absolute; - font-size: 1px; - display: none; -} -.m-btn .l-btn-left .m-btn-line { - right: 0; - width: 16px; - height: 500px; - border-style: solid; - border-color: #aac5e7; - border-width: 0 0 0 1px; -} -.m-btn .l-btn-icon-top .m-btn-line, -.m-btn .l-btn-icon-bottom .m-btn-line { - left: 0; - bottom: 0; - width: 500px; - height: 16px; - border-width: 1px 0 0 0; -} -.m-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 56px; -} -.m-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 50px; -} -.m-btn-downarrow, -.s-btn-downarrow { - background: url('images/menu_arrows.png') no-repeat 0 center; -} -.m-btn-plain-active, -.s-btn-plain-active { - border-color: #b7d2ff; - background-color: #eaf2ff; - color: #000000; -} -.s-btn:hover .m-btn-line, -.s-btn-active .m-btn-line, -.s-btn-plain-active .m-btn-line { - display: inline-block; -} -.l-btn:hover .s-btn-downarrow, -.s-btn-active .s-btn-downarrow, -.s-btn-plain-active .s-btn-downarrow { - border-style: solid; - border-color: #aac5e7; - border-width: 0 0 0 1px; -} -.messager-body { - padding: 10px; - overflow: auto; -} -.messager-button { - text-align: center; - padding: 5px; -} -.messager-button .l-btn { - width: 70px; -} -.messager-icon { - float: left; - width: 32px; - height: 32px; - margin: 0 10px 10px 0; -} -.messager-error { - background: url('images/messager_icons.png') no-repeat scroll -64px 0; -} -.messager-info { - background: url('images/messager_icons.png') no-repeat scroll 0 0; -} -.messager-question { - background: url('images/messager_icons.png') no-repeat scroll -32px 0; -} -.messager-warning { - background: url('images/messager_icons.png') no-repeat scroll -96px 0; -} -.messager-progress { - padding: 10px; -} -.messager-p-msg { - margin-bottom: 5px; -} -.messager-body .messager-input { - width: 100%; - padding: 1px 0; - border: 1px solid #95B8E7; -} -.tree { - margin: 0; - padding: 0; - list-style-type: none; -} -.tree li { - white-space: nowrap; -} -.tree li ul { - list-style-type: none; - margin: 0; - padding: 0; -} -.tree-node { - height: 18px; - white-space: nowrap; - cursor: pointer; -} -.tree-hit { - cursor: pointer; -} -.tree-expanded, -.tree-collapsed, -.tree-folder, -.tree-file, -.tree-checkbox, -.tree-indent { - display: inline-block; - width: 16px; - height: 18px; - vertical-align: top; - overflow: hidden; -} -.tree-expanded { - background: url('images/tree_icons.png') no-repeat -18px 0px; -} -.tree-expanded-hover { - background: url('images/tree_icons.png') no-repeat -50px 0px; -} -.tree-collapsed { - background: url('images/tree_icons.png') no-repeat 0px 0px; -} -.tree-collapsed-hover { - background: url('images/tree_icons.png') no-repeat -32px 0px; -} -.tree-lines .tree-expanded, -.tree-lines .tree-root-first .tree-expanded { - background: url('images/tree_icons.png') no-repeat -144px 0; -} -.tree-lines .tree-collapsed, -.tree-lines .tree-root-first .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -128px 0; -} -.tree-lines .tree-node-last .tree-expanded, -.tree-lines .tree-root-one .tree-expanded { - background: url('images/tree_icons.png') no-repeat -80px 0; -} -.tree-lines .tree-node-last .tree-collapsed, -.tree-lines .tree-root-one .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -64px 0; -} -.tree-line { - background: url('images/tree_icons.png') no-repeat -176px 0; -} -.tree-join { - background: url('images/tree_icons.png') no-repeat -192px 0; -} -.tree-joinbottom { - background: url('images/tree_icons.png') no-repeat -160px 0; -} -.tree-folder { - background: url('images/tree_icons.png') no-repeat -208px 0; -} -.tree-folder-open { - background: url('images/tree_icons.png') no-repeat -224px 0; -} -.tree-file { - background: url('images/tree_icons.png') no-repeat -240px 0; -} -.tree-loading { - background: url('images/loading.gif') no-repeat center center; -} -.tree-checkbox0 { - background: url('images/tree_icons.png') no-repeat -208px -18px; -} -.tree-checkbox1 { - background: url('images/tree_icons.png') no-repeat -224px -18px; -} -.tree-checkbox2 { - background: url('images/tree_icons.png') no-repeat -240px -18px; -} -.tree-title { - font-size: 12px; - display: inline-block; - text-decoration: none; - vertical-align: top; - white-space: nowrap; - padding: 0 2px; - height: 18px; - line-height: 18px; -} -.tree-node-proxy { - font-size: 12px; - line-height: 20px; - padding: 0 2px 0 20px; - border-width: 1px; - border-style: solid; - z-index: 9900000; -} -.tree-dnd-icon { - display: inline-block; - position: absolute; - width: 16px; - height: 18px; - left: 2px; - top: 50%; - margin-top: -9px; -} -.tree-dnd-yes { - background: url('images/tree_icons.png') no-repeat -256px 0; -} -.tree-dnd-no { - background: url('images/tree_icons.png') no-repeat -256px -18px; -} -.tree-node-top { - border-top: 1px dotted red; -} -.tree-node-bottom { - border-bottom: 1px dotted red; -} -.tree-node-append .tree-title { - border: 1px dotted red; -} -.tree-editor { - border: 1px solid #ccc; - font-size: 12px; - height: 14px !important; - height: 18px; - line-height: 14px; - padding: 1px 2px; - width: 80px; - position: absolute; - top: 0; -} -.tree-node-proxy { - background-color: #ffffff; - color: #000000; - border-color: #95B8E7; -} -.tree-node-hover { - background: #eaf2ff; - color: #000000; -} -.tree-node-selected { - background: #ffe48d; - color: #000000; -} -.tree-node-hidden { - display: none; -} -.validatebox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; - color: #000; -} -.tooltip { - position: absolute; - display: none; - z-index: 9900000; - outline: none; - opacity: 1; - filter: alpha(opacity=100); - padding: 5px; - border-width: 1px; - border-style: solid; - border-radius: 5px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tooltip-content { - font-size: 12px; -} -.tooltip-arrow-outer, -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - line-height: 0; - font-size: 0; - border-style: solid; - border-width: 6px; - border-color: transparent; - _border-color: tomato; - _filter: chroma(color=tomato); -} -.tooltip-arrow { - display: none \9; -} -.tooltip-right .tooltip-arrow-outer { - left: 0; - top: 50%; - margin: -6px 0 0 -13px; -} -.tooltip-right .tooltip-arrow { - left: 0; - top: 50%; - margin: -6px 0 0 -12px; -} -.tooltip-left .tooltip-arrow-outer { - right: 0; - top: 50%; - margin: -6px -13px 0 0; -} -.tooltip-left .tooltip-arrow { - right: 0; - top: 50%; - margin: -6px -12px 0 0; -} -.tooltip-top .tooltip-arrow-outer { - bottom: 0; - left: 50%; - margin: 0 0 -13px -6px; -} -.tooltip-top .tooltip-arrow { - bottom: 0; - left: 50%; - margin: 0 0 -12px -6px; -} -.tooltip-bottom .tooltip-arrow-outer { - top: 0; - left: 50%; - margin: -13px 0 0 -6px; -} -.tooltip-bottom .tooltip-arrow { - top: 0; - left: 50%; - margin: -12px 0 0 -6px; -} -.tooltip { - background-color: #ffffff; - border-color: #95B8E7; - color: #000000; -} -.tooltip-right .tooltip-arrow-outer { - border-right-color: #95B8E7; -} -.tooltip-right .tooltip-arrow { - border-right-color: #ffffff; -} -.tooltip-left .tooltip-arrow-outer { - border-left-color: #95B8E7; -} -.tooltip-left .tooltip-arrow { - border-left-color: #ffffff; -} -.tooltip-top .tooltip-arrow-outer { - border-top-color: #95B8E7; -} -.tooltip-top .tooltip-arrow { - border-top-color: #ffffff; -} -.tooltip-bottom .tooltip-arrow-outer { - border-bottom-color: #95B8E7; -} -.tooltip-bottom .tooltip-arrow { - border-bottom-color: #ffffff; -} -.switchbutton { - text-decoration: none; - display: inline-block; - overflow: hidden; - vertical-align: middle; - margin: 0; - padding: 0; - cursor: pointer; - background: #bbb; - border: 1px solid #bbb; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-inner { - display: inline-block; - overflow: hidden; - position: relative; - top: -1px; - left: -1px; -} -.switchbutton-on, -.switchbutton-off, -.switchbutton-handle { - display: inline-block; - text-align: center; - height: 100%; - float: left; - font-size: 12px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-on { - background: #ffe48d; - color: #000000; -} -.switchbutton-off { - background-color: #ffffff; - color: #000000; -} -.switchbutton-on, -.switchbutton-reversed .switchbutton-off { - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.switchbutton-off, -.switchbutton-reversed .switchbutton-on { - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.switchbutton-handle { - position: absolute; - top: 0; - left: 50%; - background-color: #ffffff; - color: #000000; - border: 1px solid #bbb; - -moz-box-shadow: 0 0 3px 0 #bbb; - -webkit-box-shadow: 0 0 3px 0 #bbb; - box-shadow: 0 0 3px 0 #bbb; -} -.switchbutton-value { - position: absolute; - top: 0; - left: -5000px; -} -.switchbutton-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.switchbutton-disabled, -.switchbutton-readonly { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/filebox.css b/vendor/FHC-vendor/easyui/themes/default/filebox.css deleted file mode 100644 index c6bac6631..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/filebox.css +++ /dev/null @@ -1,20 +0,0 @@ -.filebox .textbox-value { - vertical-align: top; - position: absolute; - top: 0; - left: -5000px; -} -.filebox-label { - display: inline-block; - position: absolute; - width: 100%; - height: 100%; - cursor: pointer; - left: 0; - top: 0; - z-index: 10; - background: url('images/blank.gif') no-repeat; -} -.l-btn-disabled .filebox-label { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/images/accordion_arrows.png b/vendor/FHC-vendor/easyui/themes/default/images/accordion_arrows.png deleted file mode 100644 index 720835f69..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/accordion_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/blank.gif b/vendor/FHC-vendor/easyui/themes/default/images/blank.gif deleted file mode 100644 index 1d11fa9ad..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/blank.gif and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/calendar_arrows.png b/vendor/FHC-vendor/easyui/themes/default/images/calendar_arrows.png deleted file mode 100644 index 430c4ad68..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/calendar_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/combo_arrow.png b/vendor/FHC-vendor/easyui/themes/default/images/combo_arrow.png deleted file mode 100644 index 2e59fb9f3..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/combo_arrow.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/datagrid_icons.png b/vendor/FHC-vendor/easyui/themes/default/images/datagrid_icons.png deleted file mode 100644 index 762d0ce0f..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/datagrid_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/datebox_arrow.png b/vendor/FHC-vendor/easyui/themes/default/images/datebox_arrow.png deleted file mode 100644 index 783c83357..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/datebox_arrow.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/layout_arrows.png b/vendor/FHC-vendor/easyui/themes/default/images/layout_arrows.png deleted file mode 100644 index 6f4165425..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/layout_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/linkbutton_bg.png b/vendor/FHC-vendor/easyui/themes/default/images/linkbutton_bg.png deleted file mode 100644 index fc66bd2cd..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/linkbutton_bg.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/loading.gif b/vendor/FHC-vendor/easyui/themes/default/images/loading.gif deleted file mode 100644 index 68f01d048..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/loading.gif and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/menu_arrows.png b/vendor/FHC-vendor/easyui/themes/default/images/menu_arrows.png deleted file mode 100644 index b986842e7..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/menu_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/messager_icons.png b/vendor/FHC-vendor/easyui/themes/default/images/messager_icons.png deleted file mode 100644 index 62c18c135..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/messager_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/pagination_icons.png b/vendor/FHC-vendor/easyui/themes/default/images/pagination_icons.png deleted file mode 100644 index 616f0bdd6..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/pagination_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/panel_tools.png b/vendor/FHC-vendor/easyui/themes/default/images/panel_tools.png deleted file mode 100644 index 19ecc9461..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/panel_tools.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/searchbox_button.png b/vendor/FHC-vendor/easyui/themes/default/images/searchbox_button.png deleted file mode 100644 index 6dd193158..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/searchbox_button.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/slider_handle.png b/vendor/FHC-vendor/easyui/themes/default/images/slider_handle.png deleted file mode 100644 index b9802bae1..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/slider_handle.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/spinner_arrows.png b/vendor/FHC-vendor/easyui/themes/default/images/spinner_arrows.png deleted file mode 100644 index b68592de3..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/spinner_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/tabs_icons.png b/vendor/FHC-vendor/easyui/themes/default/images/tabs_icons.png deleted file mode 100644 index 4d29966d7..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/tabs_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/tree_icons.png b/vendor/FHC-vendor/easyui/themes/default/images/tree_icons.png deleted file mode 100644 index e9be4f3a9..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/tree_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/images/validatebox_warning.png b/vendor/FHC-vendor/easyui/themes/default/images/validatebox_warning.png deleted file mode 100644 index 2b3d4f05b..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/default/images/validatebox_warning.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/default/layout.css b/vendor/FHC-vendor/easyui/themes/default/layout.css deleted file mode 100644 index 3c1bad92e..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/layout.css +++ /dev/null @@ -1,133 +0,0 @@ -.layout { - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - z-index: 0; -} -.layout-panel { - position: absolute; - overflow: hidden; -} -.layout-body { - min-width: 1px; - min-height: 1px; -} -.layout-panel-east, -.layout-panel-west { - z-index: 2; -} -.layout-panel-north, -.layout-panel-south { - z-index: 3; -} -.layout-expand { - position: absolute; - padding: 0px; - font-size: 1px; - cursor: pointer; - z-index: 1; -} -.layout-expand .panel-header, -.layout-expand .panel-body { - background: transparent; - filter: none; - overflow: hidden; -} -.layout-expand .panel-header { - border-bottom-width: 0px; -} -.layout-expand .panel-body { - position: relative; -} -.layout-expand .panel-body .panel-icon { - margin-top: 0; - top: 0; - left: 50%; - margin-left: -8px; -} -.layout-expand-west .panel-header .panel-icon, -.layout-expand-east .panel-header .panel-icon { - display: none; -} -.layout-expand-title { - position: absolute; - top: 0; - left: 21px; - white-space: nowrap; - word-wrap: normal; - -webkit-transform: rotate(90deg); - -webkit-transform-origin: 0 0; - -moz-transform: rotate(90deg); - -moz-transform-origin: 0 0; - -o-transform: rotate(90deg); - -o-transform-origin: 0 0; - transform: rotate(90deg); - transform-origin: 0 0; -} -.layout-expand-with-icon { - top: 18px; -} -.layout-expand .panel-body-noheader .layout-expand-title, -.layout-expand .panel-body-noheader .panel-icon { - top: 5px; -} -.layout-expand .panel-body-noheader .layout-expand-with-icon { - top: 23px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - position: absolute; - font-size: 1px; - display: none; - z-index: 5; -} -.layout-split-proxy-h { - width: 5px; - cursor: e-resize; -} -.layout-split-proxy-v { - height: 5px; - cursor: n-resize; -} -.layout-mask { - position: absolute; - background: #fafafa; - filter: alpha(opacity=10); - opacity: 0.10; - z-index: 4; -} -.layout-button-up { - background: url('images/layout_arrows.png') no-repeat -16px -16px; -} -.layout-button-down { - background: url('images/layout_arrows.png') no-repeat -16px 0; -} -.layout-button-left { - background: url('images/layout_arrows.png') no-repeat 0 0; -} -.layout-button-right { - background: url('images/layout_arrows.png') no-repeat 0 -16px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - background-color: #aac5e7; -} -.layout-split-north { - border-bottom: 5px solid #E6EEF8; -} -.layout-split-south { - border-top: 5px solid #E6EEF8; -} -.layout-split-east { - border-left: 5px solid #E6EEF8; -} -.layout-split-west { - border-right: 5px solid #E6EEF8; -} -.layout-expand { - background-color: #E0ECFF; -} -.layout-expand-over { - background-color: #E0ECFF; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/linkbutton.css b/vendor/FHC-vendor/easyui/themes/default/linkbutton.css deleted file mode 100644 index a3e21223e..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/linkbutton.css +++ /dev/null @@ -1,203 +0,0 @@ -.l-btn { - text-decoration: none; - display: inline-block; - overflow: hidden; - margin: 0; - padding: 0; - cursor: pointer; - outline: none; - text-align: center; - vertical-align: middle; - line-height: normal; -} -.l-btn-plain { - border-width: 0; - padding: 1px; -} -.l-btn-left { - display: inline-block; - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - vertical-align: top; -} -.l-btn-text { - display: inline-block; - vertical-align: top; - width: auto; - line-height: 24px; - font-size: 12px; - padding: 0; - margin: 0 4px; -} -.l-btn-icon { - display: inline-block; - width: 16px; - height: 16px; - line-height: 16px; - position: absolute; - top: 50%; - margin-top: -8px; - font-size: 1px; -} -.l-btn span span .l-btn-empty { - display: inline-block; - margin: 0; - width: 16px; - height: 24px; - font-size: 1px; - vertical-align: top; -} -.l-btn span .l-btn-icon-left { - padding: 0 0 0 20px; - background-position: left center; -} -.l-btn span .l-btn-icon-right { - padding: 0 20px 0 0; - background-position: right center; -} -.l-btn-icon-left .l-btn-text { - margin: 0 4px 0 24px; -} -.l-btn-icon-left .l-btn-icon { - left: 4px; -} -.l-btn-icon-right .l-btn-text { - margin: 0 24px 0 4px; -} -.l-btn-icon-right .l-btn-icon { - right: 4px; -} -.l-btn-icon-top .l-btn-text { - margin: 20px 4px 0 4px; -} -.l-btn-icon-top .l-btn-icon { - top: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-icon-bottom .l-btn-text { - margin: 0 4px 20px 4px; -} -.l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-left .l-btn-empty { - margin: 0 4px; - width: 16px; -} -.l-btn-plain:hover { - padding: 0; -} -.l-btn-focus { - outline: #0000FF dotted thin; -} -.l-btn-large .l-btn-text { - line-height: 40px; -} -.l-btn-large .l-btn-icon { - width: 32px; - height: 32px; - line-height: 32px; - margin-top: -16px; -} -.l-btn-large .l-btn-icon-left .l-btn-text { - margin-left: 40px; -} -.l-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.l-btn-large .l-btn-icon-top .l-btn-text { - margin-top: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-top .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-left .l-btn-empty { - margin: 0 4px; - width: 32px; -} -.l-btn { - color: #444; - background: #fafafa; - background-repeat: repeat-x; - border: 1px solid #bbb; - background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0); - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn:hover { - background: #eaf2ff; - color: #000000; - border: 1px solid #b7d2ff; - filter: none; -} -.l-btn-plain { - background: transparent; - border-width: 0; - filter: none; -} -.l-btn-outline { - border-width: 1px; - border-color: #b7d2ff; - padding: 0; -} -.l-btn-plain:hover { - background: #eaf2ff; - color: #000000; - border: 1px solid #b7d2ff; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn-disabled, -.l-btn-disabled:hover { - opacity: 0.5; - cursor: default; - background: #fafafa; - color: #444; - background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0); -} -.l-btn-disabled .l-btn-text, -.l-btn-disabled .l-btn-icon { - filter: alpha(opacity=50); -} -.l-btn-plain-disabled, -.l-btn-plain-disabled:hover { - background: transparent; - filter: alpha(opacity=50); -} -.l-btn-selected, -.l-btn-selected:hover { - background: #ddd; - filter: none; -} -.l-btn-plain-selected, -.l-btn-plain-selected:hover { - background: #ddd; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/menu.css b/vendor/FHC-vendor/easyui/themes/default/menu.css deleted file mode 100644 index 552e25c91..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/menu.css +++ /dev/null @@ -1,119 +0,0 @@ -.menu { - position: absolute; - margin: 0; - padding: 2px; - border-width: 1px; - border-style: solid; - overflow: hidden; -} -.menu-inline { - position: relative; -} -.menu-item { - position: relative; - margin: 0; - padding: 0; - overflow: hidden; - white-space: nowrap; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.menu-text { - height: 20px; - line-height: 20px; - float: left; - padding-left: 28px; -} -.menu-icon { - position: absolute; - width: 16px; - height: 16px; - left: 2px; - top: 50%; - margin-top: -8px; -} -.menu-rightarrow { - position: absolute; - width: 16px; - height: 16px; - right: 0; - top: 50%; - margin-top: -8px; -} -.menu-line { - position: absolute; - left: 26px; - top: 0; - height: 2000px; - font-size: 1px; -} -.menu-sep { - margin: 3px 0px 3px 25px; - font-size: 1px; -} -.menu-noline .menu-line { - display: none; -} -.menu-noline .menu-sep { - margin-left: 0; - margin-right: 0; -} -.menu-active { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.menu-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: default; -} -.menu-text, -.menu-text span { - font-size: 12px; -} -.menu-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - background: #ccc; - -moz-box-shadow: 2px 2px 3px #cccccc; - -webkit-box-shadow: 2px 2px 3px #cccccc; - box-shadow: 2px 2px 3px #cccccc; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.menu-rightarrow { - background: url('images/menu_arrows.png') no-repeat -32px center; -} -.menu-line { - border-left: 1px solid #ccc; - border-right: 1px solid #fff; -} -.menu-sep { - border-top: 1px solid #ccc; - border-bottom: 1px solid #fff; -} -.menu { - background-color: #fafafa; - border-color: #ddd; - color: #444; -} -.menu-content { - background: #ffffff; -} -.menu-item { - border-color: transparent; - _border-color: #fafafa; -} -.menu-active { - border-color: #b7d2ff; - color: #000000; - background: #eaf2ff; -} -.menu-active-disabled { - border-color: transparent; - background: transparent; - color: #444; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/menubutton.css b/vendor/FHC-vendor/easyui/themes/default/menubutton.css deleted file mode 100644 index 3445bd5c2..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/menubutton.css +++ /dev/null @@ -1,94 +0,0 @@ -.m-btn-downarrow, -.s-btn-downarrow { - display: inline-block; - position: absolute; - width: 16px; - height: 16px; - font-size: 1px; - right: 0; - top: 50%; - margin-top: -8px; -} -.m-btn-active, -.s-btn-active { - background: #eaf2ff; - color: #000000; - border: 1px solid #b7d2ff; - filter: none; -} -.m-btn-plain-active, -.s-btn-plain-active { - background: transparent; - padding: 0; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.m-btn .l-btn-left .l-btn-text { - margin-right: 20px; -} -.m-btn .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.m-btn .l-btn-icon-right .l-btn-icon { - right: 20px; -} -.m-btn .l-btn-icon-top .l-btn-text { - margin-right: 4px; - margin-bottom: 14px; -} -.m-btn .l-btn-icon-bottom .l-btn-text { - margin-right: 4px; - margin-bottom: 34px; -} -.m-btn .l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 20px; -} -.m-btn .l-btn-icon-top .m-btn-downarrow, -.m-btn .l-btn-icon-bottom .m-btn-downarrow { - top: auto; - bottom: 0px; - left: 50%; - margin-left: -8px; -} -.m-btn-line { - display: inline-block; - position: absolute; - font-size: 1px; - display: none; -} -.m-btn .l-btn-left .m-btn-line { - right: 0; - width: 16px; - height: 500px; - border-style: solid; - border-color: #aac5e7; - border-width: 0 0 0 1px; -} -.m-btn .l-btn-icon-top .m-btn-line, -.m-btn .l-btn-icon-bottom .m-btn-line { - left: 0; - bottom: 0; - width: 500px; - height: 16px; - border-width: 1px 0 0 0; -} -.m-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 56px; -} -.m-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 50px; -} -.m-btn-downarrow, -.s-btn-downarrow { - background: url('images/menu_arrows.png') no-repeat 0 center; -} -.m-btn-plain-active, -.s-btn-plain-active { - border-color: #b7d2ff; - background-color: #eaf2ff; - color: #000000; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/messager.css b/vendor/FHC-vendor/easyui/themes/default/messager.css deleted file mode 100644 index c4f30684f..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/messager.css +++ /dev/null @@ -1,40 +0,0 @@ -.messager-body { - padding: 10px; - overflow: auto; -} -.messager-button { - text-align: center; - padding: 5px; -} -.messager-button .l-btn { - width: 70px; -} -.messager-icon { - float: left; - width: 32px; - height: 32px; - margin: 0 10px 10px 0; -} -.messager-error { - background: url('images/messager_icons.png') no-repeat scroll -64px 0; -} -.messager-info { - background: url('images/messager_icons.png') no-repeat scroll 0 0; -} -.messager-question { - background: url('images/messager_icons.png') no-repeat scroll -32px 0; -} -.messager-warning { - background: url('images/messager_icons.png') no-repeat scroll -96px 0; -} -.messager-progress { - padding: 10px; -} -.messager-p-msg { - margin-bottom: 5px; -} -.messager-body .messager-input { - width: 100%; - padding: 1px 0; - border: 1px solid #95B8E7; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/numberbox.css b/vendor/FHC-vendor/easyui/themes/default/numberbox.css deleted file mode 100644 index 03c7ea2ac..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/numberbox.css +++ /dev/null @@ -1,9 +0,0 @@ -.numberbox { - border: 1px solid #95B8E7; - margin: 0; - padding: 0 2px; - vertical-align: middle; -} -.textbox { - padding: 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/pagination.css b/vendor/FHC-vendor/easyui/themes/default/pagination.css deleted file mode 100644 index 1f8783c13..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/pagination.css +++ /dev/null @@ -1,71 +0,0 @@ -.pagination { - zoom: 1; -} -.pagination table { - float: left; - height: 30px; -} -.pagination td { - border: 0; -} -.pagination-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 3px 1px; -} -.pagination .pagination-num { - border-width: 1px; - border-style: solid; - margin: 0 2px; - padding: 2px; - width: 2em; - height: auto; -} -.pagination-page-list { - margin: 0px 6px; - padding: 1px 2px; - width: auto; - height: auto; - border-width: 1px; - border-style: solid; -} -.pagination-info { - float: right; - margin: 0 6px 0 0; - padding: 0; - height: 30px; - line-height: 30px; - font-size: 12px; -} -.pagination span { - font-size: 12px; -} -.pagination-link .l-btn-text { - width: 24px; - text-align: center; - margin: 0; -} -.pagination-first { - background: url('images/pagination_icons.png') no-repeat 0 center; -} -.pagination-prev { - background: url('images/pagination_icons.png') no-repeat -16px center; -} -.pagination-next { - background: url('images/pagination_icons.png') no-repeat -32px center; -} -.pagination-last { - background: url('images/pagination_icons.png') no-repeat -48px center; -} -.pagination-load { - background: url('images/pagination_icons.png') no-repeat -64px center; -} -.pagination-loading { - background: url('images/loading.gif') no-repeat center center; -} -.pagination-page-list, -.pagination .pagination-num { - border-color: #95B8E7; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/panel.css b/vendor/FHC-vendor/easyui/themes/default/panel.css deleted file mode 100644 index c32f3a0ea..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/panel.css +++ /dev/null @@ -1,142 +0,0 @@ -.panel { - overflow: hidden; - text-align: left; - margin: 0; - border: 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.panel-header, -.panel-body { - border-width: 1px; - border-style: solid; -} -.panel-header { - padding: 5px; - position: relative; -} -.panel-title { - background: url('images/blank.gif') no-repeat; -} -.panel-header-noborder { - border-width: 0 0 1px 0; -} -.panel-body { - overflow: auto; - border-top-width: 0; - padding: 0; -} -.panel-body-noheader { - border-top-width: 1px; -} -.panel-body-noborder { - border-width: 0px; -} -.panel-body-nobottom { - border-bottom-width: 0; -} -.panel-with-icon { - padding-left: 18px; -} -.panel-icon, -.panel-tool { - position: absolute; - top: 50%; - margin-top: -8px; - height: 16px; - overflow: hidden; -} -.panel-icon { - left: 5px; - width: 16px; -} -.panel-tool { - right: 5px; - width: auto; -} -.panel-tool a { - display: inline-block; - width: 16px; - height: 16px; - opacity: 0.6; - filter: alpha(opacity=60); - margin: 0 0 0 2px; - vertical-align: top; -} -.panel-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - background-color: #eaf2ff; - -moz-border-radius: 3px 3px 3px 3px; - -webkit-border-radius: 3px 3px 3px 3px; - border-radius: 3px 3px 3px 3px; -} -.panel-loading { - padding: 11px 0px 10px 30px; -} -.panel-noscroll { - overflow: hidden; -} -.panel-fit, -.panel-fit body { - height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: hidden; -} -.panel-loading { - background: url('images/loading.gif') no-repeat 10px 10px; -} -.panel-tool-close { - background: url('images/panel_tools.png') no-repeat -16px 0px; -} -.panel-tool-min { - background: url('images/panel_tools.png') no-repeat 0px 0px; -} -.panel-tool-max { - background: url('images/panel_tools.png') no-repeat 0px -16px; -} -.panel-tool-restore { - background: url('images/panel_tools.png') no-repeat -16px -16px; -} -.panel-tool-collapse { - background: url('images/panel_tools.png') no-repeat -32px 0; -} -.panel-tool-expand { - background: url('images/panel_tools.png') no-repeat -32px -16px; -} -.panel-header, -.panel-body { - border-color: #95B8E7; -} -.panel-header { - background-color: #E0ECFF; - background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%); - background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%); - background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%); - background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0); -} -.panel-body { - background-color: #ffffff; - color: #000000; - font-size: 12px; -} -.panel-title { - font-size: 12px; - font-weight: bold; - color: #0E2D5F; - height: 16px; - line-height: 16px; -} -.panel-footer { - border: 1px solid #95B8E7; - overflow: hidden; - background: #F4F4F4; -} -.panel-footer-noborder { - border-width: 1px 0 0 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/progressbar.css b/vendor/FHC-vendor/easyui/themes/default/progressbar.css deleted file mode 100644 index e4d30031c..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/progressbar.css +++ /dev/null @@ -1,32 +0,0 @@ -.progressbar { - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - overflow: hidden; - position: relative; -} -.progressbar-text { - text-align: center; - position: absolute; -} -.progressbar-value { - position: relative; - overflow: hidden; - width: 0; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.progressbar { - border-color: #95B8E7; -} -.progressbar-text { - color: #000000; - font-size: 12px; -} -.progressbar-value .progressbar-text { - background-color: #ffe48d; - color: #000000; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/propertygrid.css b/vendor/FHC-vendor/easyui/themes/default/propertygrid.css deleted file mode 100644 index 5f5fbb38d..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/propertygrid.css +++ /dev/null @@ -1,28 +0,0 @@ -.propertygrid .datagrid-view1 .datagrid-body td { - padding-bottom: 1px; - border-width: 0 1px 0 0; -} -.propertygrid .datagrid-group { - height: 21px; - overflow: hidden; - border-width: 0 0 1px 0; - border-style: solid; -} -.propertygrid .datagrid-group span { - font-weight: bold; -} -.propertygrid .datagrid-view1 .datagrid-body td { - border-color: #dddddd; -} -.propertygrid .datagrid-view1 .datagrid-group { - border-color: #E0ECFF; -} -.propertygrid .datagrid-view2 .datagrid-group { - border-color: #dddddd; -} -.propertygrid .datagrid-group, -.propertygrid .datagrid-view1 .datagrid-body, -.propertygrid .datagrid-view1 .datagrid-row-over, -.propertygrid .datagrid-view1 .datagrid-row-selected { - background: #E0ECFF; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/searchbox.css b/vendor/FHC-vendor/easyui/themes/default/searchbox.css deleted file mode 100644 index 5f5e01184..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/searchbox.css +++ /dev/null @@ -1,90 +0,0 @@ -.searchbox { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.searchbox .searchbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 0 2px; - vertical-align: top; -} -.searchbox .searchbox-prompt { - font-size: 12px; - color: #ccc; -} -.searchbox-button { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.searchbox-button-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.searchbox .l-btn-plain { - border: 0; - padding: 0; - vertical-align: top; - opacity: 0.6; - filter: alpha(opacity=60); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .l-btn-plain:hover { - border: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox a.m-btn-plain-active { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .m-btn-active { - border-width: 0 1px 0 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .textbox-button-right { - border-width: 0 0 0 1px; -} -.searchbox .textbox-button-left { - border-width: 0 1px 0 0; -} -.searchbox-button { - background: url('images/searchbox_button.png') no-repeat center center; -} -.searchbox { - border-color: #95B8E7; - background-color: #fff; -} -.searchbox .l-btn-plain { - background: #E0ECFF; -} -.searchbox .l-btn-plain-disabled, -.searchbox .l-btn-plain-disabled:hover { - opacity: 0.5; - filter: alpha(opacity=50); -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/slider.css b/vendor/FHC-vendor/easyui/themes/default/slider.css deleted file mode 100644 index f51f98636..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/slider.css +++ /dev/null @@ -1,101 +0,0 @@ -.slider-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.slider-h { - height: 22px; -} -.slider-v { - width: 22px; -} -.slider-inner { - position: relative; - height: 6px; - top: 7px; - border-width: 1px; - border-style: solid; - border-radius: 5px; -} -.slider-handle { - position: absolute; - display: block; - outline: none; - width: 20px; - height: 20px; - top: 50%; - margin-top: -10px; - margin-left: -10px; -} -.slider-tip { - position: absolute; - display: inline-block; - line-height: 12px; - font-size: 12px; - white-space: nowrap; - top: -22px; -} -.slider-rule { - position: relative; - top: 15px; -} -.slider-rule span { - position: absolute; - display: inline-block; - font-size: 0; - height: 5px; - border-width: 0 0 0 1px; - border-style: solid; -} -.slider-rulelabel { - position: relative; - top: 20px; -} -.slider-rulelabel span { - position: absolute; - display: inline-block; - font-size: 12px; -} -.slider-v .slider-inner { - width: 6px; - left: 7px; - top: 0; - float: left; -} -.slider-v .slider-handle { - left: 50%; - margin-top: -10px; -} -.slider-v .slider-tip { - left: -10px; - margin-top: -6px; -} -.slider-v .slider-rule { - float: left; - top: 0; - left: 16px; -} -.slider-v .slider-rule span { - width: 5px; - height: 'auto'; - border-left: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.slider-v .slider-rulelabel { - float: left; - top: 0; - left: 23px; -} -.slider-handle { - background: url('images/slider_handle.png') no-repeat; -} -.slider-inner { - border-color: #95B8E7; - background: #E0ECFF; -} -.slider-rule span { - border-color: #95B8E7; -} -.slider-rulelabel span { - color: #000000; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/spinner.css b/vendor/FHC-vendor/easyui/themes/default/spinner.css deleted file mode 100644 index 757e01780..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/spinner.css +++ /dev/null @@ -1,72 +0,0 @@ -.spinner { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.spinner .spinner-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0 2px; - vertical-align: baseline; -} -.spinner-arrow { - background-color: #E0ECFF; - display: inline-block; - overflow: hidden; - vertical-align: top; - margin: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - width: 18px; -} -.spinner-arrow-up, -.spinner-arrow-down { - opacity: 0.6; - filter: alpha(opacity=60); - display: block; - font-size: 1px; - width: 18px; - height: 10px; - width: 100%; - height: 50%; - color: #444; - outline-style: none; -} -.spinner-arrow-hover { - background-color: #eaf2ff; - opacity: 1.0; - filter: alpha(opacity=100); -} -.spinner-arrow-up:hover, -.spinner-arrow-down:hover { - opacity: 1.0; - filter: alpha(opacity=100); - background-color: #eaf2ff; -} -.textbox-icon-disabled .spinner-arrow-up:hover, -.textbox-icon-disabled .spinner-arrow-down:hover { - opacity: 0.6; - filter: alpha(opacity=60); - background-color: #E0ECFF; - cursor: default; -} -.spinner .textbox-icon-disabled { - opacity: 0.6; - filter: alpha(opacity=60); -} -.spinner-arrow-up { - background: url('images/spinner_arrows.png') no-repeat 1px center; -} -.spinner-arrow-down { - background: url('images/spinner_arrows.png') no-repeat -15px center; -} -.spinner { - border-color: #95B8E7; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/splitbutton.css b/vendor/FHC-vendor/easyui/themes/default/splitbutton.css deleted file mode 100644 index 86d6da58e..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/splitbutton.css +++ /dev/null @@ -1,12 +0,0 @@ -.s-btn:hover .m-btn-line, -.s-btn-active .m-btn-line, -.s-btn-plain-active .m-btn-line { - display: inline-block; -} -.l-btn:hover .s-btn-downarrow, -.s-btn-active .s-btn-downarrow, -.s-btn-plain-active .s-btn-downarrow { - border-style: solid; - border-color: #aac5e7; - border-width: 0 0 0 1px; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/switchbutton.css b/vendor/FHC-vendor/easyui/themes/default/switchbutton.css deleted file mode 100644 index 20818ab4c..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/switchbutton.css +++ /dev/null @@ -1,77 +0,0 @@ -.switchbutton { - text-decoration: none; - display: inline-block; - overflow: hidden; - vertical-align: middle; - margin: 0; - padding: 0; - cursor: pointer; - background: #bbb; - border: 1px solid #bbb; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-inner { - display: inline-block; - overflow: hidden; - position: relative; - top: -1px; - left: -1px; -} -.switchbutton-on, -.switchbutton-off, -.switchbutton-handle { - display: inline-block; - text-align: center; - height: 100%; - float: left; - font-size: 12px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-on { - background: #ffe48d; - color: #000000; -} -.switchbutton-off { - background-color: #ffffff; - color: #000000; -} -.switchbutton-on, -.switchbutton-reversed .switchbutton-off { - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.switchbutton-off, -.switchbutton-reversed .switchbutton-on { - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.switchbutton-handle { - position: absolute; - top: 0; - left: 50%; - background-color: #ffffff; - color: #000000; - border: 1px solid #bbb; - -moz-box-shadow: 0 0 3px 0 #bbb; - -webkit-box-shadow: 0 0 3px 0 #bbb; - box-shadow: 0 0 3px 0 #bbb; -} -.switchbutton-value { - position: absolute; - top: 0; - left: -5000px; -} -.switchbutton-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.switchbutton-disabled, -.switchbutton-readonly { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/tabs.css b/vendor/FHC-vendor/easyui/themes/default/tabs.css deleted file mode 100644 index d5d84e849..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/tabs.css +++ /dev/null @@ -1,413 +0,0 @@ -.tabs-container { - overflow: hidden; -} -.tabs-header { - border-width: 1px; - border-style: solid; - border-bottom-width: 0; - position: relative; - padding: 0; - padding-top: 2px; - overflow: hidden; -} -.tabs-scroller-left, -.tabs-scroller-right { - position: absolute; - top: auto; - bottom: 0; - width: 18px; - font-size: 1px; - display: none; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.tabs-scroller-left { - left: 0; -} -.tabs-scroller-right { - right: 0; -} -.tabs-tool { - position: absolute; - bottom: 0; - padding: 1px; - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.tabs-header-plain .tabs-tool { - padding: 0 1px; -} -.tabs-wrap { - position: relative; - left: 0; - overflow: hidden; - width: 100%; - margin: 0; - padding: 0; -} -.tabs-scrolling { - margin-left: 18px; - margin-right: 18px; -} -.tabs-disabled { - opacity: 0.3; - filter: alpha(opacity=30); -} -.tabs { - list-style-type: none; - height: 26px; - margin: 0px; - padding: 0px; - padding-left: 4px; - width: 50000px; - border-style: solid; - border-width: 0 0 1px 0; -} -.tabs li { - float: left; - display: inline-block; - margin: 0 4px -1px 0; - padding: 0; - position: relative; - border: 0; -} -.tabs li a.tabs-inner { - display: inline-block; - text-decoration: none; - margin: 0; - padding: 0 10px; - height: 25px; - line-height: 25px; - text-align: center; - white-space: nowrap; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.tabs li.tabs-selected a.tabs-inner { - font-weight: bold; - outline: none; -} -.tabs li.tabs-selected a:hover.tabs-inner { - cursor: default; - pointer: default; -} -.tabs li a.tabs-close, -.tabs-p-tool { - position: absolute; - font-size: 1px; - display: block; - height: 12px; - padding: 0; - top: 50%; - margin-top: -6px; - overflow: hidden; -} -.tabs li a.tabs-close { - width: 12px; - right: 5px; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs-p-tool { - right: 16px; -} -.tabs-p-tool a { - display: inline-block; - font-size: 1px; - width: 12px; - height: 12px; - margin: 0; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs li a:hover.tabs-close, -.tabs-p-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - cursor: hand; - cursor: pointer; -} -.tabs-with-icon { - padding-left: 18px; -} -.tabs-icon { - position: absolute; - width: 16px; - height: 16px; - left: 10px; - top: 50%; - margin-top: -8px; -} -.tabs-title { - font-size: 12px; -} -.tabs-closable { - padding-right: 8px; -} -.tabs-panels { - margin: 0px; - padding: 0px; - border-width: 1px; - border-style: solid; - border-top-width: 0; - overflow: hidden; -} -.tabs-header-bottom { - border-width: 0 1px 1px 1px; - padding: 0 0 2px 0; -} -.tabs-header-bottom .tabs { - border-width: 1px 0 0 0; -} -.tabs-header-bottom .tabs li { - margin: -1px 4px 0 0; -} -.tabs-header-bottom .tabs li a.tabs-inner { - -moz-border-radius: 0 0 5px 5px; - -webkit-border-radius: 0 0 5px 5px; - border-radius: 0 0 5px 5px; -} -.tabs-header-bottom .tabs-tool { - top: 0; -} -.tabs-header-bottom .tabs-scroller-left, -.tabs-header-bottom .tabs-scroller-right { - top: 0; - bottom: auto; -} -.tabs-panels-top { - border-width: 1px 1px 0 1px; -} -.tabs-header-left { - float: left; - border-width: 1px 0 1px 1px; - padding: 0; -} -.tabs-header-right { - float: right; - border-width: 1px 1px 1px 0; - padding: 0; -} -.tabs-header-left .tabs-wrap, -.tabs-header-right .tabs-wrap { - height: 100%; -} -.tabs-header-left .tabs { - height: 100%; - padding: 4px 0 0 2px; - border-width: 0 1px 0 0; -} -.tabs-header-right .tabs { - height: 100%; - padding: 4px 2px 0 0; - border-width: 0 0 0 1px; -} -.tabs-header-left .tabs li, -.tabs-header-right .tabs li { - display: block; - width: 100%; - position: relative; -} -.tabs-header-left .tabs li { - left: auto; - right: 0; - margin: 0 -1px 4px 0; - float: right; -} -.tabs-header-right .tabs li { - left: 0; - right: auto; - margin: 0 0 4px -1px; - float: left; -} -.tabs-justified li a.tabs-inner { - padding-left: 0; - padding-right: 0; -} -.tabs-header-left .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.tabs-header-right .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.tabs-panels-right { - float: right; - border-width: 1px 1px 1px 0; -} -.tabs-panels-left { - float: left; - border-width: 1px 0 1px 1px; -} -.tabs-header-noborder, -.tabs-panels-noborder { - border: 0px; -} -.tabs-header-plain { - border: 0px; - background: transparent; -} -.tabs-pill { - padding-bottom: 3px; -} -.tabs-header-bottom .tabs-pill { - padding-top: 3px; - padding-bottom: 0; -} -.tabs-header-left .tabs-pill { - padding-right: 3px; -} -.tabs-header-right .tabs-pill { - padding-left: 3px; -} -.tabs-header .tabs-pill li a.tabs-inner { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tabs-header-narrow, -.tabs-header-narrow .tabs-narrow { - padding: 0; -} -.tabs-narrow li, -.tabs-header-bottom .tabs-narrow li { - margin-left: 0; - margin-right: -1px; -} -.tabs-narrow li.tabs-last, -.tabs-header-bottom .tabs-narrow li.tabs-last { - margin-right: 0; -} -.tabs-header-left .tabs-narrow, -.tabs-header-right .tabs-narrow { - padding-top: 0; -} -.tabs-header-left .tabs-narrow li { - margin-bottom: -1px; - margin-right: -1px; -} -.tabs-header-left .tabs-narrow li.tabs-last, -.tabs-header-right .tabs-narrow li.tabs-last { - margin-bottom: 0; -} -.tabs-header-right .tabs-narrow li { - margin-bottom: -1px; - margin-left: -1px; -} -.tabs-scroller-left { - background: #E0ECFF url('images/tabs_icons.png') no-repeat 1px center; -} -.tabs-scroller-right { - background: #E0ECFF url('images/tabs_icons.png') no-repeat -15px center; -} -.tabs li a.tabs-close { - background: url('images/tabs_icons.png') no-repeat -34px center; -} -.tabs li a.tabs-inner:hover { - background: #eaf2ff; - color: #000000; - filter: none; -} -.tabs li.tabs-selected a.tabs-inner { - background-color: #ffffff; - color: #0E2D5F; - background: -webkit-linear-gradient(top,#EFF5FF 0,#ffffff 100%); - background: -moz-linear-gradient(top,#EFF5FF 0,#ffffff 100%); - background: -o-linear-gradient(top,#EFF5FF 0,#ffffff 100%); - background: linear-gradient(to bottom,#EFF5FF 0,#ffffff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#ffffff,GradientType=0); -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(top,#ffffff 0,#EFF5FF 100%); - background: -moz-linear-gradient(top,#ffffff 0,#EFF5FF 100%); - background: -o-linear-gradient(top,#ffffff 0,#EFF5FF 100%); - background: linear-gradient(to bottom,#ffffff 0,#EFF5FF 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#EFF5FF,GradientType=0); -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#EFF5FF 0,#ffffff 100%); - background: -moz-linear-gradient(left,#EFF5FF 0,#ffffff 100%); - background: -o-linear-gradient(left,#EFF5FF 0,#ffffff 100%); - background: linear-gradient(to right,#EFF5FF 0,#ffffff 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#ffffff,GradientType=1); -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#ffffff 0,#EFF5FF 100%); - background: -moz-linear-gradient(left,#ffffff 0,#EFF5FF 100%); - background: -o-linear-gradient(left,#ffffff 0,#EFF5FF 100%); - background: linear-gradient(to right,#ffffff 0,#EFF5FF 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#EFF5FF,GradientType=1); -} -.tabs li a.tabs-inner { - color: #0E2D5F; - background-color: #E0ECFF; - background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%); - background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%); - background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%); - background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0); -} -.tabs-header, -.tabs-tool { - background-color: #E0ECFF; -} -.tabs-header-plain { - background: transparent; -} -.tabs-header, -.tabs-scroller-left, -.tabs-scroller-right, -.tabs-tool, -.tabs, -.tabs-panels, -.tabs li a.tabs-inner, -.tabs li.tabs-selected a.tabs-inner, -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner, -.tabs-header-left .tabs li.tabs-selected a.tabs-inner, -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-color: #95B8E7; -} -.tabs-p-tool a:hover, -.tabs li a:hover.tabs-close, -.tabs-scroller-over { - background-color: #eaf2ff; -} -.tabs li.tabs-selected a.tabs-inner { - border-bottom: 1px solid #ffffff; -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - border-top: 1px solid #ffffff; -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - border-right: 1px solid #ffffff; -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-left: 1px solid #ffffff; -} -.tabs-header .tabs-pill li.tabs-selected a.tabs-inner { - background: #ffe48d; - color: #000000; - filter: none; - border-color: #95B8E7; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/textbox.css b/vendor/FHC-vendor/easyui/themes/default/textbox.css deleted file mode 100644 index 3ee9beda9..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/textbox.css +++ /dev/null @@ -1,90 +0,0 @@ -.textbox { - position: relative; - border: 1px solid #95B8E7; - background-color: #fff; - vertical-align: middle; - display: inline-block; - overflow: hidden; - white-space: nowrap; - margin: 0; - padding: 0; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox .textbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 4px; - white-space: normal; - vertical-align: top; - outline-style: none; - resize: none; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox textarea.textbox-text { - white-space: pre-wrap; -} -.textbox .textbox-prompt { - font-size: 12px; - color: #aaa; -} -.textbox .textbox-button, -.textbox .textbox-button:hover { - position: absolute; - top: 0; - padding: 0; - vertical-align: top; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.textbox-button-right, -.textbox-button-right:hover { - border-width: 0 0 0 1px; -} -.textbox-button-left, -.textbox-button-left:hover { - border-width: 0 1px 0 0; -} -.textbox-addon { - position: absolute; - top: 0; -} -.textbox-icon { - display: inline-block; - width: 18px; - height: 20px; - overflow: hidden; - vertical-align: top; - background-position: center center; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); - text-decoration: none; - outline-style: none; -} -.textbox-icon-disabled, -.textbox-icon-readonly { - cursor: default; -} -.textbox-icon:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.textbox-icon-disabled:hover { - opacity: 0.6; - filter: alpha(opacity=60); -} -.textbox-focused { - -moz-box-shadow: 0 0 3px 0 #95B8E7; - -webkit-box-shadow: 0 0 3px 0 #95B8E7; - box-shadow: 0 0 3px 0 #95B8E7; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/tooltip.css b/vendor/FHC-vendor/easyui/themes/default/tooltip.css deleted file mode 100644 index 9294d9da8..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/tooltip.css +++ /dev/null @@ -1,103 +0,0 @@ -.tooltip { - position: absolute; - display: none; - z-index: 9900000; - outline: none; - opacity: 1; - filter: alpha(opacity=100); - padding: 5px; - border-width: 1px; - border-style: solid; - border-radius: 5px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tooltip-content { - font-size: 12px; -} -.tooltip-arrow-outer, -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - line-height: 0; - font-size: 0; - border-style: solid; - border-width: 6px; - border-color: transparent; - _border-color: tomato; - _filter: chroma(color=tomato); -} -.tooltip-arrow { - display: none \9; -} -.tooltip-right .tooltip-arrow-outer { - left: 0; - top: 50%; - margin: -6px 0 0 -13px; -} -.tooltip-right .tooltip-arrow { - left: 0; - top: 50%; - margin: -6px 0 0 -12px; -} -.tooltip-left .tooltip-arrow-outer { - right: 0; - top: 50%; - margin: -6px -13px 0 0; -} -.tooltip-left .tooltip-arrow { - right: 0; - top: 50%; - margin: -6px -12px 0 0; -} -.tooltip-top .tooltip-arrow-outer { - bottom: 0; - left: 50%; - margin: 0 0 -13px -6px; -} -.tooltip-top .tooltip-arrow { - bottom: 0; - left: 50%; - margin: 0 0 -12px -6px; -} -.tooltip-bottom .tooltip-arrow-outer { - top: 0; - left: 50%; - margin: -13px 0 0 -6px; -} -.tooltip-bottom .tooltip-arrow { - top: 0; - left: 50%; - margin: -12px 0 0 -6px; -} -.tooltip { - background-color: #ffffff; - border-color: #95B8E7; - color: #000000; -} -.tooltip-right .tooltip-arrow-outer { - border-right-color: #95B8E7; -} -.tooltip-right .tooltip-arrow { - border-right-color: #ffffff; -} -.tooltip-left .tooltip-arrow-outer { - border-left-color: #95B8E7; -} -.tooltip-left .tooltip-arrow { - border-left-color: #ffffff; -} -.tooltip-top .tooltip-arrow-outer { - border-top-color: #95B8E7; -} -.tooltip-top .tooltip-arrow { - border-top-color: #ffffff; -} -.tooltip-bottom .tooltip-arrow-outer { - border-bottom-color: #95B8E7; -} -.tooltip-bottom .tooltip-arrow { - border-bottom-color: #ffffff; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/tree.css b/vendor/FHC-vendor/easyui/themes/default/tree.css deleted file mode 100644 index a22075b85..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/tree.css +++ /dev/null @@ -1,160 +0,0 @@ -.tree { - margin: 0; - padding: 0; - list-style-type: none; -} -.tree li { - white-space: nowrap; -} -.tree li ul { - list-style-type: none; - margin: 0; - padding: 0; -} -.tree-node { - height: 18px; - white-space: nowrap; - cursor: pointer; -} -.tree-hit { - cursor: pointer; -} -.tree-expanded, -.tree-collapsed, -.tree-folder, -.tree-file, -.tree-checkbox, -.tree-indent { - display: inline-block; - width: 16px; - height: 18px; - vertical-align: top; - overflow: hidden; -} -.tree-expanded { - background: url('images/tree_icons.png') no-repeat -18px 0px; -} -.tree-expanded-hover { - background: url('images/tree_icons.png') no-repeat -50px 0px; -} -.tree-collapsed { - background: url('images/tree_icons.png') no-repeat 0px 0px; -} -.tree-collapsed-hover { - background: url('images/tree_icons.png') no-repeat -32px 0px; -} -.tree-lines .tree-expanded, -.tree-lines .tree-root-first .tree-expanded { - background: url('images/tree_icons.png') no-repeat -144px 0; -} -.tree-lines .tree-collapsed, -.tree-lines .tree-root-first .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -128px 0; -} -.tree-lines .tree-node-last .tree-expanded, -.tree-lines .tree-root-one .tree-expanded { - background: url('images/tree_icons.png') no-repeat -80px 0; -} -.tree-lines .tree-node-last .tree-collapsed, -.tree-lines .tree-root-one .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -64px 0; -} -.tree-line { - background: url('images/tree_icons.png') no-repeat -176px 0; -} -.tree-join { - background: url('images/tree_icons.png') no-repeat -192px 0; -} -.tree-joinbottom { - background: url('images/tree_icons.png') no-repeat -160px 0; -} -.tree-folder { - background: url('images/tree_icons.png') no-repeat -208px 0; -} -.tree-folder-open { - background: url('images/tree_icons.png') no-repeat -224px 0; -} -.tree-file { - background: url('images/tree_icons.png') no-repeat -240px 0; -} -.tree-loading { - background: url('images/loading.gif') no-repeat center center; -} -.tree-checkbox0 { - background: url('images/tree_icons.png') no-repeat -208px -18px; -} -.tree-checkbox1 { - background: url('images/tree_icons.png') no-repeat -224px -18px; -} -.tree-checkbox2 { - background: url('images/tree_icons.png') no-repeat -240px -18px; -} -.tree-title { - font-size: 12px; - display: inline-block; - text-decoration: none; - vertical-align: top; - white-space: nowrap; - padding: 0 2px; - height: 18px; - line-height: 18px; -} -.tree-node-proxy { - font-size: 12px; - line-height: 20px; - padding: 0 2px 0 20px; - border-width: 1px; - border-style: solid; - z-index: 9900000; -} -.tree-dnd-icon { - display: inline-block; - position: absolute; - width: 16px; - height: 18px; - left: 2px; - top: 50%; - margin-top: -9px; -} -.tree-dnd-yes { - background: url('images/tree_icons.png') no-repeat -256px 0; -} -.tree-dnd-no { - background: url('images/tree_icons.png') no-repeat -256px -18px; -} -.tree-node-top { - border-top: 1px dotted red; -} -.tree-node-bottom { - border-bottom: 1px dotted red; -} -.tree-node-append .tree-title { - border: 1px dotted red; -} -.tree-editor { - border: 1px solid #ccc; - font-size: 12px; - height: 14px !important; - height: 18px; - line-height: 14px; - padding: 1px 2px; - width: 80px; - position: absolute; - top: 0; -} -.tree-node-proxy { - background-color: #ffffff; - color: #000000; - border-color: #95B8E7; -} -.tree-node-hover { - background: #eaf2ff; - color: #000000; -} -.tree-node-selected { - background: #ffe48d; - color: #000000; -} -.tree-node-hidden { - display: none; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/validatebox.css b/vendor/FHC-vendor/easyui/themes/default/validatebox.css deleted file mode 100644 index 1fc3ad64e..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/validatebox.css +++ /dev/null @@ -1,5 +0,0 @@ -.validatebox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; - color: #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/default/window.css b/vendor/FHC-vendor/easyui/themes/default/window.css deleted file mode 100644 index 06f77db20..000000000 --- a/vendor/FHC-vendor/easyui/themes/default/window.css +++ /dev/null @@ -1,94 +0,0 @@ -.window { - overflow: hidden; - padding: 5px; - border-width: 1px; - border-style: solid; -} -.window .window-header { - background: transparent; - padding: 0px 0px 6px 0px; -} -.window .window-body { - border-width: 1px; - border-style: solid; - border-top-width: 0px; -} -.window .window-body-noheader { - border-top-width: 1px; -} -.window .panel-body-nobottom { - border-bottom-width: 0; -} -.window .window-header .panel-icon, -.window .window-header .panel-tool { - top: 50%; - margin-top: -11px; -} -.window .window-header .panel-icon { - left: 1px; -} -.window .window-header .panel-tool { - right: 1px; -} -.window .window-header .panel-with-icon { - padding-left: 18px; -} -.window-proxy { - position: absolute; - overflow: hidden; -} -.window-proxy-mask { - position: absolute; - filter: alpha(opacity=5); - opacity: 0.05; -} -.window-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - filter: alpha(opacity=40); - opacity: 0.40; - font-size: 1px; - overflow: hidden; -} -.window, -.window-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.window-shadow { - background: #ccc; - -moz-box-shadow: 2px 2px 3px #cccccc; - -webkit-box-shadow: 2px 2px 3px #cccccc; - box-shadow: 2px 2px 3px #cccccc; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.window, -.window .window-body { - border-color: #95B8E7; -} -.window { - background-color: #E0ECFF; - background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%); - background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%); - background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%); - background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 20%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0); -} -.window-proxy { - border: 1px dashed #95B8E7; -} -.window-proxy-mask, -.window-mask { - background: #ccc; -} -.window .panel-footer { - border: 1px solid #95B8E7; - position: relative; - top: -1px; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/accordion.css b/vendor/FHC-vendor/easyui/themes/gray/accordion.css deleted file mode 100644 index 3cb451b16..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/accordion.css +++ /dev/null @@ -1,41 +0,0 @@ -.accordion { - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.accordion .accordion-header { - border-width: 0 0 1px; - cursor: pointer; -} -.accordion .accordion-body { - border-width: 0 0 1px; -} -.accordion-noborder { - border-width: 0; -} -.accordion-noborder .accordion-header { - border-width: 0 0 1px; -} -.accordion-noborder .accordion-body { - border-width: 0 0 1px; -} -.accordion-collapse { - background: url('images/accordion_arrows.png') no-repeat 0 0; -} -.accordion-expand { - background: url('images/accordion_arrows.png') no-repeat -16px 0; -} -.accordion { - background: #ffffff; - border-color: #D3D3D3; -} -.accordion .accordion-header { - background: #f3f3f3; - filter: none; -} -.accordion .accordion-header-selected { - background: #0092DC; -} -.accordion .accordion-header-selected .panel-title { - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/calendar.css b/vendor/FHC-vendor/easyui/themes/gray/calendar.css deleted file mode 100644 index 335310d6d..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/calendar.css +++ /dev/null @@ -1,197 +0,0 @@ -.calendar { - border-width: 1px; - border-style: solid; - padding: 1px; - overflow: hidden; -} -.calendar table { - table-layout: fixed; - border-collapse: separate; - font-size: 12px; - width: 100%; - height: 100%; -} -.calendar table td, -.calendar table th { - font-size: 12px; -} -.calendar-noborder { - border: 0; -} -.calendar-header { - position: relative; - height: 22px; -} -.calendar-title { - text-align: center; - height: 22px; -} -.calendar-title span { - position: relative; - display: inline-block; - top: 2px; - padding: 0 3px; - height: 18px; - line-height: 18px; - font-size: 12px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth, -.calendar-nextmonth, -.calendar-prevyear, -.calendar-nextyear { - position: absolute; - top: 50%; - margin-top: -7px; - width: 14px; - height: 14px; - cursor: pointer; - font-size: 1px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth { - left: 20px; - background: url('images/calendar_arrows.png') no-repeat -18px -2px; -} -.calendar-nextmonth { - right: 20px; - background: url('images/calendar_arrows.png') no-repeat -34px -2px; -} -.calendar-prevyear { - left: 3px; - background: url('images/calendar_arrows.png') no-repeat -1px -2px; -} -.calendar-nextyear { - right: 3px; - background: url('images/calendar_arrows.png') no-repeat -49px -2px; -} -.calendar-body { - position: relative; -} -.calendar-body th, -.calendar-body td { - text-align: center; -} -.calendar-day { - border: 0; - padding: 1px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-other-month { - opacity: 0.3; - filter: alpha(opacity=30); -} -.calendar-disabled { - opacity: 0.6; - filter: alpha(opacity=60); - cursor: default; -} -.calendar-menu { - position: absolute; - top: 0; - left: 0; - width: 180px; - height: 150px; - padding: 5px; - font-size: 12px; - display: none; - overflow: hidden; -} -.calendar-menu-year-inner { - text-align: center; - padding-bottom: 5px; -} -.calendar-menu-year { - width: 40px; - text-align: center; - border-width: 1px; - border-style: solid; - margin: 0; - padding: 2px; - font-weight: bold; - font-size: 12px; -} -.calendar-menu-prev, -.calendar-menu-next { - display: inline-block; - width: 21px; - height: 21px; - vertical-align: top; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-menu-prev { - margin-right: 10px; - background: url('images/calendar_arrows.png') no-repeat 2px 2px; -} -.calendar-menu-next { - margin-left: 10px; - background: url('images/calendar_arrows.png') no-repeat -45px 2px; -} -.calendar-menu-month { - text-align: center; - cursor: pointer; - font-weight: bold; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-body th, -.calendar-menu-month { - color: #4d4d4d; -} -.calendar-day { - color: #000000; -} -.calendar-sunday { - color: #CC2222; -} -.calendar-saturday { - color: #00ee00; -} -.calendar-today { - color: #0000ff; -} -.calendar-menu-year { - border-color: #D3D3D3; -} -.calendar { - border-color: #D3D3D3; -} -.calendar-header { - background: #f3f3f3; -} -.calendar-body, -.calendar-menu { - background: #ffffff; -} -.calendar-body th { - background: #fafafa; - padding: 2px 0; -} -.calendar-hover, -.calendar-nav-hover, -.calendar-menu-hover { - background-color: #e2e2e2; - color: #000000; -} -.calendar-hover { - border: 1px solid #ccc; - padding: 0; -} -.calendar-selected { - background-color: #0092DC; - color: #fff; - border: 1px solid #0070a9; - padding: 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/combo.css b/vendor/FHC-vendor/easyui/themes/gray/combo.css deleted file mode 100644 index 3c76f2cc0..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/combo.css +++ /dev/null @@ -1,60 +0,0 @@ -.combo { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.combo .combo-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0px 2px; - vertical-align: baseline; -} -.combo-arrow { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.combo-arrow-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.combo-panel { - overflow: auto; -} -.combo-arrow { - background: url('images/combo_arrow.png') no-repeat center center; -} -.combo-panel { - background-color: #ffffff; -} -.combo { - border-color: #D3D3D3; - background-color: #fff; -} -.combo-arrow { - background-color: #f3f3f3; -} -.combo-arrow-hover { - background-color: #e2e2e2; -} -.combo-arrow:hover { - background-color: #e2e2e2; -} -.combo .textbox-icon-disabled:hover { - cursor: default; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/combobox.css b/vendor/FHC-vendor/easyui/themes/gray/combobox.css deleted file mode 100644 index 68b626239..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/combobox.css +++ /dev/null @@ -1,24 +0,0 @@ -.combobox-item, -.combobox-group { - font-size: 12px; - padding: 3px; - padding-right: 0px; -} -.combobox-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.combobox-gitem { - padding-left: 10px; -} -.combobox-group { - font-weight: bold; -} -.combobox-item-hover { - background-color: #e2e2e2; - color: #000000; -} -.combobox-item-selected { - background-color: #0092DC; - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/datagrid.css b/vendor/FHC-vendor/easyui/themes/gray/datagrid.css deleted file mode 100644 index 9d86b318a..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/datagrid.css +++ /dev/null @@ -1,276 +0,0 @@ -.datagrid .panel-body { - overflow: hidden; - position: relative; -} -.datagrid-view { - position: relative; - overflow: hidden; -} -.datagrid-view1, -.datagrid-view2 { - position: absolute; - overflow: hidden; - top: 0; -} -.datagrid-view1 { - left: 0; -} -.datagrid-view2 { - right: 0; -} -.datagrid-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - opacity: 0.3; - filter: alpha(opacity=30); - display: none; -} -.datagrid-mask-msg { - position: absolute; - top: 50%; - margin-top: -20px; - padding: 10px 5px 10px 30px; - width: auto; - height: 16px; - border-width: 2px; - border-style: solid; - display: none; -} -.datagrid-sort-icon { - padding: 0; - display: none; -} -.datagrid-toolbar { - height: auto; - padding: 1px 2px; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.datagrid .datagrid-pager { - display: block; - margin: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.datagrid .datagrid-pager-top { - border-width: 0 0 1px 0; -} -.datagrid-header { - overflow: hidden; - cursor: default; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-header-inner { - float: left; - width: 10000px; -} -.datagrid-header-row, -.datagrid-row { - height: 25px; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-width: 0 1px 1px 0; - border-style: dotted; - margin: 0; - padding: 0; -} -.datagrid-cell, -.datagrid-cell-group, -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - margin: 0; - padding: 0 4px; - white-space: nowrap; - word-wrap: normal; - overflow: hidden; - height: 18px; - line-height: 18px; - font-size: 12px; -} -.datagrid-header .datagrid-cell { - height: auto; -} -.datagrid-header .datagrid-cell span { - font-size: 12px; -} -.datagrid-cell-group { - text-align: center; - text-overflow: ellipsis; -} -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - width: 30px; - text-align: center; - margin: 0; - padding: 0; -} -.datagrid-body { - margin: 0; - padding: 0; - overflow: auto; - zoom: 1; -} -.datagrid-view1 .datagrid-body-inner { - padding-bottom: 20px; -} -.datagrid-view1 .datagrid-body { - overflow: hidden; -} -.datagrid-footer { - overflow: hidden; -} -.datagrid-footer-inner { - border-width: 1px 0 0 0; - border-style: solid; - width: 10000px; - float: left; -} -.datagrid-row-editing .datagrid-cell { - height: auto; -} -.datagrid-header-check, -.datagrid-cell-check { - padding: 0; - width: 27px; - height: 18px; - font-size: 1px; - text-align: center; - overflow: hidden; -} -.datagrid-header-check input, -.datagrid-cell-check input { - margin: 0; - padding: 0; - width: 15px; - height: 18px; -} -.datagrid-resize-proxy { - position: absolute; - width: 1px; - height: 10000px; - top: 0; - cursor: e-resize; - display: none; -} -.datagrid-body .datagrid-editable { - margin: 0; - padding: 0; -} -.datagrid-body .datagrid-editable table { - width: 100%; - height: 100%; -} -.datagrid-body .datagrid-editable td { - border: 0; - margin: 0; - padding: 0; -} -.datagrid-view .datagrid-editable-input { - margin: 0; - padding: 2px 4px; - border: 1px solid #D3D3D3; - font-size: 12px; - outline-style: none; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.datagrid-sort .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -64px center; -} -.datagrid-sort-desc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -16px center; -} -.datagrid-sort-asc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat 0px center; -} -.datagrid-row-collapse { - background: url('images/datagrid_icons.png') no-repeat -48px center; -} -.datagrid-row-expand { - background: url('images/datagrid_icons.png') no-repeat -32px center; -} -.datagrid-mask-msg { - background: #ffffff url('images/loading.gif') no-repeat scroll 5px center; -} -.datagrid-header, -.datagrid-td-rownumber { - background-color: #fafafa; - background: -webkit-linear-gradient(top,#fdfdfd 0,#f5f5f5 100%); - background: -moz-linear-gradient(top,#fdfdfd 0,#f5f5f5 100%); - background: -o-linear-gradient(top,#fdfdfd 0,#f5f5f5 100%); - background: linear-gradient(to bottom,#fdfdfd 0,#f5f5f5 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fdfdfd,endColorstr=#f5f5f5,GradientType=0); -} -.datagrid-cell-rownumber { - color: #000000; -} -.datagrid-resize-proxy { - background: #bfbfbf; -} -.datagrid-mask { - background: #ccc; -} -.datagrid-mask-msg { - border-color: #D3D3D3; -} -.datagrid-toolbar, -.datagrid-pager { - background: #fafafa; -} -.datagrid-header, -.datagrid-toolbar, -.datagrid-pager, -.datagrid-footer-inner { - border-color: #ddd; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-color: #ccc; -} -.datagrid-htable, -.datagrid-btable, -.datagrid-ftable { - color: #000000; - border-collapse: separate; -} -.datagrid-row-alt { - background: #fafafa; -} -.datagrid-row-over, -.datagrid-header td.datagrid-header-over { - background: #e2e2e2; - color: #000000; - cursor: default; -} -.datagrid-row-selected { - background: #0092DC; - color: #fff; -} -.datagrid-row-editing .textbox, -.datagrid-row-editing .textbox-text { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/datalist.css b/vendor/FHC-vendor/easyui/themes/gray/datalist.css deleted file mode 100644 index de149ef05..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/datalist.css +++ /dev/null @@ -1,95 +0,0 @@ -.datalist .datagrid-header { - border-width: 0; -} -.datalist .datagrid-group, -.m-list .m-list-group { - height: 25px; - line-height: 25px; - font-weight: bold; - overflow: hidden; - background-color: #fafafa; - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ccc; -} -.datalist .datagrid-group-expander { - display: none; -} -.datalist .datagrid-group-title { - padding: 0 4px; -} -.datalist .datagrid-btable { - width: 100%; - table-layout: fixed; -} -.datalist .datagrid-row td { - border-style: solid; - border-left-color: transparent; - border-right-color: transparent; - border-bottom-width: 0; -} -.datalist-lines .datagrid-row td { - border-bottom-width: 1px; -} -.datalist .datagrid-cell, -.m-list li { - width: auto; - height: auto; - padding: 2px 4px; - line-height: 18px; - position: relative; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link, -.m-list li>a { - display: block; - position: relative; - cursor: pointer; - color: #000000; - text-decoration: none; - overflow: hidden; - margin: -2px -4px; - padding: 2px 4px; - padding-right: 16px; - line-height: 18px; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link::after, -.m-list li>a::after { - position: absolute; - display: block; - width: 8px; - height: 8px; - content: ''; - right: 6px; - top: 50%; - margin-top: -4px; - border-style: solid; - border-width: 1px 1px 0 0; - -ms-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); -} -.m-list { - margin: 0; - padding: 0; - list-style: none; -} -.m-list li { - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ccc; -} -.m-list li>a:hover { - background: #e2e2e2; - color: #000000; -} -.m-list .m-list-group { - padding: 0 4px; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/datebox.css b/vendor/FHC-vendor/easyui/themes/gray/datebox.css deleted file mode 100644 index 8c4135034..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/datebox.css +++ /dev/null @@ -1,36 +0,0 @@ -.datebox-calendar-inner { - height: 180px; -} -.datebox-button { - height: 18px; - padding: 2px 5px; - text-align: center; -} -.datebox-button a { - font-size: 12px; - font-weight: bold; - text-decoration: none; - opacity: 0.6; - filter: alpha(opacity=60); -} -.datebox-button a:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.datebox-current, -.datebox-close { - float: left; -} -.datebox-close { - float: right; -} -.datebox .combo-arrow { - background-image: url('images/datebox_arrow.png'); - background-position: center center; -} -.datebox-button { - background-color: #fafafa; -} -.datebox-button a { - color: #444; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/dialog.css b/vendor/FHC-vendor/easyui/themes/gray/dialog.css deleted file mode 100644 index b1ff52fa1..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/dialog.css +++ /dev/null @@ -1,32 +0,0 @@ -.dialog-content { - overflow: auto; -} -.dialog-toolbar { - padding: 2px 5px; -} -.dialog-tool-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.dialog-button { - padding: 5px; - text-align: right; -} -.dialog-button .l-btn { - margin-left: 5px; -} -.dialog-toolbar, -.dialog-button { - background: #fafafa; - border-width: 1px; - border-style: solid; -} -.dialog-toolbar { - border-color: #D3D3D3 #D3D3D3 #ddd #D3D3D3; -} -.dialog-button { - border-color: #ddd #D3D3D3 #D3D3D3 #D3D3D3; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/easyui.css b/vendor/FHC-vendor/easyui/themes/gray/easyui.css deleted file mode 100644 index 400a24a43..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/easyui.css +++ /dev/null @@ -1,2869 +0,0 @@ -.panel { - overflow: hidden; - text-align: left; - margin: 0; - border: 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.panel-header, -.panel-body { - border-width: 1px; - border-style: solid; -} -.panel-header { - padding: 5px; - position: relative; -} -.panel-title { - background: url('images/blank.gif') no-repeat; -} -.panel-header-noborder { - border-width: 0 0 1px 0; -} -.panel-body { - overflow: auto; - border-top-width: 0; - padding: 0; -} -.panel-body-noheader { - border-top-width: 1px; -} -.panel-body-noborder { - border-width: 0px; -} -.panel-body-nobottom { - border-bottom-width: 0; -} -.panel-with-icon { - padding-left: 18px; -} -.panel-icon, -.panel-tool { - position: absolute; - top: 50%; - margin-top: -8px; - height: 16px; - overflow: hidden; -} -.panel-icon { - left: 5px; - width: 16px; -} -.panel-tool { - right: 5px; - width: auto; -} -.panel-tool a { - display: inline-block; - width: 16px; - height: 16px; - opacity: 0.6; - filter: alpha(opacity=60); - margin: 0 0 0 2px; - vertical-align: top; -} -.panel-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - background-color: #e2e2e2; - -moz-border-radius: 3px 3px 3px 3px; - -webkit-border-radius: 3px 3px 3px 3px; - border-radius: 3px 3px 3px 3px; -} -.panel-loading { - padding: 11px 0px 10px 30px; -} -.panel-noscroll { - overflow: hidden; -} -.panel-fit, -.panel-fit body { - height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: hidden; -} -.panel-loading { - background: url('images/loading.gif') no-repeat 10px 10px; -} -.panel-tool-close { - background: url('images/panel_tools.png') no-repeat -16px 0px; -} -.panel-tool-min { - background: url('images/panel_tools.png') no-repeat 0px 0px; -} -.panel-tool-max { - background: url('images/panel_tools.png') no-repeat 0px -16px; -} -.panel-tool-restore { - background: url('images/panel_tools.png') no-repeat -16px -16px; -} -.panel-tool-collapse { - background: url('images/panel_tools.png') no-repeat -32px 0; -} -.panel-tool-expand { - background: url('images/panel_tools.png') no-repeat -32px -16px; -} -.panel-header, -.panel-body { - border-color: #D3D3D3; -} -.panel-header { - background-color: #f3f3f3; - background: -webkit-linear-gradient(top,#F8F8F8 0,#eeeeee 100%); - background: -moz-linear-gradient(top,#F8F8F8 0,#eeeeee 100%); - background: -o-linear-gradient(top,#F8F8F8 0,#eeeeee 100%); - background: linear-gradient(to bottom,#F8F8F8 0,#eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F8F8F8,endColorstr=#eeeeee,GradientType=0); -} -.panel-body { - background-color: #ffffff; - color: #000000; - font-size: 12px; -} -.panel-title { - font-size: 12px; - font-weight: bold; - color: #575765; - height: 16px; - line-height: 16px; -} -.panel-footer { - border: 1px solid #D3D3D3; - overflow: hidden; - background: #fafafa; -} -.panel-footer-noborder { - border-width: 1px 0 0 0; -} -.accordion { - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.accordion .accordion-header { - border-width: 0 0 1px; - cursor: pointer; -} -.accordion .accordion-body { - border-width: 0 0 1px; -} -.accordion-noborder { - border-width: 0; -} -.accordion-noborder .accordion-header { - border-width: 0 0 1px; -} -.accordion-noborder .accordion-body { - border-width: 0 0 1px; -} -.accordion-collapse { - background: url('images/accordion_arrows.png') no-repeat 0 0; -} -.accordion-expand { - background: url('images/accordion_arrows.png') no-repeat -16px 0; -} -.accordion { - background: #ffffff; - border-color: #D3D3D3; -} -.accordion .accordion-header { - background: #f3f3f3; - filter: none; -} -.accordion .accordion-header-selected { - background: #0092DC; -} -.accordion .accordion-header-selected .panel-title { - color: #fff; -} -.window { - overflow: hidden; - padding: 5px; - border-width: 1px; - border-style: solid; -} -.window .window-header { - background: transparent; - padding: 0px 0px 6px 0px; -} -.window .window-body { - border-width: 1px; - border-style: solid; - border-top-width: 0px; -} -.window .window-body-noheader { - border-top-width: 1px; -} -.window .panel-body-nobottom { - border-bottom-width: 0; -} -.window .window-header .panel-icon, -.window .window-header .panel-tool { - top: 50%; - margin-top: -11px; -} -.window .window-header .panel-icon { - left: 1px; -} -.window .window-header .panel-tool { - right: 1px; -} -.window .window-header .panel-with-icon { - padding-left: 18px; -} -.window-proxy { - position: absolute; - overflow: hidden; -} -.window-proxy-mask { - position: absolute; - filter: alpha(opacity=5); - opacity: 0.05; -} -.window-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - filter: alpha(opacity=40); - opacity: 0.40; - font-size: 1px; - overflow: hidden; -} -.window, -.window-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.window-shadow { - background: #ccc; - -moz-box-shadow: 2px 2px 3px #cccccc; - -webkit-box-shadow: 2px 2px 3px #cccccc; - box-shadow: 2px 2px 3px #cccccc; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.window, -.window .window-body { - border-color: #D3D3D3; -} -.window { - background-color: #f3f3f3; - background: -webkit-linear-gradient(top,#F8F8F8 0,#eeeeee 20%); - background: -moz-linear-gradient(top,#F8F8F8 0,#eeeeee 20%); - background: -o-linear-gradient(top,#F8F8F8 0,#eeeeee 20%); - background: linear-gradient(to bottom,#F8F8F8 0,#eeeeee 20%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F8F8F8,endColorstr=#eeeeee,GradientType=0); -} -.window-proxy { - border: 1px dashed #D3D3D3; -} -.window-proxy-mask, -.window-mask { - background: #ccc; -} -.window .panel-footer { - border: 1px solid #D3D3D3; - position: relative; - top: -1px; -} -.dialog-content { - overflow: auto; -} -.dialog-toolbar { - padding: 2px 5px; -} -.dialog-tool-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.dialog-button { - padding: 5px; - text-align: right; -} -.dialog-button .l-btn { - margin-left: 5px; -} -.dialog-toolbar, -.dialog-button { - background: #fafafa; - border-width: 1px; - border-style: solid; -} -.dialog-toolbar { - border-color: #D3D3D3 #D3D3D3 #ddd #D3D3D3; -} -.dialog-button { - border-color: #ddd #D3D3D3 #D3D3D3 #D3D3D3; -} -.l-btn { - text-decoration: none; - display: inline-block; - overflow: hidden; - margin: 0; - padding: 0; - cursor: pointer; - outline: none; - text-align: center; - vertical-align: middle; - line-height: normal; -} -.l-btn-plain { - border-width: 0; - padding: 1px; -} -.l-btn-left { - display: inline-block; - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - vertical-align: top; -} -.l-btn-text { - display: inline-block; - vertical-align: top; - width: auto; - line-height: 24px; - font-size: 12px; - padding: 0; - margin: 0 4px; -} -.l-btn-icon { - display: inline-block; - width: 16px; - height: 16px; - line-height: 16px; - position: absolute; - top: 50%; - margin-top: -8px; - font-size: 1px; -} -.l-btn span span .l-btn-empty { - display: inline-block; - margin: 0; - width: 16px; - height: 24px; - font-size: 1px; - vertical-align: top; -} -.l-btn span .l-btn-icon-left { - padding: 0 0 0 20px; - background-position: left center; -} -.l-btn span .l-btn-icon-right { - padding: 0 20px 0 0; - background-position: right center; -} -.l-btn-icon-left .l-btn-text { - margin: 0 4px 0 24px; -} -.l-btn-icon-left .l-btn-icon { - left: 4px; -} -.l-btn-icon-right .l-btn-text { - margin: 0 24px 0 4px; -} -.l-btn-icon-right .l-btn-icon { - right: 4px; -} -.l-btn-icon-top .l-btn-text { - margin: 20px 4px 0 4px; -} -.l-btn-icon-top .l-btn-icon { - top: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-icon-bottom .l-btn-text { - margin: 0 4px 20px 4px; -} -.l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-left .l-btn-empty { - margin: 0 4px; - width: 16px; -} -.l-btn-plain:hover { - padding: 0; -} -.l-btn-focus { - outline: #0000FF dotted thin; -} -.l-btn-large .l-btn-text { - line-height: 40px; -} -.l-btn-large .l-btn-icon { - width: 32px; - height: 32px; - line-height: 32px; - margin-top: -16px; -} -.l-btn-large .l-btn-icon-left .l-btn-text { - margin-left: 40px; -} -.l-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.l-btn-large .l-btn-icon-top .l-btn-text { - margin-top: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-top .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-left .l-btn-empty { - margin: 0 4px; - width: 32px; -} -.l-btn { - color: #444; - background: #fafafa; - background-repeat: repeat-x; - border: 1px solid #bbb; - background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0); - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn:hover { - background: #e2e2e2; - color: #000000; - border: 1px solid #ccc; - filter: none; -} -.l-btn-plain { - background: transparent; - border-width: 0; - filter: none; -} -.l-btn-outline { - border-width: 1px; - border-color: #ccc; - padding: 0; -} -.l-btn-plain:hover { - background: #e2e2e2; - color: #000000; - border: 1px solid #ccc; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn-disabled, -.l-btn-disabled:hover { - opacity: 0.5; - cursor: default; - background: #fafafa; - color: #444; - background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0); -} -.l-btn-disabled .l-btn-text, -.l-btn-disabled .l-btn-icon { - filter: alpha(opacity=50); -} -.l-btn-plain-disabled, -.l-btn-plain-disabled:hover { - background: transparent; - filter: alpha(opacity=50); -} -.l-btn-selected, -.l-btn-selected:hover { - background: #ddd; - filter: none; -} -.l-btn-plain-selected, -.l-btn-plain-selected:hover { - background: #ddd; -} -.textbox { - position: relative; - border: 1px solid #D3D3D3; - background-color: #fff; - vertical-align: middle; - display: inline-block; - overflow: hidden; - white-space: nowrap; - margin: 0; - padding: 0; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox .textbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 4px; - white-space: normal; - vertical-align: top; - outline-style: none; - resize: none; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox textarea.textbox-text { - white-space: pre-wrap; -} -.textbox .textbox-prompt { - font-size: 12px; - color: #aaa; -} -.textbox .textbox-button, -.textbox .textbox-button:hover { - position: absolute; - top: 0; - padding: 0; - vertical-align: top; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.textbox-button-right, -.textbox-button-right:hover { - border-width: 0 0 0 1px; -} -.textbox-button-left, -.textbox-button-left:hover { - border-width: 0 1px 0 0; -} -.textbox-addon { - position: absolute; - top: 0; -} -.textbox-icon { - display: inline-block; - width: 18px; - height: 20px; - overflow: hidden; - vertical-align: top; - background-position: center center; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); - text-decoration: none; - outline-style: none; -} -.textbox-icon-disabled, -.textbox-icon-readonly { - cursor: default; -} -.textbox-icon:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.textbox-icon-disabled:hover { - opacity: 0.6; - filter: alpha(opacity=60); -} -.textbox-focused { - -moz-box-shadow: 0 0 3px 0 #D3D3D3; - -webkit-box-shadow: 0 0 3px 0 #D3D3D3; - box-shadow: 0 0 3px 0 #D3D3D3; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.filebox .textbox-value { - vertical-align: top; - position: absolute; - top: 0; - left: -5000px; -} -.filebox-label { - display: inline-block; - position: absolute; - width: 100%; - height: 100%; - cursor: pointer; - left: 0; - top: 0; - z-index: 10; - background: url('images/blank.gif') no-repeat; -} -.l-btn-disabled .filebox-label { - cursor: default; -} -.combo { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.combo .combo-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0px 2px; - vertical-align: baseline; -} -.combo-arrow { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.combo-arrow-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.combo-panel { - overflow: auto; -} -.combo-arrow { - background: url('images/combo_arrow.png') no-repeat center center; -} -.combo-panel { - background-color: #ffffff; -} -.combo { - border-color: #D3D3D3; - background-color: #fff; -} -.combo-arrow { - background-color: #f3f3f3; -} -.combo-arrow-hover { - background-color: #e2e2e2; -} -.combo-arrow:hover { - background-color: #e2e2e2; -} -.combo .textbox-icon-disabled:hover { - cursor: default; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.combobox-item, -.combobox-group { - font-size: 12px; - padding: 3px; - padding-right: 0px; -} -.combobox-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.combobox-gitem { - padding-left: 10px; -} -.combobox-group { - font-weight: bold; -} -.combobox-item-hover { - background-color: #e2e2e2; - color: #000000; -} -.combobox-item-selected { - background-color: #0092DC; - color: #fff; -} -.layout { - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - z-index: 0; -} -.layout-panel { - position: absolute; - overflow: hidden; -} -.layout-body { - min-width: 1px; - min-height: 1px; -} -.layout-panel-east, -.layout-panel-west { - z-index: 2; -} -.layout-panel-north, -.layout-panel-south { - z-index: 3; -} -.layout-expand { - position: absolute; - padding: 0px; - font-size: 1px; - cursor: pointer; - z-index: 1; -} -.layout-expand .panel-header, -.layout-expand .panel-body { - background: transparent; - filter: none; - overflow: hidden; -} -.layout-expand .panel-header { - border-bottom-width: 0px; -} -.layout-expand .panel-body { - position: relative; -} -.layout-expand .panel-body .panel-icon { - margin-top: 0; - top: 0; - left: 50%; - margin-left: -8px; -} -.layout-expand-west .panel-header .panel-icon, -.layout-expand-east .panel-header .panel-icon { - display: none; -} -.layout-expand-title { - position: absolute; - top: 0; - left: 21px; - white-space: nowrap; - word-wrap: normal; - -webkit-transform: rotate(90deg); - -webkit-transform-origin: 0 0; - -moz-transform: rotate(90deg); - -moz-transform-origin: 0 0; - -o-transform: rotate(90deg); - -o-transform-origin: 0 0; - transform: rotate(90deg); - transform-origin: 0 0; -} -.layout-expand-with-icon { - top: 18px; -} -.layout-expand .panel-body-noheader .layout-expand-title, -.layout-expand .panel-body-noheader .panel-icon { - top: 5px; -} -.layout-expand .panel-body-noheader .layout-expand-with-icon { - top: 23px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - position: absolute; - font-size: 1px; - display: none; - z-index: 5; -} -.layout-split-proxy-h { - width: 5px; - cursor: e-resize; -} -.layout-split-proxy-v { - height: 5px; - cursor: n-resize; -} -.layout-mask { - position: absolute; - background: #fafafa; - filter: alpha(opacity=10); - opacity: 0.10; - z-index: 4; -} -.layout-button-up { - background: url('images/layout_arrows.png') no-repeat -16px -16px; -} -.layout-button-down { - background: url('images/layout_arrows.png') no-repeat -16px 0; -} -.layout-button-left { - background: url('images/layout_arrows.png') no-repeat 0 0; -} -.layout-button-right { - background: url('images/layout_arrows.png') no-repeat 0 -16px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - background-color: #bfbfbf; -} -.layout-split-north { - border-bottom: 5px solid #efefef; -} -.layout-split-south { - border-top: 5px solid #efefef; -} -.layout-split-east { - border-left: 5px solid #efefef; -} -.layout-split-west { - border-right: 5px solid #efefef; -} -.layout-expand { - background-color: #f3f3f3; -} -.layout-expand-over { - background-color: #f3f3f3; -} -.tabs-container { - overflow: hidden; -} -.tabs-header { - border-width: 1px; - border-style: solid; - border-bottom-width: 0; - position: relative; - padding: 0; - padding-top: 2px; - overflow: hidden; -} -.tabs-scroller-left, -.tabs-scroller-right { - position: absolute; - top: auto; - bottom: 0; - width: 18px; - font-size: 1px; - display: none; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.tabs-scroller-left { - left: 0; -} -.tabs-scroller-right { - right: 0; -} -.tabs-tool { - position: absolute; - bottom: 0; - padding: 1px; - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.tabs-header-plain .tabs-tool { - padding: 0 1px; -} -.tabs-wrap { - position: relative; - left: 0; - overflow: hidden; - width: 100%; - margin: 0; - padding: 0; -} -.tabs-scrolling { - margin-left: 18px; - margin-right: 18px; -} -.tabs-disabled { - opacity: 0.3; - filter: alpha(opacity=30); -} -.tabs { - list-style-type: none; - height: 26px; - margin: 0px; - padding: 0px; - padding-left: 4px; - width: 50000px; - border-style: solid; - border-width: 0 0 1px 0; -} -.tabs li { - float: left; - display: inline-block; - margin: 0 4px -1px 0; - padding: 0; - position: relative; - border: 0; -} -.tabs li a.tabs-inner { - display: inline-block; - text-decoration: none; - margin: 0; - padding: 0 10px; - height: 25px; - line-height: 25px; - text-align: center; - white-space: nowrap; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.tabs li.tabs-selected a.tabs-inner { - font-weight: bold; - outline: none; -} -.tabs li.tabs-selected a:hover.tabs-inner { - cursor: default; - pointer: default; -} -.tabs li a.tabs-close, -.tabs-p-tool { - position: absolute; - font-size: 1px; - display: block; - height: 12px; - padding: 0; - top: 50%; - margin-top: -6px; - overflow: hidden; -} -.tabs li a.tabs-close { - width: 12px; - right: 5px; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs-p-tool { - right: 16px; -} -.tabs-p-tool a { - display: inline-block; - font-size: 1px; - width: 12px; - height: 12px; - margin: 0; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs li a:hover.tabs-close, -.tabs-p-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - cursor: hand; - cursor: pointer; -} -.tabs-with-icon { - padding-left: 18px; -} -.tabs-icon { - position: absolute; - width: 16px; - height: 16px; - left: 10px; - top: 50%; - margin-top: -8px; -} -.tabs-title { - font-size: 12px; -} -.tabs-closable { - padding-right: 8px; -} -.tabs-panels { - margin: 0px; - padding: 0px; - border-width: 1px; - border-style: solid; - border-top-width: 0; - overflow: hidden; -} -.tabs-header-bottom { - border-width: 0 1px 1px 1px; - padding: 0 0 2px 0; -} -.tabs-header-bottom .tabs { - border-width: 1px 0 0 0; -} -.tabs-header-bottom .tabs li { - margin: -1px 4px 0 0; -} -.tabs-header-bottom .tabs li a.tabs-inner { - -moz-border-radius: 0 0 5px 5px; - -webkit-border-radius: 0 0 5px 5px; - border-radius: 0 0 5px 5px; -} -.tabs-header-bottom .tabs-tool { - top: 0; -} -.tabs-header-bottom .tabs-scroller-left, -.tabs-header-bottom .tabs-scroller-right { - top: 0; - bottom: auto; -} -.tabs-panels-top { - border-width: 1px 1px 0 1px; -} -.tabs-header-left { - float: left; - border-width: 1px 0 1px 1px; - padding: 0; -} -.tabs-header-right { - float: right; - border-width: 1px 1px 1px 0; - padding: 0; -} -.tabs-header-left .tabs-wrap, -.tabs-header-right .tabs-wrap { - height: 100%; -} -.tabs-header-left .tabs { - height: 100%; - padding: 4px 0 0 2px; - border-width: 0 1px 0 0; -} -.tabs-header-right .tabs { - height: 100%; - padding: 4px 2px 0 0; - border-width: 0 0 0 1px; -} -.tabs-header-left .tabs li, -.tabs-header-right .tabs li { - display: block; - width: 100%; - position: relative; -} -.tabs-header-left .tabs li { - left: auto; - right: 0; - margin: 0 -1px 4px 0; - float: right; -} -.tabs-header-right .tabs li { - left: 0; - right: auto; - margin: 0 0 4px -1px; - float: left; -} -.tabs-justified li a.tabs-inner { - padding-left: 0; - padding-right: 0; -} -.tabs-header-left .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.tabs-header-right .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.tabs-panels-right { - float: right; - border-width: 1px 1px 1px 0; -} -.tabs-panels-left { - float: left; - border-width: 1px 0 1px 1px; -} -.tabs-header-noborder, -.tabs-panels-noborder { - border: 0px; -} -.tabs-header-plain { - border: 0px; - background: transparent; -} -.tabs-pill { - padding-bottom: 3px; -} -.tabs-header-bottom .tabs-pill { - padding-top: 3px; - padding-bottom: 0; -} -.tabs-header-left .tabs-pill { - padding-right: 3px; -} -.tabs-header-right .tabs-pill { - padding-left: 3px; -} -.tabs-header .tabs-pill li a.tabs-inner { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tabs-header-narrow, -.tabs-header-narrow .tabs-narrow { - padding: 0; -} -.tabs-narrow li, -.tabs-header-bottom .tabs-narrow li { - margin-left: 0; - margin-right: -1px; -} -.tabs-narrow li.tabs-last, -.tabs-header-bottom .tabs-narrow li.tabs-last { - margin-right: 0; -} -.tabs-header-left .tabs-narrow, -.tabs-header-right .tabs-narrow { - padding-top: 0; -} -.tabs-header-left .tabs-narrow li { - margin-bottom: -1px; - margin-right: -1px; -} -.tabs-header-left .tabs-narrow li.tabs-last, -.tabs-header-right .tabs-narrow li.tabs-last { - margin-bottom: 0; -} -.tabs-header-right .tabs-narrow li { - margin-bottom: -1px; - margin-left: -1px; -} -.tabs-scroller-left { - background: #f3f3f3 url('images/tabs_icons.png') no-repeat 1px center; -} -.tabs-scroller-right { - background: #f3f3f3 url('images/tabs_icons.png') no-repeat -15px center; -} -.tabs li a.tabs-close { - background: url('images/tabs_icons.png') no-repeat -34px center; -} -.tabs li a.tabs-inner:hover { - background: #e2e2e2; - color: #000000; - filter: none; -} -.tabs li.tabs-selected a.tabs-inner { - background-color: #ffffff; - color: #575765; - background: -webkit-linear-gradient(top,#F8F8F8 0,#ffffff 100%); - background: -moz-linear-gradient(top,#F8F8F8 0,#ffffff 100%); - background: -o-linear-gradient(top,#F8F8F8 0,#ffffff 100%); - background: linear-gradient(to bottom,#F8F8F8 0,#ffffff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F8F8F8,endColorstr=#ffffff,GradientType=0); -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(top,#ffffff 0,#F8F8F8 100%); - background: -moz-linear-gradient(top,#ffffff 0,#F8F8F8 100%); - background: -o-linear-gradient(top,#ffffff 0,#F8F8F8 100%); - background: linear-gradient(to bottom,#ffffff 0,#F8F8F8 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#F8F8F8,GradientType=0); -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#F8F8F8 0,#ffffff 100%); - background: -moz-linear-gradient(left,#F8F8F8 0,#ffffff 100%); - background: -o-linear-gradient(left,#F8F8F8 0,#ffffff 100%); - background: linear-gradient(to right,#F8F8F8 0,#ffffff 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F8F8F8,endColorstr=#ffffff,GradientType=1); -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#ffffff 0,#F8F8F8 100%); - background: -moz-linear-gradient(left,#ffffff 0,#F8F8F8 100%); - background: -o-linear-gradient(left,#ffffff 0,#F8F8F8 100%); - background: linear-gradient(to right,#ffffff 0,#F8F8F8 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#F8F8F8,GradientType=1); -} -.tabs li a.tabs-inner { - color: #575765; - background-color: #f3f3f3; - background: -webkit-linear-gradient(top,#F8F8F8 0,#eeeeee 100%); - background: -moz-linear-gradient(top,#F8F8F8 0,#eeeeee 100%); - background: -o-linear-gradient(top,#F8F8F8 0,#eeeeee 100%); - background: linear-gradient(to bottom,#F8F8F8 0,#eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F8F8F8,endColorstr=#eeeeee,GradientType=0); -} -.tabs-header, -.tabs-tool { - background-color: #f3f3f3; -} -.tabs-header-plain { - background: transparent; -} -.tabs-header, -.tabs-scroller-left, -.tabs-scroller-right, -.tabs-tool, -.tabs, -.tabs-panels, -.tabs li a.tabs-inner, -.tabs li.tabs-selected a.tabs-inner, -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner, -.tabs-header-left .tabs li.tabs-selected a.tabs-inner, -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-color: #D3D3D3; -} -.tabs-p-tool a:hover, -.tabs li a:hover.tabs-close, -.tabs-scroller-over { - background-color: #e2e2e2; -} -.tabs li.tabs-selected a.tabs-inner { - border-bottom: 1px solid #ffffff; -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - border-top: 1px solid #ffffff; -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - border-right: 1px solid #ffffff; -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-left: 1px solid #ffffff; -} -.tabs-header .tabs-pill li.tabs-selected a.tabs-inner { - background: #0092DC; - color: #fff; - filter: none; - border-color: #D3D3D3; -} -.datagrid .panel-body { - overflow: hidden; - position: relative; -} -.datagrid-view { - position: relative; - overflow: hidden; -} -.datagrid-view1, -.datagrid-view2 { - position: absolute; - overflow: hidden; - top: 0; -} -.datagrid-view1 { - left: 0; -} -.datagrid-view2 { - right: 0; -} -.datagrid-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - opacity: 0.3; - filter: alpha(opacity=30); - display: none; -} -.datagrid-mask-msg { - position: absolute; - top: 50%; - margin-top: -20px; - padding: 10px 5px 10px 30px; - width: auto; - height: 16px; - border-width: 2px; - border-style: solid; - display: none; -} -.datagrid-sort-icon { - padding: 0; - display: none; -} -.datagrid-toolbar { - height: auto; - padding: 1px 2px; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.datagrid .datagrid-pager { - display: block; - margin: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.datagrid .datagrid-pager-top { - border-width: 0 0 1px 0; -} -.datagrid-header { - overflow: hidden; - cursor: default; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-header-inner { - float: left; - width: 10000px; -} -.datagrid-header-row, -.datagrid-row { - height: 25px; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-width: 0 1px 1px 0; - border-style: dotted; - margin: 0; - padding: 0; -} -.datagrid-cell, -.datagrid-cell-group, -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - margin: 0; - padding: 0 4px; - white-space: nowrap; - word-wrap: normal; - overflow: hidden; - height: 18px; - line-height: 18px; - font-size: 12px; -} -.datagrid-header .datagrid-cell { - height: auto; -} -.datagrid-header .datagrid-cell span { - font-size: 12px; -} -.datagrid-cell-group { - text-align: center; - text-overflow: ellipsis; -} -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - width: 30px; - text-align: center; - margin: 0; - padding: 0; -} -.datagrid-body { - margin: 0; - padding: 0; - overflow: auto; - zoom: 1; -} -.datagrid-view1 .datagrid-body-inner { - padding-bottom: 20px; -} -.datagrid-view1 .datagrid-body { - overflow: hidden; -} -.datagrid-footer { - overflow: hidden; -} -.datagrid-footer-inner { - border-width: 1px 0 0 0; - border-style: solid; - width: 10000px; - float: left; -} -.datagrid-row-editing .datagrid-cell { - height: auto; -} -.datagrid-header-check, -.datagrid-cell-check { - padding: 0; - width: 27px; - height: 18px; - font-size: 1px; - text-align: center; - overflow: hidden; -} -.datagrid-header-check input, -.datagrid-cell-check input { - margin: 0; - padding: 0; - width: 15px; - height: 18px; -} -.datagrid-resize-proxy { - position: absolute; - width: 1px; - height: 10000px; - top: 0; - cursor: e-resize; - display: none; -} -.datagrid-body .datagrid-editable { - margin: 0; - padding: 0; -} -.datagrid-body .datagrid-editable table { - width: 100%; - height: 100%; -} -.datagrid-body .datagrid-editable td { - border: 0; - margin: 0; - padding: 0; -} -.datagrid-view .datagrid-editable-input { - margin: 0; - padding: 2px 4px; - border: 1px solid #D3D3D3; - font-size: 12px; - outline-style: none; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.datagrid-sort .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -64px center; -} -.datagrid-sort-desc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -16px center; -} -.datagrid-sort-asc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat 0px center; -} -.datagrid-row-collapse { - background: url('images/datagrid_icons.png') no-repeat -48px center; -} -.datagrid-row-expand { - background: url('images/datagrid_icons.png') no-repeat -32px center; -} -.datagrid-mask-msg { - background: #ffffff url('images/loading.gif') no-repeat scroll 5px center; -} -.datagrid-header, -.datagrid-td-rownumber { - background-color: #fafafa; - background: -webkit-linear-gradient(top,#fdfdfd 0,#f5f5f5 100%); - background: -moz-linear-gradient(top,#fdfdfd 0,#f5f5f5 100%); - background: -o-linear-gradient(top,#fdfdfd 0,#f5f5f5 100%); - background: linear-gradient(to bottom,#fdfdfd 0,#f5f5f5 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fdfdfd,endColorstr=#f5f5f5,GradientType=0); -} -.datagrid-cell-rownumber { - color: #000000; -} -.datagrid-resize-proxy { - background: #bfbfbf; -} -.datagrid-mask { - background: #ccc; -} -.datagrid-mask-msg { - border-color: #D3D3D3; -} -.datagrid-toolbar, -.datagrid-pager { - background: #fafafa; -} -.datagrid-header, -.datagrid-toolbar, -.datagrid-pager, -.datagrid-footer-inner { - border-color: #ddd; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-color: #ccc; -} -.datagrid-htable, -.datagrid-btable, -.datagrid-ftable { - color: #000000; - border-collapse: separate; -} -.datagrid-row-alt { - background: #fafafa; -} -.datagrid-row-over, -.datagrid-header td.datagrid-header-over { - background: #e2e2e2; - color: #000000; - cursor: default; -} -.datagrid-row-selected { - background: #0092DC; - color: #fff; -} -.datagrid-row-editing .textbox, -.datagrid-row-editing .textbox-text { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.propertygrid .datagrid-view1 .datagrid-body td { - padding-bottom: 1px; - border-width: 0 1px 0 0; -} -.propertygrid .datagrid-group { - height: 21px; - overflow: hidden; - border-width: 0 0 1px 0; - border-style: solid; -} -.propertygrid .datagrid-group span { - font-weight: bold; -} -.propertygrid .datagrid-view1 .datagrid-body td { - border-color: #ddd; -} -.propertygrid .datagrid-view1 .datagrid-group { - border-color: #f3f3f3; -} -.propertygrid .datagrid-view2 .datagrid-group { - border-color: #ddd; -} -.propertygrid .datagrid-group, -.propertygrid .datagrid-view1 .datagrid-body, -.propertygrid .datagrid-view1 .datagrid-row-over, -.propertygrid .datagrid-view1 .datagrid-row-selected { - background: #f3f3f3; -} -.datalist .datagrid-header { - border-width: 0; -} -.datalist .datagrid-group, -.m-list .m-list-group { - height: 25px; - line-height: 25px; - font-weight: bold; - overflow: hidden; - background-color: #fafafa; - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ccc; -} -.datalist .datagrid-group-expander { - display: none; -} -.datalist .datagrid-group-title { - padding: 0 4px; -} -.datalist .datagrid-btable { - width: 100%; - table-layout: fixed; -} -.datalist .datagrid-row td { - border-style: solid; - border-left-color: transparent; - border-right-color: transparent; - border-bottom-width: 0; -} -.datalist-lines .datagrid-row td { - border-bottom-width: 1px; -} -.datalist .datagrid-cell, -.m-list li { - width: auto; - height: auto; - padding: 2px 4px; - line-height: 18px; - position: relative; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link, -.m-list li>a { - display: block; - position: relative; - cursor: pointer; - color: #000000; - text-decoration: none; - overflow: hidden; - margin: -2px -4px; - padding: 2px 4px; - padding-right: 16px; - line-height: 18px; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link::after, -.m-list li>a::after { - position: absolute; - display: block; - width: 8px; - height: 8px; - content: ''; - right: 6px; - top: 50%; - margin-top: -4px; - border-style: solid; - border-width: 1px 1px 0 0; - -ms-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); -} -.m-list { - margin: 0; - padding: 0; - list-style: none; -} -.m-list li { - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ccc; -} -.m-list li>a:hover { - background: #e2e2e2; - color: #000000; -} -.m-list .m-list-group { - padding: 0 4px; -} -.pagination { - zoom: 1; -} -.pagination table { - float: left; - height: 30px; -} -.pagination td { - border: 0; -} -.pagination-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 3px 1px; -} -.pagination .pagination-num { - border-width: 1px; - border-style: solid; - margin: 0 2px; - padding: 2px; - width: 2em; - height: auto; -} -.pagination-page-list { - margin: 0px 6px; - padding: 1px 2px; - width: auto; - height: auto; - border-width: 1px; - border-style: solid; -} -.pagination-info { - float: right; - margin: 0 6px 0 0; - padding: 0; - height: 30px; - line-height: 30px; - font-size: 12px; -} -.pagination span { - font-size: 12px; -} -.pagination-link .l-btn-text { - width: 24px; - text-align: center; - margin: 0; -} -.pagination-first { - background: url('images/pagination_icons.png') no-repeat 0 center; -} -.pagination-prev { - background: url('images/pagination_icons.png') no-repeat -16px center; -} -.pagination-next { - background: url('images/pagination_icons.png') no-repeat -32px center; -} -.pagination-last { - background: url('images/pagination_icons.png') no-repeat -48px center; -} -.pagination-load { - background: url('images/pagination_icons.png') no-repeat -64px center; -} -.pagination-loading { - background: url('images/loading.gif') no-repeat center center; -} -.pagination-page-list, -.pagination .pagination-num { - border-color: #D3D3D3; -} -.calendar { - border-width: 1px; - border-style: solid; - padding: 1px; - overflow: hidden; -} -.calendar table { - table-layout: fixed; - border-collapse: separate; - font-size: 12px; - width: 100%; - height: 100%; -} -.calendar table td, -.calendar table th { - font-size: 12px; -} -.calendar-noborder { - border: 0; -} -.calendar-header { - position: relative; - height: 22px; -} -.calendar-title { - text-align: center; - height: 22px; -} -.calendar-title span { - position: relative; - display: inline-block; - top: 2px; - padding: 0 3px; - height: 18px; - line-height: 18px; - font-size: 12px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth, -.calendar-nextmonth, -.calendar-prevyear, -.calendar-nextyear { - position: absolute; - top: 50%; - margin-top: -7px; - width: 14px; - height: 14px; - cursor: pointer; - font-size: 1px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-prevmonth { - left: 20px; - background: url('images/calendar_arrows.png') no-repeat -18px -2px; -} -.calendar-nextmonth { - right: 20px; - background: url('images/calendar_arrows.png') no-repeat -34px -2px; -} -.calendar-prevyear { - left: 3px; - background: url('images/calendar_arrows.png') no-repeat -1px -2px; -} -.calendar-nextyear { - right: 3px; - background: url('images/calendar_arrows.png') no-repeat -49px -2px; -} -.calendar-body { - position: relative; -} -.calendar-body th, -.calendar-body td { - text-align: center; -} -.calendar-day { - border: 0; - padding: 1px; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-other-month { - opacity: 0.3; - filter: alpha(opacity=30); -} -.calendar-disabled { - opacity: 0.6; - filter: alpha(opacity=60); - cursor: default; -} -.calendar-menu { - position: absolute; - top: 0; - left: 0; - width: 180px; - height: 150px; - padding: 5px; - font-size: 12px; - display: none; - overflow: hidden; -} -.calendar-menu-year-inner { - text-align: center; - padding-bottom: 5px; -} -.calendar-menu-year { - width: 40px; - text-align: center; - border-width: 1px; - border-style: solid; - margin: 0; - padding: 2px; - font-weight: bold; - font-size: 12px; -} -.calendar-menu-prev, -.calendar-menu-next { - display: inline-block; - width: 21px; - height: 21px; - vertical-align: top; - cursor: pointer; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-menu-prev { - margin-right: 10px; - background: url('images/calendar_arrows.png') no-repeat 2px 2px; -} -.calendar-menu-next { - margin-left: 10px; - background: url('images/calendar_arrows.png') no-repeat -45px 2px; -} -.calendar-menu-month { - text-align: center; - cursor: pointer; - font-weight: bold; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.calendar-body th, -.calendar-menu-month { - color: #4d4d4d; -} -.calendar-day { - color: #000000; -} -.calendar-sunday { - color: #CC2222; -} -.calendar-saturday { - color: #00ee00; -} -.calendar-today { - color: #0000ff; -} -.calendar-menu-year { - border-color: #D3D3D3; -} -.calendar { - border-color: #D3D3D3; -} -.calendar-header { - background: #f3f3f3; -} -.calendar-body, -.calendar-menu { - background: #ffffff; -} -.calendar-body th { - background: #fafafa; - padding: 2px 0; -} -.calendar-hover, -.calendar-nav-hover, -.calendar-menu-hover { - background-color: #e2e2e2; - color: #000000; -} -.calendar-hover { - border: 1px solid #ccc; - padding: 0; -} -.calendar-selected { - background-color: #0092DC; - color: #fff; - border: 1px solid #0070a9; - padding: 0; -} -.datebox-calendar-inner { - height: 180px; -} -.datebox-button { - height: 18px; - padding: 2px 5px; - text-align: center; -} -.datebox-button a { - font-size: 12px; - font-weight: bold; - text-decoration: none; - opacity: 0.6; - filter: alpha(opacity=60); -} -.datebox-button a:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.datebox-current, -.datebox-close { - float: left; -} -.datebox-close { - float: right; -} -.datebox .combo-arrow { - background-image: url('images/datebox_arrow.png'); - background-position: center center; -} -.datebox-button { - background-color: #fafafa; -} -.datebox-button a { - color: #444; -} -.numberbox { - border: 1px solid #D3D3D3; - margin: 0; - padding: 0 2px; - vertical-align: middle; -} -.textbox { - padding: 0; -} -.spinner { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.spinner .spinner-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0 2px; - vertical-align: baseline; -} -.spinner-arrow { - background-color: #f3f3f3; - display: inline-block; - overflow: hidden; - vertical-align: top; - margin: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - width: 18px; -} -.spinner-arrow-up, -.spinner-arrow-down { - opacity: 0.6; - filter: alpha(opacity=60); - display: block; - font-size: 1px; - width: 18px; - height: 10px; - width: 100%; - height: 50%; - color: #444; - outline-style: none; -} -.spinner-arrow-hover { - background-color: #e2e2e2; - opacity: 1.0; - filter: alpha(opacity=100); -} -.spinner-arrow-up:hover, -.spinner-arrow-down:hover { - opacity: 1.0; - filter: alpha(opacity=100); - background-color: #e2e2e2; -} -.textbox-icon-disabled .spinner-arrow-up:hover, -.textbox-icon-disabled .spinner-arrow-down:hover { - opacity: 0.6; - filter: alpha(opacity=60); - background-color: #f3f3f3; - cursor: default; -} -.spinner .textbox-icon-disabled { - opacity: 0.6; - filter: alpha(opacity=60); -} -.spinner-arrow-up { - background: url('images/spinner_arrows.png') no-repeat 1px center; -} -.spinner-arrow-down { - background: url('images/spinner_arrows.png') no-repeat -15px center; -} -.spinner { - border-color: #D3D3D3; -} -.progressbar { - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - overflow: hidden; - position: relative; -} -.progressbar-text { - text-align: center; - position: absolute; -} -.progressbar-value { - position: relative; - overflow: hidden; - width: 0; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.progressbar { - border-color: #D3D3D3; -} -.progressbar-text { - color: #000000; - font-size: 12px; -} -.progressbar-value .progressbar-text { - background-color: #0092DC; - color: #fff; -} -.searchbox { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.searchbox .searchbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 0 2px; - vertical-align: top; -} -.searchbox .searchbox-prompt { - font-size: 12px; - color: #ccc; -} -.searchbox-button { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.searchbox-button-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.searchbox .l-btn-plain { - border: 0; - padding: 0; - vertical-align: top; - opacity: 0.6; - filter: alpha(opacity=60); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .l-btn-plain:hover { - border: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox a.m-btn-plain-active { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .m-btn-active { - border-width: 0 1px 0 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .textbox-button-right { - border-width: 0 0 0 1px; -} -.searchbox .textbox-button-left { - border-width: 0 1px 0 0; -} -.searchbox-button { - background: url('images/searchbox_button.png') no-repeat center center; -} -.searchbox { - border-color: #D3D3D3; - background-color: #fff; -} -.searchbox .l-btn-plain { - background: #f3f3f3; -} -.searchbox .l-btn-plain-disabled, -.searchbox .l-btn-plain-disabled:hover { - opacity: 0.5; - filter: alpha(opacity=50); -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.slider-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.slider-h { - height: 22px; -} -.slider-v { - width: 22px; -} -.slider-inner { - position: relative; - height: 6px; - top: 7px; - border-width: 1px; - border-style: solid; - border-radius: 5px; -} -.slider-handle { - position: absolute; - display: block; - outline: none; - width: 20px; - height: 20px; - top: 50%; - margin-top: -10px; - margin-left: -10px; -} -.slider-tip { - position: absolute; - display: inline-block; - line-height: 12px; - font-size: 12px; - white-space: nowrap; - top: -22px; -} -.slider-rule { - position: relative; - top: 15px; -} -.slider-rule span { - position: absolute; - display: inline-block; - font-size: 0; - height: 5px; - border-width: 0 0 0 1px; - border-style: solid; -} -.slider-rulelabel { - position: relative; - top: 20px; -} -.slider-rulelabel span { - position: absolute; - display: inline-block; - font-size: 12px; -} -.slider-v .slider-inner { - width: 6px; - left: 7px; - top: 0; - float: left; -} -.slider-v .slider-handle { - left: 50%; - margin-top: -10px; -} -.slider-v .slider-tip { - left: -10px; - margin-top: -6px; -} -.slider-v .slider-rule { - float: left; - top: 0; - left: 16px; -} -.slider-v .slider-rule span { - width: 5px; - height: 'auto'; - border-left: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.slider-v .slider-rulelabel { - float: left; - top: 0; - left: 23px; -} -.slider-handle { - background: url('images/slider_handle.png') no-repeat; -} -.slider-inner { - border-color: #D3D3D3; - background: #f3f3f3; -} -.slider-rule span { - border-color: #D3D3D3; -} -.slider-rulelabel span { - color: #000000; -} -.menu { - position: absolute; - margin: 0; - padding: 2px; - border-width: 1px; - border-style: solid; - overflow: hidden; -} -.menu-inline { - position: relative; -} -.menu-item { - position: relative; - margin: 0; - padding: 0; - overflow: hidden; - white-space: nowrap; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.menu-text { - height: 20px; - line-height: 20px; - float: left; - padding-left: 28px; -} -.menu-icon { - position: absolute; - width: 16px; - height: 16px; - left: 2px; - top: 50%; - margin-top: -8px; -} -.menu-rightarrow { - position: absolute; - width: 16px; - height: 16px; - right: 0; - top: 50%; - margin-top: -8px; -} -.menu-line { - position: absolute; - left: 26px; - top: 0; - height: 2000px; - font-size: 1px; -} -.menu-sep { - margin: 3px 0px 3px 25px; - font-size: 1px; -} -.menu-noline .menu-line { - display: none; -} -.menu-noline .menu-sep { - margin-left: 0; - margin-right: 0; -} -.menu-active { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.menu-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: default; -} -.menu-text, -.menu-text span { - font-size: 12px; -} -.menu-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - background: #ccc; - -moz-box-shadow: 2px 2px 3px #cccccc; - -webkit-box-shadow: 2px 2px 3px #cccccc; - box-shadow: 2px 2px 3px #cccccc; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.menu-rightarrow { - background: url('images/menu_arrows.png') no-repeat -32px center; -} -.menu-line { - border-left: 1px solid #ccc; - border-right: 1px solid #fff; -} -.menu-sep { - border-top: 1px solid #ccc; - border-bottom: 1px solid #fff; -} -.menu { - background-color: #f3f3f3; - border-color: #D3D3D3; - color: #444; -} -.menu-content { - background: #ffffff; -} -.menu-item { - border-color: transparent; - _border-color: #f3f3f3; -} -.menu-active { - border-color: #ccc; - color: #000000; - background: #e2e2e2; -} -.menu-active-disabled { - border-color: transparent; - background: transparent; - color: #444; -} -.m-btn-downarrow, -.s-btn-downarrow { - display: inline-block; - position: absolute; - width: 16px; - height: 16px; - font-size: 1px; - right: 0; - top: 50%; - margin-top: -8px; -} -.m-btn-active, -.s-btn-active { - background: #e2e2e2; - color: #000000; - border: 1px solid #ccc; - filter: none; -} -.m-btn-plain-active, -.s-btn-plain-active { - background: transparent; - padding: 0; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.m-btn .l-btn-left .l-btn-text { - margin-right: 20px; -} -.m-btn .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.m-btn .l-btn-icon-right .l-btn-icon { - right: 20px; -} -.m-btn .l-btn-icon-top .l-btn-text { - margin-right: 4px; - margin-bottom: 14px; -} -.m-btn .l-btn-icon-bottom .l-btn-text { - margin-right: 4px; - margin-bottom: 34px; -} -.m-btn .l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 20px; -} -.m-btn .l-btn-icon-top .m-btn-downarrow, -.m-btn .l-btn-icon-bottom .m-btn-downarrow { - top: auto; - bottom: 0px; - left: 50%; - margin-left: -8px; -} -.m-btn-line { - display: inline-block; - position: absolute; - font-size: 1px; - display: none; -} -.m-btn .l-btn-left .m-btn-line { - right: 0; - width: 16px; - height: 500px; - border-style: solid; - border-color: #bfbfbf; - border-width: 0 0 0 1px; -} -.m-btn .l-btn-icon-top .m-btn-line, -.m-btn .l-btn-icon-bottom .m-btn-line { - left: 0; - bottom: 0; - width: 500px; - height: 16px; - border-width: 1px 0 0 0; -} -.m-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 56px; -} -.m-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 50px; -} -.m-btn-downarrow, -.s-btn-downarrow { - background: url('images/menu_arrows.png') no-repeat 0 center; -} -.m-btn-plain-active, -.s-btn-plain-active { - border-color: #ccc; - background-color: #e2e2e2; - color: #000000; -} -.s-btn:hover .m-btn-line, -.s-btn-active .m-btn-line, -.s-btn-plain-active .m-btn-line { - display: inline-block; -} -.l-btn:hover .s-btn-downarrow, -.s-btn-active .s-btn-downarrow, -.s-btn-plain-active .s-btn-downarrow { - border-style: solid; - border-color: #bfbfbf; - border-width: 0 0 0 1px; -} -.messager-body { - padding: 10px; - overflow: auto; -} -.messager-button { - text-align: center; - padding: 5px; -} -.messager-button .l-btn { - width: 70px; -} -.messager-icon { - float: left; - width: 32px; - height: 32px; - margin: 0 10px 10px 0; -} -.messager-error { - background: url('images/messager_icons.png') no-repeat scroll -64px 0; -} -.messager-info { - background: url('images/messager_icons.png') no-repeat scroll 0 0; -} -.messager-question { - background: url('images/messager_icons.png') no-repeat scroll -32px 0; -} -.messager-warning { - background: url('images/messager_icons.png') no-repeat scroll -96px 0; -} -.messager-progress { - padding: 10px; -} -.messager-p-msg { - margin-bottom: 5px; -} -.messager-body .messager-input { - width: 100%; - padding: 1px 0; - border: 1px solid #D3D3D3; -} -.tree { - margin: 0; - padding: 0; - list-style-type: none; -} -.tree li { - white-space: nowrap; -} -.tree li ul { - list-style-type: none; - margin: 0; - padding: 0; -} -.tree-node { - height: 18px; - white-space: nowrap; - cursor: pointer; -} -.tree-hit { - cursor: pointer; -} -.tree-expanded, -.tree-collapsed, -.tree-folder, -.tree-file, -.tree-checkbox, -.tree-indent { - display: inline-block; - width: 16px; - height: 18px; - vertical-align: top; - overflow: hidden; -} -.tree-expanded { - background: url('images/tree_icons.png') no-repeat -18px 0px; -} -.tree-expanded-hover { - background: url('images/tree_icons.png') no-repeat -50px 0px; -} -.tree-collapsed { - background: url('images/tree_icons.png') no-repeat 0px 0px; -} -.tree-collapsed-hover { - background: url('images/tree_icons.png') no-repeat -32px 0px; -} -.tree-lines .tree-expanded, -.tree-lines .tree-root-first .tree-expanded { - background: url('images/tree_icons.png') no-repeat -144px 0; -} -.tree-lines .tree-collapsed, -.tree-lines .tree-root-first .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -128px 0; -} -.tree-lines .tree-node-last .tree-expanded, -.tree-lines .tree-root-one .tree-expanded { - background: url('images/tree_icons.png') no-repeat -80px 0; -} -.tree-lines .tree-node-last .tree-collapsed, -.tree-lines .tree-root-one .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -64px 0; -} -.tree-line { - background: url('images/tree_icons.png') no-repeat -176px 0; -} -.tree-join { - background: url('images/tree_icons.png') no-repeat -192px 0; -} -.tree-joinbottom { - background: url('images/tree_icons.png') no-repeat -160px 0; -} -.tree-folder { - background: url('images/tree_icons.png') no-repeat -208px 0; -} -.tree-folder-open { - background: url('images/tree_icons.png') no-repeat -224px 0; -} -.tree-file { - background: url('images/tree_icons.png') no-repeat -240px 0; -} -.tree-loading { - background: url('images/loading.gif') no-repeat center center; -} -.tree-checkbox0 { - background: url('images/tree_icons.png') no-repeat -208px -18px; -} -.tree-checkbox1 { - background: url('images/tree_icons.png') no-repeat -224px -18px; -} -.tree-checkbox2 { - background: url('images/tree_icons.png') no-repeat -240px -18px; -} -.tree-title { - font-size: 12px; - display: inline-block; - text-decoration: none; - vertical-align: top; - white-space: nowrap; - padding: 0 2px; - height: 18px; - line-height: 18px; -} -.tree-node-proxy { - font-size: 12px; - line-height: 20px; - padding: 0 2px 0 20px; - border-width: 1px; - border-style: solid; - z-index: 9900000; -} -.tree-dnd-icon { - display: inline-block; - position: absolute; - width: 16px; - height: 18px; - left: 2px; - top: 50%; - margin-top: -9px; -} -.tree-dnd-yes { - background: url('images/tree_icons.png') no-repeat -256px 0; -} -.tree-dnd-no { - background: url('images/tree_icons.png') no-repeat -256px -18px; -} -.tree-node-top { - border-top: 1px dotted red; -} -.tree-node-bottom { - border-bottom: 1px dotted red; -} -.tree-node-append .tree-title { - border: 1px dotted red; -} -.tree-editor { - border: 1px solid #ccc; - font-size: 12px; - height: 14px !important; - height: 18px; - line-height: 14px; - padding: 1px 2px; - width: 80px; - position: absolute; - top: 0; -} -.tree-node-proxy { - background-color: #ffffff; - color: #000000; - border-color: #D3D3D3; -} -.tree-node-hover { - background: #e2e2e2; - color: #000000; -} -.tree-node-selected { - background: #0092DC; - color: #fff; -} -.tree-node-hidden { - display: none; -} -.validatebox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; - color: #000; -} -.tooltip { - position: absolute; - display: none; - z-index: 9900000; - outline: none; - opacity: 1; - filter: alpha(opacity=100); - padding: 5px; - border-width: 1px; - border-style: solid; - border-radius: 5px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tooltip-content { - font-size: 12px; -} -.tooltip-arrow-outer, -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - line-height: 0; - font-size: 0; - border-style: solid; - border-width: 6px; - border-color: transparent; - _border-color: tomato; - _filter: chroma(color=tomato); -} -.tooltip-arrow { - display: none \9; -} -.tooltip-right .tooltip-arrow-outer { - left: 0; - top: 50%; - margin: -6px 0 0 -13px; -} -.tooltip-right .tooltip-arrow { - left: 0; - top: 50%; - margin: -6px 0 0 -12px; -} -.tooltip-left .tooltip-arrow-outer { - right: 0; - top: 50%; - margin: -6px -13px 0 0; -} -.tooltip-left .tooltip-arrow { - right: 0; - top: 50%; - margin: -6px -12px 0 0; -} -.tooltip-top .tooltip-arrow-outer { - bottom: 0; - left: 50%; - margin: 0 0 -13px -6px; -} -.tooltip-top .tooltip-arrow { - bottom: 0; - left: 50%; - margin: 0 0 -12px -6px; -} -.tooltip-bottom .tooltip-arrow-outer { - top: 0; - left: 50%; - margin: -13px 0 0 -6px; -} -.tooltip-bottom .tooltip-arrow { - top: 0; - left: 50%; - margin: -12px 0 0 -6px; -} -.tooltip { - background-color: #ffffff; - border-color: #D3D3D3; - color: #000000; -} -.tooltip-right .tooltip-arrow-outer { - border-right-color: #D3D3D3; -} -.tooltip-right .tooltip-arrow { - border-right-color: #ffffff; -} -.tooltip-left .tooltip-arrow-outer { - border-left-color: #D3D3D3; -} -.tooltip-left .tooltip-arrow { - border-left-color: #ffffff; -} -.tooltip-top .tooltip-arrow-outer { - border-top-color: #D3D3D3; -} -.tooltip-top .tooltip-arrow { - border-top-color: #ffffff; -} -.tooltip-bottom .tooltip-arrow-outer { - border-bottom-color: #D3D3D3; -} -.tooltip-bottom .tooltip-arrow { - border-bottom-color: #ffffff; -} -.switchbutton { - text-decoration: none; - display: inline-block; - overflow: hidden; - vertical-align: middle; - margin: 0; - padding: 0; - cursor: pointer; - background: #bbb; - border: 1px solid #bbb; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-inner { - display: inline-block; - overflow: hidden; - position: relative; - top: -1px; - left: -1px; -} -.switchbutton-on, -.switchbutton-off, -.switchbutton-handle { - display: inline-block; - text-align: center; - height: 100%; - float: left; - font-size: 12px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-on { - background: #0092DC; - color: #fff; -} -.switchbutton-off { - background-color: #ffffff; - color: #000000; -} -.switchbutton-on, -.switchbutton-reversed .switchbutton-off { - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.switchbutton-off, -.switchbutton-reversed .switchbutton-on { - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.switchbutton-handle { - position: absolute; - top: 0; - left: 50%; - background-color: #ffffff; - color: #000000; - border: 1px solid #bbb; - -moz-box-shadow: 0 0 3px 0 #bbb; - -webkit-box-shadow: 0 0 3px 0 #bbb; - box-shadow: 0 0 3px 0 #bbb; -} -.switchbutton-value { - position: absolute; - top: 0; - left: -5000px; -} -.switchbutton-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.switchbutton-disabled, -.switchbutton-readonly { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/filebox.css b/vendor/FHC-vendor/easyui/themes/gray/filebox.css deleted file mode 100644 index c6bac6631..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/filebox.css +++ /dev/null @@ -1,20 +0,0 @@ -.filebox .textbox-value { - vertical-align: top; - position: absolute; - top: 0; - left: -5000px; -} -.filebox-label { - display: inline-block; - position: absolute; - width: 100%; - height: 100%; - cursor: pointer; - left: 0; - top: 0; - z-index: 10; - background: url('images/blank.gif') no-repeat; -} -.l-btn-disabled .filebox-label { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/accordion_arrows.png b/vendor/FHC-vendor/easyui/themes/gray/images/accordion_arrows.png deleted file mode 100644 index a0b8769cc..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/accordion_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/blank.gif b/vendor/FHC-vendor/easyui/themes/gray/images/blank.gif deleted file mode 100644 index 1d11fa9ad..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/blank.gif and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/calendar_arrows.png b/vendor/FHC-vendor/easyui/themes/gray/images/calendar_arrows.png deleted file mode 100644 index 430c4ad68..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/calendar_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/combo_arrow.png b/vendor/FHC-vendor/easyui/themes/gray/images/combo_arrow.png deleted file mode 100644 index 04f4ba0cd..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/combo_arrow.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/datagrid_icons.png b/vendor/FHC-vendor/easyui/themes/gray/images/datagrid_icons.png deleted file mode 100644 index 66b83435f..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/datagrid_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/datebox_arrow.png b/vendor/FHC-vendor/easyui/themes/gray/images/datebox_arrow.png deleted file mode 100644 index 783c83357..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/datebox_arrow.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/layout_arrows.png b/vendor/FHC-vendor/easyui/themes/gray/images/layout_arrows.png deleted file mode 100644 index bf7929f54..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/layout_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/linkbutton_bg.png b/vendor/FHC-vendor/easyui/themes/gray/images/linkbutton_bg.png deleted file mode 100644 index fc66bd2cd..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/linkbutton_bg.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/loading.gif b/vendor/FHC-vendor/easyui/themes/gray/images/loading.gif deleted file mode 100644 index 68f01d048..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/loading.gif and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/menu_arrows.png b/vendor/FHC-vendor/easyui/themes/gray/images/menu_arrows.png deleted file mode 100644 index b986842e7..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/menu_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/messager_icons.png b/vendor/FHC-vendor/easyui/themes/gray/images/messager_icons.png deleted file mode 100644 index 62c18c135..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/messager_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/pagination_icons.png b/vendor/FHC-vendor/easyui/themes/gray/images/pagination_icons.png deleted file mode 100644 index e0f1b07b0..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/pagination_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/panel_tools.png b/vendor/FHC-vendor/easyui/themes/gray/images/panel_tools.png deleted file mode 100644 index f33f8c970..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/panel_tools.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/searchbox_button.png b/vendor/FHC-vendor/easyui/themes/gray/images/searchbox_button.png deleted file mode 100644 index 6dd193158..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/searchbox_button.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/slider_handle.png b/vendor/FHC-vendor/easyui/themes/gray/images/slider_handle.png deleted file mode 100644 index b9802bae1..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/slider_handle.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/spinner_arrows.png b/vendor/FHC-vendor/easyui/themes/gray/images/spinner_arrows.png deleted file mode 100644 index dba62bb72..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/spinner_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/tabs_icons.png b/vendor/FHC-vendor/easyui/themes/gray/images/tabs_icons.png deleted file mode 100644 index dfa10f7d7..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/tabs_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/tree_icons.png b/vendor/FHC-vendor/easyui/themes/gray/images/tree_icons.png deleted file mode 100644 index e9be4f3a9..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/tree_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/images/validatebox_warning.png b/vendor/FHC-vendor/easyui/themes/gray/images/validatebox_warning.png deleted file mode 100644 index 2b3d4f05b..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/gray/images/validatebox_warning.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/gray/layout.css b/vendor/FHC-vendor/easyui/themes/gray/layout.css deleted file mode 100644 index da363ce81..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/layout.css +++ /dev/null @@ -1,133 +0,0 @@ -.layout { - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - z-index: 0; -} -.layout-panel { - position: absolute; - overflow: hidden; -} -.layout-body { - min-width: 1px; - min-height: 1px; -} -.layout-panel-east, -.layout-panel-west { - z-index: 2; -} -.layout-panel-north, -.layout-panel-south { - z-index: 3; -} -.layout-expand { - position: absolute; - padding: 0px; - font-size: 1px; - cursor: pointer; - z-index: 1; -} -.layout-expand .panel-header, -.layout-expand .panel-body { - background: transparent; - filter: none; - overflow: hidden; -} -.layout-expand .panel-header { - border-bottom-width: 0px; -} -.layout-expand .panel-body { - position: relative; -} -.layout-expand .panel-body .panel-icon { - margin-top: 0; - top: 0; - left: 50%; - margin-left: -8px; -} -.layout-expand-west .panel-header .panel-icon, -.layout-expand-east .panel-header .panel-icon { - display: none; -} -.layout-expand-title { - position: absolute; - top: 0; - left: 21px; - white-space: nowrap; - word-wrap: normal; - -webkit-transform: rotate(90deg); - -webkit-transform-origin: 0 0; - -moz-transform: rotate(90deg); - -moz-transform-origin: 0 0; - -o-transform: rotate(90deg); - -o-transform-origin: 0 0; - transform: rotate(90deg); - transform-origin: 0 0; -} -.layout-expand-with-icon { - top: 18px; -} -.layout-expand .panel-body-noheader .layout-expand-title, -.layout-expand .panel-body-noheader .panel-icon { - top: 5px; -} -.layout-expand .panel-body-noheader .layout-expand-with-icon { - top: 23px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - position: absolute; - font-size: 1px; - display: none; - z-index: 5; -} -.layout-split-proxy-h { - width: 5px; - cursor: e-resize; -} -.layout-split-proxy-v { - height: 5px; - cursor: n-resize; -} -.layout-mask { - position: absolute; - background: #fafafa; - filter: alpha(opacity=10); - opacity: 0.10; - z-index: 4; -} -.layout-button-up { - background: url('images/layout_arrows.png') no-repeat -16px -16px; -} -.layout-button-down { - background: url('images/layout_arrows.png') no-repeat -16px 0; -} -.layout-button-left { - background: url('images/layout_arrows.png') no-repeat 0 0; -} -.layout-button-right { - background: url('images/layout_arrows.png') no-repeat 0 -16px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - background-color: #bfbfbf; -} -.layout-split-north { - border-bottom: 5px solid #efefef; -} -.layout-split-south { - border-top: 5px solid #efefef; -} -.layout-split-east { - border-left: 5px solid #efefef; -} -.layout-split-west { - border-right: 5px solid #efefef; -} -.layout-expand { - background-color: #f3f3f3; -} -.layout-expand-over { - background-color: #f3f3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/linkbutton.css b/vendor/FHC-vendor/easyui/themes/gray/linkbutton.css deleted file mode 100644 index 53280e689..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/linkbutton.css +++ /dev/null @@ -1,203 +0,0 @@ -.l-btn { - text-decoration: none; - display: inline-block; - overflow: hidden; - margin: 0; - padding: 0; - cursor: pointer; - outline: none; - text-align: center; - vertical-align: middle; - line-height: normal; -} -.l-btn-plain { - border-width: 0; - padding: 1px; -} -.l-btn-left { - display: inline-block; - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - vertical-align: top; -} -.l-btn-text { - display: inline-block; - vertical-align: top; - width: auto; - line-height: 24px; - font-size: 12px; - padding: 0; - margin: 0 4px; -} -.l-btn-icon { - display: inline-block; - width: 16px; - height: 16px; - line-height: 16px; - position: absolute; - top: 50%; - margin-top: -8px; - font-size: 1px; -} -.l-btn span span .l-btn-empty { - display: inline-block; - margin: 0; - width: 16px; - height: 24px; - font-size: 1px; - vertical-align: top; -} -.l-btn span .l-btn-icon-left { - padding: 0 0 0 20px; - background-position: left center; -} -.l-btn span .l-btn-icon-right { - padding: 0 20px 0 0; - background-position: right center; -} -.l-btn-icon-left .l-btn-text { - margin: 0 4px 0 24px; -} -.l-btn-icon-left .l-btn-icon { - left: 4px; -} -.l-btn-icon-right .l-btn-text { - margin: 0 24px 0 4px; -} -.l-btn-icon-right .l-btn-icon { - right: 4px; -} -.l-btn-icon-top .l-btn-text { - margin: 20px 4px 0 4px; -} -.l-btn-icon-top .l-btn-icon { - top: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-icon-bottom .l-btn-text { - margin: 0 4px 20px 4px; -} -.l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-left .l-btn-empty { - margin: 0 4px; - width: 16px; -} -.l-btn-plain:hover { - padding: 0; -} -.l-btn-focus { - outline: #0000FF dotted thin; -} -.l-btn-large .l-btn-text { - line-height: 40px; -} -.l-btn-large .l-btn-icon { - width: 32px; - height: 32px; - line-height: 32px; - margin-top: -16px; -} -.l-btn-large .l-btn-icon-left .l-btn-text { - margin-left: 40px; -} -.l-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.l-btn-large .l-btn-icon-top .l-btn-text { - margin-top: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-top .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-left .l-btn-empty { - margin: 0 4px; - width: 32px; -} -.l-btn { - color: #444; - background: #fafafa; - background-repeat: repeat-x; - border: 1px solid #bbb; - background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0); - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn:hover { - background: #e2e2e2; - color: #000000; - border: 1px solid #ccc; - filter: none; -} -.l-btn-plain { - background: transparent; - border-width: 0; - filter: none; -} -.l-btn-outline { - border-width: 1px; - border-color: #ccc; - padding: 0; -} -.l-btn-plain:hover { - background: #e2e2e2; - color: #000000; - border: 1px solid #ccc; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.l-btn-disabled, -.l-btn-disabled:hover { - opacity: 0.5; - cursor: default; - background: #fafafa; - color: #444; - background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%); - background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0); -} -.l-btn-disabled .l-btn-text, -.l-btn-disabled .l-btn-icon { - filter: alpha(opacity=50); -} -.l-btn-plain-disabled, -.l-btn-plain-disabled:hover { - background: transparent; - filter: alpha(opacity=50); -} -.l-btn-selected, -.l-btn-selected:hover { - background: #ddd; - filter: none; -} -.l-btn-plain-selected, -.l-btn-plain-selected:hover { - background: #ddd; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/menu.css b/vendor/FHC-vendor/easyui/themes/gray/menu.css deleted file mode 100644 index 72ca0804d..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/menu.css +++ /dev/null @@ -1,119 +0,0 @@ -.menu { - position: absolute; - margin: 0; - padding: 2px; - border-width: 1px; - border-style: solid; - overflow: hidden; -} -.menu-inline { - position: relative; -} -.menu-item { - position: relative; - margin: 0; - padding: 0; - overflow: hidden; - white-space: nowrap; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.menu-text { - height: 20px; - line-height: 20px; - float: left; - padding-left: 28px; -} -.menu-icon { - position: absolute; - width: 16px; - height: 16px; - left: 2px; - top: 50%; - margin-top: -8px; -} -.menu-rightarrow { - position: absolute; - width: 16px; - height: 16px; - right: 0; - top: 50%; - margin-top: -8px; -} -.menu-line { - position: absolute; - left: 26px; - top: 0; - height: 2000px; - font-size: 1px; -} -.menu-sep { - margin: 3px 0px 3px 25px; - font-size: 1px; -} -.menu-noline .menu-line { - display: none; -} -.menu-noline .menu-sep { - margin-left: 0; - margin-right: 0; -} -.menu-active { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.menu-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: default; -} -.menu-text, -.menu-text span { - font-size: 12px; -} -.menu-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - background: #ccc; - -moz-box-shadow: 2px 2px 3px #cccccc; - -webkit-box-shadow: 2px 2px 3px #cccccc; - box-shadow: 2px 2px 3px #cccccc; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.menu-rightarrow { - background: url('images/menu_arrows.png') no-repeat -32px center; -} -.menu-line { - border-left: 1px solid #ccc; - border-right: 1px solid #fff; -} -.menu-sep { - border-top: 1px solid #ccc; - border-bottom: 1px solid #fff; -} -.menu { - background-color: #f3f3f3; - border-color: #D3D3D3; - color: #444; -} -.menu-content { - background: #ffffff; -} -.menu-item { - border-color: transparent; - _border-color: #f3f3f3; -} -.menu-active { - border-color: #ccc; - color: #000000; - background: #e2e2e2; -} -.menu-active-disabled { - border-color: transparent; - background: transparent; - color: #444; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/menubutton.css b/vendor/FHC-vendor/easyui/themes/gray/menubutton.css deleted file mode 100644 index f5732d5d9..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/menubutton.css +++ /dev/null @@ -1,94 +0,0 @@ -.m-btn-downarrow, -.s-btn-downarrow { - display: inline-block; - position: absolute; - width: 16px; - height: 16px; - font-size: 1px; - right: 0; - top: 50%; - margin-top: -8px; -} -.m-btn-active, -.s-btn-active { - background: #e2e2e2; - color: #000000; - border: 1px solid #ccc; - filter: none; -} -.m-btn-plain-active, -.s-btn-plain-active { - background: transparent; - padding: 0; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.m-btn .l-btn-left .l-btn-text { - margin-right: 20px; -} -.m-btn .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.m-btn .l-btn-icon-right .l-btn-icon { - right: 20px; -} -.m-btn .l-btn-icon-top .l-btn-text { - margin-right: 4px; - margin-bottom: 14px; -} -.m-btn .l-btn-icon-bottom .l-btn-text { - margin-right: 4px; - margin-bottom: 34px; -} -.m-btn .l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 20px; -} -.m-btn .l-btn-icon-top .m-btn-downarrow, -.m-btn .l-btn-icon-bottom .m-btn-downarrow { - top: auto; - bottom: 0px; - left: 50%; - margin-left: -8px; -} -.m-btn-line { - display: inline-block; - position: absolute; - font-size: 1px; - display: none; -} -.m-btn .l-btn-left .m-btn-line { - right: 0; - width: 16px; - height: 500px; - border-style: solid; - border-color: #bfbfbf; - border-width: 0 0 0 1px; -} -.m-btn .l-btn-icon-top .m-btn-line, -.m-btn .l-btn-icon-bottom .m-btn-line { - left: 0; - bottom: 0; - width: 500px; - height: 16px; - border-width: 1px 0 0 0; -} -.m-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 56px; -} -.m-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 50px; -} -.m-btn-downarrow, -.s-btn-downarrow { - background: url('images/menu_arrows.png') no-repeat 0 center; -} -.m-btn-plain-active, -.s-btn-plain-active { - border-color: #ccc; - background-color: #e2e2e2; - color: #000000; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/messager.css b/vendor/FHC-vendor/easyui/themes/gray/messager.css deleted file mode 100644 index d4ff8881c..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/messager.css +++ /dev/null @@ -1,40 +0,0 @@ -.messager-body { - padding: 10px; - overflow: auto; -} -.messager-button { - text-align: center; - padding: 5px; -} -.messager-button .l-btn { - width: 70px; -} -.messager-icon { - float: left; - width: 32px; - height: 32px; - margin: 0 10px 10px 0; -} -.messager-error { - background: url('images/messager_icons.png') no-repeat scroll -64px 0; -} -.messager-info { - background: url('images/messager_icons.png') no-repeat scroll 0 0; -} -.messager-question { - background: url('images/messager_icons.png') no-repeat scroll -32px 0; -} -.messager-warning { - background: url('images/messager_icons.png') no-repeat scroll -96px 0; -} -.messager-progress { - padding: 10px; -} -.messager-p-msg { - margin-bottom: 5px; -} -.messager-body .messager-input { - width: 100%; - padding: 1px 0; - border: 1px solid #D3D3D3; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/numberbox.css b/vendor/FHC-vendor/easyui/themes/gray/numberbox.css deleted file mode 100644 index ef92d174e..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/numberbox.css +++ /dev/null @@ -1,9 +0,0 @@ -.numberbox { - border: 1px solid #D3D3D3; - margin: 0; - padding: 0 2px; - vertical-align: middle; -} -.textbox { - padding: 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/pagination.css b/vendor/FHC-vendor/easyui/themes/gray/pagination.css deleted file mode 100644 index ac691ed66..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/pagination.css +++ /dev/null @@ -1,71 +0,0 @@ -.pagination { - zoom: 1; -} -.pagination table { - float: left; - height: 30px; -} -.pagination td { - border: 0; -} -.pagination-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ccc; - border-right: 1px solid #fff; - margin: 3px 1px; -} -.pagination .pagination-num { - border-width: 1px; - border-style: solid; - margin: 0 2px; - padding: 2px; - width: 2em; - height: auto; -} -.pagination-page-list { - margin: 0px 6px; - padding: 1px 2px; - width: auto; - height: auto; - border-width: 1px; - border-style: solid; -} -.pagination-info { - float: right; - margin: 0 6px 0 0; - padding: 0; - height: 30px; - line-height: 30px; - font-size: 12px; -} -.pagination span { - font-size: 12px; -} -.pagination-link .l-btn-text { - width: 24px; - text-align: center; - margin: 0; -} -.pagination-first { - background: url('images/pagination_icons.png') no-repeat 0 center; -} -.pagination-prev { - background: url('images/pagination_icons.png') no-repeat -16px center; -} -.pagination-next { - background: url('images/pagination_icons.png') no-repeat -32px center; -} -.pagination-last { - background: url('images/pagination_icons.png') no-repeat -48px center; -} -.pagination-load { - background: url('images/pagination_icons.png') no-repeat -64px center; -} -.pagination-loading { - background: url('images/loading.gif') no-repeat center center; -} -.pagination-page-list, -.pagination .pagination-num { - border-color: #D3D3D3; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/panel.css b/vendor/FHC-vendor/easyui/themes/gray/panel.css deleted file mode 100644 index fa41aaadc..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/panel.css +++ /dev/null @@ -1,142 +0,0 @@ -.panel { - overflow: hidden; - text-align: left; - margin: 0; - border: 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.panel-header, -.panel-body { - border-width: 1px; - border-style: solid; -} -.panel-header { - padding: 5px; - position: relative; -} -.panel-title { - background: url('images/blank.gif') no-repeat; -} -.panel-header-noborder { - border-width: 0 0 1px 0; -} -.panel-body { - overflow: auto; - border-top-width: 0; - padding: 0; -} -.panel-body-noheader { - border-top-width: 1px; -} -.panel-body-noborder { - border-width: 0px; -} -.panel-body-nobottom { - border-bottom-width: 0; -} -.panel-with-icon { - padding-left: 18px; -} -.panel-icon, -.panel-tool { - position: absolute; - top: 50%; - margin-top: -8px; - height: 16px; - overflow: hidden; -} -.panel-icon { - left: 5px; - width: 16px; -} -.panel-tool { - right: 5px; - width: auto; -} -.panel-tool a { - display: inline-block; - width: 16px; - height: 16px; - opacity: 0.6; - filter: alpha(opacity=60); - margin: 0 0 0 2px; - vertical-align: top; -} -.panel-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - background-color: #e2e2e2; - -moz-border-radius: 3px 3px 3px 3px; - -webkit-border-radius: 3px 3px 3px 3px; - border-radius: 3px 3px 3px 3px; -} -.panel-loading { - padding: 11px 0px 10px 30px; -} -.panel-noscroll { - overflow: hidden; -} -.panel-fit, -.panel-fit body { - height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: hidden; -} -.panel-loading { - background: url('images/loading.gif') no-repeat 10px 10px; -} -.panel-tool-close { - background: url('images/panel_tools.png') no-repeat -16px 0px; -} -.panel-tool-min { - background: url('images/panel_tools.png') no-repeat 0px 0px; -} -.panel-tool-max { - background: url('images/panel_tools.png') no-repeat 0px -16px; -} -.panel-tool-restore { - background: url('images/panel_tools.png') no-repeat -16px -16px; -} -.panel-tool-collapse { - background: url('images/panel_tools.png') no-repeat -32px 0; -} -.panel-tool-expand { - background: url('images/panel_tools.png') no-repeat -32px -16px; -} -.panel-header, -.panel-body { - border-color: #D3D3D3; -} -.panel-header { - background-color: #f3f3f3; - background: -webkit-linear-gradient(top,#F8F8F8 0,#eeeeee 100%); - background: -moz-linear-gradient(top,#F8F8F8 0,#eeeeee 100%); - background: -o-linear-gradient(top,#F8F8F8 0,#eeeeee 100%); - background: linear-gradient(to bottom,#F8F8F8 0,#eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F8F8F8,endColorstr=#eeeeee,GradientType=0); -} -.panel-body { - background-color: #ffffff; - color: #000000; - font-size: 12px; -} -.panel-title { - font-size: 12px; - font-weight: bold; - color: #575765; - height: 16px; - line-height: 16px; -} -.panel-footer { - border: 1px solid #D3D3D3; - overflow: hidden; - background: #fafafa; -} -.panel-footer-noborder { - border-width: 1px 0 0 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/progressbar.css b/vendor/FHC-vendor/easyui/themes/gray/progressbar.css deleted file mode 100644 index 93818e3e1..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/progressbar.css +++ /dev/null @@ -1,32 +0,0 @@ -.progressbar { - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - overflow: hidden; - position: relative; -} -.progressbar-text { - text-align: center; - position: absolute; -} -.progressbar-value { - position: relative; - overflow: hidden; - width: 0; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.progressbar { - border-color: #D3D3D3; -} -.progressbar-text { - color: #000000; - font-size: 12px; -} -.progressbar-value .progressbar-text { - background-color: #0092DC; - color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/propertygrid.css b/vendor/FHC-vendor/easyui/themes/gray/propertygrid.css deleted file mode 100644 index 90e452088..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/propertygrid.css +++ /dev/null @@ -1,28 +0,0 @@ -.propertygrid .datagrid-view1 .datagrid-body td { - padding-bottom: 1px; - border-width: 0 1px 0 0; -} -.propertygrid .datagrid-group { - height: 21px; - overflow: hidden; - border-width: 0 0 1px 0; - border-style: solid; -} -.propertygrid .datagrid-group span { - font-weight: bold; -} -.propertygrid .datagrid-view1 .datagrid-body td { - border-color: #ddd; -} -.propertygrid .datagrid-view1 .datagrid-group { - border-color: #f3f3f3; -} -.propertygrid .datagrid-view2 .datagrid-group { - border-color: #ddd; -} -.propertygrid .datagrid-group, -.propertygrid .datagrid-view1 .datagrid-body, -.propertygrid .datagrid-view1 .datagrid-row-over, -.propertygrid .datagrid-view1 .datagrid-row-selected { - background: #f3f3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/searchbox.css b/vendor/FHC-vendor/easyui/themes/gray/searchbox.css deleted file mode 100644 index ed01d4351..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/searchbox.css +++ /dev/null @@ -1,90 +0,0 @@ -.searchbox { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.searchbox .searchbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 0 2px; - vertical-align: top; -} -.searchbox .searchbox-prompt { - font-size: 12px; - color: #ccc; -} -.searchbox-button { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.searchbox-button-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.searchbox .l-btn-plain { - border: 0; - padding: 0; - vertical-align: top; - opacity: 0.6; - filter: alpha(opacity=60); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .l-btn-plain:hover { - border: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox a.m-btn-plain-active { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .m-btn-active { - border-width: 0 1px 0 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .textbox-button-right { - border-width: 0 0 0 1px; -} -.searchbox .textbox-button-left { - border-width: 0 1px 0 0; -} -.searchbox-button { - background: url('images/searchbox_button.png') no-repeat center center; -} -.searchbox { - border-color: #D3D3D3; - background-color: #fff; -} -.searchbox .l-btn-plain { - background: #f3f3f3; -} -.searchbox .l-btn-plain-disabled, -.searchbox .l-btn-plain-disabled:hover { - opacity: 0.5; - filter: alpha(opacity=50); -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/slider.css b/vendor/FHC-vendor/easyui/themes/gray/slider.css deleted file mode 100644 index b16381208..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/slider.css +++ /dev/null @@ -1,101 +0,0 @@ -.slider-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.slider-h { - height: 22px; -} -.slider-v { - width: 22px; -} -.slider-inner { - position: relative; - height: 6px; - top: 7px; - border-width: 1px; - border-style: solid; - border-radius: 5px; -} -.slider-handle { - position: absolute; - display: block; - outline: none; - width: 20px; - height: 20px; - top: 50%; - margin-top: -10px; - margin-left: -10px; -} -.slider-tip { - position: absolute; - display: inline-block; - line-height: 12px; - font-size: 12px; - white-space: nowrap; - top: -22px; -} -.slider-rule { - position: relative; - top: 15px; -} -.slider-rule span { - position: absolute; - display: inline-block; - font-size: 0; - height: 5px; - border-width: 0 0 0 1px; - border-style: solid; -} -.slider-rulelabel { - position: relative; - top: 20px; -} -.slider-rulelabel span { - position: absolute; - display: inline-block; - font-size: 12px; -} -.slider-v .slider-inner { - width: 6px; - left: 7px; - top: 0; - float: left; -} -.slider-v .slider-handle { - left: 50%; - margin-top: -10px; -} -.slider-v .slider-tip { - left: -10px; - margin-top: -6px; -} -.slider-v .slider-rule { - float: left; - top: 0; - left: 16px; -} -.slider-v .slider-rule span { - width: 5px; - height: 'auto'; - border-left: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.slider-v .slider-rulelabel { - float: left; - top: 0; - left: 23px; -} -.slider-handle { - background: url('images/slider_handle.png') no-repeat; -} -.slider-inner { - border-color: #D3D3D3; - background: #f3f3f3; -} -.slider-rule span { - border-color: #D3D3D3; -} -.slider-rulelabel span { - color: #000000; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/spinner.css b/vendor/FHC-vendor/easyui/themes/gray/spinner.css deleted file mode 100644 index 4d9958765..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/spinner.css +++ /dev/null @@ -1,72 +0,0 @@ -.spinner { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.spinner .spinner-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0 2px; - vertical-align: baseline; -} -.spinner-arrow { - background-color: #f3f3f3; - display: inline-block; - overflow: hidden; - vertical-align: top; - margin: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - width: 18px; -} -.spinner-arrow-up, -.spinner-arrow-down { - opacity: 0.6; - filter: alpha(opacity=60); - display: block; - font-size: 1px; - width: 18px; - height: 10px; - width: 100%; - height: 50%; - color: #444; - outline-style: none; -} -.spinner-arrow-hover { - background-color: #e2e2e2; - opacity: 1.0; - filter: alpha(opacity=100); -} -.spinner-arrow-up:hover, -.spinner-arrow-down:hover { - opacity: 1.0; - filter: alpha(opacity=100); - background-color: #e2e2e2; -} -.textbox-icon-disabled .spinner-arrow-up:hover, -.textbox-icon-disabled .spinner-arrow-down:hover { - opacity: 0.6; - filter: alpha(opacity=60); - background-color: #f3f3f3; - cursor: default; -} -.spinner .textbox-icon-disabled { - opacity: 0.6; - filter: alpha(opacity=60); -} -.spinner-arrow-up { - background: url('images/spinner_arrows.png') no-repeat 1px center; -} -.spinner-arrow-down { - background: url('images/spinner_arrows.png') no-repeat -15px center; -} -.spinner { - border-color: #D3D3D3; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/splitbutton.css b/vendor/FHC-vendor/easyui/themes/gray/splitbutton.css deleted file mode 100644 index bb2b6daaf..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/splitbutton.css +++ /dev/null @@ -1,12 +0,0 @@ -.s-btn:hover .m-btn-line, -.s-btn-active .m-btn-line, -.s-btn-plain-active .m-btn-line { - display: inline-block; -} -.l-btn:hover .s-btn-downarrow, -.s-btn-active .s-btn-downarrow, -.s-btn-plain-active .s-btn-downarrow { - border-style: solid; - border-color: #bfbfbf; - border-width: 0 0 0 1px; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/switchbutton.css b/vendor/FHC-vendor/easyui/themes/gray/switchbutton.css deleted file mode 100644 index a33305c77..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/switchbutton.css +++ /dev/null @@ -1,77 +0,0 @@ -.switchbutton { - text-decoration: none; - display: inline-block; - overflow: hidden; - vertical-align: middle; - margin: 0; - padding: 0; - cursor: pointer; - background: #bbb; - border: 1px solid #bbb; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-inner { - display: inline-block; - overflow: hidden; - position: relative; - top: -1px; - left: -1px; -} -.switchbutton-on, -.switchbutton-off, -.switchbutton-handle { - display: inline-block; - text-align: center; - height: 100%; - float: left; - font-size: 12px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.switchbutton-on { - background: #0092DC; - color: #fff; -} -.switchbutton-off { - background-color: #ffffff; - color: #000000; -} -.switchbutton-on, -.switchbutton-reversed .switchbutton-off { - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.switchbutton-off, -.switchbutton-reversed .switchbutton-on { - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.switchbutton-handle { - position: absolute; - top: 0; - left: 50%; - background-color: #ffffff; - color: #000000; - border: 1px solid #bbb; - -moz-box-shadow: 0 0 3px 0 #bbb; - -webkit-box-shadow: 0 0 3px 0 #bbb; - box-shadow: 0 0 3px 0 #bbb; -} -.switchbutton-value { - position: absolute; - top: 0; - left: -5000px; -} -.switchbutton-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.switchbutton-disabled, -.switchbutton-readonly { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/tabs.css b/vendor/FHC-vendor/easyui/themes/gray/tabs.css deleted file mode 100644 index bbdd989a7..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/tabs.css +++ /dev/null @@ -1,413 +0,0 @@ -.tabs-container { - overflow: hidden; -} -.tabs-header { - border-width: 1px; - border-style: solid; - border-bottom-width: 0; - position: relative; - padding: 0; - padding-top: 2px; - overflow: hidden; -} -.tabs-scroller-left, -.tabs-scroller-right { - position: absolute; - top: auto; - bottom: 0; - width: 18px; - font-size: 1px; - display: none; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.tabs-scroller-left { - left: 0; -} -.tabs-scroller-right { - right: 0; -} -.tabs-tool { - position: absolute; - bottom: 0; - padding: 1px; - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.tabs-header-plain .tabs-tool { - padding: 0 1px; -} -.tabs-wrap { - position: relative; - left: 0; - overflow: hidden; - width: 100%; - margin: 0; - padding: 0; -} -.tabs-scrolling { - margin-left: 18px; - margin-right: 18px; -} -.tabs-disabled { - opacity: 0.3; - filter: alpha(opacity=30); -} -.tabs { - list-style-type: none; - height: 26px; - margin: 0px; - padding: 0px; - padding-left: 4px; - width: 50000px; - border-style: solid; - border-width: 0 0 1px 0; -} -.tabs li { - float: left; - display: inline-block; - margin: 0 4px -1px 0; - padding: 0; - position: relative; - border: 0; -} -.tabs li a.tabs-inner { - display: inline-block; - text-decoration: none; - margin: 0; - padding: 0 10px; - height: 25px; - line-height: 25px; - text-align: center; - white-space: nowrap; - border-width: 1px; - border-style: solid; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.tabs li.tabs-selected a.tabs-inner { - font-weight: bold; - outline: none; -} -.tabs li.tabs-selected a:hover.tabs-inner { - cursor: default; - pointer: default; -} -.tabs li a.tabs-close, -.tabs-p-tool { - position: absolute; - font-size: 1px; - display: block; - height: 12px; - padding: 0; - top: 50%; - margin-top: -6px; - overflow: hidden; -} -.tabs li a.tabs-close { - width: 12px; - right: 5px; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs-p-tool { - right: 16px; -} -.tabs-p-tool a { - display: inline-block; - font-size: 1px; - width: 12px; - height: 12px; - margin: 0; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs li a:hover.tabs-close, -.tabs-p-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - cursor: hand; - cursor: pointer; -} -.tabs-with-icon { - padding-left: 18px; -} -.tabs-icon { - position: absolute; - width: 16px; - height: 16px; - left: 10px; - top: 50%; - margin-top: -8px; -} -.tabs-title { - font-size: 12px; -} -.tabs-closable { - padding-right: 8px; -} -.tabs-panels { - margin: 0px; - padding: 0px; - border-width: 1px; - border-style: solid; - border-top-width: 0; - overflow: hidden; -} -.tabs-header-bottom { - border-width: 0 1px 1px 1px; - padding: 0 0 2px 0; -} -.tabs-header-bottom .tabs { - border-width: 1px 0 0 0; -} -.tabs-header-bottom .tabs li { - margin: -1px 4px 0 0; -} -.tabs-header-bottom .tabs li a.tabs-inner { - -moz-border-radius: 0 0 5px 5px; - -webkit-border-radius: 0 0 5px 5px; - border-radius: 0 0 5px 5px; -} -.tabs-header-bottom .tabs-tool { - top: 0; -} -.tabs-header-bottom .tabs-scroller-left, -.tabs-header-bottom .tabs-scroller-right { - top: 0; - bottom: auto; -} -.tabs-panels-top { - border-width: 1px 1px 0 1px; -} -.tabs-header-left { - float: left; - border-width: 1px 0 1px 1px; - padding: 0; -} -.tabs-header-right { - float: right; - border-width: 1px 1px 1px 0; - padding: 0; -} -.tabs-header-left .tabs-wrap, -.tabs-header-right .tabs-wrap { - height: 100%; -} -.tabs-header-left .tabs { - height: 100%; - padding: 4px 0 0 2px; - border-width: 0 1px 0 0; -} -.tabs-header-right .tabs { - height: 100%; - padding: 4px 2px 0 0; - border-width: 0 0 0 1px; -} -.tabs-header-left .tabs li, -.tabs-header-right .tabs li { - display: block; - width: 100%; - position: relative; -} -.tabs-header-left .tabs li { - left: auto; - right: 0; - margin: 0 -1px 4px 0; - float: right; -} -.tabs-header-right .tabs li { - left: 0; - right: auto; - margin: 0 0 4px -1px; - float: left; -} -.tabs-justified li a.tabs-inner { - padding-left: 0; - padding-right: 0; -} -.tabs-header-left .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 5px 0 0 5px; - -webkit-border-radius: 5px 0 0 5px; - border-radius: 5px 0 0 5px; -} -.tabs-header-right .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - border-radius: 0 5px 5px 0; -} -.tabs-panels-right { - float: right; - border-width: 1px 1px 1px 0; -} -.tabs-panels-left { - float: left; - border-width: 1px 0 1px 1px; -} -.tabs-header-noborder, -.tabs-panels-noborder { - border: 0px; -} -.tabs-header-plain { - border: 0px; - background: transparent; -} -.tabs-pill { - padding-bottom: 3px; -} -.tabs-header-bottom .tabs-pill { - padding-top: 3px; - padding-bottom: 0; -} -.tabs-header-left .tabs-pill { - padding-right: 3px; -} -.tabs-header-right .tabs-pill { - padding-left: 3px; -} -.tabs-header .tabs-pill li a.tabs-inner { - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tabs-header-narrow, -.tabs-header-narrow .tabs-narrow { - padding: 0; -} -.tabs-narrow li, -.tabs-header-bottom .tabs-narrow li { - margin-left: 0; - margin-right: -1px; -} -.tabs-narrow li.tabs-last, -.tabs-header-bottom .tabs-narrow li.tabs-last { - margin-right: 0; -} -.tabs-header-left .tabs-narrow, -.tabs-header-right .tabs-narrow { - padding-top: 0; -} -.tabs-header-left .tabs-narrow li { - margin-bottom: -1px; - margin-right: -1px; -} -.tabs-header-left .tabs-narrow li.tabs-last, -.tabs-header-right .tabs-narrow li.tabs-last { - margin-bottom: 0; -} -.tabs-header-right .tabs-narrow li { - margin-bottom: -1px; - margin-left: -1px; -} -.tabs-scroller-left { - background: #f3f3f3 url('images/tabs_icons.png') no-repeat 1px center; -} -.tabs-scroller-right { - background: #f3f3f3 url('images/tabs_icons.png') no-repeat -15px center; -} -.tabs li a.tabs-close { - background: url('images/tabs_icons.png') no-repeat -34px center; -} -.tabs li a.tabs-inner:hover { - background: #e2e2e2; - color: #000000; - filter: none; -} -.tabs li.tabs-selected a.tabs-inner { - background-color: #ffffff; - color: #575765; - background: -webkit-linear-gradient(top,#F8F8F8 0,#ffffff 100%); - background: -moz-linear-gradient(top,#F8F8F8 0,#ffffff 100%); - background: -o-linear-gradient(top,#F8F8F8 0,#ffffff 100%); - background: linear-gradient(to bottom,#F8F8F8 0,#ffffff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F8F8F8,endColorstr=#ffffff,GradientType=0); -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(top,#ffffff 0,#F8F8F8 100%); - background: -moz-linear-gradient(top,#ffffff 0,#F8F8F8 100%); - background: -o-linear-gradient(top,#ffffff 0,#F8F8F8 100%); - background: linear-gradient(to bottom,#ffffff 0,#F8F8F8 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#F8F8F8,GradientType=0); -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#F8F8F8 0,#ffffff 100%); - background: -moz-linear-gradient(left,#F8F8F8 0,#ffffff 100%); - background: -o-linear-gradient(left,#F8F8F8 0,#ffffff 100%); - background: linear-gradient(to right,#F8F8F8 0,#ffffff 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F8F8F8,endColorstr=#ffffff,GradientType=1); -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - background: -webkit-linear-gradient(left,#ffffff 0,#F8F8F8 100%); - background: -moz-linear-gradient(left,#ffffff 0,#F8F8F8 100%); - background: -o-linear-gradient(left,#ffffff 0,#F8F8F8 100%); - background: linear-gradient(to right,#ffffff 0,#F8F8F8 100%); - background-repeat: repeat-y; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#F8F8F8,GradientType=1); -} -.tabs li a.tabs-inner { - color: #575765; - background-color: #f3f3f3; - background: -webkit-linear-gradient(top,#F8F8F8 0,#eeeeee 100%); - background: -moz-linear-gradient(top,#F8F8F8 0,#eeeeee 100%); - background: -o-linear-gradient(top,#F8F8F8 0,#eeeeee 100%); - background: linear-gradient(to bottom,#F8F8F8 0,#eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F8F8F8,endColorstr=#eeeeee,GradientType=0); -} -.tabs-header, -.tabs-tool { - background-color: #f3f3f3; -} -.tabs-header-plain { - background: transparent; -} -.tabs-header, -.tabs-scroller-left, -.tabs-scroller-right, -.tabs-tool, -.tabs, -.tabs-panels, -.tabs li a.tabs-inner, -.tabs li.tabs-selected a.tabs-inner, -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner, -.tabs-header-left .tabs li.tabs-selected a.tabs-inner, -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-color: #D3D3D3; -} -.tabs-p-tool a:hover, -.tabs li a:hover.tabs-close, -.tabs-scroller-over { - background-color: #e2e2e2; -} -.tabs li.tabs-selected a.tabs-inner { - border-bottom: 1px solid #ffffff; -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - border-top: 1px solid #ffffff; -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - border-right: 1px solid #ffffff; -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-left: 1px solid #ffffff; -} -.tabs-header .tabs-pill li.tabs-selected a.tabs-inner { - background: #0092DC; - color: #fff; - filter: none; - border-color: #D3D3D3; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/textbox.css b/vendor/FHC-vendor/easyui/themes/gray/textbox.css deleted file mode 100644 index 2e9735dcd..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/textbox.css +++ /dev/null @@ -1,90 +0,0 @@ -.textbox { - position: relative; - border: 1px solid #D3D3D3; - background-color: #fff; - vertical-align: middle; - display: inline-block; - overflow: hidden; - white-space: nowrap; - margin: 0; - padding: 0; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox .textbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 4px; - white-space: normal; - vertical-align: top; - outline-style: none; - resize: none; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.textbox textarea.textbox-text { - white-space: pre-wrap; -} -.textbox .textbox-prompt { - font-size: 12px; - color: #aaa; -} -.textbox .textbox-button, -.textbox .textbox-button:hover { - position: absolute; - top: 0; - padding: 0; - vertical-align: top; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.textbox-button-right, -.textbox-button-right:hover { - border-width: 0 0 0 1px; -} -.textbox-button-left, -.textbox-button-left:hover { - border-width: 0 1px 0 0; -} -.textbox-addon { - position: absolute; - top: 0; -} -.textbox-icon { - display: inline-block; - width: 18px; - height: 20px; - overflow: hidden; - vertical-align: top; - background-position: center center; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); - text-decoration: none; - outline-style: none; -} -.textbox-icon-disabled, -.textbox-icon-readonly { - cursor: default; -} -.textbox-icon:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.textbox-icon-disabled:hover { - opacity: 0.6; - filter: alpha(opacity=60); -} -.textbox-focused { - -moz-box-shadow: 0 0 3px 0 #D3D3D3; - -webkit-box-shadow: 0 0 3px 0 #D3D3D3; - box-shadow: 0 0 3px 0 #D3D3D3; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/tooltip.css b/vendor/FHC-vendor/easyui/themes/gray/tooltip.css deleted file mode 100644 index e2ba0c5d3..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/tooltip.css +++ /dev/null @@ -1,103 +0,0 @@ -.tooltip { - position: absolute; - display: none; - z-index: 9900000; - outline: none; - opacity: 1; - filter: alpha(opacity=100); - padding: 5px; - border-width: 1px; - border-style: solid; - border-radius: 5px; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.tooltip-content { - font-size: 12px; -} -.tooltip-arrow-outer, -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - line-height: 0; - font-size: 0; - border-style: solid; - border-width: 6px; - border-color: transparent; - _border-color: tomato; - _filter: chroma(color=tomato); -} -.tooltip-arrow { - display: none \9; -} -.tooltip-right .tooltip-arrow-outer { - left: 0; - top: 50%; - margin: -6px 0 0 -13px; -} -.tooltip-right .tooltip-arrow { - left: 0; - top: 50%; - margin: -6px 0 0 -12px; -} -.tooltip-left .tooltip-arrow-outer { - right: 0; - top: 50%; - margin: -6px -13px 0 0; -} -.tooltip-left .tooltip-arrow { - right: 0; - top: 50%; - margin: -6px -12px 0 0; -} -.tooltip-top .tooltip-arrow-outer { - bottom: 0; - left: 50%; - margin: 0 0 -13px -6px; -} -.tooltip-top .tooltip-arrow { - bottom: 0; - left: 50%; - margin: 0 0 -12px -6px; -} -.tooltip-bottom .tooltip-arrow-outer { - top: 0; - left: 50%; - margin: -13px 0 0 -6px; -} -.tooltip-bottom .tooltip-arrow { - top: 0; - left: 50%; - margin: -12px 0 0 -6px; -} -.tooltip { - background-color: #ffffff; - border-color: #D3D3D3; - color: #000000; -} -.tooltip-right .tooltip-arrow-outer { - border-right-color: #D3D3D3; -} -.tooltip-right .tooltip-arrow { - border-right-color: #ffffff; -} -.tooltip-left .tooltip-arrow-outer { - border-left-color: #D3D3D3; -} -.tooltip-left .tooltip-arrow { - border-left-color: #ffffff; -} -.tooltip-top .tooltip-arrow-outer { - border-top-color: #D3D3D3; -} -.tooltip-top .tooltip-arrow { - border-top-color: #ffffff; -} -.tooltip-bottom .tooltip-arrow-outer { - border-bottom-color: #D3D3D3; -} -.tooltip-bottom .tooltip-arrow { - border-bottom-color: #ffffff; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/tree.css b/vendor/FHC-vendor/easyui/themes/gray/tree.css deleted file mode 100644 index 832a8f9f0..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/tree.css +++ /dev/null @@ -1,160 +0,0 @@ -.tree { - margin: 0; - padding: 0; - list-style-type: none; -} -.tree li { - white-space: nowrap; -} -.tree li ul { - list-style-type: none; - margin: 0; - padding: 0; -} -.tree-node { - height: 18px; - white-space: nowrap; - cursor: pointer; -} -.tree-hit { - cursor: pointer; -} -.tree-expanded, -.tree-collapsed, -.tree-folder, -.tree-file, -.tree-checkbox, -.tree-indent { - display: inline-block; - width: 16px; - height: 18px; - vertical-align: top; - overflow: hidden; -} -.tree-expanded { - background: url('images/tree_icons.png') no-repeat -18px 0px; -} -.tree-expanded-hover { - background: url('images/tree_icons.png') no-repeat -50px 0px; -} -.tree-collapsed { - background: url('images/tree_icons.png') no-repeat 0px 0px; -} -.tree-collapsed-hover { - background: url('images/tree_icons.png') no-repeat -32px 0px; -} -.tree-lines .tree-expanded, -.tree-lines .tree-root-first .tree-expanded { - background: url('images/tree_icons.png') no-repeat -144px 0; -} -.tree-lines .tree-collapsed, -.tree-lines .tree-root-first .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -128px 0; -} -.tree-lines .tree-node-last .tree-expanded, -.tree-lines .tree-root-one .tree-expanded { - background: url('images/tree_icons.png') no-repeat -80px 0; -} -.tree-lines .tree-node-last .tree-collapsed, -.tree-lines .tree-root-one .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -64px 0; -} -.tree-line { - background: url('images/tree_icons.png') no-repeat -176px 0; -} -.tree-join { - background: url('images/tree_icons.png') no-repeat -192px 0; -} -.tree-joinbottom { - background: url('images/tree_icons.png') no-repeat -160px 0; -} -.tree-folder { - background: url('images/tree_icons.png') no-repeat -208px 0; -} -.tree-folder-open { - background: url('images/tree_icons.png') no-repeat -224px 0; -} -.tree-file { - background: url('images/tree_icons.png') no-repeat -240px 0; -} -.tree-loading { - background: url('images/loading.gif') no-repeat center center; -} -.tree-checkbox0 { - background: url('images/tree_icons.png') no-repeat -208px -18px; -} -.tree-checkbox1 { - background: url('images/tree_icons.png') no-repeat -224px -18px; -} -.tree-checkbox2 { - background: url('images/tree_icons.png') no-repeat -240px -18px; -} -.tree-title { - font-size: 12px; - display: inline-block; - text-decoration: none; - vertical-align: top; - white-space: nowrap; - padding: 0 2px; - height: 18px; - line-height: 18px; -} -.tree-node-proxy { - font-size: 12px; - line-height: 20px; - padding: 0 2px 0 20px; - border-width: 1px; - border-style: solid; - z-index: 9900000; -} -.tree-dnd-icon { - display: inline-block; - position: absolute; - width: 16px; - height: 18px; - left: 2px; - top: 50%; - margin-top: -9px; -} -.tree-dnd-yes { - background: url('images/tree_icons.png') no-repeat -256px 0; -} -.tree-dnd-no { - background: url('images/tree_icons.png') no-repeat -256px -18px; -} -.tree-node-top { - border-top: 1px dotted red; -} -.tree-node-bottom { - border-bottom: 1px dotted red; -} -.tree-node-append .tree-title { - border: 1px dotted red; -} -.tree-editor { - border: 1px solid #ccc; - font-size: 12px; - height: 14px !important; - height: 18px; - line-height: 14px; - padding: 1px 2px; - width: 80px; - position: absolute; - top: 0; -} -.tree-node-proxy { - background-color: #ffffff; - color: #000000; - border-color: #D3D3D3; -} -.tree-node-hover { - background: #e2e2e2; - color: #000000; -} -.tree-node-selected { - background: #0092DC; - color: #fff; -} -.tree-node-hidden { - display: none; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/validatebox.css b/vendor/FHC-vendor/easyui/themes/gray/validatebox.css deleted file mode 100644 index 1fc3ad64e..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/validatebox.css +++ /dev/null @@ -1,5 +0,0 @@ -.validatebox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; - color: #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/gray/window.css b/vendor/FHC-vendor/easyui/themes/gray/window.css deleted file mode 100644 index dfe895468..000000000 --- a/vendor/FHC-vendor/easyui/themes/gray/window.css +++ /dev/null @@ -1,94 +0,0 @@ -.window { - overflow: hidden; - padding: 5px; - border-width: 1px; - border-style: solid; -} -.window .window-header { - background: transparent; - padding: 0px 0px 6px 0px; -} -.window .window-body { - border-width: 1px; - border-style: solid; - border-top-width: 0px; -} -.window .window-body-noheader { - border-top-width: 1px; -} -.window .panel-body-nobottom { - border-bottom-width: 0; -} -.window .window-header .panel-icon, -.window .window-header .panel-tool { - top: 50%; - margin-top: -11px; -} -.window .window-header .panel-icon { - left: 1px; -} -.window .window-header .panel-tool { - right: 1px; -} -.window .window-header .panel-with-icon { - padding-left: 18px; -} -.window-proxy { - position: absolute; - overflow: hidden; -} -.window-proxy-mask { - position: absolute; - filter: alpha(opacity=5); - opacity: 0.05; -} -.window-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - filter: alpha(opacity=40); - opacity: 0.40; - font-size: 1px; - overflow: hidden; -} -.window, -.window-shadow { - position: absolute; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -.window-shadow { - background: #ccc; - -moz-box-shadow: 2px 2px 3px #cccccc; - -webkit-box-shadow: 2px 2px 3px #cccccc; - box-shadow: 2px 2px 3px #cccccc; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.window, -.window .window-body { - border-color: #D3D3D3; -} -.window { - background-color: #f3f3f3; - background: -webkit-linear-gradient(top,#F8F8F8 0,#eeeeee 20%); - background: -moz-linear-gradient(top,#F8F8F8 0,#eeeeee 20%); - background: -o-linear-gradient(top,#F8F8F8 0,#eeeeee 20%); - background: linear-gradient(to bottom,#F8F8F8 0,#eeeeee 20%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F8F8F8,endColorstr=#eeeeee,GradientType=0); -} -.window-proxy { - border: 1px dashed #D3D3D3; -} -.window-proxy-mask, -.window-mask { - background: #ccc; -} -.window .panel-footer { - border: 1px solid #D3D3D3; - position: relative; - top: -1px; -} diff --git a/vendor/FHC-vendor/easyui/themes/icon.css b/vendor/FHC-vendor/easyui/themes/icon.css deleted file mode 100644 index c2d3b2161..000000000 --- a/vendor/FHC-vendor/easyui/themes/icon.css +++ /dev/null @@ -1,96 +0,0 @@ -.icon-blank{ - background:url('icons/blank.gif') no-repeat center center; -} -.icon-add{ - background:url('icons/edit_add.png') no-repeat center center; -} -.icon-edit{ - background:url('icons/pencil.png') no-repeat center center; -} -.icon-clear{ - background:url('icons/clear.png') no-repeat center center; -} -.icon-remove{ - background:url('icons/edit_remove.png') no-repeat center center; -} -.icon-save{ - background:url('icons/filesave.png') no-repeat center center; -} -.icon-cut{ - background:url('icons/cut.png') no-repeat center center; -} -.icon-ok{ - background:url('icons/ok.png') no-repeat center center; -} -.icon-no{ - background:url('icons/no.png') no-repeat center center; -} -.icon-cancel{ - background:url('icons/cancel.png') no-repeat center center; -} -.icon-reload{ - background:url('icons/reload.png') no-repeat center center; -} -.icon-search{ - background:url('icons/search.png') no-repeat center center; -} -.icon-print{ - background:url('icons/print.png') no-repeat center center; -} -.icon-help{ - background:url('icons/help.png') no-repeat center center; -} -.icon-undo{ - background:url('icons/undo.png') no-repeat center center; -} -.icon-redo{ - background:url('icons/redo.png') no-repeat center center; -} -.icon-back{ - background:url('icons/back.png') no-repeat center center; -} -.icon-sum{ - background:url('icons/sum.png') no-repeat center center; -} -.icon-tip{ - background:url('icons/tip.png') no-repeat center center; -} -.icon-filter{ - background:url('icons/filter.png') no-repeat center center; -} -.icon-man{ - background:url('icons/man.png') no-repeat center center; -} -.icon-lock{ - background:url('icons/lock.png') no-repeat center center; -} -.icon-more{ - background:url('icons/more.png') no-repeat center center; -} - - -.icon-mini-add{ - background:url('icons/mini_add.png') no-repeat center center; -} -.icon-mini-edit{ - background:url('icons/mini_edit.png') no-repeat center center; -} -.icon-mini-refresh{ - background:url('icons/mini_refresh.png') no-repeat center center; -} - -.icon-large-picture{ - background:url('icons/large_picture.png') no-repeat center center; -} -.icon-large-clipart{ - background:url('icons/large_clipart.png') no-repeat center center; -} -.icon-large-shapes{ - background:url('icons/large_shapes.png') no-repeat center center; -} -.icon-large-smartart{ - background:url('icons/large_smartart.png') no-repeat center center; -} -.icon-large-chart{ - background:url('icons/large_chart.png') no-repeat center center; -} diff --git a/vendor/FHC-vendor/easyui/themes/icons/back.png b/vendor/FHC-vendor/easyui/themes/icons/back.png deleted file mode 100644 index 3fe8b178e..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/back.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/blank.gif b/vendor/FHC-vendor/easyui/themes/icons/blank.gif deleted file mode 100644 index 1d11fa9ad..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/blank.gif and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/cancel.png b/vendor/FHC-vendor/easyui/themes/icons/cancel.png deleted file mode 100644 index a432b492c..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/cancel.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/clear.png b/vendor/FHC-vendor/easyui/themes/icons/clear.png deleted file mode 100644 index 74b9af919..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/clear.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/cut.png b/vendor/FHC-vendor/easyui/themes/icons/cut.png deleted file mode 100644 index 21fdb4dc3..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/cut.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/edit_add.png b/vendor/FHC-vendor/easyui/themes/icons/edit_add.png deleted file mode 100644 index e9485082e..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/edit_add.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/edit_remove.png b/vendor/FHC-vendor/easyui/themes/icons/edit_remove.png deleted file mode 100644 index d555d921a..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/edit_remove.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/filesave.png b/vendor/FHC-vendor/easyui/themes/icons/filesave.png deleted file mode 100644 index fd0048ded..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/filesave.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/filter.png b/vendor/FHC-vendor/easyui/themes/icons/filter.png deleted file mode 100644 index 1fedf7ae6..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/filter.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/help.png b/vendor/FHC-vendor/easyui/themes/icons/help.png deleted file mode 100644 index 28a0f9e5e..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/help.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/large_chart.png b/vendor/FHC-vendor/easyui/themes/icons/large_chart.png deleted file mode 100644 index 527608ee9..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/large_chart.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/large_clipart.png b/vendor/FHC-vendor/easyui/themes/icons/large_clipart.png deleted file mode 100644 index 9c9c44002..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/large_clipart.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/large_picture.png b/vendor/FHC-vendor/easyui/themes/icons/large_picture.png deleted file mode 100644 index a005b0c68..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/large_picture.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/large_shapes.png b/vendor/FHC-vendor/easyui/themes/icons/large_shapes.png deleted file mode 100644 index 90a0dcacd..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/large_shapes.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/large_smartart.png b/vendor/FHC-vendor/easyui/themes/icons/large_smartart.png deleted file mode 100644 index b47da08fa..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/large_smartart.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/lock.png b/vendor/FHC-vendor/easyui/themes/icons/lock.png deleted file mode 100644 index 15bd64329..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/lock.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/man.png b/vendor/FHC-vendor/easyui/themes/icons/man.png deleted file mode 100644 index a8cafcb9a..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/man.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/mini_add.png b/vendor/FHC-vendor/easyui/themes/icons/mini_add.png deleted file mode 100644 index fd82b92dc..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/mini_add.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/mini_edit.png b/vendor/FHC-vendor/easyui/themes/icons/mini_edit.png deleted file mode 100644 index db9221a80..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/mini_edit.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/mini_refresh.png b/vendor/FHC-vendor/easyui/themes/icons/mini_refresh.png deleted file mode 100644 index 6cdd01603..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/mini_refresh.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/more.png b/vendor/FHC-vendor/easyui/themes/icons/more.png deleted file mode 100644 index 94922a2c8..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/more.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/no.png b/vendor/FHC-vendor/easyui/themes/icons/no.png deleted file mode 100644 index 37a7c7497..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/no.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/ok.png b/vendor/FHC-vendor/easyui/themes/icons/ok.png deleted file mode 100644 index 5b0f6a617..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/ok.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/pencil.png b/vendor/FHC-vendor/easyui/themes/icons/pencil.png deleted file mode 100644 index 5b8cc893d..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/pencil.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/print.png b/vendor/FHC-vendor/easyui/themes/icons/print.png deleted file mode 100644 index fdf67a1e2..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/print.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/redo.png b/vendor/FHC-vendor/easyui/themes/icons/redo.png deleted file mode 100644 index f1e45cff9..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/redo.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/reload.png b/vendor/FHC-vendor/easyui/themes/icons/reload.png deleted file mode 100644 index f51cab8e3..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/reload.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/search.png b/vendor/FHC-vendor/easyui/themes/icons/search.png deleted file mode 100644 index 6dd193158..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/search.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/sum.png b/vendor/FHC-vendor/easyui/themes/icons/sum.png deleted file mode 100644 index fd7b32e43..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/sum.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/tip.png b/vendor/FHC-vendor/easyui/themes/icons/tip.png deleted file mode 100644 index 845e11070..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/tip.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/icons/undo.png b/vendor/FHC-vendor/easyui/themes/icons/undo.png deleted file mode 100644 index 6129fa0c7..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/icons/undo.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/accordion.css b/vendor/FHC-vendor/easyui/themes/metro/accordion.css deleted file mode 100644 index 31d6079ec..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/accordion.css +++ /dev/null @@ -1,41 +0,0 @@ -.accordion { - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.accordion .accordion-header { - border-width: 0 0 1px; - cursor: pointer; -} -.accordion .accordion-body { - border-width: 0 0 1px; -} -.accordion-noborder { - border-width: 0; -} -.accordion-noborder .accordion-header { - border-width: 0 0 1px; -} -.accordion-noborder .accordion-body { - border-width: 0 0 1px; -} -.accordion-collapse { - background: url('images/accordion_arrows.png') no-repeat 0 0; -} -.accordion-expand { - background: url('images/accordion_arrows.png') no-repeat -16px 0; -} -.accordion { - background: #fff; - border-color: #ddd; -} -.accordion .accordion-header { - background: #ffffff; - filter: none; -} -.accordion .accordion-header-selected { - background: #CCE6FF; -} -.accordion .accordion-header-selected .panel-title { - color: #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/calendar.css b/vendor/FHC-vendor/easyui/themes/metro/calendar.css deleted file mode 100644 index 6af24ac4c..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/calendar.css +++ /dev/null @@ -1,197 +0,0 @@ -.calendar { - border-width: 1px; - border-style: solid; - padding: 1px; - overflow: hidden; -} -.calendar table { - table-layout: fixed; - border-collapse: separate; - font-size: 12px; - width: 100%; - height: 100%; -} -.calendar table td, -.calendar table th { - font-size: 12px; -} -.calendar-noborder { - border: 0; -} -.calendar-header { - position: relative; - height: 22px; -} -.calendar-title { - text-align: center; - height: 22px; -} -.calendar-title span { - position: relative; - display: inline-block; - top: 2px; - padding: 0 3px; - height: 18px; - line-height: 18px; - font-size: 12px; - cursor: pointer; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.calendar-prevmonth, -.calendar-nextmonth, -.calendar-prevyear, -.calendar-nextyear { - position: absolute; - top: 50%; - margin-top: -7px; - width: 14px; - height: 14px; - cursor: pointer; - font-size: 1px; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.calendar-prevmonth { - left: 20px; - background: url('images/calendar_arrows.png') no-repeat -18px -2px; -} -.calendar-nextmonth { - right: 20px; - background: url('images/calendar_arrows.png') no-repeat -34px -2px; -} -.calendar-prevyear { - left: 3px; - background: url('images/calendar_arrows.png') no-repeat -1px -2px; -} -.calendar-nextyear { - right: 3px; - background: url('images/calendar_arrows.png') no-repeat -49px -2px; -} -.calendar-body { - position: relative; -} -.calendar-body th, -.calendar-body td { - text-align: center; -} -.calendar-day { - border: 0; - padding: 1px; - cursor: pointer; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.calendar-other-month { - opacity: 0.3; - filter: alpha(opacity=30); -} -.calendar-disabled { - opacity: 0.6; - filter: alpha(opacity=60); - cursor: default; -} -.calendar-menu { - position: absolute; - top: 0; - left: 0; - width: 180px; - height: 150px; - padding: 5px; - font-size: 12px; - display: none; - overflow: hidden; -} -.calendar-menu-year-inner { - text-align: center; - padding-bottom: 5px; -} -.calendar-menu-year { - width: 40px; - text-align: center; - border-width: 1px; - border-style: solid; - margin: 0; - padding: 2px; - font-weight: bold; - font-size: 12px; -} -.calendar-menu-prev, -.calendar-menu-next { - display: inline-block; - width: 21px; - height: 21px; - vertical-align: top; - cursor: pointer; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.calendar-menu-prev { - margin-right: 10px; - background: url('images/calendar_arrows.png') no-repeat 2px 2px; -} -.calendar-menu-next { - margin-left: 10px; - background: url('images/calendar_arrows.png') no-repeat -45px 2px; -} -.calendar-menu-month { - text-align: center; - cursor: pointer; - font-weight: bold; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.calendar-body th, -.calendar-menu-month { - color: #919191; -} -.calendar-day { - color: #444; -} -.calendar-sunday { - color: #CC2222; -} -.calendar-saturday { - color: #00ee00; -} -.calendar-today { - color: #0000ff; -} -.calendar-menu-year { - border-color: #ddd; -} -.calendar { - border-color: #ddd; -} -.calendar-header { - background: #ffffff; -} -.calendar-body, -.calendar-menu { - background: #fff; -} -.calendar-body th { - background: #fff; - padding: 2px 0; -} -.calendar-hover, -.calendar-nav-hover, -.calendar-menu-hover { - background-color: #E6E6E6; - color: #444; -} -.calendar-hover { - border: 1px solid #ddd; - padding: 0; -} -.calendar-selected { - background-color: #CCE6FF; - color: #000; - border: 1px solid #99cdff; - padding: 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/combo.css b/vendor/FHC-vendor/easyui/themes/metro/combo.css deleted file mode 100644 index 39fac282f..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/combo.css +++ /dev/null @@ -1,60 +0,0 @@ -.combo { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.combo .combo-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0px 2px; - vertical-align: baseline; -} -.combo-arrow { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.combo-arrow-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.combo-panel { - overflow: auto; -} -.combo-arrow { - background: url('images/combo_arrow.png') no-repeat center center; -} -.combo-panel { - background-color: #fff; -} -.combo { - border-color: #ddd; - background-color: #fff; -} -.combo-arrow { - background-color: #ffffff; -} -.combo-arrow-hover { - background-color: #E6E6E6; -} -.combo-arrow:hover { - background-color: #E6E6E6; -} -.combo .textbox-icon-disabled:hover { - cursor: default; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/combobox.css b/vendor/FHC-vendor/easyui/themes/metro/combobox.css deleted file mode 100644 index 0e058b1f9..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/combobox.css +++ /dev/null @@ -1,24 +0,0 @@ -.combobox-item, -.combobox-group { - font-size: 12px; - padding: 3px; - padding-right: 0px; -} -.combobox-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.combobox-gitem { - padding-left: 10px; -} -.combobox-group { - font-weight: bold; -} -.combobox-item-hover { - background-color: #E6E6E6; - color: #444; -} -.combobox-item-selected { - background-color: #CCE6FF; - color: #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/datagrid.css b/vendor/FHC-vendor/easyui/themes/metro/datagrid.css deleted file mode 100644 index cb8dcc285..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/datagrid.css +++ /dev/null @@ -1,270 +0,0 @@ -.datagrid .panel-body { - overflow: hidden; - position: relative; -} -.datagrid-view { - position: relative; - overflow: hidden; -} -.datagrid-view1, -.datagrid-view2 { - position: absolute; - overflow: hidden; - top: 0; -} -.datagrid-view1 { - left: 0; -} -.datagrid-view2 { - right: 0; -} -.datagrid-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - opacity: 0.3; - filter: alpha(opacity=30); - display: none; -} -.datagrid-mask-msg { - position: absolute; - top: 50%; - margin-top: -20px; - padding: 10px 5px 10px 30px; - width: auto; - height: 16px; - border-width: 2px; - border-style: solid; - display: none; -} -.datagrid-sort-icon { - padding: 0; - display: none; -} -.datagrid-toolbar { - height: auto; - padding: 1px 2px; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ddd; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.datagrid .datagrid-pager { - display: block; - margin: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.datagrid .datagrid-pager-top { - border-width: 0 0 1px 0; -} -.datagrid-header { - overflow: hidden; - cursor: default; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-header-inner { - float: left; - width: 10000px; -} -.datagrid-header-row, -.datagrid-row { - height: 25px; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-width: 0 1px 1px 0; - border-style: dotted; - margin: 0; - padding: 0; -} -.datagrid-cell, -.datagrid-cell-group, -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - margin: 0; - padding: 0 4px; - white-space: nowrap; - word-wrap: normal; - overflow: hidden; - height: 18px; - line-height: 18px; - font-size: 12px; -} -.datagrid-header .datagrid-cell { - height: auto; -} -.datagrid-header .datagrid-cell span { - font-size: 12px; -} -.datagrid-cell-group { - text-align: center; - text-overflow: ellipsis; -} -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - width: 30px; - text-align: center; - margin: 0; - padding: 0; -} -.datagrid-body { - margin: 0; - padding: 0; - overflow: auto; - zoom: 1; -} -.datagrid-view1 .datagrid-body-inner { - padding-bottom: 20px; -} -.datagrid-view1 .datagrid-body { - overflow: hidden; -} -.datagrid-footer { - overflow: hidden; -} -.datagrid-footer-inner { - border-width: 1px 0 0 0; - border-style: solid; - width: 10000px; - float: left; -} -.datagrid-row-editing .datagrid-cell { - height: auto; -} -.datagrid-header-check, -.datagrid-cell-check { - padding: 0; - width: 27px; - height: 18px; - font-size: 1px; - text-align: center; - overflow: hidden; -} -.datagrid-header-check input, -.datagrid-cell-check input { - margin: 0; - padding: 0; - width: 15px; - height: 18px; -} -.datagrid-resize-proxy { - position: absolute; - width: 1px; - height: 10000px; - top: 0; - cursor: e-resize; - display: none; -} -.datagrid-body .datagrid-editable { - margin: 0; - padding: 0; -} -.datagrid-body .datagrid-editable table { - width: 100%; - height: 100%; -} -.datagrid-body .datagrid-editable td { - border: 0; - margin: 0; - padding: 0; -} -.datagrid-view .datagrid-editable-input { - margin: 0; - padding: 2px 4px; - border: 1px solid #ddd; - font-size: 12px; - outline-style: none; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.datagrid-sort .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -64px center; -} -.datagrid-sort-desc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -16px center; -} -.datagrid-sort-asc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat 0px center; -} -.datagrid-row-collapse { - background: url('images/datagrid_icons.png') no-repeat -48px center; -} -.datagrid-row-expand { - background: url('images/datagrid_icons.png') no-repeat -32px center; -} -.datagrid-mask-msg { - background: #fff url('images/loading.gif') no-repeat scroll 5px center; -} -.datagrid-header, -.datagrid-td-rownumber { - background-color: #ffffff; -} -.datagrid-cell-rownumber { - color: #444; -} -.datagrid-resize-proxy { - background: #b3b3b3; -} -.datagrid-mask { - background: #eee; -} -.datagrid-mask-msg { - border-color: #ddd; -} -.datagrid-toolbar, -.datagrid-pager { - background: #fff; -} -.datagrid-header, -.datagrid-toolbar, -.datagrid-pager, -.datagrid-footer-inner { - border-color: #ddd; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-color: #ddd; -} -.datagrid-htable, -.datagrid-btable, -.datagrid-ftable { - color: #444; - border-collapse: separate; -} -.datagrid-row-alt { - background: #f5f5f5; -} -.datagrid-row-over, -.datagrid-header td.datagrid-header-over { - background: #E6E6E6; - color: #444; - cursor: default; -} -.datagrid-row-selected { - background: #CCE6FF; - color: #000; -} -.datagrid-row-editing .textbox, -.datagrid-row-editing .textbox-text { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/datalist.css b/vendor/FHC-vendor/easyui/themes/metro/datalist.css deleted file mode 100644 index 8a7f94989..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/datalist.css +++ /dev/null @@ -1,95 +0,0 @@ -.datalist .datagrid-header { - border-width: 0; -} -.datalist .datagrid-group, -.m-list .m-list-group { - height: 25px; - line-height: 25px; - font-weight: bold; - overflow: hidden; - background-color: #ffffff; - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ddd; -} -.datalist .datagrid-group-expander { - display: none; -} -.datalist .datagrid-group-title { - padding: 0 4px; -} -.datalist .datagrid-btable { - width: 100%; - table-layout: fixed; -} -.datalist .datagrid-row td { - border-style: solid; - border-left-color: transparent; - border-right-color: transparent; - border-bottom-width: 0; -} -.datalist-lines .datagrid-row td { - border-bottom-width: 1px; -} -.datalist .datagrid-cell, -.m-list li { - width: auto; - height: auto; - padding: 2px 4px; - line-height: 18px; - position: relative; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link, -.m-list li>a { - display: block; - position: relative; - cursor: pointer; - color: #444; - text-decoration: none; - overflow: hidden; - margin: -2px -4px; - padding: 2px 4px; - padding-right: 16px; - line-height: 18px; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link::after, -.m-list li>a::after { - position: absolute; - display: block; - width: 8px; - height: 8px; - content: ''; - right: 6px; - top: 50%; - margin-top: -4px; - border-style: solid; - border-width: 1px 1px 0 0; - -ms-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); -} -.m-list { - margin: 0; - padding: 0; - list-style: none; -} -.m-list li { - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ddd; -} -.m-list li>a:hover { - background: #E6E6E6; - color: #444; -} -.m-list .m-list-group { - padding: 0 4px; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/datebox.css b/vendor/FHC-vendor/easyui/themes/metro/datebox.css deleted file mode 100644 index b0f71e24d..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/datebox.css +++ /dev/null @@ -1,36 +0,0 @@ -.datebox-calendar-inner { - height: 180px; -} -.datebox-button { - height: 18px; - padding: 2px 5px; - text-align: center; -} -.datebox-button a { - font-size: 12px; - font-weight: bold; - text-decoration: none; - opacity: 0.6; - filter: alpha(opacity=60); -} -.datebox-button a:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.datebox-current, -.datebox-close { - float: left; -} -.datebox-close { - float: right; -} -.datebox .combo-arrow { - background-image: url('images/datebox_arrow.png'); - background-position: center center; -} -.datebox-button { - background-color: #fff; -} -.datebox-button a { - color: #777; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/dialog.css b/vendor/FHC-vendor/easyui/themes/metro/dialog.css deleted file mode 100644 index ea1a9e851..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/dialog.css +++ /dev/null @@ -1,32 +0,0 @@ -.dialog-content { - overflow: auto; -} -.dialog-toolbar { - padding: 2px 5px; -} -.dialog-tool-separator { - float: left; - height: 24px; - border-left: 1px solid #ddd; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.dialog-button { - padding: 5px; - text-align: right; -} -.dialog-button .l-btn { - margin-left: 5px; -} -.dialog-toolbar, -.dialog-button { - background: #fff; - border-width: 1px; - border-style: solid; -} -.dialog-toolbar { - border-color: #ddd #ddd #ddd #ddd; -} -.dialog-button { - border-color: #ddd #ddd #ddd #ddd; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/easyui.css b/vendor/FHC-vendor/easyui/themes/metro/easyui.css deleted file mode 100644 index 83d5c418a..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/easyui.css +++ /dev/null @@ -1,2815 +0,0 @@ -.panel { - overflow: hidden; - text-align: left; - margin: 0; - border: 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.panel-header, -.panel-body { - border-width: 1px; - border-style: solid; -} -.panel-header { - padding: 5px; - position: relative; -} -.panel-title { - background: url('images/blank.gif') no-repeat; -} -.panel-header-noborder { - border-width: 0 0 1px 0; -} -.panel-body { - overflow: auto; - border-top-width: 0; - padding: 0; -} -.panel-body-noheader { - border-top-width: 1px; -} -.panel-body-noborder { - border-width: 0px; -} -.panel-body-nobottom { - border-bottom-width: 0; -} -.panel-with-icon { - padding-left: 18px; -} -.panel-icon, -.panel-tool { - position: absolute; - top: 50%; - margin-top: -8px; - height: 16px; - overflow: hidden; -} -.panel-icon { - left: 5px; - width: 16px; -} -.panel-tool { - right: 5px; - width: auto; -} -.panel-tool a { - display: inline-block; - width: 16px; - height: 16px; - opacity: 0.6; - filter: alpha(opacity=60); - margin: 0 0 0 2px; - vertical-align: top; -} -.panel-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - background-color: #E6E6E6; - -moz-border-radius: -2px -2px -2px -2px; - -webkit-border-radius: -2px -2px -2px -2px; - border-radius: -2px -2px -2px -2px; -} -.panel-loading { - padding: 11px 0px 10px 30px; -} -.panel-noscroll { - overflow: hidden; -} -.panel-fit, -.panel-fit body { - height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: hidden; -} -.panel-loading { - background: url('images/loading.gif') no-repeat 10px 10px; -} -.panel-tool-close { - background: url('images/panel_tools.png') no-repeat -16px 0px; -} -.panel-tool-min { - background: url('images/panel_tools.png') no-repeat 0px 0px; -} -.panel-tool-max { - background: url('images/panel_tools.png') no-repeat 0px -16px; -} -.panel-tool-restore { - background: url('images/panel_tools.png') no-repeat -16px -16px; -} -.panel-tool-collapse { - background: url('images/panel_tools.png') no-repeat -32px 0; -} -.panel-tool-expand { - background: url('images/panel_tools.png') no-repeat -32px -16px; -} -.panel-header, -.panel-body { - border-color: #ddd; -} -.panel-header { - background-color: #ffffff; -} -.panel-body { - background-color: #fff; - color: #444; - font-size: 12px; -} -.panel-title { - font-size: 12px; - font-weight: bold; - color: #777; - height: 16px; - line-height: 16px; -} -.panel-footer { - border: 1px solid #ddd; - overflow: hidden; - background: #fff; -} -.panel-footer-noborder { - border-width: 1px 0 0 0; -} -.accordion { - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.accordion .accordion-header { - border-width: 0 0 1px; - cursor: pointer; -} -.accordion .accordion-body { - border-width: 0 0 1px; -} -.accordion-noborder { - border-width: 0; -} -.accordion-noborder .accordion-header { - border-width: 0 0 1px; -} -.accordion-noborder .accordion-body { - border-width: 0 0 1px; -} -.accordion-collapse { - background: url('images/accordion_arrows.png') no-repeat 0 0; -} -.accordion-expand { - background: url('images/accordion_arrows.png') no-repeat -16px 0; -} -.accordion { - background: #fff; - border-color: #ddd; -} -.accordion .accordion-header { - background: #ffffff; - filter: none; -} -.accordion .accordion-header-selected { - background: #CCE6FF; -} -.accordion .accordion-header-selected .panel-title { - color: #000; -} -.window { - overflow: hidden; - padding: 5px; - border-width: 1px; - border-style: solid; -} -.window .window-header { - background: transparent; - padding: 0px 0px 6px 0px; -} -.window .window-body { - border-width: 1px; - border-style: solid; - border-top-width: 0px; -} -.window .window-body-noheader { - border-top-width: 1px; -} -.window .panel-body-nobottom { - border-bottom-width: 0; -} -.window .window-header .panel-icon, -.window .window-header .panel-tool { - top: 50%; - margin-top: -11px; -} -.window .window-header .panel-icon { - left: 1px; -} -.window .window-header .panel-tool { - right: 1px; -} -.window .window-header .panel-with-icon { - padding-left: 18px; -} -.window-proxy { - position: absolute; - overflow: hidden; -} -.window-proxy-mask { - position: absolute; - filter: alpha(opacity=5); - opacity: 0.05; -} -.window-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - filter: alpha(opacity=40); - opacity: 0.40; - font-size: 1px; - overflow: hidden; -} -.window, -.window-shadow { - position: absolute; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.window-shadow { - background: #eee; - -moz-box-shadow: 2px 2px 3px #ededed; - -webkit-box-shadow: 2px 2px 3px #ededed; - box-shadow: 2px 2px 3px #ededed; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.window, -.window .window-body { - border-color: #ddd; -} -.window { - background-color: #ffffff; -} -.window-proxy { - border: 1px dashed #ddd; -} -.window-proxy-mask, -.window-mask { - background: #eee; -} -.window .panel-footer { - border: 1px solid #ddd; - position: relative; - top: -1px; -} -.dialog-content { - overflow: auto; -} -.dialog-toolbar { - padding: 2px 5px; -} -.dialog-tool-separator { - float: left; - height: 24px; - border-left: 1px solid #ddd; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.dialog-button { - padding: 5px; - text-align: right; -} -.dialog-button .l-btn { - margin-left: 5px; -} -.dialog-toolbar, -.dialog-button { - background: #fff; - border-width: 1px; - border-style: solid; -} -.dialog-toolbar { - border-color: #ddd #ddd #ddd #ddd; -} -.dialog-button { - border-color: #ddd #ddd #ddd #ddd; -} -.l-btn { - text-decoration: none; - display: inline-block; - overflow: hidden; - margin: 0; - padding: 0; - cursor: pointer; - outline: none; - text-align: center; - vertical-align: middle; - line-height: normal; -} -.l-btn-plain { - border-width: 0; - padding: 1px; -} -.l-btn-left { - display: inline-block; - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - vertical-align: top; -} -.l-btn-text { - display: inline-block; - vertical-align: top; - width: auto; - line-height: 24px; - font-size: 12px; - padding: 0; - margin: 0 4px; -} -.l-btn-icon { - display: inline-block; - width: 16px; - height: 16px; - line-height: 16px; - position: absolute; - top: 50%; - margin-top: -8px; - font-size: 1px; -} -.l-btn span span .l-btn-empty { - display: inline-block; - margin: 0; - width: 16px; - height: 24px; - font-size: 1px; - vertical-align: top; -} -.l-btn span .l-btn-icon-left { - padding: 0 0 0 20px; - background-position: left center; -} -.l-btn span .l-btn-icon-right { - padding: 0 20px 0 0; - background-position: right center; -} -.l-btn-icon-left .l-btn-text { - margin: 0 4px 0 24px; -} -.l-btn-icon-left .l-btn-icon { - left: 4px; -} -.l-btn-icon-right .l-btn-text { - margin: 0 24px 0 4px; -} -.l-btn-icon-right .l-btn-icon { - right: 4px; -} -.l-btn-icon-top .l-btn-text { - margin: 20px 4px 0 4px; -} -.l-btn-icon-top .l-btn-icon { - top: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-icon-bottom .l-btn-text { - margin: 0 4px 20px 4px; -} -.l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-left .l-btn-empty { - margin: 0 4px; - width: 16px; -} -.l-btn-plain:hover { - padding: 0; -} -.l-btn-focus { - outline: #0000FF dotted thin; -} -.l-btn-large .l-btn-text { - line-height: 40px; -} -.l-btn-large .l-btn-icon { - width: 32px; - height: 32px; - line-height: 32px; - margin-top: -16px; -} -.l-btn-large .l-btn-icon-left .l-btn-text { - margin-left: 40px; -} -.l-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.l-btn-large .l-btn-icon-top .l-btn-text { - margin-top: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-top .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-left .l-btn-empty { - margin: 0 4px; - width: 32px; -} -.l-btn { - color: #777; - background: #ffffff; - background-repeat: repeat-x; - border: 1px solid #dddddd; - background: -webkit-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -moz-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -o-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: linear-gradient(to bottom,#ffffff 0,#ffffff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff,GradientType=0); - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.l-btn:hover { - background: #E6E6E6; - color: #444; - border: 1px solid #ddd; - filter: none; -} -.l-btn-plain { - background: transparent; - border-width: 0; - filter: none; -} -.l-btn-outline { - border-width: 1px; - border-color: #ddd; - padding: 0; -} -.l-btn-plain:hover { - background: #E6E6E6; - color: #444; - border: 1px solid #ddd; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.l-btn-disabled, -.l-btn-disabled:hover { - opacity: 0.5; - cursor: default; - background: #ffffff; - color: #777; - background: -webkit-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -moz-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -o-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: linear-gradient(to bottom,#ffffff 0,#ffffff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff,GradientType=0); -} -.l-btn-disabled .l-btn-text, -.l-btn-disabled .l-btn-icon { - filter: alpha(opacity=50); -} -.l-btn-plain-disabled, -.l-btn-plain-disabled:hover { - background: transparent; - filter: alpha(opacity=50); -} -.l-btn-selected, -.l-btn-selected:hover { - background: #ddd; - filter: none; -} -.l-btn-plain-selected, -.l-btn-plain-selected:hover { - background: #ddd; -} -.textbox { - position: relative; - border: 1px solid #ddd; - background-color: #fff; - vertical-align: middle; - display: inline-block; - overflow: hidden; - white-space: nowrap; - margin: 0; - padding: 0; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.textbox .textbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 4px; - white-space: normal; - vertical-align: top; - outline-style: none; - resize: none; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.textbox textarea.textbox-text { - white-space: pre-wrap; -} -.textbox .textbox-prompt { - font-size: 12px; - color: #aaa; -} -.textbox .textbox-button, -.textbox .textbox-button:hover { - position: absolute; - top: 0; - padding: 0; - vertical-align: top; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.textbox-button-right, -.textbox-button-right:hover { - border-width: 0 0 0 1px; -} -.textbox-button-left, -.textbox-button-left:hover { - border-width: 0 1px 0 0; -} -.textbox-addon { - position: absolute; - top: 0; -} -.textbox-icon { - display: inline-block; - width: 18px; - height: 20px; - overflow: hidden; - vertical-align: top; - background-position: center center; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); - text-decoration: none; - outline-style: none; -} -.textbox-icon-disabled, -.textbox-icon-readonly { - cursor: default; -} -.textbox-icon:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.textbox-icon-disabled:hover { - opacity: 0.6; - filter: alpha(opacity=60); -} -.textbox-focused { - -moz-box-shadow: 0 0 3px 0 #ddd; - -webkit-box-shadow: 0 0 3px 0 #ddd; - box-shadow: 0 0 3px 0 #ddd; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.filebox .textbox-value { - vertical-align: top; - position: absolute; - top: 0; - left: -5000px; -} -.filebox-label { - display: inline-block; - position: absolute; - width: 100%; - height: 100%; - cursor: pointer; - left: 0; - top: 0; - z-index: 10; - background: url('images/blank.gif') no-repeat; -} -.l-btn-disabled .filebox-label { - cursor: default; -} -.combo { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.combo .combo-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0px 2px; - vertical-align: baseline; -} -.combo-arrow { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.combo-arrow-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.combo-panel { - overflow: auto; -} -.combo-arrow { - background: url('images/combo_arrow.png') no-repeat center center; -} -.combo-panel { - background-color: #fff; -} -.combo { - border-color: #ddd; - background-color: #fff; -} -.combo-arrow { - background-color: #ffffff; -} -.combo-arrow-hover { - background-color: #E6E6E6; -} -.combo-arrow:hover { - background-color: #E6E6E6; -} -.combo .textbox-icon-disabled:hover { - cursor: default; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.combobox-item, -.combobox-group { - font-size: 12px; - padding: 3px; - padding-right: 0px; -} -.combobox-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.combobox-gitem { - padding-left: 10px; -} -.combobox-group { - font-weight: bold; -} -.combobox-item-hover { - background-color: #E6E6E6; - color: #444; -} -.combobox-item-selected { - background-color: #CCE6FF; - color: #000; -} -.layout { - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - z-index: 0; -} -.layout-panel { - position: absolute; - overflow: hidden; -} -.layout-body { - min-width: 1px; - min-height: 1px; -} -.layout-panel-east, -.layout-panel-west { - z-index: 2; -} -.layout-panel-north, -.layout-panel-south { - z-index: 3; -} -.layout-expand { - position: absolute; - padding: 0px; - font-size: 1px; - cursor: pointer; - z-index: 1; -} -.layout-expand .panel-header, -.layout-expand .panel-body { - background: transparent; - filter: none; - overflow: hidden; -} -.layout-expand .panel-header { - border-bottom-width: 0px; -} -.layout-expand .panel-body { - position: relative; -} -.layout-expand .panel-body .panel-icon { - margin-top: 0; - top: 0; - left: 50%; - margin-left: -8px; -} -.layout-expand-west .panel-header .panel-icon, -.layout-expand-east .panel-header .panel-icon { - display: none; -} -.layout-expand-title { - position: absolute; - top: 0; - left: 21px; - white-space: nowrap; - word-wrap: normal; - -webkit-transform: rotate(90deg); - -webkit-transform-origin: 0 0; - -moz-transform: rotate(90deg); - -moz-transform-origin: 0 0; - -o-transform: rotate(90deg); - -o-transform-origin: 0 0; - transform: rotate(90deg); - transform-origin: 0 0; -} -.layout-expand-with-icon { - top: 18px; -} -.layout-expand .panel-body-noheader .layout-expand-title, -.layout-expand .panel-body-noheader .panel-icon { - top: 5px; -} -.layout-expand .panel-body-noheader .layout-expand-with-icon { - top: 23px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - position: absolute; - font-size: 1px; - display: none; - z-index: 5; -} -.layout-split-proxy-h { - width: 5px; - cursor: e-resize; -} -.layout-split-proxy-v { - height: 5px; - cursor: n-resize; -} -.layout-mask { - position: absolute; - background: #fafafa; - filter: alpha(opacity=10); - opacity: 0.10; - z-index: 4; -} -.layout-button-up { - background: url('images/layout_arrows.png') no-repeat -16px -16px; -} -.layout-button-down { - background: url('images/layout_arrows.png') no-repeat -16px 0; -} -.layout-button-left { - background: url('images/layout_arrows.png') no-repeat 0 0; -} -.layout-button-right { - background: url('images/layout_arrows.png') no-repeat 0 -16px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - background-color: #b3b3b3; -} -.layout-split-north { - border-bottom: 5px solid #fff; -} -.layout-split-south { - border-top: 5px solid #fff; -} -.layout-split-east { - border-left: 5px solid #fff; -} -.layout-split-west { - border-right: 5px solid #fff; -} -.layout-expand { - background-color: #ffffff; -} -.layout-expand-over { - background-color: #ffffff; -} -.tabs-container { - overflow: hidden; -} -.tabs-header { - border-width: 1px; - border-style: solid; - border-bottom-width: 0; - position: relative; - padding: 0; - padding-top: 2px; - overflow: hidden; -} -.tabs-scroller-left, -.tabs-scroller-right { - position: absolute; - top: auto; - bottom: 0; - width: 18px; - font-size: 1px; - display: none; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.tabs-scroller-left { - left: 0; -} -.tabs-scroller-right { - right: 0; -} -.tabs-tool { - position: absolute; - bottom: 0; - padding: 1px; - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.tabs-header-plain .tabs-tool { - padding: 0 1px; -} -.tabs-wrap { - position: relative; - left: 0; - overflow: hidden; - width: 100%; - margin: 0; - padding: 0; -} -.tabs-scrolling { - margin-left: 18px; - margin-right: 18px; -} -.tabs-disabled { - opacity: 0.3; - filter: alpha(opacity=30); -} -.tabs { - list-style-type: none; - height: 26px; - margin: 0px; - padding: 0px; - padding-left: 4px; - width: 50000px; - border-style: solid; - border-width: 0 0 1px 0; -} -.tabs li { - float: left; - display: inline-block; - margin: 0 4px -1px 0; - padding: 0; - position: relative; - border: 0; -} -.tabs li a.tabs-inner { - display: inline-block; - text-decoration: none; - margin: 0; - padding: 0 10px; - height: 25px; - line-height: 25px; - text-align: center; - white-space: nowrap; - border-width: 1px; - border-style: solid; - -moz-border-radius: 0px 0px 0 0; - -webkit-border-radius: 0px 0px 0 0; - border-radius: 0px 0px 0 0; -} -.tabs li.tabs-selected a.tabs-inner { - font-weight: bold; - outline: none; -} -.tabs li.tabs-selected a:hover.tabs-inner { - cursor: default; - pointer: default; -} -.tabs li a.tabs-close, -.tabs-p-tool { - position: absolute; - font-size: 1px; - display: block; - height: 12px; - padding: 0; - top: 50%; - margin-top: -6px; - overflow: hidden; -} -.tabs li a.tabs-close { - width: 12px; - right: 5px; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs-p-tool { - right: 16px; -} -.tabs-p-tool a { - display: inline-block; - font-size: 1px; - width: 12px; - height: 12px; - margin: 0; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs li a:hover.tabs-close, -.tabs-p-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - cursor: hand; - cursor: pointer; -} -.tabs-with-icon { - padding-left: 18px; -} -.tabs-icon { - position: absolute; - width: 16px; - height: 16px; - left: 10px; - top: 50%; - margin-top: -8px; -} -.tabs-title { - font-size: 12px; -} -.tabs-closable { - padding-right: 8px; -} -.tabs-panels { - margin: 0px; - padding: 0px; - border-width: 1px; - border-style: solid; - border-top-width: 0; - overflow: hidden; -} -.tabs-header-bottom { - border-width: 0 1px 1px 1px; - padding: 0 0 2px 0; -} -.tabs-header-bottom .tabs { - border-width: 1px 0 0 0; -} -.tabs-header-bottom .tabs li { - margin: -1px 4px 0 0; -} -.tabs-header-bottom .tabs li a.tabs-inner { - -moz-border-radius: 0 0 0px 0px; - -webkit-border-radius: 0 0 0px 0px; - border-radius: 0 0 0px 0px; -} -.tabs-header-bottom .tabs-tool { - top: 0; -} -.tabs-header-bottom .tabs-scroller-left, -.tabs-header-bottom .tabs-scroller-right { - top: 0; - bottom: auto; -} -.tabs-panels-top { - border-width: 1px 1px 0 1px; -} -.tabs-header-left { - float: left; - border-width: 1px 0 1px 1px; - padding: 0; -} -.tabs-header-right { - float: right; - border-width: 1px 1px 1px 0; - padding: 0; -} -.tabs-header-left .tabs-wrap, -.tabs-header-right .tabs-wrap { - height: 100%; -} -.tabs-header-left .tabs { - height: 100%; - padding: 4px 0 0 2px; - border-width: 0 1px 0 0; -} -.tabs-header-right .tabs { - height: 100%; - padding: 4px 2px 0 0; - border-width: 0 0 0 1px; -} -.tabs-header-left .tabs li, -.tabs-header-right .tabs li { - display: block; - width: 100%; - position: relative; -} -.tabs-header-left .tabs li { - left: auto; - right: 0; - margin: 0 -1px 4px 0; - float: right; -} -.tabs-header-right .tabs li { - left: 0; - right: auto; - margin: 0 0 4px -1px; - float: left; -} -.tabs-justified li a.tabs-inner { - padding-left: 0; - padding-right: 0; -} -.tabs-header-left .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 0px 0 0 0px; - -webkit-border-radius: 0px 0 0 0px; - border-radius: 0px 0 0 0px; -} -.tabs-header-right .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 0 0px 0px 0; - -webkit-border-radius: 0 0px 0px 0; - border-radius: 0 0px 0px 0; -} -.tabs-panels-right { - float: right; - border-width: 1px 1px 1px 0; -} -.tabs-panels-left { - float: left; - border-width: 1px 0 1px 1px; -} -.tabs-header-noborder, -.tabs-panels-noborder { - border: 0px; -} -.tabs-header-plain { - border: 0px; - background: transparent; -} -.tabs-pill { - padding-bottom: 3px; -} -.tabs-header-bottom .tabs-pill { - padding-top: 3px; - padding-bottom: 0; -} -.tabs-header-left .tabs-pill { - padding-right: 3px; -} -.tabs-header-right .tabs-pill { - padding-left: 3px; -} -.tabs-header .tabs-pill li a.tabs-inner { - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.tabs-header-narrow, -.tabs-header-narrow .tabs-narrow { - padding: 0; -} -.tabs-narrow li, -.tabs-header-bottom .tabs-narrow li { - margin-left: 0; - margin-right: -1px; -} -.tabs-narrow li.tabs-last, -.tabs-header-bottom .tabs-narrow li.tabs-last { - margin-right: 0; -} -.tabs-header-left .tabs-narrow, -.tabs-header-right .tabs-narrow { - padding-top: 0; -} -.tabs-header-left .tabs-narrow li { - margin-bottom: -1px; - margin-right: -1px; -} -.tabs-header-left .tabs-narrow li.tabs-last, -.tabs-header-right .tabs-narrow li.tabs-last { - margin-bottom: 0; -} -.tabs-header-right .tabs-narrow li { - margin-bottom: -1px; - margin-left: -1px; -} -.tabs-scroller-left { - background: #ffffff url('images/tabs_icons.png') no-repeat 1px center; -} -.tabs-scroller-right { - background: #ffffff url('images/tabs_icons.png') no-repeat -15px center; -} -.tabs li a.tabs-close { - background: url('images/tabs_icons.png') no-repeat -34px center; -} -.tabs li a.tabs-inner:hover { - background: #E6E6E6; - color: #444; - filter: none; -} -.tabs li.tabs-selected a.tabs-inner { - background-color: #fff; - color: #777; -} -.tabs li a.tabs-inner { - color: #777; - background-color: #ffffff; -} -.tabs-header, -.tabs-tool { - background-color: #ffffff; -} -.tabs-header-plain { - background: transparent; -} -.tabs-header, -.tabs-scroller-left, -.tabs-scroller-right, -.tabs-tool, -.tabs, -.tabs-panels, -.tabs li a.tabs-inner, -.tabs li.tabs-selected a.tabs-inner, -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner, -.tabs-header-left .tabs li.tabs-selected a.tabs-inner, -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-color: #ddd; -} -.tabs-p-tool a:hover, -.tabs li a:hover.tabs-close, -.tabs-scroller-over { - background-color: #E6E6E6; -} -.tabs li.tabs-selected a.tabs-inner { - border-bottom: 1px solid #fff; -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - border-top: 1px solid #fff; -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - border-right: 1px solid #fff; -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-left: 1px solid #fff; -} -.tabs-header .tabs-pill li.tabs-selected a.tabs-inner { - background: #CCE6FF; - color: #000; - filter: none; - border-color: #ddd; -} -.datagrid .panel-body { - overflow: hidden; - position: relative; -} -.datagrid-view { - position: relative; - overflow: hidden; -} -.datagrid-view1, -.datagrid-view2 { - position: absolute; - overflow: hidden; - top: 0; -} -.datagrid-view1 { - left: 0; -} -.datagrid-view2 { - right: 0; -} -.datagrid-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - opacity: 0.3; - filter: alpha(opacity=30); - display: none; -} -.datagrid-mask-msg { - position: absolute; - top: 50%; - margin-top: -20px; - padding: 10px 5px 10px 30px; - width: auto; - height: 16px; - border-width: 2px; - border-style: solid; - display: none; -} -.datagrid-sort-icon { - padding: 0; - display: none; -} -.datagrid-toolbar { - height: auto; - padding: 1px 2px; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ddd; - border-right: 1px solid #fff; - margin: 2px 1px; -} -.datagrid .datagrid-pager { - display: block; - margin: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.datagrid .datagrid-pager-top { - border-width: 0 0 1px 0; -} -.datagrid-header { - overflow: hidden; - cursor: default; - border-width: 0 0 1px 0; - border-style: solid; -} -.datagrid-header-inner { - float: left; - width: 10000px; -} -.datagrid-header-row, -.datagrid-row { - height: 25px; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-width: 0 1px 1px 0; - border-style: dotted; - margin: 0; - padding: 0; -} -.datagrid-cell, -.datagrid-cell-group, -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - margin: 0; - padding: 0 4px; - white-space: nowrap; - word-wrap: normal; - overflow: hidden; - height: 18px; - line-height: 18px; - font-size: 12px; -} -.datagrid-header .datagrid-cell { - height: auto; -} -.datagrid-header .datagrid-cell span { - font-size: 12px; -} -.datagrid-cell-group { - text-align: center; - text-overflow: ellipsis; -} -.datagrid-header-rownumber, -.datagrid-cell-rownumber { - width: 30px; - text-align: center; - margin: 0; - padding: 0; -} -.datagrid-body { - margin: 0; - padding: 0; - overflow: auto; - zoom: 1; -} -.datagrid-view1 .datagrid-body-inner { - padding-bottom: 20px; -} -.datagrid-view1 .datagrid-body { - overflow: hidden; -} -.datagrid-footer { - overflow: hidden; -} -.datagrid-footer-inner { - border-width: 1px 0 0 0; - border-style: solid; - width: 10000px; - float: left; -} -.datagrid-row-editing .datagrid-cell { - height: auto; -} -.datagrid-header-check, -.datagrid-cell-check { - padding: 0; - width: 27px; - height: 18px; - font-size: 1px; - text-align: center; - overflow: hidden; -} -.datagrid-header-check input, -.datagrid-cell-check input { - margin: 0; - padding: 0; - width: 15px; - height: 18px; -} -.datagrid-resize-proxy { - position: absolute; - width: 1px; - height: 10000px; - top: 0; - cursor: e-resize; - display: none; -} -.datagrid-body .datagrid-editable { - margin: 0; - padding: 0; -} -.datagrid-body .datagrid-editable table { - width: 100%; - height: 100%; -} -.datagrid-body .datagrid-editable td { - border: 0; - margin: 0; - padding: 0; -} -.datagrid-view .datagrid-editable-input { - margin: 0; - padding: 2px 4px; - border: 1px solid #ddd; - font-size: 12px; - outline-style: none; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.datagrid-sort .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -64px center; -} -.datagrid-sort-desc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat -16px center; -} -.datagrid-sort-asc .datagrid-sort-icon { - display: inline; - padding: 0 13px 0 0; - background: url('images/datagrid_icons.png') no-repeat 0px center; -} -.datagrid-row-collapse { - background: url('images/datagrid_icons.png') no-repeat -48px center; -} -.datagrid-row-expand { - background: url('images/datagrid_icons.png') no-repeat -32px center; -} -.datagrid-mask-msg { - background: #fff url('images/loading.gif') no-repeat scroll 5px center; -} -.datagrid-header, -.datagrid-td-rownumber { - background-color: #ffffff; -} -.datagrid-cell-rownumber { - color: #444; -} -.datagrid-resize-proxy { - background: #b3b3b3; -} -.datagrid-mask { - background: #eee; -} -.datagrid-mask-msg { - border-color: #ddd; -} -.datagrid-toolbar, -.datagrid-pager { - background: #fff; -} -.datagrid-header, -.datagrid-toolbar, -.datagrid-pager, -.datagrid-footer-inner { - border-color: #ddd; -} -.datagrid-header td, -.datagrid-body td, -.datagrid-footer td { - border-color: #ddd; -} -.datagrid-htable, -.datagrid-btable, -.datagrid-ftable { - color: #444; - border-collapse: separate; -} -.datagrid-row-alt { - background: #f5f5f5; -} -.datagrid-row-over, -.datagrid-header td.datagrid-header-over { - background: #E6E6E6; - color: #444; - cursor: default; -} -.datagrid-row-selected { - background: #CCE6FF; - color: #000; -} -.datagrid-row-editing .textbox, -.datagrid-row-editing .textbox-text { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.propertygrid .datagrid-view1 .datagrid-body td { - padding-bottom: 1px; - border-width: 0 1px 0 0; -} -.propertygrid .datagrid-group { - height: 21px; - overflow: hidden; - border-width: 0 0 1px 0; - border-style: solid; -} -.propertygrid .datagrid-group span { - font-weight: bold; -} -.propertygrid .datagrid-view1 .datagrid-body td { - border-color: #ddd; -} -.propertygrid .datagrid-view1 .datagrid-group { - border-color: #ffffff; -} -.propertygrid .datagrid-view2 .datagrid-group { - border-color: #ddd; -} -.propertygrid .datagrid-group, -.propertygrid .datagrid-view1 .datagrid-body, -.propertygrid .datagrid-view1 .datagrid-row-over, -.propertygrid .datagrid-view1 .datagrid-row-selected { - background: #ffffff; -} -.datalist .datagrid-header { - border-width: 0; -} -.datalist .datagrid-group, -.m-list .m-list-group { - height: 25px; - line-height: 25px; - font-weight: bold; - overflow: hidden; - background-color: #ffffff; - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ddd; -} -.datalist .datagrid-group-expander { - display: none; -} -.datalist .datagrid-group-title { - padding: 0 4px; -} -.datalist .datagrid-btable { - width: 100%; - table-layout: fixed; -} -.datalist .datagrid-row td { - border-style: solid; - border-left-color: transparent; - border-right-color: transparent; - border-bottom-width: 0; -} -.datalist-lines .datagrid-row td { - border-bottom-width: 1px; -} -.datalist .datagrid-cell, -.m-list li { - width: auto; - height: auto; - padding: 2px 4px; - line-height: 18px; - position: relative; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link, -.m-list li>a { - display: block; - position: relative; - cursor: pointer; - color: #444; - text-decoration: none; - overflow: hidden; - margin: -2px -4px; - padding: 2px 4px; - padding-right: 16px; - line-height: 18px; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} -.datalist-link::after, -.m-list li>a::after { - position: absolute; - display: block; - width: 8px; - height: 8px; - content: ''; - right: 6px; - top: 50%; - margin-top: -4px; - border-style: solid; - border-width: 1px 1px 0 0; - -ms-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); -} -.m-list { - margin: 0; - padding: 0; - list-style: none; -} -.m-list li { - border-style: solid; - border-width: 0 0 1px 0; - border-color: #ddd; -} -.m-list li>a:hover { - background: #E6E6E6; - color: #444; -} -.m-list .m-list-group { - padding: 0 4px; -} -.pagination { - zoom: 1; -} -.pagination table { - float: left; - height: 30px; -} -.pagination td { - border: 0; -} -.pagination-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ddd; - border-right: 1px solid #fff; - margin: 3px 1px; -} -.pagination .pagination-num { - border-width: 1px; - border-style: solid; - margin: 0 2px; - padding: 2px; - width: 2em; - height: auto; -} -.pagination-page-list { - margin: 0px 6px; - padding: 1px 2px; - width: auto; - height: auto; - border-width: 1px; - border-style: solid; -} -.pagination-info { - float: right; - margin: 0 6px 0 0; - padding: 0; - height: 30px; - line-height: 30px; - font-size: 12px; -} -.pagination span { - font-size: 12px; -} -.pagination-link .l-btn-text { - width: 24px; - text-align: center; - margin: 0; -} -.pagination-first { - background: url('images/pagination_icons.png') no-repeat 0 center; -} -.pagination-prev { - background: url('images/pagination_icons.png') no-repeat -16px center; -} -.pagination-next { - background: url('images/pagination_icons.png') no-repeat -32px center; -} -.pagination-last { - background: url('images/pagination_icons.png') no-repeat -48px center; -} -.pagination-load { - background: url('images/pagination_icons.png') no-repeat -64px center; -} -.pagination-loading { - background: url('images/loading.gif') no-repeat center center; -} -.pagination-page-list, -.pagination .pagination-num { - border-color: #ddd; -} -.calendar { - border-width: 1px; - border-style: solid; - padding: 1px; - overflow: hidden; -} -.calendar table { - table-layout: fixed; - border-collapse: separate; - font-size: 12px; - width: 100%; - height: 100%; -} -.calendar table td, -.calendar table th { - font-size: 12px; -} -.calendar-noborder { - border: 0; -} -.calendar-header { - position: relative; - height: 22px; -} -.calendar-title { - text-align: center; - height: 22px; -} -.calendar-title span { - position: relative; - display: inline-block; - top: 2px; - padding: 0 3px; - height: 18px; - line-height: 18px; - font-size: 12px; - cursor: pointer; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.calendar-prevmonth, -.calendar-nextmonth, -.calendar-prevyear, -.calendar-nextyear { - position: absolute; - top: 50%; - margin-top: -7px; - width: 14px; - height: 14px; - cursor: pointer; - font-size: 1px; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.calendar-prevmonth { - left: 20px; - background: url('images/calendar_arrows.png') no-repeat -18px -2px; -} -.calendar-nextmonth { - right: 20px; - background: url('images/calendar_arrows.png') no-repeat -34px -2px; -} -.calendar-prevyear { - left: 3px; - background: url('images/calendar_arrows.png') no-repeat -1px -2px; -} -.calendar-nextyear { - right: 3px; - background: url('images/calendar_arrows.png') no-repeat -49px -2px; -} -.calendar-body { - position: relative; -} -.calendar-body th, -.calendar-body td { - text-align: center; -} -.calendar-day { - border: 0; - padding: 1px; - cursor: pointer; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.calendar-other-month { - opacity: 0.3; - filter: alpha(opacity=30); -} -.calendar-disabled { - opacity: 0.6; - filter: alpha(opacity=60); - cursor: default; -} -.calendar-menu { - position: absolute; - top: 0; - left: 0; - width: 180px; - height: 150px; - padding: 5px; - font-size: 12px; - display: none; - overflow: hidden; -} -.calendar-menu-year-inner { - text-align: center; - padding-bottom: 5px; -} -.calendar-menu-year { - width: 40px; - text-align: center; - border-width: 1px; - border-style: solid; - margin: 0; - padding: 2px; - font-weight: bold; - font-size: 12px; -} -.calendar-menu-prev, -.calendar-menu-next { - display: inline-block; - width: 21px; - height: 21px; - vertical-align: top; - cursor: pointer; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.calendar-menu-prev { - margin-right: 10px; - background: url('images/calendar_arrows.png') no-repeat 2px 2px; -} -.calendar-menu-next { - margin-left: 10px; - background: url('images/calendar_arrows.png') no-repeat -45px 2px; -} -.calendar-menu-month { - text-align: center; - cursor: pointer; - font-weight: bold; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.calendar-body th, -.calendar-menu-month { - color: #919191; -} -.calendar-day { - color: #444; -} -.calendar-sunday { - color: #CC2222; -} -.calendar-saturday { - color: #00ee00; -} -.calendar-today { - color: #0000ff; -} -.calendar-menu-year { - border-color: #ddd; -} -.calendar { - border-color: #ddd; -} -.calendar-header { - background: #ffffff; -} -.calendar-body, -.calendar-menu { - background: #fff; -} -.calendar-body th { - background: #fff; - padding: 2px 0; -} -.calendar-hover, -.calendar-nav-hover, -.calendar-menu-hover { - background-color: #E6E6E6; - color: #444; -} -.calendar-hover { - border: 1px solid #ddd; - padding: 0; -} -.calendar-selected { - background-color: #CCE6FF; - color: #000; - border: 1px solid #99cdff; - padding: 0; -} -.datebox-calendar-inner { - height: 180px; -} -.datebox-button { - height: 18px; - padding: 2px 5px; - text-align: center; -} -.datebox-button a { - font-size: 12px; - font-weight: bold; - text-decoration: none; - opacity: 0.6; - filter: alpha(opacity=60); -} -.datebox-button a:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.datebox-current, -.datebox-close { - float: left; -} -.datebox-close { - float: right; -} -.datebox .combo-arrow { - background-image: url('images/datebox_arrow.png'); - background-position: center center; -} -.datebox-button { - background-color: #fff; -} -.datebox-button a { - color: #777; -} -.numberbox { - border: 1px solid #ddd; - margin: 0; - padding: 0 2px; - vertical-align: middle; -} -.textbox { - padding: 0; -} -.spinner { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.spinner .spinner-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0 2px; - vertical-align: baseline; -} -.spinner-arrow { - background-color: #ffffff; - display: inline-block; - overflow: hidden; - vertical-align: top; - margin: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - width: 18px; -} -.spinner-arrow-up, -.spinner-arrow-down { - opacity: 0.6; - filter: alpha(opacity=60); - display: block; - font-size: 1px; - width: 18px; - height: 10px; - width: 100%; - height: 50%; - color: #777; - outline-style: none; -} -.spinner-arrow-hover { - background-color: #E6E6E6; - opacity: 1.0; - filter: alpha(opacity=100); -} -.spinner-arrow-up:hover, -.spinner-arrow-down:hover { - opacity: 1.0; - filter: alpha(opacity=100); - background-color: #E6E6E6; -} -.textbox-icon-disabled .spinner-arrow-up:hover, -.textbox-icon-disabled .spinner-arrow-down:hover { - opacity: 0.6; - filter: alpha(opacity=60); - background-color: #ffffff; - cursor: default; -} -.spinner .textbox-icon-disabled { - opacity: 0.6; - filter: alpha(opacity=60); -} -.spinner-arrow-up { - background: url('images/spinner_arrows.png') no-repeat 1px center; -} -.spinner-arrow-down { - background: url('images/spinner_arrows.png') no-repeat -15px center; -} -.spinner { - border-color: #ddd; -} -.progressbar { - border-width: 1px; - border-style: solid; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; - overflow: hidden; - position: relative; -} -.progressbar-text { - text-align: center; - position: absolute; -} -.progressbar-value { - position: relative; - overflow: hidden; - width: 0; - -moz-border-radius: 0px 0 0 0px; - -webkit-border-radius: 0px 0 0 0px; - border-radius: 0px 0 0 0px; -} -.progressbar { - border-color: #ddd; -} -.progressbar-text { - color: #444; - font-size: 12px; -} -.progressbar-value .progressbar-text { - background-color: #CCE6FF; - color: #000; -} -.searchbox { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.searchbox .searchbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 0 2px; - vertical-align: top; -} -.searchbox .searchbox-prompt { - font-size: 12px; - color: #ccc; -} -.searchbox-button { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.searchbox-button-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.searchbox .l-btn-plain { - border: 0; - padding: 0; - vertical-align: top; - opacity: 0.6; - filter: alpha(opacity=60); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .l-btn-plain:hover { - border: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox a.m-btn-plain-active { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .m-btn-active { - border-width: 0 1px 0 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .textbox-button-right { - border-width: 0 0 0 1px; -} -.searchbox .textbox-button-left { - border-width: 0 1px 0 0; -} -.searchbox-button { - background: url('images/searchbox_button.png') no-repeat center center; -} -.searchbox { - border-color: #ddd; - background-color: #fff; -} -.searchbox .l-btn-plain { - background: #ffffff; -} -.searchbox .l-btn-plain-disabled, -.searchbox .l-btn-plain-disabled:hover { - opacity: 0.5; - filter: alpha(opacity=50); -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} -.slider-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.slider-h { - height: 22px; -} -.slider-v { - width: 22px; -} -.slider-inner { - position: relative; - height: 6px; - top: 7px; - border-width: 1px; - border-style: solid; - border-radius: 0px; -} -.slider-handle { - position: absolute; - display: block; - outline: none; - width: 20px; - height: 20px; - top: 50%; - margin-top: -10px; - margin-left: -10px; -} -.slider-tip { - position: absolute; - display: inline-block; - line-height: 12px; - font-size: 12px; - white-space: nowrap; - top: -22px; -} -.slider-rule { - position: relative; - top: 15px; -} -.slider-rule span { - position: absolute; - display: inline-block; - font-size: 0; - height: 5px; - border-width: 0 0 0 1px; - border-style: solid; -} -.slider-rulelabel { - position: relative; - top: 20px; -} -.slider-rulelabel span { - position: absolute; - display: inline-block; - font-size: 12px; -} -.slider-v .slider-inner { - width: 6px; - left: 7px; - top: 0; - float: left; -} -.slider-v .slider-handle { - left: 50%; - margin-top: -10px; -} -.slider-v .slider-tip { - left: -10px; - margin-top: -6px; -} -.slider-v .slider-rule { - float: left; - top: 0; - left: 16px; -} -.slider-v .slider-rule span { - width: 5px; - height: 'auto'; - border-left: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.slider-v .slider-rulelabel { - float: left; - top: 0; - left: 23px; -} -.slider-handle { - background: url('images/slider_handle.png') no-repeat; -} -.slider-inner { - border-color: #ddd; - background: #ffffff; -} -.slider-rule span { - border-color: #ddd; -} -.slider-rulelabel span { - color: #444; -} -.menu { - position: absolute; - margin: 0; - padding: 2px; - border-width: 1px; - border-style: solid; - overflow: hidden; -} -.menu-inline { - position: relative; -} -.menu-item { - position: relative; - margin: 0; - padding: 0; - overflow: hidden; - white-space: nowrap; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.menu-text { - height: 20px; - line-height: 20px; - float: left; - padding-left: 28px; -} -.menu-icon { - position: absolute; - width: 16px; - height: 16px; - left: 2px; - top: 50%; - margin-top: -8px; -} -.menu-rightarrow { - position: absolute; - width: 16px; - height: 16px; - right: 0; - top: 50%; - margin-top: -8px; -} -.menu-line { - position: absolute; - left: 26px; - top: 0; - height: 2000px; - font-size: 1px; -} -.menu-sep { - margin: 3px 0px 3px 25px; - font-size: 1px; -} -.menu-noline .menu-line { - display: none; -} -.menu-noline .menu-sep { - margin-left: 0; - margin-right: 0; -} -.menu-active { - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.menu-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: default; -} -.menu-text, -.menu-text span { - font-size: 12px; -} -.menu-shadow { - position: absolute; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; - background: #eee; - -moz-box-shadow: 2px 2px 3px #ededed; - -webkit-box-shadow: 2px 2px 3px #ededed; - box-shadow: 2px 2px 3px #ededed; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.menu-rightarrow { - background: url('images/menu_arrows.png') no-repeat -32px center; -} -.menu-line { - border-left: 1px solid #ddd; - border-right: 1px solid #fff; -} -.menu-sep { - border-top: 1px solid #ddd; - border-bottom: 1px solid #fff; -} -.menu { - background-color: #ffffff; - border-color: #ddd; - color: #444; -} -.menu-content { - background: #fff; -} -.menu-item { - border-color: transparent; - _border-color: #ffffff; -} -.menu-active { - border-color: #ddd; - color: #444; - background: #E6E6E6; -} -.menu-active-disabled { - border-color: transparent; - background: transparent; - color: #444; -} -.m-btn-downarrow, -.s-btn-downarrow { - display: inline-block; - position: absolute; - width: 16px; - height: 16px; - font-size: 1px; - right: 0; - top: 50%; - margin-top: -8px; -} -.m-btn-active, -.s-btn-active { - background: #E6E6E6; - color: #444; - border: 1px solid #ddd; - filter: none; -} -.m-btn-plain-active, -.s-btn-plain-active { - background: transparent; - padding: 0; - border-width: 1px; - border-style: solid; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.m-btn .l-btn-left .l-btn-text { - margin-right: 20px; -} -.m-btn .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.m-btn .l-btn-icon-right .l-btn-icon { - right: 20px; -} -.m-btn .l-btn-icon-top .l-btn-text { - margin-right: 4px; - margin-bottom: 14px; -} -.m-btn .l-btn-icon-bottom .l-btn-text { - margin-right: 4px; - margin-bottom: 34px; -} -.m-btn .l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 20px; -} -.m-btn .l-btn-icon-top .m-btn-downarrow, -.m-btn .l-btn-icon-bottom .m-btn-downarrow { - top: auto; - bottom: 0px; - left: 50%; - margin-left: -8px; -} -.m-btn-line { - display: inline-block; - position: absolute; - font-size: 1px; - display: none; -} -.m-btn .l-btn-left .m-btn-line { - right: 0; - width: 16px; - height: 500px; - border-style: solid; - border-color: #b3b3b3; - border-width: 0 0 0 1px; -} -.m-btn .l-btn-icon-top .m-btn-line, -.m-btn .l-btn-icon-bottom .m-btn-line { - left: 0; - bottom: 0; - width: 500px; - height: 16px; - border-width: 1px 0 0 0; -} -.m-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 56px; -} -.m-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 50px; -} -.m-btn-downarrow, -.s-btn-downarrow { - background: url('images/menu_arrows.png') no-repeat 0 center; -} -.m-btn-plain-active, -.s-btn-plain-active { - border-color: #ddd; - background-color: #E6E6E6; - color: #444; -} -.s-btn:hover .m-btn-line, -.s-btn-active .m-btn-line, -.s-btn-plain-active .m-btn-line { - display: inline-block; -} -.l-btn:hover .s-btn-downarrow, -.s-btn-active .s-btn-downarrow, -.s-btn-plain-active .s-btn-downarrow { - border-style: solid; - border-color: #b3b3b3; - border-width: 0 0 0 1px; -} -.messager-body { - padding: 10px; - overflow: auto; -} -.messager-button { - text-align: center; - padding: 5px; -} -.messager-button .l-btn { - width: 70px; -} -.messager-icon { - float: left; - width: 32px; - height: 32px; - margin: 0 10px 10px 0; -} -.messager-error { - background: url('images/messager_icons.png') no-repeat scroll -64px 0; -} -.messager-info { - background: url('images/messager_icons.png') no-repeat scroll 0 0; -} -.messager-question { - background: url('images/messager_icons.png') no-repeat scroll -32px 0; -} -.messager-warning { - background: url('images/messager_icons.png') no-repeat scroll -96px 0; -} -.messager-progress { - padding: 10px; -} -.messager-p-msg { - margin-bottom: 5px; -} -.messager-body .messager-input { - width: 100%; - padding: 1px 0; - border: 1px solid #ddd; -} -.tree { - margin: 0; - padding: 0; - list-style-type: none; -} -.tree li { - white-space: nowrap; -} -.tree li ul { - list-style-type: none; - margin: 0; - padding: 0; -} -.tree-node { - height: 18px; - white-space: nowrap; - cursor: pointer; -} -.tree-hit { - cursor: pointer; -} -.tree-expanded, -.tree-collapsed, -.tree-folder, -.tree-file, -.tree-checkbox, -.tree-indent { - display: inline-block; - width: 16px; - height: 18px; - vertical-align: top; - overflow: hidden; -} -.tree-expanded { - background: url('images/tree_icons.png') no-repeat -18px 0px; -} -.tree-expanded-hover { - background: url('images/tree_icons.png') no-repeat -50px 0px; -} -.tree-collapsed { - background: url('images/tree_icons.png') no-repeat 0px 0px; -} -.tree-collapsed-hover { - background: url('images/tree_icons.png') no-repeat -32px 0px; -} -.tree-lines .tree-expanded, -.tree-lines .tree-root-first .tree-expanded { - background: url('images/tree_icons.png') no-repeat -144px 0; -} -.tree-lines .tree-collapsed, -.tree-lines .tree-root-first .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -128px 0; -} -.tree-lines .tree-node-last .tree-expanded, -.tree-lines .tree-root-one .tree-expanded { - background: url('images/tree_icons.png') no-repeat -80px 0; -} -.tree-lines .tree-node-last .tree-collapsed, -.tree-lines .tree-root-one .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -64px 0; -} -.tree-line { - background: url('images/tree_icons.png') no-repeat -176px 0; -} -.tree-join { - background: url('images/tree_icons.png') no-repeat -192px 0; -} -.tree-joinbottom { - background: url('images/tree_icons.png') no-repeat -160px 0; -} -.tree-folder { - background: url('images/tree_icons.png') no-repeat -208px 0; -} -.tree-folder-open { - background: url('images/tree_icons.png') no-repeat -224px 0; -} -.tree-file { - background: url('images/tree_icons.png') no-repeat -240px 0; -} -.tree-loading { - background: url('images/loading.gif') no-repeat center center; -} -.tree-checkbox0 { - background: url('images/tree_icons.png') no-repeat -208px -18px; -} -.tree-checkbox1 { - background: url('images/tree_icons.png') no-repeat -224px -18px; -} -.tree-checkbox2 { - background: url('images/tree_icons.png') no-repeat -240px -18px; -} -.tree-title { - font-size: 12px; - display: inline-block; - text-decoration: none; - vertical-align: top; - white-space: nowrap; - padding: 0 2px; - height: 18px; - line-height: 18px; -} -.tree-node-proxy { - font-size: 12px; - line-height: 20px; - padding: 0 2px 0 20px; - border-width: 1px; - border-style: solid; - z-index: 9900000; -} -.tree-dnd-icon { - display: inline-block; - position: absolute; - width: 16px; - height: 18px; - left: 2px; - top: 50%; - margin-top: -9px; -} -.tree-dnd-yes { - background: url('images/tree_icons.png') no-repeat -256px 0; -} -.tree-dnd-no { - background: url('images/tree_icons.png') no-repeat -256px -18px; -} -.tree-node-top { - border-top: 1px dotted red; -} -.tree-node-bottom { - border-bottom: 1px dotted red; -} -.tree-node-append .tree-title { - border: 1px dotted red; -} -.tree-editor { - border: 1px solid #ccc; - font-size: 12px; - height: 14px !important; - height: 18px; - line-height: 14px; - padding: 1px 2px; - width: 80px; - position: absolute; - top: 0; -} -.tree-node-proxy { - background-color: #fff; - color: #444; - border-color: #ddd; -} -.tree-node-hover { - background: #E6E6E6; - color: #444; -} -.tree-node-selected { - background: #CCE6FF; - color: #000; -} -.tree-node-hidden { - display: none; -} -.validatebox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; - color: #000; -} -.tooltip { - position: absolute; - display: none; - z-index: 9900000; - outline: none; - opacity: 1; - filter: alpha(opacity=100); - padding: 5px; - border-width: 1px; - border-style: solid; - border-radius: 5px; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.tooltip-content { - font-size: 12px; -} -.tooltip-arrow-outer, -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - line-height: 0; - font-size: 0; - border-style: solid; - border-width: 6px; - border-color: transparent; - _border-color: tomato; - _filter: chroma(color=tomato); -} -.tooltip-arrow { - display: none \9; -} -.tooltip-right .tooltip-arrow-outer { - left: 0; - top: 50%; - margin: -6px 0 0 -13px; -} -.tooltip-right .tooltip-arrow { - left: 0; - top: 50%; - margin: -6px 0 0 -12px; -} -.tooltip-left .tooltip-arrow-outer { - right: 0; - top: 50%; - margin: -6px -13px 0 0; -} -.tooltip-left .tooltip-arrow { - right: 0; - top: 50%; - margin: -6px -12px 0 0; -} -.tooltip-top .tooltip-arrow-outer { - bottom: 0; - left: 50%; - margin: 0 0 -13px -6px; -} -.tooltip-top .tooltip-arrow { - bottom: 0; - left: 50%; - margin: 0 0 -12px -6px; -} -.tooltip-bottom .tooltip-arrow-outer { - top: 0; - left: 50%; - margin: -13px 0 0 -6px; -} -.tooltip-bottom .tooltip-arrow { - top: 0; - left: 50%; - margin: -12px 0 0 -6px; -} -.tooltip { - background-color: #fff; - border-color: #ddd; - color: #444; -} -.tooltip-right .tooltip-arrow-outer { - border-right-color: #ddd; -} -.tooltip-right .tooltip-arrow { - border-right-color: #fff; -} -.tooltip-left .tooltip-arrow-outer { - border-left-color: #ddd; -} -.tooltip-left .tooltip-arrow { - border-left-color: #fff; -} -.tooltip-top .tooltip-arrow-outer { - border-top-color: #ddd; -} -.tooltip-top .tooltip-arrow { - border-top-color: #fff; -} -.tooltip-bottom .tooltip-arrow-outer { - border-bottom-color: #ddd; -} -.tooltip-bottom .tooltip-arrow { - border-bottom-color: #fff; -} -.switchbutton { - text-decoration: none; - display: inline-block; - overflow: hidden; - vertical-align: middle; - margin: 0; - padding: 0; - cursor: pointer; - background: #dddddd; - border: 1px solid #dddddd; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.switchbutton-inner { - display: inline-block; - overflow: hidden; - position: relative; - top: -1px; - left: -1px; -} -.switchbutton-on, -.switchbutton-off, -.switchbutton-handle { - display: inline-block; - text-align: center; - height: 100%; - float: left; - font-size: 12px; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.switchbutton-on { - background: #CCE6FF; - color: #000; -} -.switchbutton-off { - background-color: #fff; - color: #444; -} -.switchbutton-on, -.switchbutton-reversed .switchbutton-off { - -moz-border-radius: 0px 0 0 0px; - -webkit-border-radius: 0px 0 0 0px; - border-radius: 0px 0 0 0px; -} -.switchbutton-off, -.switchbutton-reversed .switchbutton-on { - -moz-border-radius: 0 0px 0px 0; - -webkit-border-radius: 0 0px 0px 0; - border-radius: 0 0px 0px 0; -} -.switchbutton-handle { - position: absolute; - top: 0; - left: 50%; - background-color: #fff; - color: #444; - border: 1px solid #dddddd; - -moz-box-shadow: 0 0 3px 0 #dddddd; - -webkit-box-shadow: 0 0 3px 0 #dddddd; - box-shadow: 0 0 3px 0 #dddddd; -} -.switchbutton-value { - position: absolute; - top: 0; - left: -5000px; -} -.switchbutton-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.switchbutton-disabled, -.switchbutton-readonly { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/filebox.css b/vendor/FHC-vendor/easyui/themes/metro/filebox.css deleted file mode 100644 index c6bac6631..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/filebox.css +++ /dev/null @@ -1,20 +0,0 @@ -.filebox .textbox-value { - vertical-align: top; - position: absolute; - top: 0; - left: -5000px; -} -.filebox-label { - display: inline-block; - position: absolute; - width: 100%; - height: 100%; - cursor: pointer; - left: 0; - top: 0; - z-index: 10; - background: url('images/blank.gif') no-repeat; -} -.l-btn-disabled .filebox-label { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/accordion_arrows.png b/vendor/FHC-vendor/easyui/themes/metro/images/accordion_arrows.png deleted file mode 100644 index 720835f69..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/accordion_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/blank.gif b/vendor/FHC-vendor/easyui/themes/metro/images/blank.gif deleted file mode 100644 index 1d11fa9ad..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/blank.gif and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/calendar_arrows.png b/vendor/FHC-vendor/easyui/themes/metro/images/calendar_arrows.png deleted file mode 100644 index 430c4ad68..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/calendar_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/combo_arrow.png b/vendor/FHC-vendor/easyui/themes/metro/images/combo_arrow.png deleted file mode 100644 index 2e59fb9f3..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/combo_arrow.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/datagrid_icons.png b/vendor/FHC-vendor/easyui/themes/metro/images/datagrid_icons.png deleted file mode 100644 index 762d0ce0f..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/datagrid_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/datebox_arrow.png b/vendor/FHC-vendor/easyui/themes/metro/images/datebox_arrow.png deleted file mode 100644 index 783c83357..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/datebox_arrow.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/layout_arrows.png b/vendor/FHC-vendor/easyui/themes/metro/images/layout_arrows.png deleted file mode 100644 index 6f4165425..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/layout_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/linkbutton_bg.png b/vendor/FHC-vendor/easyui/themes/metro/images/linkbutton_bg.png deleted file mode 100644 index fc66bd2cd..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/linkbutton_bg.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/loading.gif b/vendor/FHC-vendor/easyui/themes/metro/images/loading.gif deleted file mode 100644 index 68f01d048..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/loading.gif and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/menu_arrows.png b/vendor/FHC-vendor/easyui/themes/metro/images/menu_arrows.png deleted file mode 100644 index b986842e7..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/menu_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/messager_icons.png b/vendor/FHC-vendor/easyui/themes/metro/images/messager_icons.png deleted file mode 100644 index 62c18c135..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/messager_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/pagination_icons.png b/vendor/FHC-vendor/easyui/themes/metro/images/pagination_icons.png deleted file mode 100644 index 616f0bdd6..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/pagination_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/panel_tools.png b/vendor/FHC-vendor/easyui/themes/metro/images/panel_tools.png deleted file mode 100644 index fe682ef89..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/panel_tools.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/searchbox_button.png b/vendor/FHC-vendor/easyui/themes/metro/images/searchbox_button.png deleted file mode 100644 index 6dd193158..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/searchbox_button.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/slider_handle.png b/vendor/FHC-vendor/easyui/themes/metro/images/slider_handle.png deleted file mode 100644 index b9802bae1..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/slider_handle.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/spinner_arrows.png b/vendor/FHC-vendor/easyui/themes/metro/images/spinner_arrows.png deleted file mode 100644 index b68592de3..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/spinner_arrows.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/tabs_icons.png b/vendor/FHC-vendor/easyui/themes/metro/images/tabs_icons.png deleted file mode 100644 index 4d29966d7..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/tabs_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/tree_icons.png b/vendor/FHC-vendor/easyui/themes/metro/images/tree_icons.png deleted file mode 100644 index e9be4f3a9..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/tree_icons.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/images/validatebox_warning.png b/vendor/FHC-vendor/easyui/themes/metro/images/validatebox_warning.png deleted file mode 100644 index 2b3d4f05b..000000000 Binary files a/vendor/FHC-vendor/easyui/themes/metro/images/validatebox_warning.png and /dev/null differ diff --git a/vendor/FHC-vendor/easyui/themes/metro/layout.css b/vendor/FHC-vendor/easyui/themes/metro/layout.css deleted file mode 100644 index 8c0bf20d2..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/layout.css +++ /dev/null @@ -1,133 +0,0 @@ -.layout { - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - z-index: 0; -} -.layout-panel { - position: absolute; - overflow: hidden; -} -.layout-body { - min-width: 1px; - min-height: 1px; -} -.layout-panel-east, -.layout-panel-west { - z-index: 2; -} -.layout-panel-north, -.layout-panel-south { - z-index: 3; -} -.layout-expand { - position: absolute; - padding: 0px; - font-size: 1px; - cursor: pointer; - z-index: 1; -} -.layout-expand .panel-header, -.layout-expand .panel-body { - background: transparent; - filter: none; - overflow: hidden; -} -.layout-expand .panel-header { - border-bottom-width: 0px; -} -.layout-expand .panel-body { - position: relative; -} -.layout-expand .panel-body .panel-icon { - margin-top: 0; - top: 0; - left: 50%; - margin-left: -8px; -} -.layout-expand-west .panel-header .panel-icon, -.layout-expand-east .panel-header .panel-icon { - display: none; -} -.layout-expand-title { - position: absolute; - top: 0; - left: 21px; - white-space: nowrap; - word-wrap: normal; - -webkit-transform: rotate(90deg); - -webkit-transform-origin: 0 0; - -moz-transform: rotate(90deg); - -moz-transform-origin: 0 0; - -o-transform: rotate(90deg); - -o-transform-origin: 0 0; - transform: rotate(90deg); - transform-origin: 0 0; -} -.layout-expand-with-icon { - top: 18px; -} -.layout-expand .panel-body-noheader .layout-expand-title, -.layout-expand .panel-body-noheader .panel-icon { - top: 5px; -} -.layout-expand .panel-body-noheader .layout-expand-with-icon { - top: 23px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - position: absolute; - font-size: 1px; - display: none; - z-index: 5; -} -.layout-split-proxy-h { - width: 5px; - cursor: e-resize; -} -.layout-split-proxy-v { - height: 5px; - cursor: n-resize; -} -.layout-mask { - position: absolute; - background: #fafafa; - filter: alpha(opacity=10); - opacity: 0.10; - z-index: 4; -} -.layout-button-up { - background: url('images/layout_arrows.png') no-repeat -16px -16px; -} -.layout-button-down { - background: url('images/layout_arrows.png') no-repeat -16px 0; -} -.layout-button-left { - background: url('images/layout_arrows.png') no-repeat 0 0; -} -.layout-button-right { - background: url('images/layout_arrows.png') no-repeat 0 -16px; -} -.layout-split-proxy-h, -.layout-split-proxy-v { - background-color: #b3b3b3; -} -.layout-split-north { - border-bottom: 5px solid #fff; -} -.layout-split-south { - border-top: 5px solid #fff; -} -.layout-split-east { - border-left: 5px solid #fff; -} -.layout-split-west { - border-right: 5px solid #fff; -} -.layout-expand { - background-color: #ffffff; -} -.layout-expand-over { - background-color: #ffffff; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/linkbutton.css b/vendor/FHC-vendor/easyui/themes/metro/linkbutton.css deleted file mode 100644 index b0c578f4d..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/linkbutton.css +++ /dev/null @@ -1,203 +0,0 @@ -.l-btn { - text-decoration: none; - display: inline-block; - overflow: hidden; - margin: 0; - padding: 0; - cursor: pointer; - outline: none; - text-align: center; - vertical-align: middle; - line-height: normal; -} -.l-btn-plain { - border-width: 0; - padding: 1px; -} -.l-btn-left { - display: inline-block; - position: relative; - overflow: hidden; - margin: 0; - padding: 0; - vertical-align: top; -} -.l-btn-text { - display: inline-block; - vertical-align: top; - width: auto; - line-height: 24px; - font-size: 12px; - padding: 0; - margin: 0 4px; -} -.l-btn-icon { - display: inline-block; - width: 16px; - height: 16px; - line-height: 16px; - position: absolute; - top: 50%; - margin-top: -8px; - font-size: 1px; -} -.l-btn span span .l-btn-empty { - display: inline-block; - margin: 0; - width: 16px; - height: 24px; - font-size: 1px; - vertical-align: top; -} -.l-btn span .l-btn-icon-left { - padding: 0 0 0 20px; - background-position: left center; -} -.l-btn span .l-btn-icon-right { - padding: 0 20px 0 0; - background-position: right center; -} -.l-btn-icon-left .l-btn-text { - margin: 0 4px 0 24px; -} -.l-btn-icon-left .l-btn-icon { - left: 4px; -} -.l-btn-icon-right .l-btn-text { - margin: 0 24px 0 4px; -} -.l-btn-icon-right .l-btn-icon { - right: 4px; -} -.l-btn-icon-top .l-btn-text { - margin: 20px 4px 0 4px; -} -.l-btn-icon-top .l-btn-icon { - top: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-icon-bottom .l-btn-text { - margin: 0 4px 20px 4px; -} -.l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 4px; - left: 50%; - margin: 0 0 0 -8px; -} -.l-btn-left .l-btn-empty { - margin: 0 4px; - width: 16px; -} -.l-btn-plain:hover { - padding: 0; -} -.l-btn-focus { - outline: #0000FF dotted thin; -} -.l-btn-large .l-btn-text { - line-height: 40px; -} -.l-btn-large .l-btn-icon { - width: 32px; - height: 32px; - line-height: 32px; - margin-top: -16px; -} -.l-btn-large .l-btn-icon-left .l-btn-text { - margin-left: 40px; -} -.l-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.l-btn-large .l-btn-icon-top .l-btn-text { - margin-top: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-top .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 36px; - line-height: 24px; - min-width: 32px; -} -.l-btn-large .l-btn-icon-bottom .l-btn-icon { - margin: 0 0 0 -16px; -} -.l-btn-large .l-btn-left .l-btn-empty { - margin: 0 4px; - width: 32px; -} -.l-btn { - color: #777; - background: #ffffff; - background-repeat: repeat-x; - border: 1px solid #dddddd; - background: -webkit-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -moz-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -o-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: linear-gradient(to bottom,#ffffff 0,#ffffff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff,GradientType=0); - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.l-btn:hover { - background: #E6E6E6; - color: #444; - border: 1px solid #ddd; - filter: none; -} -.l-btn-plain { - background: transparent; - border-width: 0; - filter: none; -} -.l-btn-outline { - border-width: 1px; - border-color: #ddd; - padding: 0; -} -.l-btn-plain:hover { - background: #E6E6E6; - color: #444; - border: 1px solid #ddd; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.l-btn-disabled, -.l-btn-disabled:hover { - opacity: 0.5; - cursor: default; - background: #ffffff; - color: #777; - background: -webkit-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -moz-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: -o-linear-gradient(top,#ffffff 0,#ffffff 100%); - background: linear-gradient(to bottom,#ffffff 0,#ffffff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff,GradientType=0); -} -.l-btn-disabled .l-btn-text, -.l-btn-disabled .l-btn-icon { - filter: alpha(opacity=50); -} -.l-btn-plain-disabled, -.l-btn-plain-disabled:hover { - background: transparent; - filter: alpha(opacity=50); -} -.l-btn-selected, -.l-btn-selected:hover { - background: #ddd; - filter: none; -} -.l-btn-plain-selected, -.l-btn-plain-selected:hover { - background: #ddd; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/menu.css b/vendor/FHC-vendor/easyui/themes/metro/menu.css deleted file mode 100644 index 26933a6e8..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/menu.css +++ /dev/null @@ -1,119 +0,0 @@ -.menu { - position: absolute; - margin: 0; - padding: 2px; - border-width: 1px; - border-style: solid; - overflow: hidden; -} -.menu-inline { - position: relative; -} -.menu-item { - position: relative; - margin: 0; - padding: 0; - overflow: hidden; - white-space: nowrap; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.menu-text { - height: 20px; - line-height: 20px; - float: left; - padding-left: 28px; -} -.menu-icon { - position: absolute; - width: 16px; - height: 16px; - left: 2px; - top: 50%; - margin-top: -8px; -} -.menu-rightarrow { - position: absolute; - width: 16px; - height: 16px; - right: 0; - top: 50%; - margin-top: -8px; -} -.menu-line { - position: absolute; - left: 26px; - top: 0; - height: 2000px; - font-size: 1px; -} -.menu-sep { - margin: 3px 0px 3px 25px; - font-size: 1px; -} -.menu-noline .menu-line { - display: none; -} -.menu-noline .menu-sep { - margin-left: 0; - margin-right: 0; -} -.menu-active { - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.menu-item-disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: default; -} -.menu-text, -.menu-text span { - font-size: 12px; -} -.menu-shadow { - position: absolute; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; - background: #eee; - -moz-box-shadow: 2px 2px 3px #ededed; - -webkit-box-shadow: 2px 2px 3px #ededed; - box-shadow: 2px 2px 3px #ededed; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.menu-rightarrow { - background: url('images/menu_arrows.png') no-repeat -32px center; -} -.menu-line { - border-left: 1px solid #ddd; - border-right: 1px solid #fff; -} -.menu-sep { - border-top: 1px solid #ddd; - border-bottom: 1px solid #fff; -} -.menu { - background-color: #ffffff; - border-color: #ddd; - color: #444; -} -.menu-content { - background: #fff; -} -.menu-item { - border-color: transparent; - _border-color: #ffffff; -} -.menu-active { - border-color: #ddd; - color: #444; - background: #E6E6E6; -} -.menu-active-disabled { - border-color: transparent; - background: transparent; - color: #444; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/menubutton.css b/vendor/FHC-vendor/easyui/themes/metro/menubutton.css deleted file mode 100644 index 8ed294a0e..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/menubutton.css +++ /dev/null @@ -1,94 +0,0 @@ -.m-btn-downarrow, -.s-btn-downarrow { - display: inline-block; - position: absolute; - width: 16px; - height: 16px; - font-size: 1px; - right: 0; - top: 50%; - margin-top: -8px; -} -.m-btn-active, -.s-btn-active { - background: #E6E6E6; - color: #444; - border: 1px solid #ddd; - filter: none; -} -.m-btn-plain-active, -.s-btn-plain-active { - background: transparent; - padding: 0; - border-width: 1px; - border-style: solid; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.m-btn .l-btn-left .l-btn-text { - margin-right: 20px; -} -.m-btn .l-btn-icon-right .l-btn-text { - margin-right: 40px; -} -.m-btn .l-btn-icon-right .l-btn-icon { - right: 20px; -} -.m-btn .l-btn-icon-top .l-btn-text { - margin-right: 4px; - margin-bottom: 14px; -} -.m-btn .l-btn-icon-bottom .l-btn-text { - margin-right: 4px; - margin-bottom: 34px; -} -.m-btn .l-btn-icon-bottom .l-btn-icon { - top: auto; - bottom: 20px; -} -.m-btn .l-btn-icon-top .m-btn-downarrow, -.m-btn .l-btn-icon-bottom .m-btn-downarrow { - top: auto; - bottom: 0px; - left: 50%; - margin-left: -8px; -} -.m-btn-line { - display: inline-block; - position: absolute; - font-size: 1px; - display: none; -} -.m-btn .l-btn-left .m-btn-line { - right: 0; - width: 16px; - height: 500px; - border-style: solid; - border-color: #b3b3b3; - border-width: 0 0 0 1px; -} -.m-btn .l-btn-icon-top .m-btn-line, -.m-btn .l-btn-icon-bottom .m-btn-line { - left: 0; - bottom: 0; - width: 500px; - height: 16px; - border-width: 1px 0 0 0; -} -.m-btn-large .l-btn-icon-right .l-btn-text { - margin-right: 56px; -} -.m-btn-large .l-btn-icon-bottom .l-btn-text { - margin-bottom: 50px; -} -.m-btn-downarrow, -.s-btn-downarrow { - background: url('images/menu_arrows.png') no-repeat 0 center; -} -.m-btn-plain-active, -.s-btn-plain-active { - border-color: #ddd; - background-color: #E6E6E6; - color: #444; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/messager.css b/vendor/FHC-vendor/easyui/themes/metro/messager.css deleted file mode 100644 index 8aa184347..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/messager.css +++ /dev/null @@ -1,40 +0,0 @@ -.messager-body { - padding: 10px; - overflow: auto; -} -.messager-button { - text-align: center; - padding: 5px; -} -.messager-button .l-btn { - width: 70px; -} -.messager-icon { - float: left; - width: 32px; - height: 32px; - margin: 0 10px 10px 0; -} -.messager-error { - background: url('images/messager_icons.png') no-repeat scroll -64px 0; -} -.messager-info { - background: url('images/messager_icons.png') no-repeat scroll 0 0; -} -.messager-question { - background: url('images/messager_icons.png') no-repeat scroll -32px 0; -} -.messager-warning { - background: url('images/messager_icons.png') no-repeat scroll -96px 0; -} -.messager-progress { - padding: 10px; -} -.messager-p-msg { - margin-bottom: 5px; -} -.messager-body .messager-input { - width: 100%; - padding: 1px 0; - border: 1px solid #ddd; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/numberbox.css b/vendor/FHC-vendor/easyui/themes/metro/numberbox.css deleted file mode 100644 index 3d5a506d4..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/numberbox.css +++ /dev/null @@ -1,9 +0,0 @@ -.numberbox { - border: 1px solid #ddd; - margin: 0; - padding: 0 2px; - vertical-align: middle; -} -.textbox { - padding: 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/pagination.css b/vendor/FHC-vendor/easyui/themes/metro/pagination.css deleted file mode 100644 index e3110673c..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/pagination.css +++ /dev/null @@ -1,71 +0,0 @@ -.pagination { - zoom: 1; -} -.pagination table { - float: left; - height: 30px; -} -.pagination td { - border: 0; -} -.pagination-btn-separator { - float: left; - height: 24px; - border-left: 1px solid #ddd; - border-right: 1px solid #fff; - margin: 3px 1px; -} -.pagination .pagination-num { - border-width: 1px; - border-style: solid; - margin: 0 2px; - padding: 2px; - width: 2em; - height: auto; -} -.pagination-page-list { - margin: 0px 6px; - padding: 1px 2px; - width: auto; - height: auto; - border-width: 1px; - border-style: solid; -} -.pagination-info { - float: right; - margin: 0 6px 0 0; - padding: 0; - height: 30px; - line-height: 30px; - font-size: 12px; -} -.pagination span { - font-size: 12px; -} -.pagination-link .l-btn-text { - width: 24px; - text-align: center; - margin: 0; -} -.pagination-first { - background: url('images/pagination_icons.png') no-repeat 0 center; -} -.pagination-prev { - background: url('images/pagination_icons.png') no-repeat -16px center; -} -.pagination-next { - background: url('images/pagination_icons.png') no-repeat -32px center; -} -.pagination-last { - background: url('images/pagination_icons.png') no-repeat -48px center; -} -.pagination-load { - background: url('images/pagination_icons.png') no-repeat -64px center; -} -.pagination-loading { - background: url('images/loading.gif') no-repeat center center; -} -.pagination-page-list, -.pagination .pagination-num { - border-color: #ddd; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/panel.css b/vendor/FHC-vendor/easyui/themes/metro/panel.css deleted file mode 100644 index 6273ac396..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/panel.css +++ /dev/null @@ -1,136 +0,0 @@ -.panel { - overflow: hidden; - text-align: left; - margin: 0; - border: 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.panel-header, -.panel-body { - border-width: 1px; - border-style: solid; -} -.panel-header { - padding: 5px; - position: relative; -} -.panel-title { - background: url('images/blank.gif') no-repeat; -} -.panel-header-noborder { - border-width: 0 0 1px 0; -} -.panel-body { - overflow: auto; - border-top-width: 0; - padding: 0; -} -.panel-body-noheader { - border-top-width: 1px; -} -.panel-body-noborder { - border-width: 0px; -} -.panel-body-nobottom { - border-bottom-width: 0; -} -.panel-with-icon { - padding-left: 18px; -} -.panel-icon, -.panel-tool { - position: absolute; - top: 50%; - margin-top: -8px; - height: 16px; - overflow: hidden; -} -.panel-icon { - left: 5px; - width: 16px; -} -.panel-tool { - right: 5px; - width: auto; -} -.panel-tool a { - display: inline-block; - width: 16px; - height: 16px; - opacity: 0.6; - filter: alpha(opacity=60); - margin: 0 0 0 2px; - vertical-align: top; -} -.panel-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - background-color: #E6E6E6; - -moz-border-radius: -2px -2px -2px -2px; - -webkit-border-radius: -2px -2px -2px -2px; - border-radius: -2px -2px -2px -2px; -} -.panel-loading { - padding: 11px 0px 10px 30px; -} -.panel-noscroll { - overflow: hidden; -} -.panel-fit, -.panel-fit body { - height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: hidden; -} -.panel-loading { - background: url('images/loading.gif') no-repeat 10px 10px; -} -.panel-tool-close { - background: url('images/panel_tools.png') no-repeat -16px 0px; -} -.panel-tool-min { - background: url('images/panel_tools.png') no-repeat 0px 0px; -} -.panel-tool-max { - background: url('images/panel_tools.png') no-repeat 0px -16px; -} -.panel-tool-restore { - background: url('images/panel_tools.png') no-repeat -16px -16px; -} -.panel-tool-collapse { - background: url('images/panel_tools.png') no-repeat -32px 0; -} -.panel-tool-expand { - background: url('images/panel_tools.png') no-repeat -32px -16px; -} -.panel-header, -.panel-body { - border-color: #ddd; -} -.panel-header { - background-color: #ffffff; -} -.panel-body { - background-color: #fff; - color: #444; - font-size: 12px; -} -.panel-title { - font-size: 12px; - font-weight: bold; - color: #777; - height: 16px; - line-height: 16px; -} -.panel-footer { - border: 1px solid #ddd; - overflow: hidden; - background: #fff; -} -.panel-footer-noborder { - border-width: 1px 0 0 0; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/progressbar.css b/vendor/FHC-vendor/easyui/themes/metro/progressbar.css deleted file mode 100644 index 7721f1bff..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/progressbar.css +++ /dev/null @@ -1,32 +0,0 @@ -.progressbar { - border-width: 1px; - border-style: solid; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; - overflow: hidden; - position: relative; -} -.progressbar-text { - text-align: center; - position: absolute; -} -.progressbar-value { - position: relative; - overflow: hidden; - width: 0; - -moz-border-radius: 0px 0 0 0px; - -webkit-border-radius: 0px 0 0 0px; - border-radius: 0px 0 0 0px; -} -.progressbar { - border-color: #ddd; -} -.progressbar-text { - color: #444; - font-size: 12px; -} -.progressbar-value .progressbar-text { - background-color: #CCE6FF; - color: #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/propertygrid.css b/vendor/FHC-vendor/easyui/themes/metro/propertygrid.css deleted file mode 100644 index f5ae0c4e3..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/propertygrid.css +++ /dev/null @@ -1,28 +0,0 @@ -.propertygrid .datagrid-view1 .datagrid-body td { - padding-bottom: 1px; - border-width: 0 1px 0 0; -} -.propertygrid .datagrid-group { - height: 21px; - overflow: hidden; - border-width: 0 0 1px 0; - border-style: solid; -} -.propertygrid .datagrid-group span { - font-weight: bold; -} -.propertygrid .datagrid-view1 .datagrid-body td { - border-color: #ddd; -} -.propertygrid .datagrid-view1 .datagrid-group { - border-color: #ffffff; -} -.propertygrid .datagrid-view2 .datagrid-group { - border-color: #ddd; -} -.propertygrid .datagrid-group, -.propertygrid .datagrid-view1 .datagrid-body, -.propertygrid .datagrid-view1 .datagrid-row-over, -.propertygrid .datagrid-view1 .datagrid-row-selected { - background: #ffffff; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/searchbox.css b/vendor/FHC-vendor/easyui/themes/metro/searchbox.css deleted file mode 100644 index 25a4a7e7c..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/searchbox.css +++ /dev/null @@ -1,90 +0,0 @@ -.searchbox { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.searchbox .searchbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 0 2px; - vertical-align: top; -} -.searchbox .searchbox-prompt { - font-size: 12px; - color: #ccc; -} -.searchbox-button { - width: 18px; - height: 20px; - overflow: hidden; - display: inline-block; - vertical-align: top; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); -} -.searchbox-button-hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.searchbox .l-btn-plain { - border: 0; - padding: 0; - vertical-align: top; - opacity: 0.6; - filter: alpha(opacity=60); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .l-btn-plain:hover { - border: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox a.m-btn-plain-active { - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .m-btn-active { - border-width: 0 1px 0 0; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.searchbox .textbox-button-right { - border-width: 0 0 0 1px; -} -.searchbox .textbox-button-left { - border-width: 0 1px 0 0; -} -.searchbox-button { - background: url('images/searchbox_button.png') no-repeat center center; -} -.searchbox { - border-color: #ddd; - background-color: #fff; -} -.searchbox .l-btn-plain { - background: #ffffff; -} -.searchbox .l-btn-plain-disabled, -.searchbox .l-btn-plain-disabled:hover { - opacity: 0.5; - filter: alpha(opacity=50); -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/slider.css b/vendor/FHC-vendor/easyui/themes/metro/slider.css deleted file mode 100644 index 42ddc1775..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/slider.css +++ /dev/null @@ -1,101 +0,0 @@ -.slider-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.slider-h { - height: 22px; -} -.slider-v { - width: 22px; -} -.slider-inner { - position: relative; - height: 6px; - top: 7px; - border-width: 1px; - border-style: solid; - border-radius: 0px; -} -.slider-handle { - position: absolute; - display: block; - outline: none; - width: 20px; - height: 20px; - top: 50%; - margin-top: -10px; - margin-left: -10px; -} -.slider-tip { - position: absolute; - display: inline-block; - line-height: 12px; - font-size: 12px; - white-space: nowrap; - top: -22px; -} -.slider-rule { - position: relative; - top: 15px; -} -.slider-rule span { - position: absolute; - display: inline-block; - font-size: 0; - height: 5px; - border-width: 0 0 0 1px; - border-style: solid; -} -.slider-rulelabel { - position: relative; - top: 20px; -} -.slider-rulelabel span { - position: absolute; - display: inline-block; - font-size: 12px; -} -.slider-v .slider-inner { - width: 6px; - left: 7px; - top: 0; - float: left; -} -.slider-v .slider-handle { - left: 50%; - margin-top: -10px; -} -.slider-v .slider-tip { - left: -10px; - margin-top: -6px; -} -.slider-v .slider-rule { - float: left; - top: 0; - left: 16px; -} -.slider-v .slider-rule span { - width: 5px; - height: 'auto'; - border-left: 0; - border-width: 1px 0 0 0; - border-style: solid; -} -.slider-v .slider-rulelabel { - float: left; - top: 0; - left: 23px; -} -.slider-handle { - background: url('images/slider_handle.png') no-repeat; -} -.slider-inner { - border-color: #ddd; - background: #ffffff; -} -.slider-rule span { - border-color: #ddd; -} -.slider-rulelabel span { - color: #444; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/spinner.css b/vendor/FHC-vendor/easyui/themes/metro/spinner.css deleted file mode 100644 index 734845e62..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/spinner.css +++ /dev/null @@ -1,72 +0,0 @@ -.spinner { - display: inline-block; - white-space: nowrap; - margin: 0; - padding: 0; - border-width: 1px; - border-style: solid; - overflow: hidden; - vertical-align: middle; -} -.spinner .spinner-text { - font-size: 12px; - border: 0px; - margin: 0; - padding: 0 2px; - vertical-align: baseline; -} -.spinner-arrow { - background-color: #ffffff; - display: inline-block; - overflow: hidden; - vertical-align: top; - margin: 0; - padding: 0; - opacity: 1.0; - filter: alpha(opacity=100); - width: 18px; -} -.spinner-arrow-up, -.spinner-arrow-down { - opacity: 0.6; - filter: alpha(opacity=60); - display: block; - font-size: 1px; - width: 18px; - height: 10px; - width: 100%; - height: 50%; - color: #777; - outline-style: none; -} -.spinner-arrow-hover { - background-color: #E6E6E6; - opacity: 1.0; - filter: alpha(opacity=100); -} -.spinner-arrow-up:hover, -.spinner-arrow-down:hover { - opacity: 1.0; - filter: alpha(opacity=100); - background-color: #E6E6E6; -} -.textbox-icon-disabled .spinner-arrow-up:hover, -.textbox-icon-disabled .spinner-arrow-down:hover { - opacity: 0.6; - filter: alpha(opacity=60); - background-color: #ffffff; - cursor: default; -} -.spinner .textbox-icon-disabled { - opacity: 0.6; - filter: alpha(opacity=60); -} -.spinner-arrow-up { - background: url('images/spinner_arrows.png') no-repeat 1px center; -} -.spinner-arrow-down { - background: url('images/spinner_arrows.png') no-repeat -15px center; -} -.spinner { - border-color: #ddd; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/splitbutton.css b/vendor/FHC-vendor/easyui/themes/metro/splitbutton.css deleted file mode 100644 index 3451138c7..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/splitbutton.css +++ /dev/null @@ -1,12 +0,0 @@ -.s-btn:hover .m-btn-line, -.s-btn-active .m-btn-line, -.s-btn-plain-active .m-btn-line { - display: inline-block; -} -.l-btn:hover .s-btn-downarrow, -.s-btn-active .s-btn-downarrow, -.s-btn-plain-active .s-btn-downarrow { - border-style: solid; - border-color: #b3b3b3; - border-width: 0 0 0 1px; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/switchbutton.css b/vendor/FHC-vendor/easyui/themes/metro/switchbutton.css deleted file mode 100644 index 351083eb9..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/switchbutton.css +++ /dev/null @@ -1,77 +0,0 @@ -.switchbutton { - text-decoration: none; - display: inline-block; - overflow: hidden; - vertical-align: middle; - margin: 0; - padding: 0; - cursor: pointer; - background: #dddddd; - border: 1px solid #dddddd; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.switchbutton-inner { - display: inline-block; - overflow: hidden; - position: relative; - top: -1px; - left: -1px; -} -.switchbutton-on, -.switchbutton-off, -.switchbutton-handle { - display: inline-block; - text-align: center; - height: 100%; - float: left; - font-size: 12px; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.switchbutton-on { - background: #CCE6FF; - color: #000; -} -.switchbutton-off { - background-color: #fff; - color: #444; -} -.switchbutton-on, -.switchbutton-reversed .switchbutton-off { - -moz-border-radius: 0px 0 0 0px; - -webkit-border-radius: 0px 0 0 0px; - border-radius: 0px 0 0 0px; -} -.switchbutton-off, -.switchbutton-reversed .switchbutton-on { - -moz-border-radius: 0 0px 0px 0; - -webkit-border-radius: 0 0px 0px 0; - border-radius: 0 0px 0px 0; -} -.switchbutton-handle { - position: absolute; - top: 0; - left: 50%; - background-color: #fff; - color: #444; - border: 1px solid #dddddd; - -moz-box-shadow: 0 0 3px 0 #dddddd; - -webkit-box-shadow: 0 0 3px 0 #dddddd; - box-shadow: 0 0 3px 0 #dddddd; -} -.switchbutton-value { - position: absolute; - top: 0; - left: -5000px; -} -.switchbutton-disabled { - opacity: 0.5; - filter: alpha(opacity=50); -} -.switchbutton-disabled, -.switchbutton-readonly { - cursor: default; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/tabs.css b/vendor/FHC-vendor/easyui/themes/metro/tabs.css deleted file mode 100644 index e42fd50a1..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/tabs.css +++ /dev/null @@ -1,377 +0,0 @@ -.tabs-container { - overflow: hidden; -} -.tabs-header { - border-width: 1px; - border-style: solid; - border-bottom-width: 0; - position: relative; - padding: 0; - padding-top: 2px; - overflow: hidden; -} -.tabs-scroller-left, -.tabs-scroller-right { - position: absolute; - top: auto; - bottom: 0; - width: 18px; - font-size: 1px; - display: none; - cursor: pointer; - border-width: 1px; - border-style: solid; -} -.tabs-scroller-left { - left: 0; -} -.tabs-scroller-right { - right: 0; -} -.tabs-tool { - position: absolute; - bottom: 0; - padding: 1px; - overflow: hidden; - border-width: 1px; - border-style: solid; -} -.tabs-header-plain .tabs-tool { - padding: 0 1px; -} -.tabs-wrap { - position: relative; - left: 0; - overflow: hidden; - width: 100%; - margin: 0; - padding: 0; -} -.tabs-scrolling { - margin-left: 18px; - margin-right: 18px; -} -.tabs-disabled { - opacity: 0.3; - filter: alpha(opacity=30); -} -.tabs { - list-style-type: none; - height: 26px; - margin: 0px; - padding: 0px; - padding-left: 4px; - width: 50000px; - border-style: solid; - border-width: 0 0 1px 0; -} -.tabs li { - float: left; - display: inline-block; - margin: 0 4px -1px 0; - padding: 0; - position: relative; - border: 0; -} -.tabs li a.tabs-inner { - display: inline-block; - text-decoration: none; - margin: 0; - padding: 0 10px; - height: 25px; - line-height: 25px; - text-align: center; - white-space: nowrap; - border-width: 1px; - border-style: solid; - -moz-border-radius: 0px 0px 0 0; - -webkit-border-radius: 0px 0px 0 0; - border-radius: 0px 0px 0 0; -} -.tabs li.tabs-selected a.tabs-inner { - font-weight: bold; - outline: none; -} -.tabs li.tabs-selected a:hover.tabs-inner { - cursor: default; - pointer: default; -} -.tabs li a.tabs-close, -.tabs-p-tool { - position: absolute; - font-size: 1px; - display: block; - height: 12px; - padding: 0; - top: 50%; - margin-top: -6px; - overflow: hidden; -} -.tabs li a.tabs-close { - width: 12px; - right: 5px; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs-p-tool { - right: 16px; -} -.tabs-p-tool a { - display: inline-block; - font-size: 1px; - width: 12px; - height: 12px; - margin: 0; - opacity: 0.6; - filter: alpha(opacity=60); -} -.tabs li a:hover.tabs-close, -.tabs-p-tool a:hover { - opacity: 1; - filter: alpha(opacity=100); - cursor: hand; - cursor: pointer; -} -.tabs-with-icon { - padding-left: 18px; -} -.tabs-icon { - position: absolute; - width: 16px; - height: 16px; - left: 10px; - top: 50%; - margin-top: -8px; -} -.tabs-title { - font-size: 12px; -} -.tabs-closable { - padding-right: 8px; -} -.tabs-panels { - margin: 0px; - padding: 0px; - border-width: 1px; - border-style: solid; - border-top-width: 0; - overflow: hidden; -} -.tabs-header-bottom { - border-width: 0 1px 1px 1px; - padding: 0 0 2px 0; -} -.tabs-header-bottom .tabs { - border-width: 1px 0 0 0; -} -.tabs-header-bottom .tabs li { - margin: -1px 4px 0 0; -} -.tabs-header-bottom .tabs li a.tabs-inner { - -moz-border-radius: 0 0 0px 0px; - -webkit-border-radius: 0 0 0px 0px; - border-radius: 0 0 0px 0px; -} -.tabs-header-bottom .tabs-tool { - top: 0; -} -.tabs-header-bottom .tabs-scroller-left, -.tabs-header-bottom .tabs-scroller-right { - top: 0; - bottom: auto; -} -.tabs-panels-top { - border-width: 1px 1px 0 1px; -} -.tabs-header-left { - float: left; - border-width: 1px 0 1px 1px; - padding: 0; -} -.tabs-header-right { - float: right; - border-width: 1px 1px 1px 0; - padding: 0; -} -.tabs-header-left .tabs-wrap, -.tabs-header-right .tabs-wrap { - height: 100%; -} -.tabs-header-left .tabs { - height: 100%; - padding: 4px 0 0 2px; - border-width: 0 1px 0 0; -} -.tabs-header-right .tabs { - height: 100%; - padding: 4px 2px 0 0; - border-width: 0 0 0 1px; -} -.tabs-header-left .tabs li, -.tabs-header-right .tabs li { - display: block; - width: 100%; - position: relative; -} -.tabs-header-left .tabs li { - left: auto; - right: 0; - margin: 0 -1px 4px 0; - float: right; -} -.tabs-header-right .tabs li { - left: 0; - right: auto; - margin: 0 0 4px -1px; - float: left; -} -.tabs-justified li a.tabs-inner { - padding-left: 0; - padding-right: 0; -} -.tabs-header-left .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 0px 0 0 0px; - -webkit-border-radius: 0px 0 0 0px; - border-radius: 0px 0 0 0px; -} -.tabs-header-right .tabs li a.tabs-inner { - display: block; - text-align: left; - padding-left: 10px; - padding-right: 10px; - -moz-border-radius: 0 0px 0px 0; - -webkit-border-radius: 0 0px 0px 0; - border-radius: 0 0px 0px 0; -} -.tabs-panels-right { - float: right; - border-width: 1px 1px 1px 0; -} -.tabs-panels-left { - float: left; - border-width: 1px 0 1px 1px; -} -.tabs-header-noborder, -.tabs-panels-noborder { - border: 0px; -} -.tabs-header-plain { - border: 0px; - background: transparent; -} -.tabs-pill { - padding-bottom: 3px; -} -.tabs-header-bottom .tabs-pill { - padding-top: 3px; - padding-bottom: 0; -} -.tabs-header-left .tabs-pill { - padding-right: 3px; -} -.tabs-header-right .tabs-pill { - padding-left: 3px; -} -.tabs-header .tabs-pill li a.tabs-inner { - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.tabs-header-narrow, -.tabs-header-narrow .tabs-narrow { - padding: 0; -} -.tabs-narrow li, -.tabs-header-bottom .tabs-narrow li { - margin-left: 0; - margin-right: -1px; -} -.tabs-narrow li.tabs-last, -.tabs-header-bottom .tabs-narrow li.tabs-last { - margin-right: 0; -} -.tabs-header-left .tabs-narrow, -.tabs-header-right .tabs-narrow { - padding-top: 0; -} -.tabs-header-left .tabs-narrow li { - margin-bottom: -1px; - margin-right: -1px; -} -.tabs-header-left .tabs-narrow li.tabs-last, -.tabs-header-right .tabs-narrow li.tabs-last { - margin-bottom: 0; -} -.tabs-header-right .tabs-narrow li { - margin-bottom: -1px; - margin-left: -1px; -} -.tabs-scroller-left { - background: #ffffff url('images/tabs_icons.png') no-repeat 1px center; -} -.tabs-scroller-right { - background: #ffffff url('images/tabs_icons.png') no-repeat -15px center; -} -.tabs li a.tabs-close { - background: url('images/tabs_icons.png') no-repeat -34px center; -} -.tabs li a.tabs-inner:hover { - background: #E6E6E6; - color: #444; - filter: none; -} -.tabs li.tabs-selected a.tabs-inner { - background-color: #fff; - color: #777; -} -.tabs li a.tabs-inner { - color: #777; - background-color: #ffffff; -} -.tabs-header, -.tabs-tool { - background-color: #ffffff; -} -.tabs-header-plain { - background: transparent; -} -.tabs-header, -.tabs-scroller-left, -.tabs-scroller-right, -.tabs-tool, -.tabs, -.tabs-panels, -.tabs li a.tabs-inner, -.tabs li.tabs-selected a.tabs-inner, -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner, -.tabs-header-left .tabs li.tabs-selected a.tabs-inner, -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-color: #ddd; -} -.tabs-p-tool a:hover, -.tabs li a:hover.tabs-close, -.tabs-scroller-over { - background-color: #E6E6E6; -} -.tabs li.tabs-selected a.tabs-inner { - border-bottom: 1px solid #fff; -} -.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { - border-top: 1px solid #fff; -} -.tabs-header-left .tabs li.tabs-selected a.tabs-inner { - border-right: 1px solid #fff; -} -.tabs-header-right .tabs li.tabs-selected a.tabs-inner { - border-left: 1px solid #fff; -} -.tabs-header .tabs-pill li.tabs-selected a.tabs-inner { - background: #CCE6FF; - color: #000; - filter: none; - border-color: #ddd; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/textbox.css b/vendor/FHC-vendor/easyui/themes/metro/textbox.css deleted file mode 100644 index 1ae077361..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/textbox.css +++ /dev/null @@ -1,90 +0,0 @@ -.textbox { - position: relative; - border: 1px solid #ddd; - background-color: #fff; - vertical-align: middle; - display: inline-block; - overflow: hidden; - white-space: nowrap; - margin: 0; - padding: 0; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.textbox .textbox-text { - font-size: 12px; - border: 0; - margin: 0; - padding: 4px; - white-space: normal; - vertical-align: top; - outline-style: none; - resize: none; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.textbox textarea.textbox-text { - white-space: pre-wrap; -} -.textbox .textbox-prompt { - font-size: 12px; - color: #aaa; -} -.textbox .textbox-button, -.textbox .textbox-button:hover { - position: absolute; - top: 0; - padding: 0; - vertical-align: top; - -moz-border-radius: 0 0 0 0; - -webkit-border-radius: 0 0 0 0; - border-radius: 0 0 0 0; -} -.textbox-button-right, -.textbox-button-right:hover { - border-width: 0 0 0 1px; -} -.textbox-button-left, -.textbox-button-left:hover { - border-width: 0 1px 0 0; -} -.textbox-addon { - position: absolute; - top: 0; -} -.textbox-icon { - display: inline-block; - width: 18px; - height: 20px; - overflow: hidden; - vertical-align: top; - background-position: center center; - cursor: pointer; - opacity: 0.6; - filter: alpha(opacity=60); - text-decoration: none; - outline-style: none; -} -.textbox-icon-disabled, -.textbox-icon-readonly { - cursor: default; -} -.textbox-icon:hover { - opacity: 1.0; - filter: alpha(opacity=100); -} -.textbox-icon-disabled:hover { - opacity: 0.6; - filter: alpha(opacity=60); -} -.textbox-focused { - -moz-box-shadow: 0 0 3px 0 #ddd; - -webkit-box-shadow: 0 0 3px 0 #ddd; - box-shadow: 0 0 3px 0 #ddd; -} -.textbox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/tooltip.css b/vendor/FHC-vendor/easyui/themes/metro/tooltip.css deleted file mode 100644 index b8f955c2b..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/tooltip.css +++ /dev/null @@ -1,103 +0,0 @@ -.tooltip { - position: absolute; - display: none; - z-index: 9900000; - outline: none; - opacity: 1; - filter: alpha(opacity=100); - padding: 5px; - border-width: 1px; - border-style: solid; - border-radius: 5px; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.tooltip-content { - font-size: 12px; -} -.tooltip-arrow-outer, -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - line-height: 0; - font-size: 0; - border-style: solid; - border-width: 6px; - border-color: transparent; - _border-color: tomato; - _filter: chroma(color=tomato); -} -.tooltip-arrow { - display: none \9; -} -.tooltip-right .tooltip-arrow-outer { - left: 0; - top: 50%; - margin: -6px 0 0 -13px; -} -.tooltip-right .tooltip-arrow { - left: 0; - top: 50%; - margin: -6px 0 0 -12px; -} -.tooltip-left .tooltip-arrow-outer { - right: 0; - top: 50%; - margin: -6px -13px 0 0; -} -.tooltip-left .tooltip-arrow { - right: 0; - top: 50%; - margin: -6px -12px 0 0; -} -.tooltip-top .tooltip-arrow-outer { - bottom: 0; - left: 50%; - margin: 0 0 -13px -6px; -} -.tooltip-top .tooltip-arrow { - bottom: 0; - left: 50%; - margin: 0 0 -12px -6px; -} -.tooltip-bottom .tooltip-arrow-outer { - top: 0; - left: 50%; - margin: -13px 0 0 -6px; -} -.tooltip-bottom .tooltip-arrow { - top: 0; - left: 50%; - margin: -12px 0 0 -6px; -} -.tooltip { - background-color: #fff; - border-color: #ddd; - color: #444; -} -.tooltip-right .tooltip-arrow-outer { - border-right-color: #ddd; -} -.tooltip-right .tooltip-arrow { - border-right-color: #fff; -} -.tooltip-left .tooltip-arrow-outer { - border-left-color: #ddd; -} -.tooltip-left .tooltip-arrow { - border-left-color: #fff; -} -.tooltip-top .tooltip-arrow-outer { - border-top-color: #ddd; -} -.tooltip-top .tooltip-arrow { - border-top-color: #fff; -} -.tooltip-bottom .tooltip-arrow-outer { - border-bottom-color: #ddd; -} -.tooltip-bottom .tooltip-arrow { - border-bottom-color: #fff; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/tree.css b/vendor/FHC-vendor/easyui/themes/metro/tree.css deleted file mode 100644 index 403ae4a13..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/tree.css +++ /dev/null @@ -1,160 +0,0 @@ -.tree { - margin: 0; - padding: 0; - list-style-type: none; -} -.tree li { - white-space: nowrap; -} -.tree li ul { - list-style-type: none; - margin: 0; - padding: 0; -} -.tree-node { - height: 18px; - white-space: nowrap; - cursor: pointer; -} -.tree-hit { - cursor: pointer; -} -.tree-expanded, -.tree-collapsed, -.tree-folder, -.tree-file, -.tree-checkbox, -.tree-indent { - display: inline-block; - width: 16px; - height: 18px; - vertical-align: top; - overflow: hidden; -} -.tree-expanded { - background: url('images/tree_icons.png') no-repeat -18px 0px; -} -.tree-expanded-hover { - background: url('images/tree_icons.png') no-repeat -50px 0px; -} -.tree-collapsed { - background: url('images/tree_icons.png') no-repeat 0px 0px; -} -.tree-collapsed-hover { - background: url('images/tree_icons.png') no-repeat -32px 0px; -} -.tree-lines .tree-expanded, -.tree-lines .tree-root-first .tree-expanded { - background: url('images/tree_icons.png') no-repeat -144px 0; -} -.tree-lines .tree-collapsed, -.tree-lines .tree-root-first .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -128px 0; -} -.tree-lines .tree-node-last .tree-expanded, -.tree-lines .tree-root-one .tree-expanded { - background: url('images/tree_icons.png') no-repeat -80px 0; -} -.tree-lines .tree-node-last .tree-collapsed, -.tree-lines .tree-root-one .tree-collapsed { - background: url('images/tree_icons.png') no-repeat -64px 0; -} -.tree-line { - background: url('images/tree_icons.png') no-repeat -176px 0; -} -.tree-join { - background: url('images/tree_icons.png') no-repeat -192px 0; -} -.tree-joinbottom { - background: url('images/tree_icons.png') no-repeat -160px 0; -} -.tree-folder { - background: url('images/tree_icons.png') no-repeat -208px 0; -} -.tree-folder-open { - background: url('images/tree_icons.png') no-repeat -224px 0; -} -.tree-file { - background: url('images/tree_icons.png') no-repeat -240px 0; -} -.tree-loading { - background: url('images/loading.gif') no-repeat center center; -} -.tree-checkbox0 { - background: url('images/tree_icons.png') no-repeat -208px -18px; -} -.tree-checkbox1 { - background: url('images/tree_icons.png') no-repeat -224px -18px; -} -.tree-checkbox2 { - background: url('images/tree_icons.png') no-repeat -240px -18px; -} -.tree-title { - font-size: 12px; - display: inline-block; - text-decoration: none; - vertical-align: top; - white-space: nowrap; - padding: 0 2px; - height: 18px; - line-height: 18px; -} -.tree-node-proxy { - font-size: 12px; - line-height: 20px; - padding: 0 2px 0 20px; - border-width: 1px; - border-style: solid; - z-index: 9900000; -} -.tree-dnd-icon { - display: inline-block; - position: absolute; - width: 16px; - height: 18px; - left: 2px; - top: 50%; - margin-top: -9px; -} -.tree-dnd-yes { - background: url('images/tree_icons.png') no-repeat -256px 0; -} -.tree-dnd-no { - background: url('images/tree_icons.png') no-repeat -256px -18px; -} -.tree-node-top { - border-top: 1px dotted red; -} -.tree-node-bottom { - border-bottom: 1px dotted red; -} -.tree-node-append .tree-title { - border: 1px dotted red; -} -.tree-editor { - border: 1px solid #ccc; - font-size: 12px; - height: 14px !important; - height: 18px; - line-height: 14px; - padding: 1px 2px; - width: 80px; - position: absolute; - top: 0; -} -.tree-node-proxy { - background-color: #fff; - color: #444; - border-color: #ddd; -} -.tree-node-hover { - background: #E6E6E6; - color: #444; -} -.tree-node-selected { - background: #CCE6FF; - color: #000; -} -.tree-node-hidden { - display: none; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/validatebox.css b/vendor/FHC-vendor/easyui/themes/metro/validatebox.css deleted file mode 100644 index 1fc3ad64e..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/validatebox.css +++ /dev/null @@ -1,5 +0,0 @@ -.validatebox-invalid { - border-color: #ffa8a8; - background-color: #fff3f3; - color: #000; -} diff --git a/vendor/FHC-vendor/easyui/themes/metro/window.css b/vendor/FHC-vendor/easyui/themes/metro/window.css deleted file mode 100644 index de84433f2..000000000 --- a/vendor/FHC-vendor/easyui/themes/metro/window.css +++ /dev/null @@ -1,88 +0,0 @@ -.window { - overflow: hidden; - padding: 5px; - border-width: 1px; - border-style: solid; -} -.window .window-header { - background: transparent; - padding: 0px 0px 6px 0px; -} -.window .window-body { - border-width: 1px; - border-style: solid; - border-top-width: 0px; -} -.window .window-body-noheader { - border-top-width: 1px; -} -.window .panel-body-nobottom { - border-bottom-width: 0; -} -.window .window-header .panel-icon, -.window .window-header .panel-tool { - top: 50%; - margin-top: -11px; -} -.window .window-header .panel-icon { - left: 1px; -} -.window .window-header .panel-tool { - right: 1px; -} -.window .window-header .panel-with-icon { - padding-left: 18px; -} -.window-proxy { - position: absolute; - overflow: hidden; -} -.window-proxy-mask { - position: absolute; - filter: alpha(opacity=5); - opacity: 0.05; -} -.window-mask { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - filter: alpha(opacity=40); - opacity: 0.40; - font-size: 1px; - overflow: hidden; -} -.window, -.window-shadow { - position: absolute; - -moz-border-radius: 0px 0px 0px 0px; - -webkit-border-radius: 0px 0px 0px 0px; - border-radius: 0px 0px 0px 0px; -} -.window-shadow { - background: #eee; - -moz-box-shadow: 2px 2px 3px #ededed; - -webkit-box-shadow: 2px 2px 3px #ededed; - box-shadow: 2px 2px 3px #ededed; - filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); -} -.window, -.window .window-body { - border-color: #ddd; -} -.window { - background-color: #ffffff; -} -.window-proxy { - border: 1px dashed #ddd; -} -.window-proxy-mask, -.window-mask { - background: #eee; -} -.window .panel-footer { - border: 1px solid #ddd; - position: relative; - top: -1px; -} diff --git a/vendor/FHC-vendor/easyui/themes/mobile.css b/vendor/FHC-vendor/easyui/themes/mobile.css deleted file mode 100644 index fd1154a7d..000000000 --- a/vendor/FHC-vendor/easyui/themes/mobile.css +++ /dev/null @@ -1,377 +0,0 @@ -.m-toolbar{ - position: relative; - text-align: center; - min-height: 32px; -} -.m-toolbar .m-title{ - line-height: 32px; - font-size: 16px; - font-weight: bold; - text-align: center; -} -.m-left{ - position: absolute; - height: 100%; - vertical-align: middle; - top:0; - left:0; - z-index: 1; -} -.m-right{ - position: absolute; - height: 100%; - vertical-align: middle; - top:0; - right:0; - z-index: 1; -} -.m-left>.l-btn,.m-right>.l-btn, -.m-left>.switchbutton,.m-right>.switchbutton{ - position: relative; - vertical-align: top; - top: 50%; - margin-top: -13px; -} -.m-back::before,.m-next::after{ - position: relative; - display: inline-block; - box-sizing: border-box; - vertical-align: top; - border-style: solid; - -webkit-transform:rotate(45deg); - transform:rotate(45deg); - width: 10px; - height: 10px; - top: 7px; - content: ''; -} -.m-back::before{ - border-width: 0 0 1px 1px; - margin-left: 6px; - margin-right: -6px; -} -.m-next::after{ - border-width: 1px 1px 0 0; - margin-left: -6px; - margin-right: 6px; -} -.m-buttongroup{ - display: inline-block; - margin: 0; - padding: 0; - overflow: hidden; - vertical-align: middle; -} -.m-buttongroup .l-btn{ - float: left; - margin-left: -1px; -} -.m-buttongroup .l-btn:last-child::after{ - content: ''; - clear: both; -} -.m-buttongroup .l-btn:not(:first-child):not(:last-child){ - border-radius: 0; -} -.m-buttongroup .l-btn:first-child{ - border-top-right-radius: 0; - border-bottom-right-radius: 0; - margin-left: 0; -} -.m-buttongroup .l-btn:last-child{ - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.m-buttongroup-justified{ - display: table; - table-layout: fixed; -} -.m-buttongroup-justified .l-btn{ - float: none; - display: table-cell; -} -.m-badge:not(.l-btn), -.l-btn.m-badge::after{ - display: inline-block; - min-width: 10px; - line-height: 1; - font-size: 12px; - text-align: center; - white-space: nowrap; - border-radius: 10px; - padding: 2px 4px; - border-style: solid; - border-width: 0px; - background-color: #d9534f; - color: #fff; - z-index: 99999; -} -.l-btn.m-badge::after, -.l-btn .m-badge{ - position: absolute; - top: -10px; - right: -10px; -} -.tabs-inner .m-badge{ - position: absolute; - top: 1px; - right: -10px; -} -.tabs-inner>.tabs-title>.m-badge{ - top: 0; - right: 0; -} -.tabs-header-bottom .tabs-inner>.tabs-title>.m-badge{ - top: auto; - bottom: 0; - right: 0; -} -.panel-footer .l-btn .l-btn-icon-top .m-badge, -.panel-footer .l-btn .l-btn-icon-bottom .m-badge{ - top: 0; - right: -10px; -} -.l-btn.m-badge::after{ - content: attr(data-badge); -} -.l-btn,.l-btn-left{ - overflow: visible; - position: relative; -} - -.m-in{ - -webkit-animation-timing-function: ease-out; - -webkit-animation-duration: 250ms; -} -.m-out{ - -webkit-animation-timing-function: ease-in; - -webkit-animation-duration: 250ms; -} -.m-slide-left.m-in{ - -webkit-animation-name: slideLeftIn; -} -.m-slide-left.m-out{ - -webkit-animation-name: slideLeftOut; -} -.m-slide-right.m-in{ - -webkit-animation-name: slideRightIn; -} -.m-slide-right.m-out{ - -webkit-animation-name: slideRightOut; -} -.m-slide-up.m-in{ - -webkit-animation-name: slideUpIn; -} -.m-slide-up.m-out{ - -webkit-animation-name: slideUpOut; -} -.m-slide-down.m-in{ - -webkit-animation-name: slideDownIn; -} -.m-slide-down.m-out{ - -webkit-animation-name: slideDownOut; -} - -@-webkit-keyframes slideLeftIn{ - from {-webkit-transform: translateX(100%);} - to {-webkit-transform: translateX(0);} -} -@-webkit-keyframes slideLeftOut{ - from {-webkit-transform: translateX(0);} - to {-webkit-transform: translateX(-100%);} -} -@-webkit-keyframes slideRightIn{ - from {-webkit-transform: translateX(-100%);} - to {-webkit-transform: translateX(0);} -} -@-webkit-keyframes slideRightOut{ - from {-webkit-transform: translateX(0);} - to {-webkit-transform: translateX(100%);} -} -@-webkit-keyframes slideUpIn{ - from {-webkit-transform: translateY(100%);} - to {-webkit-transform: translateY(0);} -} -@-webkit-keyframes slideUpOut{ - from {-webkit-transform: translateY(0);} - to {-webkit-transform: translateY(-100%);} -} -@-webkit-keyframes slideDownIn{ - from {-webkit-transform: translateY(-100%);} - to {-webkit-transform: translateY(0);} -} -@-webkit-keyframes slideDownOut{ - from {-webkit-transform: translateY(0);} - to {-webkit-transform: translateY(100%);} -} - -.m-fade.m-in{ - -webkit-animation-name: fadeIn; -} -.m-fade.m-out{ - -webkit-animation-name: fadeOut; -} - -@-webkit-keyframes fadeIn{ - from {opacity: 0;} - to {opacity: 1} -} -@-webkit-keyframes fadeOut{ - from {opacity: 1;} - to {opacity: 0;} -} - -.m-pop.m-in{ - -webkit-animation-name: popIn; -} -.m-pop.m-out{ - -webkit-animation-name: popOut; -} -@-webkit-keyframes popIn{ - from { - opacity: 0; - -webkit-transform: scale(.2); - } - to { - opacity: 1; - -webkit-transform: scale(1); - } -} -@-webkit-keyframes popOut{ - from { - opacity: 1; - -webkit-transform: scale(1); - } - to { - opacity: 0; - -webkit-transform: scale(0); - } -} - -.navpanel{ - position: absolute; -} - -.calendar-header,.calendar-title{ - height: 30px; -} -.calendar-title span{ - height: 26px; - line-height: 26px -} -.datebox-button{ - height: 24px; -} -.datebox-button a{ - line-height: 24px; - display1: inline-block; -} -.tree-node{ - height:28px; - padding:5px 0; - box-sizing: border-box; -} - -.panel-title{ - height: 26px; - line-height: 26px; -} -.window{ - padding: 5px 0 0 0; -} -.window-shadow{ - -moz-box-shadow: 0 0 30px 0 #D3D3D3; - -webkit-box-shadow: 0 0 30px 0 #D3D3D3; - box-shadow: 0 0 30px 0 #D3D3D3; -} -.window-header .panel-title{ - height: 26px; - line-height: 26px; - text-align: center; -} -.window-header .panel-tool{ - display: none; -} -.window .window-body{ - border: 0; -} -.dialog-button{ - border-color: transparent; - overflow: hidden; -} -.dialog-button .l-btn{ - margin: 0; -} - -.tabs-justified, -.tabs-justified .l-btn, -.tabs-justified li a.tabs-inner, -.tabs-justified li.tabs-selected a.tabs-inner, -.tabs-header-bottom .tabs-justified li.tabs-selected a.tabs-inner, -.tabs-header-bottom .tabs-justified li a.tabs-inner{ - -moz-border-radius:0; - -webkit-border-radius:0; - border-radius:0; -} - -.datagrid-row,.datagrid-header-row{ - height: 35px; -} -.datalist .datagrid-group-title, -.m-list .m-list-group{ - padding: 0 10px; -} -.datalist .datagrid-cell, -.m-list li{ - padding: 10px; -} -.m-list li .m-right{ - right: 10px; -} -.datalist .datalist-link, -.m-list li>a{ - margin: -10px; - padding: 10px; - padding-right: 24px; -} -.m-list li>a .m-right{ - right: 24px; -} -.datalist .datalist-link::after, -.m-list li>a::after{ - right: 12px; -} - -.spinner-arrow-up,.spinner-arrow-down{ - position: relative; - display: inline-block; - width: 50%; - height: 100%; - background: none; - float: right; -} -.spinner-arrow-down{ - float: left; -} -.spinner-arrow-up::after, -.spinner-arrow-down::after{ - position: absolute; - display: inline-block; - box-sizing: border-box; - vertical-align: top; - border-style: solid; - border-width: 2px 2px 0 0; - -webkit-transform:rotate(-45deg); - transform:rotate(-45deg); - width: 10px; - height: 10px; - left: 50%; - top: 50%; - margin-left: -5px; - margin-top: -3px; - content: ''; -} -.spinner-arrow-down::after{ - border-width: 0 0 2px 2px; - margin-top: -8px; -} \ No newline at end of file diff --git a/vendor/FHC-vendor/easyui/themes/vilesci b/vendor/FHC-vendor/easyui/themes/vilesci deleted file mode 100644 index e69de29bb..000000000 diff --git a/vendor/FHC-vendor/jquery-tablesorter/.gitattributes b/vendor/FHC-vendor/jquery-tablesorter/.gitattributes deleted file mode 100644 index 14d674691..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/.gitattributes +++ /dev/null @@ -1,23 +0,0 @@ -# Auto detect text files and perform LF normalization -* text=auto - -# Custom for Visual Studio -*.cs diff=csharp -*.sln merge=union -*.csproj merge=union -*.vbproj merge=union -*.fsproj merge=union -*.dbproj merge=union - -# Standard to msysgit -*.doc diff=astextplain -*.DOC diff=astextplain -*.docx diff=astextplain -*.DOCX diff=astextplain -*.dot diff=astextplain -*.DOT diff=astextplain -*.pdf diff=astextplain -*.PDF diff=astextplain -*.rtf diff=astextplain -*.RTF diff=astextplain -*.md diss=astextplain \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/.gitignore b/vendor/FHC-vendor/jquery-tablesorter/.gitignore deleted file mode 100644 index 4fa9ca09d..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/.gitignore +++ /dev/null @@ -1,165 +0,0 @@ -################# -## Eclipse -################# - -*.pydevproject -.project -.metadata -bin/ -tmp/ -*_test*.* -*.tmp -*.bak -*.swp -*~.nib -local.properties -.classpath -.settings/ -.loadpath - -# External tool builders -.externalToolBuilders/ - -# Locally stored "Eclipse launch configurations" -*.launch - -# CDT-specific -.cproject - -# PDT-specific -.buildpath - - -################# -## Visual Studio -################# - -## Ignore Visual Studio temporary files, build results, and -## files generated by popular Visual Studio add-ons. - -# User-specific files -*.suo -*.user -*.sln.docstates - -# Build results -[Dd]ebug/ -[Rr]elease/ -node_modules/ -*_i.c -*_p.c -*.ilk -*.log -*.meta -*.obj -*.pch -*.pdb -*.pgc -*.pgd -*.rsp -*.sbr -*.tlb -*.tli -*.tlh -*.tmp -*.vspscc -.builds -*.dotCover - -## TODO: If you have NuGet Package Restore enabled, uncomment this -#packages/ - -# Visual C++ cache files -ipch/ -*.aps -*.ncb -*.opensdf -*.sdf - -# Visual Studio profiler -*.psess -*.vsp - -# ReSharper is a .NET coding add-in -_ReSharper* - -# Installshield output folder -[Ee]xpress - -# DocProject is a documentation generator add-in -DocProject/buildhelp/ -DocProject/Help/*.HxT -DocProject/Help/*.HxC -DocProject/Help/*.hhc -DocProject/Help/*.hhk -DocProject/Help/*.hhp -DocProject/Help/Html2 -DocProject/Help/html - -# Click-Once directory -publish - -# Others -[Bb]in -[Oo]bj -sql -TestResults -*.Cache -ClientBin -stylecop.* -~$* -*.dbmdl -Generated_Code #added for RIA/Silverlight projects - -# Backup & report files from converting an old project file to a newer -# Visual Studio version. Backup files are not needed, because we have git ;-) -_UpgradeReport_Files/ -Backup*/ -UpgradeLog*.XML - - - -############ -## Windows -############ - -# Windows image file caches -Thumbs.db - -# Folder config file -Desktop.ini - - -############# -## Python -############# - -*.py[co] - -# Packages -*.egg -*.egg-info -build -eggs -parts -bin -var -sdist -develop-eggs -.installed.cfg - -# Installer logs -pip-log.txt - -# Unit test / coverage reports -.coverage -.tox - -#Translations -*.mo - -#Mr Developer -.mr.developer.cfg - -# Mac crap -.DS_Store diff --git a/vendor/FHC-vendor/jquery-tablesorter/.jscsrc b/vendor/FHC-vendor/jquery-tablesorter/.jscsrc deleted file mode 100644 index d0bf1c210..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/.jscsrc +++ /dev/null @@ -1,65 +0,0 @@ -{ - "disallowDanglingUnderscores": true, - "disallowEmptyBlocks": true, - "disallowKeywords": [ - "with" - ], - "disallowMixedSpacesAndTabs": "smart", - "disallowMultipleLineBreaks": true, - "disallowMultipleLineStrings": true, - "disallowNewlineBeforeBlockStatements": true, - "disallowOperatorBeforeLineBreak": [ - "." - ], - "disallowSpaceAfterPrefixUnaryOperators": true, - "disallowSpaceBeforeBinaryOperators": [ - "," - ], - "disallowSpaceBeforePostfixUnaryOperators": true, - "disallowSpacesInCallExpression": true, - - "disallowTrailingComma": true, - "maximumLineLength": { - "allowRegex": true, - "allowUrlComments": true, - "tabSize": 2, - "value": 180 - }, - "requireBlocksOnNewline": 1, - "requireCommaBeforeLineBreak": true, - "requireCurlyBraces": [ - "do" - ], - "requireDollarBeforejQueryAssignment": true, - "requireDotNotation": true, - "requireLineFeedAtFileEnd": true, - "requireParenthesesAroundIIFE": true, - "requireSemicolons": true, - "requireSpaceAfterBinaryOperators": true, - "requireSpaceAfterKeywords": [ - "if", - "else", - "for", - "while", - "do", - "switch", - "case", - "return", - "try", - "catch", - "typeof" - ], - "requireSpaceAfterLineComment": true, - "requireSpaceBeforeBinaryOperators": true, - "requireSpacesInConditionalExpression": true, - "requireSpacesInForStatement": true, - "requireSpacesInsideArrayBrackets": "all", - "validateIndentation": { - "includeEmptyLines": false, - "value": "\t" - }, - "validateQuoteMarks": { - "escape": true, - "mark": "'" - } -} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/CONTRIBUTING.md b/vendor/FHC-vendor/jquery-tablesorter/CONTRIBUTING.md deleted file mode 100644 index e707a1bee..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/CONTRIBUTING.md +++ /dev/null @@ -1,45 +0,0 @@ -# Contributing to tablesorter (FORK) - -1. [Getting Involved](#getting-involved) -2. [How To Report issues](#how-to-report-issues) -3. [Contributing Code](#contributing-code) - -## Getting Involved - -There are a number of ways to get involved with the development of this fork of Tablesorter. Even if you've never contributed to an Open Source project before, we're always looking for help identifying issues. - -## How to Report issues, or make requests. - -* First off make sure it's a new issue. Search the [FAQ](https://github.com/Mottie/tablesorter/wiki/FAQ), [documents](http://mottie.github.io/tablesorter/docs/) and the [issues](https://github.com/Mottie/tablesorter/issues). -* If it's an existing issue or feature request, and you want to show that it is also a concern for you. Add a comment! -* If it turns out to not be an issue, but a question instead: - * Please don't open a new issue. - * Jump on out freenode.net IRC channel: `#tablesorter`. - * Ask the question on [Stackoverflow](https://stackoverflow.com/questions/tagged/tablesorter) (tablesorter or jQuery tag). -* If you do open a new issue: - * If the issue only occurs in a particular browser or version of jQuery, that would be awesome to know! - * Please include any *relevant* code (posting the entire page usually isn't that helpful). - * Add if there are any errors showing in the console (press F12 in the browser and go to the console tab). - * Include screenshots, animated gifs, videos (check out [screenr](https://www.screenr.com/)) or funny cat pictures. You never know what might help! - -## Contributing Code - -* Installation: - * Please see the [Customize](https://github.com/Mottie/tablesorter/wiki/Customize) wiki page for specifics on how to install the necessary modules & create a custom build. - * If you aren't comfortable using grunt or making a build file, you can go ahead and just share the changes. -* Style Guide: - * We're not too strict, just try to follow the style that is already being used in the code; here is a [.jscsrc file](https://gist.github.com/Herst/39263a478046a48f1860) by [@Herst](https://github.com/Herst) you can use! - * When naming variables: - * Use names that describe it's contents. I'm guilty of naming things `t` and `i`, but I'm slowly trying to rename them to make reading code and finding the variable in the code easier. - * Name jQuery objects with a leading `$`, e.g. `var $table = $('table');` - * We like semicolons! Jshint will yell at you if you don't use them. - * We like single quotes! It's OCD man! - * We like tabs! - * We like pizza! -* Pull request: - * Before opening a pull request, please make sure that your code is on a *fork* of the master. This is really for your own convenience: it's easy for us to accept your pull request from your master branch, but it's problematic for your fork when you want to pull the changes back and your master branch has diverged from upstream's master branch. - * Add unit tests - tablesorter is still missing a lot of unit tests, so adding tests for your contribution would be a tremendous help! - * Also, make sure to test your changes! - * Use `grunt test` ([ref](https://github.com/Mottie/tablesorter/wiki/Customize#testing-a-build)) - * If you aren't comfortable with using grunt, copy, then paste your code into [jsHint](http://jshint.com/) to help find any problems with the changes. - * There is no need to open an issue, then create a pull request. Just create the pull request and add any comments about your changes there. diff --git a/vendor/FHC-vendor/jquery-tablesorter/Gruntfile.js b/vendor/FHC-vendor/jquery-tablesorter/Gruntfile.js deleted file mode 100644 index 5c259b3b7..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/Gruntfile.js +++ /dev/null @@ -1,428 +0,0 @@ -/*global module:false*/ -module.exports = function( grunt ) { - 'use strict'; - - var pkg = grunt.file.readJSON( 'package.json' ), - tasks, - widgetFilePrefix, - widgetFileSuffix, - - defaults = { - dependencies : { - widgets: { - 'saveSort resizable pager filter columnSelector' : 'storage', - 'filter-formatter-html5 filter-formatter-jui filter-formatter-select2' : 'filter' - // 'stickyHeaders' : 'addResizeEvent' // included with stickyHeaders widget (for now) - } - }, - standardWidgets: [ - 'storage', // req by saveSort; optional in others - 'uitheme', - 'columns', - 'filter', - 'stickyHeaders', - 'resizable', - 'saveSort' - // 'addResizeEvent', // included with stickyHeaders widget - // 'zebra' // included in core - ], - standardWidgetFileName: 'jquery.tablesorter.widgets.js', - wrappers : { - widgetPrefix: 'js/widgets/widget-', - widgetSuffix: '.js', - parserPrefix: 'js/parsers/parser-', - parserSuffix: '.js' - }, - wrapperUMD: { - // tablesorter core - coreBanner: '(function(factory) {\n' + - " if (typeof define === 'function' && define.amd) {\n" + - " define(['jquery'], factory);\n" + - " } else if (typeof module === 'object' && typeof module.exports === 'object') {\n" + - " module.exports = factory(require('jquery'));\n" + - ' } else {\n' + - ' factory(jQuery);\n' + - ' }\n' + - '}(function($) {\n\n', - // widgets wrapper & combined wrapper - may need a separate entry when this wrapper is redefined to make - // widgets a dependency of the core (see https://github.com/Mottie/tablesorter/issues/855) - banner: '<%= pkg.banner %>/* Includes widgets ( <%= pkg.selectedWidgets %> <%= pkg.selectedParsers %>) */\n' + - '(function(factory) {\n' + - " if (typeof define === 'function' && define.amd) {\n" + - " define(['jquery'], factory);\n" + - " } else if (typeof module === 'object' && typeof module.exports === 'object') {\n" + - " module.exports = factory(require('jquery'));\n" + - ' } else {\n' + - ' factory(jQuery);\n' + - ' }\n' + - '}(function($) {\n\n', - footer: '\nreturn $.tablesorter;\n}));\n' - }, - noModBanner: '/*** This file is dynamically generated ***\n' + - '█████▄ ▄████▄ █████▄ ▄████▄ ██████ ███████▄ ▄████▄ █████▄ ██ ██████ ██ ██\n' + - '██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▄▄ ██▄▄██\n' + - '██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀██\n' + - '█████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀\n*/\n' - }, - - // example widgets = [ 'pager', 'column', 'filter', 'stickyHeaders' ]; - addWidgetDependencies = function( widgets ) { - var indx, dep, - maxDeps = 40, // just in case (there are currently 27 widgets) - len = widgets.length, - deps = defaults.dependencies.widgets; - for ( dep in deps ) { - if ( typeof dep === 'string' ) { - for ( indx = 0; indx < len; indx++ ) { - // make sure indexOf is not matching 'column' instead of 'columnSelector' with surrounding spaces - if ( ( ' ' + dep + ' ' ).indexOf( ' ' + widgets[indx] + ' ' ) >= 0 && widgets.indexOf( deps[ dep ] ) < 0 ) { - widgets.push( deps[ dep ] ); - // keep checking newly added widgets, in case 'filter' is added and 'storage' hasn't been - if ( len < maxDeps ) { len++; } - continue; - } - } - } - } - return widgets; - }, - formFileNames = function() { - var wrap = defaults.wrappers; - // add widget path & file extension - pkg.processedWidgets = ( wrap.widgetPrefix + - pkg.selectedWidgets.join( wrap.widgetSuffix + ',' + wrap.widgetPrefix ) + - wrap.widgetSuffix ).split( ',' ); - console.info( 'Creating a widgets file with: ' + pkg.selectedWidgets.join(', ') ); - - if ( pkg.selectedParsers ) { - // parser path & file extension - pkg.processedParsers = ( wrap.parserPrefix + - pkg.selectedParsers.join( wrap.parserSuffix + ',' + wrap.parserPrefix ) + - wrap.parserSuffix ).split( ',' ); - console.info( 'Creating a combined file with selected widgets & these parsers: ' + pkg.selectedParsers.join(', ') ); - // make this look nice for the banner - pkg.selectedParsers = ') & parsers ( ' + pkg.selectedParsers + ' '; - } - console.info( pkg.processedParsers ); - }; - - // minified banner template - updated ##/##/20## (v2.##.##) - pkg.banner = '/*! <%= pkg.name %> (FORK) - updated ' + - '<%= grunt.template.today("mm-dd-yyyy") %> (v<%= pkg.version %>)*/\n'; - - pkg.buildWidget = defaults.standardWidgetFileName; - pkg.buildCombined = 'jquery.tablesorter.combined.js'; - pkg.processedParsers = '!js/parsers/*.js'; - - // Project configuration. - grunt.initConfig({ - pkg: pkg, - - clean: { - build: { - src: [ 'dist/**/**/**/*', 'dist/**/**/*', 'dist/**/*', 'dist' ] - }, - css: { - src: [ 'dist/css/*.css', '!dist/css/*.min.css' ] - } - }, - - copy: { - css: { - files : [{ - expand: true, - dot: true, - flatten: true, - src: [ 'css/*.css', 'addons/pager/*.css' ], - dest: 'dist/css/', - rename: function( dest, src ) { - if ( /black-ice/.test( src ) ) { - src = src.replace( /-/, '' ); - } - return dest + src; - } - }] - }, - less: { - expand: true, - flatten: true, - src: 'css/*.less', - dest: 'dist/css/less/' - }, - images: { - expand: true, - flatten: true, - src: [ 'addons/pager/icons/*', 'css/images/*' ], - dest: 'dist/css/images/' - } - }, - - concat: { - main: { - options: { - banner: defaults.wrapperUMD.coreBanner, - footer: defaults.wrapperUMD.footer - }, - src: [ 'js/jquery.tablesorter.js' ], - dest: 'dist/js/jquery.tablesorter.js' - }, - widgets: { - options: { - banner: defaults.wrapperUMD.banner, - footer: defaults.wrapperUMD.footer - }, - src: [ - '<%= pkg.processedWidgets %>', - '!js/widgets/_test-*.js', - '!js/widgets/*.min.js' - ], - dest: 'dist/js/<%= pkg.buildWidget %>' - }, - everything: { - options: { - banner: defaults.wrapperUMD.banner, - footer: defaults.wrapperUMD.footer - }, - src: [ - 'js/jquery.tablesorter.js', - '<%= pkg.processedWidgets %>', - '<%= pkg.processedParsers %>', - '!js/widgets/_test-*.js', - '!js/widgets/*.min.js' - ], - dest: 'dist/js/<%= pkg.buildCombined %>' - }, - // keep all the existing jsFiddle demos from breaking - copybackWidgets: { - options: { - banner: defaults.noModBanner - }, - src : ['dist/js/<%= pkg.buildWidget %>'], - dest: 'js/<%= pkg.buildWidget %>' - }, - copybackCombined: { - options: { - banner: defaults.noModBanner - }, - src : ['dist/js/<%= pkg.buildCombined %>'], - dest: 'js/<%= pkg.buildCombined %>' - } - }, - - jscs: { - src: [ - 'addons/pager/*.js', - '!addons/pager/*.min.js', - 'js/jquery.*.js', - 'js/**/*.js', - '!js/_test-*.js', - '!js/jquery.tablesorter.combined.js', - '!js/jquery.tablesorter.widgets.js', - '!js/extras/jquery.dragtable.mod.js', // indents with spaces; keeping original formatting to make diffs easier - '!js/extras/jquery.metadata.js', // phasing this one out anyway - '!js/**/_test-*.js', - '!js/*.min.js', - '!js/**/semver*.js' - ], - options: { - config: '.jscsrc' - } - }, - - jshint: { - files: { - src: [ - 'addons/pager/*.js', - '!addons/pager/*.min.js', - 'js/jquery.*.js', - 'js/**/*.js', - '!js/_test-*.js', - '!js/**/_test-*.js', - '!js/*.min.js', - '!js/**/semver*.js' - ] - }, - options: { - globals: { - 'JSON': false, - 'localStorage': false, - 'navigator': false, - 'console': false, - 'require': false, - 'define': false, - 'module': false - }, - 'loopfunc': true, - 'jquery': true, - 'browser': true, - 'es3': true, - 'unused': true, - 'undef': true - } - }, - - uglify: { - options: { - preserveComments: function( node, comment ){ - return /^!/.test( comment.value ); - }, - report: 'gzip' - }, - allFiles: { - files: [{ - expand: true, - cwd: './js/', // Src matches are relative to this path. - src: [ - '**/*.js', - '!jquery.tablesorter.js', - '!_test-*.js', - '!**/_test-*.js', - '!*.min.js', - '!**/semver.js' - ], - dest: 'dist/js/', - ext: '.min.js', // Dist files will have this extension. - extDot: 'last' // Extensions in filenames begin after this dot - }] - }, - // jquery.tablesorter.min.js is being minified from js/jquery.tablesorter.js - // so it doesn't include the UMD wrapper! Point to the dist/js/ version - main: { - files : [{ - expand: true, - cwd: './dist/js/', - src: [ 'jquery.tablesorter.js' ], - dest: 'dist/js/', - ext: '.min.js', // Dist files will have this extension. - extDot: 'last' // Extensions in filenames begin after this dot - }] - }, - pageraddon: { - files: { - 'dist/js/extras/jquery.tablesorter.pager.min.js': [ 'addons/pager/*.js' ] - } - } - }, - - cssmin: { - target: { - files: [{ - expand: true, - flatten: true, - cwd: 'dist/css', - src: ['*.css', '!_test-*.css'], - dest: 'dist/css', - ext: '.min.css', - extDot: 'last' - }] - } - }, - - qunit: { - files: [ 'test.html' ] - }, - - watch: { - scripts: { - files: [ - 'js/*.js', - 'js/**/*.js', - '!js/_test-*.js', - '!js/*.min.js' - ], - tasks: [ 'build' ] - } - } - - }); - - grunt.loadNpmTasks( 'grunt-contrib-clean' ); - grunt.loadNpmTasks( 'grunt-contrib-jshint' ); - grunt.loadNpmTasks( 'grunt-contrib-qunit' ); - grunt.loadNpmTasks( 'grunt-contrib-concat' ); - grunt.loadNpmTasks( 'grunt-contrib-uglify' ); - grunt.loadNpmTasks( 'grunt-contrib-copy' ); - grunt.loadNpmTasks( 'grunt-contrib-watch' ); - grunt.loadNpmTasks( 'grunt-contrib-cssmin' ); - grunt.loadNpmTasks( 'grunt-jscs' ); - - grunt.registerTask( 'test', [ 'jscs', 'jshint', 'qunit' ] ); - - tasks = [ - 'clean:build', - 'copy', - 'concat', - 'uglify', - 'cssmin', - 'clean:css', - 'updateManifest' - ]; - - // basic = same as before: core, widgets, filterformatter all separate - grunt.registerTask( 'default', 'Default build', function() { - pkg.selectedWidgets = addWidgetDependencies( defaults.standardWidgets ); - formFileNames(); - grunt.task.run(tasks); - }); - - // quick build to just minify files for pushes between updates - grunt.registerTask( 'quick', [ 'copy', 'uglify', 'clean:css' ] ); - - // enter 'grunt custom:{filename}' (not including the '.json') - // to load in a custom json file - // the expected JSON format is (with custom widgets in a string): - // { "widgets" : "columnHighlight filter resizable saveSort stickyHeaders uitheme" } - grunt.registerTask( 'custom', 'Custom build', function(file) { - var temp, widgets, - parsers = '', - deps = true; - - /* Allow developer to set up a custom widget build (json file will have settings)*/ - try { - temp = grunt.file.readJSON( file ); - if ( temp ) { - parsers = temp.parsers; - // include dependencies? - deps = ('includeDependencies' in temp) ? temp.includeDependencies : true; - // custom file name? - pkg.buildWidget = ('destFileName' in temp) ? temp.destFileName : 'jquery.tablesorter.custom-widgets.js'; - // widgets to include - widgets = (temp.widgets || ''); - if (widgets.replace(/\s+/g,'') === '') { - grunt.log.error('No widgets found in custom build file.'); - console.info('Continuing build with default widgets...'); - temp = defaults.standardWidgets; - pkg.buildWidget = defaults.standardWidgetFileName; - } else { - temp = widgets.split(/\s+/); - } - } - } catch (err) { - grunt.log.error('Custom build json not found - Use "grunt custom:{filename}"'); - console.info('Continuing build with default settings'); - temp = defaults.standardWidgets; - } - // add dependencies - pkg.selectedWidgets = deps ? addWidgetDependencies( temp ) : temp; - pkg.selectedParsers = parsers.split( /\s+/ ); - formFileNames(); - grunt.task.run(tasks); - }); - - // update tablesorter.jquery.json file version numbers to match the package.json version - grunt.registerTask( 'updateManifest', function() { - var i, project, - projectFile = [ 'tablesorter.jquery.json' ], - len = projectFile.length; - for ( i = 0; i < len; i++ ) { - if ( !grunt.file.exists( projectFile[ i ] ) ) { - grunt.log.error( 'file ' + projectFile[ i ] + ' not found' ); - return true; // return false to abort the execution - } - project = grunt.file.readJSON( projectFile[ i ] ); // get file as json object - project.version = pkg.version; - grunt.file.write( projectFile[i], JSON.stringify( project, null, 2 ) ); // serialize it back to file - } - }); - -}; diff --git a/vendor/FHC-vendor/jquery-tablesorter/README.md b/vendor/FHC-vendor/jquery-tablesorter/README.md deleted file mode 100644 index dd5fe0699..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/README.md +++ /dev/null @@ -1,159 +0,0 @@ -tablesorter (FORK) is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. tablesorter can successfully parse and sort many types of data including linked data in a cell. This forked version adds lots of new enhancements including: alphanumeric sorting, pager callback functons, multiple widgets providing column styling, ui theme application, sticky headers, column filters and resizer, as well as extended documentation with a lot more demos. - -[![Bower Version][bower-image]][bower-url] [![NPM Version][npm-image]][npm-url] [![devDependency Status][david-dev-image]][david-dev-url] [![zenhub-image]][zenhub-url] - -### Notice! - -* Because of the change to the internal cache, the tablesorter v2.16+ core, filter widget and pager (both plugin & widget) will only work with the same version or newer files. - -### [Documentation](//mottie.github.io/tablesorter/docs/) - -* See the [full documentation](//mottie.github.io/tablesorter/docs/). -* All of the [original document pages](//tablesorter.com/docs/) have been included. -* Information from my blog post on [undocumented options](//wowmotty.blogspot.com/2011/06/jquery-tablesorter-missing-docs.html) and lots of new demos have also been included. -* Change log moved from included text file into the [wiki documentation](//github.com/Mottie/tablesorter/wiki/Changes). - -### Demos - -* [Basic alpha-numeric sort Demo](//mottie.github.com/tablesorter/). -* Links to demo pages can be found within the main [documentation](//mottie.github.io/tablesorter/docs/). -* More demos & playgrounds - updated in the [wiki pages](//github.com/Mottie/tablesorter/wiki). - -### Features - -* Multi-column alphanumeric sorting and filtering. -* Multi-tbody sorting - see the [options](//mottie.github.io/tablesorter/docs/index.html#options) table on the main document page. -* Supports [Bootstrap v2 and 3](//mottie.github.io/tablesorter/docs/example-widget-bootstrap-theme.html) -* Parsers for sorting text, alphanumeric text, URIs, integers, currency, floats, IP addresses, dates (ISO, long and short formats) & time. [Add your own easily](//mottie.github.io/tablesorter/docs/example-parsers.html). -* Inline editing - see [demo](//mottie.github.io/tablesorter/docs/example-widget-editable.html) -* Support for ROWSPAN and COLSPAN on TH elements. -* Support secondary "hidden" sorting (e.g., maintain alphabetical sort when sorting on other criteria). -* Extensibility via [widget system](//mottie.github.io/tablesorter/docs/example-widgets.html). -* Cross-browser: IE 6.0+, FF 2+, Safari 2.0+, Opera 9.0+, Chrome 5.0+. -* Small code size, starting at 25K minified -* Works with jQuery 1.2.6+ (jQuery 1.4.1+ needed with some widgets). -* Works with jQuery 1.9+ (`$.browser.msie` was removed; needed in the original version). - -### Licensing - -* Copyright (c) 2007 Christian Bach. -* Original examples and docs at: [http://tablesorter.com](//tablesorter.com). -* Dual licensed under the [MIT](//www.opensource.org/licenses/mit-license.php) and [GPL](//www.gnu.org/licenses/gpl.html) licenses. - -### Download - -* Get all files: [zip](//github.com/Mottie/tablesorter/archive/master.zip) or [tar.gz](//github.com/Mottie/tablesorter/archive/master.tar.gz) -* Use [bower](http://bower.io/): `bower install jquery.tablesorter` -* Use [node.js](http://nodejs.org/): `npm install tablesorter` -* CDNJS: [https://cdnjs.com/libraries/jquery.tablesorter](https://cdnjs.com/libraries/jquery.tablesorter) - -### Related Projects - -* [Plugin for Rails](//github.com/themilkman/jquery-tablesorter-rails). Maintained by [themilkman](//github.com/themilkman). -* [UserFrosting](//github.com/alexweissman/UserFrosting) (A secure, modern user management system for PHP that uses tablesorter) by [alexweissman](//github.com/alexweissman). - -### Contributing - -If you would like to contribute, please... - -1. Fork. -2. Make changes in a branch & add unit tests. -3. Run `grunt test` (if qunit fails, run it again - it's fickle). -4. Create a pull request. - -### Special Thanks - -* Big shout-out to [Nick Craver](//github.com/NickCraver) for getting rid of the `eval()` function that was previously needed for multi-column sorting. -* Big thanks to [thezoggy](//github.com/thezoggy) for helping with code, themes and providing valuable feedback. -* Big thanks to [ThsSin-](//github.com/TheSin-) for taking over for a while and also providing valuable feedback. -* Thanks to [prijutme4ty](https://github.com/prijutme4ty) for numerous contributions! -* Also extra thanks to [christhomas](//github.com/christhomas) and [Lynesth](//github.com/Lynesth) for help with code. -* And, of course thanks to everyone else that has contributed, and continues to contribute to this forked project! - -### Questions? - -* Check the [FAQ](//github.com/Mottie/tablesorter/wiki/FAQ) page. -* Search the [main documentation](//mottie.github.io/tablesorter/docs/) (click the menu button in the upper left corner). -* Search the [issues](//github.com/Mottie/tablesorter/issues) to see if the question or problem has been brought up before, and hopefully resolved. -* If someone is available, ask your question in the `#tablesorter` IRC channel at freenode.net. -* Ask your question at [Stackoverflow](//stackoverflow.com/questions/tagged/tablesorter) using a tablesorter tag. -* Please don't open a [new issue](//github.com/Mottie/tablesorter/issues) unless it really is an issue with the plugin, or a feature request. Thanks! - -[npm-url]: https://npmjs.org/package/tablesorter -[npm-image]: https://img.shields.io/npm/v/tablesorter.svg -[david-dev-url]: https://david-dm.org/Mottie/tablesorter#info=devDependencies -[david-dev-image]: https://img.shields.io/david/dev/Mottie/tablesorter.svg -[bower-url]: http://bower.io/search/?q=jquery.tablesorter -[bower-image]: https://img.shields.io/bower/v/jquery.tablesorter.svg -[zenhub-url]: https://zenhub.io -[zenhub-image]: https://raw.githubusercontent.com/ZenHubIO/support/master/zenhub-badge.png - -### Recent Changes - -View the [complete change log here](//github.com/Mottie/tablesorter/wiki/Changes). - -#### Version 2.24.6 (11/22/2015) - -* Core - * Prevent "tablesorter-ready" event from firing multiple times in a row. - * While detecting parsers, use `cssIgnoreRow` & stop after 50 rows. -* Docs - * Update utility options section. -* Math - * Add `math_rowFilter` option. See [issue #1083](https://github.com/Mottie/tablesorter/issues/1083). - * Spelling corrections to `math_rowFilter` option. - * Ensure internal updating flag gets cleared. Fixes [issue #1083](https://github.com/Mottie/tablesorter/issues/1083). -* Pager - * Initial page no longer ignored (no filter widget). Fixes [issue #1085](https://github.com/Mottie/tablesorter/issues/1085). - * Fix other page set issues (no filter widget). Fixes [issue #1085](https://github.com/Mottie/tablesorter/issues/1085). - * Fix page set issues (with filter widget). Fixes [issue #1085](https://github.com/Mottie/tablesorter/issues/1085). - * Clean up pager widget code. -* Print - * Add `print_now` option. See [issue #1081](https://github.com/Mottie/tablesorter/issues/1081). - * Fix print & close button actions. -* SortTbodies - * Use config parameter for numeric sorting. See [issue #1082](https://github.com/Mottie/tablesorter/issues/1082). -* Parsers: - * Update `parser-input-select.js`. See [issue #971](https://github.com/Mottie/tablesorter/issues/971). - * `parser-date-month.js` no longer removes other language data. - * Add alternate date range parser & update filter insideRange filter type. - * Don't use `$.extend` for simple additions. -* Misc - * Update grunt dependencies. - -#### Version 2.24.5 (11/10/2015) - -* Pager: Fix javascript error in pager addon when using ajax. - -#### Version 2.24.4 (11/10/2015) - -* Core - * `sortRestart` works again with multi-row headers. Fixes [issue #1074](https://github.com/Mottie/tablesorter/issues/1074). - * Add `sortDisabled` language setting; used in aria-labels. -* Docs - * Update `group_formatter` docs. See [issue #1077](https://github.com/Mottie/tablesorter/issues/1077). - * Add clarification & missing possible values. See [issue #1070](https://github.com/Mottie/tablesorter/issues/1070). - * Fixed mixed content issue, broken links (beta-testing demos) & other stuff. - * Add [filter + jQuery UI Selectmenu demo](http://mottie.github.io/tablesorter/docs/example-widget-filter-selectmenu.html). See [issue #1060](https://github.com/Mottie/tablesorter/issues/1060) - * Misc updates. -* Filter - * Convert filters to strings using conventional methods. - * Prevent "OR" filter type from splitting up regex string. See [issue #1070]https://github.com/Mottie/tablesorter/issues/1070). - * `filter_selectSource` option now accepts an array of objects ([demo](http://mottie.github.io/tablesorter/docs/example-widget-filter-selectmenu.html)). -* Group - * Include group & row data parameters in `group_formatter`. Fixes [issue #1077](https://github.com/Mottie/tablesorter/issues/1077). -* HeaderTitles - * Update aria-label usage. -* Math - * Avoid nested table math cells. See [Stackoverflow](http://stackoverflow.com/q/33631298/145346). -* Pager - * Clear `tbody` prior to calling `ajaxProcessing`. This again allows the developer to add the HTML to the table instead of needing to return it. -* Sort2Hash - * Make widget functions accessible. - * Add 2 utility functions to simplify hash processing. -* Toggle - * Add new widget to enable/disable sort & filter. See [issue #1075](https://github.com/Mottie/tablesorter/issues/1075). -* Parser - * Add "file-extension" parser. -* Misc - * Grunt: Fix uglify comment removal & update dist folder. diff --git a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/first.png b/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/first.png deleted file mode 100644 index 6f11fcb08..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/first.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/last.png b/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/last.png deleted file mode 100644 index 720793576..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/last.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/loading.gif b/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/loading.gif deleted file mode 100644 index 72054717b..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/loading.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/next.png b/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/next.png deleted file mode 100644 index 4a2f9d4e4..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/next.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/prev.png b/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/prev.png deleted file mode 100644 index 15d1584bd..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/icons/prev.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/jquery.tablesorter.pager.css b/vendor/FHC-vendor/jquery-tablesorter/addons/pager/jquery.tablesorter.pager.css deleted file mode 100644 index e77cd88ed..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/jquery.tablesorter.pager.css +++ /dev/null @@ -1,42 +0,0 @@ -/* pager wrapper, div */ -.tablesorter-pager { - padding: 5px; -} -/* pager wrapper, in thead/tfoot */ -td.tablesorter-pager { - background-color: #e6eeee; - margin: 0; /* needed for bootstrap .pager gets a 18px bottom margin */ -} -/* pager navigation arrows */ -.tablesorter-pager img { - vertical-align: middle; - margin-right: 2px; - cursor: pointer; -} - -/* pager output text */ -.tablesorter-pager .pagedisplay { - padding: 0 5px 0 5px; - width: auto; - white-space: nowrap; - text-align: center; -} - -/* pager element reset (needed for bootstrap) */ -.tablesorter-pager select { - margin: 0; - padding: 0; -} - -/*** css used when "updateArrows" option is true ***/ -/* the pager itself gets a disabled class when the number of rows is less than the size */ -.tablesorter-pager.disabled { - display: none; -} -/* hide or fade out pager arrows when the first or last row is visible */ -.tablesorter-pager .disabled { - /* visibility: hidden */ - opacity: 0.5; - filter: alpha(opacity=50); - cursor: default; -} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/jquery.tablesorter.pager.js b/vendor/FHC-vendor/jquery-tablesorter/addons/pager/jquery.tablesorter.pager.js deleted file mode 100644 index 020df44bd..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/addons/pager/jquery.tablesorter.pager.js +++ /dev/null @@ -1,1178 +0,0 @@ -/*! - * tablesorter (FORK) pager plugin - * updated 11/22/2015 (v2.24.6) - */ -/*jshint browser:true, jquery:true, unused:false */ -;(function($) { - 'use strict'; - /*jshint supernew:true */ - var ts = $.tablesorter; - - $.extend({ tablesorterPager: new function() { - - this.defaults = { - // target the pager markup - container: null, - - // use this format: "http://mydatabase.com?page={page}&size={size}&{sortList:col}&{filterList:fcol}" - // where {page} is replaced by the page number, {size} is replaced by the number of records to show, - // {sortList:col} adds the sortList to the url into a "col" array, and {filterList:fcol} adds - // the filterList to the url into an "fcol" array. - // So a sortList = [[2,0],[3,0]] becomes "&col[2]=0&col[3]=0" in the url - // and a filterList = [[2,Blue],[3,13]] becomes "&fcol[2]=Blue&fcol[3]=13" in the url - ajaxUrl: null, - - // modify the url after all processing has been applied - customAjaxUrl: function(table, url) { return url; }, - - // ajax error callback from $.tablesorter.showError function - // ajaxError: function( config, xhr, settings, exception ){ return exception; }; - // returning false will abort the error message - ajaxError: null, - - // modify the $.ajax object to allow complete control over your ajax requests - ajaxObject: { - dataType: 'json' - }, - - // set this to false if you want to block ajax loading on init - processAjaxOnInit: true, - - // process ajax so that the following information is returned: - // [ total_rows (number), rows (array of arrays), headers (array; optional) ] - // example: - // [ - // 100, // total rows - // [ - // [ "row1cell1", "row1cell2", ... "row1cellN" ], - // [ "row2cell1", "row2cell2", ... "row2cellN" ], - // ... - // [ "rowNcell1", "rowNcell2", ... "rowNcellN" ] - // ], - // [ "header1", "header2", ... "headerN" ] // optional - // ] - ajaxProcessing: function(ajax){ return [ 0, [], null ]; }, - - // output default: '{page}/{totalPages}' - // possible variables: {size}, {page}, {totalPages}, {filteredPages}, {startRow}, - // {endRow}, {filteredRows} and {totalRows} - output: '{startRow} to {endRow} of {totalRows} rows', // '{page}/{totalPages}' - - // apply disabled classname to the pager arrows when the rows at either extreme is visible - updateArrows: true, - - // starting page of the pager (zero based index) - page: 0, - - // reset pager after filtering; set to desired page # - // set to false to not change page at filter start - pageReset: 0, - - // Number of visible rows - size: 10, - - // Number of options to include in the pager number selector - maxOptionSize: 20, - - // Save pager page & size if the storage script is loaded (requires $.tablesorter.storage in jquery.tablesorter.widgets.js) - savePages: true, - - // defines custom storage key - storageKey: 'tablesorter-pager', - - // if true, the table will remain the same height no matter how many records are displayed. The space is made up by an empty - // table row set to a height to compensate; default is false - fixedHeight: false, - - // count child rows towards the set page size? (set true if it is a visible table row within the pager) - // if true, child row(s) may not appear to be attached to its parent row, may be split across pages or - // may distort the table if rowspan or cellspans are included. - countChildRows: false, - - // remove rows from the table to speed up the sort of large tables. - // setting this to false, only hides the non-visible rows; needed if you plan to add/remove rows with the pager enabled. - removeRows: false, // removing rows in larger tables speeds up the sort - - // css class names of pager arrows - cssFirst: '.first', // go to first page arrow - cssPrev: '.prev', // previous page arrow - cssNext: '.next', // next page arrow - cssLast: '.last', // go to last page arrow - cssGoto: '.gotoPage', // go to page selector - select dropdown that sets the current page - cssPageDisplay: '.pagedisplay', // location of where the "output" is displayed - cssPageSize: '.pagesize', // page size selector - select dropdown that sets the "size" option - cssErrorRow: 'tablesorter-errorRow', // error information row - - // class added to arrows when at the extremes (i.e. prev/first arrows are "disabled" when on the first page) - cssDisabled: 'disabled', // Note there is no period "." in front of this class name - - // stuff not set by the user - totalRows: 0, - totalPages: 0, - filteredRows: 0, - filteredPages: 0, - ajaxCounter: 0, - currentFilters: [], - startRow: 0, - endRow: 0, - $size: null, - last: {} - - }; - - var pagerEvents = 'filterInit filterStart filterEnd sortEnd disablePager enablePager destroyPager updateComplete ' + - 'pageSize pageSet pageAndSize pagerUpdate refreshComplete ', - - $this = this, - - // hide arrows at extremes - pagerArrows = function( table, p, disable ) { - var a = 'addClass', - r = 'removeClass', - d = p.cssDisabled, - dis = !!disable, - first = ( dis || p.page === 0 ), - tp = getTotalPages( table, p ), - last = ( dis || (p.page === tp - 1) || tp === 0 ); - if ( p.updateArrows ) { - p.$container.find(p.cssFirst + ',' + p.cssPrev)[ first ? a : r ](d).attr('aria-disabled', first); - p.$container.find(p.cssNext + ',' + p.cssLast)[ last ? a : r ](d).attr('aria-disabled', last); - } - }, - - calcFilters = function(table, p) { - var normalized, indx, len, - c = table.config, - hasFilters = c.$table.hasClass('hasFilters'); - if (hasFilters && !p.ajaxUrl) { - if (ts.isEmptyObject(c.cache)) { - // delayInit: true so nothing is in the cache - p.filteredRows = p.totalRows = c.$tbodies.eq(0).children('tr').not( p.countChildRows ? '' : '.' + c.cssChildRow ).length; - } else { - p.filteredRows = 0; - normalized = c.cache[0].normalized; - len = normalized.length; - for (indx = 0; indx < len; indx++) { - p.filteredRows += p.regexRows.test(normalized[indx][c.columns].$row[0].className) ? 0 : 1; - } - } - } else if (!hasFilters) { - p.filteredRows = p.totalRows; - } - }, - - updatePageDisplay = function(table, p, completed) { - if ( p.initializing ) { return; } - var s, t, $out, indx, len, options, - c = table.config, - namespace = c.namespace + 'pager', - sz = parsePageSize( p, p.size, 'get' ); // don't allow dividing by zero - if (p.countChildRows) { t.push(c.cssChildRow); } - p.totalPages = Math.ceil( p.totalRows / sz ); // needed for "pageSize" method - c.totalRows = p.totalRows; - parsePageNumber( table, p ); - calcFilters(table, p); - c.filteredRows = p.filteredRows; - p.filteredPages = Math.ceil( p.filteredRows / sz ) || 0; - if ( getTotalPages( table, p ) >= 0 ) { - t = (p.size * p.page > p.filteredRows) && completed; - p.page = (t) ? p.pageReset || 0 : p.page; - p.startRow = (t) ? p.size * p.page + 1 : (p.filteredRows === 0 ? 0 : p.size * p.page + 1); - p.endRow = Math.min( p.filteredRows, p.totalRows, p.size * ( p.page + 1 ) ); - $out = p.$container.find(p.cssPageDisplay); - // form the output string (can now get a new output string from the server) - s = ( p.ajaxData && p.ajaxData.output ? p.ajaxData.output || p.output : p.output ) - // {page} = one-based index; {page+#} = zero based index +/- value - .replace(/\{page([\-+]\d+)?\}/gi, function(m, n){ - return p.totalPages ? p.page + (n ? parseInt(n, 10) : 1) : 0; - }) - // {totalPages}, {extra}, {extra:0} (array) or {extra : key} (object) - .replace(/\{\w+(\s*:\s*\w+)?\}/gi, function(m){ - var len, indx, - str = m.replace(/[{}\s]/g, ''), - extra = str.split(':'), - data = p.ajaxData, - // return zero for default page/row numbers - deflt = /(rows?|pages?)$/i.test(str) ? 0 : ''; - if (/(startRow|page)/.test(extra[0]) && extra[1] === 'input') { - len = ('' + (extra[0] === 'page' ? p.totalPages : p.totalRows)).length; - indx = extra[0] === 'page' ? p.page + 1 : p.startRow; - return ''; - } - return extra.length > 1 && data && data[extra[0]] ? data[extra[0]][extra[1]] : p[str] || (data ? data[str] : deflt) || deflt; - }); - if ( p.$goto.length ) { - t = ''; - options = buildPageSelect( table, p ); - len = options.length; - for (indx = 0; indx < len; indx++) { - t += ''; - } - // innerHTML doesn't work in IE9 - http://support2.microsoft.com/kb/276228 - p.$goto.html(t).val( p.page + 1 ); - } - if ($out.length) { - $out[ ($out[0].nodeName === 'INPUT') ? 'val' : 'html' ](s); - // rebind startRow/page inputs - $out.find('.ts-startRow, .ts-page').unbind('change' + namespace).bind('change' + namespace, function(){ - var v = $(this).val(), - pg = $(this).hasClass('ts-startRow') ? Math.floor( v / p.size ) + 1 : v; - c.$table.trigger('pageSet' + namespace, [ pg ]); - }); - } - } - pagerArrows( table, p ); - fixHeight(table, p); - if (p.initialized && completed !== false) { - if (c.debug) { - console.log('Pager: Triggering pagerComplete'); - } - c.$table.trigger('pagerComplete', p); - // save pager info to storage - if (p.savePages && ts.storage) { - ts.storage(table, p.storageKey, { - page : p.page, - size : p.size - }); - } - } - }, - - buildPageSelect = function( table, p ) { - // Filter the options page number link array if it's larger than 'maxOptionSize' - // as large page set links will slow the browser on large dom inserts - var i, central_focus_size, focus_option_pages, insert_index, option_length, focus_length, - pg = getTotalPages( table, p ) || 1, - // make skip set size multiples of 5 - skip_set_size = Math.ceil( ( pg / p.maxOptionSize ) / 5 ) * 5, - large_collection = pg > p.maxOptionSize, - current_page = p.page + 1, - start_page = skip_set_size, - end_page = pg - skip_set_size, - option_pages = [ 1 ], - // construct default options pages array - option_pages_start_page = (large_collection) ? skip_set_size : 1; - - for ( i = option_pages_start_page; i <= pg; ) { - option_pages.push(i); - i = i + ( large_collection ? skip_set_size : 1 ); - } - option_pages.push(pg); - if (large_collection) { - focus_option_pages = []; - // don't allow central focus size to be > 5 on either side of current page - central_focus_size = Math.max( Math.floor( p.maxOptionSize / skip_set_size ) - 1, 5 ); - - start_page = current_page - central_focus_size; - if (start_page < 1) { start_page = 1; } - end_page = current_page + central_focus_size; - if (end_page > pg) { end_page = pg; } - // construct an array to get a focus set around the current page - for (i = start_page; i <= end_page ; i++) { - focus_option_pages.push(i); - } - - // keep unique values - option_pages = $.grep(option_pages, function(value, indx) { - return $.inArray(value, option_pages) === indx; - }); - - option_length = option_pages.length; - focus_length = focus_option_pages.length; - - // make sure at all option_pages aren't replaced - if (option_length - focus_length > skip_set_size / 2 && option_length + focus_length > p.maxOptionSize ) { - insert_index = Math.floor(option_length / 2) - Math.floor(focus_length / 2); - Array.prototype.splice.apply(option_pages, [ insert_index, focus_length ]); - } - option_pages = option_pages.concat(focus_option_pages); - - } - - // keep unique values again - option_pages = $.grep(option_pages, function(value, indx) { - return $.inArray(value, option_pages) === indx; - }) - .sort(function(a, b) { return a - b; }); - - return option_pages; - }, - - fixHeight = function(table, p) { - var d, h, - c = table.config, - $b = c.$tbodies.eq(0); - $b.find('tr.pagerSavedHeightSpacer').remove(); - if (p.fixedHeight && !p.isDisabled) { - h = $.data(table, 'pagerSavedHeight'); - if (h) { - d = h - $b.height(); - if ( d > 5 && $.data(table, 'pagerLastSize') === p.size && $b.children('tr:visible').length < p.size ) { - $b.append(''); - } - } - } - }, - - changeHeight = function(table, p) { - var h, - c = table.config, - $b = c.$tbodies.eq(0); - $b.find('tr.pagerSavedHeightSpacer').remove(); - if (!$b.children('tr:visible').length) { - $b.append(' '); - } - h = $b.children('tr').eq(0).height() * p.size; - $.data(table, 'pagerSavedHeight', h); - fixHeight(table, p); - $.data(table, 'pagerLastSize', p.size); - }, - - hideRows = function(table, p){ - if (!p.ajaxUrl) { - var i, - lastIndex = 0, - c = table.config, - rows = c.$tbodies.eq(0).children('tr'), - l = rows.length, - s = ( p.page * p.size ), - e = s + p.size, - f = c.widgetOptions && c.widgetOptions.filter_filteredRow || 'filtered', - last = 0, // for cache indexing - j = 0; // size counter - p.cacheIndex = []; - for ( i = 0; i < l; i++ ){ - if ( !rows[i].className.match(f) ) { - if (j === s && rows[i].className.match(c.cssChildRow)) { - // hide child rows @ start of pager (if already visible) - rows[i].style.display = 'none'; - } else { - rows[i].style.display = ( j >= s && j < e ) ? '' : 'none'; - if (last !== j && j >= s && j < e) { - p.cacheIndex.push(i); - last = j; - } - // don't count child rows - j += rows[i].className.match(c.cssChildRow + '|' + c.selectorRemove.slice(1)) && !p.countChildRows ? 0 : 1; - if ( j === e && rows[i].style.display !== 'none' && rows[i].className.match(ts.css.cssHasChild) ) { - lastIndex = i; - } - } - } - } - // add any attached child rows to last row of pager. Fixes part of issue #396 - if ( lastIndex > 0 && rows[lastIndex].className.match(ts.css.cssHasChild) ) { - while ( ++lastIndex < l && rows[lastIndex].className.match(c.cssChildRow) ) { - rows[lastIndex].style.display = ''; - } - } - } - }, - - hideRowsSetup = function(table, p){ - p.size = parsePageSize( p, p.$size.val(), 'get' ); - p.$size.val( parsePageSize( p, p.size, 'set' ) ); - $.data(table, 'pagerLastSize', p.size); - pagerArrows( table, p ); - if ( !p.removeRows ) { - hideRows(table, p); - $(table).bind('sortEnd filterEnd '.split(' ').join(table.config.namespace + 'pager '), function(){ - hideRows(table, p); - }); - } - }, - - renderAjax = function(data, table, p, xhr, settings, exception){ - // process data - if ( typeof p.ajaxProcessing === 'function' ) { - - // in case nothing is returned by ajax, empty out the table; see #1032 - // but do it before calling pager_ajaxProcessing because that function may add content - // directly to the table - table.config.$tbodies.eq(0).empty(); - - // ajaxProcessing result: [ total, rows, headers ] - var i, j, t, hsh, $f, $sh, $headers, $h, icon, th, d, l, rr_count, len, - c = table.config, - $table = c.$table, - tds = '', - result = p.ajaxProcessing(data, table, xhr) || [ 0, [] ], - hl = $table.find('thead th').length; - - // Clean up any previous error. - ts.showError( table ); - - if ( exception ) { - if (c.debug) { - console.error('Pager: >> Ajax Error', xhr, settings, exception); - } - ts.showError( table, xhr, settings, exception ); - c.$tbodies.eq(0).children('tr').detach(); - p.totalRows = 0; - } else { - // process ajax object - if (!$.isArray(result)) { - p.ajaxData = result; - c.totalRows = p.totalRows = result.total; - c.filteredRows = p.filteredRows = typeof result.filteredRows !== 'undefined' ? result.filteredRows : result.total; - th = result.headers; - d = result.rows || []; - } else { - // allow [ total, rows, headers ] or [ rows, total, headers ] - t = isNaN(result[0]) && !isNaN(result[1]); - // ensure a zero returned row count doesn't fail the logical || - rr_count = result[t ? 1 : 0]; - p.totalRows = isNaN(rr_count) ? p.totalRows || 0 : rr_count; - // can't set filtered rows when returning an array - c.totalRows = c.filteredRows = p.filteredRows = p.totalRows; - // set row data to empty array if nothing found - see http://stackoverflow.com/q/30875583/145346 - d = p.totalRows === 0 ? [] : result[t ? 0 : 1] || []; // row data - th = result[2]; // headers - } - l = d && d.length; - if (d instanceof jQuery) { - if (p.processAjaxOnInit) { - // append jQuery object - c.$tbodies.eq(0).empty(); - c.$tbodies.eq(0).append(d); - } - } else if (l) { - // build table from array - for ( i = 0; i < l; i++ ) { - tds += ''; - for ( j = 0; j < d[i].length; j++ ) { - // build tbody cells; watch for data containing HTML markup - see #434 - tds += /^\s*' + d[i][j] + ''; - } - tds += ''; - } - // add rows to first tbody - if (p.processAjaxOnInit) { - c.$tbodies.eq(0).html( tds ); - } - } - p.processAjaxOnInit = true; - // only add new header text if the length matches - if ( th && th.length === hl ) { - hsh = $table.hasClass('hasStickyHeaders'); - $sh = hsh ? c.widgetOptions.$sticky.children('thead:first').children('tr').children() : ''; - $f = $table.find('tfoot tr:first').children(); - // don't change td headers (may contain pager) - $headers = c.$headers.filter( 'th ' ); - len = $headers.length; - for ( j = 0; j < len; j++ ) { - $h = $headers.eq( j ); - // add new test within the first span it finds, or just in the header - if ( $h.find('.' + ts.css.icon).length ) { - icon = $h.find('.' + ts.css.icon).clone(true); - $h.find('.tablesorter-header-inner').html( th[j] ).append(icon); - if ( hsh && $sh.length ) { - icon = $sh.eq(j).find('.' + ts.css.icon).clone(true); - $sh.eq(j).find('.tablesorter-header-inner').html( th[j] ).append(icon); - } - } else { - $h.find('.tablesorter-header-inner').html( th[j] ); - if (hsh && $sh.length) { - $sh.eq(j).find('.tablesorter-header-inner').html( th[j] ); - } - } - $f.eq(j).html( th[j] ); - } - } - } - if (c.showProcessing) { - ts.isProcessing(table); // remove loading icon - } - // make sure last pager settings are saved, prevents multiple server side calls with - // the same parameters - p.totalPages = Math.ceil( p.totalRows / parsePageSize( p, p.size, 'get' ) ); - p.last.totalRows = p.totalRows; - p.last.currentFilters = p.currentFilters; - p.last.sortList = (c.sortList || []).join(','); - updatePageDisplay(table, p, false); - // tablesorter core updateCache (not pager) - ts.updateCache( c, function(){ - if (p.initialized) { - // apply widgets after table has rendered & after a delay to prevent - // multiple applyWidget blocking code from blocking this trigger - setTimeout(function(){ - if (c.debug) { - console.log('Pager: Triggering pagerChange'); - } - $table.trigger( 'pagerChange', p ); - ts.applyWidget( table ); - updatePageDisplay(table, p, true); - }, 0); - } - }); - - } - if (!p.initialized) { - p.initialized = true; - p.initializing = false; - if (table.config.debug) { - console.log('Pager: Triggering pagerInitialized'); - } - $(table).trigger( 'pagerInitialized', p ); - ts.applyWidget( table ); - updatePageDisplay(table, p); - } - }, - - getAjax = function(table, p) { - var url = getAjaxUrl(table, p), - $doc = $(document), - counter, - c = table.config, - namespace = c.namespace + 'pager'; - if ( url !== '' ) { - if (c.showProcessing) { - ts.isProcessing(table, true); // show loading icon - } - $doc.bind('ajaxError' + namespace, function(e, xhr, settings, exception) { - renderAjax(null, table, p, xhr, settings, exception); - $doc.unbind('ajaxError' + namespace); - }); - - counter = ++p.ajaxCounter; - - p.last.ajaxUrl = url; // remember processed url - p.ajaxObject.url = url; // from the ajaxUrl option and modified by customAjaxUrl - p.ajaxObject.success = function(data, status, jqxhr) { - // Refuse to process old ajax commands that were overwritten by new ones - see #443 - if (counter < p.ajaxCounter){ - return; - } - renderAjax(data, table, p, jqxhr); - $doc.unbind('ajaxError' + namespace); - if (typeof p.oldAjaxSuccess === 'function') { - p.oldAjaxSuccess(data); - } - }; - if (c.debug) { - console.log('Pager: Ajax initialized', p.ajaxObject); - } - $.ajax(p.ajaxObject); - } - }, - - getAjaxUrl = function(table, p) { - var indx, len, - c = table.config, - url = (p.ajaxUrl) ? p.ajaxUrl - // allow using "{page+1}" in the url string to switch to a non-zero based index - .replace(/\{page([\-+]\d+)?\}/, function(s, n){ return p.page + (n ? parseInt(n, 10) : 0); }) - .replace(/\{size\}/g, p.size) : '', - sortList = c.sortList, - filterList = p.currentFilters || $(table).data('lastSearch') || [], - sortCol = url.match(/\{\s*sort(?:List)?\s*:\s*(\w*)\s*\}/), - filterCol = url.match(/\{\s*filter(?:List)?\s*:\s*(\w*)\s*\}/), - arry = []; - if (sortCol) { - sortCol = sortCol[1]; - len = sortList.length; - for (indx = 0; indx < len; indx++) { - arry.push(sortCol + '[' + sortList[indx][0] + ']=' + sortList[indx][1]); - } - // if the arry is empty, just add the col parameter... "&{sortList:col}" becomes "&col" - url = url.replace(/\{\s*sort(?:List)?\s*:\s*(\w*)\s*\}/g, arry.length ? arry.join('&') : sortCol ); - arry = []; - } - if (filterCol) { - filterCol = filterCol[1]; - len = filterList.length; - for (indx = 0; indx < len; indx++) { - if (filterList[indx]) { - arry.push(filterCol + '[' + indx + ']=' + encodeURIComponent(filterList[indx])); - } - } - // if the arry is empty, just add the fcol parameter... "&{filterList:fcol}" becomes "&fcol" - url = url.replace(/\{\s*filter(?:List)?\s*:\s*(\w*)\s*\}/g, arry.length ? arry.join('&') : filterCol ); - p.currentFilters = filterList; - } - if ( typeof p.customAjaxUrl === 'function' ) { - url = p.customAjaxUrl(table, url); - } - if (c.debug) { - console.log('Pager: Ajax url = ' + url); - } - return url; - }, - - renderTable = function(table, rows, p) { - var $tb, index, count, added, - $t = $(table), - c = table.config, - f = c.$table.hasClass('hasFilters'), - l = rows && rows.length || 0, // rows may be undefined - s = ( p.page * p.size ), - e = p.size; - if ( l < 1 ) { - if (c.debug) { - console.warn('Pager: >> No rows for pager to render'); - } - // empty table, abort! - return; - } - if ( p.page >= p.totalPages ) { - // lets not render the table more than once - moveToLastPage(table, p); - } - p.cacheIndex = []; - p.isDisabled = false; // needed because sorting will change the page and re-enable the pager - if (p.initialized) { - if (c.debug) { - console.log('Pager: Triggering pagerChange'); - } - $t.trigger( 'pagerChange', p ); - } - if ( !p.removeRows ) { - hideRows(table, p); - } else { - ts.clearTableBody(table); - $tb = ts.processTbody(table, c.$tbodies.eq(0), true); - // not filtered, start from the calculated starting point (s) - // if filtered, start from zero - index = f ? 0 : s; - count = f ? 0 : s; - added = 0; - while (added < e && index < rows.length) { - if (!f || !/filtered/.test(rows[index][0].className)){ - count++; - if (count > s && added <= e) { - added++; - p.cacheIndex.push(index); - $tb.append(rows[index]); - } - } - index++; - } - ts.processTbody(table, $tb, false); - } - updatePageDisplay(table, p); - if (table.isUpdating) { - if (c.debug) { - console.log('Pager: Triggering updateComplete'); - } - $t.trigger('updateComplete', [ table, true ]); - } - }, - - showAllRows = function(table, p) { - var index, $controls, len; - if ( p.ajax ) { - pagerArrows( table, p, true ); - } else { - $.data(table, 'pagerLastPage', p.page); - $.data(table, 'pagerLastSize', p.size); - p.page = 0; - p.size = p.totalRows; - p.totalPages = 1; - $(table) - .addClass('pagerDisabled') - .removeAttr('aria-describedby') - .find('tr.pagerSavedHeightSpacer').remove(); - renderTable(table, table.config.rowsCopy, p); - p.isDisabled = true; - ts.applyWidget( table ); - if (table.config.debug) { - console.log('Pager: Disabled'); - } - } - // disable size selector - $controls = p.$size - .add( p.$goto ) - .add( p.$container.find( '.ts-startRow, .ts-page' ) ); - len = $controls.length; - for ( index = 0; index < len; index++ ) { - $controls.eq( index ) - .attr( 'aria-disabled', 'true' ) - .addClass( p.cssDisabled )[0].disabled = true; - } - }, - - // updateCache if delayInit: true - updateCache = function(table) { - var c = table.config, - p = c.pager; - // tablesorter core updateCache (not pager) - ts.updateCache( c, function(){ - var i, - rows = [], - n = table.config.cache[0].normalized; - p.totalRows = n.length; - for (i = 0; i < p.totalRows; i++) { - rows.push(n[i][c.columns].$row); - } - c.rowsCopy = rows; - moveToPage(table, p, true); - }); - }, - - moveToPage = function(table, p, pageMoved) { - if ( p.isDisabled ) { return; } - var c = table.config, - $t = $(table), - l = p.last; - if ( pageMoved !== false && p.initialized && ts.isEmptyObject(c.cache)) { - return updateCache(table); - } - // abort page move if the table has filters and has not been initialized - if (p.ajax && ts.hasWidget(table, 'filter') && !c.widgetOptions.filter_initialized) { return; } - parsePageNumber( table, p ); - calcFilters(table, p); - // fixes issue where one currentFilter is [] and the other is ['','',''], - // making the next if comparison think the filters are different (joined by commas). Fixes #202. - l.currentFilters = (l.currentFilters || []).join('') === '' ? [] : l.currentFilters; - p.currentFilters = (p.currentFilters || []).join('') === '' ? [] : p.currentFilters; - // don't allow rendering multiple times on the same page/size/totalRows/filters/sorts - if ( l.page === p.page && l.size === p.size && l.totalRows === p.totalRows && - (l.currentFilters || []).join(',') === (p.currentFilters || []).join(',') && - // check for ajax url changes see #730 - (l.ajaxUrl || '') === (p.ajaxObject.url || '') && - // & ajax url option changes (dynamically add/remove/rename sort & filter parameters) - (l.optAjaxUrl || '') === (p.ajaxUrl || '') && - l.sortList === (c.sortList || []).join(',') ) { return; } - if (c.debug) { - console.log('Pager: Changing to page ' + p.page); - } - p.last = { - page : p.page, - size : p.size, - // fixes #408; modify sortList otherwise it auto-updates - sortList : (c.sortList || []).join(','), - totalRows : p.totalRows, - currentFilters : p.currentFilters || [], - ajaxUrl : p.ajaxObject.url || '', - optAjaxUrl : p.ajaxUrl || '' - }; - if (p.ajax) { - getAjax(table, p); - } else if (!p.ajax) { - renderTable(table, c.rowsCopy, p); - } - $.data(table, 'pagerLastPage', p.page); - if (p.initialized && pageMoved !== false) { - if (c.debug) { - console.log('Pager: Triggering pageMoved'); - } - $t.trigger('pageMoved', p); - ts.applyWidget( table ); - if (table.isUpdating) { - if (c.debug) { - console.log('Pager: Triggering updateComplete'); - } - $t.trigger('updateComplete', [ table, true ]); - } - } - }, - - getTotalPages = function( table, p ) { - return ts.hasWidget( table, 'filter' ) ? Math.min( p.totalPages, p.filteredPages ) : p.totalPages; - }, - - // set to either set or get value - parsePageSize = function( p, size, mode ) { - var s = parseInt( size, 10 ) || p.size || p.settings.size || 10, - // if select does not contain an "all" option, use size - setAll = p.$size.find( 'option[value="all"]' ).length ? 'all' : p.totalRows; - return /all/i.test( size ) || s === p.totalRows ? - // "get" to get `p.size` or "set" to set `p.$size.val()` - ( mode === 'get' ? p.totalRows : setAll ) : - ( mode === 'get' ? s : p.size ); - }, - - parsePageNumber = function( table, p ) { - var min = getTotalPages( table, p ) - 1; - p.page = parseInt( p.page, 10 ); - if ( p.page < 0 || isNaN( p.page ) ) { p.page = 0; } - if ( p.page > min && min >= 0 ) { p.page = min; } - return p.page; - }, - - setPageSize = function(table, size, p) { - p.size = parsePageSize( p, size, 'get' ); - p.$size.val( parsePageSize( p, p.size, 'set' ) ); - $.data(table, 'pagerLastPage', parsePageNumber( table, p ) ); - $.data(table, 'pagerLastSize', p.size); - p.totalPages = Math.ceil( p.totalRows / p.size ); - p.filteredPages = Math.ceil( p.filteredRows / p.size ); - moveToPage(table, p); - }, - - moveToFirstPage = function(table, p) { - p.page = 0; - moveToPage(table, p); - }, - - moveToLastPage = function(table, p) { - p.page = getTotalPages( table, p ) - 1; - moveToPage(table, p); - }, - - moveToNextPage = function(table, p) { - p.page++; - var last = getTotalPages( table, p ) - 1; - if ( p.page >= last ) { - p.page = last; - } - moveToPage(table, p); - }, - - moveToPrevPage = function(table, p) { - p.page--; - if ( p.page <= 0 ) { - p.page = 0; - } - moveToPage(table, p); - }, - - destroyPager = function(table, p) { - var c = table.config, - namespace = c.namespace + 'pager', - ctrls = [ p.cssFirst, p.cssPrev, p.cssNext, p.cssLast, p.cssGoto, p.cssPageSize ].join( ',' ); - showAllRows(table, p); - p.$container - // hide pager controls - .hide() - // unbind - .find( ctrls ) - .unbind( namespace ); - c.appender = null; // remove pager appender function - c.$table.unbind( namespace ); - if (ts.storage) { - ts.storage(table, p.storageKey, ''); - } - delete c.pager; - delete c.rowsCopy; - }, - - enablePager = function(table, p, triggered) { - var info, size, - c = table.config; - p.$size.add(p.$goto).add(p.$container.find('.ts-startRow, .ts-page')) - .removeClass(p.cssDisabled) - .removeAttr('disabled') - .attr('aria-disabled', 'false'); - p.isDisabled = false; - p.page = $.data(table, 'pagerLastPage') || p.page || 0; - size = p.$size.find('option[selected]').val(); - p.size = $.data(table, 'pagerLastSize') || parsePageSize( p, p.size, 'get' ); - p.$size.val( parsePageSize( p, p.size, 'set' ) ); // set page size - p.totalPages = Math.ceil( getTotalPages( table, p ) / p.size ); - // if table id exists, include page display with aria info - if ( table.id ) { - info = table.id + '_pager_info'; - p.$container.find(p.cssPageDisplay).attr('id', info); - c.$table.attr('aria-describedby', info); - } - changeHeight(table, p); - if ( triggered ) { - // tablesorter core update table - ts.update( c ); - setPageSize(table, p.size, p); - hideRowsSetup(table, p); - if (c.debug) { - console.log('Pager: Enabled'); - } - } - }; - - $this.appender = function(table, rows) { - var c = table.config, - p = c.pager; - if ( !p.ajax ) { - c.rowsCopy = rows; - p.totalRows = p.countChildRows ? c.$tbodies.eq(0).children('tr').length : rows.length; - p.size = $.data(table, 'pagerLastSize') || p.size || p.settings.size || 10; - p.totalPages = Math.ceil( p.totalRows / p.size ); - renderTable(table, rows, p); - // update display here in case all rows are removed - updatePageDisplay(table, p, false); - } - }; - - $this.construct = function(settings) { - return this.each(function() { - // check if tablesorter has initialized - if (!(this.config && this.hasInitialized)) { return; } - var t, ctrls, fxn, - table = this, - c = table.config, - wo = c.widgetOptions, - p = c.pager = $.extend( true, {}, $.tablesorterPager.defaults, settings ), - $t = c.$table, - namespace = c.namespace + 'pager', - // added in case the pager is reinitialized after being destroyed. - pager = p.$container = $(p.container).addClass('tablesorter-pager').show(); - // save a copy of the original settings - p.settings = $.extend( true, {}, $.tablesorterPager.defaults, settings ); - if (c.debug) { - console.log('Pager: Initializing'); - } - p.oldAjaxSuccess = p.oldAjaxSuccess || p.ajaxObject.success; - c.appender = $this.appender; - p.initializing = true; - if (p.savePages && ts.storage) { - t = ts.storage(table, p.storageKey) || {}; // fixes #387 - p.page = isNaN(t.page) ? p.page : t.page; - p.size = ( isNaN(t.size) ? p.size : t.size ) || p.settings.size || 10; - $.data(table, 'pagerLastSize', p.size); - } - - // skipped rows - p.regexRows = new RegExp('(' + (wo.filter_filteredRow || 'filtered') + '|' + c.selectorRemove.slice(1) + '|' + c.cssChildRow + ')'); - - $t - // .unbind( namespace ) adding in jQuery 1.4.3 ( I think ) - .unbind( pagerEvents.split(' ').join(namespace + ' ').replace(/\s+/g, ' ') ) - .bind('filterInit filterStart '.split(' ').join(namespace + ' '), function(e, filters) { - p.currentFilters = $.isArray(filters) ? filters : c.$table.data('lastSearch'); - // don't change page if filters are the same (pager updating, etc) - if (e.type === 'filterStart' && p.pageReset !== false && (c.lastCombinedFilter || '') !== (p.currentFilters || []).join('')) { - p.page = p.pageReset; // fixes #456 & #565 - } - }) - // update pager after filter widget completes - .bind('filterEnd sortEnd '.split(' ').join(namespace + ' '), function() { - p.currentFilters = c.$table.data('lastSearch'); - if (p.initialized || p.initializing) { - if (c.delayInit && c.rowsCopy && c.rowsCopy.length === 0) { - // make sure we have a copy of all table rows once the cache has been built - updateCache(table); - } - updatePageDisplay(table, p, false); - moveToPage(table, p, false); - ts.applyWidget( table ); - } - }) - .bind('disablePager' + namespace, function(e){ - e.stopPropagation(); - showAllRows(table, p); - }) - .bind('enablePager' + namespace, function(e){ - e.stopPropagation(); - enablePager(table, p, true); - }) - .bind('destroyPager' + namespace, function(e){ - e.stopPropagation(); - destroyPager(table, p); - }) - .bind('updateComplete' + namespace, function(e, table, triggered){ - e.stopPropagation(); - // table can be unintentionally undefined in tablesorter v2.17.7 and earlier - // don't recalculate total rows/pages if using ajax - if ( !table || triggered || p.ajax ) { return; } - var $rows = c.$tbodies.eq(0).children('tr').not(c.selectorRemove); - p.totalRows = $rows.length - ( p.countChildRows ? 0 : $rows.filter('.' + c.cssChildRow).length ); - p.totalPages = Math.ceil( p.totalRows / p.size ); - if ($rows.length && c.rowsCopy && c.rowsCopy.length === 0) { - // make a copy of all table rows once the cache has been built - updateCache(table); - } - if ( p.page >= p.totalPages ) { - moveToLastPage(table, p); - } - hideRows(table, p); - changeHeight(table, p); - updatePageDisplay(table, p, true); - }) - .bind('pageSize refreshComplete '.split(' ').join(namespace + ' '), function(e, size){ - e.stopPropagation(); - setPageSize(table, parsePageSize( p, size, 'get' ), p); - hideRows(table, p); - updatePageDisplay(table, p, false); - }) - .bind('pageSet pagerUpdate '.split(' ').join(namespace + ' '), function(e, num){ - e.stopPropagation(); - // force pager refresh - if (e.type === 'pagerUpdate') { - num = typeof num === 'undefined' ? p.page + 1 : num; - p.last.page = true; - } - p.page = (parseInt(num, 10) || 1) - 1; - moveToPage(table, p, true); - updatePageDisplay(table, p, false); - }) - .bind('pageAndSize' + namespace, function(e, page, size){ - e.stopPropagation(); - p.page = (parseInt(page, 10) || 1) - 1; - setPageSize(table, parsePageSize( p, size, 'get' ), p); - moveToPage(table, p, true); - hideRows(table, p); - updatePageDisplay(table, p, false); - }); - - // clicked controls - ctrls = [ p.cssFirst, p.cssPrev, p.cssNext, p.cssLast ]; - fxn = [ moveToFirstPage, moveToPrevPage, moveToNextPage, moveToLastPage ]; - if (c.debug && !pager.length) { - console.warn('Pager: >> Container not found'); - } - pager.find(ctrls.join(',')) - .attr('tabindex', 0) - .unbind('click' + namespace) - .bind('click' + namespace, function(e){ - e.stopPropagation(); - var i, $t = $(this), l = ctrls.length; - if ( !$t.hasClass(p.cssDisabled) ) { - for (i = 0; i < l; i++) { - if ($t.is(ctrls[i])) { - fxn[i](table, p); - break; - } - } - } - }); - - // goto selector - p.$goto = pager.find(p.cssGoto); - if ( p.$goto.length ) { - p.$goto - .unbind('change' + namespace) - .bind('change' + namespace, function(){ - p.page = $(this).val() - 1; - moveToPage(table, p, true); - updatePageDisplay(table, p, false); - }); - } else if (c.debug) { - console.warn('Pager: >> Goto selector not found'); - } - // page size selector - p.$size = pager.find(p.cssPageSize); - if ( p.$size.length ) { - // setting an option as selected appears to cause issues with initial page size - p.$size.find('option').removeAttr('selected'); - p.$size.unbind('change' + namespace).bind('change' + namespace, function() { - if ( !$(this).hasClass(p.cssDisabled) ) { - var size = $(this).val(); - p.$size.val( size ); // in case there are more than one pagers - setPageSize(table, size, p); - changeHeight(table, p); - } - return false; - }); - } else if (c.debug) { - console.warn('Pager: >> Size selector not found'); - } - - // clear initialized flag - p.initialized = false; - // before initialization event - $t.trigger('pagerBeforeInitialized', p); - - enablePager(table, p, false); - if ( typeof p.ajaxUrl === 'string' ) { - // ajax pager; interact with database - p.ajax = true; - // When filtering with ajax, allow only custom filtering function, disable default - // filtering since it will be done server side. - c.widgetOptions.filter_serversideFiltering = true; - c.serverSideSorting = true; - moveToPage(table, p); - } else { - p.ajax = false; - // Regular pager; all rows stored in memory - ts.appendCache( c, true ); // true = don't apply widgets - hideRowsSetup(table, p); - } - - // pager initialized - if (!p.ajax && !p.initialized) { - p.initializing = false; - p.initialized = true; - moveToPage(table, p); - if (c.debug) { - console.log('Pager: Triggering pagerInitialized'); - } - c.$table.trigger( 'pagerInitialized', p ); - if ( !( c.widgetOptions.filter_initialized && ts.hasWidget(table, 'filter') ) ) { - updatePageDisplay(table, p, false); - } - } - - // make the hasWidget function think that the pager widget is being used - c.widgetInit.pager = true; - }); - }; - - }() }); - - // see #486 - ts.showError = function( table, xhr, settings, exception ) { - var $row, - $table = $( table ), - c = $table[0].config, - wo = c && c.widgetOptions, - errorRow = c.pager && c.pager.cssErrorRow || - wo && wo.pager_css && wo.pager_css.errorRow || - 'tablesorter-errorRow', - typ = typeof xhr, - valid = true, - message = '', - removeRow = function(){ - c.$table.find( 'thead' ).find( '.' + errorRow ).remove(); - }; - - if ( !$table.length ) { - console.error('tablesorter showError: no table parameter passed'); - return; - } - - // ajaxError callback for plugin or widget - see #992 - if ( typeof c.pager.ajaxError === 'function' ) { - valid = c.pager.ajaxError( c, xhr, settings, exception ); - if ( valid === false ) { - return removeRow(); - } else { - message = valid; - } - } else if ( typeof wo.pager_ajaxError === 'function' ) { - valid = wo.pager_ajaxError( c, xhr, settings, exception ); - if ( valid === false ) { - return removeRow(); - } else { - message = valid; - } - } - - if ( message === '' ) { - if ( typ === 'object' ) { - message = - xhr.status === 0 ? 'Not connected, verify Network' : - xhr.status === 404 ? 'Requested page not found [404]' : - xhr.status === 500 ? 'Internal Server Error [500]' : - exception === 'parsererror' ? 'Requested JSON parse failed' : - exception === 'timeout' ? 'Time out error' : - exception === 'abort' ? 'Ajax Request aborted' : - 'Uncaught error: ' + xhr.statusText + ' [' + xhr.status + ']'; - } else if ( typ === 'string' ) { - // keep backward compatibility (external usage just passes a message string) - message = xhr; - } else { - // remove all error rows - return removeRow(); - } - } - - // allow message to include entire row HTML! - $row = ( /tr\>/.test(message) ? $(message) : $('' + message + '') ) - .click( function() { - $( this ).remove(); - }) - // add error row to thead instead of tbody, or clicking on the header will result in a parser error - .appendTo( c.$table.find( 'thead:first' ) ) - .addClass( errorRow + ' ' + c.selectorRemove.slice(1) ) - .attr({ - role : 'alert', - 'aria-live' : 'assertive' - }); - - }; - - // extend plugin scope - $.fn.extend({ - tablesorterPager: $.tablesorterPager.construct - }); - -})(jQuery); diff --git a/vendor/FHC-vendor/jquery-tablesorter/beta-testing/example-pager-custom-controls.html b/vendor/FHC-vendor/jquery-tablesorter/beta-testing/example-pager-custom-controls.html deleted file mode 100644 index 83b5d22d3..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/beta-testing/example-pager-custom-controls.html +++ /dev/null @@ -1,1200 +0,0 @@ - - - - - jQuery plugin: Tablesorter 2.0 - Pager plugin, Custom Pagination - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                  - -

                                                  - NOTE! -

                                                    -
                                                  • Modified in v2.17.1 to properly work with either the pager addon or pager widget.
                                                  • -
                                                  • In v2.16.4, code was updated to correctly count process pages.
                                                  • -
                                                  -

                                                  - -

                                                  Demo

                                                  -
                                                  - -
                                                  - -
                                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                  NameMajorSexEnglishJapaneseCalculusGeometry
                                                  NameMajorSexEnglishJapaneseCalculusGeometry
                                                  -
                                                  - # per page: - 10 | - 25 | - 50 | - 100 - - - - Prev  - - -  Next - - - -
                                                  -
                                                  Student01Languagesmale80707580
                                                  Student02Mathematicsmale908810090
                                                  Student03Languagesfemale85958085
                                                  Student04Languagesmale6055100100
                                                  Student05Languagesfemale68809580
                                                  Student06Mathematicsmale1009910090
                                                  Student07Mathematicsmale85689090
                                                  Student08Languagesmale100909085
                                                  Student09Mathematicsmale80506575
                                                  Student10Languagesmale8510010090
                                                  Student11Languagesmale8685100100
                                                  Student12Mathematicsfemale100757085
                                                  Student13Languagesfemale1008010090
                                                  Student14Languagesfemale50455590
                                                  Student15Languagesmale953510090
                                                  Student16Languagesfemale100503070
                                                  Student17Languagesfemale801005565
                                                  Student18Mathematicsmale30495575
                                                  Student19Languagesmale68908870
                                                  Student20Mathematicsmale40454080
                                                  Student21Languagesmale5045100100
                                                  Student22Mathematicsmale1009910090
                                                  Student23Languagesfemale85808080
                                                  student24Languagesfemale100911382
                                                  student25Mathematicsmale22968253
                                                  student26Languagesfemale37295659
                                                  student27Mathematicsmale86826923
                                                  student28Languagesfemale4425431
                                                  student29Mathematicsmale77472238
                                                  student30Languagesfemale19352310
                                                  student31Mathematicsmale90271750
                                                  student32Languagesfemale60753338
                                                  student33Mathematicsmale4313715
                                                  student34Languagesfemale77978144
                                                  student35Mathematicsmale5815195
                                                  student36Languagesfemale70617094
                                                  student37Mathematicsmale6036184
                                                  student38Languagesfemale6339011
                                                  student39Mathematicsmale50463238
                                                  student40Languagesfemale5175253
                                                  student41Mathematicsmale43342878
                                                  student42Languagesfemale11896095
                                                  student43Mathematicsmale48921888
                                                  student44Languagesfemale8225973
                                                  student45Mathematicsmale91733739
                                                  student46Languagesfemale481210
                                                  student47Mathematicsmale8910611
                                                  student48Languagesfemale90322118
                                                  student49Mathematicsmale42494972
                                                  student50Languagesfemale56376754
                                                  student51Mathematicsmale48315563
                                                  student52Languagesfemale38917174
                                                  student53Mathematicsmale26385100
                                                  student54Languagesfemale75811623
                                                  student55Mathematicsmale65521553
                                                  student56Languagesfemale23527994
                                                  student57Mathematicsmale80226112
                                                  student58Languagesfemale5357979
                                                  student59Mathematicsmale96323517
                                                  student60Languagesfemale16766527
                                                  student61Mathematicsmale20572223
                                                  student62Languagesfemale19838778
                                                  student63Mathematicsmale258330
                                                  student64Languagesfemale021993
                                                  student65Mathematicsmale20861396
                                                  student66Languagesfemale28358757
                                                  student67Mathematicsmale36502910
                                                  student68Languagesfemale6090966
                                                  student69Mathematicsmale34614398
                                                  student70Languagesfemale13379183
                                                  student71Mathematicsmale47805782
                                                  student72Languagesfemale69433737
                                                  student73Mathematicsmale54609421
                                                  student74Languagesfemale71143446
                                                  student75Mathematicsmale89963117
                                                  student76Languagesfemale28482994
                                                  student77Mathematicsmale100652024
                                                  student78Languagesfemale11969033
                                                  student79Mathematicsmale53559339
                                                  student80Languagesfemale11008444
                                                  student81Mathematicsmale63789643
                                                  student82Languagesfemale41698235
                                                  student83Mathematicsmale9498139
                                                  student84Languagesfemale94729177
                                                  student85Mathematicsmale71324525
                                                  student86Languagesfemale9896437
                                                  student87Mathematicsmale8917367
                                                  student88Languagesfemale43416879
                                                  student89Mathematicsmale7382237
                                                  student90Languagesfemale94839337
                                                  student91Mathematicsmale8284261
                                                  student92Languagesfemale46413069
                                                  student93Mathematicsmale47198583
                                                  student94Languagesfemale39146462
                                                  student95Mathematicsmale71314628
                                                  student96Languagesfemale90944540
                                                  student97Mathematicsmale468925
                                                  student98Languagesfemale41434799
                                                  student99Mathematicsmale71908973
                                                  student100Languagesfemale31641856
                                                  student101Mathematicsmale52136999
                                                  student102Languagesfemale86398318
                                                  student103Mathematicsmale23659880
                                                  student104Languagesfemale781005766
                                                  student105Mathematicsmale69214397
                                                  student106Languagesfemale2727838
                                                  student107Mathematicsmale86964634
                                                  student108Languagesfemale13846664
                                                  student109Mathematicsmale35959881
                                                  student110Languagesfemale30286254
                                                  student111Mathematicsmale60313585
                                                  student112Languagesfemale19811969
                                                  student113Mathematicsmale6659854
                                                  student114Languagesfemale38804016
                                                  student115Mathematicsmale5849697
                                                  student116Languagesfemale59976954
                                                  student117Mathematicsmale0347949
                                                  student118Languagesfemale1871285
                                                  student119Mathematicsmale9387759
                                                  student120Languagesfemale42232690
                                                  student121Mathematicsmale17396689
                                                  student122Languagesfemale26759018
                                                  student123Mathematicsmale34237780
                                                  student124Languagesfemale5267742
                                                  student125Mathematicsmale5628581
                                                  student126Languagesfemale51356744
                                                  student127Mathematicsmale64644434
                                                  student128Languagesfemale67917982
                                                  student129Mathematicsmale4261579
                                                  student130Languagesfemale7210369
                                                  student131Mathematicsmale9477511
                                                  student132Languagesfemale27958548
                                                  student133Mathematicsmale92114061
                                                  student134Languagesfemale4185660
                                                  student135Mathematicsmale8422652
                                                  student136Languagesfemale7604721
                                                  student137Mathematicsmale51813090
                                                  student138Languagesfemale5861673
                                                  student139Mathematicsmale48383731
                                                  student140Languagesfemale33265660
                                                  student141Mathematicsmale84842975
                                                  student142Languagesfemale7235654
                                                  student143Mathematicsmale31427082
                                                  student144Languagesfemale94875035
                                                  student145Mathematicsmale91528026
                                                  student146Languagesfemale78657979
                                                  student147Mathematicsmale50905971
                                                  student148Languagesfemale15686633
                                                  student149Mathematicsmale17363413
                                                  student150Languagesfemale30956973
                                                  student151Mathematicsmale20534958
                                                  student152Languagesfemale19896060
                                                  student153Mathematicsmale5282203
                                                  student154Languagesfemale66985366
                                                  student155Mathematicsmale5852258
                                                  student156Languagesfemale3443688
                                                  student157Mathematicsmale4309114
                                                  student158Languagesfemale34186731
                                                  student159Mathematicsmale79733452
                                                  student160Languagesfemale15613727
                                                  student161Mathematicsmale74771545
                                                  student162Languagesfemale52621958
                                                  student163Mathematicsmale77602795
                                                  student164Languagesfemale9619357
                                                  student165Mathematicsmale51637519
                                                  student166Languagesfemale32447299
                                                  student167Mathematicsmale82845763
                                                  student168Languagesfemale53128567
                                                  student169Mathematicsmale4916846
                                                  student170Languagesfemale39341665
                                                  student171Mathematicsmale10068884
                                                  student172Languagesfemale14256352
                                                  student173Mathematicsmale74261560
                                                  student174Languagesfemale1158892
                                                  student175Mathematicsmale6247231
                                                  student176Languagesfemale65263242
                                                  student177Mathematicsmale83786924
                                                  student178Languagesfemale14100743
                                                  student179Mathematicsmale2835897
                                                  student180Languagesfemale1483962
                                                  student181Mathematicsmale1442469
                                                  student182Languagesfemale6452722
                                                  student183Mathematicsmale15262785
                                                  student184Languagesfemale9149407
                                                  student185Mathematicsmale87894287
                                                  student186Languagesfemale75766188
                                                  student187Mathematicsmale11486630
                                                  student188Languagesfemale7379272
                                                  student189Mathematicsmale98365815
                                                  student190Languagesfemale8028656
                                                  student191Mathematicsmale3633974
                                                  student192Languagesfemale5923390
                                                  student193Mathematicsmale9461933
                                                  student194Languagesfemale82497242
                                                  student195Mathematicsmale8059830
                                                  student196Languagesfemale89179027
                                                  student197Mathematicsmale4622667
                                                  student198Languagesfemale65757377
                                                  student199Mathematicsmale77975413
                                                  student200Languagesfemale78195796
                                                  student201Mathematicsmale92211180
                                                  student202Languagesfemale45499340
                                                  student203Mathematicsmale74258753
                                                  student204Languagesfemale1571234
                                                  student205Mathematicsmale82979573
                                                  student206Languagesfemale82605898
                                                  student207Mathematicsmale266411100
                                                  student208Languagesfemale6496045
                                                  student209Mathematicsmale96819663
                                                  student210Languagesfemale2439069
                                                  student211Mathematicsmale8664710
                                                  student212Languagesfemale764507
                                                  student213Mathematicsmale59122677
                                                  student214Languagesfemale21259382
                                                  student215Mathematicsmale22186451
                                                  student216Languagesfemale92419828
                                                  student217Mathematicsmale32481417
                                                  student218Languagesfemale62368556
                                                  student219Mathematicsmale33379087
                                                  student220Languagesfemale24436084
                                                  student221Mathematicsmale6593751
                                                  student222Languagesfemale9197576
                                                  student223Mathematicsmale86293227
                                                  student224Languagesfemale63596891
                                                  student225Mathematicsmale57739568
                                                  student226Languagesfemale38545987
                                                  student227Mathematicsmale53627264
                                                  student228Languagesfemale62847273
                                                  student229Mathematicsmale1308358
                                                  student230Languagesfemale35658087
                                                  student231Mathematicsmale76202850
                                                  student232Languagesfemale9176633
                                                  student233Mathematicsmale9229961
                                                  student234Languagesfemale47699839
                                                  student235Mathematicsmale21443882
                                                  student236Languagesfemale19865178
                                                  student237Mathematicsmale28454936
                                                  student238Languagesfemale78194981
                                                  student239Mathematicsmale72694720
                                                  student240Languagesfemale17436656
                                                  student241Mathematicsmale901944
                                                  student242Languagesfemale618251
                                                  student243Mathematicsmale1377213
                                                  student244Languagesfemale8005854
                                                  student245Mathematicsmale8331859
                                                  student246Languagesfemale90992912
                                                  student247Mathematicsmale89238159
                                                  student248Languagesfemale7226283
                                                  student249Mathematicsmale28105047
                                                  student250Languagesfemale8914894
                                                  student251Mathematicsmale15233769
                                                  student252Languagesfemale27821036
                                                  student253Mathematicsmale49456423
                                                  student254Languagesfemale79756374
                                                  student255Mathematicsmale2566475
                                                  student256Languagesfemale36262958
                                                  student257Mathematicsmale17226673
                                                  student258Languagesfemale70919745
                                                  student259Mathematicsmale34307830
                                                  student260Languagesfemale77578677
                                                  student261Mathematicsmale1259687
                                                  student262Languagesfemale11609771
                                                  student263Mathematicsmale12303558
                                                  student264Languagesfemale46152340
                                                  student265Mathematicsmale4481926
                                                  student266Languagesfemale15683215
                                                  student267Mathematicsmale5585098
                                                  student268Languagesfemale42303224
                                                  student269Mathematicsmale781009957
                                                  student270Languagesfemale55338725
                                                  student271Mathematicsmale25972993
                                                  student272Languagesfemale39351843
                                                  student273Mathematicsmale35179958
                                                  student274Languagesfemale86522724
                                                  student275Mathematicsmale97387376
                                                  student276Languagesfemale206198
                                                  student277Mathematicsmale9336947
                                                  student278Languagesfemale423152
                                                  student279Mathematicsmale6118962
                                                  student280Languagesfemale99898794
                                                  student281Mathematicsmale4895900
                                                  student282Languagesfemale60473130
                                                  student283Mathematicsmale64241076
                                                  student284Languagesfemale9937468
                                                  student285Mathematicsmale0986869
                                                  student286Languagesfemale66824959
                                                  student287Mathematicsmale86143717
                                                  student288Languagesfemale27489327
                                                  student289Mathematicsmale8489668
                                                  student290Languagesfemale9902057
                                                  student291Mathematicsmale50967242
                                                  student292Languagesfemale9822792
                                                  student293Mathematicsmale1994287
                                                  student294Languagesfemale9897922
                                                  student295Mathematicsmale75307764
                                                  student296Languagesfemale5198553
                                                  student297Mathematicsmale25958672
                                                  student298Languagesfemale20753735
                                                  student299Mathematicsmale4924111
                                                  student300Languagesfemale2832891
                                                  student301Mathematicsmale4163425
                                                  student302Languagesfemale29167790
                                                  student303Mathematicsmale89415182
                                                  student304Languagesfemale40912434
                                                  student305Mathematicsmale7474978
                                                  student306Languagesfemale6375562
                                                  student307Mathematicsmale30733490
                                                  student308Languagesfemale82919593
                                                  student309Mathematicsmale6247382
                                                  student310Languagesfemale39101257
                                                  student311Mathematicsmale89642067
                                                  student312Languagesfemale56369241
                                                  student313Mathematicsmale99809974
                                                  student314Languagesfemale31796493
                                                  student315Mathematicsmale5327055
                                                  student316Languagesfemale35152960
                                                  student317Mathematicsmale31476960
                                                  student318Languagesfemale88281366
                                                  student319Mathematicsmale65121640
                                                  student320Languagesfemale28171940
                                                  student321Mathematicsmale241004470
                                                  student322Languagesfemale20598352
                                                  student323Mathematicsmale17608291
                                                  student324Languagesfemale95994337
                                                  student325Mathematicsmale30189931
                                                  student326Languagesfemale3478386
                                                  student327Mathematicsmale9863435
                                                  student328Languagesfemale54239846
                                                  student329Mathematicsmale97934518
                                                  student330Languagesfemale2774077
                                                  student331Mathematicsmale9704137
                                                  student332Languagesfemale52377620
                                                  student333Mathematicsmale74186819
                                                  student334Languagesfemale77100339
                                                  student335Mathematicsmale38537718
                                                  student336Languagesfemale18132610
                                                  student337Mathematicsmale90478770
                                                  student338Languagesfemale38493674
                                                  student339Mathematicsmale100641372
                                                  student340Languagesfemale74254152
                                                  student341Mathematicsmale37131613
                                                  student342Languagesfemale24341583
                                                  student343Mathematicsmale2056728
                                                  student344Languagesfemale4522572
                                                  student345Mathematicsmale19117535
                                                  student346Languagesfemale6583115
                                                  student347Mathematicsmale16663611
                                                  student348Languagesfemale1239540
                                                  student349Mathematicsmale752742
                                                  student350Languagesfemale88926055
                                                  student351Mathematicsmale92709145
                                                  student352Languagesfemale74765944
                                                  student353Mathematicsmale63696094
                                                  student354Languagesfemale3685548
                                                  student355Mathematicsmale39962148
                                                  student356Languagesfemale4134275
                                                  student357Mathematicsmale6434733
                                                  student358Languagesfemale95146355
                                                  student359Mathematicsmale701001382
                                                  student360Languagesfemale522410021
                                                  student361Mathematicsmale040869
                                                  student362Languagesfemale024932
                                                  student363Mathematicsmale23108694
                                                  student364Languagesfemale1538649
                                                  student365Mathematicsmale7623310
                                                  student366Languagesfemale35357894
                                                  student367Mathematicsmale294243100
                                                  student368Languagesfemale668510
                                                  student369Mathematicsmale74155683
                                                  student370Languagesfemale7543908
                                                  student371Mathematicsmale4060470
                                                  student372Languagesfemale62421749
                                                  student373Mathematicsmale31464454
                                                  student374Languagesfemale30344787
                                                  student375Mathematicsmale9694152
                                                  student376Languagesfemale85432992
                                                  student377Mathematicsmale7904025
                                                  student378Languagesfemale36407285
                                                  student379Mathematicsmale5368882
                                                  student380Languagesfemale87783879
                                                  student381Mathematicsmale89978338
                                                  student382Languagesfemale21194910
                                                  student383Mathematicsmale47126850
                                                  student384Languagesfemale37124995
                                                  student385Mathematicsmale8408851
                                                  student386Languagesfemale89612748
                                                  student387Mathematicsmale10478761
                                                  student388Languagesfemale1692656
                                                  student389Mathematicsmale57331347
                                                  student390Languagesfemale90357775
                                                  student391Mathematicsmale31474753
                                                  student392Languagesfemale942412
                                                  student393Mathematicsmale6119817
                                                  student394Languagesfemale457577
                                                  student395Mathematicsmale6729212
                                                  student396Languagesfemale516456
                                                  student397Mathematicsmale93147714
                                                  student398Languagesfemale1893427
                                                  student399Mathematicsmale93775791
                                                  student400Languagesfemale67778032
                                                  student401Mathematicsmale5889417
                                                  student402Languagesfemale3056053
                                                  student403Mathematicsmale28253259
                                                  student404Languagesfemale62348164
                                                  student405Mathematicsmale29842623
                                                  student406Languagesfemale7086377
                                                  student407Mathematicsmale8654799
                                                  student408Languagesfemale9381089
                                                  student409Mathematicsmale84214658
                                                  student410Languagesfemale21841849
                                                  student411Mathematicsmale2796340
                                                  student412Languagesfemale9301991
                                                  student413Mathematicsmale31928743
                                                  student414Languagesfemale53259843
                                                  student415Mathematicsmale36758089
                                                  student416Languagesfemale37681254
                                                  student417Mathematicsmale25891253
                                                  student418Languagesfemale922846
                                                  student419Mathematicsmale11286058
                                                  student420Languagesfemale1373517
                                                  student421Mathematicsmale67303885
                                                  student422Languagesfemale68793441
                                                  student423Mathematicsmale72459341
                                                  student424Languagesfemale56464538
                                                  student425Mathematicsmale8621840
                                                  student426Languagesfemale99854119
                                                  student427Mathematicsmale7135389
                                                  student428Languagesfemale22911216
                                                  student429Mathematicsmale1532693
                                                  student430Languagesfemale35463474
                                                  student431Mathematicsmale33839720
                                                  student432Languagesfemale9920326
                                                  student433Mathematicsmale48428318
                                                  student434Languagesfemale4442530
                                                  student435Mathematicsmale78486045
                                                  student436Languagesfemale4757890
                                                  student437Mathematicsmale881210053
                                                  student438Languagesfemale4805160
                                                  student439Mathematicsmale70898516
                                                  student440Languagesfemale71943433
                                                  student441Mathematicsmale68137218
                                                  student442Languagesfemale7539721
                                                  student443Mathematicsmale65366087
                                                  student444Languagesfemale43212434
                                                  student445Mathematicsmale85776528
                                                  student446Languagesfemale61907891
                                                  student447Mathematicsmale9207812
                                                  student448Languagesfemale33306290
                                                  student449Mathematicsmale8616745
                                                  student450Languagesfemale100862423
                                                  student451Mathematicsmale1425645
                                                  student452Languagesfemale86399888
                                                  student453Mathematicsmale72687719
                                                  student454Languagesfemale94523100
                                                  student455Mathematicsmale34678979
                                                  student456Languagesfemale9204745
                                                  student457Mathematicsmale64582698
                                                  student458Languagesfemale439359100
                                                  student459Mathematicsmale82359781
                                                  student460Languagesfemale183524100
                                                  student461Mathematicsmale79804351
                                                  student462Languagesfemale56101767
                                                  student463Mathematicsmale36441485
                                                  student464Languagesfemale2640692
                                                  student465Mathematicsmale59934378
                                                  student466Languagesfemale7884883
                                                  student467Mathematicsmale41378060
                                                  student468Languagesfemale44279777
                                                  student469Mathematicsmale29196482
                                                  student470Languagesfemale50962746
                                                  student471Mathematicsmale49155145
                                                  student472Languagesfemale38353178
                                                  student473Mathematicsmale1802365
                                                  student474Languagesfemale91172376
                                                  student475Mathematicsmale57393563
                                                  student476Languagesfemale33736214
                                                  student477Mathematicsmale96168840
                                                  student478Languagesfemale30631613
                                                  student479Mathematicsmale74393787
                                                  student480Languagesfemale26369479
                                                  student481Mathematicsmale19586512
                                                  student482Languagesfemale73362248
                                                  student483Mathematicsmale7894757
                                                  student484Languagesfemale5951935
                                                  student485Mathematicsmale677110085
                                                  student486Languagesfemale33301546
                                                  student487Mathematicsmale12191637
                                                  student488Languagesfemale80982914
                                                  student489Mathematicsmale70511431
                                                  student490Languagesfemale95381592
                                                  student491Mathematicsmale60317412
                                                  student492Languagesfemale62569068
                                                  student493Mathematicsmale63112991
                                                  student494Languagesfemale4112520
                                                  student495Mathematicsmale6053144
                                                  student496Languagesfemale1135528
                                                  student497Mathematicsmale11964237
                                                  student498Languagesfemale16727974
                                                  student499Mathematicsmale9212266
                                                  student500Languagesfemale34226434
                                                  student501Mathematicsmale50938661
                                                  student502Languagesfemale50224044
                                                  student503Mathematicsmale383917
                                                  student504Languagesfemale98169355
                                                  student505Mathematicsmale86893628
                                                  student506Languagesfemale16531350
                                                  student507Mathematicsmale5757338
                                                  student508Languagesfemale34796977
                                                  student509Mathematicsmale241659
                                                  student510Languagesfemale606299100
                                                  student511Mathematicsmale65525295
                                                  student512Languagesfemale5873941
                                                  student513Mathematicsmale39752876
                                                  student514Languagesfemale4666478
                                                  student515Mathematicsmale5160998
                                                  student516Languagesfemale17201297
                                                  student517Mathematicsmale72179673
                                                  student518Languagesfemale92216227
                                                  student519Mathematicsmale5042433
                                                  student520Languagesfemale5237157
                                                  student521Mathematicsmale58403554
                                                  student522Languagesfemale9385753
                                                  student523Mathematicsmale79201818
                                                  student524Languagesfemale149427
                                                  student525Mathematicsmale95412998
                                                  student526Languagesfemale3459921
                                                  student527Mathematicsmale39664129
                                                  student528Languagesfemale328125
                                                  student529Mathematicsmale33443785
                                                  student530Languagesfemale69255979
                                                  student531Mathematicsmale13504952
                                                  student532Languagesfemale54834531
                                                  student533Mathematicsmale15249751
                                                  student534Languagesfemale7516963
                                                  student535Mathematicsmale9183856
                                                  student536Languagesfemale50137480
                                                  student537Mathematicsmale54757410
                                                  student538Languagesfemale76397046
                                                  student539Mathematicsmale84723940
                                                  student540Languagesfemale10047214
                                                  student541Mathematicsmale426111
                                                  student542Languagesfemale57716561
                                                  student543Mathematicsmale7854134
                                                  student544Languagesfemale14763647
                                                  student545Mathematicsmale15196396
                                                  student546Languagesfemale27823356
                                                  student547Mathematicsmale70239690
                                                  student548Languagesfemale612278
                                                  student549Mathematicsmale22376436
                                                  student550Languagesfemale75969440
                                                  student551Mathematicsmale4382921
                                                  student552Languagesfemale7968718
                                                  student553Mathematicsmale65765244
                                                  student554Languagesfemale41627354
                                                  student555Mathematicsmale25982140
                                                  student556Languagesfemale17709682
                                                  student557Mathematicsmale43912743
                                                  student558Languagesfemale33372433
                                                  student559Mathematicsmale87871031
                                                  student560Languagesfemale48409774
                                                  student561Mathematicsmale63759155
                                                  student562Languagesfemale66825995
                                                  student563Mathematicsmale21955838
                                                  student564Languagesfemale9299745
                                                  student565Mathematicsmale5979420
                                                  student566Languagesfemale64952412
                                                  student567Mathematicsmale70463674
                                                  student568Languagesfemale16259149
                                                  student569Mathematicsmale73332488
                                                  student570Languagesfemale9619527
                                                  student571Mathematicsmale18127646
                                                  student572Languagesfemale61714963
                                                  student573Mathematicsmale46328517
                                                  student574Languagesfemale42421137
                                                  student575Mathematicsmale49764120
                                                  student576Languagesfemale22278012
                                                  student577Mathematicsmale76341866
                                                  student578Languagesfemale96772917
                                                  student579Mathematicsmale62516772
                                                  student580Languagesfemale96672254
                                                  student581Mathematicsmale77112388
                                                  student582Languagesfemale6282433
                                                  student583Mathematicsmale392312100
                                                  student584Languagesfemale10212071
                                                  student585Mathematicsmale11277100
                                                  student586Languagesfemale40349778
                                                  student587Mathematicsmale2518319
                                                  student588Languagesfemale18763025
                                                  student589Mathematicsmale24574681
                                                  student590Languagesfemale2103194
                                                  student591Mathematicsmale91847513
                                                  student592Languagesfemale79449710
                                                  student593Mathematicsmale42606730
                                                  student594Languagesfemale61577535
                                                  student595Mathematicsmale42468171
                                                  student596Languagesfemale92637574
                                                  student597Mathematicsmale86374051
                                                  student598Languagesfemale5210473
                                                  student599Mathematicsmale100281476
                                                  student600Languagesfemale31762043
                                                  student601Mathematicsmale402766
                                                  student602Languagesfemale587921
                                                  student603Mathematicsmale754691
                                                  student604Languagesfemale2830153
                                                  student605Mathematicsmale38939892
                                                  student606Languagesfemale43968991
                                                  student607Mathematicsmale43491483
                                                  student608Languagesfemale50617298
                                                  student609Mathematicsmale4499983
                                                  student610Languagesfemale5367382
                                                  student611Mathematicsmale40849954
                                                  student612Languagesfemale29966569
                                                  student613Mathematicsmale1276599
                                                  student614Languagesfemale4783494
                                                  student615Mathematicsmale3727224
                                                  student616Languagesfemale94394924
                                                  student617Mathematicsmale0752141
                                                  student618Languagesfemale5936418
                                                  student619Mathematicsmale2266133
                                                  student620Languagesfemale4387448
                                                  student621Mathematicsmale100155152
                                                  student622Languagesfemale63719917
                                                  student623Mathematicsmale143444100
                                                  student624Languagesfemale2385727
                                                  student625Mathematicsmale23143240
                                                  student626Languagesfemale34497254
                                                  student627Mathematicsmale21168126
                                                  student628Languagesfemale54693434
                                                  student629Mathematicsmale72116331
                                                  student630Languagesfemale8798947
                                                  student631Mathematicsmale43525358
                                                  student632Languagesfemale5014420
                                                  student633Mathematicsmale89836787
                                                  student634Languagesfemale079916
                                                  student635Mathematicsmale59178458
                                                  student636Languagesfemale94953660
                                                  student637Mathematicsmale39426346
                                                  student638Languagesfemale019610
                                                  student639Mathematicsmale50164171
                                                  student640Languagesfemale8604613
                                                  student641Mathematicsmale45855936
                                                  student642Languagesfemale8335057
                                                  student643Mathematicsmale8306014
                                                  student644Languagesfemale76807338
                                                  student645Mathematicsmale2614582
                                                  student646Languagesfemale9316422
                                                  student647Mathematicsmale85947616
                                                  student648Languagesfemale57453216
                                                  student649Mathematicsmale16169013
                                                  student650Languagesfemale4331887
                                                  student651Mathematicsmale16243244
                                                  student652Languagesfemale5998334
                                                  student653Mathematicsmale73184783
                                                  student654Languagesfemale992510093
                                                  student655Mathematicsmale0739784
                                                  student656Languagesfemale0289475
                                                  student657Mathematicsmale65905863
                                                  student658Languagesfemale84358641
                                                  student659Mathematicsmale4539599
                                                  student660Languagesfemale32103162
                                                  student661Mathematicsmale61285461
                                                  student662Languagesfemale70961454
                                                  student663Mathematicsmale6392298
                                                  student664Languagesfemale41104623
                                                  student665Mathematicsmale81918021
                                                  student666Languagesfemale79716568
                                                  student667Mathematicsmale47691890
                                                  student668Languagesfemale2616700
                                                  student669Mathematicsmale66109335
                                                  student670Languagesfemale66682713
                                                  student671Mathematicsmale86792645
                                                  student672Languagesfemale50532574
                                                  student673Mathematicsmale9753914
                                                  student674Languagesfemale28796942
                                                  student675Mathematicsmale607259
                                                  student676Languagesfemale53213943
                                                  student677Mathematicsmale37654591
                                                  student678Languagesfemale76806027
                                                  student679Mathematicsmale85273455
                                                  student680Languagesfemale66114117
                                                  student681Mathematicsmale27618982
                                                  student682Languagesfemale402613
                                                  student683Mathematicsmale2516695
                                                  student684Languagesfemale63448563
                                                  student685Mathematicsmale97957883
                                                  student686Languagesfemale5121387
                                                  student687Mathematicsmale63928723
                                                  student688Languagesfemale22965959
                                                  student689Mathematicsmale33801523
                                                  student690Languagesfemale34751924
                                                  student691Mathematicsmale36684854
                                                  student692Languagesfemale32362012
                                                  student693Mathematicsmale68917450
                                                  student694Languagesfemale87919637
                                                  student695Mathematicsmale239144
                                                  student696Languagesfemale9462977
                                                  student697Mathematicsmale1474575
                                                  student698Languagesfemale73921990
                                                  student699Mathematicsmale8207978
                                                  student700Languagesfemale763510039
                                                  student701Mathematicsmale27518949
                                                  student702Languagesfemale0647237
                                                  student703Mathematicsmale93469487
                                                  student704Languagesfemale6922172
                                                  student705Mathematicsmale1752113
                                                  student706Languagesfemale1325219
                                                  student707Mathematicsmale75617273
                                                  student708Languagesfemale8437736
                                                  student709Mathematicsmale81194514
                                                  student710Languagesfemale62173927
                                                  student711Mathematicsmale8869681
                                                  student712Languagesfemale53825929
                                                  student713Mathematicsmale83347134
                                                  student714Languagesfemale9552614
                                                  student715Mathematicsmale6715313
                                                  student716Languagesfemale8297825
                                                  student717Mathematicsmale65503146
                                                  student718Languagesfemale27462537
                                                  student719Mathematicsmale98423544
                                                  student720Languagesfemale9014444
                                                  student721Mathematicsmale3168293
                                                  student722Languagesfemale3434370
                                                  student723Mathematicsmale59771421
                                                  student724Languagesfemale16535759
                                                  student725Mathematicsmale7914416
                                                  student726Languagesfemale108199
                                                  student727Mathematicsmale89487916
                                                  student728Languagesfemale8872387
                                                  student729Mathematicsmale17539584
                                                  student730Languagesfemale65523961
                                                  student731Mathematicsmale44309672
                                                  student732Languagesfemale70793233
                                                  student733Mathematicsmale30474611
                                                  student734Languagesfemale761001649
                                                  student735Mathematicsmale39369089
                                                  student736Languagesfemale1941929
                                                  student737Mathematicsmale23737887
                                                  student738Languagesfemale87714464
                                                  student739Mathematicsmale22198220
                                                  student740Languagesfemale94526739
                                                  student741Mathematicsmale14175187
                                                  student742Languagesfemale5663983
                                                  student743Mathematicsmale99924698
                                                  student744Languagesfemale19768388
                                                  student745Mathematicsmale15776881
                                                  student746Languagesfemale48814838
                                                  student747Mathematicsmale2913861
                                                  student748Languagesfemale7163030
                                                  student749Mathematicsmale19683053
                                                  student750Languagesfemale91182762
                                                  student751Mathematicsmale73333836
                                                  student752Languagesfemale99387550
                                                  student753Mathematicsmale55713490
                                                  student754Languagesfemale52409883
                                                  student755Mathematicsmale1463611
                                                  student756Languagesfemale1319496
                                                  student757Mathematicsmale49665592
                                                  student758Languagesfemale0198082
                                                  student759Mathematicsmale2635873
                                                  student760Languagesfemale8287639
                                                  student761Mathematicsmale52118357
                                                  student762Languagesfemale83688425
                                                  student763Mathematicsmale1725670
                                                  student764Languagesfemale1758084
                                                  student765Mathematicsmale7564785
                                                  student766Languagesfemale76329339
                                                  student767Mathematicsmale20758465
                                                  student768Languagesfemale25471289
                                                  student769Mathematicsmale86947945
                                                  student770Languagesfemale65815535
                                                  student771Mathematicsmale62414143
                                                  student772Languagesfemale1446243
                                                  student773Mathematicsmale17557278
                                                  student774Languagesfemale9546356
                                                  student775Mathematicsmale7205648
                                                  student776Languagesfemale30881956
                                                  student777Mathematicsmale42448856
                                                  student778Languagesfemale42695663
                                                  student779Mathematicsmale7857783
                                                  student780Languagesfemale15862498
                                                  student781Mathematicsmale4684369
                                                  student782Languagesfemale67981552
                                                  student783Mathematicsmale33326357
                                                  student784Languagesfemale35951653
                                                  student785Mathematicsmale78545482
                                                  student786Languagesfemale8185914
                                                  student787Mathematicsmale42412314
                                                  student788Languagesfemale591008636
                                                  student789Mathematicsmale1926012
                                                  student790Languagesfemale10034570
                                                  student791Mathematicsmale381217
                                                  student792Languagesfemale3155193
                                                  student793Mathematicsmale11339877
                                                  student794Languagesfemale461786
                                                  student795Mathematicsmale5786727
                                                  student796Languagesfemale5746236
                                                  student797Mathematicsmale57676661
                                                  student798Languagesfemale93888725
                                                  student799Mathematicsmale59966441
                                                  student800Languagesfemale6276923
                                                  student801Mathematicsmale35833255
                                                  student802Languagesfemale42581583
                                                  student803Mathematicsmale41904012
                                                  student804Languagesfemale8143837
                                                  student805Mathematicsmale87773320
                                                  student806Languagesfemale53873037
                                                  student807Mathematicsmale13358516
                                                  student808Languagesfemale20829034
                                                  student809Mathematicsmale5821614
                                                  student810Languagesfemale14282356
                                                  student811Mathematicsmale4997368
                                                  student812Languagesfemale31461163
                                                  student813Mathematicsmale7497643
                                                  student814Languagesfemale42839575
                                                  student815Mathematicsmale2654529
                                                  student816Languagesfemale79596988
                                                  student817Mathematicsmale68182684
                                                  student818Languagesfemale39139915
                                                  student819Mathematicsmale2248716
                                                  student820Languagesfemale12538811
                                                  student821Mathematicsmale33908029
                                                  student822Languagesfemale3795486
                                                  student823Mathematicsmale9178851
                                                  student824Languagesfemale31586731
                                                  student825Mathematicsmale22305098
                                                  student826Languagesfemale55585610
                                                  student827Mathematicsmale56765753
                                                  student828Languagesfemale1129881
                                                  student829Mathematicsmale67926671
                                                  student830Languagesfemale30614449
                                                  student831Mathematicsmale0414461
                                                  student832Languagesfemale72524585
                                                  student833Mathematicsmale60991294
                                                  student834Languagesfemale83587542
                                                  student835Mathematicsmale9505377
                                                  student836Languagesfemale33287062
                                                  student837Mathematicsmale3982755
                                                  student838Languagesfemale411004547
                                                  student839Mathematicsmale81692729
                                                  student840Languagesfemale9012649
                                                  student841Mathematicsmale45382034
                                                  student842Languagesfemale325311
                                                  student843Mathematicsmale55778649
                                                  student844Languagesfemale61609176
                                                  student845Mathematicsmale8085749
                                                  student846Languagesfemale63897371
                                                  student847Mathematicsmale79159742
                                                  student848Languagesfemale99187343
                                                  student849Mathematicsmale30523856
                                                  student850Languagesfemale65866734
                                                  student851Mathematicsmale7343655
                                                  student852Languagesfemale42435173
                                                  student853Mathematicsmale870980
                                                  student854Languagesfemale29411245
                                                  student855Mathematicsmale5739090
                                                  student856Languagesfemale80529654
                                                  student857Mathematicsmale43838246
                                                  student858Languagesfemale7917131
                                                  student859Mathematicsmale6813707
                                                  student860Languagesfemale51441552
                                                  student861Mathematicsmale9170178
                                                  student862Languagesfemale4116578
                                                  student863Mathematicsmale20635585
                                                  student864Languagesfemale5938726
                                                  student865Mathematicsmale4894432
                                                  student866Languagesfemale26679839
                                                  student867Mathematicsmale48793866
                                                  student868Languagesfemale1632153
                                                  student869Mathematicsmale13205085
                                                  student870Languagesfemale4922039
                                                  student871Mathematicsmale8262353
                                                  student872Languagesfemale6607464
                                                  student873Mathematicsmale66483914
                                                  student874Languagesfemale43833100
                                                  student875Mathematicsmale214990
                                                  student876Languagesfemale79807180
                                                  student877Mathematicsmale84252688
                                                  student878Languagesfemale38466660
                                                  student879Mathematicsmale35279851
                                                  student880Languagesfemale5759267
                                                  student881Mathematicsmale7687788
                                                  student882Languagesfemale2140817
                                                  student883Mathematicsmale5046866
                                                  student884Languagesfemale83863092
                                                  student885Mathematicsmale63466694
                                                  student886Languagesfemale7671262
                                                  student887Mathematicsmale7418686
                                                  student888Languagesfemale65774488
                                                  student889Mathematicsmale67326119
                                                  student890Languagesfemale85968541
                                                  student891Mathematicsmale1487705
                                                  student892Languagesfemale81284528
                                                  student893Mathematicsmale9191883
                                                  student894Languagesfemale407024
                                                  student895Mathematicsmale18195189
                                                  student896Languagesfemale70352512
                                                  student897Mathematicsmale7290741
                                                  student898Languagesfemale8417186
                                                  student899Mathematicsmale1423886
                                                  student900Languagesfemale7837601
                                                  student901Mathematicsmale66953168
                                                  student902Languagesfemale23608065
                                                  student903Mathematicsmale76896396
                                                  student904Languagesfemale3469070
                                                  student905Mathematicsmale65449679
                                                  student906Languagesfemale6877865
                                                  student907Mathematicsmale86619943
                                                  student908Languagesfemale88953213
                                                  student909Mathematicsmale531005982
                                                  student910Languagesfemale3579535
                                                  student911Mathematicsmale230177
                                                  student912Languagesfemale9687263
                                                  student913Mathematicsmale23923996
                                                  student914Languagesfemale9497658
                                                  student915Mathematicsmale49312971
                                                  student916Languagesfemale21577957
                                                  student917Mathematicsmale03510089
                                                  student918Languagesfemale64827552
                                                  student919Mathematicsmale16666968
                                                  student920Languagesfemale92951127
                                                  student921Mathematicsmale16888590
                                                  student922Languagesfemale56152698
                                                  student923Mathematicsmale78274017
                                                  student924Languagesfemale95104432
                                                  student925Mathematicsmale99855218
                                                  student926Languagesfemale73317149
                                                  student927Mathematicsmale21791063
                                                  student928Languagesfemale92718012
                                                  student929Mathematicsmale23293388
                                                  student930Languagesfemale4189884
                                                  student931Mathematicsmale97177921
                                                  student932Languagesfemale72409392
                                                  student933Mathematicsmale7558326
                                                  student934Languagesfemale15982728
                                                  student935Mathematicsmale7688806
                                                  student936Languagesfemale84234292
                                                  student937Mathematicsmale71568671
                                                  student938Languagesfemale7395822
                                                  student939Mathematicsmale1555460
                                                  student940Languagesfemale2031308
                                                  student941Mathematicsmale97544181
                                                  student942Languagesfemale83418664
                                                  student943Mathematicsmale7195327
                                                  student944Languagesfemale0273091
                                                  student945Mathematicsmale99751722
                                                  student946Languagesfemale92531090
                                                  student947Mathematicsmale4449432
                                                  student948Languagesfemale0974879
                                                  student949Mathematicsmale97557974
                                                  student950Languagesfemale6598932
                                                  student951Mathematicsmale56733881
                                                  student952Languagesfemale84946150
                                                  student953Mathematicsmale4820770
                                                  student954Languagesfemale39981420
                                                  student955Mathematicsmale4152465
                                                  student956Languagesfemale78229231
                                                  student957Mathematicsmale28382654
                                                  student958Languagesfemale49613554
                                                  student959Mathematicsmale81152817
                                                  student960Languagesfemale5480582
                                                  student961Mathematicsmale7523537
                                                  student962Languagesfemale5565120
                                                  student963Mathematicsmale86427036
                                                  student964Languagesfemale54455480
                                                  student965Mathematicsmale38186992
                                                  student966Languagesfemale33894683
                                                  student967Mathematicsmale4395576
                                                  student968Languagesfemale13261286
                                                  student969Mathematicsmale94228559
                                                  student970Languagesfemale9358610
                                                  student971Mathematicsmale35728536
                                                  student972Languagesfemale37519693
                                                  student973Mathematicsmale71107959
                                                  student974Languagesfemale71317393
                                                  student975Mathematicsmale80268697
                                                  student976Languagesfemale69216769
                                                  student977Mathematicsmale38861039
                                                  student978Languagesfemale48903981
                                                  student979Mathematicsmale9083342
                                                  student980Languagesfemale1919184
                                                  student981Mathematicsmale98255046
                                                  student982Languagesfemale38882116
                                                  student983Mathematicsmale71481843
                                                  student984Languagesfemale79851816
                                                  student985Mathematicsmale51669068
                                                  student986Languagesfemale100956591
                                                  student987Mathematicsmale6742424
                                                  student988Languagesfemale93809435
                                                  student989Mathematicsmale65785794
                                                  student990Languagesfemale27922191
                                                  student991Mathematicsmale77152676
                                                  student992Languagesfemale28845167
                                                  student993Mathematicsmale3786250
                                                  student994Languagesfemale59772074
                                                  student995Mathematicsmale6266875
                                                  student996Languagesfemale88703343
                                                  student997Mathematicsmale73334253
                                                  student998Languagesfemale6410231
                                                  student999Mathematicsmale91931635
                                                  student1000Mathematicsmale8277079
                                                  - -

                                                  Javascript

                                                  -
                                                  -
                                                  
                                                  -	
                                                  -

                                                  HTML

                                                  -
                                                  -
                                                  <table class="tablesorter">
                                                  -	<thead>
                                                  -		<tr><th>Name</th><th>Major</th><th>Sex</th><th>English</th><th>Japanese</th><th>Calculus</th><th>Geometry</th></tr>
                                                  -	</thead>
                                                  -	<tfoot>
                                                  -		<tr><th>Name</th><th>Major</th><th>Sex</th><th>English</th><th>Japanese</th><th>Calculus</th><th>Geometry</th></tr>
                                                  -		<tr>
                                                  -			<td colspan="7">
                                                  -				<div class="pager">
                                                  -					<nav class="left">
                                                  -						# per page:
                                                  -						<a href="#" class="current">10</a> |
                                                  -						<a href="#">25</a> |
                                                  -						<a href="#">50</a> |
                                                  -						<a href="#">100</a>
                                                  -					</nav>
                                                  -					<nav class="right">
                                                  -						<span class="prev">
                                                  -							<img src="icons/prev.png" /> Prev&nbsp;
                                                  -						</span>
                                                  -						<span class="pagecount"></span>
                                                  -						&nbsp;<span class="next">Next
                                                  -							<img src="icons/next.png" />
                                                  -						</span>
                                                  -					</nav>
                                                  -				</div>
                                                  -			</td>
                                                  -		</tr>
                                                  -	</tfoot>
                                                  -	<tbody>
                                                  -		<tr><td>Student01</td><td>Languages</td><td>male</td><td>80</td><td>70</td><td>75</td><td>80</td></tr>
                                                  -		<tr><td>Student02</td><td>Mathematics</td><td>male</td><td>90</td><td>88</td><td>100</td><td>90</td></tr>
                                                  -		<tr><td>Student03</td><td>Languages</td><td>female</td><td>85</td><td>95</td><td>80</td><td>85</td></tr>
                                                  -		<tr><td>Student04</td><td>Languages</td><td>male</td><td>60</td><td>55</td><td>100</td><td>100</td></tr>
                                                  -		<tr><td>Student05</td><td>Languages</td><td>female</td><td>68</td><td>80</td><td>95</td><td>80</td></tr>
                                                  -		<tr><td>Student06</td><td>Mathematics</td><td>male</td><td>100</td><td>99</td><td>100</td><td>90</td></tr>
                                                  -		<tr><td>Student07</td><td>Mathematics</td><td>male</td><td>85</td><td>68</td><td>90</td><td>90</td></tr>
                                                  -		<tr><td>Student08</td><td>Languages</td><td>male</td><td>100</td><td>90</td><td>90</td><td>85</td></tr>
                                                  -		<tr><td>Student09</td><td>Mathematics</td><td>male</td><td>80</td><td>50</td><td>65</td><td>75</td></tr>
                                                  -		<tr><td>Student10</td><td>Languages</td><td>male</td><td>85</td><td>100</td><td>100</td><td>90</td></tr>
                                                  -		<!-- ... -->
                                                  -		<tr><td>student999</td><td>Mathematics</td><td>male</td><td>91</td><td>93</td><td>16</td><td>35</td></tr>
                                                  -	</tbody>
                                                  -</table>
                                                  -
                                                  - -
                                                  - - - - diff --git a/vendor/FHC-vendor/jquery-tablesorter/beta-testing/example-widget-column-reorder.html b/vendor/FHC-vendor/jquery-tablesorter/beta-testing/example-widget-column-reorder.html deleted file mode 100644 index 981ea21ac..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/beta-testing/example-widget-column-reorder.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - jQuery plugin: Tablesorter 2.0 - Column reorder Widget - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                  - -

                                                  - NOTE! -

                                                    -
                                                  • Column reorder - beta testing.
                                                  • -
                                                  • Does not yet work properly with sticky headers - reorder second table while top table sticky header is active, then scroll...
                                                  • -
                                                  -

                                                  - -

                                                  Javascript

                                                  -
                                                  -
                                                  
                                                  -	
                                                  - -

                                                  CSS

                                                  -
                                                  -
                                                  
                                                  -	
                                                  - -

                                                  Demo

                                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                  Student Grades
                                                  Name (0)Major (1)Sex (2)English (3)Japanese (4)Calculus (5)Geometry (6)
                                                  NameMajorSexEnglishJapaneseCalculusGeometry
                                                  Student01 (0)Languages (1)male (2)80 (3)70 (4)75 (5)80 (6)
                                                  Student02Mathematicsmale908810090
                                                  Student03Languagesfemale85958085
                                                  Student04Languagesmale6055100100
                                                  Student05Languagesfemale68809580
                                                  Student06Mathematicsmale1009910090
                                                  Student07Mathematicsmale85689090
                                                  Student08Languagesmale100909085
                                                  Student09Mathematicsmale80506575
                                                  Student10Languagesmale8510010090
                                                  Student11Languagesmale8685100100
                                                  Student12Mathematicsfemale100757085
                                                  Student13Languagesfemale1008010090
                                                  Student14Languagesfemale50455590
                                                  Student15Languagesmale953510090
                                                  Student16Languagesfemale100503070
                                                  Student17Languagesfemale801005565
                                                  Student18Mathematicsmale30495575
                                                  Student19Languagesmale68908870
                                                  Student20Mathematicsmale40454080
                                                  Student21Languagesmale5045100100
                                                  Student22Mathematicsmale1009910090
                                                  Student23Languagesfemale85808080
                                                  - -
                                                  - - - - - - - - - - - - - - - - - - - - - -
                                                  Account #First NameLast NameAgeTotalDiscountDiff
                                                  A43PeterParker289.9920.3%+3
                                                  A255JohnHood3319.9925.1%-7
                                                  A33ClarkKent1815.4944.2%-13
                                                  A11BruceAlmighty45153.1944%+19
                                                  A102BruceEvans56153.1923%+9
                                                  A23MikePeters225.6920.3%+2
                                                  A55LeslieKent3315.9925.1%-3
                                                  A3FrankMint4412.5944.2%-12
                                                  A21JoeThomas4515.2544%+12
                                                  A12TessEvans6613.5923%+4
                                                  A21PeterDunn122.9921.1%+2
                                                  A33HarryJones1319.4922.2%-6
                                                  A13JohnJames1613.8942.1%-13
                                                  A71NickParker4513.8944%+29
                                                  A21CharlesDunn1915.4922%+3
                                                  -
                                                  - -
                                                  - - -
                                                  - - - - diff --git a/vendor/FHC-vendor/jquery-tablesorter/beta-testing/pager-custom-controls.js b/vendor/FHC-vendor/jquery-tablesorter/beta-testing/pager-custom-controls.js deleted file mode 100644 index 07d6beb43..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/beta-testing/pager-custom-controls.js +++ /dev/null @@ -1,102 +0,0 @@ -/*! - * custom pager controls (beta) for TableSorter 9/15/2014 (v2.17.8) - updated 3/26/2015 (v2.21.3) - initialize custom pager script BEFORE initializing tablesorter/tablesorter pager - custom pager looks like this: - 1 | 2 … 5 | 6 | 7 … 99 | 100 - _ _ _ _ adjacentSpacer - _ _ distanceSpacer - _____ ________ ends (2 default) - _________ aroundCurrent (1 default) - - */ -/*jshint browser:true, jquery:true, unused:false, loopfunc:true */ -/*global jQuery: false */ - -;(function($){ -"use strict"; - -$.tablesorter = $.tablesorter || {}; - -$.tablesorter.customPagerControls = function(settings) { - var defaults = { - table : 'table', - pager : '.pager', - pageSize : '.left a', - currentPage : '.right a', - ends : 2, // number of pages to show of either end - aroundCurrent : 1, // number of pages surrounding the current page - link : '{page}', // page element; use {page} to include the page number - currentClass : 'current', // current page class name - adjacentSpacer : ' | ', // spacer for page numbers next to each other - distanceSpacer : ' … ', // spacer for page numbers away from each other (ellipsis) - addKeyboard : true // add left/right keyboard arrows to change current page - }, - options = $.extend({}, defaults, settings), - $table = $(options.table), - $pager = $(options.pager); - - $table - .on('pagerInitialized pagerComplete', function (e, c) { - var indx, - p = c.pager ? c.pager : c, // using widget - pages = $('
                                                  '), - pageArray = [], - cur = p.page + 1, - start = cur > 1 ? (p.filteredPages - cur < options.aroundCurrent ? -(options.aroundCurrent + 1) + (p.filteredPages - cur) : -options.aroundCurrent) : 0, - end = cur < options.aroundCurrent + 1 ? options.aroundCurrent + 3 - cur : options.aroundCurrent + 1; - for (indx = start; indx < end; indx++) { - if (cur + indx >= 1 && cur + indx < p.filteredPages) { pageArray.push( cur + indx ); } - } - if (pageArray.length) { - // include first and last pages (ends) in the pagination - for (indx = 0; indx < options.ends; indx++){ - if ($.inArray(indx + 1, pageArray) === -1) { pageArray.push(indx + 1); } - if ($.inArray(p.filteredPages - indx, pageArray) === -1) { pageArray.push(p.filteredPages - indx); } - } - // sort the list - pageArray = pageArray.sort(function(a, b){ return a - b; }); - // make links and spacers - $.each(pageArray, function(indx, value){ - pages - .append( $(options.link.replace(/\{page\}/g, value)).toggleClass(options.currentClass, value === cur).attr('data-page', value) ) - .append( '' + (indx < pageArray.length - 1 && ( pageArray[ indx + 1 ] - 1 !== value ) ? options.distanceSpacer : - ( indx >= pageArray.length - 1 ? '' : options.adjacentSpacer )) + '' ); - }); - } - $pager.find('.pagecount').html(pages.html()); - }); - - // set up pager controls - $pager.find(options.pageSize).on('click', function () { - $(this) - .addClass(options.currentClass) - .siblings() - .removeClass(options.currentClass); - $table.trigger('pageSize', $(this).html()); - return false; - }).end() - .on('click', options.currentPage, function(){ - $(this) - .addClass(options.currentClass) - .siblings() - .removeClass(options.currentClass); - $table.trigger('pageSet', $(this).attr('data-page')); - return false; - }); - - // make right/left arrow keys work - if (options.addKeyboard) { - $(document).on('keydown', function(events){ - // ignore arrows inside form elements - if (/input|select|textarea/i.test(events.target.nodeName)) { return; } - if (events.which === 37) { - // left - $pager.find(options.currentPage).filter('.' + options.currentClass).prevAll(':not(span):first').click(); - } else if (events.which === 39) { - // right - $pager.find(options.currentPage).filter('.' + options.currentClass).nextAll(':not(span):first').click(); - } - }); - } -}; -})(jQuery); \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/beta-testing/widget-reorder.js b/vendor/FHC-vendor/jquery-tablesorter/beta-testing/widget-reorder.js deleted file mode 100644 index 1a7733fec..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/beta-testing/widget-reorder.js +++ /dev/null @@ -1,182 +0,0 @@ -/*! tablesorter column reorder - beta testing -* Requires tablesorter v2.8+ and jQuery 1.7+ -* by Rob Garrison -*/ -/*jshint browser:true, jquery:true, unused:false */ -/*global jQuery: false */ -;(function($){ - "use strict"; - -$.tablesorter.addWidget({ - id: 'reorder', - priority: 70, - options : { - reorder_axis : 'xy', // x or xy - reorder_delay : 300, - reorder_helperClass : 'tablesorter-reorder-helper', - reorder_helperBar : 'tablesorter-reorder-helper-bar', - reorder_noReorder : 'reorder-false', - reorder_blocked : 'reorder-block-left reorder-block-end', - reorder_complete : null // callback - }, - init: function(table, thisWidget, c, wo) { - var i, timer, $helper, $bar, clickOffset, - lastIndx = -1, - ts = $.tablesorter, - endIndex = -1, - startIndex = -1, - t = wo.reorder_blocked.split(' '), - noReorderLeft = t[0] || 'reorder-block-left', - noReorderLast = t[1] || 'reorder-block-end', - lastOffset = c.$headers.not('.' + noReorderLeft).first(), - offsets = c.$headers.map(function(i){ - var s, $t = $(this); - if ($t.hasClass(noReorderLeft)) { - s = lastOffset; - $t = s; - //lastOffset = $t; - } - lastOffset = $t; - return $t.offset().left; - }).get(), - len = offsets.length, - startReorder = function(e, $th){ - var p = $th.position(), - r = $th.parent().position(), - i = startIndex = $th.index(); - clickOffset = [ e.pageX - p.left, e.pageY - r.top ]; - $helper = c.$table.clone(); - $helper.find('> thead > tr:first').children('[data-column!=' + i + ']').remove(); - $helper.find('thead tr:gt(0), caption, colgroup, tbody, tfoot').remove(); - $helper - .css({ - position: 'absolute', - zIndex : 1, - left: p.left - clickOffset[0], - top: r.top - clickOffset[1], - width: $th.outerWidth() - }) - .appendTo('body') - .find('th, td').addClass(wo.reorder_helperClass); - $bar = $('
                                                  ') - .css({ - position : 'absolute', - top : c.$table.find('thead').offset().top, - height : $th.closest('thead').outerHeight() + c.$table.find('tbody').height() - }) - .appendTo('body'); - positionBar(e); - lastIndx = endIndex; - }, - positionBar = function(e){ - for (i = 0; i <= len; i++) { - if ( i > 0 && e.pageX < offsets[i-1] + (offsets[i] - offsets[i-1])/2 && !c.$headers.eq(i).hasClass(noReorderLeft) ) { - endIndex = i - 1; - // endIndex = offsets.lastIndexOf( offsets[i-1] ); // lastIndexOf not supported by IE8 and older - if (endIndex >= 0 && lastIndx === endIndex) { return false; } - lastIndx = endIndex; - if (c.debug) { - console.log( endIndex === 0 ? 'target before column 0' : endIndex === len ? 'target after last column' : 'target between columns ' + startIndex + ' and ' + endIndex); - } - $bar.css('left', offsets[i-1]); - return false; - } - } - if (endIndex < 0) { - endIndex = len; - $bar.css('left', offsets[len]); - } - }, - finishReorder = function(){ - $helper.remove(); - $bar.remove(); - // finish reorder - var adj, s = startIndex, - rows = c.$table.find('tr'), - cols; - startIndex = -1; // stop mousemove updates - if ( s > -1 && endIndex > -1 && s != endIndex && s + 1 !== endIndex ) { - adj = endIndex !== 0; - if (c.debug) { - console.log( 'Inserting column ' + s + (adj ? ' after' : ' before') + ' column ' + (endIndex - adj ? 1 : 0) ); - } - rows.each(function() { - cols = $(this).children(); - cols.eq(s)[ adj ? 'insertAfter' : 'insertBefore' ]( cols.eq( endIndex - (adj ? 1 : 0) ) ); - }); - cols = []; - // stored header info needs to be modified too! - for (i = 0; i < len; i++) { - if (i === s) { continue; } - if (i === endIndex - (adj ? 1 : 0)) { - if (!adj) { cols.push(c.headerContent[s]); } - cols.push(c.headerContent[i]); - if (adj) { cols.push(c.headerContent[s]); } - } else { - cols.push(c.headerContent[i]); - } - } - c.headerContent = cols; - // cols = c.headerContent.splice(s, 1); - // c.headerContent.splice(endIndex - (adj ? 1 : 0), 0, cols); - c.$table.trigger('updateAll', [ true, wo.reorder_complete ]); - } - endIndex = -1; - }, - mdown = function(e, el){ - var $t = $(el), evt = e; - if ($t.hasClass(wo.reorder_noReorder)) { return; } - timer = setTimeout(function(){ - $t.addClass('tablesorter-reorder'); - startReorder(evt, $t); - }, wo.reorder_delay); - }; - - console.log( c.$headers.last().hasClass(noReorderLast) ); - - if ( c.$headers.last().hasClass(noReorderLast) ) { - offsets.push( offsets[ offsets.length - 1 ] ); - } else { - offsets.push( c.$table.offset().left + c.$table.outerWidth() ); - } - - c.$headers.not('.' + wo.reorder_noReorder).bind('mousedown.reorder', function(e){ - mdown(e, this); - }); - - $(document) - .bind('mousemove.reorder', function(e){ - if (startIndex !== -1){ - var c = { left : e.pageX - clickOffset[0] }; - endIndex = -1; - if (/y/.test(wo.reorder_axis)) { - c.top = e.pageY - clickOffset[1]; - } - $helper.css(c); - positionBar(e); - } - }) - .add( c.$headers ) - .bind('mouseup.reorder', function(){ - clearTimeout(timer); - if (startIndex !== -1 && endIndex !== -1){ - finishReorder(); - } else { - startIndex = -1; - } - }); - - // has sticky headers? - c.$table.bind('stickyHeadersInit', function(){ - wo.$sticky.find('thead').children().not('.' + wo.reorder_noReorder).bind('mousedown.reorder', function(e){ - mdown(e, this); - }); - }); - - } -}); - -// add mouse coordinates -$x = $('#main h1:last'); $(document).mousemove(function(e){ $x.html( e.pageX ); }); - -})(jQuery); \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/bower.json b/vendor/FHC-vendor/jquery-tablesorter/bower.json deleted file mode 100644 index 6862657f1..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/bower.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "tablesorter", - "description": "tablesorter (FORK) is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. tablesorter can successfully parse and sort many types of data including linked data in a cell.", - "dependencies": { - "jquery": ">=1.2.6" - }, - "main": [ - "dist/js/jquery.tablesorter.combined.js", - "dist/css/theme.blue.min.css" - ], - "ignore": [ - "/node_modules", - "/bower_components", - "/.git", - "/addons", - "/beta-testing", - "/css", - "/docs", - "/js", - "/testing", - "/Gruntfile.js", - "/package.json", - "/*.txt", - "/*.md", - "/*.html", - "/tablesorter.jquery.json" - ] -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/changelog.txt b/vendor/FHC-vendor/jquery-tablesorter/changelog.txt deleted file mode 100644 index f8f1cf0e9..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/changelog.txt +++ /dev/null @@ -1,2 +0,0 @@ -Change log moved to the wiki documentation pages: -https://github.com/Mottie/tablesorter/wiki/Changes \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/bootstrap.less b/vendor/FHC-vendor/jquery-tablesorter/css/bootstrap.less deleted file mode 100644 index 1d712ca2f..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/bootstrap.less +++ /dev/null @@ -1,322 +0,0 @@ -/* Tablesorter Custom Bootstrap LESS Theme by Rob Garrison - -To create your own theme, modify the code below and run it through -a LESS compiler, like this one: http://leafo.net/lessphp/editor.html -or download less.js from http://lesscss.org/ - -Test out these custom less files live - Basic Theme : http://codepen.io/Mottie/pen/eqBbn - Bootstrap : http://codepen.io/Mottie/pen/Ltzpi - Metro Style : http://codepen.io/Mottie/pen/gCslk - -*/ - -/*** theme ***/ -@theme : tablesorter-bootstrap; - -/*** fonts ***/ -@tableHeaderFont : 14px bold Arial, Sans-serif; -@tableBodyFont : 14px "Helvetica Neue", Helvetica, Arial, sans-serif; - -/*** color definitions ***/ -/* for best results, only change the hue (240), - leave the saturation (60%) and luminosity (80%) alone - pick the color from here: http://hslpicker.com/#99E699 */ -@headerBackground : hsl(240, 60%, 80%); -@borderAndBackground : #cdcdcd; -@overallBorder : @borderAndBackground 1px solid; -@headerTextColor : #000; - -@bodyBackground : #fff; -@bodyTextColor : #000; - -@headerAsc : darken(spin(@headerBackground, 5), 10%); /* darken(@headerBackground, 10%); */ -@headerDesc : lighten(spin(@headerBackground, -5), 10%); /* desaturate(@headerAsc, 5%); */ - -@captionBackground : #fff; /* it might be best to match the document body background color here */ -@errorBackground : #e6bf99; /* ajax error message (added to thead) */ - -@filterCellBackground : #eee; -@filterElementTextColor: #333; -@filterElementBkgd : #fff; -@filterElementBorder : 1px solid #bbb; -@filterTransitionTime : 0.1s; -@filterRowHiddenHeight : 4px; /* becomes height using padding (so it's divided by 2) */ - -@overallPadding : 4px; -/* 20px should be slightly wider than the icon width to avoid overlap */ -@headerPadding : 4px 20px 4px 4px; -@headerMargin : 0 0 18px; - -/* url(icons/loading.gif); */ -@processingIcon : url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs='); - -/* zebra striping */ -.allRows { - background-color: @bodyBackground; - color: @bodyTextColor; -} -.evenRows { - background-color: lighten(@headerBackground, 35%); -} -.oddRows { - background-color: lighten(@headerBackground, 18%); -} - -/* hovered rows */ -.oddHovered { - background-color: desaturate(@headerBackground, 60%); -} -.evenHovered { - background-color: lighten( desaturate(@headerBackground, 60%), 10% ); -} - -/* Columns widget */ -@primaryOdd : spin(@headerBackground, 10); /* saturate( darken( desaturate(@headerBackground, 10%), 10% ), 30%); */ -@primaryEven : lighten( @primaryOdd, 10% ); -@secondaryOdd : @primaryEven; -@secondaryEven : lighten( @primaryEven, 5% ); -@tertiaryOdd : @secondaryEven; -@tertiaryEven : lighten( @secondaryEven, 5% ); - -/* Filter widget transition */ -.filterWidgetTransition { - -webkit-transition: line-height @filterTransitionTime ease; - -moz-transition: line-height @filterTransitionTime ease; - -o-transition: line-height @filterTransitionTime ease; - transition: line-height @filterTransitionTime ease; -} - -/*** icon block ***/ -.iconPosition { - font-size: 11px; - position: absolute; - right: 2px; - top: 50%; - margin-top: -7px; /* half the icon height; older IE doesn't like this */ - width: 14px; - height: 14px; - background-repeat: no-repeat; - line-height: 14px; -} - -/* black */ -@unsortedBlack : url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAMAAADOvxanAAAAVFBMVEUAAABCQkJZWVkZGRnJyckgICAZGRkZGRn8/PweHh4dHR0aGhoaGhpUVFQbGxvQ0NDc3NxMTExSUlIbGxvr6+s4ODhKSkogICAtLS00NDQzMzMnJydSEPrQAAAAGHRSTlMA1ssZRLgdAQbDyisqsZo8QdXUq0r9xPepSRwiAAAAX0lEQVQI13XHSQKAIAwEwQAKxn13Ev7/T2Pu9qmarJKPXIicI4PH4hxaKNrhm2S8bJK5h4YzKHrzJNtK6yYT/TdXzpS5zuYg4MSQYF6i4IHExdw1UVRi05HPrrvT53a+qyMFC9t04gcAAAAASUVORK5CYII=); - -/* white */ -@unsortedWhite : url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOBAMAAAALT/umAAAAKlBMVEUAAAD///////////////////////////////////////////////////+Gu8ovAAAADXRSTlMA4EXKBtQqvR0+sxmalc142gAAAFdJREFUCNdjYGDoamAAAjZbMxCVfvd6AgMDd+3du9UMDKx3hWSvMjBwXZww8RYDGuC53NB8h4GB8a617UUGBs7Yu3cjGRhYVO9eVQFKOskKOQApFmUgBwBZ+xXRTttNdAAAAABJRU5ErkJggg==); - -/* automatically choose the correct arrow/text color */ -.headerText (@a) when (lightness(@a) >= 50%) { - color: @headerTextColor; -} -.headerText (@a) when (lightness(@a) < 50%) { - color: lighten(@headerTextColor, 90%); -} -.unsorted (@a) when (lightness(@a) >= 50%) { - background-image: @unsortedBlack; - color: @headerTextColor; -} -.unsorted (@a) when (lightness(@a) < 50%) { - background-image: @unsortedWhite; - color: lighten(@headerTextColor, 90%); -} - -/* variable theme name - requires less.js 1.3+; - or just replace (!".@{theme}") with the contents of @theme -*/ -.@{theme} { - font: @tableBodyFont; - background-color: @borderAndBackground; - width: 100%; - - /* style th's outside of the thead */ - th, thead td { - font: @tableHeaderFont; - font-weight: bold; - background-color: @headerBackground; - .headerText(@headerBackground); - border-collapse: collapse; - margin: @headerMargin; - padding: @overallPadding; - } - - tbody td, tfoot th, tfoot td { - padding: @overallPadding; - vertical-align: top; - } - - /* style header */ - .tablesorter-header { - cursor: pointer; - } - - .tablesorter-header-inner { - position: relative; - padding: @headerPadding; - } - - /* bootstrap uses for icons */ - .tablesorter-header-inner i.tablesorter-icon { - .iconPosition - } - - .tablesorter-header.sorter-false { - background-image: none; - cursor: default; - - } - - .tablesorter-headerAsc { - background-color: @headerAsc; - } - - .tablesorter-headerDesc { - background-color: @headerDesc; - } - - .bootstrap-icon-unsorted { - .unsorted(@headerBackground); - } - - - /* tfoot */ - tfoot .tablesorter-headerAsc, - tfoot .tablesorter-headerDesc { - /* remove sort arrows from footer */ - background-image: none; - } - - /* optional disabled input styling */ - .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; - } - - /* body */ - tbody { - - td { - .allRows; - padding: @overallPadding; - vertical-align: top; - } - - /* Zebra Widget - row alternating colors */ - tr.odd > td { - .oddRows; - } - tr.even > td { - .evenRows; - } - - } - - /* hovered row colors - you'll need to add additional lines for - rows with more than 2 child rows - */ - tbody > tr.hover > td, - tbody > tr:hover > td, - tbody > tr:hover + tr.tablesorter-childRow > td, - tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, - tbody > tr.even.hover > td, - tbody > tr.even:hover > td, - tbody > tr.even:hover + tr.tablesorter-childRow > td, - tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - .evenHovered; - } - tbody > tr.odd.hover > td, - tbody > tr.odd:hover > td, - tbody > tr.odd:hover + tr.tablesorter-childRow > td, - tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - .oddHovered; - } - - /* table processing indicator - indeterminate spinner */ - .tablesorter-processing { - background-image: @processingIcon; - background-position: center center; - background-repeat: no-repeat; - } - - /* Column Widget - column sort colors */ - tr.odd td.primary { - background-color: @primaryOdd; - } - td.primary, tr.even td.primary { - background-color: @primaryEven; - } - tr.odd td.secondary { - background-color: @secondaryOdd; - } - td.secondary, tr.even td.secondary { - background-color: @secondaryEven; - } - tr.odd td.tertiary { - background-color: @tertiaryOdd; - } - td.tertiary, tr.even td.tertiary { - background-color: @tertiaryEven; - } - - /* caption (non-theme matching) */ - caption { - background-color: @captionBackground ; - } - - /* filter widget */ - .tablesorter-filter-row input, - .tablesorter-filter-row select{ - width: 98%; - margin: 0; - padding: @overallPadding; - color: @filterElementTextColor; - background-color: @filterElementBkgd; - border: @filterElementBorder; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - .filterWidgetTransition; - } - .tablesorter-filter-row { - background-color: @filterCellBackground; - } - .tablesorter-filter-row td { - text-align: center; - background-color: @filterCellBackground; - line-height: normal; - text-align: center; /* center the input */ - .filterWidgetTransition; - } - /* hidden filter row */ - .tablesorter-filter-row.hideme td { - padding: @filterRowHiddenHeight / 2; - margin: 0; - line-height: 0; - cursor: pointer; - } - .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); - } - /* rows hidden by filtering (needed for child rows) */ - .filtered { - display: none; - } - - /* ajax error row */ - .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: @errorBackground; - } - -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/dragtable.mod.css b/vendor/FHC-vendor/jquery-tablesorter/css/dragtable.mod.css deleted file mode 100644 index e8b59d39e..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/dragtable.mod.css +++ /dev/null @@ -1,64 +0,0 @@ -/* - * dragtable - * @Version 2.0.14 MOD - * default css - */ -.dragtable-sortable { - list-style-type: none; - margin: 0; - padding: 0; - -moz-user-select: none; - z-index: 10; -} -.dragtable-sortable li { - margin: 0; - padding: 0; - float: left; - font-size: 1em; -} -.dragtable-sortable table { - margin-top: 0; -} -.dragtable-sortable th, .dragtable-sortable td { - border-left: 0px; -} -.dragtable-sortable li:first-child th, .dragtable-sortable li:first-child td { - border-left: 1px solid #CCC; -} -.dragtable-handle-selected { - /* table-handle class while actively dragging a column */ -} -.ui-sortable-helper { - opacity: 0.7; - filter: alpha(opacity=70); -} -.ui-sortable-placeholder { - -moz-box-shadow: 4px 5px 4px rgba(0,0,0,0.2) inset; - -webkit-box-shadow: 4px 5px 4px rgba(0,0,0,0.2) inset; - box-shadow: 4px 5px 4px rgba(0,0,0,0.2) inset; - border-bottom: 1px solid rgba(0,0,0,0.2); - border-top: 1px solid rgba(0,0,0,0.2); - visibility: visible !important; - /* change the background color here to match the tablesorter theme */ - background: #EFEFEF; -} -.ui-sortable-placeholder * { - opacity: 0.0; - visibility: hidden; -} -.table-handle, .table-handle-disabled { - /* background-image: url(images/dragtable-handle.png); */ - /* background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAANAQMAAAC5Li2yAAAABlBMVEUAAAAzMzPI8eYgAAAAAnRSTlMAzORBQ6MAAAAOSURBVAjXYwABByyYAQAQWgFBLN2RnwAAAABJRU5ErkJggg=='); */ - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyIiBoZWlnaHQ9IjEzIj48cmVjdCBzdHlsZT0iZmlsbDojMzMzO2ZpbGwtb3BhY2l0eTouODsiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHg9IjEiIHk9IjIiLz4JPHJlY3Qgc3R5bGU9ImZpbGw6IzMzMztmaWxsLW9wYWNpdHk6Ljg7IiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4PSIxIiB5PSI0Ii8+CTxyZWN0IHN0eWxlPSJmaWxsOiMzMzM7ZmlsbC1vcGFjaXR5Oi44OyIgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iNiIvPjxyZWN0IHN0eWxlPSJmaWxsOiMzMzM7ZmlsbC1vcGFjaXR5Oi44OyIgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iOCIvPjxyZWN0IHN0eWxlPSJmaWxsOiMzMzM7ZmlsbC1vcGFjaXR5Oi44OyIgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iMTAiLz48L3N2Zz4=); - background-repeat: repeat-x; - height: 13px; - margin: 0 1px; - cursor: move; -} -.table-handle-disabled { - opacity: 0; - cursor: not-allowed; -} -.dragtable-sortable table { - margin-bottom: 0; -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/filter.formatter.css b/vendor/FHC-vendor/jquery-tablesorter/css/filter.formatter.css deleted file mode 100644 index cb5dde1f0..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/filter.formatter.css +++ /dev/null @@ -1,183 +0,0 @@ -/**** Filter Formatter Elements ****/ -.tablesorter .tablesorter-filter-row td { - text-align: center; - font-size: 0.9em; - font-weight: normal; -} - -/**** Sliders ****/ -/* shrink the sliders to look nicer inside of a table cell */ -.tablesorter .ui-slider, .tablesorter input.range { - width: 90%; - margin: 2px auto 2px auto; /* add enough top margin so the tooltips will fit */ - font-size: 0.8em; -} -.tablesorter .ui-slider { - top: 12px; -} -.tablesorter .ui-slider .ui-slider-handle { - width: 0.9em; - height: 0.9em; -} -.tablesorter .ui-datepicker { - font-size: 0.8em; -} -.tablesorter .ui-slider-horizontal { - height: 0.5em; -} -/* Add tooltips to slider handles */ -.tablesorter .value-popup:after { - content : attr(data-value); - position: absolute; - bottom: 14px; - left: -7px; - min-width: 18px; - height: 12px; - background-color: #444; - background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#999999)); - background-image: -webkit-linear-gradient(top, #444, #999); - background-image: -moz-linear-gradient(top, #444, #999); - background-image: -o-linear-gradient(top, #444, #999); - background-image: linear-gradient(to bottom, #444, #999); - -webkit-border-radius: 3px; - border-radius: 3px; - -webkit-background-clip: padding-box; background-clip: padding-box; - -webkit-box-shadow: 0px 0px 4px 0px #777; - box-shadow: 0px 0px 4px 0px #777; - border: #444 1px solid; - color: #fff; - font: 1em/1.1em Arial, Sans-Serif; - padding: 1px; - text-align: center; -} -.tablesorter .value-popup:before { - content: ""; - position: absolute; - width: 0; - height: 0; - border-top: 8px solid #777; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - top: -8px; - left: 50%; - margin-left: -8px; - margin-top: -1px; -} - -/**** Date Picker ****/ -.tablesorter .dateFrom, .tablesorter .dateTo { - width: 80px; - margin: 2px 5px; -} - -/**** Color Picker/HTML5Number Toggle button ****/ -.tablesorter .button { - width: 14px; - height: 14px; - background: #fcfff4; - background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%); - background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%); - background: -o-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%); - background: -ms-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%); - background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#b3bead', GradientType=0 ); - margin: 1px 5px 1px 1px; - -webkit-border-radius: 25px; - -moz-border-radius: 25px; - border-radius: 25px; - -webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5); - -moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5); - box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5); - position: relative; - top: 3px; - display: inline-block; -} - -.tablesorter .button label { - cursor: pointer; - position: absolute; - width: 10px; - height: 10px; - -webkit-border-radius: 25px; - -moz-border-radius: 25px; - border-radius: 25px; - left: 2px; - top: 2px; - -webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1); - -moz-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1); - box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1); - background: #45484d; - background: -webkit-linear-gradient(top, #222 0%, #45484d 100%); - background: -moz-linear-gradient(top, #222 0%, #45484d 100%); - background: -o-linear-gradient(top, #222 0%, #45484d 100%); - background: -ms-linear-gradient(top, #222 0%, #45484d 100%); - background: linear-gradient(top, #222 0%, #45484d 100%); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222', endColorstr='#45484d', GradientType=0 ); -} - -.tablesorter .button label:after { - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - filter: alpha(opacity=0); - opacity: 0; - content: ''; - position: absolute; - width: 8px; - height: 8px; - background: #55f; - background: -webkit-linear-gradient(top, #aaf 0%, #55f 100%); - background: -moz-linear-gradient(top, #aaf 0%, #55f 100%); - background: -o-linear-gradient(top, #aaf 0%, #55f 100%); - background: -ms-linear-gradient(top, #aaf 0%, #55f 100%); - background: linear-gradient(top, #aaf 0%, #55f 100%); - -webkit-border-radius: 25px; - -moz-border-radius: 25px; - border-radius: 25px; - top: 1px; - left: 1px; - -webkit-box-shadow: inset 0px 1px 1px #fff, 0px 1px 3px rgba(0,0,0,0.5); - -moz-box-shadow: inset 0px 1px 1px #fff, 0px 1px 3px rgba(0,0,0,0.5); - box-shadow: inset 0px 1px 1px #fff, 0px 1px 3px rgba(0,0,0,0.5); -} - -.tablesorter .button label:hover::after { - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; - filter: alpha(opacity=30); - opacity: 0.3; -} - -.tablesorter .button input[type=checkbox] { - visibility: hidden; -} - -.tablesorter .button input[type=checkbox]:checked + label:after { - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; - filter: alpha(opacity=100); - opacity: 1; -} - -.tablesorter .colorpicker { - width: 30px; - height: 18px; -} -.tablesorter .ui-spinner-input { - width: 100px; - height: 18px; -} -.tablesorter .currentColor, .tablesorter .ui-spinner { - position: relative; -} -.tablesorter input.number { - position: relative; -} - -/* hide filter row */ -.tablesorter .tablesorter-filter-row.hideme td * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/black-asc.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/black-asc.gif deleted file mode 100644 index 730533fa3..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/black-asc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/black-desc.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/black-desc.gif deleted file mode 100644 index 4c3b61020..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/black-desc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/black-unsorted.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/black-unsorted.gif deleted file mode 100644 index 5647f6583..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/black-unsorted.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/bootstrap-black-unsorted.png b/vendor/FHC-vendor/jquery-tablesorter/css/images/bootstrap-black-unsorted.png deleted file mode 100644 index 4e161a65e..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/bootstrap-black-unsorted.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/bootstrap-white-unsorted.png b/vendor/FHC-vendor/jquery-tablesorter/css/images/bootstrap-white-unsorted.png deleted file mode 100644 index fb227a150..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/bootstrap-white-unsorted.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/dragtable-handle.png b/vendor/FHC-vendor/jquery-tablesorter/css/images/dragtable-handle.png deleted file mode 100644 index ff64a7d57..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/dragtable-handle.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/dragtable-handle.svg b/vendor/FHC-vendor/jquery-tablesorter/css/images/dragtable-handle.svg deleted file mode 100644 index 041ec1ded..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/images/dragtable-handle.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/dropbox-asc-hovered.png b/vendor/FHC-vendor/jquery-tablesorter/css/images/dropbox-asc-hovered.png deleted file mode 100644 index bc45223f1..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/dropbox-asc-hovered.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/dropbox-asc.png b/vendor/FHC-vendor/jquery-tablesorter/css/images/dropbox-asc.png deleted file mode 100644 index 0d6ee1505..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/dropbox-asc.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/dropbox-desc-hovered.png b/vendor/FHC-vendor/jquery-tablesorter/css/images/dropbox-desc-hovered.png deleted file mode 100644 index 493094204..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/dropbox-desc-hovered.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/dropbox-desc.png b/vendor/FHC-vendor/jquery-tablesorter/css/images/dropbox-desc.png deleted file mode 100644 index 0bce65a07..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/dropbox-desc.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/green-asc.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/green-asc.gif deleted file mode 100644 index 4cfba0950..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/green-asc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/green-desc.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/green-desc.gif deleted file mode 100644 index 4f8817650..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/green-desc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/green-header.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/green-header.gif deleted file mode 100644 index cc746b70a..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/green-header.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/green-unsorted.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/green-unsorted.gif deleted file mode 100644 index 0afe2c021..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/green-unsorted.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/ice-asc.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/ice-asc.gif deleted file mode 100644 index 0961d9aaf..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/ice-asc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/ice-desc.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/ice-desc.gif deleted file mode 100644 index 0330fccaa..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/ice-desc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/ice-unsorted.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/ice-unsorted.gif deleted file mode 100644 index c1afde558..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/ice-unsorted.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-black-asc.png b/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-black-asc.png deleted file mode 100644 index f7a781be1..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-black-asc.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-black-desc.png b/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-black-desc.png deleted file mode 100644 index ef5f48e07..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-black-desc.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-loading.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-loading.gif deleted file mode 100644 index ae274c6c1..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-loading.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-unsorted.png b/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-unsorted.png deleted file mode 100644 index 653b08342..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-unsorted.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-white-asc.png b/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-white-asc.png deleted file mode 100644 index 63327188b..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-white-asc.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-white-desc.png b/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-white-desc.png deleted file mode 100644 index ca7c363e3..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/metro-white-desc.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/white-asc.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/white-asc.gif deleted file mode 100644 index 2173b0a05..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/white-asc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/white-desc.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/white-desc.gif deleted file mode 100644 index 7109c3ea1..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/white-desc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/images/white-unsorted.gif b/vendor/FHC-vendor/jquery-tablesorter/css/images/white-unsorted.gif deleted file mode 100644 index 9bfc3459c..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/images/white-unsorted.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/metro.less b/vendor/FHC-vendor/jquery-tablesorter/css/metro.less deleted file mode 100644 index 62b929264..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/metro.less +++ /dev/null @@ -1,357 +0,0 @@ -/* Tablesorter Custom Metro LESS Theme by Rob Garrison - -To create your own theme, modify the code below and run it through -a LESS compiler, like this one: http://leafo.net/lessphp/editor.html -or download less.js from http://lesscss.org/ - -Test out these custom less files live - Basic Theme : http://codepen.io/Mottie/pen/eqBbn - Bootstrap : http://codepen.io/Mottie/pen/Ltzpi - Metro Style : http://codepen.io/Mottie/pen/gCslk - -*/ - -/*** theme ***/ -@theme : tablesorter-metro; - -/*** fonts ***/ -@tableHeaderFont : 14px 'Segoe UI Semilight', 'Open Sans', Verdana, Arial, Helvetica, sans-serif; -@tableBodyFont : 14px 'Segoe UI Semilight', 'Open Sans', Verdana, Arial, Helvetica, sans-serif; - -/*** color definitions ***/ -/* for best results, only change the hue (120), - leave the saturation (60%) and luminosity (75%) alone - pick the color from here: http://hslpicker.com/#825a2b - - Inspired by http://www.jtable.org/ metro themes: - Blue: hsl(212, 86%, 35%) - Brown hsl(32, 50%, 30%) - Crimson hsl(0, 100%, 38%) - Dark Grey hsl(0, 0%, 27%) - Dark Orange hsl(13, 70%, 51%) - Green hsl(120, 100%, 32%) - Light Gray hsl(0, 0%, 44%) - Pink hsl(297, 100%, 33%) - Purple hsl(257, 51%, 48%) - Red hsl(5, 100%, 40%) - - */ -@headerBackground : hsl(32, 50%, 30%); -@borderAndBackground : #cdcdcd; -@headerTextColor : #eee; - -@bodyBackground : #fff; -@bodyTextColor : #000; - -@captionBackground : #fff; /* it might be best to match the document body background color here */ -@errorBackground : #e6bf99; /* ajax error message (added to thead) */ - -@filterCellBackground : #eee; -@filterElementTextColor: #333; -@filterElementBkgd : #fff; -@filterElementBorder : 1px solid #bbb; -@filterTransitionTime : 0.1s; -@filterRowHiddenHeight : 4px; /* becomes height using padding (so it's divided by 2) */ - -@overallPadding : 4px; -/* 20px should be slightly wider than the icon width to avoid overlap */ -@headerPadding : 4px 20px 4px 4px; - -/* url(icons/loading.gif); */ -@processingIcon : url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///1VVVdbW1oCAgFVVVZaWlqurq7a2tiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA=='); - -/* zebra striping */ -.allRows { - background-color: @bodyBackground; - color: @bodyTextColor; -} -.evenRows { - background-color: lighten( desaturate(@headerBackground, 80%), 70%); - color: @bodyTextColor; -} -.oddRows { - background-color: lighten( desaturate(@headerBackground, 80%), 50%); -} - -/* hovered rows */ -.oddHovered { - background-color: lighten( desaturate(@headerBackground, 50%), 40%); - color: @bodyTextColor; -} -.evenHovered { - background-color: lighten( desaturate(@headerBackground, 50%), 30%); - color: @bodyTextColor; -} - -/* Columns widget */ -@primaryOdd : lighten( spin(@headerBackground, 10), 40%); -@primaryEven : lighten( @primaryOdd, 8% ); -@secondaryOdd : @primaryEven; -@secondaryEven : lighten( @primaryEven, 8% ); -@tertiaryOdd : @secondaryEven; -@tertiaryEven : lighten( @secondaryEven, 8% ); - -/* Filter widget transition */ -.filterWidgetTransition { - -webkit-transition: line-height @filterTransitionTime ease; - -moz-transition: line-height @filterTransitionTime ease; - -o-transition: line-height @filterTransitionTime ease; - transition: line-height @filterTransitionTime ease; -} - -/*** Arrows ***/ -@arrowPosition : right 5px center; - -/* black */ -@unsortedBlack : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABt0UjBAAAACnRSTlMAMwsqXt+gIBUGxGoDMAAAAFlJREFUCNctzC0SQAAUReEzGNQ3AlHRiSRZFCVZYgeswRL8hLdK7834wj3tAlGP6y7fYHpKS6w6WwbVG0I1NZVnZPG8/DYxOYlnhUYkA06R1s9ESsxR4NIdPhkPFDFYuEnMAAAAAElFTkSuQmCC); -@sortAscBlack : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABt0UjBAAAACnRSTlMAMwsqXt+gIBUGxGoDMAAAAFlJREFUCNctzC0SQAAUReEzGNQ3AlHRiSRZFCVZYgeswRL8hLdK7834wj3tAlGP6y7fYHpKS6w6WwbVG0I1NZVnZPG8/DYxOYlnhUYkA06R1s9ESsxR4NIdPhkPFDFYuEnMAAAAAElFTkSuQmCC); -@sortDescBlack : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAALVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADBoCg+AAAADnRSTlMAMiweCQITTvDctZZqaTlM310AAABcSURBVAjXY2BgYEtgAAFHERDJqigUAKSYBQUNgFSioKAYAwOLIBA4MASBKFUGQxAlzAAF+94BwWuGKBC1lIFl3rt3Lx0YGCzevWsGSjK9e6cAUlT3HKyW9wADAwDRrBiDy6bKzwAAAABJRU5ErkJggg==); - -/* white */ -@unsortedWhite : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAElBMVEUAAADu7u7u7u7u7u7u7u7u7u7yb344AAAABnRSTlMAMhIHKyAHBrhHAAAATElEQVQI12NgYGBSYAABQ2Ew5SgCIlkFBQOAlKKgoBADA7MgEBgwsIAoB4ZAECXKAAFQHkg9WIejoCBIv4mgoDOQYgZpAxkDNARqEQBTkAYuMZEHPgAAAABJRU5ErkJggg==); -@sortAscWhite : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAHlBMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u4+jEeEAAAACXRSTlMAMwkqFV7roCD4hW+/AAAAWUlEQVQI1y3MrQ5AABSG4Xd+Rj0jiDabjKZxB6qqaarGNRh27tY5myd8b/uAeML1l2+wPqUlUd0ss+oNoZqG2rOwe15+p5iC1HNAK5IBlUjnZyIlZsxx0QAfzokSZgp96u4AAAAASUVORK5CYII=); -@sortDescWhite : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAJ1BMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u4RJgHSAAAADHRSTlMAMiweCQITaU7olrlu2HdvAAAAXElEQVQI12NgYGBLYAABRxEQyaooFACkmAUFDYBUoqCgGAMDiyAQODAEgShVBkMQJcwABWvOAMEphmgQtZWBZc6ZMycdGBhszpw5DJRkOnNGAaSo5wRYLXsBAwMAi4YWQHRX4F0AAAAASUVORK5CYII=); - -/* automatically choose the correct arrow/text color */ -.headerText (@a) when (lightness(@a) >= 50%) { - color: @headerTextColor; -} -.headerText (@a) when (lightness(@a) < 50%) { - color: lighten(@headerTextColor, 90%); -} -.unsorted (@a) when (lightness(@a) >= 50%) { - background-image: @unsortedBlack; -} -.unsorted (@a) when (lightness(@a) < 50%) { - background-image: @unsortedWhite; -} -.sortAsc (@a) when (lightness(@a) >= 50%) { - background-image: @sortAscBlack; -} -.sortAsc (@a) when (lightness(@a) < 50%) { - background-image: @sortAscWhite; -} -.sortDesc (@a) when (lightness(@a) >= 50%) { - background-image: @sortDescBlack; -} -.sortDesc (@a) when (lightness(@a) < 50%) { - background-image: @sortDescWhite; -} - -/* variable theme name - requires less.js 1.3+; - or just replace (!".@{theme}") with the contents of @theme -*/ -.@{theme} { - font: @tableBodyFont; - background-color: @borderAndBackground; - margin: 10px 0 15px; - width: 100%; - text-align: left; - border-spacing: 0; - border: 0; - - th, td { - border: 0; - } - - /* style th's outside of the thead */ - th, thead td { - font: @tableHeaderFont; - font-weight: bold; - background-color: @headerBackground; - color: @headerTextColor; - .headerText(@headerBackground); - border-collapse: collapse; - padding: @overallPadding; - } - - .dark-row th, .dark-row td, caption.dark-row { - background-color: darken( @headerBackground, 10% ); - } - - tbody td, tfoot th, tfoot td { - padding: @overallPadding; - vertical-align: top; - } - - /* style header */ - .tablesorter-header { - .unsorted(@headerBackground); - background-repeat: no-repeat; - background-position: @arrowPosition; - cursor: pointer; - white-space: normal; - } - - .tablesorter-header-inner { - padding: @headerPadding; - } - - .tablesorter-header.sorter-false { - background-image: none; - cursor: default; - padding: @overallPadding; - } - - .tablesorter-headerAsc { - .sortAsc(@headerBackground); - } - - .tablesorter-headerDesc { - .sortDesc(@headerBackground); - } - - /* tfoot */ - tfoot .tablesorter-headerAsc, - tfoot .tablesorter-headerDesc { - /* remove sort arrows from footer */ - background-image: none; - } - - /* optional disabled input styling */ - .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; - } - - /* body */ - tbody { - - td { - .allRows; - padding: @overallPadding; - vertical-align: top; - } - - /* Zebra Widget - row alternating colors */ - tr.odd > td { - .oddRows; - } - tr.even > td { - .evenRows; - } - - } - - /* hovered row colors - you'll need to add additional lines for - rows with more than 2 child rows - */ - tbody > tr.hover > td, - tbody > tr:hover > td, - tbody > tr:hover + tr.tablesorter-childRow > td, - tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, - tbody > tr.even.hover > td, - tbody > tr.even:hover > td, - tbody > tr.even:hover + tr.tablesorter-childRow > td, - tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - .evenHovered; - } - tbody > tr.odd.hover > td, - tbody > tr.odd:hover > td, - tbody > tr.odd:hover + tr.tablesorter-childRow > td, - tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - .oddHovered; - } - - /* table processing indicator - indeterminate spinner */ - .tablesorter-processing { - background-image: @processingIcon; - background-position: center center; - background-repeat: no-repeat; - } - - /* pager */ - div.tablesorter-pager { - button { - background-color: lighten( @headerBackground, 7% ); - color: @headerTextColor; - border: lighten( @headerBackground, 15% ) 1px solid; - cursor: pointer; - } - button:hover { - background-color: lighten( @headerBackground, 15% ); - } - } - - /* Column Widget - column sort colors */ - tr.odd td.primary { - background-color: @primaryOdd; - } - td.primary, tr.even td.primary { - background-color: @primaryEven; - } - tr.odd td.secondary { - background-color: @secondaryOdd; - } - td.secondary, tr.even td.secondary { - background-color: @secondaryEven; - } - tr.odd td.tertiary { - background-color: @tertiaryOdd; - } - td.tertiary, tr.even td.tertiary { - background-color: @tertiaryEven; - } - - /* caption (non-theme matching) */ - caption { - background-color: @captionBackground ; - } - - /* filter widget */ - .tablesorter-filter-row input, - .tablesorter-filter-row select{ - width: 98%; - height: auto; - margin: 0; - padding: @overallPadding; - color: @filterElementTextColor; - background-color: @filterElementBkgd; - border: @filterElementBorder; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - .filterWidgetTransition; - } - .tablesorter-filter-row { - background-color: @filterCellBackground; - } - .tablesorter-filter-row td { - text-align: center; - background-color: @filterCellBackground; - line-height: normal; - text-align: center; /* center the input */ - .filterWidgetTransition; - } - /* hidden filter row */ - .tablesorter-filter-row.hideme td { - padding: @filterRowHiddenHeight / 2; - margin: 0; - line-height: 0; - cursor: pointer; - } - .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); - } - /* rows hidden by filtering (needed for child rows) */ - .filtered { - display: none; - } - - /* ajax error row */ - .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: @errorBackground; - } - -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/psd/green-asc.psd b/vendor/FHC-vendor/jquery-tablesorter/css/psd/green-asc.psd deleted file mode 100644 index f49267750..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/psd/green-asc.psd and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/psd/green-desc.psd b/vendor/FHC-vendor/jquery-tablesorter/css/psd/green-desc.psd deleted file mode 100644 index bc9ffacd1..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/psd/green-desc.psd and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/psd/green-unsorted.psd b/vendor/FHC-vendor/jquery-tablesorter/css/psd/green-unsorted.psd deleted file mode 100644 index 5f6a8701e..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/psd/green-unsorted.psd and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/psd/metro-style.psd b/vendor/FHC-vendor/jquery-tablesorter/css/psd/metro-style.psd deleted file mode 100644 index 1fe712ab4..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/css/psd/metro-style.psd and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.black-ice.css b/vendor/FHC-vendor/jquery-tablesorter/css/theme.black-ice.css deleted file mode 100644 index 1bf253d05..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.black-ice.css +++ /dev/null @@ -1,192 +0,0 @@ -/************* - Black Ice Theme (by thezoggy) - *************/ -/* overall */ -.tablesorter-blackice { - width: 100%; - margin-right: auto; - margin-left: auto; - font: 11px/18px Arial, Sans-serif; - text-align: left; - background-color: #000; - border-collapse: collapse; - border-spacing: 0; -} - -/* header */ -.tablesorter-blackice th, -.tablesorter-blackice thead td { - padding: 4px; - font: 13px/20px Arial, Sans-serif; - font-weight: bold; - color: #e5e5e5; - text-align: left; - text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7); - background-color: #111; - border: 1px solid #232323; -} -.tablesorter-blackice .header, -.tablesorter-blackice .tablesorter-header { - padding: 4px 20px 4px 4px; - cursor: pointer; - background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); - background-position: center right; - background-repeat: no-repeat; -} -.tablesorter-blackice .headerSortUp, -.tablesorter-blackice .tablesorter-headerSortUp, -.tablesorter-blackice .tablesorter-headerAsc { - background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); - color: #fff; -} -.tablesorter-blackice .headerSortDown, -.tablesorter-blackice .tablesorter-headerSortDown, -.tablesorter-blackice .tablesorter-headerDesc { - color: #fff; - background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); -} -.tablesorter-blackice thead .sorter-false { - background-image: none; - cursor: default; - padding: 4px; -} - -/* tfoot */ -.tablesorter-blackice tfoot .tablesorter-headerSortUp, -.tablesorter-blackice tfoot .tablesorter-headerSortDown, -.tablesorter-blackice tfoot .tablesorter-headerAsc, -.tablesorter-blackice tfoot .tablesorter-headerDesc { - /* remove sort arrows from footer */ - background-image: none; -} - -/* tbody */ -.tablesorter-blackice td { - padding: 4px; - color: #ccc; - vertical-align: top; - background-color: #333; - border: 1px solid #232323; -} - -/* hovered row colors */ -.tablesorter-blackice tbody > tr.hover > td, -.tablesorter-blackice tbody > tr:hover > td, -.tablesorter-blackice tbody > tr.even:hover > td, -.tablesorter-blackice tbody > tr.odd:hover > td { - background-color: #000; -} - -/* table processing indicator */ -.tablesorter-blackice .tablesorter-processing { - background-position: center center !important; - background-repeat: no-repeat !important; - /* background-image: url(images/loading.gif) !important; */ - background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important; -} - -/* Zebra Widget - row alternating colors */ -.tablesorter-blackice tr.odd > td { - background-color: #333; -} -.tablesorter-blackice tr.even > td { - background-color: #393939; -} - -/* Column Widget - column sort colors */ -.tablesorter-blackice td.primary, -.tablesorter-blackice tr.odd td.primary { - background-color: #2f3a40; -} -.tablesorter-blackice tr.even td.primary { - background-color: #3f4a50; -} -.tablesorter-blackice td.secondary, -.tablesorter-blackice tr.odd td.secondary { - background-color: #3f4a50; -} -.tablesorter-blackice tr.even td.secondary { - background-color: #4f5a60; -} -.tablesorter-blackice td.tertiary, -.tablesorter-blackice tr.odd td.tertiary { - background-color: #4f5a60; -} -.tablesorter-blackice tr.even td.tertiary { - background-color: #5a646b; -} - -/* caption */ -caption { - background-color: #fff; -} - -/* filter widget */ -.tablesorter-blackice .tablesorter-filter-row { - background-color: #222; -} -.tablesorter-blackice .tablesorter-filter-row td { - background-color: #222; - line-height: normal; - text-align: center; /* center the input */ - -webkit-transition: line-height 0.1s ease; - -moz-transition: line-height 0.1s ease; - -o-transition: line-height 0.1s ease; - transition: line-height 0.1s ease; -} -/* optional disabled input styling */ -.tablesorter-blackice .tablesorter-filter-row .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; -} -/* hidden filter row */ -.tablesorter-blackice .tablesorter-filter-row.hideme td { - /*** *********************************************** ***/ - /*** change this padding to modify the thickness ***/ - /*** of the closed filter row (height = padding x 2) ***/ - padding: 2px; - /*** *********************************************** ***/ - margin: 0; - line-height: 0; - cursor: pointer; -} -.tablesorter-blackice .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} -/* filters */ -.tablesorter-blackice input.tablesorter-filter, -.tablesorter-blackice select.tablesorter-filter { - width: 98%; - height: auto; - margin: 0; - padding: 4px; - background-color: #fff; - border: 1px solid #bbb; - color: #333; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: height 0.1s ease; - -moz-transition: height 0.1s ease; - -o-transition: height 0.1s ease; - transition: height 0.1s ease; -} -/* rows hidden by filtering (needed for child rows) */ -.tablesorter .filtered { - display: none; -} - -/* ajax error row */ -.tablesorter .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: #e6bf99; -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.blue.css b/vendor/FHC-vendor/jquery-tablesorter/css/theme.blue.css deleted file mode 100644 index 66d6e58cf..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.blue.css +++ /dev/null @@ -1,229 +0,0 @@ -/************* - Blue Theme - *************/ -/* overall */ -.tablesorter-blue { - width: 100%; - background-color: #fff; - margin: 10px 0 15px; - text-align: left; - border-spacing: 0; - border: #cdcdcd 1px solid; - border-width: 1px 0 0 1px; -} -.tablesorter-blue th, -.tablesorter-blue td { - border: #cdcdcd 1px solid; - border-width: 0 1px 1px 0; -} - -/* header */ -.tablesorter-blue th, -.tablesorter-blue thead td { - font: 12px/18px Arial, Sans-serif; - font-weight: bold; - color: #000; - background-color: #99bfe6; - border-collapse: collapse; - padding: 4px; - text-shadow: 0 1px 0 rgba(204, 204, 204, 0.7); -} -.tablesorter-blue tbody td, -.tablesorter-blue tfoot th, -.tablesorter-blue tfoot td { - padding: 4px; - vertical-align: top; -} -.tablesorter-blue .header, -.tablesorter-blue .tablesorter-header { - /* black (unsorted) double arrow */ - background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); - /* white (unsorted) double arrow */ - /* background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); */ - /* image */ - /* background-image: url(images/black-unsorted.gif); */ - background-repeat: no-repeat; - background-position: center right; - padding: 4px 18px 4px 4px; - white-space: normal; - cursor: pointer; -} -.tablesorter-blue .headerSortUp, -.tablesorter-blue .tablesorter-headerSortUp, -.tablesorter-blue .tablesorter-headerAsc { - background-color: #9fbfdf; - /* black asc arrow */ - background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); - /* white asc arrow */ - /* background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); */ - /* image */ - /* background-image: url(images/black-asc.gif); */ -} -.tablesorter-blue .headerSortDown, -.tablesorter-blue .tablesorter-headerSortDown, -.tablesorter-blue .tablesorter-headerDesc { - background-color: #8cb3d9; - /* black desc arrow */ - background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); - /* white desc arrow */ - /* background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); */ - /* image */ - /* background-image: url(images/black-desc.gif); */ -} -.tablesorter-blue thead .sorter-false { - background-image: none; - cursor: default; - padding: 4px; -} - -/* tfoot */ -.tablesorter-blue tfoot .tablesorter-headerSortUp, -.tablesorter-blue tfoot .tablesorter-headerSortDown, -.tablesorter-blue tfoot .tablesorter-headerAsc, -.tablesorter-blue tfoot .tablesorter-headerDesc { - /* remove sort arrows from footer */ - background-image: none; -} - -/* tbody */ -.tablesorter-blue td { - color: #3d3d3d; - background-color: #fff; - padding: 4px; - vertical-align: top; -} - -/* hovered row colors - you'll need to add additional lines for - rows with more than 2 child rows - */ -.tablesorter-blue tbody > tr.hover > td, -.tablesorter-blue tbody > tr:hover > td, -.tablesorter-blue tbody > tr:hover + tr.tablesorter-childRow > td, -.tablesorter-blue tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, -.tablesorter-blue tbody > tr.even.hover > td, -.tablesorter-blue tbody > tr.even:hover > td, -.tablesorter-blue tbody > tr.even:hover + tr.tablesorter-childRow > td, -.tablesorter-blue tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - background-color: #d9d9d9; -} -.tablesorter-blue tbody > tr.odd.hover > td, -.tablesorter-blue tbody > tr.odd:hover > td, -.tablesorter-blue tbody > tr.odd:hover + tr.tablesorter-childRow > td, -.tablesorter-blue tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - background-color: #bfbfbf; -} - -/* table processing indicator */ -.tablesorter-blue .tablesorter-processing { - background-position: center center !important; - background-repeat: no-repeat !important; - /* background-image: url(images/loading.gif) !important; */ - background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important; -} - -/* Zebra Widget - row alternating colors */ -.tablesorter-blue tbody tr.odd > td { - background-color: #ebf2fa; -} -.tablesorter-blue tbody tr.even > td { - background-color: #fff; -} - -/* Column Widget - column sort colors */ -.tablesorter-blue td.primary, -.tablesorter-blue tr.odd td.primary { - background-color: #99b3e6; -} -.tablesorter-blue tr.even td.primary { - background-color: #c2d1f0; -} -.tablesorter-blue td.secondary, -.tablesorter-blue tr.odd td.secondary { - background-color: #c2d1f0; -} -.tablesorter-blue tr.even td.secondary { - background-color: #d6e0f5; -} -.tablesorter-blue td.tertiary, -.tablesorter-blue tr.odd td.tertiary { - background-color: #d6e0f5; -} -.tablesorter-blue tr.even td.tertiary { - background-color: #ebf0fa; -} - -/* caption */ -caption { - background-color: #fff; -} - -/* filter widget */ -.tablesorter-blue .tablesorter-filter-row { - background-color: #eee; -} -.tablesorter-blue .tablesorter-filter-row td { - background-color: #eee; - line-height: normal; - text-align: center; /* center the input */ - -webkit-transition: line-height 0.1s ease; - -moz-transition: line-height 0.1s ease; - -o-transition: line-height 0.1s ease; - transition: line-height 0.1s ease; -} -/* optional disabled input styling */ -.tablesorter-blue .tablesorter-filter-row .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; -} -/* hidden filter row */ -.tablesorter-blue .tablesorter-filter-row.hideme td { - /*** *********************************************** ***/ - /*** change this padding to modify the thickness ***/ - /*** of the closed filter row (height = padding x 2) ***/ - padding: 2px; - /*** *********************************************** ***/ - margin: 0; - line-height: 0; - cursor: pointer; -} -.tablesorter-blue .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} -/* filters */ -.tablesorter-blue input.tablesorter-filter, -.tablesorter-blue select.tablesorter-filter { - width: 98%; - height: auto; - margin: 0; - padding: 4px; - background-color: #fff; - border: 1px solid #bbb; - color: #333; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: height 0.1s ease; - -moz-transition: height 0.1s ease; - -o-transition: height 0.1s ease; - transition: height 0.1s ease; -} -/* rows hidden by filtering (needed for child rows) */ -.tablesorter .filtered { - display: none; -} - -/* ajax error row */ -.tablesorter .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: #e6bf99; -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.bootstrap.css b/vendor/FHC-vendor/jquery-tablesorter/css/theme.bootstrap.css deleted file mode 100644 index 11a3ea7a6..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.bootstrap.css +++ /dev/null @@ -1,158 +0,0 @@ -/************* - Bootstrap theme - *************/ -/* jQuery Bootstrap Theme */ -.tablesorter-bootstrap { - width: 100%; -} -.tablesorter-bootstrap thead th, -.tablesorter-bootstrap thead td, -.tablesorter-bootstrap tfoot th, -.tablesorter-bootstrap tfoot td { - font: 14px/20px Arial, Sans-serif; - font-weight: bold; - padding: 4px; - margin: 0 0 18px; - background-color: #eee; -} - -.tablesorter-bootstrap .tablesorter-header { - cursor: pointer; -} - -.tablesorter-bootstrap .tablesorter-header-inner { - position: relative; - padding: 4px 18px 4px 4px; -} - -/* bootstrap uses for icons */ -.tablesorter-bootstrap .tablesorter-header i.tablesorter-icon { - font-size: 11px; - position: absolute; - right: 2px; - top: 50%; - margin-top: -7px; /* half the icon height; older IE doesn't like this */ - width: 14px; - height: 14px; - background-repeat: no-repeat; - line-height: 14px; - display: inline-block; -} - -/* black unsorted icon */ -.tablesorter-bootstrap .bootstrap-icon-unsorted { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAMAAADOvxanAAAAVFBMVEUAAABCQkJZWVkZGRnJyckgICAZGRkZGRn8/PweHh4dHR0aGhoaGhpUVFQbGxvQ0NDc3NxMTExSUlIbGxvr6+s4ODhKSkogICAtLS00NDQzMzMnJydSEPrQAAAAGHRSTlMA1ssZRLgdAQbDyisqsZo8QdXUq0r9xPepSRwiAAAAX0lEQVQI13XHSQKAIAwEwQAKxn13Ev7/T2Pu9qmarJKPXIicI4PH4hxaKNrhm2S8bJK5h4YzKHrzJNtK6yYT/TdXzpS5zuYg4MSQYF6i4IHExdw1UVRi05HPrrvT53a+qyMFC9t04gcAAAAASUVORK5CYII=); -} - -/* white unsorted icon */ -.tablesorter-bootstrap .icon-white.bootstrap-icon-unsorted { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOBAMAAAALT/umAAAAKlBMVEUAAAD///////////////////////////////////////////////////+Gu8ovAAAADXRSTlMA4EXKBtQqvR0+sxmalc142gAAAFdJREFUCNdjYGDoamAAAjZbMxCVfvd6AgMDd+3du9UMDKx3hWSvMjBwXZww8RYDGuC53NB8h4GB8a617UUGBs7Yu3cjGRhYVO9eVQFKOskKOQApFmUgBwBZ+xXRTttNdAAAAABJRU5ErkJggg==); -} - -/* since bootstrap (table-striped) uses nth-child(), we just use this to add a zebra stripe color */ -.tablesorter-bootstrap > tbody > tr.odd > td, -.tablesorter-bootstrap > tbody > tr.tablesorter-hasChildRow.odd:hover ~ tr.tablesorter-hasChildRow.odd ~ .tablesorter-childRow.odd > td { - background-color: #f9f9f9; -} -.tablesorter-bootstrap > tbody > tr.hover > td, -.tablesorter-bootstrap > tbody > tr.odd:hover > td, -.tablesorter-bootstrap > tbody > tr.even:hover > td, -.tablesorter-bootstrap > tbody > tr.tablesorter-hasChildRow.odd:hover ~ .tablesorter-childRow.odd > td, -.tablesorter-bootstrap > tbody > tr.tablesorter-hasChildRow.even:hover ~ .tablesorter-childRow.even > td { - background-color: #f5f5f5; -} -.tablesorter-bootstrap > tbody > tr.even > td, -.tablesorter-bootstrap > tbody > tr.tablesorter-hasChildRow.even:hover ~ tr.tablesorter-hasChildRow.even ~ .tablesorter-childRow.even > td { - background-color: #fff; -} - -/* processing icon */ -.tablesorter-bootstrap .tablesorter-processing { - background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs='); - background-position: center center !important; - background-repeat: no-repeat !important; -} - -/* caption */ -.caption { - background-color: #fff; -} - -/* filter widget */ -.tablesorter-bootstrap .tablesorter-filter-row input.tablesorter-filter, -.tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter { - width: 98%; - margin: 0; - padding: 4px 6px; - color: #333; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: height 0.1s ease; - -moz-transition: height 0.1s ease; - -o-transition: height 0.1s ease; - transition: height 0.1s ease; -} -.tablesorter-bootstrap .tablesorter-filter-row .tablesorter-filter.disabled { - background-color: #eee; - color: #555; - cursor: not-allowed; - border: 1px solid #ccc; - border-radius: 4px; - box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset; - box-sizing: border-box; - transition: height 0.1s ease; -} -.tablesorter-bootstrap .tablesorter-filter-row { - background-color: #efefef; -} -.tablesorter-bootstrap .tablesorter-filter-row td { - background-color: #efefef; - line-height: normal; - text-align: center; - padding: 4px 6px; - vertical-align: middle; - -webkit-transition: line-height 0.1s ease; - -moz-transition: line-height 0.1s ease; - -o-transition: line-height 0.1s ease; - transition: line-height 0.1s ease; -} -/* hidden filter row */ -.tablesorter-bootstrap .tablesorter-filter-row.hideme td { - padding: 2px; /* change this to modify the thickness of the closed border row */ - margin: 0; - line-height: 0; -} -.tablesorter-bootstrap .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} -/* rows hidden by filtering (needed for child rows) */ -.tablesorter .filtered { - display: none; -} - -/* pager plugin */ -.tablesorter-bootstrap .tablesorter-pager select { - padding: 4px 6px; -} -.tablesorter-bootstrap .tablesorter-pager .pagedisplay { - border: 0; -} -/* tfoot i for pager controls */ -.tablesorter-bootstrap tfoot i { - font-size: 11px; -} - -/* ajax error row */ -.tablesorter .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: #e6bf99; -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.bootstrap_2.css b/vendor/FHC-vendor/jquery-tablesorter/css/theme.bootstrap_2.css deleted file mode 100644 index fe0665bf2..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.bootstrap_2.css +++ /dev/null @@ -1,157 +0,0 @@ -/************* - Bootstrap 2 Theme - *************/ -/* jQuery Bootstrap 2 Theme */ -.tablesorter-bootstrap { - width: 100%; -} -.tablesorter-bootstrap .tablesorter-header, -.tablesorter-bootstrap tfoot th, -.tablesorter-bootstrap tfoot td { - font: 14px/20px Arial, Sans-serif; - font-weight: bold; - position: relative; - padding: 8px; - margin: 0 0 18px; - list-style: none; - background-color: #FBFBFB; - background-image: -moz-linear-gradient(top, white, #efefef); - background-image: -ms-linear-gradient(top, white, #efefef); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#efefef)); - background-image: -webkit-linear-gradient(top, white, #efefef); - background-image: -o-linear-gradient(top, white, #efefef); - background-image: linear-gradient(to bottom, white, #efefef); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#efefef', GradientType=0); - background-repeat: repeat-x; - -webkit-box-shadow: inset 0 1px 0 white; - -moz-box-shadow: inset 0 1px 0 #ffffff; - box-shadow: inset 0 1px 0 white; -} - -.tablesorter-bootstrap .tablesorter-header { - cursor: pointer; -} - -.tablesorter-bootstrap .tablesorter-header-inner { - position: relative; - padding: 4px 18px 4px 4px; -} - -/* bootstrap uses for icons */ -.tablesorter-bootstrap .tablesorter-header i.tablesorter-icon { - position: absolute; - right: 2px; - top: 50%; - margin-top: -7px; /* half the icon height; older IE doesn't like this */ - width: 14px; - height: 14px; - background-repeat: no-repeat; - line-height: 14px; - display: inline-block; -} - -/* black unsorted icon */ -.tablesorter-bootstrap .bootstrap-icon-unsorted { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAYAAAD5YeaVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAWVJREFUeNqUUL9Lw2AUTGP8mqGlpBQkNeCSRcckEBcHq1jImMElToKuDvpHFMGhU0BQcHBwLji6CE1B4uB/INQsDi4d2jQ/fPeZxo764OV6915f7lLJ81xot9tCURXqdVEUr7IsO6ffH9Q5BlEUCaLwWxWqTcbYnaIoh0Dw4gAvcWlxq1qt9hqNxg6hUGAP+uIPUrGs0qXLer2+v/pTX6QpxLtkc2U2m53ACb8sSdIDXerSEms2m6+DweAICA4d89KGbduf9MpEVdXQ9/2LVqv1CASHjjn3iq/x1xKFfxQPqGnada1W86bT6SiO42OS3qk3KPStLMvbk8nkfjwen/LLuq6blFymMB0KdUPSGhAcOualjX6/f0bCiC7NaWGPQr0BwaFjzn0gYJqmLAiCA8/zni3LmhuGkQPBoWPOPwQeaPIqD4fDruu6L6Zp5kBw6IudchmdJAkLw3DXcZwnIPjy/FuAAQCiqqWWCAFKcwAAAABJRU5ErkJggg==); -} - -/* white unsorted icon */ -.tablesorter-bootstrap .icon-white.bootstrap-icon-unsorted { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOBAMAAAALT/umAAAAKlBMVEUAAAD///////////////////////////////////////////////////+Gu8ovAAAADXRSTlMA4EXKBtQqvR0+sxmalc142gAAAFdJREFUCNdjYGDoamAAAjZbMxCVfvd6AgMDd+3du9UMDKx3hWSvMjBwXZww8RYDGuC53NB8h4GB8a617UUGBs7Yu3cjGRhYVO9eVQFKOskKOQApFmUgBwBZ+xXRTttNdAAAAABJRU5ErkJggg==); -} - -/* since bootstrap (table-striped) uses nth-child(), we just use this to add a zebra stripe color */ -.tablesorter-bootstrap tr.odd > td { - background-color: #f9f9f9; -} -.tablesorter-bootstrap tbody > tr.hover > td, -.tablesorter-bootstrap tbody > .odd:hover > td, -.tablesorter-bootstrap tbody > .even:hover > td { - background-color: #f5f5f5; -} -.tablesorter-bootstrap tbody > tr.even > td { - background-color: #fff; -} - -/* processing icon */ -.tablesorter-bootstrap .tablesorter-processing { - background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs='); - position: absolute; - z-index: 1000; -} - -/* caption */ -caption { - background-color: #fff; -} - -/* filter widget */ -.tablesorter-bootstrap .tablesorter-filter-row input.tablesorter-filter, -.tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter { - height: 28px; - width: 98%; - margin: 0; - padding: 4px 6px; - background-color: #fff; - color: #333; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: height 0.1s ease; - -moz-transition: height 0.1s ease; - -o-transition: height 0.1s ease; - transition: height 0.1s ease; -} -.tablesorter-bootstrap .tablesorter-filter-row .tablesorter-filter.disabled { - background-color: #eee; - cursor: not-allowed; -} -.tablesorter-bootstrap .tablesorter-filter-row { - background-color: #ddd; -} -.tablesorter-bootstrap .tablesorter-filter-row td { - background-color: #eee; - line-height: normal; - text-align: center; - padding: 4px 6px; - vertical-align: middle; - -webkit-transition: line-height 0.1s ease; - -moz-transition: line-height 0.1s ease; - -o-transition: line-height 0.1s ease; - transition: line-height 0.1s ease; -} -/* hidden filter row */ -.tablesorter-bootstrap tr.tablesorter-filter-row.hideme td { - padding: 2px; /* change this to modify the thickness of the closed border row */ - margin: 0; - line-height: 0; -} -.tablesorter-bootstrap tr.tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} -/* rows hidden by filtering (needed for child rows) */ -.tablesorter .filtered { - display: none; -} - -/* pager plugin */ -.tablesorter-bootstrap .tablesorter-pager select { - padding: 4px 6px; -} -.tablesorter-bootstrap .tablesorter-pager .pagedisplay { - border: 0; -} - -/* ajax error row */ -.tablesorter .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: #e6bf99; -} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.dark.css b/vendor/FHC-vendor/jquery-tablesorter/css/theme.dark.css deleted file mode 100644 index 3ddbf61fe..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.dark.css +++ /dev/null @@ -1,193 +0,0 @@ -/************* - Dark Theme (by thezoggy) - *************/ -/* overall */ -.tablesorter-dark { - width: 100%; - font: 11px/18px Arial, Sans-serif; - color: #ccc; - text-align: left; - background-color: #000; - border-spacing: 0; -} - -/* header */ -.tablesorter-dark th, -.tablesorter-dark thead td { - padding: 4px; - font: 12px/20px Arial, Sans-serif; - font-weight: bold; - color: #fff; - background-color: #000; - border-collapse: collapse; -} -.tablesorter-dark thead th { - border-bottom: #333 2px solid; -} -.tablesorter-dark .header, -.tablesorter-dark .tablesorter-header { - padding: 4px 20px 4px 4px; - cursor: pointer; - background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); - background-position: center right; - background-repeat: no-repeat; -} -.tablesorter-dark thead .headerSortUp, -.tablesorter-dark thead .tablesorter-headerSortUp, -.tablesorter-dark thead .tablesorter-headerAsc { - background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); - border-bottom: #888 1px solid; -} -.tablesorter-dark thead .headerSortDown, -.tablesorter-dark thead .tablesorter-headerSortDown, -.tablesorter-dark thead .tablesorter-headerDesc { - background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); - border-bottom: #888 1px solid; -} -.tablesorter-dark thead .sorter-false { - background-image: none; - cursor: default; - padding: 4px; -} - -/* tfoot */ -.tablesorter-dark tfoot .tablesorter-headerSortUp, -.tablesorter-dark tfoot .tablesorter-headerSortDown, -.tablesorter-dark tfoot .tablesorter-headerAsc, -.tablesorter-dark tfoot .tablesorter-headerDesc { - border-top: #888 1px solid; - /* remove sort arrows from footer */ - background-image: none; -} - -/* tbody */ -.tablesorter-dark td { - padding: 4px; - background-color: #000; - border-bottom: #333 1px solid; - color: #ccc; -} - -/* hovered row colors */ -.tablesorter-dark tbody > tr.hover > td, -.tablesorter-dark tbody > tr:hover > td, -.tablesorter-dark tbody > tr.even:hover > td, -.tablesorter-dark tbody > tr.odd:hover > td { - background-color: #000; -} - -/* table processing indicator */ -.tablesorter-dark .tablesorter-processing { - background-position: center center !important; - background-repeat: no-repeat !important; - /* background-image: url(images/loading.gif) !important; */ - background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important; -} - -/* Zebra Widget - row alternating colors */ -.tablesorter-dark tr.odd > td { - background-color: #202020; -} -.tablesorter-dark tr.even > td { - background-color: #101010; -} - -/* Column Widget - column sort colors */ -.tablesorter-dark td.primary, -.tablesorter-dark tr.odd td.primary { - background-color: #0a0a0a; -} -.tablesorter-dark tr.even td.primary { - background-color: #050505; -} -.tablesorter-dark td.secondary, -.tablesorter-dark tr.odd td.secondary { - background-color: #0f0f0f; -} -.tablesorter-dark tr.even td.secondary { - background-color: #0a0a0a; -} -.tablesorter-dark td.tertiary, -.tablesorter-dark tr.odd td.tertiary { - background-color: #191919; -} -.tablesorter-dark tr.even td.tertiary { - background-color: #0f0f0f; -} - -/* caption */ -caption { - background-color: #202020; -} - -/* filter widget */ -.tablesorter-dark .tablesorter-filter-row { - background-color: #202020; -} -.tablesorter-dark .tablesorter-filter-row td { - background-color: #202020; - line-height: normal; - text-align: center; /* center the input */ - -webkit-transition: line-height 0.1s ease; - -moz-transition: line-height 0.1s ease; - -o-transition: line-height 0.1s ease; - transition: line-height 0.1s ease; -} -/* optional disabled input styling */ -.tablesorter-dark .tablesorter-filter-row .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; -} - -/* hidden filter row */ -.tablesorter-dark .tablesorter-filter-row.hideme td { - /*** *********************************************** ***/ - /*** change this padding to modify the thickness ***/ - /*** of the closed filter row (height = padding x 2) ***/ - padding: 2px; - /*** *********************************************** ***/ - margin: 0; - line-height: 0; - cursor: pointer; -} -.tablesorter-dark .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} - -/* filters */ -.tablesorter-dark input.tablesorter-filter, -.tablesorter-dark select.tablesorter-filter { - width: 98%; - height: auto; - margin: 0; - padding: 4px; - background-color: #111; - border: 1px solid #222; - color: #ddd; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: height 0.1s ease; - -moz-transition: height 0.1s ease; - -o-transition: height 0.1s ease; - transition: height 0.1s ease; -} -/* rows hidden by filtering (needed for child rows) */ -.tablesorter .filtered { - display: none; -} - -/* ajax error row */ -.tablesorter .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: #e6bf99; -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.default.css b/vendor/FHC-vendor/jquery-tablesorter/css/theme.default.css deleted file mode 100644 index 6c2a34621..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.default.css +++ /dev/null @@ -1,194 +0,0 @@ -/************* -Default Theme -*************/ -/* overall */ -.tablesorter-default { - width: 100%; - font: 12px/18px Arial, Sans-serif; - color: #333; - background-color: #fff; - border-spacing: 0; - margin: 10px 0 15px; - text-align: left; -} - -/* header */ -.tablesorter-default th, -.tablesorter-default thead td { - font-weight: bold; - color: #000; - background-color: #fff; - border-collapse: collapse; - border-bottom: #ccc 2px solid; - padding: 0; -} -.tablesorter-default tfoot th, -.tablesorter-default tfoot td { - border: 0; -} -.tablesorter-default .header, -.tablesorter-default .tablesorter-header { - background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); - background-position: center right; - background-repeat: no-repeat; - cursor: pointer; - white-space: normal; - padding: 4px 20px 4px 4px; -} -.tablesorter-default thead .headerSortUp, -.tablesorter-default thead .tablesorter-headerSortUp, -.tablesorter-default thead .tablesorter-headerAsc { - background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); - border-bottom: #000 2px solid; -} -.tablesorter-default thead .headerSortDown, -.tablesorter-default thead .tablesorter-headerSortDown, -.tablesorter-default thead .tablesorter-headerDesc { - background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); - border-bottom: #000 2px solid; -} -.tablesorter-default thead .sorter-false { - background-image: none; - cursor: default; - padding: 4px; -} - -/* tfoot */ -.tablesorter-default tfoot .tablesorter-headerSortUp, -.tablesorter-default tfoot .tablesorter-headerSortDown, -.tablesorter-default tfoot .tablesorter-headerAsc, -.tablesorter-default tfoot .tablesorter-headerDesc { - border-top: #000 2px solid; -} - -/* tbody */ -.tablesorter-default td { - background-color: #fff; - border-bottom: #ccc 1px solid; - padding: 4px; - vertical-align: top; -} - -/* hovered row colors */ -.tablesorter-default tbody > tr.hover > td, -.tablesorter-default tbody > tr:hover > td, -.tablesorter-default tbody > tr.even:hover > td, -.tablesorter-default tbody > tr.odd:hover > td { - background-color: #fff; - color: #000; -} - -/* table processing indicator */ -.tablesorter-default .tablesorter-processing { - background-position: center center !important; - background-repeat: no-repeat !important; - /* background-image: url(images/loading.gif) !important; */ - background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important; -} - -/* Zebra Widget - row alternating colors */ -.tablesorter-default tr.odd > td { - background-color: #dfdfdf; -} -.tablesorter-default tr.even > td { - background-color: #efefef; -} - -/* Column Widget - column sort colors */ -.tablesorter-default tr.odd td.primary { - background-color: #bfbfbf; -} -.tablesorter-default td.primary, -.tablesorter-default tr.even td.primary { - background-color: #d9d9d9; -} -.tablesorter-default tr.odd td.secondary { - background-color: #d9d9d9; -} -.tablesorter-default td.secondary, -.tablesorter-default tr.even td.secondary { - background-color: #e6e6e6; -} -.tablesorter-default tr.odd td.tertiary { - background-color: #e6e6e6; -} -.tablesorter-default td.tertiary, -.tablesorter-default tr.even td.tertiary { - background-color: #f2f2f2; -} - -/* caption */ -caption { - background-color: #fff; -} - -/* filter widget */ -.tablesorter-default .tablesorter-filter-row { - background-color: #eee; -} -.tablesorter-default .tablesorter-filter-row td { - background-color: #eee; - border-bottom: #ccc 1px solid; - line-height: normal; - text-align: center; /* center the input */ - -webkit-transition: line-height 0.1s ease; - -moz-transition: line-height 0.1s ease; - -o-transition: line-height 0.1s ease; - transition: line-height 0.1s ease; -} -/* optional disabled input styling */ -.tablesorter-default .tablesorter-filter-row .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; -} -/* hidden filter row */ -.tablesorter-default .tablesorter-filter-row.hideme td { - /*** *********************************************** ***/ - /*** change this padding to modify the thickness ***/ - /*** of the closed filter row (height = padding x 2) ***/ - padding: 2px; - /*** *********************************************** ***/ - margin: 0; - line-height: 0; - cursor: pointer; -} -.tablesorter-default .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} -/* filters */ -.tablesorter-default input.tablesorter-filter, -.tablesorter-default select.tablesorter-filter { - width: 95%; - height: auto; - margin: 4px auto; - padding: 4px; - background-color: #fff; - border: 1px solid #bbb; - color: #333; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: height 0.1s ease; - -moz-transition: height 0.1s ease; - -o-transition: height 0.1s ease; - transition: height 0.1s ease; -} -/* rows hidden by filtering (needed for child rows) */ -.tablesorter .filtered { - display: none; -} - -/* ajax error row */ -.tablesorter .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: #e6bf99; -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.dropbox.css b/vendor/FHC-vendor/jquery-tablesorter/css/theme.dropbox.css deleted file mode 100644 index c173032a3..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.dropbox.css +++ /dev/null @@ -1,216 +0,0 @@ -/************* - Dropbox Theme (by thezoggy) - *************/ -/* overall */ -.tablesorter-dropbox { - width: 100%; - font: 13px/32px "Open Sans","lucida grande","Segoe UI",arial,verdana,"lucida sans unicode",tahoma,sans-serif; - color: #555; - text-align: left; - background-color: #fff; - border-collapse: collapse; - border-top: 1px solid #82cffa; - border-spacing: 0; -} - -/* header */ -.tablesorter-dropbox th, -.tablesorter-dropbox thead td, -.tablesorter-dropbox tfoot th, -.tablesorter-dropbox tfoot td { - background-color: #f0f9ff; - border-color: #82cffa #e7f2fb #96c4ea; - border-style: solid; - border-width: 1px; - padding: 3px 6px; - font-size: 13px; - font-weight: normal; - line-height: 29px; - color: #2281CF; - text-align: left; -} -.tablesorter-dropbox .header, -.tablesorter-dropbox thead tr, -.tablesorter-dropbox .tablesorter-headerRow { - background-color: #f0f9ff; - border-bottom: 1px solid #96c4ea; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 0 0 #000000 inset; - white-space: normal; -} -.tablesorter-dropbox .tablesorter-headerSortUp, -.tablesorter-dropbox .tablesorter-headerSortDown, -.tablesorter-dropbox .tablesorter-headerAsc, -.tablesorter-dropbox .tablesorter-headerDesc { - font-weight: 600; -} -.tablesorter-dropbox .tablesorter-header { - cursor: pointer; -} -.tablesorter-dropbox .tablesorter-header i.tablesorter-icon { - width: 9px; - height: 9px; - padding: 0 10px 0 4px; - display: inline-block; - background-position: center right; - background-repeat: no-repeat; - content: ""; -} -.tablesorter-dropbox .tablesorter-headerSortUp i.tablesorter-icon, -.tablesorter-dropbox .tablesorter-headerAsc i.tablesorter-icon { - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALhJREFUeNpi/P//PwMhwILMiexYx8bIxNTy/9+/muUVQb9g4kzIitg4edI4+YRLQTSyOCPMupjerUI8whK3OXgEhH58+fDuy9sXqkuKvd+hmMTOxdvCxS8sxMUvxACiQXwU6+Im7DDg5BNKY+fiY2BmYWMA0SA+SByuiJ2bbzIHrwAzMxsb0AGMDCAaxAeJg+SZ7wtaqfAISfQAdTIwMUM8ywhUyMTEzPD/71+5FXvPLWUkJpwAAgwAZqYvvHStbD4AAAAASUVORK5CYII='); - /* background-image: url(images/dropbox-asc.png); */ -} -.tablesorter-dropbox .tablesorter-headerSortUp:hover i.tablesorter-icon, -.tablesorter-dropbox .tablesorter-headerAsc:hover i.tablesorter-icon { - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALVJREFUeNpi/P//PwMhwILMCc+qZGNkYmr5/+9fzcpp7b9g4kzIitjYOdM4uXlLQTSyOCPMuqi8OiEefsHbHFzcQj++fX335eN71WWTmt6hmMTOwdXCycMnBDSJAUSD+CjWxRQ0GHBw86Sxc3AyMDOzMIBoEB8kDlfEzsk1mYOLByjPCnQAIwOIBvFB4iB55rsfmVS4+QV7QNYwMTNDHApUyMTExPDv/z+5Feu3L2UkJpwAAgwA244u+I9CleAAAAAASUVORK5CYII='); - /* background-image: url(images/dropbox-asc-hovered.png); */ -} -.tablesorter-dropbox .tablesorter-headerSortDown i.tablesorter-icon, -.tablesorter-dropbox .tablesorter-headerDesc i.tablesorter-icon { - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALdJREFUeNpi/P//PwMhwBLdtVGFhZ3zNhMzC4bkv79/GP78/K7KCDIpZ9mVw+xcfDaMTExwBf///WP4+e3TkSlROrZg7UxMLLns3HxnmFnZmGGK/v7+9ff3j2+5YHkQMSlC48Kv719m/f//D2IKkAbxQeJwRSDw4/OHmr+/fr0DqmAA0SA+TA6uaEq0zjugG+r//vkFcks9iA/3HbJvvn18O+vf379yP758mMXAoAAXZyQmnAACDADX316BiTFbMQAAAABJRU5ErkJggg=='); - /* background-image: url(images/dropbox-desc.png); */ -} -.tablesorter-dropbox .tablesorter-headerSortDown:hover i.tablesorter-icon, -.tablesorter-dropbox .tablesorter-headerDesc:hover i.tablesorter-icon { - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALNJREFUeNpi/P//PwMhwBJf3uP879e3PUzMzBiS//7+ZWBi43JhBJmU2z7nIzMzEx8jIyNcAUj8799/nyZXpvCzgARYuXjTWBkZVjCzIEz7++cvw+//DGkgNiPMTWVT1l5hZvynDTINbMp/pqtdOcE6IDkmmM5fv3/5//v37z9QBQOIBvFhcnBFEwoj7/5jZFnz9+8fBhAN4sN9h+ybH9++JrGxscr/+vE1CVmckZhwAggwANvlUyq5Dd1wAAAAAElFTkSuQmCC'); - /* background-image: url(images/dropbox-desc-hovered.png); */ -} -.tablesorter-dropbox thead .sorter-false { - cursor: default; -} - -.tablesorter-dropbox thead .sorter-false i.tablesorter-icon, -.tablesorter-dropbox thead .sorter-false:hover i.tablesorter-icon { - background-image: none; - padding: 4px; -} - -/* tbody */ -.tablesorter-dropbox td { - padding: 5px 6px; - line-height: 32px; - color: #555; - text-align: left; - border-top: 1px solid #edf1f5; - border-bottom: 1px solid #edf1f5; -} - -/* hovered row colors */ -.tablesorter-dropbox tbody > tr.hover > td, -.tablesorter-dropbox tbody > tr:hover > td, -.tablesorter-dropbox tbody > tr.even:hover > td, -.tablesorter-dropbox tbody > tr.odd:hover > td { - background-color: rgba(230, 245, 255, 0.3); - border-right: 0; - border-left: 0; - border-color: #c6d8e4; - /* trick to do border-top and bottom colors */ - border-style: double; -} - -/* table processing indicator */ -.tablesorter-dropbox .tablesorter-processing { - background-position: center center !important; - background-repeat: no-repeat !important; - /* background-image: url(images/loading.gif) !important; */ - background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important; -} - -/* Zebra Widget - row alternating colors */ -.tablesorter-dropbox tr.odd > td { -} -.tablesorter-dropbox tr.even > td { -} - -/* Column Widget - column sort colors */ -.tablesorter-dropbox td.primary, -.tablesorter-dropbox tr.odd td.primary { -} -.tablesorter-dropbox tr.even td.primary { -} -.tablesorter-dropbox td.secondary, -.tablesorter-dropbox tr.odd td.secondary { -} -.tablesorter-dropbox tr.even td.secondary { -} -.tablesorter-dropbox td.tertiary, -.tablesorter-dropbox tr.odd td.tertiary { -} -.tablesorter-dropbox tr.even td.tertiary { -} - -/* caption */ -caption { - background-color: #fff; -} - -/* Filter Widget */ -.tablesorter-dropbox .tablesorter-filter-row { - background-color: #fff; -} -.tablesorter-dropbox .tablesorter-filter-row td { - background-color: #fff; - line-height: normal; - text-align: center; /* center the input */ - -webkit-transition: line-height 0.1s ease; - -moz-transition: line-height 0.1s ease; - -o-transition: line-height 0.1s ease; - transition: line-height 0.1s ease; -} -/* optional disabled input styling */ -.tablesorter-dropbox .tablesorter-filter-row .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; -} - -/* hidden filter row */ -.tablesorter-dropbox .tablesorter-filter-row.hideme td { - /*** *********************************************** ***/ - /*** change this padding to modify the thickness ***/ - /*** of the closed filter row (height = padding x 2) ***/ - padding: 2px; - /*** *********************************************** ***/ - margin: 0; - line-height: 0; - cursor: pointer; -} -.tablesorter-dropbox .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} - -/* filters */ -.tablesorter-dropbox input.tablesorter-filter, -.tablesorter-dropbox select.tablesorter-filter { - width: 98%; - height: auto; - margin: 0; - background-color: #fff; - border: 1px solid #bbb; - color: #333; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: height 0.1s ease; - -moz-transition: height 0.1s ease; - -o-transition: height 0.1s ease; - transition: height 0.1s ease; -} -/* rows hidden by filtering (needed for child rows) */ -.tablesorter .filtered { - display: none; -} - -/* ajax error row */ -.tablesorter .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: #e6bf99; -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.green.css b/vendor/FHC-vendor/jquery-tablesorter/css/theme.green.css deleted file mode 100644 index 32a0f3c6f..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.green.css +++ /dev/null @@ -1,212 +0,0 @@ -/************* - Green Theme - *************/ -/* overall */ -.tablesorter-green { - width: 100%; - text-align: left; - border-spacing: 0; - border: #cdcdcd 1px solid; - border-width: 1px 0 0 1px; -} -.tablesorter-green th, -.tablesorter-green td { - font: 12px/18px Arial, Sans-serif; - border: #cdcdcd 1px solid; - border-width: 0 1px 1px 0; -} - -/* header */ -.tablesorter-green thead tr .tablesorter-header, -.tablesorter-green tfoot tr { - background-position: center center; - background-repeat: repeat-x; - background-image: url(data:image/gif;base64,R0lGODlhAQBkAOYAAN/e39XU1fX19tTU1eXm5uTl5ePk5OLj4+Hi4vX29fT19PP08/Lz8vHy8fDx8O/w7+7v7uzt7Orr6ufo5/T08/Pz8ufn5uLi4eDg39/f3t3d3Nzc29HR0NDQz8/Pzuvq6urp6eno6Ojn5+fm5tfW1tbV1dTT09PS0tLR0dHQ0NDPz/f39/b29vX19fT09PPz8/Ly8vHx8e/v7+7u7u3t7ezs7Ovr6+rq6unp6ejo6Ofn5+bm5uXl5eTk5OPj4+Li4uHh4eDg4N/f397e3t3d3dzc3Nvb29ra2tnZ2djY2NfX19XV1dPT09LS0tHR0dDQ0M/Pz8rKysXFxf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAFMALAAAAAABAGQAAAdegCsrLC0tLi+ILi6FCSwsCS0KkhQVDA0OMjM0NTYfICEiIzw9P0AYGUQaG0ZHSEoDTU9Qs08pTk1MSyRJR0VDQT8+PTw7Ojg3NTMyMTAvi4WOhC0vMTI1OT9GTlFSgQA7); - /* background-image: url(images/green-header.gif); */ -} -.tablesorter-green th, -.tablesorter-green thead td { - font-weight: bold; - border-right: #cdcdcd 1px solid; - border-collapse: collapse; - padding: 6px; -} -.tablesorter-green .header, -.tablesorter-green .tablesorter-header-inner { - background-position: 5px center; - background-repeat: no-repeat; - background-image: url(data:image/gif;base64,R0lGODlhEAAQAOYAAA5NDBBYDlWWUzRUM5DVjp7inJ/fnQ1ECiCsGhyYFxqKFRFdDhBXDQxCCiO8HSK2HCCqGh2aGByUFxuPFhqNFhmHFRZ2EhVvERRpEBBVDSS8HiGyHB+mGh6fGRuTFxiAFBd5Eww/Cgs5CRp7Fiu+JRx8GCy/JjHAKyynKCuhJzXCMDbCMDnDMyNuHz3EODy9N0LFPSl7JkvIRjycOFDKS1LKTVPLT1XLUFTCT17OWTBkLmbQYnDTbHXVcXnWdoXago/djGmUZ112XCJEIEdjRf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAEUALAAAAAAQABAAAAdlgEWCg4SFhoIvh4cVLECKhCMeJjwFj0UlEwgaMD4Gii0WFAkRHQ47BIY6IQAZDAwBCyAPOJa1toRBGBAwNTY3OT0/AoZCDQoOKi4yNDOKRCIfGycrKZYDBxIkKLZDFxy3RTHgloEAOw==); - /* background-image: url(images/green-unsorted.gif); */ - border-collapse: collapse; - white-space: normal; - cursor: pointer; -} -.tablesorter-green thead .headerSortUp .tablesorter-header-inner, -.tablesorter-green thead .tablesorter-headerSortUp .tablesorter-header-inner, -.tablesorter-green thead .tablesorter-headerAsc .tablesorter-header-inner { - background-image: url(data:image/gif;base64,R0lGODlhEAAQANUAAA5NDBBYDpDVjp7inJ/fnSCsGhyYFxFdDhBXDSO8HSK2HB2aGBuPFhqNFhmHFRZ2EhBVDSS8Hh6fGRuTFxd5Eww/Chp7Fhx8GCy/JjnDMyNuHzy9N0LFPVTCTzBkLmbQYnDTbHnWdo/djP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACMALAAAAAAQABAAAAY4wJFwSCwaj8ikcslMbpojR0bEtEwwoIHywihEOCECUvNoGBaSxEdg9FQAEAQicKAoOtC8fs8fBgEAOw==) - /* background-image: url(images/green-asc.gif); */ -} -.tablesorter-green thead .headerSortDown .tablesorter-header-inner, -.tablesorter-green thead .tablesorter-headerSortDown .tablesorter-header-inner, -.tablesorter-green thead .tablesorter-headerDesc .tablesorter-header-inner { - background-image: url(data:image/gif;base64,R0lGODlhEAAQANUAAFWWUzRUMw1EChqKFQxCCiO8HSCqGhyUFxVvERRpECGyHB+mGhiAFAs5CSu+JTHAKyynKCuhJzXCMDbCMD3EOELFPSl7JkvIRjycOFDKS1LKTVPLT1XLUF7OWXXVcYXagmmUZ112XCJEIEdjRf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACQALAAAAAAQABAAAAY4QJJwSCwaj8ikcskkghKGimbD6Xg+AGOIMChIKJcMBjlqMBSPSUQZEBwcEKYIsWiSLPa8fs9HBgEAOw==) - /* background-image: url(images/green-desc.gif); */ -} -.tablesorter-green th.tablesorter-header .tablesorter-header-inner, -.tablesorter-green td.tablesorter-header .tablesorter-header-inner { - padding-left: 23px; -} -.tablesorter-green thead .tablesorter-header.sorter-false .tablesorter-header-inner { - background-image: none; - cursor: default; - padding-left: 6px; -} - -/* tfoot */ -.tablesorter-green tbody td, -.tablesorter-green tfoot th { - padding: 6px; - vertical-align: top; -} - -/* tbody */ -.tablesorter-green td { - color: #3d3d3d; - padding: 6px; -} - -/* hovered row colors - you'll need to add additional lines for - rows with more than 2 child rows - */ -.tablesorter-green tbody > tr.hover > td, -.tablesorter-green tbody > tr:hover > td, -.tablesorter-green tbody > tr:hover + tr.tablesorter-childRow > td, -.tablesorter-green tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, -.tablesorter-green tbody > tr.even.hover > td, -.tablesorter-green tbody > tr.even:hover > td, -.tablesorter-green tbody > tr.even:hover + tr.tablesorter-childRow > td, -.tablesorter-green tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - background-color: #d9d9d9; -} -.tablesorter-green tbody > tr.odd.hover > td, -.tablesorter-green tbody > tr.odd:hover > td, -.tablesorter-green tbody > tr.odd:hover + tr.tablesorter-childRow > td, -.tablesorter-green tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - background-color: #bfbfbf; -} - -/* table processing indicator */ -.tablesorter-green .tablesorter-processing { - background-position: center center !important; - background-repeat: no-repeat !important; - /* background-image: url(images/loading.gif) !important; */ - background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important; -} - -/* Zebra Widget - row alternating colors */ -.tablesorter-green tr.odd > td { - background-color: #ebfaeb; -} -.tablesorter-green tr.even > td { - background-color: #fff; -} - -/* Column Widget - column sort colors */ -.tablesorter-green td.primary, -.tablesorter-green tr.odd td.primary { - background-color: #99e6a6; -} -.tablesorter-green tr.even td.primary { - background-color: #c2f0c9; -} -.tablesorter-green td.secondary, -.tablesorter-green tr.odd td.secondary { - background-color: #c2f0c9; -} -.tablesorter-green tr.even td.secondary { - background-color: #d6f5db; -} -.tablesorter-green td.tertiary, -.tablesorter-green tr.odd td.tertiary { - background-color: #d6f5db; -} -.tablesorter-green tr.even td.tertiary { - background-color: #ebfaed; -} - -/* caption */ -caption { - background-color: #fff; -} - -/* filter widget */ -.tablesorter-green .tablesorter-filter-row { - background-color: #eee; -} -.tablesorter-green .tablesorter-filter-row td { - background-color: #eee; - line-height: normal; - text-align: center; /* center the input */ - -webkit-transition: line-height 0.1s ease; - -moz-transition: line-height 0.1s ease; - -o-transition: line-height 0.1s ease; - transition: line-height 0.1s ease; -} -/* optional disabled input styling */ -.tablesorter-green .tablesorter-filter-row .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; -} -/* hidden filter row */ -.tablesorter-green .tablesorter-filter-row.hideme td { - /*** *********************************************** ***/ - /*** change this padding to modify the thickness ***/ - /*** of the closed filter row (height = padding x 2) ***/ - padding: 2px; - /*** *********************************************** ***/ - margin: 0; - line-height: 0; - cursor: pointer; -} -.tablesorter-green .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} -/* filters */ -.tablesorter-green input.tablesorter-filter, -.tablesorter-green select.tablesorter-filter { - width: 98%; - height: auto; - margin: 0; - padding: 4px; - background-color: #fff; - border: 1px solid #bbb; - color: #333; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: height 0.1s ease; - -moz-transition: height 0.1s ease; - -o-transition: height 0.1s ease; - transition: height 0.1s ease; -} -/* rows hidden by filtering (needed for child rows) */ -.tablesorter .filtered { - display: none; -} - -/* ajax error row */ -.tablesorter .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: #e6bf99; -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.grey.css b/vendor/FHC-vendor/jquery-tablesorter/css/theme.grey.css deleted file mode 100644 index fdb3d9b0d..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.grey.css +++ /dev/null @@ -1,252 +0,0 @@ -/************* - Grey Theme - *************/ -/* overall */ -.tablesorter-grey { - width: 100%; - margin: 10px 0 15px; - text-align: left; - border-spacing: 0; - border-left: #555 1px solid; -} - -/* header */ -.tablesorter-grey th, -.tablesorter-grey thead td { - font: bold 12px/18px Arial, Sans-serif; - color: #c8c8c8; - background-color: #3c3c3c; - background-image: -moz-linear-gradient(top, #555, #3c3c3c); - background-image: -ms-linear-gradient(top, #555, #3c3c3c); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555), to(#3c3c3c)); - background-image: -webkit-linear-gradient(top, #555, #3c3c3c); - background-image: -o-linear-gradient(top, #555, #3c3c3c); - background-image: linear-gradient(to bottom, #555,#3c3c3c); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#555555', endColorstr='#3c3c3c',GradientType=0 ); - background-repeat: repeat-x; - border-right: #555 1px solid; - text-shadow: 0 1px 0 rgba(128, 128, 128, 0.7); - -webkit-box-shadow: inset 0 1px 0 #222; - -moz-box-shadow: inset 0 1px 0 #222; - box-shadow: inset 0 1px 0 #222; - padding: 4px; -} -.tablesorter-grey .tablesorter-header-inner, -.tablesorter-grey .tablesorter-header-inner { - position: relative; - padding: 4px 15px 4px 4px; -} -.tablesorter-grey .header, -.tablesorter-grey .tablesorter-header { - cursor: pointer; -} -.tablesorter-grey .header i, -.tablesorter-grey .tablesorter-header i.tablesorter-icon { - width: 18px; - height: 10px; - position: absolute; - right: 2px; - top: 50%; - margin-top: -10px; - /* white (unsorted) double arrow */ - background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); - background-repeat: no-repeat; - background-position: center right; - padding: 4px; - white-space: normal; -} -.tablesorter-grey th.headerSortUp, -.tablesorter-grey th.tablesorter-headerSortUp, -.tablesorter-grey th.headerSortDown, -.tablesorter-grey th.tablesorter-headerSortDown { - color: #ddd; - background-color: #135185; - background-image: -moz-linear-gradient(top, #195c93, #0e4776); - background-image: -ms-linear-gradient(top, #195c93, #0e4776); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#195c93), to(#0e4776)); - background-image: -webkit-linear-gradient(top, #195c93, #0e4776); - background-image: -o-linear-gradient(top, #195c93, #0e4776); - background-image: linear-gradient(to bottom, #195c93, #0e4776); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#195c93', endColorstr='#0e4776',GradientType=0 ); -} -.tablesorter-grey .headerSortUp i.tablesorter-icon, -.tablesorter-grey .tablesorter-headerSortUp i.tablesorter-icon, -.tablesorter-grey .tablesorter-headerAsc i.tablesorter-icon { - /* white asc arrow */ - background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); -} -.tablesorter-grey .headerSortDown i.tablesorter-icon, -.tablesorter-grey .tablesorter-headerSortDown i.tablesorter-icon, -.tablesorter-grey .tablesorter-headerDesc i.tablesorter-icon { - /* white desc arrow */ - background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); -} -.tablesorter-grey thead .sorter-false { - cursor: default; -} -.tablesorter-grey thead .sorter-false i.tablesorter-icon { - background-image: none; - padding: 4px; -} - -/* tfoot */ -.tablesorter-grey tbody td, -.tablesorter-grey tfoot th, -.tablesorter-grey tfoot td { - padding: 4px; - vertical-align: top; - border-right: #555 1px solid; -} -.tablesorter-grey tfoot th, -.tablesorter-grey tfoot td { - padding: 8px; -} - -/* tbody */ -.tablesorter-grey td { - color: #eee; - background-color: #6d6d6d; - padding: 4px; - vertical-align: top; -} - -/* hovered row colors - you'll need to add additional lines for - rows with more than 2 child rows - */ -.tablesorter-grey tbody > tr.hover > td, -.tablesorter-grey tbody > tr:hover > td, -.tablesorter-grey tbody > tr:hover + tr.tablesorter-childRow > td, -.tablesorter-grey tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, -.tablesorter-grey tbody > tr.even.hover > td, -.tablesorter-grey tbody > tr.even:hover > td, -.tablesorter-grey tbody > tr.even:hover + tr.tablesorter-childRow > td, -.tablesorter-grey tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - background-color: #134b78; -} -.tablesorter-grey tbody > tr.odd.hover > td, -.tablesorter-grey tbody > tr.odd:hover > td, -.tablesorter-grey tbody > tr.odd:hover + tr.tablesorter-childRow > td, -.tablesorter-grey tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - background-color: #134b78; -} - -/* table processing indicator */ -.tablesorter-grey .tablesorter-processing { - background-position: center center !important; - background-repeat: no-repeat !important; - /* background-image: url(images/loading.gif) !important; */ - background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important; -} - -/* Zebra Widget - row alternating colors */ -.tablesorter-grey tbody tr.odd > td { - background-color: #5e5e5e; -} -.tablesorter-grey tbody tr.even > td { - background-color: #6d6d6d; -} - -/* Column Widget - column sort colors */ -.tablesorter-grey td.primary, -.tablesorter-grey tr.odd td.primary { - color: #ddd; - background-color: #165388; -} -.tablesorter-grey tr.even td.primary { - color: #ddd; - background-color: #195c93; -} -.tablesorter-grey td.secondary, -.tablesorter-grey tr.odd td.secondary { - color: #ddd; - background-color: #185C9A; -} -.tablesorter-grey tr.even td.secondary { - color: #ddd; - background-color: #1D67A5; -} -.tablesorter-grey td.tertiary, -.tablesorter-grey tr.odd td.tertiary { - color: #ddd; - background-color: #1B67AD; -} -.tablesorter-grey tr.even td.tertiary { - color: #ddd; - background-color: #2073B7; -} - -/* caption */ -caption { - background-color: #fff; -} - -/* filter widget */ -.tablesorter-grey .tablesorter-filter-row { - background-color: #3c3c3c; -} -.tablesorter-grey .tablesorter-filter-row td { - background-color: #3c3c3c; - line-height: normal; - text-align: center; /* center the input */ - -webkit-transition: line-height 0.1s ease; - -moz-transition: line-height 0.1s ease; - -o-transition: line-height 0.1s ease; - transition: line-height 0.1s ease; -} -/* optional disabled input styling */ -.tablesorter-grey .tablesorter-filter-row .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; -} -/* hidden filter row */ -.tablesorter-grey .tablesorter-filter-row.hideme td { - /*** *********************************************** ***/ - /*** change this padding to modify the thickness ***/ - /*** of the closed filter row (height = padding x 2) ***/ - padding: 2px; - /*** *********************************************** ***/ - margin: 0; - line-height: 0; - cursor: pointer; -} -.tablesorter-grey .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} -/* filters */ -.tablesorter-grey input.tablesorter-filter, -.tablesorter-grey select.tablesorter-filter { - width: 98%; - height: auto; - margin: 0; - padding: 4px; - background-color: #6d6d6d; - border: 1px solid #555; - color: #ddd; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: height 0.1s ease; - -moz-transition: height 0.1s ease; - -o-transition: height 0.1s ease; - transition: height 0.1s ease; -} -/* rows hidden by filtering (needed for child rows) */ -.tablesorter .filtered { - display: none; -} - -/* ajax error row */ -.tablesorter .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: #e6bf99; -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.ice.css b/vendor/FHC-vendor/jquery-tablesorter/css/theme.ice.css deleted file mode 100644 index 0b406dece..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.ice.css +++ /dev/null @@ -1,212 +0,0 @@ -/************* - Ice Theme (by thezoggy) - *************/ -/* overall */ -.tablesorter-ice { - width: 100%; - background-color: #fff; - margin: 10px 0 15px; - text-align: left; - border-spacing: 0; - border: #ccc 1px solid; - border-width: 1px 0 0 1px; -} -.tablesorter-ice th, -.tablesorter-ice td { - border: #ccc 1px solid; - border-width: 0 1px 1px 0; -} - -/* header */ -.tablesorter-ice th, -.tablesorter-ice thead td { - font: 12px/18px Arial, Sans-serif; - color: #555; - background-color: #f6f8f9; - border-collapse: collapse; - padding: 4px; - text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7); -} -.tablesorter-ice tbody td, -.tablesorter-ice tfoot th, -.tablesorter-ice tfoot td { - padding: 4px; - vertical-align: top; -} -.tablesorter-ice .header, -.tablesorter-ice .tablesorter-header { - background-color: #f6f8f9; - background-position: center right; - background-repeat: no-repeat; - background-image: url(data:image/gif;base64,R0lGODlhDAAMAMQAAAJEjAJCiwJBigJAiANFjgNGjgNEjQRIkQRHkANIkAVMlAVQmAZWnQZUnAdYoAhdpAhZoAlhqQlepQliqQppsApmrQxutgtutQtutAxwtwxwtg1yug1zugxtsw1yuP8A/yH5BAEAAB8ALAAAAAAMAAwAAAUx4Cd+3GiOW4ado2d9VMVm1xg9ptadTsP+QNZEcjoQTBDGCAFgLRSfQgCYMAiCn8EvBAA7); - /* background-image: url(images/ice-unsorted.gif) */ - padding: 4px 20px 4px 4px; - white-space: normal; - cursor: pointer; -} -.tablesorter-ice .headerSortUp, -.tablesorter-ice .tablesorter-headerSortUp, -.tablesorter-ice .tablesorter-headerAsc { - color: #333; - background-color: #ebedee; - background-position: center right; - background-repeat: no-repeat; - background-image: url(data:image/gif;base64,R0lGODlhDAAMANUAAAJCiwNHkANFjgNEjQRIkQNJkQRMlARKkwRKkgVPlwZSmgdaogdYnwhfpghcowlhqgliqglgqAlgpwljqwporwpmrQplrAtsswtqsgtrsgtqsQxttAtvtQtttAxyuQxwtwxxtwxvtg10uw1zuQ1xuP8A/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACUALAAAAAAMAAwAAAY6wJKwJBoahyNQ6Dj0fDoZCpPEuWgqk4jxs8FQLI+Gg8Esm5kQydFQMC7IwkOAqUiUCAIzIjA4lwBlQQA7); - /* background-image: url(images/ice-desc.gif) */ -} -.tablesorter-ice .headerSortDown, -.tablesorter-ice .tablesorter-headerSortDown, -.tablesorter-ice .tablesorter-headerDesc { - color: #333; - background-color: #ebedee; - background-position: center right; - background-repeat: no-repeat; - background-image: url(data:image/gif;base64,R0lGODlhDAAMANUAAAE/iAJBigNFjgNEjQNFjQNDiwRHkQRHjwNHjwROlgRMlQRMlARJkgRKkgZQmAVPlgZWnQZSmgZRmAdXoAdXnwdUnAdbogdZoQhbowlhqAlepglkrAliqQtstAtqsQxyugxyuQxwuAxxuAxxtwxwtgxvtQ10vA12vA10u/8A/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACkALAAAAAAMAAwAAAY6wJQwdRoah6bP6DhEiVIdDxNEGm4yxlDpiJkwv2AmR2OhVCSJBsJ4gUQeCwOB6VAwBAXwYRAIpwBfQQA7); - /* background-image: url(images/ice-asc.gif); */ -} -.tablesorter-ice thead .sorter-false { - background-image: none; - cursor: default; - padding: 4px; -} - -/* tfoot */ -.tablesorter-ice tfoot .tablesorter-headerSortUp, -.tablesorter-ice tfoot .tablesorter-headerSortDown, -.tablesorter-ice tfoot .tablesorter-headerAsc, -.tablesorter-ice tfoot .tablesorter-headerDesc { - background-color: #ebedee; -} - -/* tbody */ -.tablesorter-ice td { - color: #333; -} - -/* hovered row colors */ -.tablesorter-ice tbody > tr.hover > td, -.tablesorter-ice tbody > tr:hover > td, -.tablesorter-ice tbody > tr.even:hover > td, -.tablesorter-ice tbody > tr.odd:hover > td { - background-color: #ebf2fa; -} - -/* table processing indicator */ -.tablesorter-ice .tablesorter-processing { - background-position: center center !important; - background-repeat: no-repeat !important; - /* background-image: url(images/loading.gif) !important; */ - background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important; -} - -/* Zebra Widget - row alternating colors */ -.tablesorter-ice tr.odd > td { - background-color: #dfdfdf; -} -.tablesorter-ice tr.even > td { - background-color: #efefef; -} - -/* Column Widget - column sort colors */ -.tablesorter-ice td.primary, -.tablesorter-ice tr.odd td.primary { - background-color: #9ae5e5; -} -.tablesorter-ice tr.even td.primary { - background-color: #c2f0f0; -} -.tablesorter-ice td.secondary, -.tablesorter-ice tr.odd td.secondary { - background-color: #c2f0f0; -} -.tablesorter-ice tr.even td.secondary { - background-color: #d5f5f5; -} -.tablesorter-ice td.tertiary, -.tablesorter-ice tr.odd td.tertiary { - background-color: #d5f5f5; -} -.tablesorter-ice tr.even td.tertiary { - background-color: #ebfafa; -} - -/* sticky headers */ -.tablesorter-ice.containsStickyHeaders thead tr:nth-child(1) th, -.tablesorter-ice.containsStickyHeaders thead tr:nth-child(1) td { - border-top: #ccc 1px solid; -} - -/* caption */ -caption { - background-color: #fff; -} - -/* filter widget */ -.tablesorter-ice .tablesorter-filter-row { - background-color: #eee; -} -.tablesorter-ice .tablesorter-filter-row td { - background-color: #eee; - line-height: normal; - text-align: center; /* center the input */ - -webkit-transition: line-height 0.1s ease; - -moz-transition: line-height 0.1s ease; - -o-transition: line-height 0.1s ease; - transition: line-height 0.1s ease; -} -/* optional disabled input styling */ -.tablesorter-ice .tablesorter-filter-row .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; -} -/* hidden filter row */ -.tablesorter-ice .tablesorter-filter-row.hideme td { - /*** *********************************************** ***/ - /*** change this padding to modify the thickness ***/ - /*** of the closed filter row (height = padding x 2) ***/ - padding: 2px; - /*** *********************************************** ***/ - margin: 0; - line-height: 0; - cursor: pointer; -} -.tablesorter-ice .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} -/* filters */ -.tablesorter-ice input.tablesorter-filter, -.tablesorter-ice select.tablesorter-filter { - width: 98%; - height: auto; - margin: 0; - padding: 4px; - background-color: #fff; - border: 1px solid #bbb; - color: #333; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: height 0.1s ease; - -moz-transition: height 0.1s ease; - -o-transition: height 0.1s ease; - transition: height 0.1s ease; -} -/* rows hidden by filtering (needed for child rows) */ -.tablesorter .filtered { - display: none; -} - -/* ajax error row */ -.tablesorter .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: #e6bf99; -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.jui.css b/vendor/FHC-vendor/jquery-tablesorter/css/theme.jui.css deleted file mode 100644 index aa1309b4d..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.jui.css +++ /dev/null @@ -1,164 +0,0 @@ -/************* - jQuery UI Theme - *************/ - /* overall */ -.tablesorter-jui { - width: 100%; - border-collapse: separate; - border-spacing: 2px; /* adjust spacing between table cells */ - margin: 10px 0 15px; - padding: 5px; - font-size: 0.8em; -} - -/* header */ -.tablesorter-jui thead th, -.tablesorter-jui thead td, -.tablesorter-jui tfoot th, -.tablesorter-jui tfoot td { - position: relative; - background-repeat: no-repeat; - background-position: right center; - /* UI hover and active states make the font normal and the table resizes, this fixes it */ - font-weight: bold !important; - border-width: 1px !important; - text-align: left; - padding: 8px; /* wider than the icon */ -} -.tablesorter-jui .header, -.tablesorter-jui .tablesorter-header { - cursor: pointer; - white-space: normal; -} -.tablesorter-jui .tablesorter-header-inner { - padding-right: 20px; -} -.tablesorter-jui thead tr th .ui-icon { - position: absolute; - right: 3px; - top: 50%; - margin-top: -8px; /* half the icon height; older IE doesn't like this */ -} - -.tablesorter-jui thead .sorter-false { - cursor: default; -} -.tablesorter-jui thead tr .sorter-false .ui-icon { - display: none; -} - -/* tfoot */ -.tablesorter-jui tfoot th, -.tablesorter-jui tfoot td { - font-weight: normal !important; - font-size: .9em; - padding: 2px; -} - -/* tbody */ -.tablesorter-jui td { - padding: 4px; - vertical-align: top; -} - -/* hovered row colors */ -.tablesorter-jui tbody > tr.hover > td, -.tablesorter-jui tbody > tr:hover > td { - opacity: 0.7; - filter: alpha(opacity=70); -} - -/* table processing indicator */ -.tablesorter-jui .tablesorter-processing .tablesorter-header-inner { - background-position: center center !important; - background-repeat: no-repeat !important; - /* background-image: url(images/loading.gif) !important; */ - background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important; -} - -/* Zebra widget - This allows you to use ui-state-default as the zebra stripe color */ -.tablesorter-jui tr.ui-state-default { - background-image: none; - font-weight: normal; -} - -/* processing background color */ -.tablesorter-jui .tablesorter-processing { - background-color: #ddd; /* older browsers that don't support rgba */ - background-color: rgba(255,255,255,0.8); -} - -/* caption */ -.tablesorter-jui caption { - border: 0; -} - -/* filter widget */ -.tablesorter-jui .tablesorter-filter-row { - background-color: transparent; -} -.tablesorter-jui .tablesorter-filter-row td { - background-color: transparent; - line-height: normal; - text-align: center; /* center the input */ - -webkit-transition: line-height 0.1s ease; - -moz-transition: line-height 0.1s ease; - -o-transition: line-height 0.1s ease; - transition: line-height 0.1s ease; -} -/* optional disabled input styling */ -.tablesorter-jui .tablesorter-filter-row .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; -} -/* hidden filter row */ -.tablesorter-jui .tablesorter-filter-row.hideme td { - /*** *********************************************** ***/ - /*** change this padding to modify the thickness ***/ - /*** of the closed filter row (height = padding x 2) ***/ - padding: 2px; - /*** *********************************************** ***/ - margin: 0; - line-height: 0; - cursor: pointer; -} -.tablesorter-jui .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} -/* filters */ -.tablesorter-jui input.tablesorter-filter, -.tablesorter-jui select.tablesorter-filter { - width: 98%; - height: auto; - margin: 0; - padding: 4px; - background-color: #fff; - border: 1px solid #bbb; - color: #333; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: height 0.1s ease; - -moz-transition: height 0.1s ease; - -o-transition: height 0.1s ease; - transition: height 0.1s ease; -} -/* rows hidden by filtering (needed for child rows) */ -.tablesorter .filtered { - display: none; -} - -/* ajax error row */ -.tablesorter .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: #e6bf99; -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.less b/vendor/FHC-vendor/jquery-tablesorter/css/theme.less deleted file mode 100644 index c0a4d7922..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.less +++ /dev/null @@ -1,329 +0,0 @@ -/* Tablesorter Custom LESS Theme by Rob Garrison - - To create your own theme, modify the code below and run it through - a LESS compiler, like this one: http://leafo.net/lessphp/editor.html - or download less.js from http://lesscss.org/ - -Test out these custom less files live - Basic Theme : http://codepen.io/Mottie/pen/eqBbn - Bootstrap : http://codepen.io/Mottie/pen/Ltzpi - Metro Style : http://codepen.io/Mottie/pen/gCslk - - */ - -/*** theme ***/ -@theme : tablesorter-custom; - -/*** fonts ***/ -@tableHeaderFont : 11px 'trebuchet ms', verdana, arial; -@tableBodyFont : 11px 'trebuchet ms', verdana, arial; - -/*** color definitions ***/ -/* for best results, only change the hue (120), - leave the saturation (60%) and luminosity (75%) alone - pick the color from here: http://hslpicker.com/#99E699 */ -@headerBackground : hsl(120, 60%, 75%); -@borderAndBackground : #cdcdcd; -@overallBorder : @borderAndBackground 1px solid; -@headerTextColor : #000; - -@bodyBackground : #fff; -@bodyTextColor : #000; - -@headerAsc : darken(spin(@headerBackground, 5), 10%); /* darken(@headerBackground, 10%); */ -@headerDesc : lighten(spin(@headerBackground, -5), 10%); /* desaturate(@headerAsc, 5%); */ - -@captionBackground : #fff; /* it might be best to match the document body background color here */ -@errorBackground : #e6bf99; /* ajax error message (added to thead) */ - -@filterCellBackground : #eee; -@filterElementTextColor: #333; -@filterElementBkgd : #fff; -@filterElementBorder : 1px solid #bbb; -@filterTransitionTime : 0.1s; -@filterRowHiddenHeight : 4px; /* becomes height using padding (so it's divided by 2) */ - -@overallPadding : 4px; -/* 20px should be slightly wider than the icon width to avoid overlap */ -@headerPadding : 4px 20px 4px 4px; - -/* url(icons/loading.gif); */ -@processingIcon : url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs='); - -/* zebra striping */ -.allRows { - background-color: @bodyBackground; - color: @bodyTextColor; -} -.evenRows { - background-color: lighten(@headerBackground, 40%); - color: @bodyTextColor; -} -.oddRows { - background-color: lighten(@headerBackground, 20%); -} - -/* hovered rows */ -.oddHovered { - background-color: desaturate(@headerBackground, 60%); - color: @bodyTextColor; -} -.evenHovered { - background-color: lighten( desaturate(@headerBackground, 60%), 10% ); - color: @bodyTextColor; -} - -/* Columns widget */ -@primaryOdd : spin(@headerBackground, 10); /* saturate( darken( desaturate(@headerBackground, 10%), 10% ), 30%); */ -@primaryEven : lighten( @primaryOdd, 10% ); -@secondaryOdd : @primaryEven; -@secondaryEven : lighten( @primaryEven, 5% ); -@tertiaryOdd : @secondaryEven; -@tertiaryEven : lighten( @secondaryEven, 5% ); - -/* Filter widget transition */ -.filterWidgetTransition { - -webkit-transition: line-height @filterTransitionTime ease; - -moz-transition: line-height @filterTransitionTime ease; - -o-transition: line-height @filterTransitionTime ease; - transition: line-height @filterTransitionTime ease; -} - -/*** Arrows ***/ -@arrowPosition : right 5px center; - -/* black */ -@unsortedBlack : url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); -@sortAscBlack : url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); -@sortDescBlack : url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); - -/* white */ -@unsortedWhite : url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); -@sortAscWhite : url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); -@sortDescWhite : url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); - -/* automatically choose the correct arrow/text color */ -.headerText (@a) when (lightness(@a) >= 50%) { - color: @headerTextColor; -} -.headerText (@a) when (lightness(@a) < 50%) { - color: lighten(@headerTextColor, 90%); -} -.unsorted (@a) when (lightness(@a) >= 50%) { - background-image: @unsortedBlack; -} -.unsorted (@a) when (lightness(@a) < 50%) { - background-image: @unsortedWhite; -} -.sortAsc (@a) when (lightness(@a) >= 50%) { - background-image: @sortAscBlack; -} -.sortAsc (@a) when (lightness(@a) < 50%) { - background-image: @sortAscWhite; -} -.sortDesc (@a) when (lightness(@a) >= 50%) { - background-image: @sortDescBlack; -} -.sortDesc (@a) when (lightness(@a) < 50%) { - background-image: @sortDescWhite; -} - -/* variable theme name - requires less.js 1.3+; - or just replace (!".@{theme}") with the contents of @theme - */ -.@{theme} { - font: @tableBodyFont; - background-color: @borderAndBackground; - margin: 10px 0 15px; - width: 100%; - text-align: left; - border-spacing: 0; - border: @overallBorder; - border-width: 1px 0 0 1px; - - th, td { - border: @overallBorder; - border-width: 0 1px 1px 0; - } - - /* style th's outside of the thead */ - th, thead td { - font: @tableHeaderFont; - font-weight: bold; - background-color: @headerBackground; - .headerText(@headerBackground); - border-collapse: collapse; - padding: @overallPadding; - } - - tbody td, tfoot th, tfoot td { - padding: @overallPadding; - vertical-align: top; - } - - /* style header */ - .tablesorter-header { - .unsorted(@headerBackground); - background-repeat: no-repeat; - background-position: @arrowPosition; - padding: @headerPadding; - cursor: pointer; - } - - .tablesorter-header.sorter-false { - background-image: none; - cursor: default; - padding: @overallPadding; - } - - .tablesorter-headerAsc { - background-color: @headerAsc; - .sortAsc(@headerBackground); - } - - .tablesorter-headerDesc { - background-color: @headerDesc; - .sortDesc(@headerBackground); - } - - /* tfoot */ - tfoot .tablesorter-headerAsc, - tfoot .tablesorter-headerDesc { - /* remove sort arrows from footer */ - background-image: none; - } - - /* optional disabled input styling */ - .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; - } - - /* body */ - tbody { - - td { - .allRows; - padding: @overallPadding; - vertical-align: top; - } - - /* Zebra Widget - row alternating colors */ - tr.odd > td { - .oddRows; - } - tr.even > td { - .evenRows; - } - - } - - /* hovered row colors - you'll need to add additional lines for - rows with more than 2 child rows - */ - tbody > tr.hover td, - tbody > tr:hover td, - tbody > tr:hover + tr.tablesorter-childRow > td, - tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, - tbody > tr.even.hover > td, - tbody > tr.even:hover > td, - tbody > tr.even:hover + tr.tablesorter-childRow > td, - tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - .evenHovered; - } - tbody > tr.odd.hover > td, - tbody > tr.odd:hover > td, - tbody > tr.odd:hover + tr.tablesorter-childRow > td, - tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - .oddHovered; - } - - /* table processing indicator - indeterminate spinner */ - .tablesorter-processing { - background-image: @processingIcon; - background-position: center center; - background-repeat: no-repeat; - } - - /* Column Widget - column sort colors */ - tr.odd td.primary { - background-color: @primaryOdd; - } - td.primary, tr.even td.primary { - background-color: @primaryEven; - } - tr.odd td.secondary { - background-color: @secondaryOdd; - } - td.secondary, tr.even td.secondary { - background-color: @secondaryEven; - } - tr.odd td.tertiary { - background-color: @tertiaryOdd; - } - td.tertiary, tr.even td.tertiary { - background-color: @tertiaryEven; - } - - /* caption (non-theme matching) */ - caption { - background-color: @captionBackground ; - } - - /* filter widget */ - .tablesorter-filter-row input, - .tablesorter-filter-row select { - width: 98%; - height: auto; - margin: 0; - padding: @overallPadding; - color: @filterElementTextColor; - background-color: @filterElementBkgd; - border: @filterElementBorder; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - .filterWidgetTransition; - } - .tablesorter-filter-row { - background-color: @filterCellBackground; - } - .tablesorter-filter-row td { - text-align: center; - background-color: @filterCellBackground; - line-height: normal; - text-align: center; /* center the input */ - .filterWidgetTransition; - } - /* hidden filter row */ - .tablesorter-filter-row.hideme td { - padding: @filterRowHiddenHeight / 2; - margin: 0; - line-height: 0; - cursor: pointer; - } - .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); - } - /* rows hidden by filtering (needed for child rows) */ - .filtered { - display: none; - } - - /* ajax error row */ - .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: @errorBackground; - } - -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/css/theme.metro-dark.css b/vendor/FHC-vendor/jquery-tablesorter/css/theme.metro-dark.css deleted file mode 100644 index 461c2db45..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/css/theme.metro-dark.css +++ /dev/null @@ -1,197 +0,0 @@ -/************* -Metro Dark Theme -*************/ -/* overall */ -.tablesorter-metro-dark { - width: 100%; - font: 12px/18px 'Segoe UI Semilight', 'Open Sans', Verdana, Arial, Helvetica, sans-serif; - color: #000; - background-color: #333; - border-spacing: 0; - margin: 10px 0 15px; - text-align: left; -} - -.tablesorter-metro-dark tr.dark-row th, .tablesorter-metro-dark tr.dark-row td, .tablesorter-metro-dark caption.dark-row { - background-color: #222; - color: #fff; - padding: 2px; - text-align: left; - font-size: 14px; -} - -/* header/footer */ -.tablesorter-metro-dark caption, -.tablesorter-metro-dark th, -.tablesorter-metro-dark thead td, -.tablesorter-metro-dark tfoot th, -.tablesorter-metro-dark tfoot td { - font-weight: 300; - font-size: 15px; - color: #ddd; - background-color: #333; - padding: 4px; -} - -.tablesorter-metro-dark .header, -.tablesorter-metro-dark .tablesorter-header { - background-image: url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAGFBMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u5jNePWAAAACHRSTlMAMxIHKwEgMWD59H4AAABSSURBVAjXY2BgYFJgAAHzYhDJ6igSAKTYBAUTgJSioKAQAwNzoaCguAFDiCAQuDIkgigxBgiA8cJAVCpQt6AgSL+JoKAzA0gjUBsQqBcBCYhFAAE/CV4zeSzxAAAAAElFTkSuQmCC); - background-position: right 5px center; - background-repeat: no-repeat; - cursor: pointer; - white-space: normal; -} -.tablesorter-metro-dark .tablesorter-header-inner { - padding: 0 18px 0 4px; -} -.tablesorter-metro-dark thead .headerSortUp, -.tablesorter-metro-dark thead .tablesorter-headerSortUp, -.tablesorter-metro-dark thead .tablesorter-headerAsc { - background-image: url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u5meJAOAAAACnRSTlMAMwsqXt+gIBUGxGoDMAAAAFlJREFUCNctzC0SQAAUReEzGNQ3AlHRiSRZFCVZYgeswRL8hLdK7834wj3tAlGP6y7fYHpKS6w6WwbVG0I1NZVnZPG8/DYxOYlnhUYkA06R1s9ESsxR4NIdPhkPFDFYuEnMAAAAAElFTkSuQmCC); -} -.tablesorter-metro-dark thead .headerSortDown, -.tablesorter-metro-dark thead .tablesorter-headerSortDown, -.tablesorter-metro-dark thead .tablesorter-headerDesc { - background-image: url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAALVBMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7i0NViAAAADnRSTlMAMiweCQITTvDctZZqaTlM310AAABcSURBVAjXY2BgYEtgAAFHERDJqigUAKSYBQUNgFSioKAYAwOLIBA4MASBKFUGQxAlzAAF+94BwWuGKBC1lIFl3rt3Lx0YGCzevWsGSjK9e6cAUlT3HKyW9wADAwDRrBiDy6bKzwAAAABJRU5ErkJggg==); -} -.tablesorter-metro-dark thead .sorter-false { - background-image: none; - cursor: default; - padding: 4px; -} - -/* tbody */ -.tablesorter-metro-dark td { - background-color: #fff; - padding: 4px; - vertical-align: top; -} - -/* hovered row colors */ -.tablesorter-metro-dark tbody > tr.hover > td, -.tablesorter-metro-dark tbody > tr:hover > td, -.tablesorter-metro-dark tbody > tr.even:hover > td, -.tablesorter-metro-dark tbody > tr.odd:hover > td { - background-color: #bbb; - color: #000; -} - -/* table processing indicator */ -.tablesorter-metro-dark .tablesorter-processing { - background-position: center center !important; - background-repeat: no-repeat !important; - /* background-image: url(images/loading.gif) !important; */ - background-image: url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=) !important; -} - -/* pager */ -.tablesorter-metro-dark .tablesorter-pager button { - background-color: #444; - color: #eee; - border: #555 1px solid; - cursor: pointer; -} -.tablesorter-metro-dark .tablesorter-pager button:hover { - background-color: #555; -} - -/* Zebra Widget - row alternating colors */ -.tablesorter-metro-dark tr.odd > td { - background-color: #eee; -} -.tablesorter-metro-dark tr.even > td { - background-color: #fff; -} - -/* Column Widget - column sort colors */ -.tablesorter-metro-dark tr.odd td.primary { - background-color: #bfbfbf; -} -.tablesorter-metro-dark td.primary, -.tablesorter-metro-dark tr.even td.primary { - background-color: #d9d9d9; -} -.tablesorter-metro-dark tr.odd td.secondary { - background-color: #d9d9d9; -} -.tablesorter-metro-dark td.secondary, -.tablesorter-metro-dark tr.even td.secondary { - background-color: #e6e6e6; -} -.tablesorter-metro-dark tr.odd td.tertiary { - background-color: #e6e6e6; -} -.tablesorter-metro-dark td.tertiary, -.tablesorter-metro-dark tr.even td.tertiary { - background-color: #f2f2f2; -} - -/* filter widget */ -.tablesorter-metro-dark .tablesorter-filter-row { - background-color: #eee; -} -.tablesorter-metro-dark .tablesorter-filter-row td { - background-color: #eee; - line-height: normal; - text-align: center; /* center the input */ - -webkit-transition: line-height 0.1s ease; - -moz-transition: line-height 0.1s ease; - -o-transition: line-height 0.1s ease; - transition: line-height 0.1s ease; -} -/* optional disabled input styling */ -.tablesorter-metro-dark .tablesorter-filter-row .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; -} -/* hidden filter row */ -.tablesorter-metro-dark .tablesorter-filter-row.hideme td { - /*** *********************************************** ***/ - /*** change this padding to modify the thickness ***/ - /*** of the closed filter row (height = padding x 2) ***/ - padding: 2px; - /*** *********************************************** ***/ - margin: 0; - line-height: 0; - cursor: pointer; -} -.tablesorter-metro-dark .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); -} -/* filters */ -.tablesorter-metro-dark input.tablesorter-filter, -.tablesorter-metro-dark select.tablesorter-filter { - width: 95%; - height: auto; - margin: 0; - padding: 4px; - background-color: #fff; - border: 1px solid #bbb; - color: #333; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: height 0.1s ease; - -moz-transition: height 0.1s ease; - -o-transition: height 0.1s ease; - transition: height 0.1s ease; -} -/* rows hidden by filtering (needed for child rows) */ -.tablesorter .filtered { - display: none; -} - -/* ajax error row */ -.tablesorter .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: #e6bf99; -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/dragtable.mod.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/dragtable.mod.min.css deleted file mode 100644 index 56d2f42eb..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/dragtable.mod.min.css +++ /dev/null @@ -1 +0,0 @@ -.dragtable-sortable{list-style-type:none;margin:0;padding:0;-moz-user-select:none;z-index:10}.dragtable-sortable li{margin:0;padding:0;float:left;font-size:1em}.dragtable-sortable table{margin-top:0}.dragtable-sortable td,.dragtable-sortable th{border-left:0}.dragtable-sortable li:first-child td,.dragtable-sortable li:first-child th{border-left:1px solid #CCC}.ui-sortable-helper{opacity:.7;filter:alpha(opacity=70)}.ui-sortable-placeholder{-moz-box-shadow:4px 5px 4px rgba(0,0,0,.2) inset;-webkit-box-shadow:4px 5px 4px rgba(0,0,0,.2) inset;box-shadow:4px 5px 4px rgba(0,0,0,.2) inset;border-bottom:1px solid rgba(0,0,0,.2);border-top:1px solid rgba(0,0,0,.2);visibility:visible!important;background:#EFEFEF}.ui-sortable-placeholder *{opacity:0;visibility:hidden}.table-handle,.table-handle-disabled{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyIiBoZWlnaHQ9IjEzIj48cmVjdCBzdHlsZT0iZmlsbDojMzMzO2ZpbGwtb3BhY2l0eTouODsiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHg9IjEiIHk9IjIiLz4JPHJlY3Qgc3R5bGU9ImZpbGw6IzMzMztmaWxsLW9wYWNpdHk6Ljg7IiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4PSIxIiB5PSI0Ii8+CTxyZWN0IHN0eWxlPSJmaWxsOiMzMzM7ZmlsbC1vcGFjaXR5Oi44OyIgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iNiIvPjxyZWN0IHN0eWxlPSJmaWxsOiMzMzM7ZmlsbC1vcGFjaXR5Oi44OyIgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iOCIvPjxyZWN0IHN0eWxlPSJmaWxsOiMzMzM7ZmlsbC1vcGFjaXR5Oi44OyIgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iMTAiLz48L3N2Zz4=);background-repeat:repeat-x;height:13px;margin:0 1px;cursor:move}.table-handle-disabled{opacity:0;cursor:not-allowed}.dragtable-sortable table{margin-bottom:0} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/filter.formatter.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/filter.formatter.min.css deleted file mode 100644 index eba8cc043..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/filter.formatter.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter .tablesorter-filter-row td{text-align:center;font-size:.9em;font-weight:400}.tablesorter .ui-slider,.tablesorter input.range{width:90%;margin:2px auto;font-size:.8em}.tablesorter .ui-slider{top:12px}.tablesorter .ui-slider .ui-slider-handle{width:.9em;height:.9em}.tablesorter .ui-datepicker{font-size:.8em}.tablesorter .ui-slider-horizontal{height:.5em}.tablesorter .value-popup:after{content:attr(data-value);position:absolute;bottom:14px;left:-7px;min-width:18px;height:12px;background-color:#444;background-image:-webkit-gradient(linear,left top,left bottom,from(#444),to(#999));background-image:-webkit-linear-gradient(top,#444,#999);background-image:-moz-linear-gradient(top,#444,#999);background-image:-o-linear-gradient(top,#444,#999);background-image:linear-gradient(to bottom,#444,#999);-webkit-border-radius:3px;border-radius:3px;-webkit-background-clip:padding-box;background-clip:padding-box;-webkit-box-shadow:0 0 4px 0 #777;box-shadow:0 0 4px 0 #777;border:1px solid #444;color:#fff;font:1em/1.1em Arial,Sans-Serif;padding:1px;text-align:center}.tablesorter .button,.tablesorter .button label{-webkit-border-radius:25px;-moz-border-radius:25px}.tablesorter .value-popup:before{content:"";position:absolute;width:0;height:0;border-top:8px solid #777;border-left:8px solid transparent;border-right:8px solid transparent;top:-8px;left:50%;margin-left:-8px;margin-top:-1px}.tablesorter .dateFrom,.tablesorter .dateTo{width:80px;margin:2px 5px}.tablesorter .button{width:14px;height:14px;background:#fcfff4;background:-webkit-linear-gradient(top,#fcfff4 0,#dfe5d7 40%,#b3bead 100%);background:-moz-linear-gradient(top,#fcfff4 0,#dfe5d7 40%,#b3bead 100%);background:-o-linear-gradient(top,#fcfff4 0,#dfe5d7 40%,#b3bead 100%);background:-ms-linear-gradient(top,#fcfff4 0,#dfe5d7 40%,#b3bead 100%);background:linear-gradient(top,#fcfff4 0,#dfe5d7 40%,#b3bead 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#b3bead', GradientType=0 );margin:1px 5px 1px 1px;border-radius:25px;-webkit-box-shadow:inset 0 1px 1px #fff,0 1px 3px rgba(0,0,0,.5);-moz-box-shadow:inset 0 1px 1px #fff,0 1px 3px rgba(0,0,0,.5);box-shadow:inset 0 1px 1px #fff,0 1px 3px rgba(0,0,0,.5);position:relative;top:3px;display:inline-block}.tablesorter .button label{cursor:pointer;position:absolute;width:10px;height:10px;border-radius:25px;left:2px;top:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.5),0 1px 0 rgba(255,255,255,1);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.5),0 1px 0 rgba(255,255,255,1);box-shadow:inset 0 1px 1px rgba(0,0,0,.5),0 1px 0 rgba(255,255,255,1);background:#45484d;background:-webkit-linear-gradient(top,#222 0,#45484d 100%);background:-moz-linear-gradient(top,#222 0,#45484d 100%);background:-o-linear-gradient(top,#222 0,#45484d 100%);background:-ms-linear-gradient(top,#222 0,#45484d 100%);background:linear-gradient(top,#222 0,#45484d 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#222', endColorstr='#45484d', GradientType=0 )}.tablesorter .button label:after{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;content:'';position:absolute;width:8px;height:8px;background:#55f;background:-webkit-linear-gradient(top,#aaf 0,#55f 100%);background:-moz-linear-gradient(top,#aaf 0,#55f 100%);background:-o-linear-gradient(top,#aaf 0,#55f 100%);background:-ms-linear-gradient(top,#aaf 0,#55f 100%);background:linear-gradient(top,#aaf 0,#55f 100%);-webkit-border-radius:25px;-moz-border-radius:25px;border-radius:25px;top:1px;left:1px;-webkit-box-shadow:inset 0 1px 1px #fff,0 1px 3px rgba(0,0,0,.5);-moz-box-shadow:inset 0 1px 1px #fff,0 1px 3px rgba(0,0,0,.5);box-shadow:inset 0 1px 1px #fff,0 1px 3px rgba(0,0,0,.5)}.tablesorter .button label:hover::after{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";filter:alpha(opacity=30);opacity:.3}.tablesorter .button input[type=checkbox]{visibility:hidden}.tablesorter .button input[type=checkbox]:checked+label:after{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);opacity:1}.tablesorter .colorpicker{width:30px;height:18px}.tablesorter .ui-spinner-input{width:100px;height:18px}.tablesorter .currentColor,.tablesorter .ui-spinner,.tablesorter input.number{position:relative}.tablesorter .tablesorter-filter-row.hideme td *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/black-asc.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/black-asc.gif deleted file mode 100644 index 730533fa3..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/black-asc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/black-desc.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/black-desc.gif deleted file mode 100644 index 4c3b61020..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/black-desc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/black-unsorted.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/black-unsorted.gif deleted file mode 100644 index 5647f6583..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/black-unsorted.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/bootstrap-black-unsorted.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/bootstrap-black-unsorted.png deleted file mode 100644 index 4e161a65e..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/bootstrap-black-unsorted.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/bootstrap-white-unsorted.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/bootstrap-white-unsorted.png deleted file mode 100644 index fb227a150..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/bootstrap-white-unsorted.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dragtable-handle.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dragtable-handle.png deleted file mode 100644 index ff64a7d57..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dragtable-handle.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dragtable-handle.svg b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dragtable-handle.svg deleted file mode 100644 index 041ec1ded..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dragtable-handle.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dropbox-asc-hovered.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dropbox-asc-hovered.png deleted file mode 100644 index bc45223f1..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dropbox-asc-hovered.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dropbox-asc.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dropbox-asc.png deleted file mode 100644 index 0d6ee1505..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dropbox-asc.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dropbox-desc-hovered.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dropbox-desc-hovered.png deleted file mode 100644 index 493094204..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dropbox-desc-hovered.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dropbox-desc.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dropbox-desc.png deleted file mode 100644 index 0bce65a07..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/dropbox-desc.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/first.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/first.png deleted file mode 100644 index 6f11fcb08..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/first.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/green-asc.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/green-asc.gif deleted file mode 100644 index 4cfba0950..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/green-asc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/green-desc.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/green-desc.gif deleted file mode 100644 index 4f8817650..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/green-desc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/green-header.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/green-header.gif deleted file mode 100644 index cc746b70a..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/green-header.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/green-unsorted.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/green-unsorted.gif deleted file mode 100644 index 0afe2c021..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/green-unsorted.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/ice-asc.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/ice-asc.gif deleted file mode 100644 index 0961d9aaf..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/ice-asc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/ice-desc.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/ice-desc.gif deleted file mode 100644 index 0330fccaa..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/ice-desc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/ice-unsorted.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/ice-unsorted.gif deleted file mode 100644 index c1afde558..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/ice-unsorted.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/last.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/last.png deleted file mode 100644 index 720793576..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/last.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/loading.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/loading.gif deleted file mode 100644 index 72054717b..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/loading.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-black-asc.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-black-asc.png deleted file mode 100644 index f7a781be1..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-black-asc.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-black-desc.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-black-desc.png deleted file mode 100644 index ef5f48e07..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-black-desc.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-loading.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-loading.gif deleted file mode 100644 index ae274c6c1..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-loading.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-unsorted.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-unsorted.png deleted file mode 100644 index 653b08342..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-unsorted.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-white-asc.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-white-asc.png deleted file mode 100644 index 63327188b..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-white-asc.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-white-desc.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-white-desc.png deleted file mode 100644 index ca7c363e3..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/metro-white-desc.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/next.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/next.png deleted file mode 100644 index 4a2f9d4e4..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/next.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/prev.png b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/prev.png deleted file mode 100644 index 15d1584bd..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/prev.png and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/white-asc.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/white-asc.gif deleted file mode 100644 index 2173b0a05..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/white-asc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/white-desc.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/white-desc.gif deleted file mode 100644 index 7109c3ea1..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/white-desc.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/white-unsorted.gif b/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/white-unsorted.gif deleted file mode 100644 index 9bfc3459c..000000000 Binary files a/vendor/FHC-vendor/jquery-tablesorter/dist/css/images/white-unsorted.gif and /dev/null differ diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/jquery.tablesorter.pager.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/jquery.tablesorter.pager.min.css deleted file mode 100644 index 9d87fe3fc..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/jquery.tablesorter.pager.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter-pager{padding:5px}td.tablesorter-pager{background-color:#e6eeee;margin:0}.tablesorter-pager img{vertical-align:middle;margin-right:2px;cursor:pointer}.tablesorter-pager .pagedisplay{padding:0 5px;width:auto;white-space:nowrap;text-align:center}.tablesorter-pager select{margin:0;padding:0}.tablesorter-pager.disabled{display:none}.tablesorter-pager .disabled{opacity:.5;filter:alpha(opacity=50);cursor:default} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/less/bootstrap.less b/vendor/FHC-vendor/jquery-tablesorter/dist/css/less/bootstrap.less deleted file mode 100644 index 1d712ca2f..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/less/bootstrap.less +++ /dev/null @@ -1,322 +0,0 @@ -/* Tablesorter Custom Bootstrap LESS Theme by Rob Garrison - -To create your own theme, modify the code below and run it through -a LESS compiler, like this one: http://leafo.net/lessphp/editor.html -or download less.js from http://lesscss.org/ - -Test out these custom less files live - Basic Theme : http://codepen.io/Mottie/pen/eqBbn - Bootstrap : http://codepen.io/Mottie/pen/Ltzpi - Metro Style : http://codepen.io/Mottie/pen/gCslk - -*/ - -/*** theme ***/ -@theme : tablesorter-bootstrap; - -/*** fonts ***/ -@tableHeaderFont : 14px bold Arial, Sans-serif; -@tableBodyFont : 14px "Helvetica Neue", Helvetica, Arial, sans-serif; - -/*** color definitions ***/ -/* for best results, only change the hue (240), - leave the saturation (60%) and luminosity (80%) alone - pick the color from here: http://hslpicker.com/#99E699 */ -@headerBackground : hsl(240, 60%, 80%); -@borderAndBackground : #cdcdcd; -@overallBorder : @borderAndBackground 1px solid; -@headerTextColor : #000; - -@bodyBackground : #fff; -@bodyTextColor : #000; - -@headerAsc : darken(spin(@headerBackground, 5), 10%); /* darken(@headerBackground, 10%); */ -@headerDesc : lighten(spin(@headerBackground, -5), 10%); /* desaturate(@headerAsc, 5%); */ - -@captionBackground : #fff; /* it might be best to match the document body background color here */ -@errorBackground : #e6bf99; /* ajax error message (added to thead) */ - -@filterCellBackground : #eee; -@filterElementTextColor: #333; -@filterElementBkgd : #fff; -@filterElementBorder : 1px solid #bbb; -@filterTransitionTime : 0.1s; -@filterRowHiddenHeight : 4px; /* becomes height using padding (so it's divided by 2) */ - -@overallPadding : 4px; -/* 20px should be slightly wider than the icon width to avoid overlap */ -@headerPadding : 4px 20px 4px 4px; -@headerMargin : 0 0 18px; - -/* url(icons/loading.gif); */ -@processingIcon : url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs='); - -/* zebra striping */ -.allRows { - background-color: @bodyBackground; - color: @bodyTextColor; -} -.evenRows { - background-color: lighten(@headerBackground, 35%); -} -.oddRows { - background-color: lighten(@headerBackground, 18%); -} - -/* hovered rows */ -.oddHovered { - background-color: desaturate(@headerBackground, 60%); -} -.evenHovered { - background-color: lighten( desaturate(@headerBackground, 60%), 10% ); -} - -/* Columns widget */ -@primaryOdd : spin(@headerBackground, 10); /* saturate( darken( desaturate(@headerBackground, 10%), 10% ), 30%); */ -@primaryEven : lighten( @primaryOdd, 10% ); -@secondaryOdd : @primaryEven; -@secondaryEven : lighten( @primaryEven, 5% ); -@tertiaryOdd : @secondaryEven; -@tertiaryEven : lighten( @secondaryEven, 5% ); - -/* Filter widget transition */ -.filterWidgetTransition { - -webkit-transition: line-height @filterTransitionTime ease; - -moz-transition: line-height @filterTransitionTime ease; - -o-transition: line-height @filterTransitionTime ease; - transition: line-height @filterTransitionTime ease; -} - -/*** icon block ***/ -.iconPosition { - font-size: 11px; - position: absolute; - right: 2px; - top: 50%; - margin-top: -7px; /* half the icon height; older IE doesn't like this */ - width: 14px; - height: 14px; - background-repeat: no-repeat; - line-height: 14px; -} - -/* black */ -@unsortedBlack : url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAMAAADOvxanAAAAVFBMVEUAAABCQkJZWVkZGRnJyckgICAZGRkZGRn8/PweHh4dHR0aGhoaGhpUVFQbGxvQ0NDc3NxMTExSUlIbGxvr6+s4ODhKSkogICAtLS00NDQzMzMnJydSEPrQAAAAGHRSTlMA1ssZRLgdAQbDyisqsZo8QdXUq0r9xPepSRwiAAAAX0lEQVQI13XHSQKAIAwEwQAKxn13Ev7/T2Pu9qmarJKPXIicI4PH4hxaKNrhm2S8bJK5h4YzKHrzJNtK6yYT/TdXzpS5zuYg4MSQYF6i4IHExdw1UVRi05HPrrvT53a+qyMFC9t04gcAAAAASUVORK5CYII=); - -/* white */ -@unsortedWhite : url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOBAMAAAALT/umAAAAKlBMVEUAAAD///////////////////////////////////////////////////+Gu8ovAAAADXRSTlMA4EXKBtQqvR0+sxmalc142gAAAFdJREFUCNdjYGDoamAAAjZbMxCVfvd6AgMDd+3du9UMDKx3hWSvMjBwXZww8RYDGuC53NB8h4GB8a617UUGBs7Yu3cjGRhYVO9eVQFKOskKOQApFmUgBwBZ+xXRTttNdAAAAABJRU5ErkJggg==); - -/* automatically choose the correct arrow/text color */ -.headerText (@a) when (lightness(@a) >= 50%) { - color: @headerTextColor; -} -.headerText (@a) when (lightness(@a) < 50%) { - color: lighten(@headerTextColor, 90%); -} -.unsorted (@a) when (lightness(@a) >= 50%) { - background-image: @unsortedBlack; - color: @headerTextColor; -} -.unsorted (@a) when (lightness(@a) < 50%) { - background-image: @unsortedWhite; - color: lighten(@headerTextColor, 90%); -} - -/* variable theme name - requires less.js 1.3+; - or just replace (!".@{theme}") with the contents of @theme -*/ -.@{theme} { - font: @tableBodyFont; - background-color: @borderAndBackground; - width: 100%; - - /* style th's outside of the thead */ - th, thead td { - font: @tableHeaderFont; - font-weight: bold; - background-color: @headerBackground; - .headerText(@headerBackground); - border-collapse: collapse; - margin: @headerMargin; - padding: @overallPadding; - } - - tbody td, tfoot th, tfoot td { - padding: @overallPadding; - vertical-align: top; - } - - /* style header */ - .tablesorter-header { - cursor: pointer; - } - - .tablesorter-header-inner { - position: relative; - padding: @headerPadding; - } - - /* bootstrap uses for icons */ - .tablesorter-header-inner i.tablesorter-icon { - .iconPosition - } - - .tablesorter-header.sorter-false { - background-image: none; - cursor: default; - - } - - .tablesorter-headerAsc { - background-color: @headerAsc; - } - - .tablesorter-headerDesc { - background-color: @headerDesc; - } - - .bootstrap-icon-unsorted { - .unsorted(@headerBackground); - } - - - /* tfoot */ - tfoot .tablesorter-headerAsc, - tfoot .tablesorter-headerDesc { - /* remove sort arrows from footer */ - background-image: none; - } - - /* optional disabled input styling */ - .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; - } - - /* body */ - tbody { - - td { - .allRows; - padding: @overallPadding; - vertical-align: top; - } - - /* Zebra Widget - row alternating colors */ - tr.odd > td { - .oddRows; - } - tr.even > td { - .evenRows; - } - - } - - /* hovered row colors - you'll need to add additional lines for - rows with more than 2 child rows - */ - tbody > tr.hover > td, - tbody > tr:hover > td, - tbody > tr:hover + tr.tablesorter-childRow > td, - tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, - tbody > tr.even.hover > td, - tbody > tr.even:hover > td, - tbody > tr.even:hover + tr.tablesorter-childRow > td, - tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - .evenHovered; - } - tbody > tr.odd.hover > td, - tbody > tr.odd:hover > td, - tbody > tr.odd:hover + tr.tablesorter-childRow > td, - tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - .oddHovered; - } - - /* table processing indicator - indeterminate spinner */ - .tablesorter-processing { - background-image: @processingIcon; - background-position: center center; - background-repeat: no-repeat; - } - - /* Column Widget - column sort colors */ - tr.odd td.primary { - background-color: @primaryOdd; - } - td.primary, tr.even td.primary { - background-color: @primaryEven; - } - tr.odd td.secondary { - background-color: @secondaryOdd; - } - td.secondary, tr.even td.secondary { - background-color: @secondaryEven; - } - tr.odd td.tertiary { - background-color: @tertiaryOdd; - } - td.tertiary, tr.even td.tertiary { - background-color: @tertiaryEven; - } - - /* caption (non-theme matching) */ - caption { - background-color: @captionBackground ; - } - - /* filter widget */ - .tablesorter-filter-row input, - .tablesorter-filter-row select{ - width: 98%; - margin: 0; - padding: @overallPadding; - color: @filterElementTextColor; - background-color: @filterElementBkgd; - border: @filterElementBorder; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - .filterWidgetTransition; - } - .tablesorter-filter-row { - background-color: @filterCellBackground; - } - .tablesorter-filter-row td { - text-align: center; - background-color: @filterCellBackground; - line-height: normal; - text-align: center; /* center the input */ - .filterWidgetTransition; - } - /* hidden filter row */ - .tablesorter-filter-row.hideme td { - padding: @filterRowHiddenHeight / 2; - margin: 0; - line-height: 0; - cursor: pointer; - } - .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); - } - /* rows hidden by filtering (needed for child rows) */ - .filtered { - display: none; - } - - /* ajax error row */ - .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: @errorBackground; - } - -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/less/metro.less b/vendor/FHC-vendor/jquery-tablesorter/dist/css/less/metro.less deleted file mode 100644 index 62b929264..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/less/metro.less +++ /dev/null @@ -1,357 +0,0 @@ -/* Tablesorter Custom Metro LESS Theme by Rob Garrison - -To create your own theme, modify the code below and run it through -a LESS compiler, like this one: http://leafo.net/lessphp/editor.html -or download less.js from http://lesscss.org/ - -Test out these custom less files live - Basic Theme : http://codepen.io/Mottie/pen/eqBbn - Bootstrap : http://codepen.io/Mottie/pen/Ltzpi - Metro Style : http://codepen.io/Mottie/pen/gCslk - -*/ - -/*** theme ***/ -@theme : tablesorter-metro; - -/*** fonts ***/ -@tableHeaderFont : 14px 'Segoe UI Semilight', 'Open Sans', Verdana, Arial, Helvetica, sans-serif; -@tableBodyFont : 14px 'Segoe UI Semilight', 'Open Sans', Verdana, Arial, Helvetica, sans-serif; - -/*** color definitions ***/ -/* for best results, only change the hue (120), - leave the saturation (60%) and luminosity (75%) alone - pick the color from here: http://hslpicker.com/#825a2b - - Inspired by http://www.jtable.org/ metro themes: - Blue: hsl(212, 86%, 35%) - Brown hsl(32, 50%, 30%) - Crimson hsl(0, 100%, 38%) - Dark Grey hsl(0, 0%, 27%) - Dark Orange hsl(13, 70%, 51%) - Green hsl(120, 100%, 32%) - Light Gray hsl(0, 0%, 44%) - Pink hsl(297, 100%, 33%) - Purple hsl(257, 51%, 48%) - Red hsl(5, 100%, 40%) - - */ -@headerBackground : hsl(32, 50%, 30%); -@borderAndBackground : #cdcdcd; -@headerTextColor : #eee; - -@bodyBackground : #fff; -@bodyTextColor : #000; - -@captionBackground : #fff; /* it might be best to match the document body background color here */ -@errorBackground : #e6bf99; /* ajax error message (added to thead) */ - -@filterCellBackground : #eee; -@filterElementTextColor: #333; -@filterElementBkgd : #fff; -@filterElementBorder : 1px solid #bbb; -@filterTransitionTime : 0.1s; -@filterRowHiddenHeight : 4px; /* becomes height using padding (so it's divided by 2) */ - -@overallPadding : 4px; -/* 20px should be slightly wider than the icon width to avoid overlap */ -@headerPadding : 4px 20px 4px 4px; - -/* url(icons/loading.gif); */ -@processingIcon : url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///1VVVdbW1oCAgFVVVZaWlqurq7a2tiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA=='); - -/* zebra striping */ -.allRows { - background-color: @bodyBackground; - color: @bodyTextColor; -} -.evenRows { - background-color: lighten( desaturate(@headerBackground, 80%), 70%); - color: @bodyTextColor; -} -.oddRows { - background-color: lighten( desaturate(@headerBackground, 80%), 50%); -} - -/* hovered rows */ -.oddHovered { - background-color: lighten( desaturate(@headerBackground, 50%), 40%); - color: @bodyTextColor; -} -.evenHovered { - background-color: lighten( desaturate(@headerBackground, 50%), 30%); - color: @bodyTextColor; -} - -/* Columns widget */ -@primaryOdd : lighten( spin(@headerBackground, 10), 40%); -@primaryEven : lighten( @primaryOdd, 8% ); -@secondaryOdd : @primaryEven; -@secondaryEven : lighten( @primaryEven, 8% ); -@tertiaryOdd : @secondaryEven; -@tertiaryEven : lighten( @secondaryEven, 8% ); - -/* Filter widget transition */ -.filterWidgetTransition { - -webkit-transition: line-height @filterTransitionTime ease; - -moz-transition: line-height @filterTransitionTime ease; - -o-transition: line-height @filterTransitionTime ease; - transition: line-height @filterTransitionTime ease; -} - -/*** Arrows ***/ -@arrowPosition : right 5px center; - -/* black */ -@unsortedBlack : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABt0UjBAAAACnRSTlMAMwsqXt+gIBUGxGoDMAAAAFlJREFUCNctzC0SQAAUReEzGNQ3AlHRiSRZFCVZYgeswRL8hLdK7834wj3tAlGP6y7fYHpKS6w6WwbVG0I1NZVnZPG8/DYxOYlnhUYkA06R1s9ESsxR4NIdPhkPFDFYuEnMAAAAAElFTkSuQmCC); -@sortAscBlack : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABt0UjBAAAACnRSTlMAMwsqXt+gIBUGxGoDMAAAAFlJREFUCNctzC0SQAAUReEzGNQ3AlHRiSRZFCVZYgeswRL8hLdK7834wj3tAlGP6y7fYHpKS6w6WwbVG0I1NZVnZPG8/DYxOYlnhUYkA06R1s9ESsxR4NIdPhkPFDFYuEnMAAAAAElFTkSuQmCC); -@sortDescBlack : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAALVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADBoCg+AAAADnRSTlMAMiweCQITTvDctZZqaTlM310AAABcSURBVAjXY2BgYEtgAAFHERDJqigUAKSYBQUNgFSioKAYAwOLIBA4MASBKFUGQxAlzAAF+94BwWuGKBC1lIFl3rt3Lx0YGCzevWsGSjK9e6cAUlT3HKyW9wADAwDRrBiDy6bKzwAAAABJRU5ErkJggg==); - -/* white */ -@unsortedWhite : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAElBMVEUAAADu7u7u7u7u7u7u7u7u7u7yb344AAAABnRSTlMAMhIHKyAHBrhHAAAATElEQVQI12NgYGBSYAABQ2Ew5SgCIlkFBQOAlKKgoBADA7MgEBgwsIAoB4ZAECXKAAFQHkg9WIejoCBIv4mgoDOQYgZpAxkDNARqEQBTkAYuMZEHPgAAAABJRU5ErkJggg==); -@sortAscWhite : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAHlBMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u4+jEeEAAAACXRSTlMAMwkqFV7roCD4hW+/AAAAWUlEQVQI1y3MrQ5AABSG4Xd+Rj0jiDabjKZxB6qqaarGNRh27tY5myd8b/uAeML1l2+wPqUlUd0ss+oNoZqG2rOwe15+p5iC1HNAK5IBlUjnZyIlZsxx0QAfzokSZgp96u4AAAAASUVORK5CYII=); -@sortDescWhite : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAJ1BMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u4RJgHSAAAADHRSTlMAMiweCQITaU7olrlu2HdvAAAAXElEQVQI12NgYGBLYAABRxEQyaooFACkmAUFDYBUoqCgGAMDiyAQODAEgShVBkMQJcwABWvOAMEphmgQtZWBZc6ZMycdGBhszpw5DJRkOnNGAaSo5wRYLXsBAwMAi4YWQHRX4F0AAAAASUVORK5CYII=); - -/* automatically choose the correct arrow/text color */ -.headerText (@a) when (lightness(@a) >= 50%) { - color: @headerTextColor; -} -.headerText (@a) when (lightness(@a) < 50%) { - color: lighten(@headerTextColor, 90%); -} -.unsorted (@a) when (lightness(@a) >= 50%) { - background-image: @unsortedBlack; -} -.unsorted (@a) when (lightness(@a) < 50%) { - background-image: @unsortedWhite; -} -.sortAsc (@a) when (lightness(@a) >= 50%) { - background-image: @sortAscBlack; -} -.sortAsc (@a) when (lightness(@a) < 50%) { - background-image: @sortAscWhite; -} -.sortDesc (@a) when (lightness(@a) >= 50%) { - background-image: @sortDescBlack; -} -.sortDesc (@a) when (lightness(@a) < 50%) { - background-image: @sortDescWhite; -} - -/* variable theme name - requires less.js 1.3+; - or just replace (!".@{theme}") with the contents of @theme -*/ -.@{theme} { - font: @tableBodyFont; - background-color: @borderAndBackground; - margin: 10px 0 15px; - width: 100%; - text-align: left; - border-spacing: 0; - border: 0; - - th, td { - border: 0; - } - - /* style th's outside of the thead */ - th, thead td { - font: @tableHeaderFont; - font-weight: bold; - background-color: @headerBackground; - color: @headerTextColor; - .headerText(@headerBackground); - border-collapse: collapse; - padding: @overallPadding; - } - - .dark-row th, .dark-row td, caption.dark-row { - background-color: darken( @headerBackground, 10% ); - } - - tbody td, tfoot th, tfoot td { - padding: @overallPadding; - vertical-align: top; - } - - /* style header */ - .tablesorter-header { - .unsorted(@headerBackground); - background-repeat: no-repeat; - background-position: @arrowPosition; - cursor: pointer; - white-space: normal; - } - - .tablesorter-header-inner { - padding: @headerPadding; - } - - .tablesorter-header.sorter-false { - background-image: none; - cursor: default; - padding: @overallPadding; - } - - .tablesorter-headerAsc { - .sortAsc(@headerBackground); - } - - .tablesorter-headerDesc { - .sortDesc(@headerBackground); - } - - /* tfoot */ - tfoot .tablesorter-headerAsc, - tfoot .tablesorter-headerDesc { - /* remove sort arrows from footer */ - background-image: none; - } - - /* optional disabled input styling */ - .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; - } - - /* body */ - tbody { - - td { - .allRows; - padding: @overallPadding; - vertical-align: top; - } - - /* Zebra Widget - row alternating colors */ - tr.odd > td { - .oddRows; - } - tr.even > td { - .evenRows; - } - - } - - /* hovered row colors - you'll need to add additional lines for - rows with more than 2 child rows - */ - tbody > tr.hover > td, - tbody > tr:hover > td, - tbody > tr:hover + tr.tablesorter-childRow > td, - tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, - tbody > tr.even.hover > td, - tbody > tr.even:hover > td, - tbody > tr.even:hover + tr.tablesorter-childRow > td, - tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - .evenHovered; - } - tbody > tr.odd.hover > td, - tbody > tr.odd:hover > td, - tbody > tr.odd:hover + tr.tablesorter-childRow > td, - tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - .oddHovered; - } - - /* table processing indicator - indeterminate spinner */ - .tablesorter-processing { - background-image: @processingIcon; - background-position: center center; - background-repeat: no-repeat; - } - - /* pager */ - div.tablesorter-pager { - button { - background-color: lighten( @headerBackground, 7% ); - color: @headerTextColor; - border: lighten( @headerBackground, 15% ) 1px solid; - cursor: pointer; - } - button:hover { - background-color: lighten( @headerBackground, 15% ); - } - } - - /* Column Widget - column sort colors */ - tr.odd td.primary { - background-color: @primaryOdd; - } - td.primary, tr.even td.primary { - background-color: @primaryEven; - } - tr.odd td.secondary { - background-color: @secondaryOdd; - } - td.secondary, tr.even td.secondary { - background-color: @secondaryEven; - } - tr.odd td.tertiary { - background-color: @tertiaryOdd; - } - td.tertiary, tr.even td.tertiary { - background-color: @tertiaryEven; - } - - /* caption (non-theme matching) */ - caption { - background-color: @captionBackground ; - } - - /* filter widget */ - .tablesorter-filter-row input, - .tablesorter-filter-row select{ - width: 98%; - height: auto; - margin: 0; - padding: @overallPadding; - color: @filterElementTextColor; - background-color: @filterElementBkgd; - border: @filterElementBorder; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - .filterWidgetTransition; - } - .tablesorter-filter-row { - background-color: @filterCellBackground; - } - .tablesorter-filter-row td { - text-align: center; - background-color: @filterCellBackground; - line-height: normal; - text-align: center; /* center the input */ - .filterWidgetTransition; - } - /* hidden filter row */ - .tablesorter-filter-row.hideme td { - padding: @filterRowHiddenHeight / 2; - margin: 0; - line-height: 0; - cursor: pointer; - } - .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); - } - /* rows hidden by filtering (needed for child rows) */ - .filtered { - display: none; - } - - /* ajax error row */ - .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: @errorBackground; - } - -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/less/theme.less b/vendor/FHC-vendor/jquery-tablesorter/dist/css/less/theme.less deleted file mode 100644 index c0a4d7922..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/less/theme.less +++ /dev/null @@ -1,329 +0,0 @@ -/* Tablesorter Custom LESS Theme by Rob Garrison - - To create your own theme, modify the code below and run it through - a LESS compiler, like this one: http://leafo.net/lessphp/editor.html - or download less.js from http://lesscss.org/ - -Test out these custom less files live - Basic Theme : http://codepen.io/Mottie/pen/eqBbn - Bootstrap : http://codepen.io/Mottie/pen/Ltzpi - Metro Style : http://codepen.io/Mottie/pen/gCslk - - */ - -/*** theme ***/ -@theme : tablesorter-custom; - -/*** fonts ***/ -@tableHeaderFont : 11px 'trebuchet ms', verdana, arial; -@tableBodyFont : 11px 'trebuchet ms', verdana, arial; - -/*** color definitions ***/ -/* for best results, only change the hue (120), - leave the saturation (60%) and luminosity (75%) alone - pick the color from here: http://hslpicker.com/#99E699 */ -@headerBackground : hsl(120, 60%, 75%); -@borderAndBackground : #cdcdcd; -@overallBorder : @borderAndBackground 1px solid; -@headerTextColor : #000; - -@bodyBackground : #fff; -@bodyTextColor : #000; - -@headerAsc : darken(spin(@headerBackground, 5), 10%); /* darken(@headerBackground, 10%); */ -@headerDesc : lighten(spin(@headerBackground, -5), 10%); /* desaturate(@headerAsc, 5%); */ - -@captionBackground : #fff; /* it might be best to match the document body background color here */ -@errorBackground : #e6bf99; /* ajax error message (added to thead) */ - -@filterCellBackground : #eee; -@filterElementTextColor: #333; -@filterElementBkgd : #fff; -@filterElementBorder : 1px solid #bbb; -@filterTransitionTime : 0.1s; -@filterRowHiddenHeight : 4px; /* becomes height using padding (so it's divided by 2) */ - -@overallPadding : 4px; -/* 20px should be slightly wider than the icon width to avoid overlap */ -@headerPadding : 4px 20px 4px 4px; - -/* url(icons/loading.gif); */ -@processingIcon : url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs='); - -/* zebra striping */ -.allRows { - background-color: @bodyBackground; - color: @bodyTextColor; -} -.evenRows { - background-color: lighten(@headerBackground, 40%); - color: @bodyTextColor; -} -.oddRows { - background-color: lighten(@headerBackground, 20%); -} - -/* hovered rows */ -.oddHovered { - background-color: desaturate(@headerBackground, 60%); - color: @bodyTextColor; -} -.evenHovered { - background-color: lighten( desaturate(@headerBackground, 60%), 10% ); - color: @bodyTextColor; -} - -/* Columns widget */ -@primaryOdd : spin(@headerBackground, 10); /* saturate( darken( desaturate(@headerBackground, 10%), 10% ), 30%); */ -@primaryEven : lighten( @primaryOdd, 10% ); -@secondaryOdd : @primaryEven; -@secondaryEven : lighten( @primaryEven, 5% ); -@tertiaryOdd : @secondaryEven; -@tertiaryEven : lighten( @secondaryEven, 5% ); - -/* Filter widget transition */ -.filterWidgetTransition { - -webkit-transition: line-height @filterTransitionTime ease; - -moz-transition: line-height @filterTransitionTime ease; - -o-transition: line-height @filterTransitionTime ease; - transition: line-height @filterTransitionTime ease; -} - -/*** Arrows ***/ -@arrowPosition : right 5px center; - -/* black */ -@unsortedBlack : url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); -@sortAscBlack : url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); -@sortDescBlack : url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); - -/* white */ -@unsortedWhite : url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); -@sortAscWhite : url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); -@sortDescWhite : url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); - -/* automatically choose the correct arrow/text color */ -.headerText (@a) when (lightness(@a) >= 50%) { - color: @headerTextColor; -} -.headerText (@a) when (lightness(@a) < 50%) { - color: lighten(@headerTextColor, 90%); -} -.unsorted (@a) when (lightness(@a) >= 50%) { - background-image: @unsortedBlack; -} -.unsorted (@a) when (lightness(@a) < 50%) { - background-image: @unsortedWhite; -} -.sortAsc (@a) when (lightness(@a) >= 50%) { - background-image: @sortAscBlack; -} -.sortAsc (@a) when (lightness(@a) < 50%) { - background-image: @sortAscWhite; -} -.sortDesc (@a) when (lightness(@a) >= 50%) { - background-image: @sortDescBlack; -} -.sortDesc (@a) when (lightness(@a) < 50%) { - background-image: @sortDescWhite; -} - -/* variable theme name - requires less.js 1.3+; - or just replace (!".@{theme}") with the contents of @theme - */ -.@{theme} { - font: @tableBodyFont; - background-color: @borderAndBackground; - margin: 10px 0 15px; - width: 100%; - text-align: left; - border-spacing: 0; - border: @overallBorder; - border-width: 1px 0 0 1px; - - th, td { - border: @overallBorder; - border-width: 0 1px 1px 0; - } - - /* style th's outside of the thead */ - th, thead td { - font: @tableHeaderFont; - font-weight: bold; - background-color: @headerBackground; - .headerText(@headerBackground); - border-collapse: collapse; - padding: @overallPadding; - } - - tbody td, tfoot th, tfoot td { - padding: @overallPadding; - vertical-align: top; - } - - /* style header */ - .tablesorter-header { - .unsorted(@headerBackground); - background-repeat: no-repeat; - background-position: @arrowPosition; - padding: @headerPadding; - cursor: pointer; - } - - .tablesorter-header.sorter-false { - background-image: none; - cursor: default; - padding: @overallPadding; - } - - .tablesorter-headerAsc { - background-color: @headerAsc; - .sortAsc(@headerBackground); - } - - .tablesorter-headerDesc { - background-color: @headerDesc; - .sortDesc(@headerBackground); - } - - /* tfoot */ - tfoot .tablesorter-headerAsc, - tfoot .tablesorter-headerDesc { - /* remove sort arrows from footer */ - background-image: none; - } - - /* optional disabled input styling */ - .disabled { - opacity: 0.5; - filter: alpha(opacity=50); - cursor: not-allowed; - } - - /* body */ - tbody { - - td { - .allRows; - padding: @overallPadding; - vertical-align: top; - } - - /* Zebra Widget - row alternating colors */ - tr.odd > td { - .oddRows; - } - tr.even > td { - .evenRows; - } - - } - - /* hovered row colors - you'll need to add additional lines for - rows with more than 2 child rows - */ - tbody > tr.hover td, - tbody > tr:hover td, - tbody > tr:hover + tr.tablesorter-childRow > td, - tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, - tbody > tr.even.hover > td, - tbody > tr.even:hover > td, - tbody > tr.even:hover + tr.tablesorter-childRow > td, - tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - .evenHovered; - } - tbody > tr.odd.hover > td, - tbody > tr.odd:hover > td, - tbody > tr.odd:hover + tr.tablesorter-childRow > td, - tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { - .oddHovered; - } - - /* table processing indicator - indeterminate spinner */ - .tablesorter-processing { - background-image: @processingIcon; - background-position: center center; - background-repeat: no-repeat; - } - - /* Column Widget - column sort colors */ - tr.odd td.primary { - background-color: @primaryOdd; - } - td.primary, tr.even td.primary { - background-color: @primaryEven; - } - tr.odd td.secondary { - background-color: @secondaryOdd; - } - td.secondary, tr.even td.secondary { - background-color: @secondaryEven; - } - tr.odd td.tertiary { - background-color: @tertiaryOdd; - } - td.tertiary, tr.even td.tertiary { - background-color: @tertiaryEven; - } - - /* caption (non-theme matching) */ - caption { - background-color: @captionBackground ; - } - - /* filter widget */ - .tablesorter-filter-row input, - .tablesorter-filter-row select { - width: 98%; - height: auto; - margin: 0; - padding: @overallPadding; - color: @filterElementTextColor; - background-color: @filterElementBkgd; - border: @filterElementBorder; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - .filterWidgetTransition; - } - .tablesorter-filter-row { - background-color: @filterCellBackground; - } - .tablesorter-filter-row td { - text-align: center; - background-color: @filterCellBackground; - line-height: normal; - text-align: center; /* center the input */ - .filterWidgetTransition; - } - /* hidden filter row */ - .tablesorter-filter-row.hideme td { - padding: @filterRowHiddenHeight / 2; - margin: 0; - line-height: 0; - cursor: pointer; - } - .tablesorter-filter-row.hideme * { - height: 1px; - min-height: 0; - border: 0; - padding: 0; - margin: 0; - /* don't use visibility: hidden because it disables tabbing */ - opacity: 0; - filter: alpha(opacity=0); - } - /* rows hidden by filtering (needed for child rows) */ - .filtered { - display: none; - } - - /* ajax error row */ - .tablesorter-errorRow td { - text-align: center; - cursor: pointer; - background-color: @errorBackground; - } - -} diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.blackice.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.blackice.min.css deleted file mode 100644 index 0d728c756..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.blackice.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter-blackice{width:100%;margin-right:auto;margin-left:auto;font:11px/18px Arial,Sans-serif;text-align:left;background-color:#000;border-collapse:collapse;border-spacing:0}.tablesorter-blackice th,.tablesorter-blackice thead td{padding:4px;font:13px/20px Arial,Sans-serif;font-weight:700;color:#e5e5e5;text-align:left;text-shadow:0 1px 0 rgba(0,0,0,.7);background-color:#111;border:1px solid #232323}.tablesorter-blackice .header,.tablesorter-blackice .tablesorter-header{padding:4px 20px 4px 4px;cursor:pointer;background-image:url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);background-position:center right;background-repeat:no-repeat}.tablesorter-blackice .headerSortUp,.tablesorter-blackice .tablesorter-headerAsc,.tablesorter-blackice .tablesorter-headerSortUp{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);color:#fff}.tablesorter-blackice .headerSortDown,.tablesorter-blackice .tablesorter-headerDesc,.tablesorter-blackice .tablesorter-headerSortDown{color:#fff;background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7)}.tablesorter-blackice thead .sorter-false{background-image:none;cursor:default;padding:4px}.tablesorter-blackice tfoot .tablesorter-headerAsc,.tablesorter-blackice tfoot .tablesorter-headerDesc,.tablesorter-blackice tfoot .tablesorter-headerSortDown,.tablesorter-blackice tfoot .tablesorter-headerSortUp{background-image:none}.tablesorter-blackice td{padding:4px;color:#ccc;vertical-align:top;background-color:#333;border:1px solid #232323}.tablesorter-blackice tbody>tr.even:hover>td,.tablesorter-blackice tbody>tr.hover>td,.tablesorter-blackice tbody>tr.odd:hover>td,.tablesorter-blackice tbody>tr:hover>td{background-color:#000}.tablesorter-blackice .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-blackice tr.odd>td{background-color:#333}.tablesorter-blackice tr.even>td{background-color:#393939}.tablesorter-blackice td.primary,.tablesorter-blackice tr.odd td.primary{background-color:#2f3a40}.tablesorter-blackice td.secondary,.tablesorter-blackice tr.even td.primary,.tablesorter-blackice tr.odd td.secondary{background-color:#3f4a50}.tablesorter-blackice td.tertiary,.tablesorter-blackice tr.even td.secondary,.tablesorter-blackice tr.odd td.tertiary{background-color:#4f5a60}.tablesorter-blackice tr.even td.tertiary{background-color:#5a646b}caption{background-color:#fff}.tablesorter-blackice .tablesorter-filter-row{background-color:#222}.tablesorter-blackice .tablesorter-filter-row td{background-color:#222;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-blackice .tablesorter-filter-row .disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed}.tablesorter-blackice .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-blackice .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)}.tablesorter-blackice input.tablesorter-filter,.tablesorter-blackice select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.blue.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.blue.min.css deleted file mode 100644 index 8276861fb..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.blue.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter-blue{width:100%;background-color:#fff;margin:10px 0 15px;text-align:left;border-spacing:0;border:1px solid #cdcdcd;border-width:1px 0 0 1px}.tablesorter-blue td,.tablesorter-blue th{border:1px solid #cdcdcd;border-width:0 1px 1px 0}.tablesorter-blue th,.tablesorter-blue thead td{font:12px/18px Arial,Sans-serif;font-weight:700;color:#000;background-color:#99bfe6;border-collapse:collapse;padding:4px;text-shadow:0 1px 0 rgba(204,204,204,.7)}.tablesorter-blue tbody td,.tablesorter-blue tfoot td,.tablesorter-blue tfoot th{padding:4px;vertical-align:top}.tablesorter-blue .header,.tablesorter-blue .tablesorter-header{background-image:url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);background-repeat:no-repeat;background-position:center right;padding:4px 18px 4px 4px;white-space:normal;cursor:pointer}.tablesorter-blue .headerSortUp,.tablesorter-blue .tablesorter-headerAsc,.tablesorter-blue .tablesorter-headerSortUp{background-color:#9fbfdf;background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7)}.tablesorter-blue .headerSortDown,.tablesorter-blue .tablesorter-headerDesc,.tablesorter-blue .tablesorter-headerSortDown{background-color:#8cb3d9;background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7)}.tablesorter-blue thead .sorter-false{background-image:none;cursor:default;padding:4px}.tablesorter-blue tfoot .tablesorter-headerAsc,.tablesorter-blue tfoot .tablesorter-headerDesc,.tablesorter-blue tfoot .tablesorter-headerSortDown,.tablesorter-blue tfoot .tablesorter-headerSortUp{background-image:none}.tablesorter-blue td{color:#3d3d3d;background-color:#fff;padding:4px;vertical-align:top}.tablesorter-blue tbody>tr.even.hover>td,.tablesorter-blue tbody>tr.even:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-blue tbody>tr.even:hover+tr.tablesorter-childRow>td,.tablesorter-blue tbody>tr.even:hover>td,.tablesorter-blue tbody>tr.hover>td,.tablesorter-blue tbody>tr:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-blue tbody>tr:hover+tr.tablesorter-childRow>td,.tablesorter-blue tbody>tr:hover>td{background-color:#d9d9d9}.tablesorter-blue tbody>tr.odd.hover>td,.tablesorter-blue tbody>tr.odd:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-blue tbody>tr.odd:hover+tr.tablesorter-childRow>td,.tablesorter-blue tbody>tr.odd:hover>td{background-color:#bfbfbf}.tablesorter-blue .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-blue tbody tr.odd>td{background-color:#ebf2fa}.tablesorter-blue tbody tr.even>td{background-color:#fff}.tablesorter-blue td.primary,.tablesorter-blue tr.odd td.primary{background-color:#99b3e6}.tablesorter-blue td.secondary,.tablesorter-blue tr.even td.primary,.tablesorter-blue tr.odd td.secondary{background-color:#c2d1f0}.tablesorter-blue td.tertiary,.tablesorter-blue tr.even td.secondary,.tablesorter-blue tr.odd td.tertiary{background-color:#d6e0f5}.tablesorter-blue tr.even td.tertiary{background-color:#ebf0fa}caption{background-color:#fff}.tablesorter-blue .tablesorter-filter-row{background-color:#eee}.tablesorter-blue .tablesorter-filter-row td{background-color:#eee;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-blue .tablesorter-filter-row .disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed}.tablesorter-blue .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-blue .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)}.tablesorter-blue input.tablesorter-filter,.tablesorter-blue select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.bootstrap.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.bootstrap.min.css deleted file mode 100644 index 9ce906402..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.bootstrap.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter-bootstrap{width:100%}.tablesorter-bootstrap tfoot td,.tablesorter-bootstrap tfoot th,.tablesorter-bootstrap thead td,.tablesorter-bootstrap thead th{font:14px/20px Arial,Sans-serif;font-weight:700;padding:4px;margin:0 0 18px;background-color:#eee}.tablesorter-bootstrap .tablesorter-header{cursor:pointer}.tablesorter-bootstrap .tablesorter-header-inner{position:relative;padding:4px 18px 4px 4px}.tablesorter-bootstrap .tablesorter-header i.tablesorter-icon{font-size:11px;position:absolute;right:2px;top:50%;margin-top:-7px;width:14px;height:14px;background-repeat:no-repeat;line-height:14px;display:inline-block}.tablesorter-bootstrap .bootstrap-icon-unsorted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAMAAADOvxanAAAAVFBMVEUAAABCQkJZWVkZGRnJyckgICAZGRkZGRn8/PweHh4dHR0aGhoaGhpUVFQbGxvQ0NDc3NxMTExSUlIbGxvr6+s4ODhKSkogICAtLS00NDQzMzMnJydSEPrQAAAAGHRSTlMA1ssZRLgdAQbDyisqsZo8QdXUq0r9xPepSRwiAAAAX0lEQVQI13XHSQKAIAwEwQAKxn13Ev7/T2Pu9qmarJKPXIicI4PH4hxaKNrhm2S8bJK5h4YzKHrzJNtK6yYT/TdXzpS5zuYg4MSQYF6i4IHExdw1UVRi05HPrrvT53a+qyMFC9t04gcAAAAASUVORK5CYII=)}.tablesorter-bootstrap .icon-white.bootstrap-icon-unsorted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOBAMAAAALT/umAAAAKlBMVEUAAAD///////////////////////////////////////////////////+Gu8ovAAAADXRSTlMA4EXKBtQqvR0+sxmalc142gAAAFdJREFUCNdjYGDoamAAAjZbMxCVfvd6AgMDd+3du9UMDKx3hWSvMjBwXZww8RYDGuC53NB8h4GB8a617UUGBs7Yu3cjGRhYVO9eVQFKOskKOQApFmUgBwBZ+xXRTttNdAAAAABJRU5ErkJggg==)}.tablesorter-bootstrap>tbody>tr.odd>td,.tablesorter-bootstrap>tbody>tr.tablesorter-hasChildRow.odd:hover~tr.tablesorter-hasChildRow.odd~.tablesorter-childRow.odd>td{background-color:#f9f9f9}.tablesorter-bootstrap>tbody>tr.even:hover>td,.tablesorter-bootstrap>tbody>tr.hover>td,.tablesorter-bootstrap>tbody>tr.odd:hover>td,.tablesorter-bootstrap>tbody>tr.tablesorter-hasChildRow.even:hover~.tablesorter-childRow.even>td,.tablesorter-bootstrap>tbody>tr.tablesorter-hasChildRow.odd:hover~.tablesorter-childRow.odd>td{background-color:#f5f5f5}.caption,.tablesorter-bootstrap>tbody>tr.even>td,.tablesorter-bootstrap>tbody>tr.tablesorter-hasChildRow.even:hover~tr.tablesorter-hasChildRow.even~.tablesorter-childRow.even>td{background-color:#fff}.tablesorter-bootstrap .tablesorter-processing{background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=);background-position:center center!important;background-repeat:no-repeat!important}.tablesorter-bootstrap .tablesorter-filter-row input.tablesorter-filter,.tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter{width:98%;margin:0;padding:4px 6px;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter-bootstrap .tablesorter-filter-row .tablesorter-filter.disabled{background-color:#eee;color:#555;cursor:not-allowed;border:1px solid #ccc;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.075) inset;box-sizing:border-box;transition:height .1s ease}.tablesorter-bootstrap .tablesorter-filter-row{background-color:#efefef}.tablesorter-bootstrap .tablesorter-filter-row td{background-color:#efefef;line-height:normal;text-align:center;padding:4px 6px;vertical-align:middle;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-bootstrap .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0}.tablesorter-bootstrap .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)}.tablesorter .filtered{display:none}.tablesorter-bootstrap .tablesorter-pager select{padding:4px 6px}.tablesorter-bootstrap .tablesorter-pager .pagedisplay{border:0}.tablesorter-bootstrap tfoot i{font-size:11px}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.bootstrap_2.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.bootstrap_2.min.css deleted file mode 100644 index f855e0809..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.bootstrap_2.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter-bootstrap{width:100%}.tablesorter-bootstrap .tablesorter-header,.tablesorter-bootstrap tfoot td,.tablesorter-bootstrap tfoot th{font:14px/20px Arial,Sans-serif;font-weight:700;position:relative;padding:8px;margin:0 0 18px;list-style:none;background-color:#FBFBFB;background-image:-moz-linear-gradient(top,#fff,#efefef);background-image:-ms-linear-gradient(top,#fff,#efefef);background-image:-webkit-gradient(linear,0 0,0 100%,from(white),to(#efefef));background-image:-webkit-linear-gradient(top,#fff,#efefef);background-image:-o-linear-gradient(top,#fff,#efefef);background-image:linear-gradient(to bottom,#fff,#efefef);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#efefef', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.tablesorter-bootstrap .tablesorter-header{cursor:pointer}.tablesorter-bootstrap .tablesorter-header-inner{position:relative;padding:4px 18px 4px 4px}.tablesorter-bootstrap .tablesorter-header i.tablesorter-icon{position:absolute;right:2px;top:50%;margin-top:-7px;width:14px;height:14px;background-repeat:no-repeat;line-height:14px;display:inline-block}.tablesorter-bootstrap .bootstrap-icon-unsorted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAYAAAD5YeaVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAWVJREFUeNqUUL9Lw2AUTGP8mqGlpBQkNeCSRcckEBcHq1jImMElToKuDvpHFMGhU0BQcHBwLji6CE1B4uB/INQsDi4d2jQ/fPeZxo764OV6915f7lLJ81xot9tCURXqdVEUr7IsO6ffH9Q5BlEUCaLwWxWqTcbYnaIoh0Dw4gAvcWlxq1qt9hqNxg6hUGAP+uIPUrGs0qXLer2+v/pTX6QpxLtkc2U2m53ACb8sSdIDXerSEms2m6+DweAICA4d89KGbduf9MpEVdXQ9/2LVqv1CASHjjn3iq/x1xKFfxQPqGnada1W86bT6SiO42OS3qk3KPStLMvbk8nkfjwen/LLuq6blFymMB0KdUPSGhAcOualjX6/f0bCiC7NaWGPQr0BwaFjzn0gYJqmLAiCA8/zni3LmhuGkQPBoWPOPwQeaPIqD4fDruu6L6Zp5kBw6IudchmdJAkLw3DXcZwnIPjy/FuAAQCiqqWWCAFKcwAAAABJRU5ErkJggg==)}.tablesorter-bootstrap .icon-white.bootstrap-icon-unsorted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOBAMAAAALT/umAAAAKlBMVEUAAAD///////////////////////////////////////////////////+Gu8ovAAAADXRSTlMA4EXKBtQqvR0+sxmalc142gAAAFdJREFUCNdjYGDoamAAAjZbMxCVfvd6AgMDd+3du9UMDKx3hWSvMjBwXZww8RYDGuC53NB8h4GB8a617UUGBs7Yu3cjGRhYVO9eVQFKOskKOQApFmUgBwBZ+xXRTttNdAAAAABJRU5ErkJggg==)}.tablesorter-bootstrap tr.odd>td{background-color:#f9f9f9}.tablesorter-bootstrap tbody>.even:hover>td,.tablesorter-bootstrap tbody>.odd:hover>td,.tablesorter-bootstrap tbody>tr.hover>td{background-color:#f5f5f5}.tablesorter-bootstrap tbody>tr.even>td,caption{background-color:#fff}.tablesorter-bootstrap .tablesorter-processing{background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=);position:absolute;z-index:1000}.tablesorter-bootstrap .tablesorter-filter-row input.tablesorter-filter,.tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter{height:28px;width:98%;margin:0;padding:4px 6px;background-color:#fff;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter-bootstrap .tablesorter-filter-row .tablesorter-filter.disabled{background-color:#eee;cursor:not-allowed}.tablesorter-bootstrap .tablesorter-filter-row{background-color:#ddd}.tablesorter-bootstrap .tablesorter-filter-row td{background-color:#eee;line-height:normal;text-align:center;padding:4px 6px;vertical-align:middle;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-bootstrap tr.tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0}.tablesorter-bootstrap tr.tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)}.tablesorter .filtered{display:none}.tablesorter-bootstrap .tablesorter-pager select{padding:4px 6px}.tablesorter-bootstrap .tablesorter-pager .pagedisplay{border:0}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.dark.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.dark.min.css deleted file mode 100644 index 7b3801b58..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.dark.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter-dark,.tablesorter-dark tbody>tr.even:hover>td,.tablesorter-dark tbody>tr.hover>td,.tablesorter-dark tbody>tr.odd:hover>td,.tablesorter-dark tbody>tr:hover>td,.tablesorter-dark td{background-color:#000}.tablesorter-dark{width:100%;font:11px/18px Arial,Sans-serif;color:#ccc;text-align:left;border-spacing:0}.tablesorter-dark th,.tablesorter-dark thead td{padding:4px;font:12px/20px Arial,Sans-serif;font-weight:700;color:#fff;background-color:#000;border-collapse:collapse}.tablesorter-dark thead th{border-bottom:#333 2px solid}.tablesorter-dark .header,.tablesorter-dark .tablesorter-header{padding:4px 20px 4px 4px;cursor:pointer;background-image:url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);background-position:center right;background-repeat:no-repeat}.tablesorter-dark thead .headerSortUp,.tablesorter-dark thead .tablesorter-headerAsc,.tablesorter-dark thead .tablesorter-headerSortUp{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);border-bottom:#888 1px solid}.tablesorter-dark thead .headerSortDown,.tablesorter-dark thead .tablesorter-headerDesc,.tablesorter-dark thead .tablesorter-headerSortDown{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);border-bottom:#888 1px solid}.tablesorter-dark thead .sorter-false{background-image:none;cursor:default;padding:4px}.tablesorter-dark tfoot .tablesorter-headerAsc,.tablesorter-dark tfoot .tablesorter-headerDesc,.tablesorter-dark tfoot .tablesorter-headerSortDown,.tablesorter-dark tfoot .tablesorter-headerSortUp{border-top:#888 1px solid;background-image:none}.tablesorter-dark td{padding:4px;border-bottom:#333 1px solid;color:#ccc}.tablesorter-dark .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-dark tr.odd>td{background-color:#202020}.tablesorter-dark tr.even>td{background-color:#101010}.tablesorter-dark td.primary,.tablesorter-dark tr.odd td.primary{background-color:#0a0a0a}.tablesorter-dark tr.even td.primary{background-color:#050505}.tablesorter-dark td.secondary,.tablesorter-dark tr.odd td.secondary{background-color:#0f0f0f}.tablesorter-dark tr.even td.secondary{background-color:#0a0a0a}.tablesorter-dark td.tertiary,.tablesorter-dark tr.odd td.tertiary{background-color:#191919}.tablesorter-dark tr.even td.tertiary{background-color:#0f0f0f}.tablesorter-dark .tablesorter-filter-row,caption{background-color:#202020}.tablesorter-dark .tablesorter-filter-row td{background-color:#202020;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-dark .tablesorter-filter-row .disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed}.tablesorter-dark .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-dark .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)}.tablesorter-dark input.tablesorter-filter,.tablesorter-dark select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#111;border:1px solid #222;color:#ddd;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.default.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.default.min.css deleted file mode 100644 index e60b04934..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.default.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter-default{width:100%;font:12px/18px Arial,Sans-serif;color:#333;background-color:#fff;border-spacing:0;margin:10px 0 15px;text-align:left}.tablesorter-default th,.tablesorter-default thead td{font-weight:700;color:#000;background-color:#fff;border-collapse:collapse;border-bottom:#ccc 2px solid;padding:0}.tablesorter-default tfoot td,.tablesorter-default tfoot th{border:0}.tablesorter-default .header,.tablesorter-default .tablesorter-header{background-image:url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);background-position:center right;background-repeat:no-repeat;cursor:pointer;white-space:normal;padding:4px 20px 4px 4px}.tablesorter-default thead .headerSortUp,.tablesorter-default thead .tablesorter-headerAsc,.tablesorter-default thead .tablesorter-headerSortUp{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);border-bottom:#000 2px solid}.tablesorter-default thead .headerSortDown,.tablesorter-default thead .tablesorter-headerDesc,.tablesorter-default thead .tablesorter-headerSortDown{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);border-bottom:#000 2px solid}.tablesorter-default thead .sorter-false{background-image:none;cursor:default;padding:4px}.tablesorter-default tfoot .tablesorter-headerAsc,.tablesorter-default tfoot .tablesorter-headerDesc,.tablesorter-default tfoot .tablesorter-headerSortDown,.tablesorter-default tfoot .tablesorter-headerSortUp{border-top:#000 2px solid}.tablesorter-default td{background-color:#fff;border-bottom:#ccc 1px solid;padding:4px;vertical-align:top}.tablesorter-default tbody>tr.even:hover>td,.tablesorter-default tbody>tr.hover>td,.tablesorter-default tbody>tr.odd:hover>td,.tablesorter-default tbody>tr:hover>td{background-color:#fff;color:#000}.tablesorter-default .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-default tr.odd>td{background-color:#dfdfdf}.tablesorter-default tr.even>td{background-color:#efefef}.tablesorter-default tr.odd td.primary{background-color:#bfbfbf}.tablesorter-default td.primary,.tablesorter-default tr.even td.primary,.tablesorter-default tr.odd td.secondary{background-color:#d9d9d9}.tablesorter-default td.secondary,.tablesorter-default tr.even td.secondary,.tablesorter-default tr.odd td.tertiary{background-color:#e6e6e6}.tablesorter-default td.tertiary,.tablesorter-default tr.even td.tertiary{background-color:#f2f2f2}caption{background-color:#fff}.tablesorter-default .tablesorter-filter-row{background-color:#eee}.tablesorter-default .tablesorter-filter-row td{background-color:#eee;border-bottom:#ccc 1px solid;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-default .tablesorter-filter-row .disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed}.tablesorter-default .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-default .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)}.tablesorter-default input.tablesorter-filter,.tablesorter-default select.tablesorter-filter{width:95%;height:auto;margin:4px auto;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.dropbox.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.dropbox.min.css deleted file mode 100644 index 949f9c9c2..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.dropbox.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter-dropbox{width:100%;font:13px/32px "Open Sans","lucida grande","Segoe UI",arial,verdana,"lucida sans unicode",tahoma,sans-serif;color:#555;text-align:left;background-color:#fff;border-collapse:collapse;border-top:1px solid #82cffa;border-spacing:0}.tablesorter-dropbox tfoot td,.tablesorter-dropbox tfoot th,.tablesorter-dropbox th,.tablesorter-dropbox thead td{background-color:#f0f9ff;border-color:#82cffa #e7f2fb #96c4ea;border-style:solid;border-width:1px;padding:3px 6px;font-size:13px;font-weight:400;line-height:29px;color:#2281CF;text-align:left}.tablesorter-dropbox .header,.tablesorter-dropbox .tablesorter-headerRow,.tablesorter-dropbox thead tr{background-color:#f0f9ff;border-bottom:1px solid #96c4ea;box-shadow:0 1px 1px rgba(0,0,0,.12),0 0 0 #000 inset;white-space:normal}.tablesorter-dropbox .tablesorter-headerAsc,.tablesorter-dropbox .tablesorter-headerDesc,.tablesorter-dropbox .tablesorter-headerSortDown,.tablesorter-dropbox .tablesorter-headerSortUp{font-weight:600}.tablesorter-dropbox .tablesorter-header{cursor:pointer}.tablesorter-dropbox .tablesorter-header i.tablesorter-icon{width:9px;height:9px;padding:0 10px 0 4px;display:inline-block;background-position:center right;background-repeat:no-repeat;content:""}.tablesorter-dropbox .tablesorter-headerAsc i.tablesorter-icon,.tablesorter-dropbox .tablesorter-headerSortUp i.tablesorter-icon{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALhJREFUeNpi/P//PwMhwILMiexYx8bIxNTy/9+/muUVQb9g4kzIitg4edI4+YRLQTSyOCPMupjerUI8whK3OXgEhH58+fDuy9sXqkuKvd+hmMTOxdvCxS8sxMUvxACiQXwU6+Im7DDg5BNKY+fiY2BmYWMA0SA+SByuiJ2bbzIHrwAzMxsb0AGMDCAaxAeJg+SZ7wtaqfAISfQAdTIwMUM8ywhUyMTEzPD/71+5FXvPLWUkJpwAAgwAZqYvvHStbD4AAAAASUVORK5CYII=)}.tablesorter-dropbox .tablesorter-headerAsc:hover i.tablesorter-icon,.tablesorter-dropbox .tablesorter-headerSortUp:hover i.tablesorter-icon{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALVJREFUeNpi/P//PwMhwILMCc+qZGNkYmr5/+9fzcpp7b9g4kzIitjYOdM4uXlLQTSyOCPMuqi8OiEefsHbHFzcQj++fX335eN71WWTmt6hmMTOwdXCycMnBDSJAUSD+CjWxRQ0GHBw86Sxc3AyMDOzMIBoEB8kDlfEzsk1mYOLByjPCnQAIwOIBvFB4iB55rsfmVS4+QV7QNYwMTNDHApUyMTExPDv/z+5Feu3L2UkJpwAAgwA244u+I9CleAAAAAASUVORK5CYII=)}.tablesorter-dropbox .tablesorter-headerDesc i.tablesorter-icon,.tablesorter-dropbox .tablesorter-headerSortDown i.tablesorter-icon{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALdJREFUeNpi/P//PwMhwBLdtVGFhZ3zNhMzC4bkv79/GP78/K7KCDIpZ9mVw+xcfDaMTExwBf///WP4+e3TkSlROrZg7UxMLLns3HxnmFnZmGGK/v7+9ff3j2+5YHkQMSlC48Kv719m/f//D2IKkAbxQeJwRSDw4/OHmr+/fr0DqmAA0SA+TA6uaEq0zjugG+r//vkFcks9iA/3HbJvvn18O+vf379yP758mMXAoAAXZyQmnAACDADX316BiTFbMQAAAABJRU5ErkJggg==)}.tablesorter-dropbox .tablesorter-headerDesc:hover i.tablesorter-icon,.tablesorter-dropbox .tablesorter-headerSortDown:hover i.tablesorter-icon{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALNJREFUeNpi/P//PwMhwBJf3uP879e3PUzMzBiS//7+ZWBi43JhBJmU2z7nIzMzEx8jIyNcAUj8799/nyZXpvCzgARYuXjTWBkZVjCzIEz7++cvw+//DGkgNiPMTWVT1l5hZvynDTINbMp/pqtdOcE6IDkmmM5fv3/5//v37z9QBQOIBvFhcnBFEwoj7/5jZFnz9+8fBhAN4sN9h+ybH9++JrGxscr/+vE1CVmckZhwAggwANvlUyq5Dd1wAAAAAElFTkSuQmCC)}.tablesorter-dropbox thead .sorter-false{cursor:default}.tablesorter-dropbox thead .sorter-false i.tablesorter-icon,.tablesorter-dropbox thead .sorter-false:hover i.tablesorter-icon{background-image:none;padding:4px}.tablesorter-dropbox td{padding:5px 6px;line-height:32px;color:#555;text-align:left;border-top:1px solid #edf1f5;border-bottom:1px solid #edf1f5}.tablesorter-dropbox tbody>tr.even:hover>td,.tablesorter-dropbox tbody>tr.hover>td,.tablesorter-dropbox tbody>tr.odd:hover>td,.tablesorter-dropbox tbody>tr:hover>td{background-color:rgba(230,245,255,.3);border-right:0;border-left:0;border-color:#c6d8e4;border-style:double}.tablesorter-dropbox .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-dropbox .tablesorter-filter-row,caption{background-color:#fff}.tablesorter-dropbox .tablesorter-filter-row td{background-color:#fff;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-dropbox .tablesorter-filter-row .disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed}.tablesorter-dropbox .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-dropbox .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)}.tablesorter-dropbox input.tablesorter-filter,.tablesorter-dropbox select.tablesorter-filter{width:98%;height:auto;margin:0;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.green.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.green.min.css deleted file mode 100644 index 1bcbf539b..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.green.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter-green{width:100%;text-align:left;border-spacing:0;border:1px solid #cdcdcd;border-width:1px 0 0 1px}.tablesorter-green td,.tablesorter-green th{font:12px/18px Arial,Sans-serif;border:1px solid #cdcdcd;border-width:0 1px 1px 0}.tablesorter-green tfoot tr,.tablesorter-green thead tr .tablesorter-header{background-position:center center;background-repeat:repeat-x;background-image:url(data:image/gif;base64,R0lGODlhAQBkAOYAAN/e39XU1fX19tTU1eXm5uTl5ePk5OLj4+Hi4vX29fT19PP08/Lz8vHy8fDx8O/w7+7v7uzt7Orr6ufo5/T08/Pz8ufn5uLi4eDg39/f3t3d3Nzc29HR0NDQz8/Pzuvq6urp6eno6Ojn5+fm5tfW1tbV1dTT09PS0tLR0dHQ0NDPz/f39/b29vX19fT09PPz8/Ly8vHx8e/v7+7u7u3t7ezs7Ovr6+rq6unp6ejo6Ofn5+bm5uXl5eTk5OPj4+Li4uHh4eDg4N/f397e3t3d3dzc3Nvb29ra2tnZ2djY2NfX19XV1dPT09LS0tHR0dDQ0M/Pz8rKysXFxf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAFMALAAAAAABAGQAAAdegCsrLC0tLi+ILi6FCSwsCS0KkhQVDA0OMjM0NTYfICEiIzw9P0AYGUQaG0ZHSEoDTU9Qs08pTk1MSyRJR0VDQT8+PTw7Ojg3NTMyMTAvi4WOhC0vMTI1OT9GTlFSgQA7)}.tablesorter-green th,.tablesorter-green thead td{font-weight:700;border-right:#cdcdcd 1px solid;border-collapse:collapse;padding:6px}.tablesorter-green .header,.tablesorter-green .tablesorter-header-inner{background-position:5px center;background-repeat:no-repeat;background-image:url(data:image/gif;base64,R0lGODlhEAAQAOYAAA5NDBBYDlWWUzRUM5DVjp7inJ/fnQ1ECiCsGhyYFxqKFRFdDhBXDQxCCiO8HSK2HCCqGh2aGByUFxuPFhqNFhmHFRZ2EhVvERRpEBBVDSS8HiGyHB+mGh6fGRuTFxiAFBd5Eww/Cgs5CRp7Fiu+JRx8GCy/JjHAKyynKCuhJzXCMDbCMDnDMyNuHz3EODy9N0LFPSl7JkvIRjycOFDKS1LKTVPLT1XLUFTCT17OWTBkLmbQYnDTbHXVcXnWdoXago/djGmUZ112XCJEIEdjRf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAEUALAAAAAAQABAAAAdlgEWCg4SFhoIvh4cVLECKhCMeJjwFj0UlEwgaMD4Gii0WFAkRHQ47BIY6IQAZDAwBCyAPOJa1toRBGBAwNTY3OT0/AoZCDQoOKi4yNDOKRCIfGycrKZYDBxIkKLZDFxy3RTHgloEAOw==);border-collapse:collapse;white-space:normal;cursor:pointer}.tablesorter-green thead .headerSortUp .tablesorter-header-inner,.tablesorter-green thead .tablesorter-headerAsc .tablesorter-header-inner,.tablesorter-green thead .tablesorter-headerSortUp .tablesorter-header-inner{background-image:url(data:image/gif;base64,R0lGODlhEAAQANUAAA5NDBBYDpDVjp7inJ/fnSCsGhyYFxFdDhBXDSO8HSK2HB2aGBuPFhqNFhmHFRZ2EhBVDSS8Hh6fGRuTFxd5Eww/Chp7Fhx8GCy/JjnDMyNuHzy9N0LFPVTCTzBkLmbQYnDTbHnWdo/djP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACMALAAAAAAQABAAAAY4wJFwSCwaj8ikcslMbpojR0bEtEwwoIHywihEOCECUvNoGBaSxEdg9FQAEAQicKAoOtC8fs8fBgEAOw==)}.tablesorter-green thead .headerSortDown .tablesorter-header-inner,.tablesorter-green thead .tablesorter-headerDesc .tablesorter-header-inner,.tablesorter-green thead .tablesorter-headerSortDown .tablesorter-header-inner{background-image:url(data:image/gif;base64,R0lGODlhEAAQANUAAFWWUzRUMw1EChqKFQxCCiO8HSCqGhyUFxVvERRpECGyHB+mGhiAFAs5CSu+JTHAKyynKCuhJzXCMDbCMD3EOELFPSl7JkvIRjycOFDKS1LKTVPLT1XLUF7OWXXVcYXagmmUZ112XCJEIEdjRf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACQALAAAAAAQABAAAAY4QJJwSCwaj8ikcskkghKGimbD6Xg+AGOIMChIKJcMBjlqMBSPSUQZEBwcEKYIsWiSLPa8fs9HBgEAOw==)}.tablesorter-green td.tablesorter-header .tablesorter-header-inner,.tablesorter-green th.tablesorter-header .tablesorter-header-inner{padding-left:23px}.tablesorter-green thead .tablesorter-header.sorter-false .tablesorter-header-inner{background-image:none;cursor:default;padding-left:6px}.tablesorter-green tbody td,.tablesorter-green tfoot th{padding:6px;vertical-align:top}.tablesorter-green td{color:#3d3d3d;padding:6px}.tablesorter-green tbody>tr.even.hover>td,.tablesorter-green tbody>tr.even:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-green tbody>tr.even:hover+tr.tablesorter-childRow>td,.tablesorter-green tbody>tr.even:hover>td,.tablesorter-green tbody>tr.hover>td,.tablesorter-green tbody>tr:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-green tbody>tr:hover+tr.tablesorter-childRow>td,.tablesorter-green tbody>tr:hover>td{background-color:#d9d9d9}.tablesorter-green tbody>tr.odd.hover>td,.tablesorter-green tbody>tr.odd:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-green tbody>tr.odd:hover+tr.tablesorter-childRow>td,.tablesorter-green tbody>tr.odd:hover>td{background-color:#bfbfbf}.tablesorter-green .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-green tr.odd>td{background-color:#ebfaeb}.tablesorter-green tr.even>td{background-color:#fff}.tablesorter-green td.primary,.tablesorter-green tr.odd td.primary{background-color:#99e6a6}.tablesorter-green td.secondary,.tablesorter-green tr.even td.primary,.tablesorter-green tr.odd td.secondary{background-color:#c2f0c9}.tablesorter-green td.tertiary,.tablesorter-green tr.even td.secondary,.tablesorter-green tr.odd td.tertiary{background-color:#d6f5db}.tablesorter-green tr.even td.tertiary{background-color:#ebfaed}caption{background-color:#fff}.tablesorter-green .tablesorter-filter-row{background-color:#eee}.tablesorter-green .tablesorter-filter-row td{background-color:#eee;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-green .tablesorter-filter-row .disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed}.tablesorter-green .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-green .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)}.tablesorter-green input.tablesorter-filter,.tablesorter-green select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.grey.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.grey.min.css deleted file mode 100644 index 9fb75c516..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.grey.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter-grey{width:100%;margin:10px 0 15px;text-align:left;border-spacing:0;border-left:#555 1px solid}.tablesorter-grey th,.tablesorter-grey thead td{font:700 12px/18px Arial,Sans-serif;color:#c8c8c8;background-color:#3c3c3c;background-image:-moz-linear-gradient(top,#555,#3c3c3c);background-image:-ms-linear-gradient(top,#555,#3c3c3c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#555),to(#3c3c3c));background-image:-webkit-linear-gradient(top,#555,#3c3c3c);background-image:-o-linear-gradient(top,#555,#3c3c3c);background-image:linear-gradient(to bottom,#555,#3c3c3c);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#555555', endColorstr='#3c3c3c', GradientType=0 );background-repeat:repeat-x;border-right:#555 1px solid;text-shadow:0 1px 0 rgba(128,128,128,.7);-webkit-box-shadow:inset 0 1px 0 #222;-moz-box-shadow:inset 0 1px 0 #222;box-shadow:inset 0 1px 0 #222;padding:4px}.tablesorter-grey .tablesorter-header-inner{position:relative;padding:4px 15px 4px 4px}.tablesorter-grey .header,.tablesorter-grey .tablesorter-header{cursor:pointer}.tablesorter-grey .header i,.tablesorter-grey .tablesorter-header i.tablesorter-icon{width:18px;height:10px;position:absolute;right:2px;top:50%;margin-top:-10px;background-image:url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);background-repeat:no-repeat;background-position:center right;padding:4px;white-space:normal}.tablesorter-grey th.headerSortDown,.tablesorter-grey th.headerSortUp,.tablesorter-grey th.tablesorter-headerSortDown,.tablesorter-grey th.tablesorter-headerSortUp{color:#ddd;background-color:#135185;background-image:-moz-linear-gradient(top,#195c93,#0e4776);background-image:-ms-linear-gradient(top,#195c93,#0e4776);background-image:-webkit-gradient(linear,0 0,0 100%,from(#195c93),to(#0e4776));background-image:-webkit-linear-gradient(top,#195c93,#0e4776);background-image:-o-linear-gradient(top,#195c93,#0e4776);background-image:linear-gradient(to bottom,#195c93,#0e4776);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#195c93', endColorstr='#0e4776', GradientType=0 )}.tablesorter-grey .headerSortUp i.tablesorter-icon,.tablesorter-grey .tablesorter-headerAsc i.tablesorter-icon,.tablesorter-grey .tablesorter-headerSortUp i.tablesorter-icon{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7)}.tablesorter-grey .headerSortDown i.tablesorter-icon,.tablesorter-grey .tablesorter-headerDesc i.tablesorter-icon,.tablesorter-grey .tablesorter-headerSortDown i.tablesorter-icon{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7)}.tablesorter-grey thead .sorter-false{cursor:default}.tablesorter-grey thead .sorter-false i.tablesorter-icon{background-image:none;padding:4px}.tablesorter-grey tbody td,.tablesorter-grey tfoot td,.tablesorter-grey tfoot th{padding:4px;vertical-align:top;border-right:#555 1px solid}.tablesorter-grey tfoot td,.tablesorter-grey tfoot th{padding:8px}.tablesorter-grey td{color:#eee;background-color:#6d6d6d;padding:4px;vertical-align:top}.tablesorter-grey tbody>tr.even.hover>td,.tablesorter-grey tbody>tr.even:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-grey tbody>tr.even:hover+tr.tablesorter-childRow>td,.tablesorter-grey tbody>tr.even:hover>td,.tablesorter-grey tbody>tr.hover>td,.tablesorter-grey tbody>tr.odd.hover>td,.tablesorter-grey tbody>tr.odd:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-grey tbody>tr.odd:hover+tr.tablesorter-childRow>td,.tablesorter-grey tbody>tr.odd:hover>td,.tablesorter-grey tbody>tr:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-grey tbody>tr:hover+tr.tablesorter-childRow>td,.tablesorter-grey tbody>tr:hover>td{background-color:#134b78}.tablesorter-grey .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-grey tbody tr.odd>td{background-color:#5e5e5e}.tablesorter-grey tbody tr.even>td{background-color:#6d6d6d}.tablesorter-grey td.primary,.tablesorter-grey tr.odd td.primary{color:#ddd;background-color:#165388}.tablesorter-grey tr.even td.primary{color:#ddd;background-color:#195c93}.tablesorter-grey td.secondary,.tablesorter-grey tr.odd td.secondary{color:#ddd;background-color:#185C9A}.tablesorter-grey tr.even td.secondary{color:#ddd;background-color:#1D67A5}.tablesorter-grey td.tertiary,.tablesorter-grey tr.odd td.tertiary{color:#ddd;background-color:#1B67AD}.tablesorter-grey tr.even td.tertiary{color:#ddd;background-color:#2073B7}caption{background-color:#fff}.tablesorter-grey .tablesorter-filter-row{background-color:#3c3c3c}.tablesorter-grey .tablesorter-filter-row td{background-color:#3c3c3c;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-grey .tablesorter-filter-row .disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed}.tablesorter-grey .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-grey .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)}.tablesorter-grey input.tablesorter-filter,.tablesorter-grey select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#6d6d6d;border:1px solid #555;color:#ddd;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.ice.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.ice.min.css deleted file mode 100644 index add23f621..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.ice.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter-ice{width:100%;background-color:#fff;margin:10px 0 15px;text-align:left;border-spacing:0;border:1px solid #ccc;border-width:1px 0 0 1px}.tablesorter-ice td,.tablesorter-ice th{border:1px solid #ccc;border-width:0 1px 1px 0}.tablesorter-ice th,.tablesorter-ice thead td{font:12px/18px Arial,Sans-serif;color:#555;background-color:#f6f8f9;border-collapse:collapse;padding:4px;text-shadow:0 1px 0 rgba(255,255,255,.7)}.tablesorter-ice tbody td,.tablesorter-ice tfoot td,.tablesorter-ice tfoot th{padding:4px;vertical-align:top}.tablesorter-ice .header,.tablesorter-ice .tablesorter-header{background-color:#f6f8f9;background-position:center right;background-repeat:no-repeat;background-image:url(data:image/gif;base64,R0lGODlhDAAMAMQAAAJEjAJCiwJBigJAiANFjgNGjgNEjQRIkQRHkANIkAVMlAVQmAZWnQZUnAdYoAhdpAhZoAlhqQlepQliqQppsApmrQxutgtutQtutAxwtwxwtg1yug1zugxtsw1yuP8A/yH5BAEAAB8ALAAAAAAMAAwAAAUx4Cd+3GiOW4ado2d9VMVm1xg9ptadTsP+QNZEcjoQTBDGCAFgLRSfQgCYMAiCn8EvBAA7);padding:4px 20px 4px 4px;white-space:normal;cursor:pointer}.tablesorter-ice .headerSortUp,.tablesorter-ice .tablesorter-headerAsc,.tablesorter-ice .tablesorter-headerSortUp{color:#333;background-color:#ebedee;background-position:center right;background-repeat:no-repeat;background-image:url(data:image/gif;base64,R0lGODlhDAAMANUAAAJCiwNHkANFjgNEjQRIkQNJkQRMlARKkwRKkgVPlwZSmgdaogdYnwhfpghcowlhqgliqglgqAlgpwljqwporwpmrQplrAtsswtqsgtrsgtqsQxttAtvtQtttAxyuQxwtwxxtwxvtg10uw1zuQ1xuP8A/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACUALAAAAAAMAAwAAAY6wJKwJBoahyNQ6Dj0fDoZCpPEuWgqk4jxs8FQLI+Gg8Esm5kQydFQMC7IwkOAqUiUCAIzIjA4lwBlQQA7)}.tablesorter-ice .headerSortDown,.tablesorter-ice .tablesorter-headerDesc,.tablesorter-ice .tablesorter-headerSortDown{color:#333;background-color:#ebedee;background-position:center right;background-repeat:no-repeat;background-image:url(data:image/gif;base64,R0lGODlhDAAMANUAAAE/iAJBigNFjgNEjQNFjQNDiwRHkQRHjwNHjwROlgRMlQRMlARJkgRKkgZQmAVPlgZWnQZSmgZRmAdXoAdXnwdUnAdbogdZoQhbowlhqAlepglkrAliqQtstAtqsQxyugxyuQxwuAxxuAxxtwxwtgxvtQ10vA12vA10u/8A/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACkALAAAAAAMAAwAAAY6wJQwdRoah6bP6DhEiVIdDxNEGm4yxlDpiJkwv2AmR2OhVCSJBsJ4gUQeCwOB6VAwBAXwYRAIpwBfQQA7)}.tablesorter-ice thead .sorter-false{background-image:none;cursor:default;padding:4px}.tablesorter-ice tfoot .tablesorter-headerAsc,.tablesorter-ice tfoot .tablesorter-headerDesc,.tablesorter-ice tfoot .tablesorter-headerSortDown,.tablesorter-ice tfoot .tablesorter-headerSortUp{background-color:#ebedee}.tablesorter-ice td{color:#333}.tablesorter-ice tbody>tr.even:hover>td,.tablesorter-ice tbody>tr.hover>td,.tablesorter-ice tbody>tr.odd:hover>td,.tablesorter-ice tbody>tr:hover>td{background-color:#ebf2fa}.tablesorter-ice .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-ice tr.odd>td{background-color:#dfdfdf}.tablesorter-ice tr.even>td{background-color:#efefef}.tablesorter-ice td.primary,.tablesorter-ice tr.odd td.primary{background-color:#9ae5e5}.tablesorter-ice td.secondary,.tablesorter-ice tr.even td.primary,.tablesorter-ice tr.odd td.secondary{background-color:#c2f0f0}.tablesorter-ice td.tertiary,.tablesorter-ice tr.even td.secondary,.tablesorter-ice tr.odd td.tertiary{background-color:#d5f5f5}.tablesorter-ice tr.even td.tertiary{background-color:#ebfafa}.tablesorter-ice.containsStickyHeaders thead tr:nth-child(1) td,.tablesorter-ice.containsStickyHeaders thead tr:nth-child(1) th{border-top:#ccc 1px solid}caption{background-color:#fff}.tablesorter-ice .tablesorter-filter-row{background-color:#eee}.tablesorter-ice .tablesorter-filter-row td{background-color:#eee;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-ice .tablesorter-filter-row .disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed}.tablesorter-ice .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-ice .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)}.tablesorter-ice input.tablesorter-filter,.tablesorter-ice select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.jui.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.jui.min.css deleted file mode 100644 index 8b24d87f9..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.jui.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter .filtered,.tablesorter-jui thead tr .sorter-false .ui-icon{display:none}.tablesorter-jui{width:100%;border-collapse:separate;border-spacing:2px;margin:10px 0 15px;padding:5px;font-size:.8em}.tablesorter-jui tfoot td,.tablesorter-jui tfoot th,.tablesorter-jui thead td,.tablesorter-jui thead th{position:relative;background-repeat:no-repeat;background-position:right center;font-weight:700!important;border-width:1px!important;text-align:left;padding:8px}.tablesorter-jui .header,.tablesorter-jui .tablesorter-header{cursor:pointer;white-space:normal}.tablesorter-jui .tablesorter-header-inner{padding-right:20px}.tablesorter-jui thead tr th .ui-icon{position:absolute;right:3px;top:50%;margin-top:-8px}.tablesorter-jui thead .sorter-false{cursor:default}.tablesorter-jui tfoot td,.tablesorter-jui tfoot th{font-weight:400!important;font-size:.9em;padding:2px}.tablesorter-jui td{padding:4px;vertical-align:top}.tablesorter-jui tbody>tr.hover>td,.tablesorter-jui tbody>tr:hover>td{opacity:.7;filter:alpha(opacity=70)}.tablesorter-jui .tablesorter-processing .tablesorter-header-inner{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-jui tr.ui-state-default{background-image:none;font-weight:400}.tablesorter-jui .tablesorter-processing{background-color:#ddd;background-color:rgba(255,255,255,.8)}.tablesorter-jui caption{border:0}.tablesorter-jui .tablesorter-filter-row{background-color:transparent}.tablesorter-jui .tablesorter-filter-row td{background-color:transparent;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-jui .tablesorter-filter-row .disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed}.tablesorter-jui .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-jui .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)}.tablesorter-jui input.tablesorter-filter,.tablesorter-jui select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.metro-dark.min.css b/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.metro-dark.min.css deleted file mode 100644 index 349f9d983..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/css/theme.metro-dark.min.css +++ /dev/null @@ -1 +0,0 @@ -.tablesorter-metro-dark{width:100%;font:12px/18px 'Segoe UI Semilight','Open Sans',Verdana,Arial,Helvetica,sans-serif;color:#000;background-color:#333;border-spacing:0;margin:10px 0 15px;text-align:left}.tablesorter-metro-dark caption.dark-row,.tablesorter-metro-dark tr.dark-row td,.tablesorter-metro-dark tr.dark-row th{background-color:#222;color:#fff;padding:2px;text-align:left;font-size:14px}.tablesorter-metro-dark caption,.tablesorter-metro-dark tfoot td,.tablesorter-metro-dark tfoot th,.tablesorter-metro-dark th,.tablesorter-metro-dark thead td{font-weight:300;font-size:15px;color:#ddd;background-color:#333;padding:4px}.tablesorter-metro-dark .header,.tablesorter-metro-dark .tablesorter-header{background-image:url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAGFBMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u5jNePWAAAACHRSTlMAMxIHKwEgMWD59H4AAABSSURBVAjXY2BgYFJgAAHzYhDJ6igSAKTYBAUTgJSioKAQAwNzoaCguAFDiCAQuDIkgigxBgiA8cJAVCpQt6AgSL+JoKAzA0gjUBsQqBcBCYhFAAE/CV4zeSzxAAAAAElFTkSuQmCC);background-position:right 5px center;background-repeat:no-repeat;cursor:pointer;white-space:normal}.tablesorter-metro-dark .tablesorter-header-inner{padding:0 18px 0 4px}.tablesorter-metro-dark thead .headerSortUp,.tablesorter-metro-dark thead .tablesorter-headerAsc,.tablesorter-metro-dark thead .tablesorter-headerSortUp{background-image:url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u5meJAOAAAACnRSTlMAMwsqXt+gIBUGxGoDMAAAAFlJREFUCNctzC0SQAAUReEzGNQ3AlHRiSRZFCVZYgeswRL8hLdK7834wj3tAlGP6y7fYHpKS6w6WwbVG0I1NZVnZPG8/DYxOYlnhUYkA06R1s9ESsxR4NIdPhkPFDFYuEnMAAAAAElFTkSuQmCC)}.tablesorter-metro-dark thead .headerSortDown,.tablesorter-metro-dark thead .tablesorter-headerDesc,.tablesorter-metro-dark thead .tablesorter-headerSortDown{background-image:url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAALVBMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7i0NViAAAADnRSTlMAMiweCQITTvDctZZqaTlM310AAABcSURBVAjXY2BgYEtgAAFHERDJqigUAKSYBQUNgFSioKAYAwOLIBA4MASBKFUGQxAlzAAF+94BwWuGKBC1lIFl3rt3Lx0YGCzevWsGSjK9e6cAUlT3HKyW9wADAwDRrBiDy6bKzwAAAABJRU5ErkJggg==)}.tablesorter-metro-dark thead .sorter-false{background-image:none;cursor:default;padding:4px}.tablesorter-metro-dark td{background-color:#fff;padding:4px;vertical-align:top}.tablesorter-metro-dark tbody>tr.even:hover>td,.tablesorter-metro-dark tbody>tr.hover>td,.tablesorter-metro-dark tbody>tr.odd:hover>td,.tablesorter-metro-dark tbody>tr:hover>td{background-color:#bbb;color:#000}.tablesorter-metro-dark .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-metro-dark .tablesorter-pager button{background-color:#444;color:#eee;border:1px solid #555;cursor:pointer}.tablesorter-metro-dark .tablesorter-pager button:hover{background-color:#555}.tablesorter-metro-dark tr.odd>td{background-color:#eee}.tablesorter-metro-dark tr.even>td{background-color:#fff}.tablesorter-metro-dark tr.odd td.primary{background-color:#bfbfbf}.tablesorter-metro-dark td.primary,.tablesorter-metro-dark tr.even td.primary,.tablesorter-metro-dark tr.odd td.secondary{background-color:#d9d9d9}.tablesorter-metro-dark td.secondary,.tablesorter-metro-dark tr.even td.secondary,.tablesorter-metro-dark tr.odd td.tertiary{background-color:#e6e6e6}.tablesorter-metro-dark td.tertiary,.tablesorter-metro-dark tr.even td.tertiary{background-color:#f2f2f2}.tablesorter-metro-dark .tablesorter-filter-row{background-color:#eee}.tablesorter-metro-dark .tablesorter-filter-row td{background-color:#eee;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-metro-dark .tablesorter-filter-row .disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed}.tablesorter-metro-dark .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-metro-dark .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0;filter:alpha(opacity=0)}.tablesorter-metro-dark input.tablesorter-filter,.tablesorter-metro-dark select.tablesorter-filter{width:95%;height:auto;margin:0;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/js/extras/jquery.dragtable.mod.min.js b/vendor/FHC-vendor/jquery-tablesorter/dist/js/extras/jquery.dragtable.mod.min.js deleted file mode 100644 index 2bd8920dc..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/js/extras/jquery.dragtable.mod.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Dragtable Mod for TableSorter - updated 10/31/2015 (v2.24.0) */ -!function(a){"use strict";function b(){var b=a('');a(document.head).append(b),a(document.body).attr("onselectstart","return false;").attr("unselectable","on"),window.getSelection?window.getSelection().removeAllRanges():document.selection.empty()}function c(){a("#__dragtable_disable_text_selection__").remove(),f?a(document.body).attr("onselectstart",f):a(document.body).removeAttr("onselectstart"),g?a(document.body).attr("unselectable",g):a(document.body).removeAttr("unselectable")}var d,e=a.tablesorter;e.dragtable={create:function(b){var c,d=b.originalTable.el,e=b.options.dragHandle.replace(".","");d.children("thead").children().children("th,td").each(function(){var d=a(this);d.find(b.options.dragHandle+",."+e+"-disabled").length||(c=b.options.dragaccept?d.hasClass(b.options.dragaccept.replace(".","")):!0,d.wrapInner('
                                                  ').prepend('
                                                  '))})},start:function(b){b=a(b)[0],b&&b.config&&(b.config.widgetOptions.dragtableLast={search:a(b).data("lastSearch"),order:e.dragtable.getOrder(b)})},update:function(b){var c,d,f,g=b.originalTable,h=g.el[0],i=a(h),j=h.config,k=j&&j.widgetOptions,l=g.startIndex-1,m=g.endIndex-1,n=e.dragtable.getOrder(h)||[],o=e.hasWidget(i,"filter")||!1,p=k&&k.dragtableLast||{},q=[];(p.order||[]).join("")!==n.join("")&&(j.sortList.length&&(d=a.extend(!0,[],j.sortList),a.each(n,function(a,b){f=e.isValueInArray(parseInt(b,10),d),b!==p.order[a]&&f>=0&&(j.sortList[f][0]=a)})),o&&a.each(p.search||[],function(a){q[a]=p.search[n[a]]}),c=e.hasWidget(j.$table,"editable")?k.editable_columnsArray:!1,c&&(j.widgetOptions.editable_columnsArray=e.dragtable.reindexArrayItem(c,l,m)),c=e.hasWidget(j.$table,"math")?k.math_ignore:!1,c&&(j.widgetOptions.math_ignore=e.dragtable.reindexArrayItem(c,l,m)),c=e.hasWidget(j.$table,"resizable")?k.resizable_widths:!1,c&&(k.resizable_widths=e.dragtable.moveArrayItem(c,l,m)),e.updateAll(j,!1,function(){o&&setTimeout(function(){j.lastCombinedFilter=null,j.$table.data("lastSearch",q),e.setFilters(i,q),a.isFunction(b.options.tablesorterComplete)&&b.options.tablesorterComplete(j.table)},10)}))},getOrder:function(b){return a(b).children("thead").children("."+e.css.headerRow).children().map(function(){return a(this).attr("data-column")}).get()||[]},startColumnMove:function(b){var c,d=b.el[0].config,e=b.startIndex-1,f=b.endIndex-1,g=d.columns-1,h=f===g?!1:e>=f,i=d.$table.children().children("tr");d.debug&&console.log("Inserting column "+e+(h?" before":" after")+" column "+f),i.each(function(){c=a(this).children(),c.eq(e)[h?"insertBefore":"insertAfter"](c.eq(f))}),c=d.$table.children("colgroup").children(),c.eq(e)[h?"insertBefore":"insertAfter"](c.eq(f))},swapNodes:function(a,b){var c,d,e,f=a.length;for(c=0;f>c;c++)d=a[c].parentNode,e=a[c].nextSibling===b[c]?a[c]:a[c].nextSibling,b[c].parentNode.insertBefore(a[c],b[c]),d.insertBefore(b[c],e)},moveArrayItem:function(a,b,c){var e,f=a.length;if(c>=f)for(e=c-f;e--+1;)a.push(d);return a.splice(c,0,a.splice(b,1)[0]),a},reindexArrayItem:function(b,c,d){var e=a.inArray(d,b),f=a.inArray(c,b),g=(Math.max.apply(Math,b),[]);return e>=0&&f>=0?b:(a.each(b,function(a,b){c>d?b>=d?g.push(b+(c>b?1:0)):g.push(b):d>c&&(b===c?g.push(d):d>b&&b>=c?g.push(b-1):d>=b?g.push(b):b>c&&g.push(b+(d>b?0:1)))}),g.sort())}},/*! dragtable v2.0.14 Mod */ -a.widget("akottr.dragtable",{options:{revert:!1,dragHandle:".table-handle",maxMovingRows:40,excludeFooter:!1,onlyHeaderThreshold:100,dragaccept:null,persistState:null,restoreState:null,exact:!0,clickDelay:10,containment:null,cursor:"move",cursorAt:!1,distance:0,tolerance:"pointer",axis:"x",beforeStart:a.noop,beforeMoving:a.noop,beforeReorganize:a.noop,beforeStop:a.noop,tablesorterComplete:null,sortClass:".sorter"},originalTable:{el:null,selectedHandle:null,sortOrder:null,startIndex:0,endIndex:0},sortableTable:{el:a(),selectedHandle:a(),movingRow:a()},persistState:function(){var b=this;this.originalTable.el.find("th").each(function(a){""!==this.id&&(b.originalTable.sortOrder[this.id]=a)}),a.ajax({url:this.options.persistState,data:this.originalTable.sortOrder})},_restoreState:function(b){for(var c in b)c in b&&(this.originalTable.startIndex=a("#"+c).closest("th").prevAll().length+1,this.originalTable.endIndex=parseInt(b[c],10)+1,this._bubbleCols())},_bubbleCols:function(){e.dragtable.startColumnMove(this.originalTable)},_rearrangeTableBackroundProcessing:function(){var b=this;return function(){b._bubbleCols(),b.options.beforeStop(b.originalTable),b.sortableTable.el.remove(),c(),e.dragtable.update(b),a.isFunction(b.options.persistState)?b.options.persistState(b.originalTable):b.persistState()}},_rearrangeTable:function(){var a=this;return function(){a.originalTable.selectedHandle.removeClass("dragtable-handle-selected"),a.sortableTable.el.sortable("disable"),a.sortableTable.el.addClass("dragtable-disabled"),a.options.beforeReorganize(a.originalTable,a.sortableTable),a.originalTable.endIndex=a.sortableTable.movingRow.prevAll().length+1,setTimeout(a._rearrangeTableBackroundProcessing(),50)}},_generateSortable:function(c){c.cancelBubble?c.cancelBubble=!0:c.stopPropagation();for(var d=this,e=this.originalTable.el[0].attributes,f="",g=0;g',s=[],t=m.eq(0).children("th, td").length;for(g=0;t>g;g++){var u=m.children(":nth-child("+(g+1)+")");u.is(":visible")&&(q=0,s[g]='
                                                • "+(p?'':"")+"",m.each(function(a){s[g]+=""+u[a].outerHTML+""}),s[g]+="",u=n.children(":nth-child("+(g+1)+")"),d.options.maxMovingRows>1&&(u=u.add(n.children(":nth-child("+(g+1)+")").slice(0,d.options.maxMovingRows-1))),u.each(function(a){s[g]+=""+this.outerHTML+""}),s[g]+="",d.options.excludeFooter||(s[g]+=""+l.filter("tfoot").children("tr:visible").children()[g].outerHTML+""),s[g]+="
                                                • ")}r+=s.join("")+"",this.sortableTable.el=this.originalTable.el.before(r).prev(),this.sortableTable.el.find("> li > table").each(function(b){a(this).css("width",j[b]+"px")}),this.sortableTable.selectedHandle=this.sortableTable.el.find("th .dragtable-handle-selected");var v=this.options.dragaccept?"li:has("+this.options.dragaccept+")":"li";this.sortableTable.el.sortable({items:v,stop:this._rearrangeTable(),revert:this.options.revert,tolerance:this.options.tolerance,containment:this.options.containment,cursor:this.options.cursor,cursorAt:this.options.cursorAt,distance:this.options.distance,axis:this.options.axis}),this.originalTable.startIndex=a(c.target).closest("th,td").prevAll().length+1,this.options.beforeMoving(this.originalTable,this.sortableTable),this.sortableTable.movingRow=this.sortableTable.el.children("li:nth-child("+this.originalTable.startIndex+")"),b(),this.sortableTable.movingRow.trigger(a.extend(a.Event(c.type),{which:1,clientX:c.clientX,clientY:c.clientY,pageX:c.pageX,pageY:c.pageY,screenX:c.screenX,screenY:c.screenY}));var w=this.sortableTable.el.find(".ui-sortable-placeholder");w.height()>0&&w.css("height",this.sortableTable.el.find(".ui-sortable-helper").height()),w.html('
                                                  ')},bindTo:{},_create:function(){var b=this;b.originalTable={el:b.element,selectedHandle:a(),sortOrder:{},startIndex:0,endIndex:0},e.dragtable.create(b),b.bindTo="> thead > tr > "+(b.options.dragaccept||"th, td"),b.element.find(b.bindTo).find(b.options.dragHandle).length&&(b.bindTo+=" "+b.options.dragHandle),a.isFunction(b.options.restoreState)?b.options.restoreState(b.originalTable):b._restoreState(b.options.restoreState),b.originalTable.el.on("mousedown.dragtable",b.bindTo,function(c){1===c.which&&(e.dragtable.start(b.originalTable.el),b.options.beforeStart(b.originalTable)!==!1&&(clearTimeout(b.downTimer),b.downTimer=setTimeout(function(){b.originalTable.selectedHandle=a(b),b.originalTable.selectedHandle.addClass("dragtable-handle-selected"),b._generateSortable(c)},b.options.clickDelay)))}).on("mouseup.dragtable",b.options.dragHandle,function(){clearTimeout(b.downTimer)})},redraw:function(){this.destroy(),this._create()},destroy:function(){this.originalTable.el.off("mousedown.dragtable mouseup.dragtable",this.bindTo),a.Widget.prototype.destroy.apply(this,arguments)}});var f=a(document.body).attr("onselectstart"),g=a(document.body).attr("unselectable")}(jQuery); \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/js/extras/jquery.metadata.min.js b/vendor/FHC-vendor/jquery-tablesorter/dist/js/extras/jquery.metadata.min.js deleted file mode 100644 index 4a11db581..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/js/extras/jquery.metadata.min.js +++ /dev/null @@ -1 +0,0 @@ -!function($){$.extend({metadata:{defaults:{type:"class",name:"metadata",cre:/(\{.*\})/,single:"metadata"},setType:function(a,b){this.defaults.type=a,this.defaults.name=b},get:function(elem,opts){var data,m,e,attr,settings=$.extend({},this.defaults,opts);if(settings.single.length||(settings.single="metadata"),data=$.data(elem,settings.single))return data;if(data="{}","class"===settings.type)m=settings.cre.exec(elem.className),m&&(data=m[1]);else if("elem"===settings.type){if(!elem.getElementsByTagName)return;e=elem.getElementsByTagName(settings.name),e.length&&(data=$.trim(e[0].innerHTML))}else void 0!==elem.getAttribute&&(attr=elem.getAttribute(settings.name),attr&&(data=attr));return data.indexOf("{")<0&&(data="{"+data+"}"),data=eval("("+data+")"),$.data(elem,settings.single,data),data}}}),$.fn.metadata=function(a){return $.metadata.get(this[0],a)}}(jQuery); \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/js/extras/jquery.tablesorter.pager.min.js b/vendor/FHC-vendor/jquery-tablesorter/dist/js/extras/jquery.tablesorter.pager.min.js deleted file mode 100644 index a7d0be284..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/js/extras/jquery.tablesorter.pager.min.js +++ /dev/null @@ -1,5 +0,0 @@ -/*! - * tablesorter (FORK) pager plugin - * updated 11/22/2015 (v2.24.6) - */ -!function(a){"use strict";var b=a.tablesorter;a.extend({tablesorterPager:new function(){this.defaults={container:null,ajaxUrl:null,customAjaxUrl:function(a,b){return b},ajaxError:null,ajaxObject:{dataType:"json"},processAjaxOnInit:!0,ajaxProcessing:function(a){return[0,[],null]},output:"{startRow} to {endRow} of {totalRows} rows",updateArrows:!0,page:0,pageReset:0,size:10,maxOptionSize:20,savePages:!0,storageKey:"tablesorter-pager",fixedHeight:!1,countChildRows:!1,removeRows:!1,cssFirst:".first",cssPrev:".prev",cssNext:".next",cssLast:".last",cssGoto:".gotoPage",cssPageDisplay:".pagedisplay",cssPageSize:".pagesize",cssErrorRow:"tablesorter-errorRow",cssDisabled:"disabled",totalRows:0,totalPages:0,filteredRows:0,filteredPages:0,ajaxCounter:0,currentFilters:[],startRow:0,endRow:0,$size:null,last:{}};var c="filterInit filterStart filterEnd sortEnd disablePager enablePager destroyPager updateComplete pageSize pageSet pageAndSize pagerUpdate refreshComplete ",d=this,e=function(a,b,c){var d="addClass",e="removeClass",f=b.cssDisabled,g=!!c,h=g||0===b.page,i=t(a,b),j=g||b.page===i-1||0===i;b.updateArrows&&(b.$container.find(b.cssFirst+","+b.cssPrev)[h?d:e](f).attr("aria-disabled",h),b.$container.find(b.cssNext+","+b.cssLast)[j?d:e](f).attr("aria-disabled",j))},f=function(a,c){var d,e,f,g=a.config,h=g.$table.hasClass("hasFilters");if(h&&!c.ajaxUrl)if(b.isEmptyObject(g.cache))c.filteredRows=c.totalRows=g.$tbodies.eq(0).children("tr").not(c.countChildRows?"":"."+g.cssChildRow).length;else for(c.filteredRows=0,d=g.cache[0].normalized,f=d.length,e=0;f>e;e++)c.filteredRows+=c.regexRows.test(d[e][g.columns].$row[0].className)?0:1;else h||(c.filteredRows=c.totalRows)},g=function(c,d,g){if(!d.initializing){var j,k,l,m,n,o,p=c.config,q=p.namespace+"pager",r=u(d,d.size,"get");if(d.countChildRows&&k.push(p.cssChildRow),d.totalPages=Math.ceil(d.totalRows/r),p.totalRows=d.totalRows,v(c,d),f(c,d),p.filteredRows=d.filteredRows,d.filteredPages=Math.ceil(d.filteredRows/r)||0,t(c,d)>=0){if(k=d.size*d.page>d.filteredRows&&g,d.page=k?d.pageReset||0:d.page,d.startRow=k?d.size*d.page+1:0===d.filteredRows?0:d.size*d.page+1,d.endRow=Math.min(d.filteredRows,d.totalRows,d.size*(d.page+1)),l=d.$container.find(d.cssPageDisplay),j=(d.ajaxData&&d.ajaxData.output?d.ajaxData.output||d.output:d.output).replace(/\{page([\-+]\d+)?\}/gi,function(a,b){return d.totalPages?d.page+(b?parseInt(b,10):1):0}).replace(/\{\w+(\s*:\s*\w+)?\}/gi,function(a){var b,c,e=a.replace(/[{}\s]/g,""),f=e.split(":"),g=d.ajaxData,h=/(rows?|pages?)$/i.test(e)?0:"";return/(startRow|page)/.test(f[0])&&"input"===f[1]?(b=(""+("page"===f[0]?d.totalPages:d.totalRows)).length,c="page"===f[0]?d.page+1:d.startRow,''):f.length>1&&g&&g[f[0]]?g[f[0]][f[1]]:d[e]||(g?g[e]:h)||h}),d.$goto.length){for(k="",o=h(c,d),n=o.length,m=0;n>m;m++)k+='";d.$goto.html(k).val(d.page+1)}l.length&&(l["INPUT"===l[0].nodeName?"val":"html"](j),l.find(".ts-startRow, .ts-page").unbind("change"+q).bind("change"+q,function(){var b=a(this).val(),c=a(this).hasClass("ts-startRow")?Math.floor(b/d.size)+1:b;p.$table.trigger("pageSet"+q,[c])}))}e(c,d),i(c,d),d.initialized&&g!==!1&&(p.debug&&console.log("Pager: Triggering pagerComplete"),p.$table.trigger("pagerComplete",d),d.savePages&&b.storage&&b.storage(c,d.storageKey,{page:d.page,size:d.size}))}},h=function(b,c){var d,e,f,g,h,i,j=t(b,c)||1,k=5*Math.ceil(j/c.maxOptionSize/5),l=j>c.maxOptionSize,m=c.page+1,n=k,o=j-k,p=[1],q=l?k:1;for(d=q;j>=d;)p.push(d),d+=l?k:1;if(p.push(j),l){for(f=[],e=Math.max(Math.floor(c.maxOptionSize/k)-1,5),n=m-e,1>n&&(n=1),o=m+e,o>j&&(o=j),d=n;o>=d;d++)f.push(d);p=a.grep(p,function(b,c){return a.inArray(b,p)===c}),h=p.length,i=f.length,h-i>k/2&&h+i>c.maxOptionSize&&(g=Math.floor(h/2)-Math.floor(i/2),Array.prototype.splice.apply(p,[g,i])),p=p.concat(f)}return p=a.grep(p,function(b,c){return a.inArray(b,p)===c}).sort(function(a,b){return a-b})},i=function(b,c){var d,e,f=b.config,g=f.$tbodies.eq(0);g.find("tr.pagerSavedHeightSpacer").remove(),c.fixedHeight&&!c.isDisabled&&(e=a.data(b,"pagerSavedHeight"),e&&(d=e-g.height(),d>5&&a.data(b,"pagerLastSize")===c.size&&g.children("tr:visible").length')))},j=function(b,c){var d,e=b.config,f=e.$tbodies.eq(0);f.find("tr.pagerSavedHeightSpacer").remove(),f.children("tr:visible").length||f.append(' '),d=f.children("tr").eq(0).height()*c.size,a.data(b,"pagerSavedHeight",d),i(b,c),a.data(b,"pagerLastSize",c.size)},k=function(a,c){if(!c.ajaxUrl){var d,e=0,f=a.config,g=f.$tbodies.eq(0).children("tr"),h=g.length,i=c.page*c.size,j=i+c.size,k=f.widgetOptions&&f.widgetOptions.filter_filteredRow||"filtered",l=0,m=0;for(c.cacheIndex=[],d=0;h>d;d++)g[d].className.match(k)||(m===i&&g[d].className.match(f.cssChildRow)?g[d].style.display="none":(g[d].style.display=m>=i&&j>m?"":"none",l!==m&&m>=i&&j>m&&(c.cacheIndex.push(d),l=m),m+=g[d].className.match(f.cssChildRow+"|"+f.selectorRemove.slice(1))&&!c.countChildRows?0:1,m===j&&"none"!==g[d].style.display&&g[d].className.match(b.css.cssHasChild)&&(e=d)));if(e>0&&g[e].className.match(b.css.cssHasChild))for(;++e> Ajax Error",f,h,i),b.showError(d,f,h,i),y.$tbodies.eq(0).children("tr").detach(),e.totalRows=0;else{if(a.isArray(B)?(l=isNaN(B[0])&&!isNaN(B[1]),w=B[l?1:0],e.totalRows=isNaN(w)?e.totalRows||0:w,y.totalRows=y.filteredRows=e.filteredRows=e.totalRows,t=0===e.totalRows?[]:B[l?0:1]||[],s=B[2]):(e.ajaxData=B,y.totalRows=e.totalRows=B.total,y.filteredRows=e.filteredRows="undefined"!=typeof B.filteredRows?B.filteredRows:B.total,s=B.headers,t=B.rows||[]),v=t&&t.length,t instanceof jQuery)e.processAjaxOnInit&&(y.$tbodies.eq(0).empty(),y.$tbodies.eq(0).append(t));else if(v){for(j=0;v>j;j++){for(A+="",k=0;k"+t[j][k]+"";A+=""}e.processAjaxOnInit&&y.$tbodies.eq(0).html(A)}if(e.processAjaxOnInit=!0,s&&s.length===C)for(m=z.hasClass("hasStickyHeaders"),o=m?y.widgetOptions.$sticky.children("thead:first").children("tr").children():"",n=z.find("tfoot tr:first").children(),p=y.$headers.filter("th "),x=p.length,k=0;x>k;k++)q=p.eq(k),q.find("."+b.css.icon).length?(r=q.find("."+b.css.icon).clone(!0),q.find(".tablesorter-header-inner").html(s[k]).append(r),m&&o.length&&(r=o.eq(k).find("."+b.css.icon).clone(!0),o.eq(k).find(".tablesorter-header-inner").html(s[k]).append(r))):(q.find(".tablesorter-header-inner").html(s[k]),m&&o.length&&o.eq(k).find(".tablesorter-header-inner").html(s[k])),n.eq(k).html(s[k])}y.showProcessing&&b.isProcessing(d),e.totalPages=Math.ceil(e.totalRows/u(e,e.size,"get")),e.last.totalRows=e.totalRows,e.last.currentFilters=e.currentFilters,e.last.sortList=(y.sortList||[]).join(","),g(d,e,!1),b.updateCache(y,function(){e.initialized&&setTimeout(function(){y.debug&&console.log("Pager: Triggering pagerChange"),z.trigger("pagerChange",e),b.applyWidget(d),g(d,e,!0)},0)})}e.initialized||(e.initialized=!0,e.initializing=!1,d.config.debug&&console.log("Pager: Triggering pagerInitialized"),a(d).trigger("pagerInitialized",e),b.applyWidget(d),g(d,e))},n=function(c,d){var e,f=o(c,d),g=a(document),h=c.config,i=h.namespace+"pager";""!==f&&(h.showProcessing&&b.isProcessing(c,!0),g.bind("ajaxError"+i,function(a,b,e,f){m(null,c,d,b,e,f),g.unbind("ajaxError"+i)}),e=++d.ajaxCounter,d.last.ajaxUrl=f,d.ajaxObject.url=f,d.ajaxObject.success=function(a,b,f){ed;d++)l.push(j+"["+h[d][0]+"]="+h[d][1]);g=g.replace(/\{\s*sort(?:List)?\s*:\s*(\w*)\s*\}/g,l.length?l.join("&"):j),l=[]}if(k){for(k=k[1],e=i.length,d=0;e>d;d++)i[d]&&l.push(k+"["+d+"]="+encodeURIComponent(i[d]));g=g.replace(/\{\s*filter(?:List)?\s*:\s*(\w*)\s*\}/g,l.length?l.join("&"):k),c.currentFilters=i}return"function"==typeof c.customAjaxUrl&&(g=c.customAjaxUrl(b,g)),f.debug&&console.log("Pager: Ajax url = "+g),g},p=function(c,d,e){var f,h,i,j,l=a(c),m=c.config,n=m.$table.hasClass("hasFilters"),o=d&&d.length||0,p=e.page*e.size,q=e.size;if(1>o)return void(m.debug&&console.warn("Pager: >> No rows for pager to render"));if(e.page>=e.totalPages&&y(c,e),e.cacheIndex=[],e.isDisabled=!1,e.initialized&&(m.debug&&console.log("Pager: Triggering pagerChange"),l.trigger("pagerChange",e)),e.removeRows){for(b.clearTableBody(c),f=b.processTbody(c,m.$tbodies.eq(0),!0),h=n?0:p,i=n?0:p,j=0;q>j&&hp&&q>=j&&(j++,e.cacheIndex.push(h),f.append(d[h]))),h++;b.processTbody(c,f,!1)}else k(c,e);g(c,e),c.isUpdating&&(m.debug&&console.log("Pager: Triggering updateComplete"),l.trigger("updateComplete",[c,!0]))},q=function(c,d){var f,g,h;for(d.ajax?e(c,d,!0):(a.data(c,"pagerLastPage",d.page),a.data(c,"pagerLastSize",d.size),d.page=0,d.size=d.totalRows,d.totalPages=1,a(c).addClass("pagerDisabled").removeAttr("aria-describedby").find("tr.pagerSavedHeightSpacer").remove(),p(c,c.config.rowsCopy,d),d.isDisabled=!0,b.applyWidget(c),c.config.debug&&console.log("Pager: Disabled")),g=d.$size.add(d.$goto).add(d.$container.find(".ts-startRow, .ts-page")),h=g.length,f=0;h>f;f++)g.eq(f).attr("aria-disabled","true").addClass(d.cssDisabled)[0].disabled=!0},r=function(a){var c=a.config,d=c.pager;b.updateCache(c,function(){var b,e=[],f=a.config.cache[0].normalized;for(d.totalRows=f.length,b=0;bc&&c>=0&&(b.page=c),b.page},w=function(b,c,d){d.size=u(d,c,"get"),d.$size.val(u(d,d.size,"set")),a.data(b,"pagerLastPage",v(b,d)),a.data(b,"pagerLastSize",d.size),d.totalPages=Math.ceil(d.totalRows/d.size),d.filteredPages=Math.ceil(d.filteredRows/d.size),s(b,d)},x=function(a,b){b.page=0,s(a,b)},y=function(a,b){b.page=t(a,b)-1,s(a,b)},z=function(a,b){b.page++;var c=t(a,b)-1;b.page>=c&&(b.page=c),s(a,b)},A=function(a,b){b.page--,b.page<=0&&(b.page=0),s(a,b)},B=function(a,c){var d=a.config,e=d.namespace+"pager",f=[c.cssFirst,c.cssPrev,c.cssNext,c.cssLast,c.cssGoto,c.cssPageSize].join(",");q(a,c),c.$container.hide().find(f).unbind(e),d.appender=null,d.$table.unbind(e),b.storage&&b.storage(a,c.storageKey,""),delete d.pager,delete d.rowsCopy},C=function(c,d,e){var f,g,h=c.config;d.$size.add(d.$goto).add(d.$container.find(".ts-startRow, .ts-page")).removeClass(d.cssDisabled).removeAttr("disabled").attr("aria-disabled","false"),d.isDisabled=!1,d.page=a.data(c,"pagerLastPage")||d.page||0,g=d.$size.find("option[selected]").val(),d.size=a.data(c,"pagerLastSize")||u(d,d.size,"get"),d.$size.val(u(d,d.size,"set")),d.totalPages=Math.ceil(t(c,d)/d.size),c.id&&(f=c.id+"_pager_info",d.$container.find(d.cssPageDisplay).attr("id",f),h.$table.attr("aria-describedby",f)),j(c,d),e&&(b.update(h),w(c,d.size,d),l(c,d),h.debug&&console.log("Pager: Enabled"))};d.appender=function(b,c){var d=b.config,e=d.pager;e.ajax||(d.rowsCopy=c,e.totalRows=e.countChildRows?d.$tbodies.eq(0).children("tr").length:c.length,e.size=a.data(b,"pagerLastSize")||e.size||e.settings.size||10,e.totalPages=Math.ceil(e.totalRows/e.size),p(b,c,e),g(b,e,!1))},d.construct=function(e){return this.each(function(){if(this.config&&this.hasInitialized){var f,h,i,m=this,n=m.config,o=n.widgetOptions,p=n.pager=a.extend(!0,{},a.tablesorterPager.defaults,e),t=n.$table,v=n.namespace+"pager",D=p.$container=a(p.container).addClass("tablesorter-pager").show();p.settings=a.extend(!0,{},a.tablesorterPager.defaults,e),n.debug&&console.log("Pager: Initializing"),p.oldAjaxSuccess=p.oldAjaxSuccess||p.ajaxObject.success,n.appender=d.appender,p.initializing=!0,p.savePages&&b.storage&&(f=b.storage(m,p.storageKey)||{},p.page=isNaN(f.page)?p.page:f.page,p.size=(isNaN(f.size)?p.size:f.size)||p.settings.size||10,a.data(m,"pagerLastSize",p.size)),p.regexRows=new RegExp("("+(o.filter_filteredRow||"filtered")+"|"+n.selectorRemove.slice(1)+"|"+n.cssChildRow+")"),t.unbind(c.split(" ").join(v+" ").replace(/\s+/g," ")).bind("filterInit filterStart ".split(" ").join(v+" "),function(b,c){p.currentFilters=a.isArray(c)?c:n.$table.data("lastSearch"),"filterStart"===b.type&&p.pageReset!==!1&&(n.lastCombinedFilter||"")!==(p.currentFilters||[]).join("")&&(p.page=p.pageReset)}).bind("filterEnd sortEnd ".split(" ").join(v+" "),function(){p.currentFilters=n.$table.data("lastSearch"),(p.initialized||p.initializing)&&(n.delayInit&&n.rowsCopy&&0===n.rowsCopy.length&&r(m),g(m,p,!1),s(m,p,!1),b.applyWidget(m))}).bind("disablePager"+v,function(a){a.stopPropagation(),q(m,p)}).bind("enablePager"+v,function(a){a.stopPropagation(),C(m,p,!0)}).bind("destroyPager"+v,function(a){a.stopPropagation(),B(m,p)}).bind("updateComplete"+v,function(a,b,c){if(a.stopPropagation(),b&&!c&&!p.ajax){var d=n.$tbodies.eq(0).children("tr").not(n.selectorRemove);p.totalRows=d.length-(p.countChildRows?0:d.filter("."+n.cssChildRow).length),p.totalPages=Math.ceil(p.totalRows/p.size),d.length&&n.rowsCopy&&0===n.rowsCopy.length&&r(b),p.page>=p.totalPages&&y(b,p),k(b,p),j(b,p),g(b,p,!0)}}).bind("pageSize refreshComplete ".split(" ").join(v+" "),function(a,b){a.stopPropagation(),w(m,u(p,b,"get"),p),k(m,p),g(m,p,!1)}).bind("pageSet pagerUpdate ".split(" ").join(v+" "),function(a,b){a.stopPropagation(),"pagerUpdate"===a.type&&(b="undefined"==typeof b?p.page+1:b,p.last.page=!0),p.page=(parseInt(b,10)||1)-1,s(m,p,!0),g(m,p,!1)}).bind("pageAndSize"+v,function(a,b,c){a.stopPropagation(),p.page=(parseInt(b,10)||1)-1,w(m,u(p,c,"get"),p),s(m,p,!0),k(m,p),g(m,p,!1)}),h=[p.cssFirst,p.cssPrev,p.cssNext,p.cssLast],i=[x,A,z,y],n.debug&&!D.length&&console.warn("Pager: >> Container not found"),D.find(h.join(",")).attr("tabindex",0).unbind("click"+v).bind("click"+v,function(b){b.stopPropagation();var c,d=a(this),e=h.length;if(!d.hasClass(p.cssDisabled))for(c=0;e>c;c++)if(d.is(h[c])){i[c](m,p);break}}),p.$goto=D.find(p.cssGoto),p.$goto.length?p.$goto.unbind("change"+v).bind("change"+v,function(){p.page=a(this).val()-1,s(m,p,!0),g(m,p,!1)}):n.debug&&console.warn("Pager: >> Goto selector not found"),p.$size=D.find(p.cssPageSize),p.$size.length?(p.$size.find("option").removeAttr("selected"),p.$size.unbind("change"+v).bind("change"+v,function(){if(!a(this).hasClass(p.cssDisabled)){var b=a(this).val();p.$size.val(b),w(m,b,p),j(m,p)}return!1})):n.debug&&console.warn("Pager: >> Size selector not found"),p.initialized=!1,t.trigger("pagerBeforeInitialized",p),C(m,p,!1),"string"==typeof p.ajaxUrl?(p.ajax=!0,n.widgetOptions.filter_serversideFiltering=!0,n.serverSideSorting=!0,s(m,p)):(p.ajax=!1,b.appendCache(n,!0),l(m,p)),p.ajax||p.initialized||(p.initializing=!1,p.initialized=!0,s(m,p),n.debug&&console.log("Pager: Triggering pagerInitialized"),n.$table.trigger("pagerInitialized",p),n.widgetOptions.filter_initialized&&b.hasWidget(m,"filter")||g(m,p,!1)),n.widgetInit.pager=!0}})}}}),b.showError=function(b,c,d,e){var f,g=a(b),h=g[0].config,i=h&&h.widgetOptions,j=h.pager&&h.pager.cssErrorRow||i&&i.pager_css&&i.pager_css.errorRow||"tablesorter-errorRow",k=typeof c,l=!0,m="",n=function(){h.$table.find("thead").find("."+j).remove()};if(!g.length)return void console.error("tablesorter showError: no table parameter passed");if("function"==typeof h.pager.ajaxError){if(l=h.pager.ajaxError(h,c,d,e),l===!1)return n();m=l}else if("function"==typeof i.pager_ajaxError){if(l=i.pager_ajaxError(h,c,d,e),l===!1)return n();m=l}if(""===m)if("object"===k)m=0===c.status?"Not connected, verify Network":404===c.status?"Requested page not found [404]":500===c.status?"Internal Server Error [500]":"parsererror"===e?"Requested JSON parse failed":"timeout"===e?"Time out error":"abort"===e?"Ajax Request aborted":"Uncaught error: "+c.statusText+" ["+c.status+"]";else{if("string"!==k)return n();m=c}f=a(/tr\>/.test(m)?m:''+m+"").click(function(){a(this).remove()}).appendTo(h.$table.find("thead:first")).addClass(j+" "+h.selectorRemove.slice(1)).attr({role:"alert","aria-live":"assertive"})},a.fn.extend({tablesorterPager:a.tablesorterPager.construct})}(jQuery); \ No newline at end of file diff --git a/vendor/FHC-vendor/jquery-tablesorter/dist/js/extras/semver-mod.min.js b/vendor/FHC-vendor/jquery-tablesorter/dist/js/extras/semver-mod.min.js deleted file mode 100644 index 733fe1149..000000000 --- a/vendor/FHC-vendor/jquery-tablesorter/dist/js/extras/semver-mod.min.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! Modified semver.js for node.js (v4.3.3, 3/27/2015) */ -!function(){function a(a,b){if(a instanceof d)return a;if("string"!=typeof a)return null;if(a.length>U)return null;var c=b?W[la]:W[ia];if(!c.test(a))return null;try{return new d(a,b)}catch(e){return null}}function b(b,c){var d=a(b,c);return d?d.version:null}function c(b,c){var d=a(b.trim().replace(/^[=v]+/,""),c);return d?d.version:null}function d(a,b){if(a instanceof d){if(a.loose===b)return a;a=a.version}else if("string"!=typeof a)throw new TypeError("Invalid Version: "+a);if(a.length>U)throw new TypeError("version is longer than "+U+" characters");if(!(this instanceof d))return new d(a,b);R("SemVer",a,b),this.loose=b;var c=a.trim().match(b?W[la]:W[ia]);if(!c)throw new TypeError("Invalid Version: "+a);if(this.raw=a,this.major=+c[1],this.minor=+c[2],this.patch=+c[3],this.major>V||this.major<0)throw new TypeError("Invalid major version");if(this.minor>V||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>V||this.patch<0)throw new TypeError("Invalid patch version");c[4]?this.prerelease=c[4].split(".").map(function(a){if(/^[0-9]+$/.test(a)){var b=+a;if(b>=0&&V>b)return b}return a}):this.prerelease=[],this.build=c[5]?c[5].split("."):[],this.format()}function e(a,b,c,e){"string"==typeof c&&(e=c,c=void 0);try{return new d(a,c).inc(b,e).version}catch(f){return null}}function f(b,c){if(s(b,c))return null;var d=a(b),e=a(c);if(d.prerelease.length||e.prerelease.length){for(var f in d)if(("major"===f||"minor"===f||"patch"===f)&&d[f]!==e[f])return"pre"+f;return"prerelease"}for(var f in d)if(("major"===f||"minor"===f||"patch"===f)&&d[f]!==e[f])return f}function g(a,b){var c=La.test(a),d=La.test(b);return c&&d&&(a=+a,b=+b),c&&!d?-1:d&&!c?1:b>a?-1:a>b?1:0}function h(a,b){return g(b,a)}function i(a,b){return new d(a,b).major}function j(a,b){return new d(a,b).minor}function k(a,b){return new d(a,b).patch}function l(a,b,c){return new d(a,c).compare(b)}function m(a,b){return l(a,b,!0)}function n(a,b,c){return l(b,a,c)}function o(a,b){return a.sort(function(a,c){return T.compare(a,c,b)})}function p(a,b){return a.sort(function(a,c){return T.rcompare(a,c,b)})}function q(a,b,c){return l(a,b,c)>0}function r(a,b,c){return l(a,b,c)<0}function s(a,b,c){return 0===l(a,b,c)}function t(a,b,c){return 0!==l(a,b,c)}function u(a,b,c){return l(a,b,c)>=0}function v(a,b,c){return l(a,b,c)<=0}function w(a,b,c,d){var e;switch(b){case"===":"object"==typeof a&&(a=a.version),"object"==typeof c&&(c=c.version),e=a===c;break;case"!==":"object"==typeof a&&(a=a.version),"object"==typeof c&&(c=c.version),e=a!==c;break;case"":case"=":case"==":e=s(a,c,d);break;case"!=":e=t(a,c,d);break;case">":e=q(a,c,d);break;case">=":e=u(a,c,d);break;case"<":e=r(a,c,d);break;case"<=":e=v(a,c,d);break;default:throw new TypeError("Invalid operator: "+b)}return e}function x(a,b){if(a instanceof x){if(a.loose===b)return a;a=a.value}return this instanceof x?(R("comparator",a,b),this.loose=b,this.parse(a),this.semver===Ma?this.value="":this.value=this.operator+this.semver.version,void R("comp",this)):new x(a,b)}function y(a,b){if(a instanceof y&&a.loose===b)return a;if(!(this instanceof y))return new y(a,b);if(this.loose=b,this.raw=a,this.set=a.split(/\s*\|\|\s*/).map(function(a){return this.parseRange(a.trim())},this).filter(function(a){return a.length}),!this.set.length)throw new TypeError("Invalid SemVer Range: "+a);this.format()}function z(a,b){return new y(a,b).set.map(function(a){return a.map(function(a){return a.value}).join(" ").trim().split(" ")})}function A(a,b){return R("comp",a),a=E(a,b),R("caret",a),a=C(a,b),R("tildes",a),a=G(a,b),R("xrange",a),a=I(a,b),R("stars",a),a}function B(a){return!a||"x"===a.toLowerCase()||"*"===a}function C(a,b){return a.trim().split(/\s+/).map(function(a){return D(a,b)}).join(" ")}function D(a,b){var c=b?W[xa]:W[wa];return a.replace(c,function(b,c,d,e,f){R("tilde",a,b,c,d,e,f);var g;return B(c)?g="":B(d)?g=">="+c+".0.0 <"+(+c+1)+".0.0":B(e)?g=">="+c+"."+d+".0 <"+c+"."+(+d+1)+".0":f?(R("replaceTilde pr",f),"-"!==f.charAt(0)&&(f="-"+f),g=">="+c+"."+d+"."+e+f+" <"+c+"."+(+d+1)+".0"):g=">="+c+"."+d+"."+e+" <"+c+"."+(+d+1)+".0",R("tilde return",g),g})}function E(a,b){return a.trim().split(/\s+/).map(function(a){return F(a,b)}).join(" ")}function F(a,b){R("caret",a,b);var c=b?W[Ca]:W[Ba];return a.replace(c,function(b,c,d,e,f){R("caret",a,b,c,d,e,f);var g;return B(c)?g="":B(d)?g=">="+c+".0.0 <"+(+c+1)+".0.0":B(e)?g="0"===c?">="+c+"."+d+".0 <"+c+"."+(+d+1)+".0":">="+c+"."+d+".0 <"+(+c+1)+".0.0":f?(R("replaceCaret pr",f),"-"!==f.charAt(0)&&(f="-"+f),g="0"===c?"0"===d?">="+c+"."+d+"."+e+f+" <"+c+"."+d+"."+(+e+1):">="+c+"."+d+"."+e+f+" <"+c+"."+(+d+1)+".0":">="+c+"."+d+"."+e+f+" <"+(+c+1)+".0.0"):(R("no pr"),g="0"===c?"0"===d?">="+c+"."+d+"."+e+" <"+c+"."+d+"."+(+e+1):">="+c+"."+d+"."+e+" <"+c+"."+(+d+1)+".0":">="+c+"."+d+"."+e+" <"+(+c+1)+".0.0"),R("caret return",g),g})}function G(a,b){return R("replaceXRanges",a,b),a.split(/\s+/).map(function(a){return H(a,b)}).join(" ")}function H(a,b){a=a.trim();var c=b?W[sa]:W[ra];return a.replace(c,function(b,c,d,e,f,g){R("xRange",a,b,c,d,e,f,g);var h=B(d),i=h||B(e),j=i||B(f),k=j;return"="===c&&k&&(c=""),h?b=">"===c||"<"===c?"<0.0.0":"*":c&&k?(i&&(e=0),j&&(f=0),">"===c?(c=">=",i?(d=+d+1,e=0,f=0):j&&(e=+e+1,f=0)):"<="===c&&(c="<",i?d=+d+1:e=+e+1),b=c+d+"."+e+"."+f):i?b=">="+d+".0.0 <"+(+d+1)+".0.0":j&&(b=">="+d+"."+e+".0 <"+d+"."+(+e+1)+".0"),R("xRange return",b),b})}function I(a,b){return R("replaceStars",a,b),a.trim().replace(W[Ja],"")}function J(a,b,c,d,e,f,g,h,i,j,k,l,m){return b=B(c)?"":B(d)?">="+c+".0.0":B(e)?">="+c+"."+d+".0":">="+b,h=B(i)?"":B(j)?"<"+(+i+1)+".0.0":B(k)?"<"+i+"."+(+j+1)+".0":l?"<="+i+"."+j+"."+k+"-"+l:"<="+h,(b+" "+h).trim()}function K(a,b){for(var c=0;c0){var d=a[c].semver;if(d.major===b.major&&d.minor===b.minor&&d.patch===b.patch)return!0}}return!1}return!0}function L(a,b,c){try{b=new y(b,c)}catch(d){return!1}return b.test(a)}function M(a,b,c){return a.filter(function(a){return L(a,b,c)}).sort(function(a,b){return n(a,b,c)})[0]||null}function N(a,b){try{return new y(a,b).range||"*"}catch(c){return null}}function O(a,b,c){return Q(a,b,"<",c)}function P(a,b,c){return Q(a,b,">",c)}function Q(a,b,c,e){a=new d(a,e),b=new y(b,e);var f,g,h,i,j;switch(c){case">":f=q,g=v,h=r,i=">",j=">=";break;case"<":f=r,g=u,h=q,i="<",j="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(L(a,b,e))return!1;for(var k=0;k)?=?)";var na=Y++;X[na]=X[$]+"|x|X|\\*";var oa=Y++;X[oa]=X[Z]+"|x|X|\\*";var pa=Y++;X[pa]="[v=\\s]*("+X[oa]+")(?:\\.("+X[oa]+")(?:\\.("+X[oa]+")(?:"+X[ea]+")?"+X[ha]+"?)?)?";var qa=Y++;X[qa]="[v=\\s]*("+X[na]+")(?:\\.("+X[na]+")(?:\\.("+X[na]+")(?:"+X[fa]+")?"+X[ha]+"?)?)?";var ra=Y++;X[ra]="^"+X[ma]+"\\s*"+X[pa]+"$";var sa=Y++;X[sa]="^"+X[ma]+"\\s*"+X[qa]+"$";var ta=Y++;X[ta]="(?:~>?)";var ua=Y++;X[ua]="(\\s*)"+X[ta]+"\\s+",W[ua]=new RegExp(X[ua],"g");var va="$1~",wa=Y++;X[wa]="^"+X[ta]+X[pa]+"$";var xa=Y++;X[xa]="^"+X[ta]+X[qa]+"$";var ya=Y++;X[ya]="(?:\\^)";var za=Y++;X[za]="(\\s*)"+X[ya]+"\\s+",W[za]=new RegExp(X[za],"g");var Aa="$1^",Ba=Y++;X[Ba]="^"+X[ya]+X[pa]+"$";var Ca=Y++;X[Ca]="^"+X[ya]+X[qa]+"$";var Da=Y++;X[Da]="^"+X[ma]+"\\s*("+ka+")$|^$";var Ea=Y++;X[Ea]="^"+X[ma]+"\\s*("+ja+")$|^$";var Fa=Y++;X[Fa]="(\\s*)"+X[ma]+"\\s*("+ka+"|"+X[pa]+")",W[Fa]=new RegExp(X[Fa],"g");var Ga="$1$2$3",Ha=Y++;X[Ha]="^\\s*("+X[pa]+")\\s+-\\s+("+X[pa]+")\\s*$";var Ia=Y++;X[Ia]="^\\s*("+X[qa]+")\\s+-\\s+("+X[qa]+")\\s*$";var Ja=Y++;X[Ja]="(<|>)?=?\\s*\\*";for(var Ka=0;Y>Ka;Ka++)R(Ka,X[Ka]),W[Ka]||(W[Ka]=new RegExp(X[Ka]));T.parse=a,T.valid=b,T.clean=c,window.semver=T.SemVer=d,d.prototype.format=function(){return this.version=this.major+"."+this.minor+"."+this.patch,this.prerelease.length&&(this.version+="-"+this.prerelease.join(".")),this.version},d.prototype.inspect=function(){return''},d.prototype.toString=function(){return this.version},d.prototype.compare=function(a){return R("SemVer.compare",this.version,this.loose,a),a instanceof d||(a=new d(a,this.loose)),this.compareMain(a)||this.comparePre(a)},d.prototype.compareMain=function(a){return a instanceof d||(a=new d(a,this.loose)),g(this.major,a.major)||g(this.minor,a.minor)||g(this.patch,a.patch)},d.prototype.comparePre=function(a){if(a instanceof d||(a=new d(a,this.loose)),this.prerelease.length&&!a.prerelease.length)return-1;if(!this.prerelease.length&&a.prerelease.length)return 1;if(!this.prerelease.length&&!a.prerelease.length)return 0;var b=0;do{var c=this.prerelease[b],e=a.prerelease[b];if(R("prerelease compare",b,c,e),void 0===c&&void 0===e)return 0;if(void 0===e)return 1;if(void 0===c)return-1;if(c!==e)return g(c,e)}while(++b)},d.prototype.inc=function(a,b){switch(a){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",b);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",b);break;case"prepatch":this.prerelease.length=0,this.inc("patch",b),this.inc("pre",b);break;case"prerelease":0===this.prerelease.length&&this.inc("patch",b),this.inc("pre",b);break;case"major":(0!==this.minor||0!==this.patch||0===this.prerelease.length)&&this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":(0!==this.patch||0===this.prerelease.length)&&this.minor++,this.patch=0,this.prerelease=[];break;case"patch":0===this.prerelease.length&&this.patch++,this.prerelease=[];break;case"pre":if(0===this.prerelease.length)this.prerelease=[0];else{for(var c=this.prerelease.length;--c>=0;)"number"==typeof this.prerelease[c]&&(this.prerelease[c]++,c=-2);-1===c&&this.prerelease.push(0)}b&&(this.prerelease[0]===b?isNaN(this.prerelease[1])&&(this.prerelease=[b,0]):this.prerelease=[b,0]);break;default:throw new Error("invalid increment argument: "+a)}return this.format(),this},T.inc=e,T.diff=f,T.compareIdentifiers=g;var La=/^[0-9]+$/;T.rcompareIdentifiers=h,T.major=i,T.minor=j,T.patch=k,T.compare=l,T.compareLoose=m,T.rcompare=n,T.sort=o,T.rsort=p,T.gt=q,T.lt=r,T.eq=s,T.neq=t,T.gte=u,T.lte=v,T.cmp=w,T.Comparator=x;var Ma={};x.prototype.parse=function(a){var b=this.loose?W[Da]:W[Ea],c=a.match(b);if(!c)throw new TypeError("Invalid comparator: "+a);this.operator=c[1],"="===this.operator&&(this.operator=""),c[2]?this.semver=new d(c[2],this.loose):this.semver=Ma},x.prototype.inspect=function(){return''},x.prototype.toString=function(){return this.value},x.prototype.test=function(a){return R("Comparator.test",a,this.loose),this.semver===Ma?!0:("string"==typeof a&&(a=new d(a,this.loose)),w(a,this.operator,this.semver,this.loose))},T.Range=y,y.prototype.inspect=function(){return''},y.prototype.format=function(){return this.range=this.set.map(function(a){return a.join(" ").trim()}).join("||").trim(),this.range},y.prototype.toString=function(){return this.range},y.prototype.parseRange=function(a){var b=this.loose;a=a.trim(),R("range",a,b);var c=b?W[Ia]:W[Ha];a=a.replace(c,J),R("hyphen replace",a),a=a.replace(W[Fa],Ga),R("comparator trim",a,W[Fa]),a=a.replace(W[ua],va),a=a.replace(W[za],Aa),a=a.split(/\s+/).join(" ");var d=b?W[Da]:W[Ea],e=a.split(" ").map(function(a){return A(a,b)}).join(" ").split(/\s+/);return this.loose&&(e=e.filter(function(a){return!!a.match(d)})),e=e.map(function(a){return new x(a,b)})},T.toComparators=z,y.prototype.test=function(a){if(!a)return!1;"string"==typeof a&&(a=new d(a,this.loose));for(var b=0;b // class from cssIcon - onRenderTemplate : null, // function( index, template ){ return template; }, // template is a string - onRenderHeader : null, // function( index ){}, // nothing to return - - // *** functionality - cancelSelection : true, // prevent text selection in the header - tabIndex : true, // add tabindex to header for keyboard accessibility - dateFormat : 'mmddyyyy', // other options: 'ddmmyyy' or 'yyyymmdd' - sortMultiSortKey : 'shiftKey', // key used to select additional columns - sortResetKey : 'ctrlKey', // key used to remove sorting on a column - usNumberFormat : true, // false for German '1.234.567,89' or French '1 234 567,89' - delayInit : false, // if false, the parsed table contents will not update until the first sort - serverSideSorting: false, // if true, server-side sorting should be performed because client-side sorting will be disabled, but the ui and events will still be used. - resort : true, // default setting to trigger a resort after an 'update', 'addRows', 'updateCell', etc has completed - - // *** sort options - headers : {}, // set sorter, string, empty, locked order, sortInitialOrder, filter, etc. - ignoreCase : true, // ignore case while sorting - sortForce : null, // column(s) first sorted; always applied - sortList : [], // Initial sort order; applied initially; updated when manually sorted - sortAppend : null, // column(s) sorted last; always applied - sortStable : false, // when sorting two rows with exactly the same content, the original sort order is maintained - - sortInitialOrder : 'asc', // sort direction on first click - sortLocaleCompare: false, // replace equivalent character (accented characters) - sortReset : false, // third click on the header will reset column to default - unsorted - sortRestart : false, // restart sort to 'sortInitialOrder' when clicking on previously unsorted columns - - emptyTo : 'bottom', // sort empty cell to bottom, top, none, zero, emptyMax, emptyMin - stringTo : 'max', // sort strings in numerical column as max, min, top, bottom, zero - textExtraction : 'basic', // text extraction method/function - function( node, table, cellIndex ){} - textAttribute : 'data-text',// data-attribute that contains alternate cell text (used in default textExtraction function) - textSorter : null, // choose overall or specific column sorter function( a, b, direction, table, columnIndex ) [alt: ts.sortText] - numberSorter : null, // choose overall numeric sorter function( a, b, direction, maxColumnValue ) - - // *** widget options - widgets: [], // method to add widgets, e.g. widgets: ['zebra'] - widgetOptions : { - zebra : [ 'even', 'odd' ] // zebra widget alternating row class names - }, - initWidgets : true, // apply widgets on tablesorter initialization - widgetClass : 'widget-{name}', // table class name template to match to include a widget - - // *** callbacks - initialized : null, // function( table ){}, - - // *** extra css class names - tableClass : '', - cssAsc : '', - cssDesc : '', - cssNone : '', - cssHeader : '', - cssHeaderRow : '', - cssProcessing : '', // processing icon applied to header during sort/filter - - cssChildRow : 'tablesorter-childRow', // class name indiciating that a row is to be attached to the its parent - cssInfoBlock : 'tablesorter-infoOnly', // don't sort tbody with this class name (only one class name allowed here!) - cssNoSort : 'tablesorter-noSort', // class name added to element inside header; clicking on it won't cause a sort - cssIgnoreRow : 'tablesorter-ignoreRow', // header row to ignore; cells within this row will not be added to c.$headers - - cssIcon : 'tablesorter-icon', // if this class does not exist, the {icon} will not be added from the headerTemplate - cssIconNone : '', // class name added to the icon when there is no column sort - cssIconAsc : '', // class name added to the icon when the column has an ascending sort - cssIconDesc : '', // class name added to the icon when the column has a descending sort - - // *** events - pointerClick : 'click', - pointerDown : 'mousedown', - pointerUp : 'mouseup', - - // *** selectors - selectorHeaders : '> thead th, > thead td', - selectorSort : 'th, td', // jQuery selector of content within selectorHeaders that is clickable to trigger a sort - selectorRemove : '.remove-me', - - // *** advanced - debug : false, - - // *** Internal variables - headerList: [], - empties: {}, - strings: {}, - parsers: [] - - // removed: widgetZebra: { css: ['even', 'odd'] } - - }, - - // internal css classes - these will ALWAYS be added to - // the table and MUST only contain one class name - fixes #381 - css : { - table : 'tablesorter', - cssHasChild: 'tablesorter-hasChildRow', - childRow : 'tablesorter-childRow', - colgroup : 'tablesorter-colgroup', - header : 'tablesorter-header', - headerRow : 'tablesorter-headerRow', - headerIn : 'tablesorter-header-inner', - icon : 'tablesorter-icon', - processing : 'tablesorter-processing', - sortAsc : 'tablesorter-headerAsc', - sortDesc : 'tablesorter-headerDesc', - sortNone : 'tablesorter-headerUnSorted' - }, - - // labels applied to sortable headers for accessibility (aria) support - language : { - sortAsc : 'Ascending sort applied, ', - sortDesc : 'Descending sort applied, ', - sortNone : 'No sort applied, ', - sortDisabled : 'sorting is disabled', - nextAsc : 'activate to apply an ascending sort', - nextDesc : 'activate to apply a descending sort', - nextNone : 'activate to remove the sort' - }, - - regex : { - templateContent : /\{content\}/g, - templateIcon : /\{icon\}/g, - templateName : /\{name\}/i, - spaces : /\s+/g, - nonWord : /\W/g, - formElements : /(input|select|button|textarea)/i, - - // *** sort functions *** - // regex used in natural sort - // chunk/tokenize numbers & letters - chunk : /(^([+\-]?(?:\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?)?$|^0x[0-9a-f]+$|\d+)/gi, - // replace chunks @ ends - chunks : /(^\\0|\\0$)/, - hex : /^0x[0-9a-f]+$/i, - - // *** formatFloat *** - comma : /,/g, - digitNonUS : /[\s|\.]/g, - digitNegativeTest : /^\s*\([.\d]+\)/, - digitNegativeReplace : /^\s*\(([.\d]+)\)/, - - // *** isDigit *** - digitTest : /^[\-+(]?\d+[)]?$/, - digitReplace : /[,.'"\s]/g - - }, - - // digit sort text location; keeping max+/- for backwards compatibility - string : { - max : 1, - min : -1, - emptymin : 1, - emptymax : -1, - zero : 0, - none : 0, - 'null' : 0, - top : true, - bottom : false - }, - - // placeholder date parser data (globalize) - dates : {}, - - // These methods can be applied on table.config instance - instanceMethods : {}, - - /* - ▄█████ ██████ ██████ ██ ██ █████▄ - ▀█▄ ██▄▄ ██ ██ ██ ██▄▄██ - ▀█▄ ██▀▀ ██ ██ ██ ██▀▀▀ - █████▀ ██████ ██ ▀████▀ ██ - */ - - setup : function( table, c ) { - // if no thead or tbody, or tablesorter is already present, quit - if ( !table || !table.tHead || table.tBodies.length === 0 || table.hasInitialized === true ) { - if ( c.debug ) { - if ( table.hasInitialized ) { - console.warn( 'Stopping initialization. Tablesorter has already been initialized' ); - } else { - console.error( 'Stopping initialization! No table, thead or tbody' ); - } - } - return; - } - - var tmp = '', - $table = $( table ), - meta = $.metadata; - // initialization flag - table.hasInitialized = false; - // table is being processed flag - table.isProcessing = true; - // make sure to store the config object - table.config = c; - // save the settings where they read - $.data( table, 'tablesorter', c ); - if ( c.debug ) { - console[ console.group ? 'group' : 'log' ]( 'Initializing tablesorter' ); - $.data( table, 'startoveralltimer', new Date() ); - } - - // removing this in version 3 (only supports jQuery 1.7+) - c.supportsDataObject = ( function( version ) { - version[ 0 ] = parseInt( version[ 0 ], 10 ); - return ( version[ 0 ] > 1 ) || ( version[ 0 ] === 1 && parseInt( version[ 1 ], 10 ) >= 4 ); - })( $.fn.jquery.split( '.' ) ); - // ensure case insensitivity - c.emptyTo = c.emptyTo.toLowerCase(); - c.stringTo = c.stringTo.toLowerCase(); - c.last = { sortList : [], clickedIndex : -1 }; - // add table theme class only if there isn't already one there - if ( !/tablesorter\-/.test( $table.attr( 'class' ) ) ) { - tmp = ( c.theme !== '' ? ' tablesorter-' + c.theme : '' ); - } - c.table = table; - c.$table = $table - .addClass( ts.css.table + ' ' + c.tableClass + tmp ) - .attr( 'role', 'grid' ); - c.$headers = $table.find( c.selectorHeaders ); - - // give the table a unique id, which will be used in namespace binding - if ( !c.namespace ) { - c.namespace = '.tablesorter' + Math.random().toString( 16 ).slice( 2 ); - } else { - // make sure namespace starts with a period & doesn't have weird characters - c.namespace = '.' + c.namespace.replace( ts.regex.nonWord, '' ); - } - - c.$table.children().children( 'tr' ).attr( 'role', 'row' ); - c.$tbodies = $table.children( 'tbody:not(.' + c.cssInfoBlock + ')' ).attr({ - 'aria-live' : 'polite', - 'aria-relevant' : 'all' - }); - if ( c.$table.children( 'caption' ).length ) { - tmp = c.$table.children( 'caption' )[ 0 ]; - if ( !tmp.id ) { tmp.id = c.namespace.slice( 1 ) + 'caption'; } - c.$table.attr( 'aria-labelledby', tmp.id ); - } - c.widgetInit = {}; // keep a list of initialized widgets - // change textExtraction via data-attribute - c.textExtraction = c.$table.attr( 'data-text-extraction' ) || c.textExtraction || 'basic'; - // build headers - ts.buildHeaders( c ); - // fixate columns if the users supplies the fixedWidth option - // do this after theme has been applied - ts.fixColumnWidth( table ); - // add widgets from class name - ts.addWidgetFromClass( table ); - // add widget options before parsing (e.g. grouping widget has parser settings) - ts.applyWidgetOptions( table ); - // try to auto detect column type, and store in tables config - ts.setupParsers( c ); - // start total row count at zero - c.totalRows = 0; - // build the cache for the tbody cells - // delayInit will delay building the cache until the user starts a sort - if ( !c.delayInit ) { ts.buildCache( c ); } - // bind all header events and methods - ts.bindEvents( table, c.$headers, true ); - ts.bindMethods( c ); - // get sort list from jQuery data or metadata - // in jQuery < 1.4, an error occurs when calling $table.data() - if ( c.supportsDataObject && typeof $table.data().sortlist !== 'undefined' ) { - c.sortList = $table.data().sortlist; - } else if ( meta && ( $table.metadata() && $table.metadata().sortlist ) ) { - c.sortList = $table.metadata().sortlist; - } - // apply widget init code - ts.applyWidget( table, true ); - // if user has supplied a sort list to constructor - if ( c.sortList.length > 0 ) { - ts.sortOn( c, c.sortList, {}, !c.initWidgets ); - } else { - ts.setHeadersCss( c ); - if ( c.initWidgets ) { - // apply widget format - ts.applyWidget( table, false ); - } - } - - // show processesing icon - if ( c.showProcessing ) { - $table - .unbind( 'sortBegin' + c.namespace + ' sortEnd' + c.namespace ) - .bind( 'sortBegin' + c.namespace + ' sortEnd' + c.namespace, function( e ) { - clearTimeout( c.timerProcessing ); - ts.isProcessing( table ); - if ( e.type === 'sortBegin' ) { - c.timerProcessing = setTimeout( function() { - ts.isProcessing( table, true ); - }, 500 ); - } - }); - } - - // initialized - table.hasInitialized = true; - table.isProcessing = false; - if ( c.debug ) { - console.log( 'Overall initialization time: ' + ts.benchmark( $.data( table, 'startoveralltimer' ) ) ); - if ( c.debug && console.groupEnd ) { console.groupEnd(); } - } - $table.trigger( 'tablesorter-initialized', table ); - if ( typeof c.initialized === 'function' ) { - c.initialized( table ); - } - }, - - bindMethods : function( c ) { - var $table = c.$table, - namespace = c.namespace, - events = ( 'sortReset update updateRows updateAll updateHeaders addRows updateCell updateComplete ' + - 'sorton appendCache updateCache applyWidgetId applyWidgets refreshWidgets destroy mouseup ' + - 'mouseleave ' ).split( ' ' ) - .join( namespace + ' ' ); - // apply easy methods that trigger bound events - $table - .unbind( events.replace( ts.regex.spaces, ' ' ) ) - .bind( 'sortReset' + namespace, function( e, callback ) { - e.stopPropagation(); - // using this.config to ensure functions are getting a non-cached version of the config - ts.sortReset( this.config, callback ); - }) - .bind( 'updateAll' + namespace, function( e, resort, callback ) { - e.stopPropagation(); - ts.updateAll( this.config, resort, callback ); - }) - .bind( 'update' + namespace + ' updateRows' + namespace, function( e, resort, callback ) { - e.stopPropagation(); - ts.update( this.config, resort, callback ); - }) - .bind( 'updateHeaders' + namespace, function( e, callback ) { - e.stopPropagation(); - ts.updateHeaders( this.config, callback ); - }) - .bind( 'updateCell' + namespace, function( e, cell, resort, callback ) { - e.stopPropagation(); - ts.updateCell( this.config, cell, resort, callback ); - }) - .bind( 'addRows' + namespace, function( e, $row, resort, callback ) { - e.stopPropagation(); - ts.addRows( this.config, $row, resort, callback ); - }) - .bind( 'updateComplete' + namespace, function() { - this.isUpdating = false; - }) - .bind( 'sorton' + namespace, function( e, list, callback, init ) { - e.stopPropagation(); - ts.sortOn( this.config, list, callback, init ); - }) - .bind( 'appendCache' + namespace, function( e, callback, init ) { - e.stopPropagation(); - ts.appendCache( this.config, init ); - if ( $.isFunction( callback ) ) { - callback( this ); - } - }) - // $tbodies variable is used by the tbody sorting widget - .bind( 'updateCache' + namespace, function( e, callback, $tbodies ) { - e.stopPropagation(); - ts.updateCache( this.config, callback, $tbodies ); - }) - .bind( 'applyWidgetId' + namespace, function( e, id ) { - e.stopPropagation(); - ts.getWidgetById( id ).format( this, this.config, this.config.widgetOptions ); - }) - .bind( 'applyWidgets' + namespace, function( e, init ) { - e.stopPropagation(); - // apply widgets - ts.applyWidget( this, init ); - }) - .bind( 'refreshWidgets' + namespace, function( e, all, dontapply ) { - e.stopPropagation(); - ts.refreshWidgets( this, all, dontapply ); - }) - .bind( 'destroy' + namespace, function( e, removeClasses, callback ) { - e.stopPropagation(); - ts.destroy( this, removeClasses, callback ); - }) - .bind( 'resetToLoadState' + namespace, function( e ) { - e.stopPropagation(); - // remove all widgets - ts.removeWidget( this, true, false ); - // restore original settings; this clears out current settings, but does not clear - // values saved to storage. - c = $.extend( true, ts.defaults, c.originalSettings ); - this.hasInitialized = false; - // setup the entire table again - ts.setup( this, c ); - }); - }, - - bindEvents : function( table, $headers, core ) { - table = $( table )[ 0 ]; - var tmp, - c = table.config, - namespace = c.namespace, - downTarget = null; - if ( core !== true ) { - $headers.addClass( namespace.slice( 1 ) + '_extra_headers' ); - tmp = $.fn.closest ? $headers.closest( 'table' )[ 0 ] : $headers.parents( 'table' )[ 0 ]; - if ( tmp && tmp.nodeName === 'TABLE' && tmp !== table ) { - $( tmp ).addClass( namespace.slice( 1 ) + '_extra_table' ); - } - } - tmp = ( c.pointerDown + ' ' + c.pointerUp + ' ' + c.pointerClick + ' sort keyup ' ) - .replace( ts.regex.spaces, ' ' ) - .split( ' ' ) - .join( namespace + ' ' ); - // apply event handling to headers and/or additional headers (stickyheaders, scroller, etc) - $headers - // http://stackoverflow.com/questions/5312849/jquery-find-self; - .find( c.selectorSort ) - .add( $headers.filter( c.selectorSort ) ) - .unbind( tmp ) - .bind( tmp, function( e, external ) { - var $cell, cell, temp, - $target = $( e.target ), - // wrap event type in spaces, so the match doesn't trigger on inner words - type = ' ' + e.type + ' '; - // only recognize left clicks - if ( ( ( e.which || e.button ) !== 1 && !type.match( ' ' + c.pointerClick + ' | sort | keyup ' ) ) || - // allow pressing enter - ( type === ' keyup ' && e.which !== 13 ) || - // allow triggering a click event (e.which is undefined) & ignore physical clicks - ( type.match( ' ' + c.pointerClick + ' ' ) && typeof e.which !== 'undefined' ) ) { - return; - } - // ignore mouseup if mousedown wasn't on the same target - if ( type.match( ' ' + c.pointerUp + ' ' ) && downTarget !== e.target && external !== true ) { - return; - } - // set target on mousedown - if ( type.match( ' ' + c.pointerDown + ' ' ) ) { - downTarget = e.target; - // preventDefault needed or jQuery v1.3.2 and older throws an - // "Uncaught TypeError: handler.apply is not a function" error - temp = $target.jquery.split( '.' ); - if ( temp[ 0 ] === '1' && temp[ 1 ] < 4 ) { e.preventDefault(); } - return; - } - downTarget = null; - // prevent sort being triggered on form elements - if ( ts.regex.formElements.test( e.target.nodeName ) || - // nosort class name, or elements within a nosort container - $target.hasClass( c.cssNoSort ) || $target.parents( '.' + c.cssNoSort ).length > 0 || - // elements within a button - $target.parents( 'button' ).length > 0 ) { - return !c.cancelSelection; - } - if ( c.delayInit && ts.isEmptyObject( c.cache ) ) { - ts.buildCache( c ); - } - // jQuery v1.2.6 doesn't have closest() - $cell = $.fn.closest ? $( this ).closest( 'th, td' ) : - /TH|TD/.test( this.nodeName ) ? $( this ) : $( this ).parents( 'th, td' ); - // reference original table headers and find the same cell - // don't use $headers or IE8 throws an error - see #987 - temp = $headers.index( $cell ); - c.last.clickedIndex = ( temp < 0 ) ? $cell.attr( 'data-column' ) : temp; - // use column index if $headers is undefined - cell = c.$headers[ c.last.clickedIndex ]; - if ( cell && !cell.sortDisabled ) { - ts.initSort( c, cell, e ); - } - }); - if ( c.cancelSelection ) { - // cancel selection - $headers - .attr( 'unselectable', 'on' ) - .bind( 'selectstart', false ) - .css({ - 'user-select' : 'none', - 'MozUserSelect' : 'none' // not needed for jQuery 1.8+ - }); - } - }, - - buildHeaders : function( c ) { - var $temp, icon, timer, indx; - c.headerList = []; - c.headerContent = []; - c.sortVars = []; - if ( c.debug ) { - timer = new Date(); - } - // children tr in tfoot - see issue #196 & #547 - c.columns = ts.computeColumnIndex( c.$table.children( 'thead, tfoot' ).children( 'tr' ) ); - // add icon if cssIcon option exists - icon = c.cssIcon ? - '' : - ''; - // redefine c.$headers here in case of an updateAll that replaces or adds an entire header cell - see #683 - c.$headers = $( $.map( c.$table.find( c.selectorHeaders ), function( elem, index ) { - var configHeaders, header, column, template, tmp, - $elem = $( elem ); - // ignore cell (don't add it to c.$headers) if row has ignoreRow class - if ( $elem.parent().hasClass( c.cssIgnoreRow ) ) { return; } - // make sure to get header cell & not column indexed cell - configHeaders = ts.getColumnData( c.table, c.headers, index, true ); - // save original header content - c.headerContent[ index ] = $elem.html(); - // if headerTemplate is empty, don't reformat the header cell - if ( c.headerTemplate !== '' && !$elem.find( '.' + ts.css.headerIn ).length ) { - // set up header template - template = c.headerTemplate - .replace( ts.regex.templateContent, $elem.html() ) - .replace( ts.regex.templateIcon, $elem.find( '.' + ts.css.icon ).length ? '' : icon ); - if ( c.onRenderTemplate ) { - header = c.onRenderTemplate.apply( $elem, [ index, template ] ); - // only change t if something is returned - if ( header && typeof header === 'string' ) { - template = header; - } - } - $elem.html( '
                                                  ' + template + '
                                                  ' ); // faster than wrapInner - } - if ( c.onRenderHeader ) { - c.onRenderHeader.apply( $elem, [ index, c, c.$table ] ); - } - column = parseInt( $elem.attr( 'data-column' ), 10 ); - elem.column = column; - tmp = ts.getData( $elem, configHeaders, 'sortInitialOrder' ) || c.sortInitialOrder; - // this may get updated numerous times if there are multiple rows - c.sortVars[ column ] = { - count : -1, // set to -1 because clicking on the header automatically adds one - order: ts.formatSortingOrder( tmp ) ? - [ 1, 0, 2 ] : // desc, asc, unsorted - [ 0, 1, 2 ], // asc, desc, unsorted - lockedOrder : false - }; - tmp = ts.getData( $elem, configHeaders, 'lockedOrder' ) || false; - if ( typeof tmp !== 'undefined' && tmp !== false ) { - c.sortVars[ column ].lockedOrder = true; - c.sortVars[ column ].order = ts.formatSortingOrder( tmp ) ? [ 1, 1, 1 ] : [ 0, 0, 0 ]; - } - // add cell to headerList - c.headerList[ index ] = elem; - // add to parent in case there are multiple rows - $elem - .addClass( ts.css.header + ' ' + c.cssHeader ) - .parent() - .addClass( ts.css.headerRow + ' ' + c.cssHeaderRow ) - .attr( 'role', 'row' ); - // allow keyboard cursor to focus on element - if ( c.tabIndex ) { - $elem.attr( 'tabindex', 0 ); - } - return elem; - }) ); - // cache headers per column - c.$headerIndexed = []; - for ( indx = 0; indx < c.columns; indx++ ) { - // colspan in header making a column undefined - if ( ts.isEmptyObject( c.sortVars[ indx ] ) ) { - c.sortVars[ indx ] = {}; - } - $temp = c.$headers.filter( '[data-column="' + indx + '"]' ); - // target sortable column cells, unless there are none, then use non-sortable cells - // .last() added in jQuery 1.4; use .filter(':last') to maintain compatibility with jQuery v1.2.6 - c.$headerIndexed[ indx ] = $temp.length ? - $temp.not( '.sorter-false' ).length ? - $temp.not( '.sorter-false' ).filter( ':last' ) : - $temp.filter( ':last' ) : - $(); - } - c.$table.find( c.selectorHeaders ).attr({ - scope: 'col', - role : 'columnheader' - }); - // enable/disable sorting - ts.updateHeader( c ); - if ( c.debug ) { - console.log( 'Built headers:' + ts.benchmark( timer ) ); - console.log( c.$headers ); - } - }, - - // Use it to add a set of methods to table.config which will be available for all tables. - // This should be done before table initialization - addInstanceMethods : function( methods ) { - $.extend( ts.instanceMethods, methods ); - }, - - /* - █████▄ ▄████▄ █████▄ ▄█████ ██████ █████▄ ▄█████ - ██▄▄██ ██▄▄██ ██▄▄██ ▀█▄ ██▄▄ ██▄▄██ ▀█▄ - ██▀▀▀ ██▀▀██ ██▀██ ▀█▄ ██▀▀ ██▀██ ▀█▄ - ██ ██ ██ ██ ██ █████▀ ██████ ██ ██ █████▀ - */ - setupParsers : function( c, $tbodies ) { - var rows, list, span, max, colIndex, indx, header, configHeaders, - noParser, parser, extractor, time, tbody, len, - table = c.table, - tbodyIndex = 0, - debug = {}; - // update table bodies in case we start with an empty table - c.$tbodies = c.$table.children( 'tbody:not(.' + c.cssInfoBlock + ')' ); - tbody = typeof $tbodies === 'undefined' ? c.$tbodies : $tbodies; - len = tbody.length; - if ( len === 0 ) { - return c.debug ? console.warn( 'Warning: *Empty table!* Not building a parser cache' ) : ''; - } else if ( c.debug ) { - time = new Date(); - console[ console.group ? 'group' : 'log' ]( 'Detecting parsers for each column' ); - } - list = { - extractors: [], - parsers: [] - }; - while ( tbodyIndex < len ) { - rows = tbody[ tbodyIndex ].rows; - if ( rows.length ) { - colIndex = 0; - max = c.columns; - for ( indx = 0; indx < max; indx++ ) { - header = c.$headerIndexed[ colIndex ]; - if ( header && header.length ) { - // get column indexed table cell - configHeaders = ts.getColumnData( table, c.headers, colIndex ); - // get column parser/extractor - extractor = ts.getParserById( ts.getData( header, configHeaders, 'extractor' ) ); - parser = ts.getParserById( ts.getData( header, configHeaders, 'sorter' ) ); - noParser = ts.getData( header, configHeaders, 'parser' ) === 'false'; - // empty cells behaviour - keeping emptyToBottom for backwards compatibility - c.empties[colIndex] = ( - ts.getData( header, configHeaders, 'empty' ) || - c.emptyTo || ( c.emptyToBottom ? 'bottom' : 'top' ) ).toLowerCase(); - // text strings behaviour in numerical sorts - c.strings[colIndex] = ( - ts.getData( header, configHeaders, 'string' ) || - c.stringTo || - 'max' ).toLowerCase(); - if ( noParser ) { - parser = ts.getParserById( 'no-parser' ); - } - if ( !extractor ) { - // For now, maybe detect someday - extractor = false; - } - if ( !parser ) { - parser = ts.detectParserForColumn( c, rows, -1, colIndex ); - } - if ( c.debug ) { - debug[ '(' + colIndex + ') ' + header.text() ] = { - parser : parser.id, - extractor : extractor ? extractor.id : 'none', - string : c.strings[ colIndex ], - empty : c.empties[ colIndex ] - }; - } - list.parsers[ colIndex ] = parser; - list.extractors[ colIndex ] = extractor; - span = header[ 0 ].colSpan - 1; - if ( span > 0 ) { - colIndex += span; - max += span; - } - } - colIndex++; - } - } - tbodyIndex += ( list.parsers.length ) ? len : 1; - } - if ( c.debug ) { - if ( !ts.isEmptyObject( debug ) ) { - console[ console.table ? 'table' : 'log' ]( debug ); - } else { - console.warn( ' No parsers detected!' ); - } - console.log( 'Completed detecting parsers' + ts.benchmark( time ) ); - if ( console.groupEnd ) { console.groupEnd(); } - } - c.parsers = list.parsers; - c.extractors = list.extractors; - }, - - addParser : function( parser ) { - var indx, - len = ts.parsers.length, - add = true; - for ( indx = 0; indx < len; indx++ ) { - if ( ts.parsers[ indx ].id.toLowerCase() === parser.id.toLowerCase() ) { - add = false; - } - } - if ( add ) { - ts.parsers.push( parser ); - } - }, - - getParserById : function( name ) { - /*jshint eqeqeq:false */ - if ( name == 'false' ) { return false; } - var indx, - len = ts.parsers.length; - for ( indx = 0; indx < len; indx++ ) { - if ( ts.parsers[ indx ].id.toLowerCase() === ( name.toString() ).toLowerCase() ) { - return ts.parsers[ indx ]; - } - } - return false; - }, - - detectParserForColumn : function( c, rows, rowIndex, cellIndex ) { - var cur, $node, row, - indx = ts.parsers.length, - node = false, - nodeValue = '', - keepLooking = true; - while ( nodeValue === '' && keepLooking ) { - rowIndex++; - row = rows[ rowIndex ]; - // stop looking after 50 empty rows - if ( row && rowIndex < 50 ) { - if ( row.className.indexOf( ts.cssIgnoreRow ) < 0 ) { - node = rows[ rowIndex ].cells[ cellIndex ]; - nodeValue = ts.getElementText( c, node, cellIndex ); - $node = $( node ); - if ( c.debug ) { - console.log( 'Checking if value was empty on row ' + rowIndex + ', column: ' + - cellIndex + ': "' + nodeValue + '"' ); - } - } - } else { - keepLooking = false; - } - } - while ( --indx >= 0 ) { - cur = ts.parsers[ indx ]; - // ignore the default text parser because it will always be true - if ( cur && cur.id !== 'text' && cur.is && cur.is( nodeValue, c.table, node, $node ) ) { - return cur; - } - } - // nothing found, return the generic parser (text) - return ts.getParserById( 'text' ); - }, - - getElementText : function( c, node, cellIndex ) { - if ( !node ) { return ''; } - var tmp, - extract = c.textExtraction || '', - // node could be a jquery object - // http://jsperf.com/jquery-vs-instanceof-jquery/2 - $node = node.jquery ? node : $( node ); - if ( typeof extract === 'string' ) { - // check data-attribute first when set to 'basic'; don't use node.innerText - it's really slow! - // http://www.kellegous.com/j/2013/02/27/innertext-vs-textcontent/ - if ( extract === 'basic' && typeof ( tmp = $node.attr( c.textAttribute ) ) !== 'undefined' ) { - return $.trim( tmp ); - } - return $.trim( node.textContent || $node.text() ); - } else { - if ( typeof extract === 'function' ) { - return $.trim( extract( $node[ 0 ], c.table, cellIndex ) ); - } else if ( typeof ( tmp = ts.getColumnData( c.table, extract, cellIndex ) ) === 'function' ) { - return $.trim( tmp( $node[ 0 ], c.table, cellIndex ) ); - } - } - // fallback - return $.trim( $node[ 0 ].textContent || $node.text() ); - }, - - // centralized function to extract/parse cell contents - getParsedText : function( c, cell, colIndex, txt ) { - if ( typeof txt === 'undefined' ) { - txt = ts.getElementText( c, cell, colIndex ); - } - // if no parser, make sure to return the txt - var val = '' + txt, - parser = c.parsers[ colIndex ], - extractor = c.extractors[ colIndex ]; - if ( parser ) { - // do extract before parsing, if there is one - if ( extractor && typeof extractor.format === 'function' ) { - txt = extractor.format( txt, c.table, cell, colIndex ); - } - // allow parsing if the string is empty, previously parsing would change it to zero, - // in case the parser needs to extract data from the table cell attributes - val = parser.id === 'no-parser' ? '' : - // make sure txt is a string (extractor may have converted it) - parser.format( '' + txt, c.table, cell, colIndex ); - if ( c.ignoreCase && typeof val === 'string' ) { - val = val.toLowerCase(); - } - } - return val; - }, - - /* - ▄████▄ ▄████▄ ▄████▄ ██ ██ ██████ - ██ ▀▀ ██▄▄██ ██ ▀▀ ██▄▄██ ██▄▄ - ██ ▄▄ ██▀▀██ ██ ▄▄ ██▀▀██ ██▀▀ - ▀████▀ ██ ██ ▀████▀ ██ ██ ██████ - */ - buildCache : function( c, callback, $tbodies ) { - var cache, val, txt, rowIndex, colIndex, tbodyIndex, $tbody, $row, - cols, $cells, cell, cacheTime, totalRows, rowData, prevRowData, - colMax, span, cacheIndex, max, len, - table = c.table, - parsers = c.parsers; - // update tbody variable - c.$tbodies = c.$table.children( 'tbody:not(.' + c.cssInfoBlock + ')' ); - $tbody = typeof $tbodies === 'undefined' ? c.$tbodies : $tbodies, - c.cache = {}; - c.totalRows = 0; - // if no parsers found, return - it's an empty table. - if ( !parsers ) { - return c.debug ? console.warn( 'Warning: *Empty table!* Not building a cache' ) : ''; - } - if ( c.debug ) { - cacheTime = new Date(); - } - // processing icon - if ( c.showProcessing ) { - ts.isProcessing( table, true ); - } - for ( tbodyIndex = 0; tbodyIndex < $tbody.length; tbodyIndex++ ) { - colMax = []; // column max value per tbody - cache = c.cache[ tbodyIndex ] = { - normalized: [] // array of normalized row data; last entry contains 'rowData' above - // colMax: # // added at the end - }; - - totalRows = ( $tbody[ tbodyIndex ] && $tbody[ tbodyIndex ].rows.length ) || 0; - for ( rowIndex = 0; rowIndex < totalRows; ++rowIndex ) { - rowData = { - // order: original row order # - // $row : jQuery Object[] - child: [], // child row text (filter widget) - raw: [] // original row text - }; - /** Add the table data to main data array */ - $row = $( $tbody[ tbodyIndex ].rows[ rowIndex ] ); - cols = []; - // if this is a child row, add it to the last row's children and continue to the next row - // ignore child row class, if it is the first row - if ( $row.hasClass( c.cssChildRow ) && rowIndex !== 0 ) { - len = cache.normalized.length - 1; - prevRowData = cache.normalized[ len ][ c.columns ]; - prevRowData.$row = prevRowData.$row.add( $row ); - // add 'hasChild' class name to parent row - if ( !$row.prev().hasClass( c.cssChildRow ) ) { - $row.prev().addClass( ts.css.cssHasChild ); - } - // save child row content (un-parsed!) - $cells = $row.children( 'th, td' ); - len = prevRowData.child.length; - prevRowData.child[ len ] = []; - // child row content does not account for colspans/rowspans; so indexing may be off - cacheIndex = 0; - max = c.columns; - for ( colIndex = 0; colIndex < max; colIndex++ ) { - cell = $cells[ colIndex ]; - if ( cell ) { - prevRowData.child[ len ][ colIndex ] = ts.getParsedText( c, cell, colIndex ); - span = $cells[ colIndex ].colSpan - 1; - if ( span > 0 ) { - cacheIndex += span; - max += span; - } - } - cacheIndex++; - } - // go to the next for loop - continue; - } - rowData.$row = $row; - rowData.order = rowIndex; // add original row position to rowCache - cacheIndex = 0; - max = c.columns; - for ( colIndex = 0; colIndex < max; ++colIndex ) { - cell = $row[ 0 ].cells[ colIndex ]; - if ( typeof parsers[ cacheIndex ] === 'undefined' ) { - if ( c.debug ) { - console.warn( 'No parser found for column ' + colIndex + '; cell:', cell, 'does it have a header?' ); - } - } else if ( cell ) { - val = ts.getElementText( c, cell, cacheIndex ); - rowData.raw[ cacheIndex ] = val; // save original row text - txt = ts.getParsedText( c, cell, cacheIndex, val ); - cols[ cacheIndex ] = txt; - if ( ( parsers[ cacheIndex ].type || '' ).toLowerCase() === 'numeric' ) { - // determine column max value (ignore sign) - colMax[ cacheIndex ] = Math.max( Math.abs( txt ) || 0, colMax[ cacheIndex ] || 0 ); - } - // allow colSpan in tbody - span = cell.colSpan - 1; - if ( span > 0 ) { - cacheIndex += span; - max += span; - } - } - cacheIndex++; - } - // ensure rowData is always in the same location (after the last column) - cols[ c.columns ] = rowData; - cache.normalized.push( cols ); - } - cache.colMax = colMax; - // total up rows, not including child rows - c.totalRows += cache.normalized.length; - - } - if ( c.showProcessing ) { - ts.isProcessing( table ); // remove processing icon - } - if ( c.debug ) { - console.log( 'Building cache for ' + totalRows + ' rows' + ts.benchmark( cacheTime ) ); - } - if ( $.isFunction( callback ) ) { - callback( table ); - } - }, - - getColumnText : function( table, column, callback, rowFilter ) { - table = $( table )[0]; - var tbodyIndex, rowIndex, cache, row, tbodyLen, rowLen, raw, parsed, $cell, result, - hasCallback = typeof callback === 'function', - allColumns = column === 'all', - data = { raw : [], parsed: [], $cell: [] }, - c = table.config; - if ( ts.isEmptyObject( c ) ) { - if ( c.debug ) { - console.warn( 'No cache found - aborting getColumnText function!' ); - } - } else { - tbodyLen = c.$tbodies.length; - for ( tbodyIndex = 0; tbodyIndex < tbodyLen; tbodyIndex++ ) { - cache = c.cache[ tbodyIndex ].normalized; - rowLen = cache.length; - for ( rowIndex = 0; rowIndex < rowLen; rowIndex++ ) { - row = cache[ rowIndex ]; - if ( rowFilter && !row[ c.columns ].$row.is( rowFilter ) ) { - continue; - } - result = true; - parsed = ( allColumns ) ? row.slice( 0, c.columns ) : row[ column ]; - row = row[ c.columns ]; - raw = ( allColumns ) ? row.raw : row.raw[ column ]; - $cell = ( allColumns ) ? row.$row.children() : row.$row.children().eq( column ); - if ( hasCallback ) { - result = callback({ - tbodyIndex : tbodyIndex, - rowIndex : rowIndex, - parsed : parsed, - raw : raw, - $row : row.$row, - $cell : $cell - }); - } - if ( result !== false ) { - data.parsed.push( parsed ); - data.raw.push( raw ); - data.$cell.push( $cell ); - } - } - } - // return everything - return data; - } - }, - - /* - ██ ██ █████▄ █████▄ ▄████▄ ██████ ██████ - ██ ██ ██▄▄██ ██ ██ ██▄▄██ ██ ██▄▄ - ██ ██ ██▀▀▀ ██ ██ ██▀▀██ ██ ██▀▀ - ▀████▀ ██ █████▀ ██ ██ ██ ██████ - */ - setHeadersCss : function( c ) { - var $sorted, indx, column, - list = c.sortList, - len = list.length, - none = ts.css.sortNone + ' ' + c.cssNone, - css = [ ts.css.sortAsc + ' ' + c.cssAsc, ts.css.sortDesc + ' ' + c.cssDesc ], - cssIcon = [ c.cssIconAsc, c.cssIconDesc, c.cssIconNone ], - aria = [ 'ascending', 'descending' ], - // find the footer - $headers = c.$table - .find( 'tfoot tr' ) - .children() - .add( $( c.namespace + '_extra_headers' ) ) - .removeClass( css.join( ' ' ) ); - // remove all header information - c.$headers - .removeClass( css.join( ' ' ) ) - .addClass( none ) - .attr( 'aria-sort', 'none' ) - .find( '.' + ts.css.icon ) - .removeClass( cssIcon.join( ' ' ) ) - .addClass( cssIcon[ 2 ] ); - for ( indx = 0; indx < len; indx++ ) { - // direction = 2 means reset! - if ( list[ indx ][ 1 ] !== 2 ) { - // multicolumn sorting updating - see #1005 - // .not(function(){}) needs jQuery 1.4 - // filter(function(i, el){}) <- el is undefined in jQuery v1.2.6 - $sorted = c.$headers.filter( function( i ) { - // only include headers that are in the sortList (this includes colspans) - var include = true, - $el = c.$headers.eq( i ), - col = parseInt( $el.attr( 'data-column' ), 10 ), - end = col + c.$headers[ i ].colSpan; - for ( ; col < end; col++ ) { - include = include ? ts.isValueInArray( col, c.sortList ) > -1 : false; - } - return include; - }); - - // choose the :last in case there are nested columns - $sorted = $sorted - .not( '.sorter-false' ) - .filter( '[data-column="' + list[ indx ][ 0 ] + '"]' + ( len === 1 ? ':last' : '' ) ); - if ( $sorted.length ) { - for ( column = 0; column < $sorted.length; column++ ) { - if ( !$sorted[ column ].sortDisabled ) { - $sorted - .eq( column ) - .removeClass( none ) - .addClass( css[ list[ indx ][ 1 ] ] ) - .attr( 'aria-sort', aria[ list[ indx ][ 1 ] ] ) - .find( '.' + ts.css.icon ) - .removeClass( cssIcon[ 2 ] ) - .addClass( cssIcon[ list[ indx ][ 1 ] ] ); - } - } - // add sorted class to footer & extra headers, if they exist - if ( $headers.length ) { - $headers - .filter( '[data-column="' + list[ indx ][ 0 ] + '"]' ) - .removeClass( none ) - .addClass( css[ list[ indx ][ 1 ] ] ); - } - } - } - } - // add verbose aria labels - len = c.$headers.length; - for ( indx = 0; indx < len; indx++ ) { - ts.setColumnAriaLabel( c, c.$headers.eq( indx ) ); - } - }, - - // nextSort (optional), lets you disable next sort text - setColumnAriaLabel : function( c, $header, nextSort ) { - if ( $header.length ) { - var column = parseInt( $header.attr( 'data-column' ), 10 ), - tmp = $header.hasClass( ts.css.sortAsc ) ? - 'sortAsc' : - $header.hasClass( ts.css.sortDesc ) ? 'sortDesc' : 'sortNone', - txt = $.trim( $header.text() ) + ': ' + ts.language[ tmp ]; - if ( $header.hasClass( 'sorter-false' ) || nextSort === false ) { - txt += ts.language.sortDisabled; - } else { - nextSort = c.sortVars[ column ].order[ ( c.sortVars[ column ].count + 1 ) % ( c.sortReset ? 3 : 2 ) ]; - // if nextSort - txt += ts.language[ nextSort === 0 ? 'nextAsc' : nextSort === 1 ? 'nextDesc' : 'nextNone' ]; - } - $header.attr( 'aria-label', txt ); - } - }, - - updateHeader : function( c ) { - var index, isDisabled, $header, col, - table = c.table, - len = c.$headers.length; - for ( index = 0; index < len; index++ ) { - $header = c.$headers.eq( index ); - col = ts.getColumnData( table, c.headers, index, true ); - // add 'sorter-false' class if 'parser-false' is set - isDisabled = ts.getData( $header, col, 'sorter' ) === 'false' || ts.getData( $header, col, 'parser' ) === 'false'; - ts.setColumnSort( c, $header, isDisabled ); - } - }, - - setColumnSort : function( c, $header, isDisabled ) { - var id = c.table.id; - $header[ 0 ].sortDisabled = isDisabled; - $header[ isDisabled ? 'addClass' : 'removeClass' ]( 'sorter-false' ) - .attr( 'aria-disabled', '' + isDisabled ); - // disable tab index on disabled cells - if ( c.tabIndex ) { - if ( isDisabled ) { - $header.removeAttr( 'tabindex' ); - } else { - $header.attr( 'tabindex', '0' ); - } - } - // aria-controls - requires table ID - if ( id ) { - if ( isDisabled ) { - $header.removeAttr( 'aria-controls' ); - } else { - $header.attr( 'aria-controls', id ); - } - } - }, - - updateHeaderSortCount : function( c, list ) { - var col, dir, group, indx, primary, temp, val, order, - sortList = list || c.sortList, - len = sortList.length; - c.sortList = []; - for ( indx = 0; indx < len; indx++ ) { - val = sortList[ indx ]; - // ensure all sortList values are numeric - fixes #127 - col = parseInt( val[ 0 ], 10 ); - // prevents error if sorton array is wrong - if ( col < c.columns ) { - order = c.sortVars[ col ].order; - dir = ( '' + val[ 1 ] ).match( /^(1|d|s|o|n)/ ); - dir = dir ? dir[ 0 ] : ''; - // 0/(a)sc (default), 1/(d)esc, (s)ame, (o)pposite, (n)ext - switch ( dir ) { - case '1' : case 'd' : // descending - dir = 1; - break; - case 's' : // same direction (as primary column) - // if primary sort is set to 's', make it ascending - dir = primary || 0; - break; - case 'o' : - temp = order[ ( primary || 0 ) % ( c.sortReset ? 3 : 2 ) ]; - // opposite of primary column; but resets if primary resets - dir = temp === 0 ? 1 : temp === 1 ? 0 : 2; - break; - case 'n' : - dir = order[ ( ++c.sortVars[ col ].count ) % ( c.sortReset ? 3 : 2 ) ]; - break; - default : // ascending - dir = 0; - break; - } - primary = indx === 0 ? dir : primary; - group = [ col, parseInt( dir, 10 ) || 0 ]; - c.sortList.push( group ); - dir = $.inArray( group[ 1 ], order ); // fixes issue #167 - c.sortVars[ col ].count = dir >= 0 ? dir : group[ 1 ] % ( c.sortReset ? 3 : 2 ); - } - } - }, - - updateAll : function( c, resort, callback ) { - var table = c.table; - table.isUpdating = true; - ts.refreshWidgets( table, true, true ); - ts.buildHeaders( c ); - ts.bindEvents( table, c.$headers, true ); - ts.bindMethods( c ); - ts.commonUpdate( c, resort, callback ); - }, - - update : function( c, resort, callback ) { - var table = c.table; - table.isUpdating = true; - // update sorting (if enabled/disabled) - ts.updateHeader( c ); - ts.commonUpdate( c, resort, callback ); - }, - - // simple header update - see #989 - updateHeaders : function( c, callback ) { - c.table.isUpdating = true; - ts.buildHeaders( c ); - ts.bindEvents( c.table, c.$headers, true ); - ts.resortComplete( c, callback ); - }, - - updateCell : function( c, cell, resort, callback ) { - c.table.isUpdating = true; - c.$table.find( c.selectorRemove ).remove(); - // get position from the dom - var tmp, indx, row, icell, cache, len, - $tbodies = c.$tbodies, - $cell = $( cell ), - // update cache - format: function( s, table, cell, cellIndex ) - // no closest in jQuery v1.2.6 - tbodyIndex = $tbodies - .index( $.fn.closest ? $cell.closest( 'tbody' ) : $cell.parents( 'tbody' ).filter( ':first' ) ), - tbcache = c.cache[ tbodyIndex ], - $row = $.fn.closest ? $cell.closest( 'tr' ) : $cell.parents( 'tr' ).filter( ':first' ); - cell = $cell[ 0 ]; // in case cell is a jQuery object - // tbody may not exist if update is initialized while tbody is removed for processing - if ( $tbodies.length && tbodyIndex >= 0 ) { - row = $tbodies.eq( tbodyIndex ).find( 'tr' ).index( $row ); - cache = tbcache.normalized[ row ]; - len = $row[ 0 ].cells.length; - if ( len !== c.columns ) { - // colspan in here somewhere! - icell = 0; - tmp = false; - for ( indx = 0; indx < len; indx++ ) { - if ( !tmp && $row[ 0 ].cells[ indx ] !== cell ) { - icell += $row[ 0 ].cells[ indx ].colSpan; - } else { - tmp = true; - } - } - } else { - icell = $cell.index(); - } - tmp = ts.getElementText( c, cell, icell ); // raw - cache[ c.columns ].raw[ icell ] = tmp; - tmp = ts.getParsedText( c, cell, icell, tmp ); - cache[ icell ] = tmp; // parsed - cache[ c.columns ].$row = $row; - if ( ( c.parsers[ icell ].type || '' ).toLowerCase() === 'numeric' ) { - // update column max value (ignore sign) - tbcache.colMax[ icell ] = Math.max( Math.abs( tmp ) || 0, tbcache.colMax[ icell ] || 0 ); - } - tmp = resort !== 'undefined' ? resort : c.resort; - if ( tmp !== false ) { - // widgets will be reapplied - ts.checkResort( c, tmp, callback ); - } else { - // don't reapply widgets is resort is false, just in case it causes - // problems with element focus - ts.resortComplete( c, callback ); - } - } - }, - - addRows : function( c, $row, resort, callback ) { - var txt, val, tbodyIndex, rowIndex, rows, cellIndex, len, - cacheIndex, rowData, cells, cell, span, - // allow passing a row string if only one non-info tbody exists in the table - valid = typeof $row === 'string' && c.$tbodies.length === 1 && / 0 ) { - cacheIndex += span; - } - cacheIndex++; - } - // add the row data to the end - cells[ c.columns ] = rowData; - // update cache - c.cache[ tbodyIndex ].normalized.push( cells ); - } - // resort using current settings - ts.checkResort( c, resort, callback ); - } - }, - - updateCache : function( c, callback, $tbodies ) { - // rebuild parsers - if ( !( c.parsers && c.parsers.length ) ) { - ts.setupParsers( c, $tbodies ); - } - // rebuild the cache map - ts.buildCache( c, callback, $tbodies ); - }, - - // init flag (true) used by pager plugin to prevent widget application - // renamed from appendToTable - appendCache : function( c, init ) { - var parsed, totalRows, $tbody, $curTbody, rowIndex, tbodyIndex, appendTime, - table = c.table, - wo = c.widgetOptions, - $tbodies = c.$tbodies, - rows = [], - cache = c.cache; - // empty table - fixes #206/#346 - if ( ts.isEmptyObject( cache ) ) { - // run pager appender in case the table was just emptied - return c.appender ? c.appender( table, rows ) : - table.isUpdating ? c.$table.trigger( 'updateComplete', table ) : ''; // Fixes #532 - } - if ( c.debug ) { - appendTime = new Date(); - } - for ( tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { - $tbody = $tbodies.eq( tbodyIndex ); - if ( $tbody.length ) { - // detach tbody for manipulation - $curTbody = ts.processTbody( table, $tbody, true ); - parsed = cache[ tbodyIndex ].normalized; - totalRows = parsed.length; - for ( rowIndex = 0; rowIndex < totalRows; rowIndex++ ) { - rows.push( parsed[ rowIndex ][ c.columns ].$row ); - // removeRows used by the pager plugin; don't render if using ajax - fixes #411 - if ( !c.appender || ( c.pager && ( !c.pager.removeRows || !wo.pager_removeRows ) && !c.pager.ajax ) ) { - $curTbody.append( parsed[ rowIndex ][ c.columns ].$row ); - } - } - // restore tbody - ts.processTbody( table, $curTbody, false ); - } - } - if ( c.appender ) { - c.appender( table, rows ); - } - if ( c.debug ) { - console.log( 'Rebuilt table' + ts.benchmark( appendTime ) ); - } - // apply table widgets; but not before ajax completes - if ( !init && !c.appender ) { - ts.applyWidget( table ); - } - if ( table.isUpdating ) { - c.$table.trigger( 'updateComplete', table ); - } - }, - - commonUpdate : function( c, resort, callback ) { - // remove rows/elements before update - c.$table.find( c.selectorRemove ).remove(); - // rebuild parsers - ts.setupParsers( c ); - // rebuild the cache map - ts.buildCache( c ); - ts.checkResort( c, resort, callback ); - }, - - /* - ▄█████ ▄████▄ █████▄ ██████ ██ █████▄ ▄████▄ - ▀█▄ ██ ██ ██▄▄██ ██ ██ ██ ██ ██ ▄▄▄ - ▀█▄ ██ ██ ██▀██ ██ ██ ██ ██ ██ ▀██ - █████▀ ▀████▀ ██ ██ ██ ██ ██ ██ ▀████▀ - */ - initSort : function( c, cell, event ) { - if ( c.table.isUpdating ) { - // let any updates complete before initializing a sort - return setTimeout( function(){ - ts.initSort( c, cell, event ); - }, 50 ); - } - var arry, indx, headerIndx, dir, temp, tmp, $header, - notMultiSort = !event[ c.sortMultiSortKey ], - table = c.table, - len = c.$headers.length, - // get current column index - col = parseInt( $( cell ).attr( 'data-column' ), 10 ), - order = c.sortVars[ col ].order; - - // Only call sortStart if sorting is enabled - c.$table.trigger( 'sortStart', table ); - // get current column sort order - c.sortVars[ col ].count = - event[ c.sortResetKey ] ? 2 : ( c.sortVars[ col ].count + 1 ) % ( c.sortReset ? 3 : 2 ); - // reset all sorts on non-current column - issue #30 - if ( c.sortRestart ) { - for ( headerIndx = 0; headerIndx < len; headerIndx++ ) { - $header = c.$headers.eq( headerIndx ); - tmp = parseInt( $header.attr( 'data-column' ), 10 ); - // only reset counts on columns that weren't just clicked on and if not included in a multisort - if ( col !== tmp && ( notMultiSort || $header.hasClass( ts.css.sortNone ) ) ) { - c.sortVars[ tmp ].count = -1; - } - } - } - // user only wants to sort on one column - if ( notMultiSort ) { - // flush the sort list - c.sortList = []; - c.last.sortList = []; - if ( c.sortForce !== null ) { - arry = c.sortForce; - for ( indx = 0; indx < arry.length; indx++ ) { - if ( arry[ indx ][ 0 ] !== col ) { - c.sortList.push( arry[ indx ] ); - } - } - } - // add column to sort list - dir = order[ c.sortVars[ col ].count ]; - if ( dir < 2 ) { - c.sortList.push( [ col, dir ] ); - // add other columns if header spans across multiple - if ( cell.colSpan > 1 ) { - for ( indx = 1; indx < cell.colSpan; indx++ ) { - c.sortList.push( [ col + indx, dir ] ); - // update count on columns in colSpan - c.sortVars[ col + indx ].count = $.inArray( dir, order ); - } - } - } - // multi column sorting - } else { - // get rid of the sortAppend before adding more - fixes issue #115 & #523 - c.sortList = $.extend( [], c.last.sortList ); - - // the user has clicked on an already sorted column - if ( ts.isValueInArray( col, c.sortList ) >= 0 ) { - // reverse the sorting direction - for ( indx = 0; indx < c.sortList.length; indx++ ) { - tmp = c.sortList[ indx ]; - if ( tmp[ 0 ] === col ) { - // order.count seems to be incorrect when compared to cell.count - tmp[ 1 ] = order[ c.sortVars[ col ].count ]; - if ( tmp[1] === 2 ) { - c.sortList.splice( indx, 1 ); - c.sortVars[ col ].count = -1; - } - } - } - } else { - // add column to sort list array - dir = order[ c.sortVars[ col ].count ]; - if ( dir < 2 ) { - c.sortList.push( [ col, dir ] ); - // add other columns if header spans across multiple - if ( cell.colSpan > 1 ) { - for ( indx = 1; indx < cell.colSpan; indx++ ) { - c.sortList.push( [ col + indx, dir ] ); - // update count on columns in colSpan - c.sortVars[ col + indx ].count = $.inArray( dir, order ); - } - } - } - } - } - // save sort before applying sortAppend - c.last.sortList = $.extend( [], c.sortList ); - if ( c.sortList.length && c.sortAppend ) { - arry = $.isArray( c.sortAppend ) ? c.sortAppend : c.sortAppend[ c.sortList[ 0 ][ 0 ] ]; - if ( !ts.isEmptyObject( arry ) ) { - for ( indx = 0; indx < arry.length; indx++ ) { - if ( arry[ indx ][ 0 ] !== col && ts.isValueInArray( arry[ indx ][ 0 ], c.sortList ) < 0 ) { - dir = arry[ indx ][ 1 ]; - temp = ( '' + dir ).match( /^(a|d|s|o|n)/ ); - if ( temp ) { - tmp = c.sortList[ 0 ][ 1 ]; - switch ( temp[ 0 ] ) { - case 'd' : - dir = 1; - break; - case 's' : - dir = tmp; - break; - case 'o' : - dir = tmp === 0 ? 1 : 0; - break; - case 'n' : - dir = ( tmp + 1 ) % ( c.sortReset ? 3 : 2 ); - break; - default: - dir = 0; - break; - } - } - c.sortList.push( [ arry[ indx ][ 0 ], dir ] ); - } - } - } - } - // sortBegin event triggered immediately before the sort - c.$table.trigger( 'sortBegin', table ); - // setTimeout needed so the processing icon shows up - setTimeout( function() { - // set css for headers - ts.setHeadersCss( c ); - ts.multisort( c ); - ts.appendCache( c ); - c.$table.trigger( 'sortEnd', table ); - }, 1 ); - }, - - // sort multiple columns - multisort : function( c ) { /*jshint loopfunc:true */ - var tbodyIndex, sortTime, colMax, rows, - table = c.table, - dir = 0, - textSorter = c.textSorter || '', - sortList = c.sortList, - sortLen = sortList.length, - len = c.$tbodies.length; - if ( c.serverSideSorting || ts.isEmptyObject( c.cache ) ) { - // empty table - fixes #206/#346 - return; - } - if ( c.debug ) { sortTime = new Date(); } - for ( tbodyIndex = 0; tbodyIndex < len; tbodyIndex++ ) { - colMax = c.cache[ tbodyIndex ].colMax; - rows = c.cache[ tbodyIndex ].normalized; - - rows.sort( function( a, b ) { - var sortIndex, num, col, order, sort, x, y; - // rows is undefined here in IE, so don't use it! - for ( sortIndex = 0; sortIndex < sortLen; sortIndex++ ) { - col = sortList[ sortIndex ][ 0 ]; - order = sortList[ sortIndex ][ 1 ]; - // sort direction, true = asc, false = desc - dir = order === 0; - - if ( c.sortStable && a[ col ] === b[ col ] && sortLen === 1 ) { - return a[ c.columns ].order - b[ c.columns ].order; - } - - // fallback to natural sort since it is more robust - num = /n/i.test( ts.getSortType( c.parsers, col ) ); - if ( num && c.strings[ col ] ) { - // sort strings in numerical columns - if ( typeof ( ts.string[ c.strings[ col ] ] ) === 'boolean' ) { - num = ( dir ? 1 : -1 ) * ( ts.string[ c.strings[ col ] ] ? -1 : 1 ); - } else { - num = ( c.strings[ col ] ) ? ts.string[ c.strings[ col ] ] || 0 : 0; - } - // fall back to built-in numeric sort - // var sort = $.tablesorter['sort' + s]( a[col], b[col], dir, colMax[col], table ); - sort = c.numberSorter ? c.numberSorter( a[ col ], b[ col ], dir, colMax[ col ], table ) : - ts[ 'sortNumeric' + ( dir ? 'Asc' : 'Desc' ) ]( a[ col ], b[ col ], num, colMax[ col ], col, c ); - } else { - // set a & b depending on sort direction - x = dir ? a : b; - y = dir ? b : a; - // text sort function - if ( typeof textSorter === 'function' ) { - // custom OVERALL text sorter - sort = textSorter( x[ col ], y[ col ], dir, col, table ); - } else if ( typeof textSorter === 'object' && textSorter.hasOwnProperty( col ) ) { - // custom text sorter for a SPECIFIC COLUMN - sort = textSorter[ col ]( x[ col ], y[ col ], dir, col, table ); - } else { - // fall back to natural sort - sort = ts[ 'sortNatural' + ( dir ? 'Asc' : 'Desc' ) ]( a[ col ], b[ col ], col, c ); - } - } - if ( sort ) { return sort; } - } - return a[ c.columns ].order - b[ c.columns ].order; - }); - } - if ( c.debug ) { - console.log( 'Applying sort ' + sortList.toString() + ts.benchmark( sortTime ) ); - } - }, - - resortComplete : function( c, callback ) { - if ( c.table.isUpdating ) { - c.$table.trigger( 'updateComplete', c.table ); - } - if ( $.isFunction( callback ) ) { - callback( c.table ); - } - }, - - checkResort : function( c, resort, callback ) { - var sortList = $.isArray( resort ) ? resort : c.sortList, - // if no resort parameter is passed, fallback to config.resort (true by default) - resrt = typeof resort === 'undefined' ? c.resort : resort; - // don't try to resort if the table is still processing - // this will catch spamming of the updateCell method - if ( resrt !== false && !c.serverSideSorting && !c.table.isProcessing ) { - if ( sortList.length ) { - ts.sortOn( c, sortList, function() { - ts.resortComplete( c, callback ); - }, true ); - } else { - ts.sortReset( c, function() { - ts.resortComplete( c, callback ); - ts.applyWidget( c.table, false ); - } ); - } - } else { - ts.resortComplete( c, callback ); - ts.applyWidget( c.table, false ); - } - }, - - sortOn : function( c, list, callback, init ) { - var table = c.table; - c.$table.trigger( 'sortStart', table ); - // update header count index - ts.updateHeaderSortCount( c, list ); - // set css for headers - ts.setHeadersCss( c ); - // fixes #346 - if ( c.delayInit && ts.isEmptyObject( c.cache ) ) { - ts.buildCache( c ); - } - c.$table.trigger( 'sortBegin', table ); - // sort the table and append it to the dom - ts.multisort( c ); - ts.appendCache( c, init ); - c.$table.trigger( 'sortEnd', table ); - ts.applyWidget( table ); - if ( $.isFunction( callback ) ) { - callback( table ); - } - }, - - sortReset : function( c, callback ) { - c.sortList = []; - ts.setHeadersCss( c ); - ts.multisort( c ); - ts.appendCache( c ); - if ( $.isFunction( callback ) ) { - callback( c.table ); - } - }, - - getSortType : function( parsers, column ) { - return ( parsers && parsers[ column ] ) ? parsers[ column ].type || '' : ''; - }, - - formatSortingOrder : function( val ) { - // look for 'd' in 'desc' order; return true - return ( /^d/i.test( val ) || val === 1 ); - }, - - // Natural sort - https://github.com/overset/javascript-natural-sort (date sorting removed) - // this function will only accept strings, or you'll see 'TypeError: undefined is not a function' - // I could add a = a.toString(); b = b.toString(); but it'll slow down the sort overall - sortNatural : function( a, b ) { - if ( a === b ) { return 0; } - var aNum, bNum, aFloat, bFloat, indx, max, - regex = ts.regex; - // first try and sort Hex codes - if ( regex.hex.test( b ) ) { - aNum = parseInt( a.match( regex.hex ), 16 ); - bNum = parseInt( b.match( regex.hex ), 16 ); - if ( aNum < bNum ) { return -1; } - if ( aNum > bNum ) { return 1; } - } - // chunk/tokenize - aNum = a.replace( regex.chunk, '\\0$1\\0' ).replace( regex.chunks, '' ).split( '\\0' ); - bNum = b.replace( regex.chunk, '\\0$1\\0' ).replace( regex.chunks, '' ).split( '\\0' ); - max = Math.max( aNum.length, bNum.length ); - // natural sorting through split numeric strings and default strings - for ( indx = 0; indx < max; indx++ ) { - // find floats not starting with '0', string or 0 if not defined - aFloat = isNaN( aNum[ indx ] ) ? aNum[ indx ] || 0 : parseFloat( aNum[ indx ] ) || 0; - bFloat = isNaN( bNum[ indx ] ) ? bNum[ indx ] || 0 : parseFloat( bNum[ indx ] ) || 0; - // handle numeric vs string comparison - number < string - (Kyle Adams) - if ( isNaN( aFloat ) !== isNaN( bFloat ) ) { return isNaN( aFloat ) ? 1 : -1; } - // rely on string comparison if different types - i.e. '02' < 2 != '02' < '2' - if ( typeof aFloat !== typeof bFloat ) { - aFloat += ''; - bFloat += ''; - } - if ( aFloat < bFloat ) { return -1; } - if ( aFloat > bFloat ) { return 1; } - } - return 0; - }, - - sortNaturalAsc : function( a, b, col, c ) { - if ( a === b ) { return 0; } - var empty = ts.string[ ( c.empties[ col ] || c.emptyTo ) ]; - if ( a === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? -1 : 1 ) : -empty || -1; } - if ( b === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? 1 : -1 ) : empty || 1; } - return ts.sortNatural( a, b ); - }, - - sortNaturalDesc : function( a, b, col, c ) { - if ( a === b ) { return 0; } - var empty = ts.string[ ( c.empties[ col ] || c.emptyTo ) ]; - if ( a === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? -1 : 1 ) : empty || 1; } - if ( b === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? 1 : -1 ) : -empty || -1; } - return ts.sortNatural( b, a ); - }, - - // basic alphabetical sort - sortText : function( a, b ) { - return a > b ? 1 : ( a < b ? -1 : 0 ); - }, - - // return text string value by adding up ascii value - // so the text is somewhat sorted when using a digital sort - // this is NOT an alphanumeric sort - getTextValue : function( val, num, max ) { - if ( max ) { - // make sure the text value is greater than the max numerical value (max) - var indx, - len = val ? val.length : 0, - n = max + num; - for ( indx = 0; indx < len; indx++ ) { - n += val.charCodeAt( indx ); - } - return num * n; - } - return 0; - }, - - sortNumericAsc : function( a, b, num, max, col, c ) { - if ( a === b ) { return 0; } - var empty = ts.string[ ( c.empties[ col ] || c.emptyTo ) ]; - if ( a === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? -1 : 1 ) : -empty || -1; } - if ( b === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? 1 : -1 ) : empty || 1; } - if ( isNaN( a ) ) { a = ts.getTextValue( a, num, max ); } - if ( isNaN( b ) ) { b = ts.getTextValue( b, num, max ); } - return a - b; - }, - - sortNumericDesc : function( a, b, num, max, col, c ) { - if ( a === b ) { return 0; } - var empty = ts.string[ ( c.empties[ col ] || c.emptyTo ) ]; - if ( a === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? -1 : 1 ) : empty || 1; } - if ( b === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? 1 : -1 ) : -empty || -1; } - if ( isNaN( a ) ) { a = ts.getTextValue( a, num, max ); } - if ( isNaN( b ) ) { b = ts.getTextValue( b, num, max ); } - return b - a; - }, - - sortNumeric : function( a, b ) { - return a - b; - }, - - /* - ██ ██ ██ ██ █████▄ ▄████▄ ██████ ██████ ▄█████ - ██ ██ ██ ██ ██ ██ ██ ▄▄▄ ██▄▄ ██ ▀█▄ - ██ ██ ██ ██ ██ ██ ██ ▀██ ██▀▀ ██ ▀█▄ - ███████▀ ██ █████▀ ▀████▀ ██████ ██ █████▀ - */ - addWidget : function( widget ) { - ts.widgets.push( widget ); - }, - - hasWidget : function( $table, name ) { - $table = $( $table ); - return $table.length && $table[ 0 ].config && $table[ 0 ].config.widgetInit[ name ] || false; - }, - - getWidgetById : function( name ) { - var indx, widget, - len = ts.widgets.length; - for ( indx = 0; indx < len; indx++ ) { - widget = ts.widgets[ indx ]; - if ( widget && widget.id && widget.id.toLowerCase() === name.toLowerCase() ) { - return widget; - } - } - }, - - applyWidgetOptions : function( table ) { - var indx, widget, - c = table.config, - len = c.widgets.length; - if ( len ) { - for ( indx = 0; indx < len; indx++ ) { - widget = ts.getWidgetById( c.widgets[ indx ] ); - if ( widget && widget.options ) { - c.widgetOptions = $.extend( true, {}, widget.options, c.widgetOptions ); - } - } - } - }, - - addWidgetFromClass : function( table ) { - var len, indx, - c = table.config, - // look for widgets to apply from table class - // stop using \b otherwise this matches 'ui-widget-content' & adds 'content' widget - regex = '\\s' + c.widgetClass.replace( ts.regex.templateName, '([\\w-]+)' ) + '\\s', - widgetClass = new RegExp( regex, 'g' ), - // extract out the widget id from the table class (widget id's can include dashes) - widget = ( ' ' + c.table.className + ' ' ).match( widgetClass ); - if ( widget ) { - len = widget.length; - for ( indx = 0; indx < len; indx++ ) { - c.widgets.push( widget[ indx ].replace( widgetClass, '$1' ) ); - } - } - }, - - applyWidget : function( table, init, callback ) { - table = $( table )[ 0 ]; // in case this is called externally - var indx, len, names, widget, name, applied, time, time2, - c = table.config, - widgets = []; - // prevent numerous consecutive widget applications - if ( init !== false && table.hasInitialized && ( table.isApplyingWidgets || table.isUpdating ) ) { - return; - } - if ( c.debug ) { time = new Date(); } - ts.addWidgetFromClass( table ); - // prevent "tablesorter-ready" from firing multiple times in a row - clearTimeout( c.timerReady ); - if ( c.widgets.length ) { - table.isApplyingWidgets = true; - // ensure unique widget ids - c.widgets = $.grep( c.widgets, function( val, index ) { - return $.inArray( val, c.widgets ) === index; - }); - names = c.widgets || []; - len = names.length; - // build widget array & add priority as needed - for ( indx = 0; indx < len; indx++ ) { - widget = ts.getWidgetById( names[ indx ] ); - if ( widget && widget.id ) { - // set priority to 10 if not defined - if ( !widget.priority ) { widget.priority = 10; } - widgets[ indx ] = widget; - } - } - // sort widgets by priority - widgets.sort( function( a, b ) { - return a.priority < b.priority ? -1 : a.priority === b.priority ? 0 : 1; - }); - // add/update selected widgets - len = widgets.length; - if ( c.debug ) { - console[ console.group ? 'group' : 'log' ]( 'Start ' + ( init ? 'initializing' : 'applying' ) + ' widgets' ); - } - for ( indx = 0; indx < len; indx++ ) { - widget = widgets[ indx ]; - if ( widget ) { - name = widget.id; - applied = false; - if ( c.debug ) { time2 = new Date(); } - - if ( init || !( c.widgetInit[ name ] ) ) { - // set init flag first to prevent calling init more than once (e.g. pager) - c.widgetInit[ name ] = true; - if ( table.hasInitialized ) { - // don't reapply widget options on tablesorter init - ts.applyWidgetOptions( table ); - } - if ( typeof widget.init === 'function' ) { - applied = true; - if ( c.debug ) { - console[ console.group ? 'group' : 'log' ]( 'Initializing ' + name + ' widget' ); - } - widget.init( table, widget, table.config, table.config.widgetOptions ); - } - } - if ( !init && typeof widget.format === 'function' ) { - applied = true; - if ( c.debug ) { - console[ console.group ? 'group' : 'log' ]( 'Updating ' + name + ' widget' ); - } - widget.format( table, table.config, table.config.widgetOptions, false ); - } - if ( c.debug ) { - if ( applied ) { - console.log( 'Completed ' + ( init ? 'initializing ' : 'applying ' ) + name + ' widget' + ts.benchmark( time2 ) ); - if ( console.groupEnd ) { console.groupEnd(); } - } - } - } - } - if ( c.debug && console.groupEnd ) { console.groupEnd(); } - // callback executed on init only - if ( !init && typeof callback === 'function' ) { - callback( table ); - } - } - c.timerReady = setTimeout( function() { - table.isApplyingWidgets = false; - $.data( table, 'lastWidgetApplication', new Date() ); - c.$table.trigger( 'tablesorter-ready' ); - }, 10 ); - if ( c.debug ) { - widget = c.widgets.length; - console.log( 'Completed ' + - ( init === true ? 'initializing ' : 'applying ' ) + widget + - ' widget' + ( widget !== 1 ? 's' : '' ) + ts.benchmark( time ) ); - } - }, - - removeWidget : function( table, name, refreshing ) { - table = $( table )[ 0 ]; - var index, widget, indx, len, - c = table.config; - // if name === true, add all widgets from $.tablesorter.widgets - if ( name === true ) { - name = []; - len = ts.widgets.length; - for ( indx = 0; indx < len; indx++ ) { - widget = ts.widgets[ indx ]; - if ( widget && widget.id ) { - name.push( widget.id ); - } - } - } else { - // name can be either an array of widgets names, - // or a space/comma separated list of widget names - name = ( $.isArray( name ) ? name.join( ',' ) : name || '' ).toLowerCase().split( /[\s,]+/ ); - } - len = name.length; - for ( index = 0; index < len; index++ ) { - widget = ts.getWidgetById( name[ index ] ); - indx = $.inArray( name[ index ], c.widgets ); - if ( widget && widget.remove ) { - if ( c.debug ) { - console.log( ( refreshing ? 'Refreshing' : 'Removing' ) + ' "' + name[ index ] + '" widget' ); - } - widget.remove( table, c, c.widgetOptions, refreshing ); - c.widgetInit[ name[ index ] ] = false; - } - // don't remove the widget from config.widget if refreshing - if ( indx >= 0 && refreshing !== true ) { - c.widgets.splice( indx, 1 ); - } - } - }, - - refreshWidgets : function( table, doAll, dontapply ) { - table = $( table )[ 0 ]; // see issue #243 - var indx, widget, - c = table.config, - curWidgets = c.widgets, - widgets = ts.widgets, - len = widgets.length, - list = [], - callback = function( table ) { - $( table ).trigger( 'refreshComplete' ); - }; - // remove widgets not defined in config.widgets, unless doAll is true - for ( indx = 0; indx < len; indx++ ) { - widget = widgets[ indx ]; - if ( widget && widget.id && ( doAll || $.inArray( widget.id, curWidgets ) < 0 ) ) { - list.push( widget.id ); - } - } - ts.removeWidget( table, list.join( ',' ), true ); - if ( dontapply !== true ) { - // call widget init if - ts.applyWidget( table, doAll || false, callback ); - if ( doAll ) { - // apply widget format - ts.applyWidget( table, false, callback ); - } - } else { - callback( table ); - } - }, - - /* - ██ ██ ██████ ██ ██ ██ ██████ ██ ██████ ▄█████ - ██ ██ ██ ██ ██ ██ ██ ██ ██▄▄ ▀█▄ - ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀█▄ - ▀████▀ ██ ██ ██████ ██ ██ ██ ██████ █████▀ - */ - benchmark : function( diff ) { - return ( ' ( ' + ( new Date().getTime() - diff.getTime() ) + 'ms )' ); - }, - // deprecated ts.log - log : function() { - console.log( arguments ); - }, - - // $.isEmptyObject from jQuery v1.4 - isEmptyObject : function( obj ) { - /*jshint forin: false */ - for ( var name in obj ) { - return false; - } - return true; - }, - - isValueInArray : function( column, arry ) { - var indx, - len = arry && arry.length || 0; - for ( indx = 0; indx < len; indx++ ) { - if ( arry[ indx ][ 0 ] === column ) { - return indx; - } - } - return -1; - }, - - formatFloat : function( str, table ) { - if ( typeof str !== 'string' || str === '' ) { return str; } - // allow using formatFloat without a table; defaults to US number format - var num, - usFormat = table && table.config ? table.config.usNumberFormat !== false : - typeof table !== 'undefined' ? table : true; - if ( usFormat ) { - // US Format - 1,234,567.89 -> 1234567.89 - str = str.replace( ts.regex.comma, '' ); - } else { - // German Format = 1.234.567,89 -> 1234567.89 - // French Format = 1 234 567,89 -> 1234567.89 - str = str.replace( ts.regex.digitNonUS, '' ).replace( ts.regex.comma, '.' ); - } - if ( ts.regex.digitNegativeTest.test( str ) ) { - // make (#) into a negative number -> (10) = -10 - str = str.replace( ts.regex.digitNegativeReplace, '-$1' ); - } - num = parseFloat( str ); - // return the text instead of zero - return isNaN( num ) ? $.trim( str ) : num; - }, - - isDigit : function( str ) { - // replace all unwanted chars and match - return isNaN( str ) ? - ts.regex.digitTest.test( str.toString().replace( ts.regex.digitReplace, '' ) ) : - str !== ''; - }, - - // computeTableHeaderCellIndexes from: - // http://www.javascripttoolbox.com/lib/table/examples.php - // http://www.javascripttoolbox.com/temp/table_cellindex.html - computeColumnIndex : function( $rows ) { - var i, j, k, l, $cell, cell, cells, rowIndex, cellId, rowSpan, colSpan, firstAvailCol, - matrix = [], - matrixrow = []; - for ( i = 0; i < $rows.length; i++ ) { - cells = $rows[ i ].cells; - for ( j = 0; j < cells.length; j++ ) { - cell = cells[ j ]; - $cell = $( cell ); - rowIndex = cell.parentNode.rowIndex; - cellId = rowIndex + '-' + $cell.index(); - rowSpan = cell.rowSpan || 1; - colSpan = cell.colSpan || 1; - if ( typeof matrix[ rowIndex ] === 'undefined' ) { - matrix[ rowIndex ] = []; - } - // Find first available column in the first row - for ( k = 0; k < matrix[ rowIndex ].length + 1; k++ ) { - if ( typeof matrix[ rowIndex ][ k ] === 'undefined' ) { - firstAvailCol = k; - break; - } - } - // add data-column (setAttribute = IE8+) - if ( cell.setAttribute ) { - cell.setAttribute( 'data-column', firstAvailCol ); - } else { - $cell.attr( 'data-column', firstAvailCol ); - } - for ( k = rowIndex; k < rowIndex + rowSpan; k++ ) { - if ( typeof matrix[ k ] === 'undefined' ) { - matrix[ k ] = []; - } - matrixrow = matrix[ k ]; - for ( l = firstAvailCol; l < firstAvailCol + colSpan; l++ ) { - matrixrow[ l ] = 'x'; - } - } - } - } - return matrixrow.length; - }, - - // automatically add a colgroup with col elements set to a percentage width - fixColumnWidth : function( table ) { - table = $( table )[ 0 ]; - var overallWidth, percent, $tbodies, len, index, - c = table.config, - $colgroup = c.$table.children( 'colgroup' ); - // remove plugin-added colgroup, in case we need to refresh the widths - if ( $colgroup.length && $colgroup.hasClass( ts.css.colgroup ) ) { - $colgroup.remove(); - } - if ( c.widthFixed && c.$table.children( 'colgroup' ).length === 0 ) { - $colgroup = $( '' ); - overallWidth = c.$table.width(); - // only add col for visible columns - fixes #371 - $tbodies = c.$tbodies.find( 'tr:first' ).children( ':visible' ); - len = $tbodies.length; - for ( index = 0; index < len; index++ ) { - percent = parseInt( ( $tbodies.eq( index ).width() / overallWidth ) * 1000, 10 ) / 10 + '%'; - $colgroup.append( $( '' ).css( 'width', percent ) ); - } - c.$table.prepend( $colgroup ); - } - }, - - // get sorter, string, empty, etc options for each column from - // jQuery data, metadata, header option or header class name ('sorter-false') - // priority = jQuery data > meta > headers option > header class name - getData : function( header, configHeader, key ) { - var meta, cl4ss, - val = '', - $header = $( header ); - if ( !$header.length ) { return ''; } - meta = $.metadata ? $header.metadata() : false; - cl4ss = ' ' + ( $header.attr( 'class' ) || '' ); - if ( typeof $header.data( key ) !== 'undefined' || - typeof $header.data( key.toLowerCase() ) !== 'undefined' ) { - // 'data-lockedOrder' is assigned to 'lockedorder'; but 'data-locked-order' is assigned to 'lockedOrder' - // 'data-sort-initial-order' is assigned to 'sortInitialOrder' - val += $header.data( key ) || $header.data( key.toLowerCase() ); - } else if ( meta && typeof meta[ key ] !== 'undefined' ) { - val += meta[ key ]; - } else if ( configHeader && typeof configHeader[ key ] !== 'undefined' ) { - val += configHeader[ key ]; - } else if ( cl4ss !== ' ' && cl4ss.match( ' ' + key + '-' ) ) { - // include sorter class name 'sorter-text', etc; now works with 'sorter-my-custom-parser' - val = cl4ss.match( new RegExp( '\\s' + key + '-([\\w-]+)' ) )[ 1 ] || ''; - } - return $.trim( val ); - }, - - getColumnData : function( table, obj, indx, getCell, $headers ) { - if ( typeof obj === 'undefined' || obj === null ) { return; } - table = $( table )[ 0 ]; - var $header, key, - c = table.config, - $cells = ( $headers || c.$headers ), - // c.$headerIndexed is not defined initially - $cell = c.$headerIndexed && c.$headerIndexed[ indx ] || - $cells.filter( '[data-column="' + indx + '"]:last' ); - if ( obj[ indx ] ) { - return getCell ? obj[ indx ] : obj[ $cells.index( $cell ) ]; - } - for ( key in obj ) { - if ( typeof key === 'string' ) { - $header = $cell - // header cell with class/id - .filter( key ) - // find elements within the header cell with cell/id - .add( $cell.find( key ) ); - if ( $header.length ) { - return obj[ key ]; - } - } - } - return; - }, - - // *** Process table *** - // add processing indicator - isProcessing : function( $table, toggle, $headers ) { - $table = $( $table ); - var c = $table[ 0 ].config, - // default to all headers - $header = $headers || $table.find( '.' + ts.css.header ); - if ( toggle ) { - // don't use sortList if custom $headers used - if ( typeof $headers !== 'undefined' && c.sortList.length > 0 ) { - // get headers from the sortList - $header = $header.filter( function() { - // get data-column from attr to keep compatibility with jQuery 1.2.6 - return this.sortDisabled ? - false : - ts.isValueInArray( parseFloat( $( this ).attr( 'data-column' ) ), c.sortList ) >= 0; - }); - } - $table.add( $header ).addClass( ts.css.processing + ' ' + c.cssProcessing ); - } else { - $table.add( $header ).removeClass( ts.css.processing + ' ' + c.cssProcessing ); - } - }, - - // detach tbody but save the position - // don't use tbody because there are portions that look for a tbody index (updateCell) - processTbody : function( table, $tb, getIt ) { - table = $( table )[ 0 ]; - if ( getIt ) { - table.isProcessing = true; - $tb.before( '' ); - return $.fn.detach ? $tb.detach() : $tb.remove(); - } - var holdr = $( table ).find( 'colgroup.tablesorter-savemyplace' ); - $tb.insertAfter( holdr ); - holdr.remove(); - table.isProcessing = false; - }, - - clearTableBody : function( table ) { - $( table )[ 0 ].config.$tbodies.children().detach(); - }, - - // used when replacing accented characters during sorting - characterEquivalents : { - 'a' : '\u00e1\u00e0\u00e2\u00e3\u00e4\u0105\u00e5', // áàâãäąå - 'A' : '\u00c1\u00c0\u00c2\u00c3\u00c4\u0104\u00c5', // ÁÀÂÃÄĄÅ - 'c' : '\u00e7\u0107\u010d', // çćč - 'C' : '\u00c7\u0106\u010c', // ÇĆČ - 'e' : '\u00e9\u00e8\u00ea\u00eb\u011b\u0119', // éèêëěę - 'E' : '\u00c9\u00c8\u00ca\u00cb\u011a\u0118', // ÉÈÊËĚĘ - 'i' : '\u00ed\u00ec\u0130\u00ee\u00ef\u0131', // íìİîïı - 'I' : '\u00cd\u00cc\u0130\u00ce\u00cf', // ÍÌİÎÏ - 'o' : '\u00f3\u00f2\u00f4\u00f5\u00f6\u014d', // óòôõöō - 'O' : '\u00d3\u00d2\u00d4\u00d5\u00d6\u014c', // ÓÒÔÕÖŌ - 'ss': '\u00df', // ß (s sharp) - 'SS': '\u1e9e', // ẞ (Capital sharp s) - 'u' : '\u00fa\u00f9\u00fb\u00fc\u016f', // úùûüů - 'U' : '\u00da\u00d9\u00db\u00dc\u016e' // ÚÙÛÜŮ - }, - - replaceAccents : function( str ) { - var chr, - acc = '[', - eq = ts.characterEquivalents; - if ( !ts.characterRegex ) { - ts.characterRegexArray = {}; - for ( chr in eq ) { - if ( typeof chr === 'string' ) { - acc += eq[ chr ]; - ts.characterRegexArray[ chr ] = new RegExp( '[' + eq[ chr ] + ']', 'g' ); - } - } - ts.characterRegex = new RegExp( acc + ']' ); - } - if ( ts.characterRegex.test( str ) ) { - for ( chr in eq ) { - if ( typeof chr === 'string' ) { - str = str.replace( ts.characterRegexArray[ chr ], chr ); - } - } - } - return str; - }, - - // restore headers - restoreHeaders : function( table ) { - var index, $cell, - c = $( table )[ 0 ].config, - $headers = c.$table.find( c.selectorHeaders ), - len = $headers.length; - // don't use c.$headers here in case header cells were swapped - for ( index = 0; index < len; index++ ) { - $cell = $headers.eq( index ); - // only restore header cells if it is wrapped - // because this is also used by the updateAll method - if ( $cell.find( '.' + ts.css.headerIn ).length ) { - $cell.html( c.headerContent[ index ] ); - } - } - }, - - destroy : function( table, removeClasses, callback ) { - table = $( table )[ 0 ]; - if ( !table.hasInitialized ) { return; } - // remove all widgets - ts.removeWidget( table, true, false ); - var events, - $t = $( table ), - c = table.config, - debug = c.debug, - $h = $t.find( 'thead:first' ), - $r = $h.find( 'tr.' + ts.css.headerRow ).removeClass( ts.css.headerRow + ' ' + c.cssHeaderRow ), - $f = $t.find( 'tfoot:first > tr' ).children( 'th, td' ); - if ( removeClasses === false && $.inArray( 'uitheme', c.widgets ) >= 0 ) { - // reapply uitheme classes, in case we want to maintain appearance - $t.trigger( 'applyWidgetId', [ 'uitheme' ] ); - $t.trigger( 'applyWidgetId', [ 'zebra' ] ); - } - // remove widget added rows, just in case - $h.find( 'tr' ).not( $r ).remove(); - // disable tablesorter - events = 'sortReset update updateRows updateAll updateHeaders updateCell addRows updateComplete sorton ' + - 'appendCache updateCache applyWidgetId applyWidgets refreshWidgets destroy mouseup mouseleave keypress ' + - 'sortBegin sortEnd resetToLoadState '.split( ' ' ) - .join( c.namespace + ' ' ); - $t - .removeData( 'tablesorter' ) - .unbind( events.replace( ts.regex.spaces, ' ' ) ); - c.$headers - .add( $f ) - .removeClass( [ ts.css.header, c.cssHeader, c.cssAsc, c.cssDesc, ts.css.sortAsc, ts.css.sortDesc, ts.css.sortNone ].join( ' ' ) ) - .removeAttr( 'data-column' ) - .removeAttr( 'aria-label' ) - .attr( 'aria-disabled', 'true' ); - $r - .find( c.selectorSort ) - .unbind( ( 'mousedown mouseup keypress '.split( ' ' ).join( c.namespace + ' ' ) ).replace( ts.regex.spaces, ' ' ) ); - ts.restoreHeaders( table ); - $t.toggleClass( ts.css.table + ' ' + c.tableClass + ' tablesorter-' + c.theme, removeClasses === false ); - // clear flag in case the plugin is initialized again - table.hasInitialized = false; - delete table.config.cache; - if ( typeof callback === 'function' ) { - callback( table ); - } - if ( debug ) { - console.log( 'tablesorter has been removed' ); - } - } - - }; - - $.fn.tablesorter = function( settings ) { - return this.each( function() { - var table = this, - // merge & extend config options - c = $.extend( true, {}, ts.defaults, settings, ts.instanceMethods ); - // save initial settings - c.originalSettings = settings; - // create a table from data (build table widget) - if ( !table.hasInitialized && ts.buildTable && this.nodeName !== 'TABLE' ) { - // return the table (in case the original target is the table's container) - ts.buildTable( table, c ); - } else { - ts.setup( table, c ); - } - }); - }; - - // set up debug logs - if ( !( window.console && window.console.log ) ) { - // access $.tablesorter.logs for browsers that don't have a console... - ts.logs = []; - /*jshint -W020 */ - console = {}; - console.log = console.warn = console.error = console.table = function() { - var arg = arguments.length > 1 ? arguments : arguments[0]; - ts.logs.push({ date: Date.now(), log: arg }); - }; - } - - // add default parsers - ts.addParser({ - id : 'no-parser', - is : function() { - return false; - }, - format : function() { - return ''; - }, - type : 'text' - }); - - ts.addParser({ - id : 'text', - is : function() { - return true; - }, - format : function( str, table ) { - var c = table.config; - if ( str ) { - str = $.trim( c.ignoreCase ? str.toLocaleLowerCase() : str ); - str = c.sortLocaleCompare ? ts.replaceAccents( str ) : str; - } - return str; - }, - type : 'text' - }); - - ts.regex.nondigit = /[^\w,. \-()]/g; - ts.addParser({ - id : 'digit', - is : function( str ) { - return ts.isDigit( str ); - }, - format : function( str, table ) { - var num = ts.formatFloat( ( str || '' ).replace( ts.regex.nondigit, '' ), table ); - return str && typeof num === 'number' ? num : - str ? $.trim( str && table.config.ignoreCase ? str.toLocaleLowerCase() : str ) : str; - }, - type : 'numeric' - }); - - ts.regex.currencyReplace = /[+\-,. ]/g; - ts.regex.currencyTest = /^\(?\d+[\u00a3$\u20ac\u00a4\u00a5\u00a2?.]|[\u00a3$\u20ac\u00a4\u00a5\u00a2?.]\d+\)?$/; - ts.addParser({ - id : 'currency', - is : function( str ) { - str = ( str || '' ).replace( ts.regex.currencyReplace, '' ); - // test for £$€¤¥¢ - return ts.regex.currencyTest.test( str ); - }, - format : function( str, table ) { - var num = ts.formatFloat( ( str || '' ).replace( ts.regex.nondigit, '' ), table ); - return str && typeof num === 'number' ? num : - str ? $.trim( str && table.config.ignoreCase ? str.toLocaleLowerCase() : str ) : str; - }, - type : 'numeric' - }); - - // too many protocols to add them all https://en.wikipedia.org/wiki/URI_scheme - // now, this regex can be updated before initialization - ts.regex.urlProtocolTest = /^(https?|ftp|file):\/\//; - ts.regex.urlProtocolReplace = /(https?|ftp|file):\/\//; - ts.addParser({ - id : 'url', - is : function( str ) { - return ts.regex.urlProtocolTest.test( str ); - }, - format : function( str ) { - return str ? $.trim( str.replace( ts.regex.urlProtocolReplace, '' ) ) : str; - }, - parsed : true, // filter widget flag - type : 'text' - }); - - ts.regex.dash = /-/g; - ts.regex.isoDate = /^\d{4}[\/\-]\d{1,2}[\/\-]\d{1,2}/; - ts.addParser({ - id : 'isoDate', - is : function( str ) { - return ts.regex.isoDate.test( str ); - }, - format : function( str, table ) { - var date = str ? new Date( str.replace( ts.regex.dash, '/' ) ) : str; - return date instanceof Date && isFinite( date ) ? date.getTime() : str; - }, - type : 'numeric' - }); - - ts.regex.percent = /%/g; - ts.regex.percentTest = /(\d\s*?%|%\s*?\d)/; - ts.addParser({ - id : 'percent', - is : function( str ) { - return ts.regex.percentTest.test( str ) && str.length < 15; - }, - format : function( str, table ) { - return str ? ts.formatFloat( str.replace( ts.regex.percent, '' ), table ) : str; - }, - type : 'numeric' - }); - - // added image parser to core v2.17.9 - ts.addParser({ - id : 'image', - is : function( str, table, node, $node ) { - return $node.find( 'img' ).length > 0; - }, - format : function( str, table, cell ) { - return $( cell ).find( 'img' ).attr( table.config.imgAttr || 'alt' ) || str; - }, - parsed : true, // filter widget flag - type : 'text' - }); - - ts.regex.dateReplace = /(\S)([AP]M)$/i; // used by usLongDate & time parser - ts.regex.usLongDateTest1 = /^[A-Z]{3,10}\.?\s+\d{1,2},?\s+(\d{4})(\s+\d{1,2}:\d{2}(:\d{2})?(\s+[AP]M)?)?$/i; - ts.regex.usLongDateTest2 = /^\d{1,2}\s+[A-Z]{3,10}\s+\d{4}/i; - ts.addParser({ - id : 'usLongDate', - is : function( str ) { - // two digit years are not allowed cross-browser - // Jan 01, 2013 12:34:56 PM or 01 Jan 2013 - return ts.regex.usLongDateTest1.test( str ) || ts.regex.usLongDateTest2.test( str ); - }, - format : function( str, table ) { - var date = str ? new Date( str.replace( ts.regex.dateReplace, '$1 $2' ) ) : str; - return date instanceof Date && isFinite( date ) ? date.getTime() : str; - }, - type : 'numeric' - }); - - // testing for ##-##-#### or ####-##-##, so it's not perfect; time can be included - ts.regex.shortDateTest = /(^\d{1,2}[\/\s]\d{1,2}[\/\s]\d{4})|(^\d{4}[\/\s]\d{1,2}[\/\s]\d{1,2})/; - // escaped "-" because JSHint in Firefox was showing it as an error - ts.regex.shortDateReplace = /[\-.,]/g; - // XXY covers MDY & DMY formats - ts.regex.shortDateXXY = /(\d{1,2})[\/\s](\d{1,2})[\/\s](\d{4})/; - ts.regex.shortDateYMD = /(\d{4})[\/\s](\d{1,2})[\/\s](\d{1,2})/; - ts.convertFormat = function( dateString, format ) { - dateString = ( dateString || '' ) - .replace( ts.regex.spaces, ' ' ) - .replace( ts.regex.shortDateReplace, '/' ); - if ( format === 'mmddyyyy' ) { - dateString = dateString.replace( ts.regex.shortDateXXY, '$3/$1/$2' ); - } else if ( format === 'ddmmyyyy' ) { - dateString = dateString.replace( ts.regex.shortDateXXY, '$3/$2/$1' ); - } else if ( format === 'yyyymmdd' ) { - dateString = dateString.replace( ts.regex.shortDateYMD, '$1/$2/$3' ); - } - var date = new Date( dateString ); - return date instanceof Date && isFinite( date ) ? date.getTime() : ''; - }; - - ts.addParser({ - id : 'shortDate', // 'mmddyyyy', 'ddmmyyyy' or 'yyyymmdd' - is : function( str ) { - str = ( str || '' ).replace( ts.regex.spaces, ' ' ).replace( ts.regex.shortDateReplace, '/' ); - return ts.regex.shortDateTest.test( str ); - }, - format : function( str, table, cell, cellIndex ) { - if ( str ) { - var c = table.config, - $header = c.$headerIndexed[ cellIndex ], - format = $header.length && $header.data( 'dateFormat' ) || - ts.getData( $header, ts.getColumnData( table, c.headers, cellIndex ), 'dateFormat' ) || - c.dateFormat; - // save format because getData can be slow... - if ( $header.length ) { - $header.data( 'dateFormat', format ); - } - return ts.convertFormat( str, format ) || str; - } - return str; - }, - type : 'numeric' - }); - - // match 24 hour time & 12 hours time + am/pm - see http://regexr.com/3c3tk - ts.regex.timeTest = /^([1-9]|1[0-2]):([0-5]\d)(\s[AP]M)|((?:[01]\d|[2][0-4]):[0-5]\d)$/i; - ts.regex.timeMatch = /([1-9]|1[0-2]):([0-5]\d)(\s[AP]M)|((?:[01]\d|[2][0-4]):[0-5]\d)/i; - ts.addParser({ - id : 'time', - is : function( str ) { - return ts.regex.timeTest.test( str ); - }, - format : function( str, table ) { - // isolate time... ignore month, day and year - var temp, - timePart = ( str || '' ).match( ts.regex.timeMatch ), - orig = new Date( str ), - // no time component? default to 00:00 by leaving it out, but only if str is defined - time = str && ( timePart !== null ? timePart[ 0 ] : '00:00 AM' ), - date = time ? new Date( '2000/01/01 ' + time.replace( ts.regex.dateReplace, '$1 $2' ) ) : time; - if ( date instanceof Date && isFinite( date ) ) { - temp = orig instanceof Date && isFinite( orig ) ? orig.getTime() : 0; - // if original string was a valid date, add it to the decimal so the column sorts in some kind of order - // luckily new Date() ignores the decimals - return temp ? parseFloat( date.getTime() + '.' + orig.getTime() ) : date.getTime(); - } - return str; - }, - type : 'numeric' - }); - - ts.addParser({ - id : 'metadata', - is : function() { - return false; - }, - format : function( str, table, cell ) { - var c = table.config, - p = ( !c.parserMetadataName ) ? 'sortValue' : c.parserMetadataName; - return $( cell ).metadata()[ p ]; - }, - type : 'numeric' - }); - - /* - ██████ ██████ █████▄ █████▄ ▄████▄ - ▄█▀ ██▄▄ ██▄▄██ ██▄▄██ ██▄▄██ - ▄█▀ ██▀▀ ██▀▀██ ██▀▀█ ██▀▀██ - ██████ ██████ █████▀ ██ ██ ██ ██ - */ - // add default widgets - ts.addWidget({ - id : 'zebra', - priority : 90, - format : function( table, c, wo ) { - var $visibleRows, $row, count, isEven, tbodyIndex, rowIndex, len, - child = new RegExp( c.cssChildRow, 'i' ), - $tbodies = c.$tbodies.add( $( c.namespace + '_extra_table' ).children( 'tbody:not(.' + c.cssInfoBlock + ')' ) ); - for ( tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { - // loop through the visible rows - count = 0; - $visibleRows = $tbodies.eq( tbodyIndex ).children( 'tr:visible' ).not( c.selectorRemove ); - len = $visibleRows.length; - for ( rowIndex = 0; rowIndex < len; rowIndex++ ) { - $row = $visibleRows.eq( rowIndex ); - // style child rows the same way the parent row was styled - if ( !child.test( $row[ 0 ].className ) ) { count++; } - isEven = ( count % 2 === 0 ); - $row - .removeClass( wo.zebra[ isEven ? 1 : 0 ] ) - .addClass( wo.zebra[ isEven ? 0 : 1 ] ); - } - } - }, - remove : function( table, c, wo, refreshing ) { - if ( refreshing ) { return; } - var tbodyIndex, $tbody, - $tbodies = c.$tbodies, - toRemove = ( wo.zebra || [ 'even', 'odd' ] ).join( ' ' ); - for ( tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ){ - $tbody = ts.processTbody( table, $tbodies.eq( tbodyIndex ), true ); // remove tbody - $tbody.children().removeClass( toRemove ); - ts.processTbody( table, $tbody, false ); // restore tbody - } - } - }); - -})( jQuery ); - -/*! Widget: storage - updated 3/26/2015 (v2.21.3) */ -/*global JSON:false */ -;(function ($, window, document) { - 'use strict'; - - var ts = $.tablesorter || {}; - // *** Store data in local storage, with a cookie fallback *** - /* IE7 needs JSON library for JSON.stringify - (http://caniuse.com/#search=json) - if you need it, then include https://github.com/douglascrockford/JSON-js - - $.parseJSON is not available is jQuery versions older than 1.4.1, using older - versions will only allow storing information for one page at a time - - // *** Save data (JSON format only) *** - // val must be valid JSON... use http://jsonlint.com/ to ensure it is valid - var val = { "mywidget" : "data1" }; // valid JSON uses double quotes - // $.tablesorter.storage(table, key, val); - $.tablesorter.storage(table, 'tablesorter-mywidget', val); - - // *** Get data: $.tablesorter.storage(table, key); *** - v = $.tablesorter.storage(table, 'tablesorter-mywidget'); - // val may be empty, so also check for your data - val = (v && v.hasOwnProperty('mywidget')) ? v.mywidget : ''; - alert(val); // 'data1' if saved, or '' if not - */ - ts.storage = function(table, key, value, options) { - table = $(table)[0]; - var cookieIndex, cookies, date, - hasStorage = false, - values = {}, - c = table.config, - wo = c && c.widgetOptions, - storageType = ( options && options.useSessionStorage ) || ( wo && wo.storage_useSessionStorage ) ? - 'sessionStorage' : 'localStorage', - $table = $(table), - // id from (1) options ID, (2) table 'data-table-group' attribute, (3) widgetOptions.storage_tableId, - // (4) table ID, then (5) table index - id = options && options.id || - $table.attr( options && options.group || wo && wo.storage_group || 'data-table-group') || - wo && wo.storage_tableId || table.id || $('.tablesorter').index( $table ), - // url from (1) options url, (2) table 'data-table-page' attribute, (3) widgetOptions.storage_fixedUrl, - // (4) table.config.fixedUrl (deprecated), then (5) window location path - url = options && options.url || - $table.attr(options && options.page || wo && wo.storage_page || 'data-table-page') || - wo && wo.storage_fixedUrl || c && c.fixedUrl || window.location.pathname; - // https://gist.github.com/paulirish/5558557 - if (storageType in window) { - try { - window[storageType].setItem('_tmptest', 'temp'); - hasStorage = true; - window[storageType].removeItem('_tmptest'); - } catch (error) { - if (c && c.debug) { - console.warn( storageType + ' is not supported in this browser' ); - } - } - } - // *** get value *** - if ($.parseJSON) { - if (hasStorage) { - values = $.parseJSON( window[storageType][key] || 'null' ) || {}; - } else { - // old browser, using cookies - cookies = document.cookie.split(/[;\s|=]/); - // add one to get from the key to the value - cookieIndex = $.inArray(key, cookies) + 1; - values = (cookieIndex !== 0) ? $.parseJSON(cookies[cookieIndex] || 'null') || {} : {}; - } - } - // allow value to be an empty string too - if ((value || value === '') && window.JSON && JSON.hasOwnProperty('stringify')) { - // add unique identifiers = url pathname > table ID/index on page > data - if (!values[url]) { - values[url] = {}; - } - values[url][id] = value; - // *** set value *** - if (hasStorage) { - window[storageType][key] = JSON.stringify(values); - } else { - date = new Date(); - date.setTime(date.getTime() + (31536e+6)); // 365 days - document.cookie = key + '=' + (JSON.stringify(values)).replace(/\"/g, '\"') + '; expires=' + date.toGMTString() + '; path=/'; - } - } else { - return values && values[url] ? values[url][id] : ''; - } - }; - -})(jQuery, window, document); - -/*! Widget: uitheme - updated 3/26/2015 (v2.21.3) */ -;(function ($) { - 'use strict'; - var ts = $.tablesorter || {}; - - ts.themes = { - 'bootstrap' : { - table : 'table table-bordered table-striped', - caption : 'caption', - // header class names - header : 'bootstrap-header', // give the header a gradient background (theme.bootstrap_2.css) - sortNone : '', - sortAsc : '', - sortDesc : '', - active : '', // applied when column is sorted - hover : '', // custom css required - a defined bootstrap style may not override other classes - // icon class names - icons : '', // add 'icon-white' to make them white; this icon class is added to the in the header - iconSortNone : 'bootstrap-icon-unsorted', // class name added to icon when column is not sorted - iconSortAsc : 'icon-chevron-up glyphicon glyphicon-chevron-up', // class name added to icon when column has ascending sort - iconSortDesc : 'icon-chevron-down glyphicon glyphicon-chevron-down', // class name added to icon when column has descending sort - filterRow : '', // filter row class - footerRow : '', - footerCells : '', - even : '', // even row zebra striping - odd : '' // odd row zebra striping - }, - 'jui' : { - table : 'ui-widget ui-widget-content ui-corner-all', // table classes - caption : 'ui-widget-content', - // header class names - header : 'ui-widget-header ui-corner-all ui-state-default', // header classes - sortNone : '', - sortAsc : '', - sortDesc : '', - active : 'ui-state-active', // applied when column is sorted - hover : 'ui-state-hover', // hover class - // icon class names - icons : 'ui-icon', // icon class added to the in the header - iconSortNone : 'ui-icon-carat-2-n-s', // class name added to icon when column is not sorted - iconSortAsc : 'ui-icon-carat-1-n', // class name added to icon when column has ascending sort - iconSortDesc : 'ui-icon-carat-1-s', // class name added to icon when column has descending sort - filterRow : '', - footerRow : '', - footerCells : '', - even : 'ui-widget-content', // even row zebra striping - odd : 'ui-state-default' // odd row zebra striping - } - }; - - $.extend(ts.css, { - wrapper : 'tablesorter-wrapper' // ui theme & resizable - }); - - ts.addWidget({ - id: 'uitheme', - priority: 10, - format: function(table, c, wo) { - var i, hdr, icon, time, $header, $icon, $tfoot, $h, oldtheme, oldremove, oldIconRmv, hasOldTheme, - themesAll = ts.themes, - $table = c.$table.add( $( c.namespace + '_extra_table' ) ), - $headers = c.$headers.add( $( c.namespace + '_extra_headers' ) ), - theme = c.theme || 'jui', - themes = themesAll[theme] || {}, - remove = $.trim( [ themes.sortNone, themes.sortDesc, themes.sortAsc, themes.active ].join( ' ' ) ), - iconRmv = $.trim( [ themes.iconSortNone, themes.iconSortDesc, themes.iconSortAsc ].join( ' ' ) ); - if (c.debug) { time = new Date(); } - // initialization code - run once - if (!$table.hasClass('tablesorter-' + theme) || c.theme !== c.appliedTheme || !wo.uitheme_applied) { - wo.uitheme_applied = true; - oldtheme = themesAll[c.appliedTheme] || {}; - hasOldTheme = !$.isEmptyObject(oldtheme); - oldremove = hasOldTheme ? [ oldtheme.sortNone, oldtheme.sortDesc, oldtheme.sortAsc, oldtheme.active ].join( ' ' ) : ''; - oldIconRmv = hasOldTheme ? [ oldtheme.iconSortNone, oldtheme.iconSortDesc, oldtheme.iconSortAsc ].join( ' ' ) : ''; - if (hasOldTheme) { - wo.zebra[0] = $.trim( ' ' + wo.zebra[0].replace(' ' + oldtheme.even, '') ); - wo.zebra[1] = $.trim( ' ' + wo.zebra[1].replace(' ' + oldtheme.odd, '') ); - c.$tbodies.children().removeClass( [ oldtheme.even, oldtheme.odd ].join(' ') ); - } - // update zebra stripes - if (themes.even) { wo.zebra[0] += ' ' + themes.even; } - if (themes.odd) { wo.zebra[1] += ' ' + themes.odd; } - // add caption style - $table.children('caption') - .removeClass(oldtheme.caption || '') - .addClass(themes.caption); - // add table/footer class names - $tfoot = $table - // remove other selected themes - .removeClass( (c.appliedTheme ? 'tablesorter-' + (c.appliedTheme || '') : '') + ' ' + (oldtheme.table || '') ) - .addClass('tablesorter-' + theme + ' ' + (themes.table || '')) // add theme widget class name - .children('tfoot'); - c.appliedTheme = c.theme; - - if ($tfoot.length) { - $tfoot - // if oldtheme.footerRow or oldtheme.footerCells are undefined, all class names are removed - .children('tr').removeClass(oldtheme.footerRow || '').addClass(themes.footerRow) - .children('th, td').removeClass(oldtheme.footerCells || '').addClass(themes.footerCells); - } - // update header classes - $headers - .removeClass( (hasOldTheme ? [ oldtheme.header, oldtheme.hover, oldremove ].join(' ') : '') || '' ) - .addClass(themes.header) - .not('.sorter-false') - .unbind('mouseenter.tsuitheme mouseleave.tsuitheme') - .bind('mouseenter.tsuitheme mouseleave.tsuitheme', function(event) { - // toggleClass with switch added in jQuery 1.3 - $(this)[ event.type === 'mouseenter' ? 'addClass' : 'removeClass' ](themes.hover || ''); - }); - - $headers.each(function(){ - var $this = $(this); - if (!$this.find('.' + ts.css.wrapper).length) { - // Firefox needs this inner div to position the icon & resizer correctly - $this.wrapInner('
                                                  '); - } - }); - if (c.cssIcon) { - // if c.cssIcon is '', then no is added to the header - $headers - .find('.' + ts.css.icon) - .removeClass(hasOldTheme ? [ oldtheme.icons, oldIconRmv ].join(' ') : '') - .addClass(themes.icons || ''); - } - if ($table.hasClass('hasFilters')) { - $table.children('thead').children('.' + ts.css.filterRow) - .removeClass(hasOldTheme ? oldtheme.filterRow || '' : '') - .addClass(themes.filterRow || ''); - } - } - for (i = 0; i < c.columns; i++) { - $header = c.$headers - .add($(c.namespace + '_extra_headers')) - .not('.sorter-false') - .filter('[data-column="' + i + '"]'); - $icon = (ts.css.icon) ? $header.find('.' + ts.css.icon) : $(); - $h = $headers.not('.sorter-false').filter('[data-column="' + i + '"]:last'); - if ($h.length) { - $header.removeClass(remove); - $icon.removeClass(iconRmv); - if ($h[0].sortDisabled) { - // no sort arrows for disabled columns! - $icon.removeClass(themes.icons || ''); - } else { - hdr = themes.sortNone; - icon = themes.iconSortNone; - if ($h.hasClass(ts.css.sortAsc)) { - hdr = [ themes.sortAsc, themes.active ].join(' '); - icon = themes.iconSortAsc; - } else if ($h.hasClass(ts.css.sortDesc)) { - hdr = [ themes.sortDesc, themes.active ].join(' '); - icon = themes.iconSortDesc; - } - $header.addClass(hdr); - $icon.addClass(icon || ''); - } - } - } - if (c.debug) { - console.log('Applying ' + theme + ' theme' + ts.benchmark(time)); - } - }, - remove: function(table, c, wo, refreshing) { - if (!wo.uitheme_applied) { return; } - var $table = c.$table, - theme = c.appliedTheme || 'jui', - themes = ts.themes[ theme ] || ts.themes.jui, - $headers = $table.children('thead').children(), - remove = themes.sortNone + ' ' + themes.sortDesc + ' ' + themes.sortAsc, - iconRmv = themes.iconSortNone + ' ' + themes.iconSortDesc + ' ' + themes.iconSortAsc; - $table.removeClass('tablesorter-' + theme + ' ' + themes.table); - wo.uitheme_applied = false; - if (refreshing) { return; } - $table.find(ts.css.header).removeClass(themes.header); - $headers - .unbind('mouseenter.tsuitheme mouseleave.tsuitheme') // remove hover - .removeClass(themes.hover + ' ' + remove + ' ' + themes.active) - .filter('.' + ts.css.filterRow) - .removeClass(themes.filterRow); - $headers.find('.' + ts.css.icon).removeClass(themes.icons + ' ' + iconRmv); - } - }); - -})(jQuery); - -/*! Widget: columns */ -;(function ($) { - 'use strict'; - var ts = $.tablesorter || {}; - - ts.addWidget({ - id: 'columns', - priority: 30, - options : { - columns : [ 'primary', 'secondary', 'tertiary' ] - }, - format: function(table, c, wo) { - var $tbody, tbodyIndex, $rows, rows, $row, $cells, remove, indx, - $table = c.$table, - $tbodies = c.$tbodies, - sortList = c.sortList, - len = sortList.length, - // removed c.widgetColumns support - css = wo && wo.columns || [ 'primary', 'secondary', 'tertiary' ], - last = css.length - 1; - remove = css.join(' '); - // check if there is a sort (on initialization there may not be one) - for (tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { - $tbody = ts.processTbody(table, $tbodies.eq(tbodyIndex), true); // detach tbody - $rows = $tbody.children('tr'); - // loop through the visible rows - $rows.each(function() { - $row = $(this); - if (this.style.display !== 'none') { - // remove all columns class names - $cells = $row.children().removeClass(remove); - // add appropriate column class names - if (sortList && sortList[0]) { - // primary sort column class - $cells.eq(sortList[0][0]).addClass(css[0]); - if (len > 1) { - for (indx = 1; indx < len; indx++) { - // secondary, tertiary, etc sort column classes - $cells.eq(sortList[indx][0]).addClass( css[indx] || css[last] ); - } - } - } - } - }); - ts.processTbody(table, $tbody, false); - } - // add classes to thead and tfoot - rows = wo.columns_thead !== false ? [ 'thead tr' ] : []; - if (wo.columns_tfoot !== false) { - rows.push('tfoot tr'); - } - if (rows.length) { - $rows = $table.find( rows.join(',') ).children().removeClass(remove); - if (len) { - for (indx = 0; indx < len; indx++) { - // add primary. secondary, tertiary, etc sort column classes - $rows.filter('[data-column="' + sortList[indx][0] + '"]').addClass(css[indx] || css[last]); - } - } - } - }, - remove: function(table, c, wo) { - var tbodyIndex, $tbody, - $tbodies = c.$tbodies, - remove = (wo.columns || [ 'primary', 'secondary', 'tertiary' ]).join(' '); - c.$headers.removeClass(remove); - c.$table.children('tfoot').children('tr').children('th, td').removeClass(remove); - for (tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { - $tbody = ts.processTbody(table, $tbodies.eq(tbodyIndex), true); // remove tbody - $tbody.children('tr').each(function() { - $(this).children().removeClass(remove); - }); - ts.processTbody(table, $tbody, false); // restore tbody - } - } - }); - -})(jQuery); - -/*! Widget: filter - updated 11/10/2015 (v2.24.4) *//* - * Requires tablesorter v2.8+ and jQuery 1.7+ - * by Rob Garrison - */ -;( function ( $ ) { - 'use strict'; - var tsf, tsfRegex, - ts = $.tablesorter || {}, - tscss = ts.css; - - $.extend( tscss, { - filterRow : 'tablesorter-filter-row', - filter : 'tablesorter-filter', - filterDisabled : 'disabled', - filterRowHide : 'hideme' - }); - - ts.addWidget({ - id: 'filter', - priority: 50, - options : { - filter_childRows : false, // if true, filter includes child row content in the search - filter_childByColumn : false, // ( filter_childRows must be true ) if true = search child rows by column; false = search all child row text grouped - filter_childWithSibs : true, // if true, include matching child row siblings - filter_columnFilters : true, // if true, a filter will be added to the top of each table column - filter_columnAnyMatch: true, // if true, allows using '#:{query}' in AnyMatch searches ( column:query ) - filter_cellFilter : '', // css class name added to the filter cell ( string or array ) - filter_cssFilter : '', // css class name added to the filter row & each input in the row ( tablesorter-filter is ALWAYS added ) - filter_defaultFilter : {}, // add a default column filter type '~{query}' to make fuzzy searches default; '{q1} AND {q2}' to make all searches use a logical AND. - filter_excludeFilter : {}, // filters to exclude, per column - filter_external : '', // jQuery selector string ( or jQuery object ) of external filters - filter_filteredRow : 'filtered', // class added to filtered rows; needed by pager plugin - filter_formatter : null, // add custom filter elements to the filter row - filter_functions : null, // add custom filter functions using this option - filter_hideEmpty : true, // hide filter row when table is empty - filter_hideFilters : false, // collapse filter row when mouse leaves the area - filter_ignoreCase : true, // if true, make all searches case-insensitive - filter_liveSearch : true, // if true, search column content while the user types ( with a delay ) - filter_onlyAvail : 'filter-onlyAvail', // a header with a select dropdown & this class name will only show available ( visible ) options within the drop down - filter_placeholder : { search : '', select : '' }, // default placeholder text ( overridden by any header 'data-placeholder' setting ) - filter_reset : null, // jQuery selector string of an element used to reset the filters - filter_saveFilters : false, // Use the $.tablesorter.storage utility to save the most recent filters - filter_searchDelay : 300, // typing delay in milliseconds before starting a search - filter_searchFiltered: true, // allow searching through already filtered rows in special circumstances; will speed up searching in large tables if true - filter_selectSource : null, // include a function to return an array of values to be added to the column filter select - filter_startsWith : false, // if true, filter start from the beginning of the cell contents - filter_useParsedData : false, // filter all data using parsed content - filter_serversideFiltering : false, // if true, must perform server-side filtering b/c client-side filtering is disabled, but the ui and events will still be used. - filter_defaultAttrib : 'data-value', // data attribute in the header cell that contains the default filter value - filter_selectSourceSeparator : '|' // filter_selectSource array text left of the separator is added to the option value, right into the option text - }, - format: function( table, c, wo ) { - if ( !c.$table.hasClass( 'hasFilters' ) ) { - tsf.init( table, c, wo ); - } - }, - remove: function( table, c, wo, refreshing ) { - var tbodyIndex, $tbody, - $table = c.$table, - $tbodies = c.$tbodies, - events = 'addRows updateCell update updateRows updateComplete appendCache filterReset filterEnd search ' - .split( ' ' ).join( c.namespace + 'filter ' ); - $table - .removeClass( 'hasFilters' ) - // add filter namespace to all BUT search - .unbind( events.replace( ts.regex.spaces, ' ' ) ) - // remove the filter row even if refreshing, because the column might have been moved - .find( '.' + tscss.filterRow ).remove(); - if ( refreshing ) { return; } - for ( tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { - $tbody = ts.processTbody( table, $tbodies.eq( tbodyIndex ), true ); // remove tbody - $tbody.children().removeClass( wo.filter_filteredRow ).show(); - ts.processTbody( table, $tbody, false ); // restore tbody - } - if ( wo.filter_reset ) { - $( document ).undelegate( wo.filter_reset, 'click' + c.namespace + 'filter' ); - } - } - }); - - tsf = ts.filter = { - - // regex used in filter 'check' functions - not for general use and not documented - regex: { - regex : /^\/((?:\\\/|[^\/])+)\/([mig]{0,3})?$/, // regex to test for regex - child : /tablesorter-childRow/, // child row class name; this gets updated in the script - filtered : /filtered/, // filtered (hidden) row class name; updated in the script - type : /undefined|number/, // check type - exact : /(^[\"\'=]+)|([\"\'=]+$)/g, // exact match (allow '==') - operators : /[<>=]/g, // replace operators - query : '(q|query)', // replace filter queries - wild01 : /\?/g, // wild card match 0 or 1 - wild0More : /\*/g, // wild care match 0 or more - quote : /\"/g, - isNeg1 : /(>=?\s*-\d)/, - isNeg2 : /(<=?\s*\d)/ - }, - // function( c, data ) { } - // c = table.config - // data.$row = jQuery object of the row currently being processed - // data.$cells = jQuery object of all cells within the current row - // data.filters = array of filters for all columns ( some may be undefined ) - // data.filter = filter for the current column - // data.iFilter = same as data.filter, except lowercase ( if wo.filter_ignoreCase is true ) - // data.exact = table cell text ( or parsed data if column parser enabled; may be a number & not a string ) - // data.iExact = same as data.exact, except lowercase ( if wo.filter_ignoreCase is true; may be a number & not a string ) - // data.cache = table cell text from cache, so it has been parsed ( & in all lower case if c.ignoreCase is true ) - // data.cacheArray = An array of parsed content from each table cell in the row being processed - // data.index = column index; table = table element ( DOM ) - // data.parsed = array ( by column ) of boolean values ( from filter_useParsedData or 'filter-parsed' class ) - types: { - or : function( c, data, vars ) { - // look for "|", but not if it is inside of a regular expression - if ( ( tsfRegex.orTest.test( data.iFilter ) || tsfRegex.orSplit.test( data.filter ) ) && - // this test for regex has potential to slow down the overall search - !tsfRegex.regex.test( data.filter ) ) { - var indx, filterMatched, query, regex, - // duplicate data but split filter - data2 = $.extend( {}, data ), - filter = data.filter.split( tsfRegex.orSplit ), - iFilter = data.iFilter.split( tsfRegex.orSplit ), - len = filter.length; - for ( indx = 0; indx < len; indx++ ) { - data2.nestedFilters = true; - data2.filter = '' + ( tsf.parseFilter( c, filter[ indx ], data ) || '' ); - data2.iFilter = '' + ( tsf.parseFilter( c, iFilter[ indx ], data ) || '' ); - query = '(' + ( tsf.parseFilter( c, data2.filter, data ) || '' ) + ')'; - try { - // use try/catch, because query may not be a valid regex if "|" is contained within a partial regex search, - // e.g "/(Alex|Aar" -> Uncaught SyntaxError: Invalid regular expression: /(/(Alex)/: Unterminated group - regex = new RegExp( data.isMatch ? query : '^' + query + '$', c.widgetOptions.filter_ignoreCase ? 'i' : '' ); - // filterMatched = data2.filter === '' && indx > 0 ? true - // look for an exact match with the 'or' unless the 'filter-match' class is found - filterMatched = regex.test( data2.exact ) || tsf.processTypes( c, data2, vars ); - if ( filterMatched ) { - return filterMatched; - } - } catch ( error ) { - return null; - } - } - // may be null from processing types - return filterMatched || false; - } - return null; - }, - // Look for an AND or && operator ( logical and ) - and : function( c, data, vars ) { - if ( tsfRegex.andTest.test( data.filter ) ) { - var indx, filterMatched, result, query, regex, - // duplicate data but split filter - data2 = $.extend( {}, data ), - filter = data.filter.split( tsfRegex.andSplit ), - iFilter = data.iFilter.split( tsfRegex.andSplit ), - len = filter.length; - for ( indx = 0; indx < len; indx++ ) { - data2.nestedFilters = true; - data2.filter = '' + ( tsf.parseFilter( c, filter[ indx ], data ) || '' ); - data2.iFilter = '' + ( tsf.parseFilter( c, iFilter[ indx ], data ) || '' ); - query = ( '(' + ( tsf.parseFilter( c, data2.filter, data ) || '' ) + ')' ) - // replace wild cards since /(a*)/i will match anything - .replace( tsfRegex.wild01, '\\S{1}' ).replace( tsfRegex.wild0More, '\\S*' ); - try { - // use try/catch just in case RegExp is invalid - regex = new RegExp( data.isMatch ? query : '^' + query + '$', c.widgetOptions.filter_ignoreCase ? 'i' : '' ); - // look for an exact match with the 'and' unless the 'filter-match' class is found - result = ( regex.test( data2.exact ) || tsf.processTypes( c, data2, vars ) ); - if ( indx === 0 ) { - filterMatched = result; - } else { - filterMatched = filterMatched && result; - } - } catch ( error ) { - return null; - } - } - // may be null from processing types - return filterMatched || false; - } - return null; - }, - // Look for regex - regex: function( c, data ) { - if ( tsfRegex.regex.test( data.filter ) ) { - var matches, - // cache regex per column for optimal speed - regex = data.filter_regexCache[ data.index ] || tsfRegex.regex.exec( data.filter ), - isRegex = regex instanceof RegExp; - try { - if ( !isRegex ) { - // force case insensitive search if ignoreCase option set? - // if ( c.ignoreCase && !regex[2] ) { regex[2] = 'i'; } - data.filter_regexCache[ data.index ] = regex = new RegExp( regex[1], regex[2] ); - } - matches = regex.test( data.exact ); - } catch ( error ) { - matches = false; - } - return matches; - } - return null; - }, - // Look for operators >, >=, < or <= - operators: function( c, data ) { - // ignore empty strings... because '' < 10 is true - if ( tsfRegex.operTest.test( data.iFilter ) && data.iExact !== '' ) { - var cachedValue, result, txt, - table = c.table, - parsed = data.parsed[ data.index ], - query = ts.formatFloat( data.iFilter.replace( tsfRegex.operators, '' ), table ), - parser = c.parsers[ data.index ], - savedSearch = query; - // parse filter value in case we're comparing numbers ( dates ) - if ( parsed || parser.type === 'numeric' ) { - txt = $.trim( '' + data.iFilter.replace( tsfRegex.operators, '' ) ); - result = tsf.parseFilter( c, txt, data, true ); - query = ( typeof result === 'number' && result !== '' && !isNaN( result ) ) ? result : query; - } - // iExact may be numeric - see issue #149; - // check if cached is defined, because sometimes j goes out of range? ( numeric columns ) - if ( ( parsed || parser.type === 'numeric' ) && !isNaN( query ) && - typeof data.cache !== 'undefined' ) { - cachedValue = data.cache; - } else { - txt = isNaN( data.iExact ) ? data.iExact.replace( ts.regex.nondigit, '' ) : data.iExact; - cachedValue = ts.formatFloat( txt, table ); - } - if ( tsfRegex.gtTest.test( data.iFilter ) ) { - result = tsfRegex.gteTest.test( data.iFilter ) ? cachedValue >= query : cachedValue > query; - } else if ( tsfRegex.ltTest.test( data.iFilter ) ) { - result = tsfRegex.lteTest.test( data.iFilter ) ? cachedValue <= query : cachedValue < query; - } - // keep showing all rows if nothing follows the operator - if ( !result && savedSearch === '' ) { - result = true; - } - return result; - } - return null; - }, - // Look for a not match - notMatch: function( c, data ) { - if ( tsfRegex.notTest.test( data.iFilter ) ) { - var indx, - txt = data.iFilter.replace( '!', '' ), - filter = tsf.parseFilter( c, txt, data ) || ''; - if ( tsfRegex.exact.test( filter ) ) { - // look for exact not matches - see #628 - filter = filter.replace( tsfRegex.exact, '' ); - return filter === '' ? true : $.trim( filter ) !== data.iExact; - } else { - indx = data.iExact.search( $.trim( filter ) ); - return filter === '' ? true : !( c.widgetOptions.filter_startsWith ? indx === 0 : indx >= 0 ); - } - } - return null; - }, - // Look for quotes or equals to get an exact match; ignore type since iExact could be numeric - exact: function( c, data ) { - /*jshint eqeqeq:false */ - if ( tsfRegex.exact.test( data.iFilter ) ) { - var txt = data.iFilter.replace( tsfRegex.exact, '' ), - filter = tsf.parseFilter( c, txt, data ) || ''; - return data.anyMatch ? $.inArray( filter, data.rowArray ) >= 0 : filter == data.iExact; - } - return null; - }, - // Look for a range ( using ' to ' or ' - ' ) - see issue #166; thanks matzhu! - range : function( c, data ) { - if ( tsfRegex.toTest.test( data.iFilter ) ) { - var result, tmp, range1, range2, - table = c.table, - index = data.index, - parsed = data.parsed[index], - // make sure the dash is for a range and not indicating a negative number - query = data.iFilter.split( tsfRegex.toSplit ); - - tmp = query[0].replace( ts.regex.nondigit, '' ) || ''; - range1 = ts.formatFloat( tsf.parseFilter( c, tmp, data ), table ); - tmp = query[1].replace( ts.regex.nondigit, '' ) || ''; - range2 = ts.formatFloat( tsf.parseFilter( c, tmp, data ), table ); - // parse filter value in case we're comparing numbers ( dates ) - if ( parsed || c.parsers[ index ].type === 'numeric' ) { - result = c.parsers[ index ].format( '' + query[0], table, c.$headers.eq( index ), index ); - range1 = ( result !== '' && !isNaN( result ) ) ? result : range1; - result = c.parsers[ index ].format( '' + query[1], table, c.$headers.eq( index ), index ); - range2 = ( result !== '' && !isNaN( result ) ) ? result : range2; - } - if ( ( parsed || c.parsers[ index ].type === 'numeric' ) && !isNaN( range1 ) && !isNaN( range2 ) ) { - result = data.cache; - } else { - tmp = isNaN( data.iExact ) ? data.iExact.replace( ts.regex.nondigit, '' ) : data.iExact; - result = ts.formatFloat( tmp, table ); - } - if ( range1 > range2 ) { - tmp = range1; range1 = range2; range2 = tmp; // swap - } - return ( result >= range1 && result <= range2 ) || ( range1 === '' || range2 === '' ); - } - return null; - }, - // Look for wild card: ? = single, * = multiple, or | = logical OR - wild : function( c, data ) { - if ( tsfRegex.wildOrTest.test( data.iFilter ) ) { - var query = '' + ( tsf.parseFilter( c, data.iFilter, data ) || '' ); - // look for an exact match with the 'or' unless the 'filter-match' class is found - if ( !tsfRegex.wildTest.test( query ) && data.nestedFilters ) { - query = data.isMatch ? query : '^(' + query + ')$'; - } - // parsing the filter may not work properly when using wildcards =/ - try { - return new RegExp( - query.replace( tsfRegex.wild01, '\\S{1}' ).replace( tsfRegex.wild0More, '\\S*' ), - c.widgetOptions.filter_ignoreCase ? 'i' : '' - ) - .test( data.exact ); - } catch ( error ) { - return null; - } - } - return null; - }, - // fuzzy text search; modified from https://github.com/mattyork/fuzzy ( MIT license ) - fuzzy: function( c, data ) { - if ( tsfRegex.fuzzyTest.test( data.iFilter ) ) { - var indx, - patternIndx = 0, - len = data.iExact.length, - txt = data.iFilter.slice( 1 ), - pattern = tsf.parseFilter( c, txt, data ) || ''; - for ( indx = 0; indx < len; indx++ ) { - if ( data.iExact[ indx ] === pattern[ patternIndx ] ) { - patternIndx += 1; - } - } - return patternIndx === pattern.length; - } - return null; - } - }, - init: function( table, c, wo ) { - // filter language options - ts.language = $.extend( true, {}, { - to : 'to', - or : 'or', - and : 'and' - }, ts.language ); - - var options, string, txt, $header, column, filters, val, fxn, noSelect; - c.$table.addClass( 'hasFilters' ); - - // define timers so using clearTimeout won't cause an undefined error - wo.filter_searchTimer = null; - wo.filter_initTimer = null; - wo.filter_formatterCount = 0; - wo.filter_formatterInit = []; - wo.filter_anyColumnSelector = '[data-column="all"],[data-column="any"]'; - wo.filter_multipleColumnSelector = '[data-column*="-"],[data-column*=","]'; - - val = '\\{' + tsfRegex.query + '\\}'; - $.extend( tsfRegex, { - child : new RegExp( c.cssChildRow ), - filtered : new RegExp( wo.filter_filteredRow ), - alreadyFiltered : new RegExp( '(\\s+(' + ts.language.or + '|-|' + ts.language.to + ')\\s+)', 'i' ), - toTest : new RegExp( '\\s+(-|' + ts.language.to + ')\\s+', 'i' ), - toSplit : new RegExp( '(?:\\s+(?:-|' + ts.language.to + ')\\s+)', 'gi' ), - andTest : new RegExp( '\\s+(' + ts.language.and + '|&&)\\s+', 'i' ), - andSplit : new RegExp( '(?:\\s+(?:' + ts.language.and + '|&&)\\s+)', 'gi' ), - orTest : /\|/, - orSplit : new RegExp( '(?:\\s+(?:' + ts.language.or + ')\\s+|\\|)', 'gi' ), - iQuery : new RegExp( val, 'i' ), - igQuery : new RegExp( val, 'ig' ), - operTest : /^[<>]=?/, - gtTest : />/, - gteTest : />=/, - ltTest : /' + - ( $header.data( 'placeholder' ) || - $header.attr( 'data-placeholder' ) || - wo.filter_placeholder.select || - '' - ) + - '' : ''; - val = string; - txt = string; - if ( string.indexOf( wo.filter_selectSourceSeparator ) >= 0 ) { - val = string.split( wo.filter_selectSourceSeparator ); - txt = val[1]; - val = val[0]; - } - options += ''; - } - } - c.$table - .find( 'thead' ) - .find( 'select.' + tscss.filter + '[data-column="' + column + '"]' ) - .append( options ); - txt = wo.filter_selectSource; - fxn = typeof txt === 'function' ? true : ts.getColumnData( table, txt, column ); - if ( fxn ) { - // updating so the extra options are appended - tsf.buildSelect( c.table, column, '', true, $header.hasClass( wo.filter_onlyAvail ) ); - } - } - } - } - } - // not really updating, but if the column has both the 'filter-select' class & - // filter_functions set to true, it would append the same options twice. - tsf.buildDefault( table, true ); - - tsf.bindSearch( table, c.$table.find( '.' + tscss.filter ), true ); - if ( wo.filter_external ) { - tsf.bindSearch( table, wo.filter_external ); - } - - if ( wo.filter_hideFilters ) { - tsf.hideFilters( c ); - } - - // show processing icon - if ( c.showProcessing ) { - txt = 'filterStart filterEnd '.split( ' ' ).join( c.namespace + 'filter ' ); - c.$table - .unbind( txt.replace( ts.regex.spaces, ' ' ) ) - .bind( txt, function( event, columns ) { - // only add processing to certain columns to all columns - $header = ( columns ) ? - c.$table - .find( '.' + tscss.header ) - .filter( '[data-column]' ) - .filter( function() { - return columns[ $( this ).data( 'column' ) ] !== ''; - }) : ''; - ts.isProcessing( table, event.type === 'filterStart', columns ? $header : '' ); - }); - } - - // set filtered rows count ( intially unfiltered ) - c.filteredRows = c.totalRows; - - // add default values - txt = 'tablesorter-initialized pagerBeforeInitialized '.split( ' ' ).join( c.namespace + 'filter ' ); - c.$table - .unbind( txt.replace( ts.regex.spaces, ' ' ) ) - .bind( txt, function() { - // redefine 'wo' as it does not update properly inside this callback - var wo = this.config.widgetOptions; - filters = tsf.setDefaults( table, c, wo ) || []; - if ( filters.length ) { - // prevent delayInit from triggering a cache build if filters are empty - if ( !( c.delayInit && filters.join( '' ) === '' ) ) { - ts.setFilters( table, filters, true ); - } - } - c.$table.trigger( 'filterFomatterUpdate' ); - // trigger init after setTimeout to prevent multiple filterStart/End/Init triggers - setTimeout( function() { - if ( !wo.filter_initialized ) { - tsf.filterInitComplete( c ); - } - }, 100 ); - }); - // if filter widget is added after pager has initialized; then set filter init flag - if ( c.pager && c.pager.initialized && !wo.filter_initialized ) { - c.$table.trigger( 'filterFomatterUpdate' ); - setTimeout( function() { - tsf.filterInitComplete( c ); - }, 100 ); - } - }, - // $cell parameter, but not the config, is passed to the filter_formatters, - // so we have to work with it instead - formatterUpdated: function( $cell, column ) { - // prevent error if $cell is undefined - see #1056 - var wo = $cell && $cell.closest( 'table' )[0].config.widgetOptions; - if ( wo && !wo.filter_initialized ) { - // add updates by column since this function - // may be called numerous times before initialization - wo.filter_formatterInit[ column ] = 1; - } - }, - filterInitComplete: function( c ) { - var indx, len, - wo = c.widgetOptions, - count = 0, - completed = function() { - wo.filter_initialized = true; - c.$table.trigger( 'filterInit', c ); - tsf.findRows( c.table, c.$table.data( 'lastSearch' ) || [] ); - }; - if ( $.isEmptyObject( wo.filter_formatter ) ) { - completed(); - } else { - len = wo.filter_formatterInit.length; - for ( indx = 0; indx < len; indx++ ) { - if ( wo.filter_formatterInit[ indx ] === 1 ) { - count++; - } - } - clearTimeout( wo.filter_initTimer ); - if ( !wo.filter_initialized && count === wo.filter_formatterCount ) { - // filter widget initialized - completed(); - } else if ( !wo.filter_initialized ) { - // fall back in case a filter_formatter doesn't call - // $.tablesorter.filter.formatterUpdated( $cell, column ), and the count is off - wo.filter_initTimer = setTimeout( function() { - completed(); - }, 500 ); - } - } - }, - // encode or decode filters for storage; see #1026 - processFilters: function( filters, encode ) { - var indx, - mode = encode ? encodeURIComponent : decodeURIComponent, - len = filters.length; - for ( indx = 0; indx < len; indx++ ) { - filters[ indx ] = mode( filters[ indx ] ); - } - return filters; - }, - setDefaults: function( table, c, wo ) { - var isArray, saved, indx, col, $filters, - // get current ( default ) filters - filters = ts.getFilters( table ) || []; - if ( wo.filter_saveFilters && ts.storage ) { - saved = ts.storage( table, 'tablesorter-filters' ) || []; - isArray = $.isArray( saved ); - // make sure we're not just getting an empty array - if ( !( isArray && saved.join( '' ) === '' || !isArray ) ) { - filters = tsf.processFilters( saved ); - } - } - // if no filters saved, then check default settings - if ( filters.join( '' ) === '' ) { - // allow adding default setting to external filters - $filters = c.$headers.add( wo.filter_$externalFilters ) - .filter( '[' + wo.filter_defaultAttrib + ']' ); - for ( indx = 0; indx <= c.columns; indx++ ) { - // include data-column='all' external filters - col = indx === c.columns ? 'all' : indx; - filters[indx] = $filters - .filter( '[data-column="' + col + '"]' ) - .attr( wo.filter_defaultAttrib ) || filters[indx] || ''; - } - } - c.$table.data( 'lastSearch', filters ); - return filters; - }, - parseFilter: function( c, filter, data, parsed ) { - return parsed || data.parsed[ data.index ] ? - c.parsers[ data.index ].format( filter, c.table, [], data.index ) : - filter; - }, - buildRow: function( table, c, wo ) { - var $filter, col, column, $header, makeSelect, disabled, name, ffxn, tmp, - // c.columns defined in computeThIndexes() - cellFilter = wo.filter_cellFilter, - columns = c.columns, - arry = $.isArray( cellFilter ), - buildFilter = ''; - for ( column = 0; column < columns; column++ ) { - if ( c.$headerIndexed[ column ].length ) { - buildFilter += ' 1 ) { - buildFilter += ' colspan="' + tmp + '"'; - } - if ( arry ) { - buildFilter += ( cellFilter[ column ] ? ' class="' + cellFilter[ column ] + '"' : '' ); - } else { - buildFilter += ( cellFilter !== '' ? ' class="' + cellFilter + '"' : '' ); - } - buildFilter += '>'; - } - } - c.$filters = $( buildFilter += '' ) - .appendTo( c.$table.children( 'thead' ).eq( 0 ) ) - .children( 'td' ); - // build each filter input - for ( column = 0; column < columns; column++ ) { - disabled = false; - // assuming last cell of a column is the main column - $header = c.$headerIndexed[ column ]; - if ( $header && $header.length ) { - $filter = c.$filters.filter( '[data-column="' + column + '"]' ); - ffxn = ts.getColumnData( table, wo.filter_functions, column ); - makeSelect = ( wo.filter_functions && ffxn && typeof ffxn !== 'function' ) || - $header.hasClass( 'filter-select' ); - // get data from jQuery data, metadata, headers option or header class name - col = ts.getColumnData( table, c.headers, column ); - disabled = ts.getData( $header[0], col, 'filter' ) === 'false' || - ts.getData( $header[0], col, 'parser' ) === 'false'; - - if ( makeSelect ) { - buildFilter = $( '' ).appendTo( $filter ); - } - if ( buildFilter ) { - tmp = $header.data( 'placeholder' ) || - $header.attr( 'data-placeholder' ) || - wo.filter_placeholder.search || ''; - buildFilter.attr( 'placeholder', tmp ); - } - } - if ( buildFilter ) { - // add filter class name - name = ( $.isArray( wo.filter_cssFilter ) ? - ( typeof wo.filter_cssFilter[column] !== 'undefined' ? wo.filter_cssFilter[column] || '' : '' ) : - wo.filter_cssFilter ) || ''; - buildFilter.addClass( tscss.filter + ' ' + name ).attr( 'data-column', column ); - if ( disabled ) { - buildFilter.attr( 'placeholder', '' ).addClass( tscss.filterDisabled )[0].disabled = true; - } - } - } - } - }, - bindSearch: function( table, $el, internal ) { - table = $( table )[0]; - $el = $( $el ); // allow passing a selector string - if ( !$el.length ) { return; } - var tmp, - c = table.config, - wo = c.widgetOptions, - namespace = c.namespace + 'filter', - $ext = wo.filter_$externalFilters; - if ( internal !== true ) { - // save anyMatch element - tmp = wo.filter_anyColumnSelector + ',' + wo.filter_multipleColumnSelector; - wo.filter_$anyMatch = $el.filter( tmp ); - if ( $ext && $ext.length ) { - wo.filter_$externalFilters = wo.filter_$externalFilters.add( $el ); - } else { - wo.filter_$externalFilters = $el; - } - // update values ( external filters added after table initialization ) - ts.setFilters( table, c.$table.data( 'lastSearch' ) || [], internal === false ); - } - // unbind events - tmp = ( 'keypress keyup search change '.split( ' ' ).join( namespace + ' ' ) ); - $el - // use data attribute instead of jQuery data since the head is cloned without including - // the data/binding - .attr( 'data-lastSearchTime', new Date().getTime() ) - .unbind( tmp.replace( ts.regex.spaces, ' ' ) ) - // include change for select - fixes #473 - .bind( 'keyup' + namespace, function( event ) { - $( this ).attr( 'data-lastSearchTime', new Date().getTime() ); - // emulate what webkit does.... escape clears the filter - if ( event.which === 27 ) { - this.value = ''; - // live search - } else if ( wo.filter_liveSearch === false ) { - return; - // don't return if the search value is empty ( all rows need to be revealed ) - } else if ( this.value !== '' && ( - // liveSearch can contain a min value length; ignore arrow and meta keys, but allow backspace - ( typeof wo.filter_liveSearch === 'number' && this.value.length < wo.filter_liveSearch ) || - // let return & backspace continue on, but ignore arrows & non-valid characters - ( event.which !== 13 && event.which !== 8 && - ( event.which < 32 || ( event.which >= 37 && event.which <= 40 ) ) ) ) ) { - return; - } - // change event = no delay; last true flag tells getFilters to skip newest timed input - tsf.searching( table, true, true ); - }) - .bind( 'search change keypress '.split( ' ' ).join( namespace + ' ' ), function( event ) { - // don't get cached data, in case data-column changes dynamically - var column = parseInt( $( this ).attr( 'data-column' ), 10 ); - // don't allow 'change' event to process if the input value is the same - fixes #685 - if ( wo.filter_initialized && ( event.which === 13 || event.type === 'search' || - event.type === 'change' && this.value !== c.lastSearch[column] ) ) { - event.preventDefault(); - // init search with no delay - $( this ).attr( 'data-lastSearchTime', new Date().getTime() ); - tsf.searching( table, false, true ); - } - }); - }, - searching: function( table, filter, skipFirst ) { - var wo = table.config.widgetOptions; - clearTimeout( wo.filter_searchTimer ); - if ( typeof filter === 'undefined' || filter === true ) { - // delay filtering - wo.filter_searchTimer = setTimeout( function() { - tsf.checkFilters( table, filter, skipFirst ); - }, wo.filter_liveSearch ? wo.filter_searchDelay : 10 ); - } else { - // skip delay - tsf.checkFilters( table, filter, skipFirst ); - } - }, - checkFilters: function( table, filter, skipFirst ) { - var c = table.config, - wo = c.widgetOptions, - filterArray = $.isArray( filter ), - filters = ( filterArray ) ? filter : ts.getFilters( table, true ), - combinedFilters = ( filters || [] ).join( '' ); // combined filter values - // prevent errors if delay init is set - if ( $.isEmptyObject( c.cache ) ) { - // update cache if delayInit set & pager has initialized ( after user initiates a search ) - if ( c.delayInit && c.pager && c.pager.initialized ) { - ts.updateCache( c, function() { - tsf.checkFilters( table, false, skipFirst ); - }); - } - return; - } - // add filter array back into inputs - if ( filterArray ) { - ts.setFilters( table, filters, false, skipFirst !== true ); - if ( !wo.filter_initialized ) { c.lastCombinedFilter = ''; } - } - if ( wo.filter_hideFilters ) { - // show/hide filter row as needed - c.$table - .find( '.' + tscss.filterRow ) - .trigger( combinedFilters === '' ? 'mouseleave' : 'mouseenter' ); - } - // return if the last search is the same; but filter === false when updating the search - // see example-widget-filter.html filter toggle buttons - if ( c.lastCombinedFilter === combinedFilters && filter !== false ) { - return; - } else if ( filter === false ) { - // force filter refresh - c.lastCombinedFilter = null; - c.lastSearch = []; - } - // convert filters to strings - see #1070 - filters = Array.prototype.map ? - filters.map( String ) : - // for IE8 & older browsers - maybe not the best method - filters.join( '\u0000' ).split( '\u0000' ); - - if ( wo.filter_initialized ) { - c.$table.trigger( 'filterStart', [ filters ] ); - } - if ( c.showProcessing ) { - // give it time for the processing icon to kick in - setTimeout( function() { - tsf.findRows( table, filters, combinedFilters ); - return false; - }, 30 ); - } else { - tsf.findRows( table, filters, combinedFilters ); - return false; - } - }, - hideFilters: function( c, $table ) { - var timer, - $row = ( $table || c.$table ).find( '.' + tscss.filterRow ).addClass( tscss.filterRowHide ); - $row - .bind( 'mouseenter mouseleave', function( e ) { - // save event object - http://bugs.jquery.com/ticket/12140 - var event = e, - $filterRow = $( this ); - clearTimeout( timer ); - timer = setTimeout( function() { - if ( /enter|over/.test( event.type ) ) { - $filterRow.removeClass( tscss.filterRowHide ); - } else { - // don't hide if input has focus - // $( ':focus' ) needs jQuery 1.6+ - if ( $( document.activeElement ).closest( 'tr' )[0] !== $filterRow[0] ) { - // don't hide row if any filter has a value - if ( c.lastCombinedFilter === '' ) { - $filterRow.addClass( tscss.filterRowHide ); - } - } - } - }, 200 ); - }) - .find( 'input, select' ).bind( 'focus blur', function( e ) { - var event = e, - $row = $( this ).closest( 'tr' ); - clearTimeout( timer ); - timer = setTimeout( function() { - clearTimeout( timer ); - // don't hide row if any filter has a value - if ( ts.getFilters( c.$table ).join( '' ) === '' ) { - $row.toggleClass( tscss.filterRowHide, event.type !== 'focus' ); - } - }, 200 ); - }); - }, - defaultFilter: function( filter, mask ) { - if ( filter === '' ) { return filter; } - var regex = tsfRegex.iQuery, - maskLen = mask.match( tsfRegex.igQuery ).length, - query = maskLen > 1 ? $.trim( filter ).split( /\s/ ) : [ $.trim( filter ) ], - len = query.length - 1, - indx = 0, - val = mask; - if ( len < 1 && maskLen > 1 ) { - // only one 'word' in query but mask has >1 slots - query[1] = query[0]; - } - // replace all {query} with query words... - // if query = 'Bob', then convert mask from '!{query}' to '!Bob' - // if query = 'Bob Joe Frank', then convert mask '{q} OR {q}' to 'Bob OR Joe OR Frank' - while ( regex.test( val ) ) { - val = val.replace( regex, query[indx++] || '' ); - if ( regex.test( val ) && indx < len && ( query[indx] || '' ) !== '' ) { - val = mask.replace( regex, val ); - } - } - return val; - }, - getLatestSearch: function( $input ) { - if ( $input ) { - return $input.sort( function( a, b ) { - return $( b ).attr( 'data-lastSearchTime' ) - $( a ).attr( 'data-lastSearchTime' ); - }); - } - return $input || $(); - }, - multipleColumns: function( c, $input ) { - // look for multiple columns '1-3,4-6,8' in data-column - var temp, ranges, range, start, end, singles, i, indx, len, - wo = c.widgetOptions, - // only target 'all' column inputs on initialization - // & don't target 'all' column inputs if they don't exist - targets = wo.filter_initialized || !$input.filter( wo.filter_anyColumnSelector ).length, - columns = [], - val = $.trim( tsf.getLatestSearch( $input ).attr( 'data-column' ) || '' ); - if ( /^[0-9]+$/.test(val)) { - return parseInt( val, 10 ); - } - // process column range - if ( targets && /-/.test( val ) ) { - ranges = val.match( /(\d+)\s*-\s*(\d+)/g ); - len = ranges.length; - for ( indx = 0; indx < len; indx++ ) { - range = ranges[indx].split( /\s*-\s*/ ); - start = parseInt( range[0], 10 ) || 0; - end = parseInt( range[1], 10 ) || ( c.columns - 1 ); - if ( start > end ) { - temp = start; start = end; end = temp; // swap - } - if ( end >= c.columns ) { - end = c.columns - 1; - } - for ( ; start <= end; start++ ) { - columns.push( start ); - } - // remove processed range from val - val = val.replace( ranges[ indx ], '' ); - } - } - // process single columns - if ( targets && /,/.test( val ) ) { - singles = val.split( /\s*,\s*/ ); - len = singles.length; - for ( i = 0; i < len; i++ ) { - if ( singles[ i ] !== '' ) { - indx = parseInt( singles[ i ], 10 ); - if ( indx < c.columns ) { - columns.push( indx ); - } - } - } - } - // return all columns - if ( !columns.length ) { - for ( indx = 0; indx < c.columns; indx++ ) { - columns.push( indx ); - } - } - return columns; - }, - processTypes: function( c, data, vars ) { - var ffxn, - filterMatched = null, - matches = null; - for ( ffxn in tsf.types ) { - if ( $.inArray( ffxn, vars.excludeMatch ) < 0 && matches === null ) { - matches = tsf.types[ffxn]( c, data, vars ); - if ( matches !== null ) { - filterMatched = matches; - } - } - } - return filterMatched; - }, - processRow: function( c, data, vars ) { - var result, filterMatched, - fxn, ffxn, txt, - wo = c.widgetOptions, - showRow = true, - - // if wo.filter_$anyMatch data-column attribute is changed dynamically - // we don't want to do an "anyMatch" search on one column using data - // for the entire row - see #998 - columnIndex = wo.filter_$anyMatch && wo.filter_$anyMatch.length ? - // look for multiple columns '1-3,4-6,8' - tsf.multipleColumns( c, wo.filter_$anyMatch ) : - []; - - data.$cells = data.$row.children(); - - if ( data.anyMatchFlag && columnIndex.length > 1 ) { - data.anyMatch = true; - data.isMatch = true; - data.rowArray = data.$cells.map( function( i ) { - if ( $.inArray( i, columnIndex ) > -1 ) { - if ( data.parsed[ i ] ) { - txt = data.cacheArray[ i ]; - } else { - txt = data.rawArray[ i ]; - txt = $.trim( wo.filter_ignoreCase ? txt.toLowerCase() : txt ); - if ( c.sortLocaleCompare ) { - txt = ts.replaceAccents( txt ); - } - } - return txt; - } - }).get(); - data.filter = data.anyMatchFilter; - data.iFilter = data.iAnyMatchFilter; - data.exact = data.rowArray.join( ' ' ); - data.iExact = wo.filter_ignoreCase ? data.exact.toLowerCase() : data.exact; - data.cache = data.cacheArray.slice( 0, -1 ).join( ' ' ); - - vars.excludeMatch = vars.noAnyMatch; - filterMatched = tsf.processTypes( c, data, vars ); - - if ( filterMatched !== null ) { - showRow = filterMatched; - } else { - if ( wo.filter_startsWith ) { - showRow = false; - // data.rowArray may not contain all columns - columnIndex = Math.min( c.columns, data.rowArray.length ); - while ( !showRow && columnIndex > 0 ) { - columnIndex--; - showRow = showRow || data.rowArray[ columnIndex ].indexOf( data.iFilter ) === 0; - } - } else { - showRow = ( data.iExact + data.childRowText ).indexOf( data.iFilter ) >= 0; - } - } - data.anyMatch = false; - // no other filters to process - if ( data.filters.join( '' ) === data.filter ) { - return showRow; - } - } - - for ( columnIndex = 0; columnIndex < c.columns; columnIndex++ ) { - data.filter = data.filters[ columnIndex ]; - data.index = columnIndex; - - // filter types to exclude, per column - vars.excludeMatch = vars.excludeFilter[ columnIndex ]; - - // ignore if filter is empty or disabled - if ( data.filter ) { - data.cache = data.cacheArray[ columnIndex ]; - // check if column data should be from the cell or from parsed data - if ( wo.filter_useParsedData || data.parsed[ columnIndex ] ) { - data.exact = data.cache; - } else { - result = data.rawArray[ columnIndex ] || ''; - data.exact = c.sortLocaleCompare ? ts.replaceAccents( result ) : result; // issue #405 - } - data.iExact = !tsfRegex.type.test( typeof data.exact ) && wo.filter_ignoreCase ? - data.exact.toLowerCase() : data.exact; - - data.isMatch = c.$headerIndexed[ data.index ].hasClass( 'filter-match' ); - - result = showRow; // if showRow is true, show that row - - // in case select filter option has a different value vs text 'a - z|A through Z' - ffxn = wo.filter_columnFilters ? - c.$filters.add( c.$externalFilters ) - .filter( '[data-column="' + columnIndex + '"]' ) - .find( 'select option:selected' ) - .attr( 'data-function-name' ) || '' : ''; - // replace accents - see #357 - if ( c.sortLocaleCompare ) { - data.filter = ts.replaceAccents( data.filter ); - } - - // data.iFilter = case insensitive ( if wo.filter_ignoreCase is true ), - // data.filter = case sensitive - data.iFilter = wo.filter_ignoreCase ? ( data.filter || '' ).toLowerCase() : data.filter; - fxn = vars.functions[ columnIndex ]; - filterMatched = null; - if ( fxn ) { - if ( fxn === true ) { - // default selector uses exact match unless 'filter-match' class is found - filterMatched = data.isMatch ? - // data.iExact may be a number - ( '' + data.iExact ).search( data.iFilter ) >= 0 : - data.filter === data.exact; - } else if ( typeof fxn === 'function' ) { - // filter callback( exact cell content, parser normalized content, - // filter input value, column index, jQuery row object ) - filterMatched = fxn( data.exact, data.cache, data.filter, columnIndex, data.$row, c, data ); - } else if ( typeof fxn[ ffxn || data.filter ] === 'function' ) { - // selector option function - txt = ffxn || data.filter; - filterMatched = - fxn[ txt ]( data.exact, data.cache, data.filter, columnIndex, data.$row, c, data ); - } - } - if ( filterMatched === null ) { - // cycle through the different filters - // filters return a boolean or null if nothing matches - filterMatched = tsf.processTypes( c, data, vars ); - if ( filterMatched !== null ) { - result = filterMatched; - // Look for match, and add child row data for matching - } else { - txt = ( data.iExact + data.childRowText ) - .indexOf( tsf.parseFilter( c, data.iFilter, data ) ); - result = ( ( !wo.filter_startsWith && txt >= 0 ) || ( wo.filter_startsWith && txt === 0 ) ); - } - } else { - result = filterMatched; - } - showRow = ( result ) ? showRow : false; - } - } - return showRow; - }, - findRows: function( table, filters, combinedFilters ) { - if ( table.config.lastCombinedFilter === combinedFilters || - !table.config.widgetOptions.filter_initialized ) { - return; - } - var len, norm_rows, rowData, $rows, $row, rowIndex, tbodyIndex, $tbody, columnIndex, - isChild, childRow, lastSearch, showRow, showParent, time, val, indx, - notFiltered, searchFiltered, query, injected, res, id, txt, - storedFilters = $.extend( [], filters ), - c = table.config, - wo = c.widgetOptions, - // data object passed to filters; anyMatch is a flag for the filters - data = { - anyMatch: false, - filters: filters, - // regex filter type cache - filter_regexCache : [] - }, - vars = { - // anyMatch really screws up with these types of filters - noAnyMatch: [ 'range', 'notMatch', 'operators' ], - // cache filter variables that use ts.getColumnData in the main loop - functions : [], - excludeFilter : [], - defaultColFilter : [], - defaultAnyFilter : ts.getColumnData( table, wo.filter_defaultFilter, c.columns, true ) || '' - }; - - // parse columns after formatter, in case the class is added at that point - data.parsed = c.$headers.map( function( columnIndex ) { - return c.parsers && c.parsers[ columnIndex ] && - // force parsing if parser type is numeric - c.parsers[ columnIndex ].parsed || - // getData won't return 'parsed' if other 'filter-' class names exist - // ( e.g. ) - ts.getData && ts.getData( c.$headerIndexed[ columnIndex ], - ts.getColumnData( table, c.headers, columnIndex ), 'filter' ) === 'parsed' || - $( this ).hasClass( 'filter-parsed' ); - }).get(); - - for ( columnIndex = 0; columnIndex < c.columns; columnIndex++ ) { - vars.functions[ columnIndex ] = - ts.getColumnData( table, wo.filter_functions, columnIndex ); - vars.defaultColFilter[ columnIndex ] = - ts.getColumnData( table, wo.filter_defaultFilter, columnIndex ) || ''; - vars.excludeFilter[ columnIndex ] = - ( ts.getColumnData( table, wo.filter_excludeFilter, columnIndex, true ) || '' ).split( /\s+/ ); - } - - if ( c.debug ) { - console.log( 'Filter: Starting filter widget search', filters ); - time = new Date(); - } - // filtered rows count - c.filteredRows = 0; - c.totalRows = 0; - // combindedFilters are undefined on init - combinedFilters = ( storedFilters || [] ).join( '' ); - - for ( tbodyIndex = 0; tbodyIndex < c.$tbodies.length; tbodyIndex++ ) { - $tbody = ts.processTbody( table, c.$tbodies.eq( tbodyIndex ), true ); - // skip child rows & widget added ( removable ) rows - fixes #448 thanks to @hempel! - // $rows = $tbody.children( 'tr' ).not( c.selectorRemove ); - columnIndex = c.columns; - // convert stored rows into a jQuery object - norm_rows = c.cache[ tbodyIndex ].normalized; - $rows = $( $.map( norm_rows, function( el ) { - return el[ columnIndex ].$row.get(); - }) ); - - if ( combinedFilters === '' || wo.filter_serversideFiltering ) { - $rows - .removeClass( wo.filter_filteredRow ) - .not( '.' + c.cssChildRow ) - .css( 'display', '' ); - } else { - // filter out child rows - $rows = $rows.not( '.' + c.cssChildRow ); - len = $rows.length; - - if ( ( wo.filter_$anyMatch && wo.filter_$anyMatch.length ) || - typeof filters[c.columns] !== 'undefined' ) { - data.anyMatchFlag = true; - data.anyMatchFilter = '' + ( - filters[ c.columns ] || - wo.filter_$anyMatch && tsf.getLatestSearch( wo.filter_$anyMatch ).val() || - '' - ); - if ( wo.filter_columnAnyMatch ) { - // specific columns search - query = data.anyMatchFilter.split( tsfRegex.andSplit ); - injected = false; - for ( indx = 0; indx < query.length; indx++ ) { - res = query[ indx ].split( ':' ); - if ( res.length > 1 ) { - // make the column a one-based index ( non-developers start counting from one :P ) - id = parseInt( res[0], 10 ) - 1; - if ( id >= 0 && id < c.columns ) { // if id is an integer - filters[ id ] = res[1]; - query.splice( indx, 1 ); - indx--; - injected = true; - } - } - } - if ( injected ) { - data.anyMatchFilter = query.join( ' && ' ); - } - } - } - - // optimize searching only through already filtered rows - see #313 - searchFiltered = wo.filter_searchFiltered; - lastSearch = c.lastSearch || c.$table.data( 'lastSearch' ) || []; - if ( searchFiltered ) { - // cycle through all filters; include last ( columnIndex + 1 = match any column ). Fixes #669 - for ( indx = 0; indx < columnIndex + 1; indx++ ) { - val = filters[indx] || ''; - // break out of loop if we've already determined not to search filtered rows - if ( !searchFiltered ) { indx = columnIndex; } - // search already filtered rows if... - searchFiltered = searchFiltered && lastSearch.length && - // there are no changes from beginning of filter - val.indexOf( lastSearch[indx] || '' ) === 0 && - // if there is NOT a logical 'or', or range ( 'to' or '-' ) in the string - !tsfRegex.alreadyFiltered.test( val ) && - // if we are not doing exact matches, using '|' ( logical or ) or not '!' - !tsfRegex.exactTest.test( val ) && - // don't search only filtered if the value is negative - // ( '> -10' => '> -100' will ignore hidden rows ) - !( tsfRegex.isNeg1.test( val ) || tsfRegex.isNeg2.test( val ) ) && - // if filtering using a select without a 'filter-match' class ( exact match ) - fixes #593 - !( val !== '' && c.$filters && c.$filters.filter( '[data-column="' + indx + '"]' ).find( 'select' ).length && - !c.$headerIndexed[indx].hasClass( 'filter-match' ) ); - } - } - notFiltered = $rows.not( '.' + wo.filter_filteredRow ).length; - // can't search when all rows are hidden - this happens when looking for exact matches - if ( searchFiltered && notFiltered === 0 ) { searchFiltered = false; } - if ( c.debug ) { - console.log( 'Filter: Searching through ' + - ( searchFiltered && notFiltered < len ? notFiltered : 'all' ) + ' rows' ); - } - if ( data.anyMatchFlag ) { - if ( c.sortLocaleCompare ) { - // replace accents - data.anyMatchFilter = ts.replaceAccents( data.anyMatchFilter ); - } - if ( wo.filter_defaultFilter && tsfRegex.iQuery.test( vars.defaultAnyFilter ) ) { - data.anyMatchFilter = tsf.defaultFilter( data.anyMatchFilter, vars.defaultAnyFilter ); - // clear search filtered flag because default filters are not saved to the last search - searchFiltered = false; - } - // make iAnyMatchFilter lowercase unless both filter widget & core ignoreCase options are true - // when c.ignoreCase is true, the cache contains all lower case data - data.iAnyMatchFilter = !( wo.filter_ignoreCase && c.ignoreCase ) ? - data.anyMatchFilter : - data.anyMatchFilter.toLowerCase(); - } - - // loop through the rows - for ( rowIndex = 0; rowIndex < len; rowIndex++ ) { - - txt = $rows[ rowIndex ].className; - // the first row can never be a child row - isChild = rowIndex && tsfRegex.child.test( txt ); - // skip child rows & already filtered rows - if ( isChild || ( searchFiltered && tsfRegex.filtered.test( txt ) ) ) { - continue; - } - - data.$row = $rows.eq( rowIndex ); - data.cacheArray = norm_rows[ rowIndex ]; - rowData = data.cacheArray[ c.columns ]; - data.rawArray = rowData.raw; - data.childRowText = ''; - - if ( !wo.filter_childByColumn ) { - txt = ''; - // child row cached text - childRow = rowData.child; - // so, if 'table.config.widgetOptions.filter_childRows' is true and there is - // a match anywhere in the child row, then it will make the row visible - // checked here so the option can be changed dynamically - for ( indx = 0; indx < childRow.length; indx++ ) { - txt += ' ' + childRow[indx].join( ' ' ) || ''; - } - data.childRowText = wo.filter_childRows ? - ( wo.filter_ignoreCase ? txt.toLowerCase() : txt ) : - ''; - } - - showRow = false; - showParent = tsf.processRow( c, data, vars ); - $row = rowData.$row; - - // don't pass reference to val - val = showParent ? true : false; - childRow = rowData.$row.filter( ':gt( 0 )' ); - if ( wo.filter_childRows && childRow.length ) { - if ( wo.filter_childByColumn ) { - if ( !wo.filter_childWithSibs ) { - // hide all child rows - childRow.addClass( wo.filter_filteredRow ); - // if only showing resulting child row, only include parent - $row = $row.eq( 0 ); - } - // cycle through each child row - for ( indx = 0; indx < childRow.length; indx++ ) { - data.$row = childRow.eq( indx ); - data.cacheArray = rowData.child[ indx ]; - data.rawArray = data.cacheArray; - val = tsf.processRow( c, data, vars ); - // use OR comparison on child rows - showRow = showRow || val; - if ( !wo.filter_childWithSibs && val ) { - childRow.eq( indx ).removeClass( wo.filter_filteredRow ); - } - } - } - // keep parent row match even if no child matches... see #1020 - showRow = showRow || showParent; - } else { - showRow = val; - } - $row - .toggleClass( wo.filter_filteredRow, !showRow )[0] - .display = showRow ? '' : 'none'; - } - } - c.filteredRows += $rows.not( '.' + wo.filter_filteredRow ).length; - c.totalRows += $rows.length; - ts.processTbody( table, $tbody, false ); - } - c.lastCombinedFilter = combinedFilters; // save last search - // don't save 'filters' directly since it may have altered ( AnyMatch column searches ) - c.lastSearch = storedFilters; - c.$table.data( 'lastSearch', storedFilters ); - if ( wo.filter_saveFilters && ts.storage ) { - ts.storage( table, 'tablesorter-filters', tsf.processFilters( storedFilters, true ) ); - } - if ( c.debug ) { - console.log( 'Completed filter widget search' + ts.benchmark(time) ); - } - if ( wo.filter_initialized ) { - c.$table.trigger( 'filterEnd', c ); - } - setTimeout( function() { - ts.applyWidget( c.table ); // make sure zebra widget is applied - }, 0 ); - }, - getOptionSource: function( table, column, onlyAvail ) { - table = $( table )[0]; - var c = table.config, - wo = c.widgetOptions, - arry = false, - source = wo.filter_selectSource, - last = c.$table.data( 'lastSearch' ) || [], - fxn = typeof source === 'function' ? true : ts.getColumnData( table, source, column ); - - if ( onlyAvail && last[column] !== '' ) { - onlyAvail = false; - } - - // filter select source option - if ( fxn === true ) { - // OVERALL source - arry = source( table, column, onlyAvail ); - } else if ( fxn instanceof $ || ( $.type( fxn ) === 'string' && fxn.indexOf( '' ) >= 0 ) ) { - // selectSource is a jQuery object or string of options - return fxn; - } else if ( $.isArray( fxn ) ) { - arry = fxn; - } else if ( $.type( source ) === 'object' && fxn ) { - // custom select source function for a SPECIFIC COLUMN - arry = fxn( table, column, onlyAvail ); - } - if ( arry === false ) { - // fall back to original method - arry = tsf.getOptions( table, column, onlyAvail ); - } - - return tsf.processOptions( table, column, arry ); - - }, - processOptions: function( table, column, arry ) { - if ( !$.isArray( arry ) ) { - return false; - } - table = $( table )[0]; - var cts, txt, indx, len, parsedTxt, str, - c = table.config, - validColumn = typeof column !== 'undefined' && column !== null && column >= 0 && column < c.columns, - parsed = []; - // get unique elements and sort the list - // if $.tablesorter.sortText exists ( not in the original tablesorter ), - // then natural sort the list otherwise use a basic sort - arry = $.grep( arry, function( value, indx ) { - if ( value.text ) { - return true; - } - return $.inArray( value, arry ) === indx; - }); - if ( validColumn && c.$headerIndexed[ column ].hasClass( 'filter-select-nosort' ) ) { - // unsorted select options - return arry; - } else { - len = arry.length; - // parse select option values - for ( indx = 0; indx < len; indx++ ) { - txt = arry[ indx ]; - // check for object - str = txt.text ? txt.text : txt; - // sortNatural breaks if you don't pass it strings - parsedTxt = ( validColumn && c.parsers && c.parsers.length && - c.parsers[ column ].format( str, table, [], column ) || str ).toString(); - parsedTxt = c.widgetOptions.filter_ignoreCase ? parsedTxt.toLowerCase() : parsedTxt; - // parse array data using set column parser; this DOES NOT pass the original - // table cell to the parser format function - if ( txt.text ) { - txt.parsed = parsedTxt; - parsed.push( txt ); - } else { - parsed.push({ - text : txt, - // check parser length - fixes #934 - parsed : parsedTxt - }); - } - } - // sort parsed select options - cts = c.textSorter || ''; - parsed.sort( function( a, b ) { - var x = a.parsed, - y = b.parsed; - if ( validColumn && typeof cts === 'function' ) { - // custom OVERALL text sorter - return cts( x, y, true, column, table ); - } else if ( validColumn && typeof cts === 'object' && cts.hasOwnProperty( column ) ) { - // custom text sorter for a SPECIFIC COLUMN - return cts[column]( x, y, true, column, table ); - } else if ( ts.sortNatural ) { - // fall back to natural sort - return ts.sortNatural( x, y ); - } - // using an older version! do a basic sort - return true; - }); - // rebuild arry from sorted parsed data - arry = []; - len = parsed.length; - for ( indx = 0; indx < len; indx++ ) { - arry.push( parsed[indx] ); - } - return arry; - } - }, - getOptions: function( table, column, onlyAvail ) { - table = $( table )[0]; - var rowIndex, tbodyIndex, len, row, cache, indx, child, childLen, - c = table.config, - wo = c.widgetOptions, - arry = []; - for ( tbodyIndex = 0; tbodyIndex < c.$tbodies.length; tbodyIndex++ ) { - cache = c.cache[tbodyIndex]; - len = c.cache[tbodyIndex].normalized.length; - // loop through the rows - for ( rowIndex = 0; rowIndex < len; rowIndex++ ) { - // get cached row from cache.row ( old ) or row data object - // ( new; last item in normalized array ) - row = cache.row ? - cache.row[ rowIndex ] : - cache.normalized[ rowIndex ][ c.columns ].$row[0]; - // check if has class filtered - if ( onlyAvail && row.className.match( wo.filter_filteredRow ) ) { - continue; - } - // get non-normalized cell content - if ( wo.filter_useParsedData || - c.parsers[column].parsed || - c.$headerIndexed[column].hasClass( 'filter-parsed' ) ) { - arry.push( '' + cache.normalized[ rowIndex ][ column ] ); - // child row parsed data - if ( wo.filter_childRows && wo.filter_childByColumn ) { - childLen = cache.normalized[ rowIndex ][ c.columns ].$row.length - 1; - for ( indx = 0; indx < childLen; indx++ ) { - arry.push( '' + cache.normalized[ rowIndex ][ c.columns ].child[ indx ][ column ] ); - } - } - } else { - // get raw cached data instead of content directly from the cells - arry.push( cache.normalized[ rowIndex ][ c.columns ].raw[ column ] ); - // child row unparsed data - if ( wo.filter_childRows && wo.filter_childByColumn ) { - childLen = cache.normalized[ rowIndex ][ c.columns ].$row.length; - for ( indx = 1; indx < childLen; indx++ ) { - child = cache.normalized[ rowIndex ][ c.columns ].$row.eq( indx ).children().eq( column ); - arry.push( '' + ts.getElementText( c, child, column ) ); - } - } - } - } - } - return arry; - }, - buildSelect: function( table, column, arry, updating, onlyAvail ) { - table = $( table )[0]; - column = parseInt( column, 10 ); - if ( !table.config.cache || $.isEmptyObject( table.config.cache ) ) { - return; - } - - var indx, val, txt, t, $filters, $filter, option, - c = table.config, - wo = c.widgetOptions, - node = c.$headerIndexed[ column ], - // t.data( 'placeholder' ) won't work in jQuery older than 1.4.3 - options = '', - // Get curent filter value - currentValue = c.$table - .find( 'thead' ) - .find( 'select.' + tscss.filter + '[data-column="' + column + '"]' ) - .val(); - - // nothing included in arry ( external source ), so get the options from - // filter_selectSource or column data - if ( typeof arry === 'undefined' || arry === '' ) { - arry = tsf.getOptionSource( table, column, onlyAvail ); - } - - if ( $.isArray( arry ) ) { - // build option list - for ( indx = 0; indx < arry.length; indx++ ) { - option = arry[ indx ]; - if ( option.text ) { - // OBJECT!! add data-function-name in case the value is set in filter_functions - option['data-function-name'] = typeof option.value === 'undefined' ? option.text : option.value; - - // support jQuery < v1.8, otherwise the below code could be shortened to - // options += $( '