diff --git a/README.md b/README.md
index e797889999e112a4910b22ed5c91c8f40f0749ef..850041f6a18de194bef84ed80433135a0f2c38a5 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
-
-
+
+
@@ -55,20 +55,20 @@ oauthserver是一个基于Spring Boot Oauth2的完整的独立的Oauth2 Server
**更多历史更新日志查看[CHANGE_LOG.md](tutorial/CHANGE_LOG.md)**
## 使用流程
+### 准备
+IntelliJ IDEA或Eclipse请先安装lombok插件。
+- IntelliJ IDEA安装请参考[https://projectlombok.org/setup/intellij](https://projectlombok.org/setup/intellij);
+- Eclipse安装请参考[https://projectlombok.org/setup/eclipse](https://projectlombok.org/setup/eclipse)。
### 1. 安装jar
有部分自建jar在中央仓库是没有的,需要使用`mvn install`安装到本地。执行“需要安装的jars”文件夹下的`install.bat`安装。
### 2. 建表
- MySQL
-请执行`schema-mysql.sql`,完成数据表的创建和测试数据的导入。
-- PostgreSQL
-请执行`schema-pg.sql`,完成数据表的创建和测试数据的导入。
+请执行`schema-mysql.sql`,完成数据表的创建和测试数据的导入。之后,请执行SQL增量更新目录下的增量更新SQL。
- Oracle
-请执行`schema-oracle.sql`,完成数据表的创建和测试数据的导入。
+请执行`schema-oracle.sql`,完成数据表的创建和测试数据的导入。之后,请执行SQL增量更新目录下的增量更新SQL。
### 3. 修改数据库连接信息
- MySQL
-连接信息在`application-mysql.yml`里。修改完数据库连接信息后,还需要设置`application-common.yml`的`spring.profiles.active=mysql`。
-- PostgreSQL
-连接信息在`application-pg.yml`里。修改完数据库连接信息后,还需要设置`application-common.yml`的`spring.profiles.active=pg`。
+连接信息在`application-mysql.yml`里。修改完数据库连接信息后,还需要设置`application-common.yml`的`spring.profiles.active=mysql`。
- Oracle
连接信息在`application-oracle.yml`里。修改完数据库连接信息后,还需要设置`application-common.yml`的`spring.profiles.active=oracle`。
### 4. 运行
diff --git "a/SQL\345\242\236\351\207\217\346\233\264\346\226\260/schema-mysql-20190512.sql" "b/SQL\345\242\236\351\207\217\346\233\264\346\226\260/schema-mysql-20190512.sql"
new file mode 100644
index 0000000000000000000000000000000000000000..e1e09015b068b651b5e5ef23cd9a8dcbb73d7428
--- /dev/null
+++ "b/SQL\345\242\236\351\207\217\346\233\264\346\226\260/schema-mysql-20190512.sql"
@@ -0,0 +1,2 @@
+-- 2019-05-11 by simon 修改t_s_column_ui的id列为long类型
+ALTER TABLE t_s_column_ui MODIFY COLUMN id INT(20);
\ No newline at end of file
diff --git "a/SQL\345\242\236\351\207\217\346\233\264\346\226\260/schema-oracle-20190509.sql" "b/SQL\345\242\236\351\207\217\346\233\264\346\226\260/schema-oracle-20190509.sql"
new file mode 100644
index 0000000000000000000000000000000000000000..eafb428c44f17508ce7c8e0ccc64f97c94882bcb
--- /dev/null
+++ "b/SQL\345\242\236\351\207\217\346\233\264\346\226\260/schema-oracle-20190509.sql"
@@ -0,0 +1,24 @@
+-- 2019-05-11 by simon 修改T_USERS表的sex列为boolean
+ALTER TABLE T_USERS ADD SEX_TEMP CHAR (1) CHECK (SEX_TEMP IN(0, 1));
+UPDATE T_USERS SET SEX_TEMP = SEX;
+ALTER TABLE T_USERS MODIFY SEX NULL;
+UPDATE T_USERS SET SEX = NULL;
+ALTER TABLE T_USERS MODIFY (SEX CHAR (1) CHECK (SEX IN(0, 1)));
+UPDATE T_USERS SET SEX = SEX_TEMP;
+UPDATE T_USERS SET SEX = '1' WHERE SEX IS NULL;
+ALTER TABLE T_USERS MODIFY SEX NOT NULL;
+ALTER TABLE T_USERS DROP COLUMN SEX_TEMP;
+
+-- 2019-05-11 by simon 修改T_USERS表的enabled列为boolean
+ALTER TABLE T_USERS ADD ENABLED_TEMP CHAR (1) CHECK (ENABLED_TEMP IN(0, 1));
+UPDATE T_USERS SET ENABLED_TEMP = ENABLED;
+ALTER TABLE T_USERS MODIFY ENABLED NULL;
+UPDATE T_USERS SET ENABLED = NULL;
+ALTER TABLE T_USERS MODIFY (ENABLED CHAR (1) CHECK (ENABLED IN(0, 1)));
+UPDATE T_USERS SET ENABLED = ENABLED_TEMP;
+UPDATE T_USERS SET ENABLED = '1' WHERE enabled IS NULL;
+ALTER TABLE T_USERS MODIFY ENABLED NOT NULL;
+ALTER TABLE T_USERS DROP COLUMN ENABLED_TEMP;
+
+-- 2019-05-11 by simon 修改T_S_COLUMN_UI表的id列为long类型
+ALTER TABLE T_S_COLUMN_UI MODIFY (ID NUMBER(20));
\ No newline at end of file
diff --git a/api/pom.xml b/api/pom.xml
index 1e4c19bb634adc579f6f10eaa650f075fbdc42a3..628dccb9f51e289f16f7a552f4819fba54676b66 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -326,22 +326,6 @@
popper.js
1.12.5
-
-
- org.webjars
- easyui
- 1.7.0
-
-
-
-
-
-
- com.github.jeesun.thymeleaf.extras
- thymeleaf-extras-db
- 0.0.1
-
-
com.simon
diff --git a/api/src/main/java/com/simon/common/config/CustomDialectConfig.java b/api/src/main/java/com/simon/common/config/CustomDialectConfig.java
index c42bb21359dd0db11843a55d3a812ccbd55da454..931ac245a1296c4cd24f275b44a9165da648f82a 100644
--- a/api/src/main/java/com/simon/common/config/CustomDialectConfig.java
+++ b/api/src/main/java/com/simon/common/config/CustomDialectConfig.java
@@ -1,6 +1,5 @@
package com.simon.common.config;
-import com.github.jeesun.thymeleaf.extras.dialect.DbDialect;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.CacheManager;
import org.springframework.context.annotation.Bean;
@@ -23,11 +22,6 @@ public class CustomDialectConfig {
@Autowired
private CacheManager cacheManager;
- @Bean
- public DbDialect helloDialect(){
- return new DbDialect(jdbcTemplate, cacheManager);
- }
-
/*@Bean
public com.jeesun.thymeleaf.extras.dialect.HelloDialect helloDialect(){
return new com.jeesun.thymeleaf.extras.dialect.HelloDialect(jdbcTemplate);
diff --git a/api/src/main/java/com/simon/common/config/RedisConfig.java b/api/src/main/java/com/simon/common/config/RedisConfig.java
index 82c8602728afc4bff66d5a0b343b9551bd739613..ce1e881bb5e19fae8ffb2e2f14c3c5ac8e3cb527 100644
--- a/api/src/main/java/com/simon/common/config/RedisConfig.java
+++ b/api/src/main/java/com/simon/common/config/RedisConfig.java
@@ -39,7 +39,7 @@ public class RedisConfig extends CachingConfigurerSupport {
public CacheManager cacheManager(RedisTemplate redisTemplate){
RedisCacheManager cacheManager = new RedisCacheManager(redisTemplate);
//设置缓存过期时间
- //1小时
+ //2小时
cacheManager.setDefaultExpiration(7200);
//将key的前后缀合并在一起
cacheManager.setUsePrefix(true);
diff --git a/api/src/main/java/com/simon/common/config/Swagger2.java b/api/src/main/java/com/simon/common/config/Swagger2.java
index d55a08b7b2e02ca8e53ab15d2e086c8723fd5c93..e985ff477ac91948f9e9240f3f27c4f56f1f0ded 100644
--- a/api/src/main/java/com/simon/common/config/Swagger2.java
+++ b/api/src/main/java/com/simon/common/config/Swagger2.java
@@ -1,5 +1,7 @@
package com.simon.common.config;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@@ -23,9 +25,6 @@ import java.util.List;
@Configuration
@EnableSwagger2
public class Swagger2 {
- @Value("${swagger2.base-package}")
- private String basePackage;
-
@Value("${swagger2.title}")
private String title;
@@ -59,8 +58,8 @@ public class Swagger2 {
.useDefaultResponseMessages(false)
.apiInfo(apiInfo())
.select()
- .apis(RequestHandlerSelectors
- .basePackage(basePackage))
+ .apis(RequestHandlerSelectors.withClassAnnotation(Api.class))
+ .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
.paths(PathSelectors.regex("^(?!oauth).*$"))
.build()
.securitySchemes(securitySchemes())
diff --git a/api/src/main/java/com/simon/controller/AliPayController.java b/api/src/main/java/com/simon/controller/AliPayController.java
index 922e747f2ab75c79276f6ab952458f6b34df66c0..21214b92c4e11bac30300a543c2565ba3d9e6c68 100644
--- a/api/src/main/java/com/simon/controller/AliPayController.java
+++ b/api/src/main/java/com/simon/controller/AliPayController.java
@@ -236,10 +236,10 @@ public class AliPayController extends BaseController {
//请在这里加上商户的业务逻辑程序代码
//判断total_amount是否确实为该订单的实际金额(即商户订单创建时的金额)
- if(Float.parseFloat(receiptAmount) < Float.parseFloat(totalAmount)){//如果实付金额小于订单金额
+ /*if(Float.parseFloat(receiptAmount) < Float.parseFloat(totalAmount)){//如果实付金额小于订单金额
log.error("实付金额小于订单金额!");
return "fail";
- }
+ }*/
//——请根据您的业务逻辑来编写程序(以下代码仅作参考)——
diff --git a/api/src/main/java/com/simon/controller/TableController.java b/api/src/main/java/com/simon/controller/TableController.java
deleted file mode 100644
index f08a5fbba838cbfca30c5a1e001bd60f8e2f5ccc..0000000000000000000000000000000000000000
--- a/api/src/main/java/com/simon/controller/TableController.java
+++ /dev/null
@@ -1,176 +0,0 @@
-package com.simon.controller;
-
-import com.alibaba.fastjson.JSON;
-import com.google.common.base.CaseFormat;
-import com.simon.common.code.CodeGenerator;
-import com.simon.common.code.Column;
-import com.simon.common.code.EntityDataModel;
-import com.simon.common.code.TableInfo;
-import com.simon.common.controller.BaseController;
-import com.simon.common.domain.ResultMsg;
-import com.simon.common.domain.UserEntity;
-import com.simon.common.utils.DbUtil;
-import com.simon.service.DictTypeService;
-import io.swagger.annotations.Api;
-import io.swagger.annotations.ApiParam;
-import lombok.extern.slf4j.Slf4j;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.security.core.Authentication;
-import org.springframework.stereotype.Controller;
-import org.springframework.ui.Model;
-import org.springframework.web.bind.annotation.*;
-import springfox.documentation.annotations.ApiIgnore;
-
-import javax.sql.DataSource;
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-
-/**
- * 数据表
- *
- * @author simon
- * @date 2018-10-06
- **/
-@ApiIgnore
-@Api(description = "数据表")
-@Slf4j
-@Controller
-@RequestMapping("/tables")
-public class TableController extends BaseController {
- @Autowired
- private DataSource dataSource;
-
- @Autowired
- private DictTypeService dictTypeService;
-
- @RequestMapping(params = "list", method = RequestMethod.GET)
- public String list(){
- return "table_list";
- }
-
- @RequestMapping(params = "easyui-list", method = RequestMethod.GET)
- public String easyUiList(){
- return "easyui/table_list";
- }
-
- @RequestMapping(value = "data", method = RequestMethod.GET)
- @ResponseBody
- public Object getTables(
- @ApiParam(value = "模糊查询表名") @RequestParam(required = false) String tableName,
- @ApiParam(value = "模糊查询表标注") @RequestParam(required = false) String tableComment,
- @ApiParam(value = "页码", defaultValue = "1", required = true) @RequestParam Integer pageNo,
- @ApiParam(value = "每页条数", defaultValue = "10", required = true)@RequestParam Integer pageSize) throws Exception {
- String driver = "com.mysql.jdbc.Driver";
- /*String url = "jdbc:mysql://127.0.0.1:3306/thymelte?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useSSL=false";
- String user = "root";
- String pwd = "19941017";*/
- /*String url = "jdbc:mysql://47.105.43.147:3306/top_dev?characterEncoding=utf8&useSSL=true";
- String user = "root";
- String pwd = "top@123456";*/
- List tableInfoList = DbUtil.getTables(CodeGenerator.JDBC_DIVER_CLASS_NAME, CodeGenerator.JDBC_URL, CodeGenerator.JDBC_USERNAME, CodeGenerator.JDBC_PASSWORD, tableName, tableComment);
-
- if (null != pageNo && null != pageSize){
- Map resultMap = new HashMap<>(2);
- resultMap.put("total", tableInfoList.size());
- int toIndex = (pageNo - 1) * pageSize + pageSize;
- if (toIndex > tableInfoList.size()){
- toIndex = tableInfoList.size();
- }
- resultMap.put("rows", tableInfoList.subList((pageNo - 1) * pageSize, toIndex));
- return resultMap;
- }else{
- return tableInfoList;
- }
- }
-
- @RequestMapping(value = "generate", method = RequestMethod.GET)
- @ResponseBody
- public ResultMsg generate(
- @RequestParam String tableName,
- @RequestParam String entityName,
- @ApiParam(value = "表id列类型", required = false, example = "Long") @RequestParam(required = false, defaultValue = "Long") String idType,
- @RequestParam(required = false) String genModules,
- Authentication authentication){
- if(null != authentication){
- UserEntity userEntity = getCurrentUser(authentication);
- CodeGenerator.genCodeByCustomModelName(tableName, entityName, idType, genModules, userEntity.getUsername());
- }else{
- CodeGenerator.genCodeByCustomModelName(tableName, entityName, idType, genModules);
- }
- return ResultMsg.success();
- }
-
- @GetMapping(value = "codeGenerate")
- public String codeGenerate(
- Model model,
- @RequestParam String tableName,
- @RequestParam(required = false) String tableComment,
- @RequestParam String entityName){
- model.addAttribute("tableName", tableName);
- model.addAttribute("tableComment", tableComment);
- model.addAttribute("entityName", entityName);
- try {
- EntityDataModel entityDataModel = DbUtil.getEntityModel(dataSource.getConnection(), tableName, CodeGenerator.BASE_PACKAGE, entityName);
-
- //想隐藏显示的列
- List hiddenColumns = new ArrayList<>();
- hiddenColumns.add("createDate");
- hiddenColumns.add("createBy");
- hiddenColumns.add("updateDate");
- hiddenColumns.add("updateBy");
-
- //想不在页面上输入的列
- List denyInputColumns = new ArrayList<>();
- denyInputColumns.add("createDate");
- denyInputColumns.add("createBy");
- denyInputColumns.add("updateDate");
- denyInputColumns.add("updateBy");
-
- for(Column column : entityDataModel.getColumns()){
- if(hiddenColumns.contains(column.getName())){
- column.setHidden(true);
- }
- if (denyInputColumns.contains(column.getName())){
- column.setAllowInput(false);
- }
- }
-
- log.info(JSON.toJSONString(entityDataModel.getColumns()));
- model.addAttribute("tableEntity", entityDataModel);
-
- } catch (Exception e) {
- e.printStackTrace();
- }
-
- model.addAttribute("easyuiComponents", dictTypeService.getTypeByGroupCode("easyui_component"));
- return "easyui/code_generate";
- }
-
- @RequestMapping(value = "genCode", method = {RequestMethod.GET, RequestMethod.POST})
- @ResponseBody
- public ResultMsg genCode(
- @ApiParam(value = "允许访问的角色,多个逗号隔开", required = true) @RequestParam String allowedRoles,
- @ApiParam(value = "要生成的页面的父菜单id", required = true) @RequestParam Long pid,
- @RequestParam String tableName,
- @RequestParam String entityName,
- @ApiParam(value = "表注释", required = true) @RequestParam String tableComment,
- @RequestParam String idType,
- @RequestParam String genModules,
- @RequestParam String columns){
- List columnList = JSON.parseArray(columns, Column.class);
- EntityDataModel entityDataModel = new EntityDataModel();
- entityDataModel.setBasePackage(CodeGenerator.BASE_PACKAGE);
- entityDataModel.setEntityPackage(CodeGenerator.BASE_PACKAGE + ".entity");
- entityDataModel.setFileSuffix(".java");
- entityDataModel.setEntityName(entityName);
- entityDataModel.setTableName(tableName);
- entityDataModel.setTableComment(tableComment);
- entityDataModel.setColumns(columnList);
- entityDataModel.setModelNameUpperCamel(entityName);
- entityDataModel.setModelNameLowerCamel(CaseFormat.LOWER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, entityDataModel.getEntityName()));
- CodeGenerator.genCodeByCustomModelName(tableName, entityName, idType, genModules, null, entityDataModel);
- return ResultMsg.success();
- }
-}
diff --git a/api/src/main/resources/application.properties b/api/src/main/resources/application.properties
index 959e78dad0b37977b3084b66ad22ea429c10d9d1..15e98fb9b82ec6121eac6699c975a6e483b19574 100644
--- a/api/src/main/resources/application.properties
+++ b/api/src/main/resources/application.properties
@@ -4,7 +4,6 @@ spring.profiles.include=common
server.port=8181
# swagger2
-swagger2.base-package=@base.package@.controller
swagger2.title=restful api documentation
swagger2.description=api service for app
swagger2.terms-of-service-url=NO terms of service
diff --git a/api/src/main/resources/code-gen.properties b/api/src/main/resources/code-gen.properties
index d7cfc93f5c49f54ef6e76be59db3ed5ddee4fca3..232d5d25036437169ebbd0014d487ff214c413f9 100644
--- a/api/src/main/resources/code-gen.properties
+++ b/api/src/main/resources/code-gen.properties
@@ -23,16 +23,5 @@ jdbc_driver_class_name=com.mysql.cj.jdbc.Driver
#jdbc_driver_class_name=oracle.jdbc.driver.OracleDriver
# Spring BootģĿ¼
-spring_boot_module_dir=/api
-# ߣɵĴ@authorע
-author=SimonSun
-# ɵjavaļ洢·
-java_path=/src/test/java
-# ɵԴļ洢·
-resources_path=/src/test/resources
-# ĿƣԼĿ
-base_package=@base.package@
# Mapperӿڵȫ(ڶᵽĺļ̳нӿMapper)
-mapper_interface_reference=@base.package@.common.mapper.MyMapper
-# Ҫɵģ飬ѡֵmodelAndMapper,repository,service,controller,controllerAndPageָmodelAndMapper,repository,service
-gen_modules=modelAndMapper
\ No newline at end of file
+mapper_interface_reference=@base.package@.common.mapper.MyMapper
\ No newline at end of file
diff --git a/api/src/main/resources/static/css/common.css b/api/src/main/resources/static/css/common.css
deleted file mode 100644
index 44ca45f2f0c80173e8427b5806f699111a4dfc6c..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/common.css
+++ /dev/null
@@ -1,78 +0,0 @@
-/**
-*
-* User: simon
-* Date: 2018/06/09
-* Time: 1:14
-**/
-.outer-wrapper {
- display: table;
- width: 100%;
- height: 100%;
-}
-
-.inner-wrapper {
- display:table-cell;
- vertical-align:middle;
- padding:15px;
-}
-.form-signin {
- max-width: 380px;
- padding: 10px 10px 45px;
- margin: 0 auto;
-}
-.form-signin .form-signin-heading,
-.form-signin .checkbox {
- margin-bottom: 30px;
-}
-.form-signin .checkbox {
- font-weight: normal;
-}
-.form-signin .form-control {
- position: relative;
- font-size: 16px;
- height: auto;
- padding: 10px;
-}
-.form-signin .form-control:focus {
- z-index: 2;
-}
-.form-signin input[type="text"] {
- margin-bottom: -1px;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-.form-signin input[type="password"] {
- margin-bottom: -1px;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-
-/**
-jquery validate 错误提示
- */
-.error{
- color:red;
-}
-
-/**
-adminlte主体内容的背景色,解决bootstrap table行分隔线显示问题。
- */
-.bg-color-white{
- background-color: white;
-}
-
-table img{
- max-width: 100px;
- max-height: 100px;
-}
-
-.modal img{
- max-width: 300px;
- max-height: 300px;
-}
-
-.content-header{
- padding: 3px;
- background-color: #F9F9F9;
- font-weight: bold;
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/css/coverr.css b/api/src/main/resources/static/css/coverr.css
deleted file mode 100644
index decab9412c2addf89ca459435ba193fe3fa5d390..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/coverr.css
+++ /dev/null
@@ -1,47 +0,0 @@
-/**
-*
-* User: simon
-* Date: 2018/06/09
-* Time: 3:14
-**/
-.homepage-hero-module {
- border-right: none;
- border-left: none;
- position: relative;
-}
-.no-video .video-container video,
-.touch .video-container video {
- display: none;
-}
-.no-video .video-container .poster,
-.touch .video-container .poster {
- display: block !important;
-}
-.video-container {
- position: relative;
- bottom: 0%;
- left: 0%;
- height: 100%;
- width: 100%;
- overflow: hidden;
- background: #000;
-}
-.video-container .poster img {
- width: 100%;
- bottom: 0;
- position: absolute;
-}
-.video-container .filter {
- z-index: 100;
- position: absolute;
- background: rgba(0, 0, 0, 0.4);
- width: 100%;
-}
-.video-container video {
- position: absolute;
- z-index: 0;
- bottom: 0;
-}
-.video-container video.fillWidth {
- width: 100%;
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/css/easyui/common.css b/api/src/main/resources/static/css/easyui/common.css
deleted file mode 100644
index 0df2d83cb29361281c4792369323b5c1fb5b1412..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/easyui/common.css
+++ /dev/null
@@ -1,22 +0,0 @@
-/**
-*
-* User: simon
-* Date: 2018/11/04
-* Time: 17:24
-**/
-@import url("navbar.css");
-
-form>div{
- margin-bottom: 20px;
-}
-
-/**
-字体大小同步
- */
-.button-group i.fa{
- font-size:12px;
-}
-
-.c-primary,.c-secondary,.c-success,.c-info,.c-warning,.c-danger,.c-dark,.c-light,.c-basic{
-
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/css/easyui/dropdown.css b/api/src/main/resources/static/css/easyui/dropdown.css
deleted file mode 100644
index bc96ec84fe2f6188ad1dc92dfda1fa8db035af3e..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/easyui/dropdown.css
+++ /dev/null
@@ -1,44 +0,0 @@
-/**
-*
-* User: simon
-* Date: 2018/11/04
-* Time: 21:37
-**/
-.dropbtn {
- background-color: #3498DB;
- color: white;
- padding: 16px;
- font-size: 16px;
- border: none;
- cursor: pointer;
-}
-
-.dropbtn:hover, .dropbtn:focus {
- background-color: #2980B9;
-}
-
-.dropdown {
- position: fixed;
- display: inline-block;
-}
-
-.dropdown-content {
- display: none;
- position: absolute;
- background-color: #f1f1f1;
- min-width: 160px;
- overflow: auto;
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
- z-index: 1;
-}
-
-.dropdown-content a {
- color: black;
- padding: 12px 16px;
- text-decoration: none;
- display: block;
-}
-
-.dropdown a:hover {background-color: #ddd;}
-
-.show {display: block;}
\ No newline at end of file
diff --git a/api/src/main/resources/static/css/easyui/navbar.css b/api/src/main/resources/static/css/easyui/navbar.css
deleted file mode 100644
index d6acd06dad8f4e42f8bd4020b68255694db5d5c2..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/easyui/navbar.css
+++ /dev/null
@@ -1,63 +0,0 @@
-/**
-*
-* User: simon
-* Date: 2018/11/05
-* Time: 0:23
-**/
-.navbar {
- overflow: hidden;
- background-color: #333;
- font-family: Arial, Helvetica, sans-serif;
-}
-
-.navbar a {
- float: left;
- font-size: 16px;
- color: white;
- text-align: center;
- padding: 14px 16px;
- text-decoration: none;
-}
-
-.dropdown {
- float: left;
- overflow: auto;
-}
-
-.dropdown .dropbtn {
- font-size: 16px;
- border: none;
- outline: none;
- color: white;
- padding: 7px 16px;
- background-color: inherit;
- font-family: inherit;
- margin: 0;
-}
-
-.navbar a:hover, .dropdown:hover .dropbtn {
- background-color: #2980B9;
-}
-
-.dropdown-content {
- display: none;
- /*解决jQuery easyui下拉菜单被layout遮挡*/
- position: fixed;
- background-color: #f9f9f9;
- min-width: 160px;
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
- z-index: 1;
-}
-
-.dropdown-content a {
- float: none;
- color: black;
- padding: 12px 16px;
- text-decoration: none;
- display: block;
- text-align: left;
-}
-
-.dropdown-content a:hover {
- background-color: #ddd;
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/css/easyui/select2-material.css b/api/src/main/resources/static/css/easyui/select2-material.css
deleted file mode 100644
index 74f18b20f05032fad40690917a7ae8bd17a16db6..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/easyui/select2-material.css
+++ /dev/null
@@ -1,257 +0,0 @@
-/**
- * Basic styles
- */
-body {
- overflow-x: hidden;
- overflow-y: scroll;
- max-width: 600px;
- margin: 2rem auto;
-}
-
-ul {
- margin: 0;
- padding: 0;
-}
-
-:focus {
- outline: none;
-}
-
-:disabled {
- background-color: transparent;
-}
-
-/**
- * Multiple Select2
- */
-.select2-container--material {
- width: 100% !important;
- /**
- * Textbox
- */
- /**
- * Dropdown
- */
- /**
- * Options
- */
- /**
- * Focused textbox
- */
- /**
- * Disabled textbox
- */
-}
-.select2-container--material ::-webkit-input-placeholder {
- color: inherit;
-}
-.select2-container--material :-ms-input-placeholder {
- color: inherit;
-}
-.select2-container--material ::-ms-input-placeholder {
- color: inherit;
-}
-.select2-container--material ::placeholder {
- color: inherit;
-}
-.select2-container--material .select2-selection {
- /* @extend input */
- overflow: visible;
- font: inherit;
- touch-action: manipulation;
- margin: 0;
- line-height: inherit;
- border-radius: 0;
- box-sizing: inherit;
- /* @extend .form-control */
- display: block;
- width: 100%;
- color: #55595c;
- background-clip: padding-box;
- border: 1px solid rgba(0, 0, 0, 0.15);
- padding: .5rem 0 .6rem;
- font-size: 1rem;
- line-height: 1.5;
- background-color: transparent;
- background-image: none;
- border-radius: 0;
- margin-top: .2rem;
- margin-bottom: 1rem;
- /* @extend input[type=text] */
- background-color: transparent;
- border: none;
- border-bottom: 1px solid #ccc;
- border-radius: 0;
- outline: 0;
- width: 100%;
- font-size: 1rem;
- box-shadow: none;
- transition: all .3s;
- min-height: 2.1rem;
-}
-.select2-container--material .select2-selection .select2-selection__rendered {
- padding-left: 0;
-}
-.select2-container--material .select2-selection--single .select2-selection__rendered {
- float: left;
-}
-.select2-container--material .select2-selection--single .select2-selection__arrow {
- float: right;
-}
-.select2-container--material .select2-selection--multiple {
- /**
- * Multiple selected options
- */
- /**
- * Multiple selected option clear button
- */
-}
-.select2-container--material .select2-selection--multiple .select2-selection__rendered {
- width: 100%;
-}
-.select2-container--material .select2-selection--multiple .select2-selection__rendered li {
- list-style: none;
-}
-.select2-container--material .select2-selection--multiple .select2-selection__choice {
- /* @extend .mdl-chip */
- height: 32px;
- line-height: 32px;
- padding: 0 12px;
- border: 0;
- border-radius: 16px;
- background-color: #dedede;
- display: inline-block;
- color: rgba(0, 0, 0, 0.87);
- margin: 2px 0;
- font-size: 0;
- white-space: nowrap;
- /* @extend .mdl-chip__text */
- font-size: 13px;
- vertical-align: middle;
- display: inline-block;
- float: left;
- margin-right: 8px;
- margin-bottom: 4px;
-}
-.select2-container--material .select2-selection--multiple .select2-selection__choice__remove {
- /* Hide default content */
- font-size: 0;
- opacity: 0.38;
- cursor: pointer;
- float: right;
- margin-top: 4px;
- margin-right: -6px;
- margin-left: 6px;
- transition: opacity;
-}
-.select2-container--material .select2-selection--multiple .select2-selection__choice__remove::before {
- content: "cancel";
- /* @extend .material-icons */
- font-family: 'Material Icons';
- font-weight: normal;
- font-style: normal;
- font-size: 24px;
- line-height: 1;
- letter-spacing: normal;
- text-transform: none;
- display: inline-block;
- white-space: nowrap;
- word-wrap: normal;
- direction: ltr;
- -webkit-font-feature-settings: 'liga';
- -webkit-font-smoothing: antialiased;
- color: #000;
-}
-.select2-container--material .select2-selection--multiple .select2-selection__choice__remove:hover {
- opacity: 0.54;
-}
-.select2-container--material .select2-search--inline .select2-search__field {
- width: 100%;
- margin-top: 0;
- /* Match input[type=text] */
- height: 34px;
- line-height: 1;
-}
-.select2-container--material .select2-dropdown {
- border: 0;
-}
-.select2-container--material .select2-dropdown .select2-search__field {
- min-height: 2.1rem;
- margin-bottom: 16px;
- border: 0;
- border-bottom: 1px solid #ccc;
- transition: all .3s;
-}
-.select2-container--material .select2-dropdown .select2-search__field:focus {
- border-bottom: 1px solid #4285f4;
- box-shadow: 0 1px 0 0 #4585f4;
-}
-.select2-container--material .select2-results__options {
- /* @extend .zf-shadow-depth* */
- box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
- /* @extend .dropdown-content */
- background-color: #fff;
- margin: 0;
- min-width: 100px;
- max-height: 650px;
- overflow-y: auto;
- z-index: 999;
- will-change: width,height;
- /* @extend .dropdown-content inline styles */
-}
-.select2-container--material .select2-results__option {
- /* @extend .dropdown-content li */
- cursor: pointer;
- clear: both;
- color: rgba(0, 0, 0, 0.87);
- line-height: 1.5rem;
- text-align: left;
- text-transform: none;
- /* @extend .dropdown-content li>a, .dropdown-content li>span */
- font-size: 1.2rem;
- display: block;
- padding: 1rem;
- /**
- * Disabled options
- */
- /**
- * Selected option
- */
- /**
- * Active/hovered option
- */
-}
-.select2-container--material .select2-results__option[aria-disabled=true] {
- /* @extend .select-dropdown li.disabled */
- color: rgba(0, 0, 0, 0.3);
- background-color: transparent !important;
- cursor: context-menu;
- /* @extend .disabled */
- cursor: not-allowed;
-}
-.select2-container--material .select2-results__option[aria-selected=true] {
- /* @extend .dropdown-content li:active, .dropdow-content li:hover */
- color: #4285f4;
- background-color: #eee;
-}
-.select2-container--material .select2-results__option--highlighted[aria-selected] {
- background-color: #ddd;
-}
-.select2-container--material.select2-container--focus .select2-selection {
- /* @extend input[type=text]:focus */
- border-bottom: 1px solid #4285f4;
- box-shadow: 0 1px 0 0 #4585f4;
-}
-.select2-container--material.select2-container--disabled .select2-selection {
- /* @extend .select-wrapper input.select-dropdown:disabled */
- color: rgba(0, 0, 0, 0.3);
- cursor: default;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- border-bottom: 1px solid rgba(0, 0, 0, 0.3);
-}
-.select2-container--material.select2-container--disabled.select2-container--focus .select2-selection {
- box-shadow: none;
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/css/easyui/select2.css b/api/src/main/resources/static/css/easyui/select2.css
deleted file mode 100644
index 63c284bc3f85a2bcd7a82136c449f9f90315b68a..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/easyui/select2.css
+++ /dev/null
@@ -1,172 +0,0 @@
-/**
-*
-* User: simon
-* Date: 2018/10/25
-* Time: 16:25
-**/
-/*@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");
-@import url("https://fonts.googleapis.com/css?family=Pacifico");
-body {
- background: #e0e0e0;
- font-family: "Open Sans", sans-serif;
- font-size: 14px;
- line-height: 21px;
- padding: 15px 0;
-}
-
-h1 {
- color: #333;
- font-family: "Pacifico", cursive;
- font-size: 28px;
- line-height: 42px;
- margin: 0 0 15px;
- text-align: center;
-}
-
-.content {
- background: #fff;
- border-radius: 3px;
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075), 0 2px 4px rgba(0, 0, 0, 0.0375);
- padding: 30px 30px 20px;
-}
-
-.form-control {
- border: 1px solid #ccc;
- border-radius: 3px;
- box-shadow: none;
- margin-bottom: 15px;
-}
-.form-control:hover, .form-control:focus, .form-control:active {
- box-shadow: none;
-}
-.form-control:focus {
- border: 1px solid #34495e;
-}*/
-
-/*.select2.select2-container {
- width: 100% !important;
-}*/
-
-.select2.select2-container .select2-selection {
- border: 1px solid #ccc;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- height: 34px;
- margin-bottom: 0px;
- outline: none;
- transition: all 0.15s ease-in-out;
-}
-
-.select2.select2-container .select2-selection .select2-selection__rendered {
- color: #333;
- line-height: 32px;
- padding-right: 33px;
-}
-
-.select2.select2-container .select2-selection .select2-selection__arrow {
- background: #f8f8f8;
- border-left: 1px solid #ccc;
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
- height: 32px;
- width: 33px;
-}
-
-.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
- background: #f8f8f8;
-}
-
-.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
- -webkit-border-radius: 0 3px 0 0;
- -moz-border-radius: 0 3px 0 0;
- border-radius: 0 3px 0 0;
-}
-
-/*.select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
- border: 1px solid #34495e;
-}
-
-.select2.select2-container.select2-container--focus .select2-selection {
- border: 1px solid #34495e;
-}*/
-
-.select2.select2-container .select2-selection--multiple {
- height: auto;
- min-height: 34px;
-}
-
-.select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
- margin-top: 0;
- height: 32px;
-}
-
-.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
- display: block;
- padding: 0 4px;
- line-height: 29px;
-}
-
-.select2.select2-container .select2-selection--multiple .select2-selection__choice {
- background-color: #f8f8f8;
- border: 1px solid #ccc;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- margin: 4px 4px 0 0;
- padding: 0 6px 0 22px;
- height: 24px;
- line-height: 24px;
- font-size: 12px;
- position: relative;
-}
-
-.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
- position: absolute;
- top: 0;
- left: 0;
- height: 22px;
- width: 22px;
- margin: 0;
- text-align: center;
- color: #e74c3c;
- font-weight: bold;
- font-size: 16px;
-}
-
-.select2-container .select2-dropdown {
- background: transparent;
- border: none;
- margin-top: -5px;
-}
-
-.select2-container .select2-dropdown .select2-search {
- padding: 0;
-}
-
-.select2-container .select2-dropdown .select2-search input {
- outline: none;
- border: 1px solid #34495e;
- border-bottom: none;
- padding: 4px 6px;
-}
-
-.select2-container .select2-dropdown .select2-results {
- padding: 0;
-}
-
-.select2-container .select2-dropdown .select2-results ul {
- background: #fff;
- border: 1px solid #34495e;
-}
-
-.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
- background-color: #00BBEE;
-}
-
-/*
-.big-drop {
- width: 600px !important;
-}
-*/
diff --git a/api/src/main/resources/static/css/login.css b/api/src/main/resources/static/css/login.css
deleted file mode 100644
index 065db6be26bbb0322933eea13bcd83d2689e507a..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/login.css
+++ /dev/null
@@ -1,159 +0,0 @@
-#content-center{
- padding: 6px;
- position:absolute;
- width:360px;
- height:420px;
- top:50%;
- left:50%;
- margin-top:-210px;
- margin-left:-180px;
- background:white;
-}
-
-.input_control{
- width:320px;
- margin:20px auto;
-}
-.input_text, .button{
- box-sizing: border-box;
- text-align:center;
- font-size:16px;
- height:40px;
- border-radius:4px;
- border:1px solid #c8cccf;
- color:#6a6f77;
- -web-kit-appearance:none;
- -moz-appearance: none;
- display:block;
- outline:0;
- padding:0 1em;
- text-decoration:none;
- width:100%;
-}
-
-/**
-验证码输入框
- */
-#input_vericode{
- vertical-align: middle;
- text-align:center;
- font-size:16px;
- height:40px;
- border-radius:4px;
- border:1px solid #c8cccf;
- color:#6a6f77;
- -web-kit-appearance:none;
- -moz-appearance: none;
- outline:0;
- padding:0 1em;
- margin: auto;
- text-decoration:none;
- width:180px;
-}
-
-.disabled {
- opacity: 0.6;
- cursor: not-allowed;
-}
-.button {
- color: white;
- background-color: skyblue;
-}
-
-.button:active{
- background-color: deepskyblue;
- padding: 0;
- margin: 0;
- opacity: 1;
- transition: 0s
-}
-
-/*.button2:hover {
- box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
-}*/
-.input-text:focus{
- border:1px solid #ff7496;
-}
-::-moz-placeholder { /* Mozilla Firefox 4 to 18 */
- color: #6a6f77;
-}
-::-moz-placeholder { /* Mozilla Firefox 19+ */
- color: #6a6f77;
-}
-input::-webkit-input-placeholder{
- color: #6a6f77;
-}
-
-body{background-color: #2D2D2D}
-
-#mydiv{
- height: 100%;
- width: 100%;
-}
-
-#code,#codeimg{
- width:80px;
- font-size:16px;
- font-style:italic;
- color:green;
- border:0;
- padding:6px;
- letter-spacing:3px;
- font-weight:bolder;
-}
-
-#codeimg{
- float: right;
-}
-
-h2{
- margin: 0 0 0 30px;
- text-align: center;
- padding: 0;
- font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-weight: lighter;
-}
-.error{
- color:red;
-}
-
-#qrcode {
- width:200px;
- height:200px;
- text-align:center;
- margin:0 auto;
-}
-
-#refreshQrCode{
- visibility: hidden;
- text-align:center;
-}
-
-#jumpHint{
- display: none;
- margin:0 auto 6px auto;//上右下左
-}
-
-.hint{
- color:white;
- text-align:center;
- margin: 0 auto;
- border:1px solid #a1a1a1;
- padding:6px 6px;
- width:200px;
- border-radius:25px;
- -moz-border-radius:25px; /* 老的 Firefox */
-}
-
-.success{
- background-color: mediumseagreen;
-}
-
-.warn{
- background-color: red;
-}
-
-.paramInfo{
- text-align:center;
- color:red;
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/css/login/coverr.css b/api/src/main/resources/static/css/login/coverr.css
deleted file mode 100644
index c4643ad8e39a6e636bcc630c19c495e5d3fc4cf9..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/login/coverr.css
+++ /dev/null
@@ -1,51 +0,0 @@
-/**
-*
-* User: simon
-* Date: 2018/06/09
-* Time: 3:14
-**/
-/**
-*
-* User: simon
-* Date: 2018/06/09
-* Time: 3:14
-**/
-.homepage-hero-module {
- border-right: none;
- border-left: none;
- position: relative;
-}
-.no-video .video-container video,
-.touch .video-container video {
- display: none;
-}
-.no-video .video-container .poster,
-.touch .video-container .poster {
- display: block !important;
-}
-.video-container {
- position: relative;
- bottom: 0%;
- left: 0%;
- height: 100%;
- width: 100%;
- overflow: hidden;
-}
-.video-container .poster img {
- width: 100%;
- bottom: 0;
- position: absolute;
-}
-.video-container .filter {
- z-index: 100;
- position: absolute;
- width: 100%;
-}
-.video-container video {
- position: absolute;
- z-index: 0;
- bottom: 0;
-}
-.video-container video.fillWidth {
- width: 100%;
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/css/login/login.css b/api/src/main/resources/static/css/login/login.css
deleted file mode 100644
index aa0e69525820c2f842ab81f6995a443c36e03f51..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/login/login.css
+++ /dev/null
@@ -1,59 +0,0 @@
-/**
-*
-* User: simon
-* Date: 2018/12/26
-* Time: 12:30
-**/
-body {
- width: 100%;
- height:100%;
- overflow:scroll;
- overflow-x:hidden;
- overflow-y:hidden;
-}
-
-#code,#codeimg{
- width:100%;
- font-size:16px;
- font-style:italic;
- color:green;
- border:0;
- letter-spacing:3px;
- font-weight:bolder;
-}
-
-#qrcode {
- width:200px;
- height:200px;
- text-align:center;
- margin:0 auto;
-}
-
-#refreshQrCode{
- visibility: hidden;
- text-align:center;
-}
-
-#jumpHint{
- display: none;
- margin:0 auto 6px auto;//上右下左
-}
-
-.hint{
- color:white;
- text-align:center;
- margin: 0 auto;
- border:1px solid #a1a1a1;
- padding:6px 6px;
- width:200px;
- border-radius:25px;
- -moz-border-radius:25px; /* 老的 Firefox */
-}
-
-.success{
- background-color: mediumseagreen;
-}
-
-.warn{
- background-color: red;
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/css/nth-icons.css b/api/src/main/resources/static/css/nth-icons.css
deleted file mode 100644
index f0d325c0dc63f4f4aae546b83ff3f63ac8f2107c..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/nth-icons.css
+++ /dev/null
@@ -1,704 +0,0 @@
-
-@font-face {
- font-family: "Nth Icons";
- font-style: normal;
- font-weight: 400;
- src: url(../font/nth-icons.eot?v=.2.3);
- src: url(../font/nth-icons.eot?#iefix&v=.2.3) format("embedded-opentype"),url(../font/nth-icons.woff2?v=.2.3) format("woff2"),url(../font/nth-icons.woff?v=.2.3) format("woff"),url(../font/nth-icons.ttf?v=.2.3) format("truetype"),url(../font/nth-icons.svg?v=.2.3#web-icons) format("svg")
-}
-
-[class*=" nth-icon-"],[class^=nth-icon-] {
- position: relative;
- display: inline-block;
- font-family: "Nth Icons";
- font-style: normal;
- font-weight: 400;
- -webkit-transform: translate(0,0);
- -ms-transform: translate(0,0);
- -o-transform: translate(0,0);
- transform: translate(0,0);
- text-rendering: auto;
- speak: none;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale
-}
-
-.nth-icon-dashboard:before {
- content: "\f101"
-}
-
-.nth-icon-inbox:before {
- content: "\f102"
-}
-
-.nth-icon-cloud:before {
- content: "\f103"
-}
-
-.nth-icon-bell:before {
- content: "\f104"
-}
-
-.nth-icon-book:before {
- content: "\f105"
-}
-
-.nth-icon-bookmark:before {
- content: "\f106"
-}
-
-.nth-icon-tag:before {
- content: "\f107"
-}
-
-.nth-icon-library:before {
- content: "\f108"
-}
-
-.nth-icon-share:before {
- content: "\f109"
-}
-
-.nth-icon-reply:before {
- content: "\f10a"
-}
-
-.nth-icon-refresh:before {
- content: "\f10b"
-}
-
-.nth-icon-move:before {
- content: "\f10c"
-}
-
-.nth-icon-chat:before {
- content: "\f10d"
-}
-
-.nth-icon-chat-working:before {
- content: "\f10e"
-}
-
-.nth-icon-chat-text:before {
- content: "\f10f"
-}
-
-.nth-icon-chat-group:before {
- content: "\f110"
-}
-
-.nth-icon-envelope:before {
- content: "\f111"
-}
-
-.nth-icon-envelope-open:before {
- content: "\f112"
-}
-
-.nth-icon-user:before {
- content: "\f113"
-}
-
-.nth-icon-user-circle:before {
- content: "\f114"
-}
-
-.nth-icon-users:before {
- content: "\f115"
-}
-
-.nth-icon-user-add:before {
- content: "\f116"
-}
-
-.nth-icon-grid-9:before {
- content: "\f117"
-}
-
-.nth-icon-grid-4:before {
- content: "\f118"
-}
-
-.nth-icon-menu:before {
- content: "\f119"
-}
-
-.nth-icon-layout:before {
- content: "\f11a"
-}
-
-.nth-icon-fullscreen:before {
- content: "\f11b"
-}
-
-.nth-icon-fullscreen-exit:before {
- content: "\f11c"
-}
-
-.nth-icon-expand:before {
- content: "\f11d"
-}
-
-.nth-icon-contract:before {
- content: "\f11e"
-}
-
-.nth-icon-arrow-expand:before {
- content: "\f11f"
-}
-
-.nth-icon-arrow-shrink:before {
- content: "\f120"
-}
-
-.nth-icon-desktop:before {
- content: "\f121"
-}
-
-.nth-icon-mobile:before {
- content: "\f122"
-}
-
-.nth-icon-signal:before {
- content: "\f123"
-}
-
-.nth-icon-power:before {
- content: "\f124"
-}
-
-.nth-icon-more-horizontal:before {
- content: "\f125"
-}
-
-.nth-icon-more-vertical:before {
- content: "\f126"
-}
-
-.nth-icon-globe:before {
- content: "\f127"
-}
-
-.nth-icon-map:before {
- content: "\f128"
-}
-
-.nth-icon-flag:before {
- content: "\f129"
-}
-
-.nth-icon-pie-chart:before {
- content: "\f12a"
-}
-
-.nth-icon-stats-bars:before {
- content: "\f12b"
-}
-
-.nth-icon-pluse:before {
- content: "\f12c"
-}
-
-.nth-icon-home:before {
- content: "\f12d"
-}
-
-.nth-icon-shopping-cart:before {
- content: "\f12e"
-}
-
-.nth-icon-payment:before {
- content: "\f12f"
-}
-
-.nth-icon-briefcase:before {
- content: "\f130"
-}
-
-.nth-icon-search:before {
- content: "\f131"
-}
-
-.nth-icon-zoom-in:before {
- content: "\f132"
-}
-
-.nth-icon-zoom-out:before {
- content: "\f133"
-}
-
-.nth-icon-download:before {
- content: "\f134"
-}
-
-.nth-icon-upload:before {
- content: "\f135"
-}
-
-.nth-icon-sort-asc:before {
- content: "\f136"
-}
-
-.nth-icon-sort-des:before {
- content: "\f137"
-}
-
-.nth-icon-graph-up:before {
- content: "\f138"
-}
-
-.nth-icon-graph-down:before {
- content: "\f139"
-}
-
-.nth-icon-replay:before {
- content: "\f13a"
-}
-
-.nth-icon-edit:before {
- content: "\f13b"
-}
-
-.nth-icon-pencil:before {
- content: "\f13c"
-}
-
-.nth-icon-rubber:before {
- content: "\f13d"
-}
-
-.nth-icon-crop:before {
- content: "\f13e"
-}
-
-.nth-icon-eye:before {
- content: "\f13f"
-}
-
-.nth-icon-eye-close:before {
- content: "\f140"
-}
-
-.nth-icon-image:before {
- content: "\f141"
-}
-
-.nth-icon-gallery:before {
- content: "\f142"
-}
-
-.nth-icon-video:before {
- content: "\f143"
-}
-
-.nth-icon-camera:before {
- content: "\f144"
-}
-
-.nth-icon-folder:before {
- content: "\f145"
-}
-
-.nth-icon-clipboard:before {
- content: "\f146"
-}
-
-.nth-icon-order:before {
- content: "\f147"
-}
-
-.nth-icon-file:before {
- content: "\f148"
-}
-
-.nth-icon-copy:before {
- content: "\f149"
-}
-
-.nth-icon-add-file:before {
- content: "\f14a"
-}
-
-.nth-icon-print:before {
- content: "\f14b"
-}
-
-.nth-icon-calendar:before {
- content: "\f14c"
-}
-
-.nth-icon-time:before {
- content: "\f14d"
-}
-
-.nth-icon-trash:before {
- content: "\f14e"
-}
-
-.nth-icon-plugin:before {
- content: "\f14f"
-}
-
-.nth-icon-extension:before {
- content: "\f150"
-}
-
-.nth-icon-memory:before {
- content: "\f151"
-}
-
-.nth-icon-settings:before {
- content: "\f152"
-}
-
-.nth-icon-scissor:before {
- content: "\f153"
-}
-
-.nth-icon-wrench:before {
- content: "\f154"
-}
-
-.nth-icon-hammer:before {
- content: "\f155"
-}
-
-.nth-icon-lock:before {
- content: "\f156"
-}
-
-.nth-icon-unlock:before {
- content: "\f157"
-}
-
-.nth-icon-volume-low:before {
- content: "\f158"
-}
-
-.nth-icon-volume-high:before {
- content: "\f159"
-}
-
-.nth-icon-volume-off:before {
- content: "\f15a"
-}
-
-.nth-icon-pause:before {
- content: "\f15b"
-}
-
-.nth-icon-play:before {
- content: "\f15c"
-}
-
-.nth-icon-stop:before {
- content: "\f15d"
-}
-
-.nth-icon-musical:before {
- content: "\f15e"
-}
-
-.nth-icon-random:before {
- content: "\f15f"
-}
-
-.nth-icon-reload:before {
- content: "\f160"
-}
-
-.nth-icon-loop:before {
- content: "\f161"
-}
-
-.nth-icon-text:before {
- content: "\f162"
-}
-
-.nth-icon-bold:before {
- content: "\f163"
-}
-
-.nth-icon-italic:before {
- content: "\f164"
-}
-
-.nth-icon-underline:before {
- content: "\f165"
-}
-
-.nth-icon-format-clear:before {
- content: "\f166"
-}
-
-.nth-icon-text-type:before {
- content: "\f167"
-}
-
-.nth-icon-table:before {
- content: "\f168"
-}
-
-.nth-icon-attach-file:before {
- content: "\f169"
-}
-
-.nth-icon-paperclip:before {
- content: "\f16a"
-}
-
-.nth-icon-link-intact:before {
- content: "\f16b"
-}
-
-.nth-icon-link:before {
- content: "\f16c"
-}
-
-.nth-icon-link-broken:before {
- content: "\f16d"
-}
-
-.nth-icon-indent-increase:before {
- content: "\f16e"
-}
-
-.nth-icon-indent-decrease:before {
- content: "\f16f"
-}
-
-.nth-icon-align-justify:before {
- content: "\f170"
-}
-
-.nth-icon-align-left:before {
- content: "\f171"
-}
-
-.nth-icon-align-center:before {
- content: "\f172"
-}
-
-.nth-icon-align-right:before {
- content: "\f173"
-}
-
-.nth-icon-list-numbered:before {
- content: "\f174"
-}
-
-.nth-icon-list-bulleted:before {
- content: "\f175"
-}
-
-.nth-icon-list:before {
- content: "\f176"
-}
-
-.nth-icon-emoticon:before {
- content: "\f177"
-}
-
-.nth-icon-quote-right:before {
- content: "\f178"
-}
-
-.nth-icon-code:before {
- content: "\f179"
-}
-
-.nth-icon-code-working:before {
- content: "\f17a"
-}
-
-.nth-icon-code-unfold:before {
- content: "\f17b"
-}
-
-.nth-icon-chevron-right:before {
- content: "\f17c"
-}
-
-.nth-icon-chevron-left:before {
- content: "\f17d"
-}
-
-.nth-icon-chevron-left-mini:before {
- content: "\f17e"
-}
-
-.nth-icon-chevron-right-mini:before {
- content: "\f17f"
-}
-
-.nth-icon-chevron-up:before {
- content: "\f180"
-}
-
-.nth-icon-chevron-down:before {
- content: "\f181"
-}
-
-.nth-icon-chevron-up-mini:before {
- content: "\f182"
-}
-
-.nth-icon-chevron-down-mini:before {
- content: "\f183"
-}
-
-.nth-icon-arrow-left:before {
- content: "\f184"
-}
-
-.nth-icon-arrow-right:before {
- content: "\f185"
-}
-
-.nth-icon-arrow-up:before {
- content: "\f186"
-}
-
-.nth-icon-arrow-down:before {
- content: "\f187"
-}
-
-.nth-icon-dropdown:before {
- content: "\f188"
-}
-
-.nth-icon-dropup:before {
- content: "\f189"
-}
-
-.nth-icon-dropright:before {
- content: "\f18a"
-}
-
-.nth-icon-dropleft:before {
- content: "\f18b"
-}
-
-.nth-icon-sort-vertical:before {
- content: "\f18c"
-}
-
-.nth-icon-triangle-left:before {
- content: "\f18d"
-}
-
-.nth-icon-triangle-right:before {
- content: "\f18e"
-}
-
-.nth-icon-triangle-down:before {
- content: "\f18f"
-}
-
-.nth-icon-triangle-up:before {
- content: "\f190"
-}
-
-.nth-icon-check-circle:before {
- content: "\f191"
-}
-
-.nth-icon-check:before {
- content: "\f192"
-}
-
-.nth-icon-check-mini:before {
- content: "\f193"
-}
-
-.nth-icon-close:before {
- content: "\f194"
-}
-
-.nth-icon-close-mini:before {
- content: "\f195"
-}
-
-.nth-icon-plus-circle:before {
- content: "\f196"
-}
-
-.nth-icon-plus:before {
- content: "\f197"
-}
-
-.nth-icon-minus-circle:before {
- content: "\f198"
-}
-
-.nth-icon-minus:before {
- content: "\f199"
-}
-
-.nth-icon-alert-circle:before {
- content: "\f19a"
-}
-
-.nth-icon-alert:before {
- content: "\f19b"
-}
-
-.nth-icon-help-circle:before {
- content: "\f19c"
-}
-
-.nth-icon-help:before {
- content: "\f19d"
-}
-
-.nth-icon-info-circle:before {
- content: "\f19e"
-}
-
-.nth-icon-info:before {
- content: "\f19f"
-}
-
-.nth-icon-warning:before {
- content: "\f1a0"
-}
-
-.nth-icon-heart:before {
- content: "\f1a1"
-}
-
-.nth-icon-heart-outline:before {
- content: "\f1a2"
-}
-
-.nth-icon-star:before {
- content: "\f1a3"
-}
-
-.nth-icon-star-half:before {
- content: "\f1a4"
-}
-
-.nth-icon-star-outline:before {
- content: "\f1a5"
-}
-
-.nth-icon-thumb-up:before {
- content: "\f1a6"
-}
-
-.nth-icon-thumb-down:before {
- content: "\f1a7"
-}
-
-.nth-icon-small-point:before {
- content: "\f1a8"
-}
-
-.nth-icon-medium-point:before {
- content: "\f1a9"
-}
-
-.nth-icon-large-point:before {
- content: "\f1aa"
-}
diff --git a/api/src/main/resources/static/css/nth-icons.min.css b/api/src/main/resources/static/css/nth-icons.min.css
deleted file mode 100644
index bea48b42b6e824cec4b68c07954e7ff586c2d6e0..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/nth-icons.min.css
+++ /dev/null
@@ -1 +0,0 @@
-@font-face{font-family:"Nth Icons";font-style:normal;font-weight:400;src:url(../font/nth-icons.eot?v=.2.3);src:url(../font/nth-icons.eot?#iefix&v=.2.3) format("embedded-opentype"),url(../font/nth-icons.woff2?v=.2.3) format("woff2"),url(../font/nth-icons.woff?v=.2.3) format("woff"),url(../font/nth-icons.ttf?v=.2.3) format("truetype"),url(../font/nth-icons.svg?v=.2.3#web-icons) format("svg");}[class*=" nth-icon-"],[class^=nth-icon-]{position:relative;display:inline-block;font-family:"Nth Icons";font-style:normal;font-weight:400;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0);text-rendering:auto;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.nth-icon-dashboard:before{content:"\f101";}.nth-icon-inbox:before{content:"\f102";}.nth-icon-cloud:before{content:"\f103";}.nth-icon-bell:before{content:"\f104";}.nth-icon-book:before{content:"\f105";}.nth-icon-bookmark:before{content:"\f106";}.nth-icon-tag:before{content:"\f107";}.nth-icon-library:before{content:"\f108";}.nth-icon-share:before{content:"\f109";}.nth-icon-reply:before{content:"\f10a";}.nth-icon-refresh:before{content:"\f10b";}.nth-icon-move:before{content:"\f10c";}.nth-icon-chat:before{content:"\f10d";}.nth-icon-chat-working:before{content:"\f10e";}.nth-icon-chat-text:before{content:"\f10f";}.nth-icon-chat-group:before{content:"\f110";}.nth-icon-envelope:before{content:"\f111";}.nth-icon-envelope-open:before{content:"\f112";}.nth-icon-user:before{content:"\f113";}.nth-icon-user-circle:before{content:"\f114";}.nth-icon-users:before{content:"\f115";}.nth-icon-user-add:before{content:"\f116";}.nth-icon-grid-9:before{content:"\f117";}.nth-icon-grid-4:before{content:"\f118";}.nth-icon-menu:before{content:"\f119";}.nth-icon-layout:before{content:"\f11a";}.nth-icon-fullscreen:before{content:"\f11b";}.nth-icon-fullscreen-exit:before{content:"\f11c";}.nth-icon-expand:before{content:"\f11d";}.nth-icon-contract:before{content:"\f11e";}.nth-icon-arrow-expand:before{content:"\f11f";}.nth-icon-arrow-shrink:before{content:"\f120";}.nth-icon-desktop:before{content:"\f121";}.nth-icon-mobile:before{content:"\f122";}.nth-icon-signal:before{content:"\f123";}.nth-icon-power:before{content:"\f124";}.nth-icon-more-horizontal:before{content:"\f125";}.nth-icon-more-vertical:before{content:"\f126";}.nth-icon-globe:before{content:"\f127";}.nth-icon-map:before{content:"\f128";}.nth-icon-flag:before{content:"\f129";}.nth-icon-pie-chart:before{content:"\f12a";}.nth-icon-stats-bars:before{content:"\f12b";}.nth-icon-pluse:before{content:"\f12c";}.nth-icon-home:before{content:"\f12d";}.nth-icon-shopping-cart:before{content:"\f12e";}.nth-icon-payment:before{content:"\f12f";}.nth-icon-briefcase:before{content:"\f130";}.nth-icon-search:before{content:"\f131";}.nth-icon-zoom-in:before{content:"\f132";}.nth-icon-zoom-out:before{content:"\f133";}.nth-icon-download:before{content:"\f134";}.nth-icon-upload:before{content:"\f135";}.nth-icon-sort-asc:before{content:"\f136";}.nth-icon-sort-des:before{content:"\f137";}.nth-icon-graph-up:before{content:"\f138";}.nth-icon-graph-down:before{content:"\f139";}.nth-icon-replay:before{content:"\f13a";}.nth-icon-edit:before{content:"\f13b";}.nth-icon-pencil:before{content:"\f13c";}.nth-icon-rubber:before{content:"\f13d";}.nth-icon-crop:before{content:"\f13e";}.nth-icon-eye:before{content:"\f13f";}.nth-icon-eye-close:before{content:"\f140";}.nth-icon-image:before{content:"\f141";}.nth-icon-gallery:before{content:"\f142";}.nth-icon-video:before{content:"\f143";}.nth-icon-camera:before{content:"\f144";}.nth-icon-folder:before{content:"\f145";}.nth-icon-clipboard:before{content:"\f146";}.nth-icon-order:before{content:"\f147";}.nth-icon-file:before{content:"\f148";}.nth-icon-copy:before{content:"\f149";}.nth-icon-add-file:before{content:"\f14a";}.nth-icon-print:before{content:"\f14b";}.nth-icon-calendar:before{content:"\f14c";}.nth-icon-time:before{content:"\f14d";}.nth-icon-trash:before{content:"\f14e";}.nth-icon-plugin:before{content:"\f14f";}.nth-icon-extension:before{content:"\f150";}.nth-icon-memory:before{content:"\f151";}.nth-icon-settings:before{content:"\f152";}.nth-icon-scissor:before{content:"\f153";}.nth-icon-wrench:before{content:"\f154";}.nth-icon-hammer:before{content:"\f155";}.nth-icon-lock:before{content:"\f156";}.nth-icon-unlock:before{content:"\f157";}.nth-icon-volume-low:before{content:"\f158";}.nth-icon-volume-high:before{content:"\f159";}.nth-icon-volume-off:before{content:"\f15a";}.nth-icon-pause:before{content:"\f15b";}.nth-icon-play:before{content:"\f15c";}.nth-icon-stop:before{content:"\f15d";}.nth-icon-musical:before{content:"\f15e";}.nth-icon-random:before{content:"\f15f";}.nth-icon-reload:before{content:"\f160";}.nth-icon-loop:before{content:"\f161";}.nth-icon-text:before{content:"\f162";}.nth-icon-bold:before{content:"\f163";}.nth-icon-italic:before{content:"\f164";}.nth-icon-underline:before{content:"\f165";}.nth-icon-format-clear:before{content:"\f166";}.nth-icon-text-type:before{content:"\f167";}.nth-icon-table:before{content:"\f168";}.nth-icon-attach-file:before{content:"\f169";}.nth-icon-paperclip:before{content:"\f16a";}.nth-icon-link-intact:before{content:"\f16b";}.nth-icon-link:before{content:"\f16c";}.nth-icon-link-broken:before{content:"\f16d";}.nth-icon-indent-increase:before{content:"\f16e";}.nth-icon-indent-decrease:before{content:"\f16f";}.nth-icon-align-justify:before{content:"\f170";}.nth-icon-align-left:before{content:"\f171";}.nth-icon-align-center:before{content:"\f172";}.nth-icon-align-right:before{content:"\f173";}.nth-icon-list-numbered:before{content:"\f174";}.nth-icon-list-bulleted:before{content:"\f175";}.nth-icon-list:before{content:"\f176";}.nth-icon-emoticon:before{content:"\f177";}.nth-icon-quote-right:before{content:"\f178";}.nth-icon-code:before{content:"\f179";}.nth-icon-code-working:before{content:"\f17a";}.nth-icon-code-unfold:before{content:"\f17b";}.nth-icon-chevron-right:before{content:"\f17c";}.nth-icon-chevron-left:before{content:"\f17d";}.nth-icon-chevron-left-mini:before{content:"\f17e";}.nth-icon-chevron-right-mini:before{content:"\f17f";}.nth-icon-chevron-up:before{content:"\f180";}.nth-icon-chevron-down:before{content:"\f181";}.nth-icon-chevron-up-mini:before{content:"\f182";}.nth-icon-chevron-down-mini:before{content:"\f183";}.nth-icon-arrow-left:before{content:"\f184";}.nth-icon-arrow-right:before{content:"\f185";}.nth-icon-arrow-up:before{content:"\f186";}.nth-icon-arrow-down:before{content:"\f187";}.nth-icon-dropdown:before{content:"\f188";}.nth-icon-dropup:before{content:"\f189";}.nth-icon-dropright:before{content:"\f18a";}.nth-icon-dropleft:before{content:"\f18b";}.nth-icon-sort-vertical:before{content:"\f18c";}.nth-icon-triangle-left:before{content:"\f18d";}.nth-icon-triangle-right:before{content:"\f18e";}.nth-icon-triangle-down:before{content:"\f18f";}.nth-icon-triangle-up:before{content:"\f190";}.nth-icon-check-circle:before{content:"\f191";}.nth-icon-check:before{content:"\f192";}.nth-icon-check-mini:before{content:"\f193";}.nth-icon-close:before{content:"\f194";}.nth-icon-close-mini:before{content:"\f195";}.nth-icon-plus-circle:before{content:"\f196";}.nth-icon-plus:before{content:"\f197";}.nth-icon-minus-circle:before{content:"\f198";}.nth-icon-minus:before{content:"\f199";}.nth-icon-alert-circle:before{content:"\f19a";}.nth-icon-alert:before{content:"\f19b";}.nth-icon-help-circle:before{content:"\f19c";}.nth-icon-help:before{content:"\f19d";}.nth-icon-info-circle:before{content:"\f19e";}.nth-icon-info:before{content:"\f19f";}.nth-icon-warning:before{content:"\f1a0";}.nth-icon-heart:before{content:"\f1a1";}.nth-icon-heart-outline:before{content:"\f1a2";}.nth-icon-star:before{content:"\f1a3";}.nth-icon-star-half:before{content:"\f1a4";}.nth-icon-star-outline:before{content:"\f1a5";}.nth-icon-thumb-up:before{content:"\f1a6";}.nth-icon-thumb-down:before{content:"\f1a7";}.nth-icon-small-point:before{content:"\f1a8";}.nth-icon-medium-point:before{content:"\f1a9";}.nth-icon-large-point:before{content:"\f1aa";}
\ No newline at end of file
diff --git a/api/src/main/resources/static/css/nth-tabs.css b/api/src/main/resources/static/css/nth-tabs.css
deleted file mode 100644
index a074df35da7532c75b355bac518573104a9d0872..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/nth-tabs.css
+++ /dev/null
@@ -1,275 +0,0 @@
-/**
- * nth-tabs
- * author:nethuige
- * version:2.0
-*/
-
-.nth-tabs {
- color: #76838f;
- font-family: "Helvetica Neue",Helvetica,Tahoma,Arial,"Microsoft Yahei","Hiragino Sans GB","WenQuanYi Micro Hei",sans-serif;
- border: 1px solid #E4EAEC !important;
-}
-
-.nth-tabs .page-tabs {
- width: 100%;
- height: 42px;
- background: #fafafa;
- line-height: 40px;
- position: relative;
-}
-
-.nth-tabs .content-tabs {
- width: 100%;
- position: relative;
- height: 42px;
- background: #fafafa;
- line-height: 40px;
- overflow: hidden;
-}
-
-.nth-tabs .content-tabs-container {
- width: 100000px;
- margin-left: 40px;
- overflow: hidden;
- height: 42px;
- transition: margin-left 1s;
- -moz-transition: margin-left 1s;
- -webkit-transition: margin-left 1s;
- -o-transition: margin-left 1s;
-}
-.tab-content{
- overflow-x: auto;
- overflow-y: hidden;
-}
-.nth-tabs,.tab-content,.tab-pane{
- height: 100%;
- /*height: calc(100% - 42px);*/
-}
-.nth-tabs-content{
- width:100%;
- /*height: calc(100% - 42px);*/
- height: 100%;
- position: relative;
- overflow-x: hidden;
- overflow-y: hidden;
-}
-.nth-tabs-frame{
- width:100%;
- /*height: calc(100% - 42px);*/
- height: 100%;
- position: relative;
- overflow-x: hidden;
- overflow-y: hidden;
-}
-
-
-/*选项卡操作相关*/
-.nth-tabs .roll-nav {
- position: absolute;
- width: 40px;
- height: 42px;
- text-align: center;
- color: #999;
- background-color: #FFFFFF;
- z-index: 2;
- top: 0;
-}
-
-.nth-tabs a.roll-nav:hover {
- color: #797979 !important;
-}
-
-.nth-tabs a.roll-nav:active,.nth-tabs a.roll-nav:visited {
- color: #95A0AA;
-}
-
-.nth-tabs .roll-nav-left {
- left: 0;
- border-bottom: 1px solid #E4EAEC;
-}
-
-.nth-tabs .roll-nav-right {
- right: 40px;
- border-bottom: 1px solid #E4EAEC;
-}
-
-.nth-tabs .tab-close {
- position: absolute;
- top: 13px;
- right: 10px;
- width: 16px;
- height: 16px;
- text-align: center;
- line-height: 16px;
- color: #95A0AA;
-}
-
-.nth-tabs .tab-close:hover {
- background-color: #f96868;
- border-radius: 16px;
- color: #fff;
- cursor: pointer;
-}
-
-.nth-tabs .tab-down{
- border-top: 4px solid;
- -webkit-transition: .25s;
- -o-transition: .25s;
- transition: .25s;
- -webkit-transform: scale(1.001);
- -ms-transform: scale(1.001);
- -o-transform: scale(1.001);
- transform: scale(1.001);
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: 2px;
- vertical-align: middle;
- border-top: 4px dashed;
- border-right: 4px solid transparent;
- border-left: 4px solid transparent;
-}
-
-/*tab list*/
-.nth-tabs .right-nav-list {
- right: 0;
- /*border-left: 1px solid #E4EAEC;*/
- border-bottom: 1px solid #E4EAEC;
-}
-
-.nth-tabs .right-nav-list a {
- color: #999;
-}
-
-.nth-tabs .right-nav-list a:hover {
- color: #797979;
- text-decoration: none;
-}
-
-.tab-list-scrollbar {
- max-height: 250px;
- max-width: 180px;
-}
-.dropdown-menu{
- z-index: 99999999 !important;
- left: -141px !important;
-}
-
-.dropdown-menu ul {
- list-style: none;
- margin: 0px;
- text-align: left;
- padding: 0px;
-}
-
-.dropdown-menu ul li {
- line-height: 30px;
- padding: 0px 20px;
- white-space: nowrap;
-}
-
-.dropdown-menu ul li:hover {
- background-color: #ececec;
- cursor: pointer;
-}
-
-.scrollbar-outer {
- overflow: hidden;
-}
-
-
-/*重写tab*/
-.nav-tabs {
- background-color: #FFFFFF;
- border-bottom: 1px solid #E4EAEC!important;
-}
-
-.nav-tabs a {
- color: #76838f;
- border-radius: 0;
-}
-
-.nav-tabs>li{
- width:8.1em;
-}
-
-.nav-tabs>li>a {
- border-radius: 0;
- margin-right: 0;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- padding-right:25px;
- padding-left: 10px;
- text-align: center;
-}
-
-.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
- border-top:1px solid transparent;
- border-bottom: 1px solid #E4EAEC;
- border-left:1px solid #E4EAEC;
- border-right:1px solid #E4EAEC;
- background-color: #F1F4F5;
- color: #76838f;
- -webkit-transition-property: background-color,border-bottom;
- -webkit-transition-duration: 0.2s;
- -webkit-transition-timing-function: ease;
- -moz-transition-property: background-color,border-bottom;
- -moz-transition-duration: 0.2s;
- -moz-transition-timing-function: ease;
- -o-transition-property: background-color,border-bottom;
- -o-transition-duration: 0.2s;
- -o-transition-timing-function: ease;
-}
-
-.nav>li>a:focus, .nav>li>a:hover {
- background-color: #F3F7F9;
-}
-
-/*animation*/
-
-[class*=animation-] {
- -webkit-animation-duration: .5s;
- -o-animation-duration: .5s;
- animation-duration: .5s;
- -webkit-animation-timing-function: ease-out;
- -o-animation-timing-function: ease-out;
- animation-timing-function: ease-out;
-}
-.animation-fade {
- -webkit-animation-name: fadeIn;
- -o-animation-name: fadeIn;
- animation-name: fadeIn;
- -webkit-animation-duration: .8s;
- -o-animation-duration: .8s;
- animation-duration: .8s;
- -webkit-animation-timing-function: linear;
- -o-animation-timing-function: linear;
- animation-timing-function: linear;
-}
-
-@-webkit-keyframes fadeIn {
- from {
- opacity: 0;
- }
-
- to {
- opacity: 1;
- }
-}
-
-@keyframes fadeIn {
- from {
- opacity: 0;
- }
-
- to {
- opacity: 1;
- }
-}
-
-.fadeIn {
- -webkit-animation-name: fadeIn;
- animation-name: fadeIn;
-}
-
diff --git a/api/src/main/resources/static/css/nth-tabs.min.css b/api/src/main/resources/static/css/nth-tabs.min.css
deleted file mode 100644
index fdcc16b8018352ce48feb5d22ee55d392df7515a..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/nth-tabs.min.css
+++ /dev/null
@@ -1 +0,0 @@
-.nth-tabs{color:#76838f;font-family:"Helvetica Neue",Helvetica,Tahoma,Arial,"Microsoft Yahei","Hiragino Sans GB","WenQuanYi Micro Hei",sans-serif;border:1px solid #E4EAEC!important;}.nth-tabs .page-tabs{width:100%;height:42px;background:#fafafa;line-height:40px;position:relative;}.nth-tabs .content-tabs{width:100%;position:relative;height:42px;background:#fafafa;line-height:40px;overflow:hidden;}.nth-tabs .content-tabs-container{width:100000px;margin-left:40px;overflow:hidden;height:42px;transition:margin-left 1s;-moz-transition:margin-left 1s;-webkit-transition:margin-left 1s;-o-transition:margin-left 1s;}.tab-content{overflow:auto;}.nth-tabs,.tab-content,.tab-pane{height:100%;}.nth-tabs-content{width:100%;height:calc(100% - 42px);position:relative;overflow-x:hidden;}.nth-tabs-frame{width:100%;height:calc(100% - 42px);position:relative;overflow-x:hidden;}.nth-tabs .roll-nav{position:absolute;width:40px;height:42px;text-align:center;color:#999;background-color:#FFF;z-index:2;top:0;}.nth-tabs a.roll-nav:hover{color:#797979!important;}.nth-tabs a.roll-nav:active,.nth-tabs a.roll-nav:visited{color:#95A0AA;}.nth-tabs .roll-nav-left{left:0;border-bottom:1px solid #E4EAEC;}.nth-tabs .roll-nav-right{right:40px;border-bottom:1px solid #E4EAEC;}.nth-tabs .tab-close{position:absolute;top:13px;right:10px;width:16px;height:16px;text-align:center;line-height:16px;color:#95A0AA;}.nth-tabs .tab-close:hover{background-color:#f96868;border-radius:16px;color:#fff;cursor:pointer;}.nth-tabs .tab-down{border-top:4px solid;-webkit-transition:.25s;-o-transition:.25s;transition:.25s;-webkit-transform:scale(1.001);-ms-transform:scale(1.001);-o-transform:scale(1.001);transform:scale(1.001);display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent;}.nth-tabs .right-nav-list{right:0;border-bottom:1px solid #E4EAEC;}.nth-tabs .right-nav-list a{color:#999;}.nth-tabs .right-nav-list a:hover{color:#797979;text-decoration:none;}.tab-list-scrollbar{max-height:250px;max-width:180px;}.dropdown-menu{z-index:99999999!important;left:-141px!important;}.dropdown-menu ul{list-style:none;margin:0;text-align:left;padding:0;}.dropdown-menu ul li{line-height:30px;padding:0 20px;white-space:nowrap;}.dropdown-menu ul li:hover{background-color:#ececec;cursor:pointer;}.scrollbar-outer{overflow:hidden;}.nav-tabs{background-color:#FFF;border-bottom:1px solid #E4EAEC!important;}.nav-tabs a{color:#76838f;border-radius:0;}.nav-tabs>li{width:8.1em;}.nav-tabs>li>a{border-radius:0;margin-right:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:25px;padding-left:10px;text-align:center;}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{border-top:1px solid transparent;border-bottom:1px solid #E4EAEC;border-left:1px solid #E4EAEC;border-right:1px solid #E4EAEC;background-color:#F1F4F5;color:#76838f;-webkit-transition-property:background-color,border-bottom;-webkit-transition-duration:.2s;-webkit-transition-timing-function:ease;-moz-transition-property:background-color,border-bottom;-moz-transition-duration:.2s;-moz-transition-timing-function:ease;-o-transition-property:background-color,border-bottom;-o-transition-duration:.2s;-o-transition-timing-function:ease;}.nav>li>a:focus,.nav>li>a:hover{background-color:#F3F7F9;}[class*=animation-]{-webkit-animation-duration:.5s;-o-animation-duration:.5s;animation-duration:.5s;-webkit-animation-timing-function:ease-out;-o-animation-timing-function:ease-out;animation-timing-function:ease-out;}.animation-fade{-webkit-animation-name:fadeIn;-o-animation-name:fadeIn;animation-name:fadeIn;-webkit-animation-duration:.8s;-o-animation-duration:.8s;animation-duration:.8s;-webkit-animation-timing-function:linear;-o-animation-timing-function:linear;animation-timing-function:linear;}@-webkit-keyframes fadeIn{from{opacity:0;}to{opacity:1;}}@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn;}
\ No newline at end of file
diff --git a/api/src/main/resources/static/css/patterns/header-profile-skin-1.png b/api/src/main/resources/static/css/patterns/header-profile-skin-1.png
deleted file mode 100644
index 41c5c089bbf7ea03e71b19fe86d590d9e5e9f471..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/css/patterns/header-profile-skin-1.png and /dev/null differ
diff --git a/api/src/main/resources/static/css/patterns/header-profile-skin-3.png b/api/src/main/resources/static/css/patterns/header-profile-skin-3.png
deleted file mode 100644
index 7a80132da83d9390a435359e8e02a6b28ef54996..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/css/patterns/header-profile-skin-3.png and /dev/null differ
diff --git a/api/src/main/resources/static/css/patterns/header-profile.png b/api/src/main/resources/static/css/patterns/header-profile.png
deleted file mode 100644
index 7dea7f2c76294013243f4956526a0409e82da9d2..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/css/patterns/header-profile.png and /dev/null differ
diff --git a/api/src/main/resources/static/css/patterns/shattered.png b/api/src/main/resources/static/css/patterns/shattered.png
deleted file mode 100644
index 90ed42b85b7bdc8bd3147b9b21f53d3c57fdac26..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/css/patterns/shattered.png and /dev/null differ
diff --git a/api/src/main/resources/static/css/select2.css b/api/src/main/resources/static/css/select2.css
deleted file mode 100644
index 527e13a88b9a9abddd02d02f12df9ca39a4ca7ce..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/select2.css
+++ /dev/null
@@ -1,481 +0,0 @@
-.select2-container {
- box-sizing: border-box;
- display: inline-block;
- margin: 0;
- position: relative;
- vertical-align: middle; }
- .select2-container .select2-selection--single {
- box-sizing: border-box;
- cursor: pointer;
- display: block;
- user-select: none;
- -webkit-user-select: none; }
- .select2-container .select2-selection--single .select2-selection__rendered {
- display: block;
- padding-left: 8px;
- padding-right: 20px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap; }
- .select2-container .select2-selection--single .select2-selection__clear {
- position: relative; }
- .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
- padding-right: 8px;
- padding-left: 20px; }
- .select2-container .select2-selection--multiple {
- box-sizing: border-box;
- cursor: pointer;
- display: block;
- min-height: 32px;
- user-select: none;
- -webkit-user-select: none; }
- .select2-container .select2-selection--multiple .select2-selection__rendered {
- display: inline-block;
- overflow: hidden;
- padding-left: 8px;
- text-overflow: ellipsis;
- white-space: nowrap; }
- .select2-container .select2-search--inline {
- float: left; }
- .select2-container .select2-search--inline .select2-search__field {
- box-sizing: border-box;
- border: none;
- font-size: 100%;
- margin-top: 5px;
- padding: 0; }
- .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
- -webkit-appearance: none; }
-
-.select2-dropdown {
- background-color: white;
- border: 1px solid #aaa;
- border-radius: 4px;
- box-sizing: border-box;
- display: block;
- position: absolute;
- left: -100000px;
- width: 100%;
- z-index: 1051; }
-
-.select2-results {
- display: block; }
-
-.select2-results__options {
- list-style: none;
- margin: 0;
- padding: 0; }
-
-.select2-results__option {
- padding: 6px;
- user-select: none;
- -webkit-user-select: none; }
- .select2-results__option[aria-selected] {
- cursor: pointer; }
-
-.select2-container--open .select2-dropdown {
- left: 0; }
-
-.select2-container--open .select2-dropdown--above {
- border-bottom: none;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0; }
-
-.select2-container--open .select2-dropdown--below {
- border-top: none;
- border-top-left-radius: 0;
- border-top-right-radius: 0; }
-
-.select2-search--dropdown {
- display: block;
- padding: 4px; }
- .select2-search--dropdown .select2-search__field {
- padding: 4px;
- width: 100%;
- box-sizing: border-box; }
- .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
- -webkit-appearance: none; }
- .select2-search--dropdown.select2-search--hide {
- display: none; }
-
-.select2-close-mask {
- border: 0;
- margin: 0;
- padding: 0;
- display: block;
- position: fixed;
- left: 0;
- top: 0;
- min-height: 100%;
- min-width: 100%;
- height: auto;
- width: auto;
- opacity: 0;
- z-index: 99;
- background-color: #fff;
- filter: alpha(opacity=0); }
-
-.select2-hidden-accessible {
- border: 0 !important;
- clip: rect(0 0 0 0) !important;
- height: 1px !important;
- margin: -1px !important;
- overflow: hidden !important;
- padding: 0 !important;
- position: absolute !important;
- width: 1px !important; }
-
-.select2-container--default .select2-selection--single {
- background-color: #fff; }
- .select2-container--default .select2-selection--single .select2-selection__rendered {
- color: #444;
- line-height: 28px; }
- .select2-container--default .select2-selection--single .select2-selection__clear {
- cursor: pointer;
- float: right;
- font-weight: bold; }
- .select2-container--default .select2-selection--single .select2-selection__placeholder {
- color: #999; }
- .select2-container--default .select2-selection--single .select2-selection__arrow {
- height: 26px;
- position: absolute;
- top: 1px;
- right: 1px;
- width: 20px; }
- .select2-container--default .select2-selection--single .select2-selection__arrow b {
- border-color: #888 transparent transparent transparent;
- border-style: solid;
- border-width: 5px 4px 0 4px;
- height: 0;
- left: 50%;
- margin-left: -4px;
- margin-top: -2px;
- position: absolute;
- top: 50%;
- width: 0; }
-
-.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
- float: left; }
-
-.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
- left: 1px;
- right: auto; }
-
-.select2-container--default.select2-container--disabled .select2-selection--single {
- background-color: #eee;
- cursor: default; }
- .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
- display: none; }
-
-.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
- border-color: transparent transparent #888 transparent;
- border-width: 0 4px 5px 4px; }
-
-.select2-container--default .select2-selection--multiple {
- background-color: white;
- border: 1px solid #aaa;
- border-radius: 4px;
- cursor: text; }
- .select2-container--default .select2-selection--multiple .select2-selection__rendered {
- box-sizing: border-box;
- list-style: none;
- margin: 0;
- padding: 0 5px;
- width: 100%; }
- .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
- list-style: none; }
- .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
- color: #999;
- margin-top: 5px;
- float: left; }
- .select2-container--default .select2-selection--multiple .select2-selection__clear {
- cursor: pointer;
- float: right;
- font-weight: bold;
- margin-top: 5px;
- margin-right: 10px; }
- .select2-container--default .select2-selection--multiple .select2-selection__choice {
- background-color: #e4e4e4;
- border: 1px solid #aaa;
- border-radius: 4px;
- cursor: default;
- float: left;
- margin-right: 5px;
- margin-top: 5px;
- padding: 0 5px; }
- .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
- color: #999;
- cursor: pointer;
- display: inline-block;
- font-weight: bold;
- margin-right: 2px; }
- .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
- color: #333; }
-
-.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
- float: right; }
-
-.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
- margin-left: 5px;
- margin-right: auto; }
-
-.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
- margin-left: 2px;
- margin-right: auto; }
-
-.select2-container--default.select2-container--focus .select2-selection--multiple {
- border: solid black 1px;
- outline: 0; }
-
-.select2-container--default.select2-container--disabled .select2-selection--multiple {
- background-color: #eee;
- cursor: default; }
-
-.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
- display: none; }
-
-.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
- border-top-left-radius: 0;
- border-top-right-radius: 0; }
-
-.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0; }
-
-.select2-container--default .select2-search--dropdown .select2-search__field {
- border: 1px solid #aaa; }
-
-.select2-container--default .select2-search--inline .select2-search__field {
- background: transparent;
- border: none;
- outline: 0;
- box-shadow: none;
- -webkit-appearance: textfield; }
-
-.select2-container--default .select2-results > .select2-results__options {
- max-height: 200px;
- overflow-y: auto; }
-
-.select2-container--default .select2-results__option[role=group] {
- padding: 0; }
-
-.select2-container--default .select2-results__option[aria-disabled=true] {
- color: #999; }
-
-.select2-container--default .select2-results__option[aria-selected=true] {
- background-color: #ddd; }
-
-.select2-container--default .select2-results__option .select2-results__option {
- padding-left: 1em; }
- .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
- padding-left: 0; }
- .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
- margin-left: -1em;
- padding-left: 2em; }
- .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
- margin-left: -2em;
- padding-left: 3em; }
- .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
- margin-left: -3em;
- padding-left: 4em; }
- .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
- margin-left: -4em;
- padding-left: 5em; }
- .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
- margin-left: -5em;
- padding-left: 6em; }
-
-.select2-container--default .select2-results__option--highlighted[aria-selected] {
- background-color: #5897fb;
- color: white; }
-
-.select2-container--default .select2-results__group {
- cursor: default;
- display: block;
- padding: 6px; }
-
-.select2-container--classic .select2-selection--single {
- background-color: #f7f7f7;
- border: 1px solid #aaa;
- border-radius: 4px;
- outline: 0;
- background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
- background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
- background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
- .select2-container--classic .select2-selection--single:focus {
- border: 1px solid #5897fb; }
- .select2-container--classic .select2-selection--single .select2-selection__rendered {
- color: #444;
- line-height: 28px; }
- .select2-container--classic .select2-selection--single .select2-selection__clear {
- cursor: pointer;
- float: right;
- font-weight: bold;
- margin-right: 10px; }
- .select2-container--classic .select2-selection--single .select2-selection__placeholder {
- color: #999; }
- .select2-container--classic .select2-selection--single .select2-selection__arrow {
- background-color: #ddd;
- border: none;
- border-left: 1px solid #aaa;
- border-top-right-radius: 4px;
- border-bottom-right-radius: 4px;
- height: 26px;
- position: absolute;
- top: 1px;
- right: 1px;
- width: 20px;
- background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
- background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
- background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
- .select2-container--classic .select2-selection--single .select2-selection__arrow b {
- border-color: #888 transparent transparent transparent;
- border-style: solid;
- border-width: 5px 4px 0 4px;
- height: 0;
- left: 50%;
- margin-left: -4px;
- margin-top: -2px;
- position: absolute;
- top: 50%;
- width: 0; }
-
-.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
- float: left; }
-
-.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
- border: none;
- border-right: 1px solid #aaa;
- border-radius: 0;
- border-top-left-radius: 4px;
- border-bottom-left-radius: 4px;
- left: 1px;
- right: auto; }
-
-.select2-container--classic.select2-container--open .select2-selection--single {
- border: 1px solid #5897fb; }
- .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
- background: transparent;
- border: none; }
- .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
- border-color: transparent transparent #888 transparent;
- border-width: 0 4px 5px 4px; }
-
-.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
- border-top: none;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
- background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
- background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
-
-.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
- border-bottom: none;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
- background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
- background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
-
-.select2-container--classic .select2-selection--multiple {
- background-color: white;
- border: 1px solid #aaa;
- border-radius: 4px;
- cursor: text;
- outline: 0; }
- .select2-container--classic .select2-selection--multiple:focus {
- border: 1px solid #5897fb; }
- .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
- list-style: none;
- margin: 0;
- padding: 0 5px; }
- .select2-container--classic .select2-selection--multiple .select2-selection__clear {
- display: none; }
- .select2-container--classic .select2-selection--multiple .select2-selection__choice {
- background-color: #e4e4e4;
- border: 1px solid #aaa;
- border-radius: 4px;
- cursor: default;
- float: left;
- margin-right: 5px;
- margin-top: 5px;
- padding: 0 5px; }
- .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
- color: #888;
- cursor: pointer;
- display: inline-block;
- font-weight: bold;
- margin-right: 2px; }
- .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
- color: #555; }
-
-.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
- float: right; }
-
-.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
- margin-left: 5px;
- margin-right: auto; }
-
-.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
- margin-left: 2px;
- margin-right: auto; }
-
-.select2-container--classic.select2-container--open .select2-selection--multiple {
- border: 1px solid #5897fb; }
-
-.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
- border-top: none;
- border-top-left-radius: 0;
- border-top-right-radius: 0; }
-
-.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
- border-bottom: none;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0; }
-
-.select2-container--classic .select2-search--dropdown .select2-search__field {
- border: 1px solid #aaa;
- outline: 0; }
-
-.select2-container--classic .select2-search--inline .select2-search__field {
- outline: 0;
- box-shadow: none; }
-
-.select2-container--classic .select2-dropdown {
- background-color: white;
- border: 1px solid transparent; }
-
-.select2-container--classic .select2-dropdown--above {
- border-bottom: none; }
-
-.select2-container--classic .select2-dropdown--below {
- border-top: none; }
-
-.select2-container--classic .select2-results > .select2-results__options {
- max-height: 200px;
- overflow-y: auto; }
-
-.select2-container--classic .select2-results__option[role=group] {
- padding: 0; }
-
-.select2-container--classic .select2-results__option[aria-disabled=true] {
- color: grey; }
-
-.select2-container--classic .select2-results__option--highlighted[aria-selected] {
- background-color: #3875d7;
- color: white; }
-
-.select2-container--classic .select2-results__group {
- cursor: default;
- display: block;
- padding: 6px; }
-
-.select2-container--classic.select2-container--open .select2-dropdown {
- border-color: #5897fb; }
diff --git a/api/src/main/resources/static/css/style.css b/api/src/main/resources/static/css/style.css
deleted file mode 100644
index 5816bbac7a4fcc1dfdfe5910ed27a136e5fb979f..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/style.css
+++ /dev/null
@@ -1,7368 +0,0 @@
-/*
- *
- * H+ - 后台主题UI框架
- * version 4.0
- * 修改记录
- * .checkbox-inline input[type=checkbox] 去掉margin-top:-4px
- * .checkbox-inline 添加font-size: 14px;默认是13px
- * .onoffswitch-inner:before, ; /* height: 16px; 两处
- *
- * .file-control {
- * color: inherit;
- * font-size: 14px;
- * add nopadding class
- *
- *
- *
-*/
-h1, h2, h3, h4, h5, h6 {
- font-weight: 100;
-}
-
-h1 {
- font-size: 30px;
-}
-
-h2 {
- font-size: 24px;
-}
-
-h3 {
- font-size: 16px;
-}
-
-h4 {
- font-size: 14px;
-}
-
-h5 {
- font-size: 12px;
-}
-
-h6 {
- font-size: 10px;
-}
-
-h3, h4, h5 {
- margin-top: 5px;
- font-weight: 600;
-}
-
-a:focus {
- outline: none;
-}
-
-.nav>li>a {
- color: #a7b1c2;
- font-weight: 600;
- padding: 14px 20px 14px 25px;
-}
-
-.nav li>a {
- display: block;
- /*white-space: nowrap;*/
-}
-
-.nav.navbar-right>li>a {
- color: #999c9e;
-}
-
-.nav>li.active>a {
- color: #ffffff;
-}
-
-.navbar-default .nav>li>a:hover, .navbar-default .nav>li>a:focus {
- background-color: #293846;
- color: white;
-}
-
-.nav .open>a, .nav .open>a:hover, .nav .open>a:focus {
- background: #fff;
-}
-
-.nav>li>a i {
- margin-right: 6px;
-}
-
-.navbar {
- border: 0;
-}
-
-.navbar-default {
- background-color: transparent;
- border-color: #2f4050;
- position: relative;
-}
-
-.navbar-top-links li {
- display: inline-block;
-}
-
-.navbar-top-links li:last-child {
- margin-right: 30px;
-}
-
-body.body-small .navbar-top-links li:last-child {
- margin-right: 10px;
-}
-
-.navbar-top-links li a {
- padding: 20px 10px;
- min-height: 50px;
-}
-
-.dropdown-menu {
- border: medium none;
- display: none;
- float: left;
- font-size: 12px;
- left: 0;
- list-style: none outside none;
- padding: 0;
- position: absolute;
- text-shadow: none;
- top: 100%;
- z-index: 1000;
- border-radius: 0;
- box-shadow: 0 0 3px rgba(86, 96, 117, 0.3);
-}
-
-.dropdown-menu>li>a {
- border-radius: 3px;
- color: inherit;
- line-height: 25px;
- margin: 4px;
- text-align: left;
- font-weight: normal;
-}
-
-.dropdown-menu>li>a.font-bold {
- font-weight: 600;
-}
-
-.navbar-top-links .dropdown-menu li {
- display: block;
-}
-
-.navbar-top-links .dropdown-menu li:last-child {
- margin-right: 0;
-}
-
-.navbar-top-links .dropdown-menu li a {
- padding: 3px 20px;
- min-height: 0;
-}
-
-.navbar-top-links .dropdown-menu li a div {
- white-space: normal;
-}
-
-.navbar-top-links .dropdown-messages, .navbar-top-links .dropdown-tasks, .navbar-top-links .dropdown-alerts {
- width: 310px;
- min-width: 0;
-}
-
-.navbar-top-links .dropdown-messages {
- margin-left: 5px;
-}
-
-.navbar-top-links .dropdown-tasks {
- margin-left: -59px;
-}
-
-.navbar-top-links .dropdown-alerts {
- margin-left: -123px;
-}
-
-.navbar-top-links .dropdown-user {
- right: 0;
- left: auto;
-}
-
-.dropdown-messages, .dropdown-alerts {
- padding: 10px 10px 10px 10px;
-}
-
-.dropdown-messages li a, .dropdown-alerts li a {
- font-size: 12px;
-}
-
-.dropdown-messages li em, .dropdown-alerts li em {
- font-size: 10px;
-}
-
-.nav.navbar-top-links .dropdown-alerts a {
- font-size: 12px;
-}
-
-.nav-header {
- padding: 33px 25px;
- background: url("patterns/header-profile.png") no-repeat;
-}
-
-.pace-done .nav-header {
- -webkit-transition: all 0.5s;
- transition: all 0.5s;
-}
-
-.nav>li.active {
- border-left: 4px solid #19aa8d;
- background: #293846;
-}
-
-.nav.nav-second-level>li.active {
- border: none;
-}
-
-.nav.nav-second-level.collapse[style] {
- height: auto !important;
-}
-
-.nav-header a {
- color: #DFE4ED;
-}
-
-.nav-header .text-muted {
- color: #8095a8;
-}
-
-.minimalize-styl-2 {
- padding: 4px 12px;
- margin: 14px 5px 5px 20px;
- font-size: 14px;
- float: left;
-}
-
-.navbar-form-custom {
- float: left;
- height: 50px;
- padding: 0;
- width: 200px;
- display: inline-table;
-}
-
-.navbar-form-custom .form-group {
- margin-bottom: 0;
-}
-
-.nav.navbar-top-links a {
- font-size: 14px;
-}
-
-.navbar-form-custom .form-control {
- background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
- border: medium none;
- font-size: 14px;
- height: 60px;
- margin: 0;
- z-index: 2000;
-}
-
-.count-info .label {
- line-height: 12px;
- padding: 1px 5px;
- position: absolute;
- right: 6px;
- top: 12px;
-}
-
-.arrow {
- float: right;
- margin-top: 2px;
-}
-
-.fa.arrow:before {
- content: "\f104";
-}
-
-.active>a>.fa.arrow:before {
- content: "\f107";
-}
-
-.nav-second-level li, .nav-third-level li {
- border-bottom: none !important;
-}
-
-.nav-second-level li a {
- padding: 7px 15px 7px 10px;
- padding-left: 52px;
-}
-
-.nav-third-level li a {
- padding-left: 62px;
-}
-
-.nav-second-level li:last-child {
- margin-bottom: 10px;
-}
-
-body:not(.fixed-sidebar ):not(.canvas-menu ).mini-navbar .nav li:hover>.nav-second-level,.mini-navbar .nav li:focus>.nav-second-level {
- display: block;
- border-radius: 0 2px 2px 0;
- min-width: 140px;
- height: auto;
-}
-
-body.mini-navbar .navbar-default .nav>li>.nav-second-level li a {
- font-size: 12px;
- border-radius: 0 2px 2px 0;
-}
-
-.fixed-nav .slimScrollDiv #side-menu {
- padding-bottom: 60px;
- position: relative;
-}
-
-.fixed-sidebar.mini-navbar .slimScrollDiv>* {
- overflow: visible!important;
-}
-
-.fixed-sidebar .slimScrollDiv>* {
- overflow-y: hidden;
- overflow-x: visible;
-}
-
-.mini-navbar .nav-second-level li a {
- padding: 10px 10px 10px 15px;
-}
-
-.canvas-menu.mini-navbar .nav-second-level {
- background: #293846;
-}
-
-.mini-navbar li.active .nav-second-level {
- left: 65px;
-}
-
-.navbar-default .special_link a {
- background: #1ab394;
- color: white;
-}
-
-.navbar-default .special_link a:hover {
- background: #17987e !important;
- color: white;
-}
-
-.navbar-default .special_link a span.label {
- background: #fff;
- color: #1ab394;
-}
-
-.navbar-default .landing_link a {
- background: #1cc09f;
- color: white;
-}
-
-.navbar-default .landing_link a:hover {
- background: #1ab394 !important;
- color: white;
-}
-
-.navbar-default .landing_link a span.label {
- background: #fff;
- color: #1cc09f;
-}
-
-.logo-element {
- text-align: center;
- font-size: 18px;
- font-weight: 600;
- color: white;
- display: none;
- padding: 18px 0;
-}
-
-.pace-done .navbar-static-side, .pace-done .nav-header, .pace-done li.active, .pace-done #page-wrapper, .pace-done .footer {
- -webkit-transition: all 0.5s;
- transition: all 0.5s;
-}
-
-.navbar-fixed-top {
- background: #fff;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- z-index: 2030;
-}
-
-.navbar-fixed-top, .navbar-static-top {
- background: #f3f3f4;
-}
-
-.fixed-nav #wrapper {
- padding-top: 60px;
- box-sizing: border-box;
-}
-
-.fixed-nav .minimalize-styl-2 {
- margin: 14px 5px 5px 15px;
-}
-
-.body-small .navbar-fixed-top {
- margin-left: 0px;
-}
-
-body.mini-navbar .navbar-static-side {
- width: 70px;
-}
-
-body.mini-navbar .profile-element, body.mini-navbar .nav-label, body.mini-navbar .navbar-default .nav li a span {
- display: none;
-}
-
-body.canvas-menu .profile-element {
- display: block;
-}
-
-body:not(.fixed-sidebar ):not(.canvas-menu ).mini-navbar .nav-second-level {
- display: none;
-}
-
-body.mini-navbar .navbar-default .nav>li>a {
- font-size: 16px;
-}
-
-body.mini-navbar .logo-element {
- display: block;
-}
-
-body.canvas-menu .logo-element {
- display: none;
-}
-
-body.mini-navbar .nav-header {
- padding: 0;
- background-color: #1ab394;
-}
-
-body.canvas-menu .nav-header {
- padding: 33px 25px;
-}
-
-body.mini-navbar #page-wrapper {
- margin: 0 0 0 70px;
-}
-
-body.canvas-menu.mini-navbar #page-wrapper, body.canvas-menu.mini-navbar .footer {
- margin: 0 0 0 0;
-}
-
-body.fixed-sidebar .navbar-static-side, body.canvas-menu .navbar-static-side {
- position: fixed;
- width: 220px;
- z-index: 2001;
- height: 100%;
-}
-
-body.fixed-sidebar.mini-navbar .navbar-static-side {
- width: 70px;
-}
-
-body.fixed-sidebar.mini-navbar #page-wrapper {
- margin: 0 0 0 70px;
-}
-
-body.body-small.fixed-sidebar.mini-navbar #page-wrapper {
- margin: 0 0 0 70px;
-}
-
-body.body-small.fixed-sidebar.mini-navbar .navbar-static-side {
- width: 70px;
-}
-
-.fixed-sidebar.mini-navbar .nav li>.nav-second-level {
- display: none;
-}
-
-.fixed-sidebar.mini-navbar .nav li.active {
- border-left-width: 0;
-}
-/*.fixed-sidebar.mini-navbar .nav li:hover>.nav-second-level, .canvas-menu.mini-navbar .nav li:hover>.nav-second-level*/
-/*{*/
-/*position: absolute;*/
-/*left: 70px;*/
-/*top: 40px;*/
-/*background-color: #2f4050;*/
-/*padding: 10px 10px 0 10px;*/
-/*font-size: 12px;*/
-/*display: block;*/
-/*min-width: 140px;*/
-/*border-radius: 2px;*/
-/*}*/
-
-/*伸缩菜单*/
-.fixed-sidebar.mini-navbar .nav li:hover>a> span.nav-label {
- top: 0px;
- padding: 10px 10px 10px 10px;
- text-align: center;
- background-color: #243747;
- border-bottom: dashed 1px #fff;
-}
-
-.fixed-sidebar.mini-navbar .nav li:hover>.nav-second-level {
- top: 40px;
- font-size: 12px;
- /*padding: 10px 10px 0 10px;*/
- background-color: #2f4050;
-}
-
-.fixed-sidebar.mini-navbar .nav li:hover>.nav-second-level, .fixed-sidebar.mini-navbar .nav li:hover>a> span.nav-label {
- position: absolute;
- left: 70px;
- display: block;
- min-width: 140px;
- border-radius: 2px;
-}
-/*伸缩菜单结束*/
-
-body.fixed-sidebar.mini-navbar .navbar-default .nav>li>.nav-second-level li a {
- font-size: 12px;
- border-radius: 3px;
-}
-
-body.canvas-menu.mini-navbar .navbar-default .nav>li>.nav-second-level li a {
- font-size: 13px;
- border-radius: 3px;
-}
-
-.fixed-sidebar.mini-navbar .nav-second-level li a, .canvas-menu.mini-navbar .nav-second-level li a {
- padding: 10px 10px 10px 15px;
-}
-
-.fixed-sidebar.mini-navbar .nav-second-level, .canvas-menu.mini-navbar .nav-second-level {
- position: relative;
- padding: 0;
- font-size: 13px;
-}
-
-.fixed-sidebar.mini-navbar li.active .nav-second-level, .canvas-menu.mini-navbar li.active .nav-second-level {
- left: 0px;
-}
-
-body.canvas-menu nav.navbar-static-side {
- z-index: 2001;
- background: #2f4050;
- height: 100%;
- position: fixed;
- display: none;
-}
-
-body.canvas-menu.mini-navbar nav.navbar-static-side {
- display: block;
- width: 70px;
-}
-
-.top-navigation #page-wrapper {
- margin-left: 0;
-}
-
-.top-navigation .navbar-nav .dropdown-menu>.active>a {
- background: white;
- color: #1ab394;
- font-weight: bold;
-}
-
-.white-bg .navbar-fixed-top, .white-bg .navbar-static-top {
- background: #fff;
-}
-
-.top-navigation .navbar {
- margin-bottom: 0;
-}
-
-.top-navigation .nav>li>a {
- padding: 15px 20px;
- color: #676a6c;
-}
-
-.top-navigation .nav>li a:hover, .top-navigation .nav>li a:focus {
- background: #fff;
- color: #1ab394;
-}
-
-.top-navigation .nav>li.active {
- background: #fff;
- border: none;
-}
-
-.top-navigation .nav>li.active>a {
- color: #1ab394;
-}
-
-.top-navigation .navbar-right {
- padding-right: 10px;
-}
-
-.top-navigation .navbar-nav .dropdown-menu {
- box-shadow: none;
- border: 1px solid #e7eaec;
-}
-
-.top-navigation .dropdown-menu>li>a {
- margin: 0;
- padding: 7px 20px;
-}
-
-.navbar .dropdown-menu {
- margin-top: 0px;
-}
-
-.top-navigation .navbar-brand {
- background: #1ab394;
- color: #fff;
- padding: 15px 25px;
-}
-
-.top-navigation .navbar-top-links li:last-child {
- margin-right: 0;
-}
-
-.top-navigation.mini-navbar #page-wrapper, .top-navigation.body-small.fixed-sidebar.mini-navbar #page-wrapper, .mini-navbar .top-navigation #page-wrapper, .body-small.fixed-sidebar.mini-navbar .top-navigation #page-wrapper, .canvas-menu #page-wrapper {
- margin: 0;
-}
-
-.top-navigation.fixed-nav #wrapper, .fixed-nav #wrapper.top-navigation {
- margin-top: 50px;
-}
-
-.top-navigation .footer.fixed {
- margin-left: 0 !important;
-}
-
-.top-navigation .wrapper.wrapper-content {
- padding: 40px;
-}
-
-.top-navigation.body-small .wrapper.wrapper-content, .body-small .top-navigation .wrapper.wrapper-content {
- padding: 40px 0px 40px 0px;
-}
-
-.navbar-toggle {
- background-color: #1ab394;
- color: #fff;
- padding: 6px 12px;
- font-size: 14px;
-}
-
-.top-navigation .navbar-nav .open .dropdown-menu>li>a, .top-navigation .navbar-nav .open .dropdown-menu .dropdown-header {
- padding: 10px 15px 10px 20px;
-}
-
-@media ( max-width : 768px) {
- .top-navigation .navbar-header {
- display: block;
- float: none;
- }
-}
-
-.menu-visible-lg, .menu-visible-md {
- display: none !important;
-}
-
-@media ( min-width : 1200px) {
- .menu-visible-lg {
- display: block !important;
- }
-}
-
-@media ( min-width : 992px) {
- .menu-visible-md {
- display: block !important;
- }
-}
-
-@media ( max-width : 767px) {
- .menu-visible-md {
- display: block !important;
- }
-
- .menu-visible-lg {
- display: block !important;
- }
-}
-
-.btn {
- border-radius: 3px;
-}
-
-.float-e-margins .btn {
- margin-bottom: 5px;
-}
-
-.btn-w-m {
- min-width: 120px;
-}
-
-.btn-primary.btn-outline {
- color: #1ab394;
-}
-
-.btn-success.btn-outline {
- color: #1c84c6;
-}
-
-.btn-info.btn-outline {
- color: #23c6c8;
-}
-
-.btn-warning.btn-outline {
- color: #f8ac59;
-}
-
-.btn-danger.btn-outline {
- color: #ed5565;
-}
-
-.btn-primary.btn-outline:hover, .btn-success.btn-outline:hover, .btn-info.btn-outline:hover, .btn-warning.btn-outline:hover, .btn-danger.btn-outline:hover {
- color: #fff;
-}
-
-.btn-primary {
- background-color: #1ab394;
- border-color: #1ab394;
- color: #FFFFFF;
-}
-
-.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
- background-color: #18a689;
- border-color: #18a689;
- color: #FFFFFF;
-}
-
-.btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
- background-image: none;
-}
-
-.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary.active[disabled], fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
- background-color: #1dc5a3;
- border-color: #1dc5a3;
-}
-
-.btn-success {
- background-color: #1c84c6;
- border-color: #1c84c6;
- color: #FFFFFF;
-}
-
-.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
- background-color: #1a7bb9;
- border-color: #1a7bb9;
- color: #FFFFFF;
-}
-
-.btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
- background-image: none;
-}
-
-.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success.active[disabled], fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
- background-color: #1f90d8;
- border-color: #1f90d8;
-}
-
-.btn-info {
- background-color: #23c6c8;
- border-color: #23c6c8;
- color: #FFFFFF;
-}
-
-.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
- background-color: #21b9bb;
- border-color: #21b9bb;
- color: #FFFFFF;
-}
-
-.btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
- background-image: none;
-}
-
-.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info.active[disabled], fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
- background-color: #26d7d9;
- border-color: #26d7d9;
-}
-
-.btn-default {
- background-color: #c2c2c2;
- border-color: #c2c2c2;
- color: #FFFFFF;
-}
-
-.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
- background-color: #bababa;
- border-color: #bababa;
- color: #FFFFFF;
-}
-
-.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
- background-image: none;
-}
-
-.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default.active[disabled], fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
- background-color: #cccccc;
- border-color: #cccccc;
-}
-
-.btn-warning {
- background-color: #f8ac59;
- border-color: #f8ac59;
- color: #FFFFFF;
-}
-
-.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
- background-color: #f7a54a;
- border-color: #f7a54a;
- color: #FFFFFF;
-}
-
-.btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
- background-image: none;
-}
-
-.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning.active[disabled], fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
- background-color: #f9b66d;
- border-color: #f9b66d;
-}
-
-.btn-danger {
- background-color: #ed5565;
- border-color: #ed5565;
- color: #FFFFFF;
-}
-
-.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
- background-color: #ec4758;
- border-color: #ec4758;
- color: #FFFFFF;
-}
-
-.btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
- background-image: none;
-}
-
-.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger.active[disabled], fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
- background-color: #ef6776;
- border-color: #ef6776;
-}
-
-.btn-link {
- color: inherit;
-}
-
-.btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active, .open .dropdown-toggle.btn-link {
- color: #1ab394;
- text-decoration: none;
-}
-
-.btn-link:active, .btn-link.active, .open .dropdown-toggle.btn-link {
- background-image: none;
-}
-
-.btn-link.disabled, .btn-link.disabled:hover, .btn-link.disabled:focus, .btn-link.disabled:active, .btn-link.disabled.active, .btn-link[disabled], .btn-link[disabled]:hover, .btn-link[disabled]:focus, .btn-link[disabled]:active, .btn-link.active[disabled], fieldset[disabled] .btn-link, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus, fieldset[disabled] .btn-link:active, fieldset[disabled] .btn-link.active {
- color: #cacaca;
-}
-
-.btn-white {
- color: inherit;
- background: white;
- border: 1px solid #e7eaec;
-}
-
-.btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active, .open .dropdown-toggle.btn-white {
- color: inherit;
- border: 1px solid #d2d2d2;
-}
-
-.btn-white:active, .btn-white.active {
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
-}
-
-.btn-white:active, .btn-white.active, .open .dropdown-toggle.btn-white {
- background-image: none;
-}
-
-.btn-white.disabled, .btn-white.disabled:hover, .btn-white.disabled:focus, .btn-white.disabled:active, .btn-white.disabled.active, .btn-white[disabled], .btn-white[disabled]:hover, .btn-white[disabled]:focus, .btn-white[disabled]:active, .btn-white.active[disabled], fieldset[disabled] .btn-white, fieldset[disabled] .btn-white:hover, fieldset[disabled] .btn-white:focus, fieldset[disabled] .btn-white:active, fieldset[disabled] .btn-white.active {
- color: #cacaca;
-}
-
-.form-control, .form-control:focus, .has-error .form-control:focus, .has-success .form-control:focus, .has-warning .form-control:focus, .navbar-collapse, .navbar-form, .navbar-form-custom .form-control:focus, .navbar-form-custom .form-control:hover, .open .btn.dropdown-toggle, .panel, .popover, .progress, .progress-bar {
- box-shadow: none;
-}
-
-.btn-outline {
- color: inherit;
- background-color: transparent;
- -webkit-transition: all .5s;
- transition: all .5s;
-}
-
-.btn-rounded {
- border-radius: 50px;
-}
-
-.btn-large-dim {
- width: 90px;
- height: 90px;
- font-size: 42px;
-}
-
-button.dim {
- display: inline-block;
- color: #fff;
- text-decoration: none;
- text-transform: uppercase;
- text-align: center;
- padding-top: 6px;
- margin-right: 10px;
- position: relative;
- cursor: pointer;
- border-radius: 5px;
- font-weight: 600;
- margin-bottom: 20px !important;
-}
-
-button.dim:active {
- top: 3px;
-}
-
-button.btn-primary.dim {
- box-shadow: inset 0px 0px 0px #16987e, 0px 5px 0px 0px #16987e, 0px 10px 5px #999999;
-}
-
-button.btn-primary.dim:active {
- box-shadow: inset 0px 0px 0px #16987e, 0px 2px 0px 0px #16987e, 0px 5px 3px #999999;
-}
-
-button.btn-default.dim {
- box-shadow: inset 0px 0px 0px #b3b3b3, 0px 5px 0px 0px #b3b3b3, 0px 10px 5px #999999;
-}
-
-button.btn-default.dim:active {
- box-shadow: inset 0px 0px 0px #b3b3b3, 0px 2px 0px 0px #b3b3b3, 0px 5px 3px #999999;
-}
-
-button.btn-warning.dim {
- box-shadow: inset 0px 0px 0px #f79d3c, 0px 5px 0px 0px #f79d3c, 0px 10px 5px #999999;
-}
-
-button.btn-warning.dim:active {
- box-shadow: inset 0px 0px 0px #f79d3c, 0px 2px 0px 0px #f79d3c, 0px 5px 3px #999999;
-}
-
-button.btn-info.dim {
- box-shadow: inset 0px 0px 0px #1eacae, 0px 5px 0px 0px #1eacae, 0px 10px 5px #999999;
-}
-
-button.btn-info.dim:active {
- box-shadow: inset 0px 0px 0px #1eacae, 0px 2px 0px 0px #1eacae, 0px 5px 3px #999999;
-}
-
-button.btn-success.dim {
- box-shadow: inset 0px 0px 0px #1872ab, 0px 5px 0px 0px #1872ab, 0px 10px 5px #999999;
-}
-
-button.btn-success.dim:active {
- box-shadow: inset 0px 0px 0px #1872ab, 0px 2px 0px 0px #1872ab, 0px 5px 3px #999999;
-}
-
-button.btn-danger.dim {
- box-shadow: inset 0px 0px 0px #ea394c, 0px 5px 0px 0px #ea394c, 0px 10px 5px #999999;
-}
-
-button.btn-danger.dim:active {
- box-shadow: inset 0px 0px 0px #ea394c, 0px 2px 0px 0px #ea394c, 0px 5px 3px #999999;
-}
-
-button.dim:before {
- font-size: 50px;
- line-height: 1em;
- font-weight: normal;
- color: #fff;
- display: block;
- padding-top: 10px;
-}
-
-button.dim:active:before {
- top: 7px;
- font-size: 50px;
-}
-
-.label {
- background-color: #d1dade;
- color: #5e5e5e;
- font-size: 10px;
- font-weight: 600;
- padding: 3px 8px;
- text-shadow: none;
-}
-
-.badge {
- background-color: #d1dade;
- color: #5e5e5e;
- font-size: 11px;
- font-weight: 600;
- padding-bottom: 4px;
- padding-left: 6px;
- padding-right: 6px;
- text-shadow: none;
-}
-
-.label-primary, .badge-primary {
- background-color: #1ab394;
- color: #FFFFFF;
-}
-
-.label-success, .badge-success {
- background-color: #1c84c6;
- color: #FFFFFF;
-}
-
-.label-warning, .badge-warning {
- background-color: #f8ac59;
- color: #FFFFFF;
-}
-
-.label-warning-light, .badge-warning-light {
- background-color: #f8ac59;
- color: #ffffff;
-}
-
-.label-danger, .badge-danger {
- background-color: #ed5565;
- color: #FFFFFF;
-}
-
-.label-info, .badge-info {
- background-color: #23c6c8;
- color: #FFFFFF;
-}
-
-.label-inverse, .badge-inverse {
- background-color: #262626;
- color: #FFFFFF;
-}
-
-.label-white, .badge-white {
- background-color: #FFFFFF;
- color: #5E5E5E;
-}
-
-.label-white, .badge-disable {
- background-color: #2A2E36;
- color: #8B91A0;
-}
-/* TOOGLE SWICH */
-.onoffswitch {
- position: relative;
- width: 64px;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
-}
-
-.onoffswitch-checkbox {
- display: none;
-}
-
-.onoffswitch-label {
- display: block;
- overflow: hidden;
- cursor: pointer;
- border: 2px solid #1ab394;
- border-radius: 2px;
-}
-
-.onoffswitch-inner {
- width: 200%;
- margin-left: -100%;
- -webkit-transition: margin 0.3s ease-in 0s;
- transition: margin 0.3s ease-in 0s;
-}
-
-.onoffswitch-inner:before, .onoffswitch-inner:after {
- float: left;
- width: 50%;
- height: 20px;
- padding: 0;
- line-height: 20px;
- font-size: 12px;
- color: white;
- font-family: Trebuchet, Arial, sans-serif;
- font-weight: bold;
- box-sizing: border-box;
-}
-
-.onoffswitch-inner:before {
- content: "ON";
- padding-left: 10px;
- background-color: #1ab394;
- color: #FFFFFF;
-}
-
-.onoffswitch-inner:after {
- content: "OFF";
- padding-right: 10px;
- background-color: #FFFFFF;
- color: #999999;
- text-align: right;
-}
-
-.onoffswitch-switch {
- width: 20px;
- margin: 0px;
- background: #FFFFFF;
- border: 2px solid #1ab394;
- border-radius: 2px;
- position: absolute;
- top: 0;
- bottom: 0;
- right: 44px;
- -webkit-transition: all 0.3s ease-in 0s;
- transition: all 0.3s ease-in 0s;
-}
-
-.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
- margin-left: 0;
-}
-
-.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
- right: 0px;
-}
-/* CHOSEN PLUGIN */
-.chosen-container-single .chosen-single {
- background: #ffffff;
- box-shadow: none;
- -moz-box-sizing: border-box;
- background-color: #FFFFFF;
- border: 1px solid #CBD5DD;
- border-radius: 2px;
- cursor: text;
- height: auto !important;
- margin: 0;
- min-height: 30px;
- overflow: hidden;
- padding: 4px 12px;
- position: relative;
- width: 100%;
-}
-
-.chosen-container-multi .chosen-choices li.search-choice {
- background: #f1f1f1;
- border: 1px solid #ededed;
- border-radius: 2px;
- box-shadow: none;
- color: #333333;
- cursor: default;
- line-height: 13px;
- margin: 3px 0 3px 5px;
- padding: 3px 20px 3px 5px;
- position: relative;
-}
-/* PAGINATIN */
-.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
- background-color: #f4f4f4;
- border-color: #DDDDDD;
- color: inherit;
- cursor: default;
- z-index: 2;
-}
-
-.pagination>li>a, .pagination>li>span {
- background-color: #FFFFFF;
- border: 1px solid #DDDDDD;
- color: inherit;
- float: left;
- line-height: 1.42857;
- margin-left: -1px;
- padding: 4px 10px;
- position: relative;
- text-decoration: none;
-}
-/* TOOLTIPS */
-.tooltip-inner {
- background-color: #2F4050;
-}
-
-.tooltip.top .tooltip-arrow {
- border-top-color: #2F4050;
-}
-
-.tooltip.right .tooltip-arrow {
- border-right-color: #2F4050;
-}
-
-.tooltip.bottom .tooltip-arrow {
- border-bottom-color: #2F4050;
-}
-
-.tooltip.left .tooltip-arrow {
- border-left-color: #2F4050;
-}
-/* EASY PIE CHART*/
-.easypiechart {
- position: relative;
- text-align: center;
-}
-
-.easypiechart .h2 {
- margin-left: 10px;
- margin-top: 10px;
- display: inline-block;
-}
-
-.easypiechart canvas {
- top: 0;
- left: 0;
-}
-
-.easypiechart .easypie-text {
- line-height: 1;
- position: absolute;
- top: 33px;
- width: 100%;
- z-index: 1;
-}
-
-.easypiechart img {
- margin-top: -4px;
-}
-
-.jqstooltip {
- box-sizing: content-box;
-}
-/* FULLCALENDAR */
-.fc-state-default {
- background-color: #ffffff;
- background-image: none;
- background-repeat: repeat-x;
- box-shadow: none;
- color: #333333;
- text-shadow: none;
-}
-
-.fc-state-default {
- border: 1px solid;
-}
-
-.fc-button {
- color: inherit;
- border: 1px solid #e7eaec;
- cursor: pointer;
- display: inline-block;
- height: 1.9em;
- line-height: 1.9em;
- overflow: hidden;
- padding: 0 0.6em;
- position: relative;
- white-space: nowrap;
-}
-
-.fc-state-active {
- background-color: #1ab394;
- border-color: #1ab394;
- color: #ffffff;
-}
-
-.fc-header-title h2 {
- font-size: 16px;
- font-weight: 600;
- color: inherit;
-}
-
-.fc-content .fc-widget-header, .fc-content .fc-widget-content {
- border-color: #e7eaec;
- font-weight: normal;
-}
-
-.fc-border-separate tbody {
- background-color: #F8F8F8;
-}
-
-.fc-state-highlight {
- background: none repeat scroll 0 0 #FCF8E3;
-}
-
-.external-event {
- padding: 5px 10px;
- border-radius: 2px;
- cursor: pointer;
- margin-bottom: 5px;
-}
-
-.fc-ltr .fc-event-hori.fc-event-end, .fc-rtl .fc-event-hori.fc-event-start {
- border-radius: 2px;
-}
-
-.fc-event, .fc-agenda .fc-event-time, .fc-event a {
- padding: 4px 6px;
- background-color: #1ab394;
- /* background color */
- border-color: #1ab394;
- /* border color */
-}
-
-.fc-event-time, .fc-event-title {
- color: #717171;
- padding: 0 1px;
-}
-
-.ui-calendar .fc-event-time, .ui-calendar .fc-event-title {
- color: #fff;
-}
-/* Chat */
-.chat-activity-list .chat-element {
- border-bottom: 1px solid #e7eaec;
-}
-
-.chat-element:first-child {
- margin-top: 0;
-}
-
-.chat-element {
- padding-bottom: 15px;
-}
-
-.chat-element, .chat-element .media {
- margin-top: 15px;
-}
-
-.chat-element, .media-body {
- overflow: hidden;
-}
-
-.media-body {
- display: block;
- width: auto;
-}
-
-.chat-element>.pull-left {
- margin-right: 10px;
-}
-
-.chat-element img.img-circle, .dropdown-messages-box img.img-circle {
- width: 38px;
- height: 38px;
-}
-
-.chat-element .well {
- border: 1px solid #e7eaec;
- box-shadow: none;
- margin-top: 10px;
- margin-bottom: 5px;
- padding: 10px 20px;
- font-size: 11px;
- line-height: 16px;
-}
-
-.chat-element .actions {
- margin-top: 10px;
-}
-
-.chat-element .photos {
- margin: 10px 0;
-}
-
-.right.chat-element>.pull-right {
- margin-left: 10px;
-}
-
-.chat-photo {
- max-height: 180px;
- border-radius: 4px;
- overflow: hidden;
- margin-right: 10px;
- margin-bottom: 10px;
-}
-
-.chat {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-.chat li {
- margin-bottom: 10px;
- padding-bottom: 5px;
- border-bottom: 1px dotted #B3A9A9;
-}
-
-.chat li.left .chat-body {
- margin-left: 60px;
-}
-
-.chat li.right .chat-body {
- margin-right: 60px;
-}
-
-.chat li .chat-body p {
- margin: 0;
- color: #777777;
-}
-
-.panel .slidedown .glyphicon, .chat .glyphicon {
- margin-right: 5px;
-}
-
-.chat-panel .panel-body {
- height: 350px;
- overflow-y: scroll;
-}
-/* LIST GROUP */
-a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
- background-color: #1ab394;
- border-color: #1ab394;
- color: #FFFFFF;
- z-index: 2;
-}
-
-.list-group-item-heading {
- margin-top: 10px;
-}
-
-.list-group-item-text {
- margin: 0 0 10px;
- color: inherit;
- font-size: 12px;
- line-height: inherit;
-}
-
-.no-padding .list-group-item {
- border-left: none;
- border-right: none;
- border-bottom: none;
-}
-
-.no-padding .list-group-item:first-child {
- border-left: none;
- border-right: none;
- border-bottom: none;
- border-top: none;
-}
-
-.no-padding .list-group {
- margin-bottom: 0;
-}
-
-.list-group-item {
- background-color: inherit;
- border: 1px solid #e7eaec;
- display: block;
- margin-bottom: -1px;
- padding: 10px 15px;
- position: relative;
-}
-
-.elements-list .list-group-item {
- border-left: none;
- border-right: none;
- /*border-top: none;*/
- padding: 15px 25px;
-}
-
-.elements-list .list-group-item:first-child {
- border-left: none;
- border-right: none;
- border-top: none !important;
-}
-
-.elements-list .list-group {
- margin-bottom: 0;
-}
-
-.elements-list a {
- color: inherit;
-}
-
-.elements-list .list-group-item.active, .elements-list .list-group-item:hover {
- background: #f3f3f4;
- color: inherit;
- border-color: #e7eaec;
- /*border-bottom: 1px solid #e7eaec;*/
- /*border-top: 1px solid #e7eaec;*/
- border-radius: 0;
-}
-
-.elements-list li.active {
- -webkit-transition: none;
- transition: none;
-}
-
-.element-detail-box {
- padding: 25px;
-}
-/* FLOT CHART */
-.flot-chart {
- display: block;
- height: 200px;
-}
-
-.widget .flot-chart.dashboard-chart {
- display: block;
- height: 120px;
- margin-top: 40px;
-}
-
-.flot-chart.dashboard-chart {
- display: block;
- height: 180px;
- margin-top: 40px;
-}
-
-.flot-chart-content {
- width: 100%;
- height: 100%;
-}
-
-.flot-chart-pie-content {
- width: 200px;
- height: 200px;
- margin: auto;
-}
-
-.jqstooltip {
- position: absolute;
- display: block;
- left: 0px;
- top: 0px;
- visibility: hidden;
- background: #2b303a;
- background-color: rgba(43, 48, 58, 0.8);
- color: white;
- text-align: left;
- white-space: nowrap;
- z-index: 10000;
- padding: 5px 5px 5px 5px;
- min-height: 22px;
- border-radius: 3px;
-}
-
-.jqsfield {
- color: white;
- text-align: left;
-}
-
-.h-200 {
- min-height: 200px;
-}
-
-.legendLabel {
- padding-left: 5px;
-}
-
-.stat-list li:first-child {
- margin-top: 0;
-}
-
-.stat-list {
- list-style: none;
- padding: 0;
- margin: 0;
-}
-
-.stat-percent {
- float: right;
-}
-
-.stat-list li {
- margin-top: 15px;
- position: relative;
-}
-/* DATATABLES */
-table.dataTable thead .sorting, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
- background: transparent;
-}
-
-table.dataTable thead .sorting_asc:after {
- float: right;
- font-family: fontawesome;
-}
-
-table.dataTable thead .sorting_desc:after {
- content: "\f0dd";
- float: right;
- font-family: fontawesome;
-}
-
-table.dataTable thead .sorting:after {
- content: "\f0dc";
- float: right;
- font-family: fontawesome;
- color: rgba(50, 50, 50, 0.5);
-}
-
-.dataTables_wrapper {
- padding-bottom: 30px;
-}
-/* CIRCLE */
-.img-circle {
- border-radius: 50%;
-}
-
-.btn-circle {
- width: 30px;
- height: 30px;
- padding: 6px 0;
- border-radius: 15px;
- text-align: center;
- font-size: 12px;
- line-height: 1.428571429;
-}
-
-.btn-circle.btn-lg {
- width: 50px;
- height: 50px;
- padding: 10px 16px;
- border-radius: 25px;
- font-size: 18px;
- line-height: 1.33;
-}
-
-.btn-circle.btn-xl {
- width: 70px;
- height: 70px;
- padding: 10px 16px;
- border-radius: 35px;
- font-size: 24px;
- line-height: 1.33;
-}
-
-.show-grid [class^="col-"] {
- padding-top: 10px;
- padding-bottom: 10px;
- border: 1px solid #ddd;
- background-color: #eee !important;
-}
-
-.show-grid {
- margin: 15px 0;
-}
-/* ANIMATION */
-.css-animation-box h1 {
- font-size: 44px;
-}
-
-.animation-efect-links a {
- padding: 4px 6px;
- font-size: 12px;
-}
-
-#animation_box {
- background-color: #f9f8f8;
- border-radius: 16px;
- width: 80%;
- margin: 0 auto;
- padding-top: 80px;
-}
-
-.animation-text-box {
- position: absolute;
- margin-top: 40px;
- left: 50%;
- margin-left: -100px;
- width: 200px;
-}
-
-.animation-text-info {
- position: absolute;
- margin-top: -60px;
- left: 50%;
- margin-left: -100px;
- width: 200px;
- font-size: 10px;
-}
-
-.animation-text-box h2 {
- font-size: 54px;
- font-weight: 600;
- margin-bottom: 5px;
-}
-
-.animation-text-box p {
- font-size: 12px;
- text-transform: uppercase;
-}
-/* PEACE */
-.pace {
- -webkit-pointer-events: none;
- pointer-events: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-
-.pace-inactive {
- display: none;
-}
-
-.pace .pace-progress {
- background: #1ab394;
- position: fixed;
- z-index: 2000;
- top: 0;
- width: 100%;
- height: 2px;
-}
-
-.pace-inactive {
- display: none;
-}
-/* WIDGETS */
-.widget {
- border-radius: 5px;
- padding: 15px 20px;
- margin-bottom: 10px;
- margin-top: 10px;
-}
-
-.widget.style1 h2 {
- font-size: 30px;
-}
-
-.widget h2, .widget h3 {
- margin-top: 5px;
- margin-bottom: 0;
-}
-
-.widget-text-box {
- padding: 20px;
- border: 1px solid #e7eaec;
- background: #ffffff;
-}
-
-.widget-head-color-box {
- border-radius: 5px 5px 0px 0px;
- margin-top: 10px;
-}
-
-.widget .flot-chart {
- height: 100px;
-}
-
-.vertical-align div {
- display: inline-block;
- vertical-align: middle;
-}
-
-.vertical-align h2, .vertical-align h3 {
- margin: 0;
-}
-
-.todo-list {
- list-style: none outside none;
- margin: 0;
- padding: 0;
- font-size: 14px;
-}
-
-.todo-list.small-list {
- font-size: 12px;
-}
-
-.todo-list.small-list>li {
- background: #f3f3f4;
- border-left: none;
- border-right: none;
- border-radius: 4px;
- color: inherit;
- margin-bottom: 2px;
- padding: 6px 6px 6px 12px;
-}
-
-.todo-list.small-list .btn-xs, .todo-list.small-list .btn-group-xs>.btn {
- border-radius: 5px;
- font-size: 10px;
- line-height: 1.5;
- padding: 1px 2px 1px 5px;
-}
-
-.todo-list>li {
- background: #f3f3f4;
- border-left: 6px solid #e7eaec;
- border-right: 6px solid #e7eaec;
- border-radius: 4px;
- color: inherit;
- margin-bottom: 2px;
- padding: 10px;
-}
-
-.todo-list .handle {
- cursor: move;
- display: inline-block;
- font-size: 16px;
- margin: 0 5px;
-}
-
-.todo-list>li .label {
- font-size: 9px;
- margin-left: 10px;
-}
-
-.check-link {
- font-size: 16px;
-}
-
-.todo-completed {
- text-decoration: line-through;
-}
-
-.geo-statistic h1 {
- font-size: 36px;
- margin-bottom: 0;
-}
-
-.glyphicon.fa {
- font-family: "FontAwesome";
-}
-/* INPUTS */
-.inline {
- display: inline-block !important;
-}
-
-.input-s-sm {
- width: 120px;
-}
-
-.input-s {
- width: 200px;
-}
-
-.input-s-lg {
- width: 250px;
-}
-
-.i-checks {
- padding-left: 0;
-}
-
-.form-control, .single-line {
- background: #FFFFFF none;
- border: 1px solid #e5e6e7;
- border-radius: 1px;
- color: inherit;
- display: block;
- padding: 6px 12px;
- -webkit-transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
- transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
- width: 100%;
- font-size: 14px;
-}
-
-.form-control:focus, .single-line:focus {
- border-color: #1ab394 !important;
-}
-
-.has-success .form-control {
- border-color: #1ab394;
-}
-
-.has-warning .form-control {
- border-color: #f8ac59;
-}
-
-.has-error .form-control {
- border-color: #ed5565;
-}
-
-.has-success .control-label {
- color: #1ab394;
-}
-
-.has-warning .control-label {
- color: #f8ac59;
-}
-
-.has-error .control-label {
- color: #ed5565;
-}
-
-.input-group-addon {
- background-color: #fff;
- border: 1px solid #E5E6E7;
- border-radius: 1px;
- color: inherit;
- font-size: 14px;
- font-weight: 400;
- line-height: 1;
- padding: 6px 12px;
- text-align: center;
-}
-
-.spinner-buttons.input-group-btn .btn-xs {
- line-height: 1.13;
-}
-
-.spinner-buttons.input-group-btn {
- width: 20%;
-}
-
-.noUi-connect {
- background: none repeat scroll 0 0 #1ab394;
- box-shadow: none;
-}
-
-.slider_red .noUi-connect {
- background: none repeat scroll 0 0 #ed5565;
- box-shadow: none;
-}
-/* UI Sortable */
-.ui-sortable .ibox-title {
- cursor: move;
-}
-
-.ui-sortable-placeholder {
- border: 1px dashed #cecece !important;
- visibility: visible !important;
- background: #e7eaec;
-}
-
-.ibox.ui-sortable-placeholder {
- margin: 0px 0px 23px !important;
-}
-/* Tabs */
-.tabs-container .panel-body {
- background: #fff;
- border: 1px solid #e7eaec;
- border-radius: 2px;
- padding: 20px;
- position: relative;
-}
-
-.tabs-container .nav-tabs>li.active>a, .tabs-container .nav-tabs>li.active>a:hover, .tabs-container .nav-tabs>li.active>a:focus {
- border: 1px solid #e7eaec;
- border-bottom-color: transparent;
- background-color: #fff;
-}
-
-.tabs-container .nav-tabs>li {
- float: left;
- margin-bottom: -1px;
-}
-
-.tabs-container .tab-pane .panel-body {
- border-top: none;
-}
-
-.tabs-container .nav-tabs>li.active>a, .tabs-container .nav-tabs>li.active>a:hover, .tabs-container .nav-tabs>li.active>a:focus {
- border: 1px solid #e7eaec;
- border-bottom-color: transparent;
-}
-
-.tabs-container .nav-tabs {
- border-bottom: 1px solid #e7eaec;
-}
-
-.tabs-container .tab-pane .panel-body {
- border-top: none;
-}
-
-.tabs-container .tabs-left .tab-pane .panel-body, .tabs-container .tabs-right .tab-pane .panel-body {
- border-top: 1px solid #e7eaec;
-}
-
-.tabs-container .nav-tabs>li a:hover {
- background: transparent;
- border-color: transparent;
-}
-
-.tabs-container .tabs-below>.nav-tabs, .tabs-container .tabs-right>.nav-tabs, .tabs-container .tabs-left>.nav-tabs {
- border-bottom: 0;
-}
-
-.tabs-container .tabs-left .panel-body {
- position: static;
-}
-
-.tabs-container .tabs-left>.nav-tabs, .tabs-container .tabs-right>.nav-tabs {
- width: 20%;
-}
-
-.tabs-container .tabs-left .panel-body {
- width: 80%;
- margin-left: 20%;
-}
-
-.tabs-container .tabs-right .panel-body {
- width: 80%;
- margin-right: 20%;
-}
-
-.tabs-container .tab-content>.tab-pane, .tabs-container .pill-content>.pill-pane {
- display: none;
-}
-
-.tabs-container .tab-content>.active, .tabs-container .pill-content>.active {
- display: block;
-}
-
-.tabs-container .tabs-below>.nav-tabs {
- border-top: 1px solid #e7eaec;
-}
-
-.tabs-container .tabs-below>.nav-tabs>li {
- margin-top: -1px;
- margin-bottom: 0;
-}
-
-.tabs-container .tabs-below>.nav-tabs>li>a {
- border-radius: 0 0 4px 4px;
-}
-
-.tabs-container .tabs-below>.nav-tabs>li>a:hover, .tabs-container .tabs-below>.nav-tabs>li>a:focus {
- border-top-color: #e7eaec;
- border-bottom-color: transparent;
-}
-
-.tabs-container .tabs-left>.nav-tabs>li, .tabs-container .tabs-right>.nav-tabs>li {
- float: none;
-}
-
-.tabs-container .tabs-left>.nav-tabs>li>a, .tabs-container .tabs-right>.nav-tabs>li>a {
- min-width: 74px;
- margin-right: 0;
- margin-bottom: 3px;
-}
-
-.tabs-container .tabs-left>.nav-tabs {
- float: left;
- margin-right: 19px;
-}
-
-.tabs-container .tabs-left>.nav-tabs>li>a {
- margin-right: -1px;
- border-radius: 4px 0 0 4px;
-}
-
-.tabs-container .tabs-left>.nav-tabs .active>a, .tabs-container .tabs-left>.nav-tabs .active>a:hover, .tabs-container .tabs-left>.nav-tabs .active>a:focus {
- border-color: #e7eaec transparent #e7eaec #e7eaec;
- border-right-color: #ffffff;
-}
-
-.tabs-container .tabs-right>.nav-tabs {
- float: right;
- margin-left: 19px;
-}
-
-.tabs-container .tabs-right>.nav-tabs>li>a {
- margin-left: -1px;
- border-radius: 0 4px 4px 0;
-}
-
-.tabs-container .tabs-right>.nav-tabs .active>a, .tabs-container .tabs-right>.nav-tabs .active>a:hover, .tabs-container .tabs-right>.nav-tabs .active>a:focus {
- border-color: #e7eaec #e7eaec #e7eaec transparent;
- border-left-color: #ffffff;
- z-index: 1;
-}
-/*SWITCHES */
-
-.onoffswitch{
- position: relative;
- width: 54px;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
-}
-
-.onoffswitch-checkbox {
- display: none;
-}
-
-.onoffswitch-label {
- display: block;
- overflow: hidden;
- cursor: pointer;
- border: 2px solid #1AB394;
- border-radius: 3px;
-}
-
-.onoffswitch-inner {
- display: block;
- width: 200%;
- margin-left: -100%;
- -webkit-transition: margin 0.3s ease-in 0s;
- transition: margin 0.3s ease-in 0s;
-}
-
-.onoffswitch-inner:before, .onoffswitch-inner:after {
- display: block;
- float: left;
- width: 50%;
- /* height: 16px; */
- padding: 0;
- /* line-height: 16px; */
- font-size: 10px;
- color: white;
- font-family: Trebuchet, Arial, sans-serif;
- font-weight: bold;
- box-sizing: border-box;
-}
-
-.onoffswitch-inner:before {
- content: "ON";
- padding-left: 7px;
- background-color: #1AB394;
- color: #FFFFFF;
-}
-
-.onoffswitch-inner:after {
- content: "OFF";
- padding-right: 7px;
- background-color: #FFFFFF;
- color: #919191;
- text-align: right;
-}
-
-.onoffswitch-switch {
- display: block;
- width: 18px;
- margin: 0px;
- background: #FFFFFF;
- border: 2px solid #1AB394;
- border-radius: 3px;
- position: absolute;
- top: 0;
- bottom: 0;
- right: 36px;
- -webkit-transition: all 0.3s ease-in 0s;
- transition: all 0.3s ease-in 0s;
-}
-
-.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
- margin-left: 0;
-}
-
-.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
- right: 0px;
-}
-/* Nestable list */
-.dd {
- position: relative;
- display: block;
- margin: 0;
- padding: 0;
- list-style: none;
- font-size: 13px;
- line-height: 20px;
-}
-
-.dd-list {
- display: block;
- position: relative;
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-.dd-list .dd-list {
- padding-left: 30px;
-}
-
-.dd-collapsed .dd-list {
- display: none;
-}
-
-.dd-item, .dd-empty, .dd-placeholder {
- display: block;
- position: relative;
- margin: 0;
- padding: 0;
- min-height: 20px;
- font-size: 13px;
- line-height: 20px;
-}
-
-.dd-handle {
- display: block;
- margin: 5px 0;
- padding: 5px 10px;
- color: #333;
- text-decoration: none;
- border: 1px solid #e7eaec;
- background: #f5f5f5;
- border-radius: 3px;
- box-sizing: border-box;
- -moz-box-sizing: border-box;
-}
-
-.dd-handle span {
- font-weight: bold;
-}
-
-.dd-handle:hover {
- background: #f0f0f0;
- cursor: pointer;
- font-weight: bold;
-}
-
-.dd-item>button {
- display: block;
- position: relative;
- cursor: pointer;
- float: left;
- width: 25px;
- height: 20px;
- margin: 5px 0;
- padding: 0;
- text-indent: 100%;
- white-space: nowrap;
- overflow: hidden;
- border: 0;
- background: transparent;
- font-size: 12px;
- line-height: 1;
- text-align: center;
- font-weight: bold;
-}
-
-.dd-item>button:before {
- content: '+';
- display: block;
- position: absolute;
- width: 100%;
- text-align: center;
- text-indent: 0;
-}
-
-.dd-item>button[data-action="collapse"]:before {
- content: '-';
-}
-
-#nestable2 .dd-item>button {
- font-family: FontAwesome;
- height: 34px;
- width: 33px;
- color: #c1c1c1;
-}
-
-#nestable2 .dd-item>button:before {
- content: "\f067";
-}
-
-#nestable2 .dd-item>button[data-action="collapse"]:before {
- content: "\f068";
-}
-
-.dd-placeholder, .dd-empty {
- margin: 5px 0;
- padding: 0;
- min-height: 30px;
- background: #f2fbff;
- border: 1px dashed #b6bcbf;
- box-sizing: border-box;
- -moz-box-sizing: border-box;
-}
-
-.dd-empty {
- border: 1px dashed #bbb;
- min-height: 100px;
- background-color: #e5e5e5;
- background-image: -webkit-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff), -webkit-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
- background-image: linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff), linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
- background-size: 60px 60px;
- background-position: 0 0, 30px 30px;
-}
-
-.dd-dragel {
- position: absolute;
- z-index: 9999;
- pointer-events: none;
-}
-
-.dd-dragel>.dd-item .dd-handle {
- margin-top: 0;
-}
-
-.dd-dragel .dd-handle {
- box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
-}
-/**
-* Nestable Extras
-*/
-.nestable-lists {
- display: block;
- clear: both;
- padding: 30px 0;
- width: 100%;
- border: 0;
- border-top: 2px solid #ddd;
- border-bottom: 2px solid #ddd;
-}
-
-#nestable-menu {
- padding: 0;
- margin: 10px 0 20px 0;
-}
-
-#nestable-output, #nestable2-output {
- width: 100%;
- font-size: 0.75em;
- line-height: 1.333333em;
- font-family: lucida grande, lucida sans unicode, helvetica, arial, sans-serif;
- padding: 5px;
- box-sizing: border-box;
- -moz-box-sizing: border-box;
-}
-
-#nestable2 .dd-handle {
- color: inherit;
- border: 1px dashed #e7eaec;
- background: #f3f3f4;
- padding: 10px;
-}
-
-#nestable2 .dd-handle:hover {
- /*background: #bbb;*/
-}
-
-#nestable2 span.label {
- margin-right: 10px;
-}
-
-#nestable-output, #nestable2-output {
- font-size: 12px;
- padding: 25px;
- box-sizing: border-box;
- -moz-box-sizing: border-box;
-}
-/* CodeMirror */
-.CodeMirror {
- border: 1px solid #eee;
- height: auto;
-}
-
-.CodeMirror-scroll {
- overflow-y: hidden;
- overflow-x: auto;
-}
-/* Google Maps */
-.google-map {
- height: 300px;
-}
-/* Validation */
-label.error {
- color: #cc5965;
- display: inline-block;
- margin-left: 5px;
-}
-
-.form-control.error {
- border: 1px dotted #cc5965;
-}
-/* ngGrid */
-.gridStyle {
- border: 1px solid #d4d4d4;
- width: 100%;
- height: 400px;
-}
-
-.gridStyle2 {
- border: 1px solid #d4d4d4;
- width: 500px;
- height: 300px;
-}
-
-.ngH eaderCell {
- border-right: none;
- border-bottom: 1px solid #e7eaec;
-}
-
-.ngCell {
- border-right: none;
-}
-
-.ngTopPanel {
- background: #F5F5F6;
-}
-
-.ngRow.even {
- background: #f9f9f9;
-}
-
-.ngRow.selected {
- background: #EBF2F1;
-}
-
-.ngRow {
- border-bottom: 1px solid #e7eaec;
-}
-
-.ngCell {
- background-color: transparent;
-}
-
-.ngHeaderCell {
- border-right: none;
-}
-/* Toastr custom style */
-#toast-container>.toast {
- background-image: none !important;
-}
-
-#toast-container>.toast:before {
- position: fixed;
- font-family: FontAwesome;
- font-size: 24px;
- line-height: 24px;
- float: left;
- color: #FFF;
- padding-right: 0.5em;
- margin: auto 0.5em auto -1.5em;
-}
-
-#toast-container>div {
- box-shadow: 0 0 3px #999;
- opacity: .9;
- -ms-filter: alpha(opacity = 90);
- filter: alpha(opacity = 90);
-}
-
-#toast-container>:hover {
- box-shadow: 0 0 4px #999;
- opacity: 1;
- -ms-filter: alpha(opacity = 100);
- filter: alpha(opacity = 100);
- cursor: pointer;
-}
-
-.toast {
- background-color: #1ab394;
-}
-
-.toast-success {
- background-color: #1ab394;
-}
-
-.toast-error {
- background-color: #ed5565;
-}
-
-.toast-info {
- background-color: #23c6c8;
-}
-
-.toast-warning {
- background-color: #f8ac59;
-}
-
-.toast-top-full-width {
- margin-top: 20px;
-}
-
-.toast-bottom-full-width {
- margin-bottom: 20px;
-}
-/* Image cropper style */
-.img-container, .img-preview {
- overflow: hidden;
- text-align: center;
- width: 100%;
-}
-
-.img-preview-sm {
- height: 130px;
- width: 200px;
-}
-/* Forum styles */
-.forum-post-container .media {
- margin: 10px 10px 10px 10px;
- padding: 20px 10px 20px 10px;
- border-bottom: 1px solid #f1f1f1;
-}
-
-.forum-avatar {
- float: left;
- margin-right: 20px;
- text-align: center;
- width: 110px;
-}
-
-.forum-avatar .img-circle {
- height: 48px;
- width: 48px;
-}
-
-.author-info {
- color: #676a6c;
- font-size: 11px;
- margin-top: 5px;
- text-align: center;
-}
-
-.forum-post-info {
- padding: 9px 12px 6px 12px;
- background: #f9f9f9;
- border: 1px solid #f1f1f1;
-}
-
-.media-body>.media {
- background: #f9f9f9;
- border-radius: 3px;
- border: 1px solid #f1f1f1;
-}
-
-.forum-post-container .media-body .photos {
- margin: 10px 0;
-}
-
-.forum-photo {
- max-width: 140px;
- border-radius: 3px;
-}
-
-.media-body>.media .forum-avatar {
- width: 70px;
- margin-right: 10px;
-}
-
-.media-body>.media .forum-avatar .img-circle {
- height: 38px;
- width: 38px;
-}
-
-.mid-icon {
- font-size: 66px;
-}
-
-.forum-item {
- margin: 10px 0;
- padding: 10px 0 20px;
- border-bottom: 1px solid #f1f1f1;
-}
-
-.views-number {
- font-size: 24px;
- line-height: 18px;
- font-weight: 400;
-}
-
-.forum-container, .forum-post-container {
- padding: 30px !important;
-}
-
-.forum-item small {
- color: #999;
-}
-
-.forum-item .forum-sub-title {
- color: #999;
- margin-left: 50px;
-}
-
-.forum-title {
- margin: 15px 0 15px 0;
-}
-
-.forum-info {
- text-align: center;
-}
-
-.forum-desc {
- color: #999;
-}
-
-.forum-icon {
- float: left;
- width: 30px;
- margin-right: 20px;
- text-align: center;
-}
-
-a.forum-item-title {
- color: inherit;
- display: block;
- font-size: 18px;
- font-weight: 600;
-}
-
-a.forum-item-title:hover {
- color: inherit;
-}
-
-.forum-icon .fa {
- font-size: 30px;
- margin-top: 8px;
- color: #9b9b9b;
-}
-
-.forum-item.active .fa {
- color: #1ab394;
-}
-
-.forum-item.active a.forum-item-title {
- color: #1ab394;
-}
-
-@media ( max-width : 992px) {
- .forum-info {
- margin: 15px 0 10px 0px;
- /* Comment this is you want to show forum info in small devices */
- display: none;
- }
-
- .forum-desc {
- float: none !important;
- }
-}
-/* New Timeline style */
-.vertical-container {
- /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
- width: 90%;
- max-width: 1170px;
- margin: 0 auto;
-}
-
-.vertical-container::after {
- /* clearfix */
- content: '';
- display: table;
- clear: both;
-}
-
-#vertical-timeline {
- position: relative;
- padding: 0;
- margin-top: 2em;
- margin-bottom: 2em;
-}
-
-#vertical-timeline::before {
- content: '';
- position: absolute;
- top: 0;
- left: 18px;
- height: 100%;
- width: 4px;
- background: #f1f1f1;
-}
-
-.vertical-timeline-content .btn {
- float: right;
-}
-
-#vertical-timeline.light-timeline:before {
- background: #e7eaec;
-}
-
-.dark-timeline .vertical-timeline-content:before {
- border-color: transparent #f5f5f5 transparent transparent;
-}
-
-.dark-timeline.center-orientation .vertical-timeline-content:before {
- border-color: transparent transparent transparent #f5f5f5;
-}
-
-.dark-timeline .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before, .dark-timeline.center-orientation .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before {
- border-color: transparent #f5f5f5 transparent transparent;
-}
-
-.dark-timeline .vertical-timeline-content, .dark-timeline.center-orientation .vertical-timeline-content {
- background: #f5f5f5;
-}
-
-@media only screen and (min-width: 1170px) {
- #vertical-timeline.center-orientation {
- margin-top: 3em;
- margin-bottom: 3em;
- }
-
- #vertical-timeline.center-orientation:before {
- left: 50%;
- margin-left: -2px;
- }
-}
-
-@media only screen and (max-width: 1170px) {
- .center-orientation.dark-timeline .vertical-timeline-content:before {
- border-color: transparent #f5f5f5 transparent transparent;
- }
-}
-
-.vertical-timeline-block {
- position: relative;
- margin: 2em 0;
-}
-
-.vertical-timeline-block:after {
- content: "";
- display: table;
- clear: both;
-}
-
-.vertical-timeline-block:first-child {
- margin-top: 0;
-}
-
-.vertical-timeline-block:last-child {
- margin-bottom: 0;
-}
-
-@media only screen and (min-width: 1170px) {
- .center-orientation .vertical-timeline-block {
- margin: 4em 0;
- }
-
- .center-orientation .vertical-timeline-block:first-child {
- margin-top: 0;
- }
-
- .center-orientation .vertical-timeline-block:last-child {
- margin-bottom: 0;
- }
-}
-
-.vertical-timeline-icon {
- position: absolute;
- top: 0;
- left: 0;
- width: 40px;
- height: 40px;
- border-radius: 50%;
- font-size: 16px;
- border: 3px solid #f1f1f1;
- text-align: center;
-}
-
-.vertical-timeline-icon i {
- display: block;
- width: 24px;
- height: 24px;
- position: relative;
- left: 50%;
- top: 50%;
- margin-left: -12px;
- margin-top: -9px;
-}
-
-@media only screen and (min-width: 1170px) {
- .center-orientation .vertical-timeline-icon {
- width: 50px;
- height: 50px;
- left: 50%;
- margin-left: -25px;
- -webkit-transform: translateZ(0);
- -webkit-backface-visibility: hidden;
- font-size: 19px;
- }
-
- .center-orientation .vertical-timeline-icon i {
- margin-left: -12px;
- margin-top: -10px;
- }
-
- .center-orientation .cssanimations .vertical-timeline-icon.is-hidden {
- visibility: hidden;
- }
-}
-
-.vertical-timeline-content {
- position: relative;
- margin-left: 60px;
- background: white;
- border-radius: 0.25em;
- padding: 1em;
-}
-
-.vertical-timeline-content:after {
- content: "";
- display: table;
- clear: both;
-}
-
-.vertical-timeline-content h2 {
- font-weight: 400;
- margin-top: 4px;
-}
-
-.vertical-timeline-content p {
- margin: 1em 0;
- line-height: 1.6;
-}
-
-.vertical-timeline-content .vertical-date {
- float: left;
- font-weight: 500;
-}
-
-.vertical-date small {
- color: #1ab394;
- font-weight: 400;
-}
-
-.vertical-timeline-content::before {
- content: '';
- position: absolute;
- top: 16px;
- right: 100%;
- height: 0;
- width: 0;
- border: 7px solid transparent;
- border-right: 7px solid white;
-}
-
-@media only screen and (min-width: 768px) {
- .vertical-timeline-content h2 {
- font-size: 18px;
- }
-
- .vertical-timeline-content p {
- font-size: 13px;
- }
-}
-
-@media only screen and (min-width: 1170px) {
- .center-orientation .vertical-timeline-content {
- margin-left: 0;
- padding: 1.6em;
- width: 45%;
- }
-
- .center-orientation .vertical-timeline-content::before {
- top: 24px;
- left: 100%;
- border-color: transparent;
- border-left-color: white;
- }
-
- .center-orientation .vertical-timeline-content .btn {
- float: left;
- }
-
- .center-orientation .vertical-timeline-content .vertical-date {
- position: absolute;
- width: 100%;
- left: 122%;
- top: 2px;
- font-size: 14px;
- }
-
- .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content {
- float: right;
- }
-
- .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content::before {
- top: 24px;
- left: auto;
- right: 100%;
- border-color: transparent;
- border-right-color: white;
- }
-
- .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .btn {
- float: right;
- }
-
- .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .vertical-date {
- left: auto;
- right: 122%;
- text-align: right;
- }
-
- .center-orientation .cssanimations .vertical-timeline-content.is-hidden {
- visibility: hidden;
- }
-}
-
-.sidebard-panel {
- width: 220px;
- background: #ebebed;
- padding: 10px 20px;
- position: absolute;
- right: 0;
-}
-
-.sidebard-panel .feed-element img.img-circle {
- width: 32px;
- height: 32px;
-}
-
-.sidebard-panel .feed-element, .media-body, .sidebard-panel p {
- font-size: 12px;
-}
-
-.sidebard-panel .feed-element {
- margin-top: 20px;
- padding-bottom: 0;
-}
-
-.sidebard-panel .list-group {
- margin-bottom: 10px;
-}
-
-.sidebard-panel .list-group .list-group-item {
- padding: 5px 0;
- font-size: 12px;
- border: 0;
-}
-
-.sidebar-content .wrapper, .wrapper.sidebar-content {
- padding-right: 240px !important;
-}
-
-#right-sidebar {
- background-color: #fff;
- border-left: 1px solid #e7eaec;
- border-top: 1px solid #e7eaec;
- overflow: hidden;
- position: fixed;
- top: 60px;
- width: 260px !important;
- z-index: 1009;
- bottom: 0;
- right: -260px;
-}
-
-#right-sidebar.sidebar-open {
- right: 0;
-}
-
-#right-sidebar.sidebar-open.sidebar-top {
- top: 0;
- border-top: none;
-}
-
-.sidebar-container ul.nav-tabs {
- border: none;
-}
-
-.sidebar-container ul.nav-tabs.navs-4 li {
- width: 25%;
-}
-
-.sidebar-container ul.nav-tabs.navs-3 li {
- width: 33.3333%;
-}
-
-.sidebar-container ul.nav-tabs.navs-2 li {
- width: 50%;
-}
-
-.sidebar-container ul.nav-tabs li {
- border: none;
-}
-
-.sidebar-container ul.nav-tabs li a {
- border: none;
- padding: 12px 10px;
- margin: 0;
- border-radius: 0;
- background: #2f4050;
- color: #fff;
- text-align: center;
- border-right: 1px solid #334556;
-}
-
-.sidebar-container ul.nav-tabs li.active a {
- border: none;
- background: #f9f9f9;
- color: #676a6c;
- font-weight: bold;
-}
-
-.sidebar-container .nav-tabs>li.active>a:hover, .sidebar-container .nav-tabs>li.active>a:focus {
- border: none;
-}
-
-.sidebar-container ul.sidebar-list {
- margin: 0;
- padding: 0;
-}
-
-.sidebar-container ul.sidebar-list li {
- border-bottom: 1px solid #e7eaec;
- padding: 15px 20px;
- list-style: none;
- font-size: 12px;
-}
-
-.sidebar-container .sidebar-message:nth-child(2n+2) {
- background: #f9f9f9;
-}
-
-.sidebar-container ul.sidebar-list li a {
- text-decoration: none;
- color: inherit;
-}
-
-.sidebar-container .sidebar-content {
- padding: 15px 20px;
- font-size: 12px;
-}
-
-.sidebar-container .sidebar-title {
- background: #f9f9f9;
- padding: 20px;
- border-bottom: 1px solid #e7eaec;
-}
-
-.sidebar-container .sidebar-title h3 {
- margin-bottom: 3px;
- padding-left: 2px;
-}
-
-.sidebar-container .tab-content h4 {
- margin-bottom: 5px;
-}
-
-.sidebar-container .sidebar-message>a>.pull-left {
- margin-right: 10px;
-}
-
-.sidebar-container .sidebar-message>a {
- text-decoration: none;
- color: inherit;
-}
-
-.sidebar-container .sidebar-message {
- padding: 15px 20px;
-}
-
-.sidebar-container .sidebar-message .message-avatar {
- height: 38px;
- width: 38px;
- border-radius: 50%;
-}
-
-.sidebar-container .setings-item {
- padding: 15px 20px;
- border-bottom: 1px solid #e7eaec;
-}
-
-body {
- font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 13px;
- color: #676a6c;
- overflow-x: hidden;
-}
-
-html, body {
- height: 100%;
-}
-
-body.full-height-layout #wrapper, body.full-height-layout #page-wrapper {
- height: 100%;
-}
-
-#page-wrapper {
- min-height: auto;
-}
-
-body.boxed-layout {
- background: url('patterns/shattered.png');
-}
-
-body.boxed-layout #wrapper {
- background-color: #2f4050;
- max-width: 1200px;
- margin: 0 auto;
-}
-
-.top-navigation.boxed-layout #wrapper, .boxed-layout #wrapper.top-navigation {
- max-width: 1300px !important;
-}
-
-.block {
- display: block;
-}
-
-.clear {
- display: block;
- overflow: hidden;
-}
-
-a {
- cursor: pointer;
-}
-
-a:hover, a:focus {
- text-decoration: none;
-}
-
-.border-bottom {
- border-bottom: 1px solid #e7eaec !important;
-}
-
-.font-bold {
- font-weight: 600;
-}
-
-.font-noraml {
- font-weight: 400;
-}
-
-.text-uppercase {
- text-transform: uppercase;
-}
-
-.b-r {
- border-right: 1px solid #e7eaec;
-}
-
-.hr-line-dashed {
- border-top: 1px dashed #e7eaec;
- color: #ffffff;
- background-color: #ffffff;
- height: 1px;
- margin: 20px 0;
-}
-
-.hr-line-solid {
- border-bottom: 1px solid #e7eaec;
- background-color: rgba(0, 0, 0, 0);
- border-style: solid !important;
- margin-top: 15px;
- margin-bottom: 15px;
-}
-
-video {
- width: 100% !important;
- height: auto !important;
-}
-/* GALLERY */
-.gallery>.row>div {
- margin-bottom: 15px;
-}
-
-.fancybox img {
- margin-bottom: 5px;
- /* Only for demo */
- width: 24%;
-}
-/* Summernote text editor */
-.note-editor {
- height: auto !important;
- min-height: 100px;
- border: solid 1px #e5e6e7;
-}
-/* MODAL */
-.modal-content {
- background-clip: padding-box;
- background-color: #FFFFFF;
- border: 1px solid rgba(0, 0, 0, 0);
- border-radius: 4px;
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
- outline: 0 none;
-}
-
-.modal-dialog {
- z-index: 1200;
-}
-
-.modal-body {
- padding: 20px 30px 30px 30px;
-}
-
-.inmodal .modal-body {
- background: #f8fafb;
-}
-
-.inmodal .modal-header {
- padding: 30px 15px;
- text-align: center;
-}
-
-.animated.modal.fade .modal-dialog {
- -webkit-transform: none;
- -ms-transform: none;
- transform: none;
-}
-
-.inmodal .modal-title {
- font-size: 26px;
-}
-
-.inmodal .modal-icon {
- font-size: 84px;
- color: #e2e3e3;
-}
-
-.modal-footer {
- margin-top: 0;
-}
-/* WRAPPERS */
-#wrapper {
- width: 100%;
- overflow-x: hidden;
- background-color: #2f4050;
-}
-
-.wrapper {
- padding: 0 20px;
-}
-
-.wrapper-content {
- padding: 20px;
-}
-
-#page-wrapper {
- padding: 0 15px;
- position: inherit;
- margin: 0 0 0 220px;
-}
-
-.title-action {
- text-align: right;
- padding-top: 30px;
-}
-
-.ibox-content h1, .ibox-content h2, .ibox-content h3, .ibox-content h4, .ibox-content h5, .ibox-title h1, .ibox-title h2, .ibox-title h3, .ibox-title h4, .ibox-title h5 {
- margin-top: 5px;
-}
-
-ul.unstyled, ol.unstyled {
- list-style: none outside none;
- margin-left: 0;
-}
-
-.big-icon {
- font-size: 160px;
- color: #e5e6e7;
-}
-/* FOOTER */
-.footer {
- background: none repeat scroll 0 0 white;
- border-top: 1px solid #e7eaec;
- overflow: hidden;
- padding: 10px 20px;
- margin: 0 -15px;
- height: 36px;
-}
-
-.footer.fixed_full {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- z-index: 1000;
- padding: 10px 20px;
- background: white;
- border-top: 1px solid #e7eaec;
-}
-
-.footer.fixed {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- z-index: 1000;
- padding: 10px 20px;
- background: white;
- border-top: 1px solid #e7eaec;
- margin-left: 220px;
-}
-
-body.mini-navbar .footer.fixed, body.body-small.mini-navbar .footer.fixed {
- margin: 0 0 0 70px;
-}
-
-body.mini-navbar.canvas-menu .footer.fixed, body.canvas-menu .footer.fixed {
- margin: 0 !important;
-}
-
-body.fixed-sidebar.body-small.mini-navbar .footer.fixed {
- margin: 0 0 0 220px;
-}
-
-body.body-small .footer.fixed {
- margin-left: 0px;
-}
-/* PANELS */
-.page-heading {
- border-top: 0;
- padding: 0px 20px 20px;
-}
-
-.panel-heading h1, .panel-heading h2 {
- margin-bottom: 5px;
-}
-/*CONTENTTABS*/
-.content-tabs {
- position: relative;
- height: 42px;
- background: #fafafa;
- line-height: 40px;
-}
-
-.content-tabs .roll-nav, .page-tabs-list {
- position: absolute;
- width: 40px;
- height: 40px;
- text-align: center;
- color: #999;
- z-index: 2;
- top: 0;
-}
-
-.content-tabs .roll-left {
- left: 0;
- border-right: solid 1px #eee;
-}
-
-.content-tabs .roll-right {
- right: 0;
- border-left: solid 1px #eee;
-}
-
-.content-tabs button {
- background: #fff;
- border: 0;
- height: 40px;
- width: 40px;
- outline: none;
-}
-
-.content-tabs button:hover {
- background: #fafafa;
-}
-
-nav.page-tabs {
- margin-left: 40px;
- width: 100000px;
- height: 40px;
- overflow: hidden;
-}
-
-nav.page-tabs .page-tabs-content {
- float: left;
-}
-
-.page-tabs a {
- display: block;
- float: left;
- border-right: solid 1px #eee;
- padding: 0 15px;
-}
-
-.page-tabs a i:hover {
- color: #c00;
-}
-
-.page-tabs a:hover, .content-tabs .roll-nav:hover {
- color: #777;
- background: #f2f2f2;
- cursor: pointer;
-}
-
-.roll-right.J_tabRight {
- right: 140px;
-}
-
-.roll-right.btn-group {
- right: 60px;
- width: 80px;
- padding: 0;
-}
-
-.roll-right.btn-group button {
- width: 80px;
-}
-
-.roll-right.J_tabExit {
- background: #fff;
- height: 40px;
- width: 60px;
- outline: none;
-}
-
-.dropdown-menu-right {
- left: auto;
-}
-
-#content-main {
- /*让标签页撑满,不保留footer高度。footer在每个标签页内部实现。*/
- height: calc(100% - 105px);
- /*height: calc(100% - 140px);*/
- overflow: hidden;
-}
-
-.fixed-nav #content-main {
- height: calc(100% - 80px);
- overflow: hidden;
-}
-/* TABLES */
-.table-bordered {
- border: 1px solid #EBEBEB;
-}
-
-.table-bordered>thead>tr>th, .table-bordered>thead>tr>td {
- background-color: #F5F5F6;
- border-bottom-width: 1px;
-}
-
-.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td {
- border: 1px solid #e7e7e7;
-}
-
-.table>thead>tr>th {
- border-bottom: 1px solid #DDDDDD;
- vertical-align: bottom;
-}
-
-.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
- border-top: 1px solid #e7eaec;
- line-height: 1.42857;
- padding: 8px;
- vertical-align: middle;
-}
-/* PANELS */
-.panel.blank-panel {
- background: none;
- margin: 0;
-}
-
-.blank-panel .panel-heading {
- padding-bottom: 0;
-}
-
-.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
- -moz-border-bottom-colors: none;
- -moz-border-left-colors: none;
- -moz-border-right-colors: none;
- -moz-border-top-colors: none;
- background: none;
- border-color: #dddddd #dddddd rgba(0, 0, 0, 0);
- border-bottom: #f3f3f4;
- -webkit-border-image: none;
- -o-border-image: none;
- border-image: none;
- border-style: solid;
- border-width: 1px;
- color: #555555;
- cursor: default;
-}
-
-.nav.nav-tabs li {
- background: none;
- border: none;
-}
-
-.nav-tabs>li>a {
- color: #A7B1C2;
- font-weight: 600;
- padding: 10px 20px 10px 25px;
-}
-
-.nav-tabs>li>a:hover, .nav-tabs>li>a:focus {
- background-color: #e6e6e6;
- color: #676a6c;
-}
-
-.ui-tab .tab-content {
- padding: 20px 0px;
-}
-/* GLOBAL */
-.no-padding {
- padding: 0 !important;
-}
-
-.no-borders {
- border: none !important;
-}
-
-.no-margins {
- margin: 0 !important;
-}
-
-.no-top-border {
- border-top: 0 !important;
-}
-
-.ibox-content.text-box {
- padding-bottom: 0px;
- padding-top: 15px;
-}
-
-.border-left-right {
- border-left: 1px solid #e7eaec;
- border-right: 1px solid #e7eaec;
- border-top: none;
- border-bottom: none;
-}
-
-.border-left {
- border-left: 1px solid #e7eaec;
- border-right: none;
- border-top: none;
- border-bottom: none;
-}
-
-.border-right {
- border-left: none;
- border-right: 1px solid #e7eaec;
- border-top: none;
- border-bottom: none;
-}
-
-.full-width {
- width: 100% !important;
-}
-
-.link-block {
- font-size: 12px;
- padding: 10px;
-}
-
-.nav.navbar-top-links .link-block a {
- font-size: 12px;
-}
-
-.link-block a {
- font-size: 10px;
- color: inherit;
-}
-
-body.mini-navbar .branding {
- display: none;
-}
-
-img.circle-border {
- border: 6px solid #FFFFFF;
- border-radius: 50%;
-}
-
-.branding {
- float: left;
- color: #FFFFFF;
- font-size: 18px;
- font-weight: 600;
- padding: 17px 20px;
- text-align: center;
- background-color: #1ab394;
-}
-
-.login-panel {
- margin-top: 25%;
-}
-
-.page-header {
- padding: 20px 0 9px;
- margin: 0 0 20px;
- border-bottom: 1px solid #eeeeee;
-}
-
-.fontawesome-icon-list {
- margin-top: 22px;
-}
-
-.fontawesome-icon-list .fa-hover a {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- display: block;
- color: #222222;
- line-height: 32px;
- height: 32px;
- padding-left: 10px;
- border-radius: 4px;
-}
-
-.fontawesome-icon-list .fa-hover a .fa {
- width: 32px;
- font-size: 14px;
- display: inline-block;
- text-align: right;
- margin-right: 10px;
-}
-
-.fontawesome-icon-list .fa-hover a:hover {
- background-color: #1d9d74;
- color: #ffffff;
- text-decoration: none;
-}
-
-.fontawesome-icon-list .fa-hover a:hover .fa {
- font-size: 30px;
- vertical-align: -6px;
-}
-
-.fontawesome-icon-list .fa-hover a:hover .text-muted {
- color: #bbe2d5;
-}
-
-.feature-list .col-md-4 {
- margin-bottom: 22px;
-}
-
-.feature-list h4 .fa:before {
- vertical-align: -10%;
- font-size: 28px;
- display: inline-block;
- width: 1.07142857em;
- text-align: center;
- margin-right: 5px;
-}
-
-.ui-draggable .ibox-title {
- cursor: move;
-}
-
-.breadcrumb {
- background-color: #ffffff;
- padding: 0;
- margin-bottom: 0;
-}
-
-.breadcrumb>li a {
- color: inherit;
-}
-
-.breadcrumb>.active {
- color: inherit;
-}
-
-code {
- background-color: #F9F2F4;
- border-radius: 4px;
- color: #ca4440;
- font-size: 90%;
- padding: 2px 4px;
- white-space: nowrap;
-}
-
-.ibox {
- clear: both;
- margin-bottom: 25px;
- margin-top: 0;
- padding: 0;
-}
-
-.ibox.collapsed .ibox-content {
- display: none;
-}
-
-.ibox.collapsed .fa.fa-chevron-up:before {
- content: "\f078";
-}
-
-.ibox.collapsed .fa.fa-chevron-down:before {
- content: "\f077";
-}
-
-.ibox:after, .ibox:before {
- display: table;
-}
-
-.ibox-title {
- -moz-border-bottom-colors: none;
- -moz-border-left-colors: none;
- -moz-border-right-colors: none;
- -moz-border-top-colors: none;
- background-color: #ffffff;
- border-color: #e7eaec;
- -webkit-border-image: none;
- -o-border-image: none;
- border-image: none;
- border-style: solid solid none;
- border-width: 4px 0px 0;
- color: inherit;
- margin-bottom: 0;
- padding: 14px 15px 7px;
- min-height: 48px;
-}
-
-.ibox-content {
- background-color: #ffffff;
- color: inherit;
- padding: 15px 20px 20px 20px;
- border-color: #e7eaec;
- -webkit-border-image: none;
- -o-border-image: none;
- border-image: none;
- border-style: solid solid none;
- border-width: 1px 0px;
-}
-
-table.table-mail tr td {
- padding: 12px;
-}
-
-.table-mail .check-mail {
- padding-left: 20px;
-}
-
-.table-mail .mail-date {
- padding-right: 20px;
-}
-
-.star-mail, .check-mail {
- width: 40px;
-}
-
-.unread td a, .unread td {
- font-weight: 600;
- color: inherit;
-}
-
-.read td a, .read td {
- font-weight: normal;
- color: inherit;
-}
-
-.unread td {
- background-color: #f9f8f8;
-}
-
-.ibox-content {
- clear: both;
-}
-
-.ibox-heading {
- background-color: #f3f6fb;
- border-bottom: none;
-}
-
-.ibox-heading h3 {
- font-weight: 200;
- font-size: 24px;
-}
-
-.ibox-title h5 {
- display: inline-block;
- font-size: 14px;
- margin: 0 0 7px;
- padding: 0;
- text-overflow: ellipsis;
- float: left;
-}
-
-.ibox-title .label {
- float: left;
- margin-left: 4px;
-}
-
-.ibox-tools {
- display: inline-block;
- float: right;
- margin-top: 0;
- position: relative;
- padding: 0;
-}
-
-.ibox-tools a {
- cursor: pointer;
- margin-left: 5px;
- color: #c4c4c4;
-}
-
-.ibox-tools a.btn-primary {
- color: #fff;
-}
-
-.ibox-tools .dropdown-menu>li>a {
- padding: 4px 10px;
- font-size: 12px;
-}
-
-.ibox .open>.dropdown-menu {
- left: auto;
- right: 0;
-}
-/* BACKGROUNDS */
-.gray-bg {
- background-color: #f3f3f4;
-}
-
-.white-bg {
- background-color: #ffffff;
-}
-
-.navy-bg {
- background-color: #1ab394;
- color: #ffffff;
-}
-
-.blue-bg {
- background-color: #1c84c6;
- color: #ffffff;
-}
-
-.lazur-bg {
- background-color: #23c6c8;
- color: #ffffff;
-}
-
-.yellow-bg {
- background-color: #f8ac59;
- color: #ffffff;
-}
-
-.red-bg {
- background-color: #ed5565;
- color: #ffffff;
-}
-
-.black-bg {
- background-color: #262626;
-}
-
-.panel-primary {
- border-color: #1ab394;
-}
-
-.panel-primary>.panel-heading {
- background-color: #1ab394;
- border-color: #1ab394;
-}
-
-.panel-success {
- border-color: #1c84c6;
-}
-
-.panel-success>.panel-heading {
- background-color: #1c84c6;
- border-color: #1c84c6;
- color: #ffffff;
-}
-
-.panel-info {
- border-color: #23c6c8;
-}
-
-.panel-info>.panel-heading {
- background-color: #23c6c8;
- border-color: #23c6c8;
- color: #ffffff;
-}
-
-.panel-warning {
- border-color: #f8ac59;
-}
-
-.panel-warning>.panel-heading {
- background-color: #f8ac59;
- border-color: #f8ac59;
- color: #ffffff;
-}
-
-.panel-danger {
- border-color: #ed5565;
-}
-
-.panel-danger>.panel-heading {
- background-color: #ed5565;
- border-color: #ed5565;
- color: #ffffff;
-}
-
-.progress-bar {
- background-color: #1ab394;
-}
-
-.progress-small, .progress-small .progress-bar {
- height: 10px;
-}
-
-.progress-small, .progress-mini {
- margin-top: 5px;
-}
-
-.progress-mini, .progress-mini .progress-bar {
- height: 5px;
- margin-bottom: 0px;
-}
-
-.progress-bar-navy-light {
- background-color: #3dc7ab;
-}
-
-.progress-bar-success {
- background-color: #1c84c6;
-}
-
-.progress-bar-info {
- background-color: #23c6c8;
-}
-
-.progress-bar-warning {
- background-color: #f8ac59;
-}
-
-.progress-bar-danger {
- background-color: #ed5565;
-}
-
-.panel-title {
- font-size: inherit;
-}
-
-.jumbotron {
- border-radius: 6px;
- padding: 40px;
-}
-
-.jumbotron h1 {
- margin-top: 0;
-}
-/* COLORS */
-.text-navy {
- color: #1ab394;
-}
-
-.text-primary {
- color: inherit;
-}
-
-.text-success {
- color: #1c84c6;
-}
-
-.text-info {
- color: #23c6c8;
-}
-
-.text-warning {
- color: #f8ac59;
-}
-
-.text-danger {
- color: #ed5565;
-}
-
-.text-muted {
- color: #888888;
-}
-
-.simple_tag {
- background-color: #f3f3f4;
- border: 1px solid #e7eaec;
- border-radius: 2px;
- color: inherit;
- font-size: 10px;
- margin-right: 5px;
- margin-top: 5px;
- padding: 5px 12px;
- display: inline-block;
-}
-
-.img-shadow {
- box-shadow: 0px 0px 3px 0px #919191;
-}
-/* For handle diferent bg color in AngularJS version */
-.dashboards\.dashboard_2 nav.navbar, .dashboards\.dashboard_3 nav.navbar, .mailbox\.inbox nav.navbar, .mailbox\.email_view nav.navbar, .mailbox\.email_compose nav.navbar, .dashboards\.dashboard_4_1 nav.navbar {
- background: #fff;
-}
-/* For handle diferent bg color in MVC version */
-.Dashboard_2 .navbar.navbar-static-top, .Dashboard_3 .navbar.navbar-static-top, .Dashboard_4_1 .navbar.navbar-static-top, .ComposeEmail .navbar.navbar-static-top, .EmailView .navbar.navbar-static-top, .Inbox .navbar.navbar-static-top {
- background: #fff;
-}
-
-a.close-canvas-menu {
- position: absolute;
- top: 10px;
- right: 15px;
- z-index: 1011;
- color: #a7b1c2;
-}
-
-a.close-canvas-menu:hover {
- color: #fff;
-}
-/* FULL HEIGHT */
-.full-height {
- height: 100%;
-}
-
-.fh-breadcrumb {
- height: calc(100% - 196px);
- margin: 0 -15px;
- position: relative;
-}
-
-.fh-no-breadcrumb {
- height: calc(100% - 99px);
- margin: 0 -15px;
- position: relative;
-}
-
-.fh-column {
- background: #fff;
- height: 100%;
- width: 240px;
- float: left;
-}
-
-.modal-backdrop {
- z-index: 2040 !important;
-}
-
-.modal {
- z-index: 2050 !important;
-}
-
-.spiner-example {
- height: 200px;
- padding-top: 70px;
-}
-/* MARGINS & PADDINGS */
-.p-xxs {
- padding: 5px;
-}
-
-.p-xs {
- padding: 10px;
-}
-
-.p-sm {
- padding: 15px;
-}
-
-.p-m {
- padding: 20px;
-}
-
-.p-md {
- padding: 25px;
-}
-
-.p-lg {
- padding: 30px;
-}
-
-.p-xl {
- padding: 40px;
-}
-
-.m-xxs {
- margin: 2px 4px;
-}
-
-.m-xs {
- margin: 5px;
-}
-
-.m-sm {
- margin: 10px;
-}
-
-.m {
- margin: 15px;
-}
-
-.m-md {
- margin: 20px;
-}
-
-.m-lg {
- margin: 30px;
-}
-
-.m-xl {
- margin: 50px;
-}
-
-.m-n {
- margin: 0 !important;
-}
-
-.m-l-none {
- margin-left: 0;
-}
-
-.m-l-xs {
- margin-left: 5px;
-}
-
-.m-l-sm {
- margin-left: 10px;
-}
-
-.m-l {
- margin-left: 15px;
-}
-
-.m-l-md {
- margin-left: 20px;
-}
-
-.m-l-lg {
- margin-left: 30px;
-}
-
-.m-l-xl {
- margin-left: 40px;
-}
-
-.m-l-n-xxs {
- margin-left: -1px;
-}
-
-.m-l-n-xs {
- margin-left: -5px;
-}
-
-.m-l-n-sm {
- margin-left: -10px;
-}
-
-.m-l-n {
- margin-left: -15px;
-}
-
-.m-l-n-md {
- margin-left: -20px;
-}
-
-.m-l-n-lg {
- margin-left: -30px;
-}
-
-.m-l-n-xl {
- margin-left: -40px;
-}
-
-.m-t-none {
- margin-top: 0;
-}
-
-.m-t-xxs {
- margin-top: 1px;
-}
-
-.m-t-xs {
- margin-top: 5px;
-}
-
-.m-t-sm {
- margin-top: 10px;
-}
-
-.m-t {
- margin-top: 15px;
-}
-
-.m-t-md {
- margin-top: 20px;
-}
-
-.m-t-lg {
- margin-top: 30px;
-}
-
-.m-t-xl {
- margin-top: 40px;
-}
-
-.m-t-n-xxs {
- margin-top: -1px;
-}
-
-.m-t-n-xs {
- margin-top: -5px;
-}
-
-.m-t-n-sm {
- margin-top: -10px;
-}
-
-.m-t-n {
- margin-top: -15px;
-}
-
-.m-t-n-md {
- margin-top: -20px;
-}
-
-.m-t-n-lg {
- margin-top: -30px;
-}
-
-.m-t-n-xl {
- margin-top: -40px;
-}
-
-.m-r-none {
- margin-right: 0;
-}
-
-.m-r-xxs {
- margin-right: 1px;
-}
-
-.m-r-xs {
- margin-right: 5px;
-}
-
-.m-r-sm {
- margin-right: 10px;
-}
-
-.m-r {
- margin-right: 15px;
-}
-
-.m-r-md {
- margin-right: 20px;
-}
-
-.m-r-lg {
- margin-right: 30px;
-}
-
-.m-r-xl {
- margin-right: 40px;
-}
-
-.m-r-n-xxs {
- margin-right: -1px;
-}
-
-.m-r-n-xs {
- margin-right: -5px;
-}
-
-.m-r-n-sm {
- margin-right: -10px;
-}
-
-.m-r-n {
- margin-right: -15px;
-}
-
-.m-r-n-md {
- margin-right: -20px;
-}
-
-.m-r-n-lg {
- margin-right: -30px;
-}
-
-.m-r-n-xl {
- margin-right: -40px;
-}
-
-.m-b-none {
- margin-bottom: 0;
-}
-
-.m-b-xxs {
- margin-bottom: 1px;
-}
-
-.m-b-xs {
- margin-bottom: 5px;
-}
-
-.m-b-sm {
- margin-bottom: 10px;
-}
-
-.m-b {
- margin-bottom: 15px;
-}
-
-.m-b-md {
- margin-bottom: 20px;
-}
-
-.m-b-lg {
- margin-bottom: 30px;
-}
-
-.m-b-xl {
- margin-bottom: 40px;
-}
-
-.m-b-n-xxs {
- margin-bottom: -1px;
-}
-
-.m-b-n-xs {
- margin-bottom: -5px;
-}
-
-.m-b-n-sm {
- margin-bottom: -10px;
-}
-
-.m-b-n {
- margin-bottom: -15px;
-}
-
-.m-b-n-md {
- margin-bottom: -20px;
-}
-
-.m-b-n-lg {
- margin-bottom: -30px;
-}
-
-.m-b-n-xl {
- margin-bottom: -40px;
-}
-
-.space-15 {
- margin: 15px 0;
-}
-
-.space-20 {
- margin: 20px 0;
-}
-
-.space-25 {
- margin: 25px 0;
-}
-
-.space-30 {
- margin: 30px 0;
-}
-
-body.modal-open {
- padding-right: inherit !important;
-}
-/* SEARCH PAGE */
-.search-form {
- margin-top: 10px;
-}
-
-.search-result h3 {
- margin-bottom: 0;
- color: #1E0FBE;
-}
-
-.search-result .search-link {
- color: #006621;
-}
-
-.search-result p {
- font-size: 12px;
- margin-top: 5px;
-}
-/* CONTACTS */
-.contact-box {
- background-color: #ffffff;
- border: 1px solid #e7eaec;
- padding: 20px;
- margin-bottom: 20px;
-}
-
-.contact-box a {
- color: inherit;
-}
-
-/* INVOICE */
-.invoice-table tbody>tr>td:last-child, .invoice-table tbody>tr>td:nth-child(4), .invoice-table tbody>tr>td:nth-child(3), .invoice-table tbody>tr>td:nth-child(2) {
- text-align: right;
-}
-
-.invoice-table thead>tr>th:last-child, .invoice-table thead>tr>th:nth-child(4), .invoice-table thead>tr>th:nth-child(3), .invoice-table thead>tr>th:nth-child(2) {
- text-align: right;
-}
-
-.invoice-total>tbody>tr>td:first-child {
- text-align: right;
-}
-
-.invoice-total>tbody>tr>td {
- border: 0 none;
-}
-
-.invoice-total>tbody>tr>td:last-child {
- border-bottom: 1px solid #DDDDDD;
- text-align: right;
- width: 15%;
-}
-/* ERROR & LOGIN & LOCKSCREEN*/
-.middle-box {
- max-width: 400px;
- z-index: 100;
- margin: 0 auto;
- padding-top: 40px;
-}
-
-.lockscreen.middle-box {
- width: 200px;
- padding-top: 110px;
-}
-
-.loginscreen.middle-box {
- width: 300px;
-}
-
-.loginColumns {
- max-width: 800px;
- margin: 0 auto;
- padding: 100px 20px 20px 20px;
-}
-
-.passwordBox {
- max-width: 460px;
- margin: 0 auto;
- padding: 100px 20px 20px 20px;
-}
-
-.logo-name {
- color: #e6e6e6;
- font-size: 180px;
- font-weight: 800;
- letter-spacing: -10px;
- margin-bottom: 0px;
-}
-
-.middle-box h1 {
- font-size: 170px;
-}
-
-.wrapper .middle-box {
- margin-top: 140px;
-}
-
-.lock-word {
- z-index: 10;
- position: absolute;
- top: 110px;
- left: 50%;
- margin-left: -470px;
-}
-
-.lock-word span {
- font-size: 100px;
- font-weight: 600;
- color: #e9e9e9;
- display: inline-block;
-}
-
-.lock-word .first-word {
- margin-right: 160px;
-}
-/* DASBOARD */
-.dashboard-header {
- border-top: 0;
- padding: 20px 20px 20px 20px;
-}
-
-.dashboard-header h2 {
- margin-top: 10px;
- font-size: 26px;
-}
-
-.fist-item {
- border-top: none !important;
-}
-
-.statistic-box {
- margin-top: 40px;
-}
-
-.dashboard-header .list-group-item span.label {
- margin-right: 10px;
-}
-
-.list-group.clear-list .list-group-item {
- border-top: 1px solid #e7eaec;
- border-bottom: 0;
- border-right: 0;
- border-left: 0;
- padding: 10px 0;
-}
-
-ul.clear-list:first-child {
- border-top: none !important;
-}
-/* Intimeline */
-.timeline-item .date i {
- position: absolute;
- top: 0;
- right: 0;
- padding: 5px;
- width: 30px;
- text-align: center;
- border-top: 1px solid #e7eaec;
- border-bottom: 1px solid #e7eaec;
- border-left: 1px solid #e7eaec;
- background: #f8f8f8;
-}
-
-.timeline-item .date {
- text-align: right;
- width: 110px;
- position: relative;
- padding-top: 30px;
-}
-
-.timeline-item .content {
- border-left: 1px solid #e7eaec;
- border-top: 1px solid #e7eaec;
- padding-top: 10px;
- min-height: 100px;
-}
-
-.timeline-item .content:hover {
- background: #f6f6f6;
-}
-/* PIN BOARD */
-ul.notes li, ul.tag-list li {
- list-style: none;
-}
-
-ul.notes li h4 {
- margin-top: 20px;
- font-size: 16px;
-}
-
-ul.notes li div {
- text-decoration: none;
- color: #000;
- background: #ffc;
- display: block;
- height: 140px;
- width: 140px;
- padding: 1em;
- position: relative;
-}
-
-ul.notes li div small {
- position: absolute;
- top: 5px;
- right: 5px;
- font-size: 10px;
-}
-
-ul.notes li div a {
- position: absolute;
- right: 10px;
- bottom: 10px;
- color: inherit;
-}
-
-ul.notes li {
- margin: 10px 40px 50px 0px;
- float: left;
-}
-
-ul.notes li div p {
- font-size: 12px;
-}
-
-ul.notes li div {
- text-decoration: none;
- color: #000;
- background: #ffc;
- display: block;
- height: 140px;
- width: 140px;
- padding: 1em;
- /* Firefox */
- /* Safari+Chrome */
- /* Opera */
- box-shadow: 5px 5px 2px rgba(33, 33, 33, 0.7);
-}
-
-ul.notes li div {
- -webkit-transform: rotate(-6deg);
- -o-transform: rotate(-6deg);
- -moz-transform: rotate(-6deg);
-}
-
-ul.notes li:nth-child(even) div {
- -o-transform: rotate(4deg);
- -webkit-transform: rotate(4deg);
- -moz-transform: rotate(4deg);
- position: relative;
- top: 5px;
-}
-
-ul.notes li:nth-child(3n) div {
- -o-transform: rotate(-3deg);
- -webkit-transform: rotate(-3deg);
- -moz-transform: rotate(-3deg);
- position: relative;
- top: -5px;
-}
-
-ul.notes li:nth-child(5n) div {
- -o-transform: rotate(5deg);
- -webkit-transform: rotate(5deg);
- -moz-transform: rotate(5deg);
- position: relative;
- top: -10px;
-}
-
-ul.notes li div:hover, ul.notes li div:focus {
- -webkit-transform: scale(1.1);
- -moz-transform: scale(1.1);
- -o-transform: scale(1.1);
- position: relative;
- z-index: 5;
-}
-
-ul.notes li div {
- text-decoration: none;
- color: #000;
- background: #ffc;
- display: block;
- height: 210px;
- width: 210px;
- padding: 1em;
- box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.7);
- -webkit-transition: -webkit-transform 0.15s linear;
-}
-/* FILE MANAGER */
-.file-box {
- float: left;
- width: 220px;
-}
-
-.file-manager h5 {
- text-transform: uppercase;
-}
-
-.file-manager {
- list-style: none outside none;
- margin: 0;
- padding: 0;
-}
-
-.folder-list li a {
- color: #666666;
- display: block;
- padding: 5px 0;
-}
-
-.folder-list li {
- border-bottom: 1px solid #e7eaec;
- display: block;
-}
-
-.folder-list li i {
- margin-right: 8px;
- color: #3d4d5d;
-}
-
-.category-list li a {
- color: #666666;
- display: block;
- padding: 5px 0;
-}
-
-.category-list li {
- display: block;
-}
-
-.category-list li i {
- margin-right: 8px;
- color: #3d4d5d;
-}
-
-.category-list li a .text-navy {
- color: #1ab394;
-}
-
-.category-list li a .text-primary {
- color: #1c84c6;
-}
-
-.category-list li a .text-info {
- color: #23c6c8;
-}
-
-.category-list li a .text-danger {
- color: #EF5352;
-}
-
-.category-list li a .text-warning {
- color: #F8AC59;
-}
-
-.file-manager h5.tag-title {
- margin-top: 20px;
-}
-
-.tag-list li {
- float: left;
-}
-
-.tag-list li a {
- font-size: 10px;
- background-color: #f3f3f4;
- padding: 5px 12px;
- color: inherit;
- border-radius: 2px;
- border: 1px solid #e7eaec;
- margin-right: 5px;
- margin-top: 5px;
- display: block;
-}
-
-.file {
- border: 1px solid #e7eaec;
- padding: 0;
- background-color: #ffffff;
- position: relative;
- margin-bottom: 20px;
- margin-right: 20px;
-}
-
-.file-manager .hr-line-dashed {
- margin: 15px 0;
-}
-
-.file .icon, .file .image {
- height: 100px;
- overflow: hidden;
-}
-
-.file .icon {
- padding: 15px 10px;
- text-align: center;
-}
-
-.file-control {
- color: inherit;
- font-size: 14px;
- margin-right: 10px;
-}
-
-.file-control.active {
- text-decoration: underline;
-}
-
-.file .icon i {
- font-size: 70px;
- color: #dadada;
-}
-
-.file .file-name {
- padding: 10px;
- background-color: #f8f8f8;
- border-top: 1px solid #e7eaec;
-}
-
-.file-name small {
- color: #676a6c;
-}
-
-.corner {
- position: absolute;
- display: inline-block;
- width: 0;
- height: 0;
- line-height: 0;
- border: 0.6em solid transparent;
- border-right: 0.6em solid #f1f1f1;
- border-bottom: 0.6em solid #f1f1f1;
- right: 0em;
- bottom: 0em;
-}
-
-a.compose-mail {
- padding: 8px 10px;
-}
-
-.mail-search {
- max-width: 300px;
-}
-/* PROFILE */
-.profile-content {
- border-top: none !important;
-}
-
-.feed-activity-list .feed-element {
- border-bottom: 1px solid #e7eaec;
-}
-
-.feed-element:first-child {
- margin-top: 0;
-}
-
-.feed-element {
- padding-bottom: 15px;
-}
-
-.feed-element, .feed-element .media {
- margin-top: 15px;
-}
-
-.feed-element, .media-body {
- overflow: hidden;
-}
-
-.feed-element>.pull-left {
- margin-right: 10px;
-}
-
-.feed-element img.img-circle, .dropdown-messages-box img.img-circle {
- width: 38px;
- height: 38px;
-}
-
-.feed-element .well {
- border: 1px solid #e7eaec;
- box-shadow: none;
- margin-top: 10px;
- margin-bottom: 5px;
- padding: 10px 20px;
- font-size: 11px;
- line-height: 16px;
-}
-
-.feed-element .actions {
- margin-top: 10px;
-}
-
-.feed-element .photos {
- margin: 10px 0;
-}
-
-.feed-photo {
- max-height: 180px;
- border-radius: 4px;
- overflow: hidden;
- margin-right: 10px;
- margin-bottom: 10px;
-}
-/* MAILBOX */
-.mail-box {
- background-color: #ffffff;
- border: 1px solid #e7eaec;
- border-top: 0;
- padding: 0px;
- margin-bottom: 20px;
-}
-
-.mail-box-header {
- background-color: #ffffff;
- border: 1px solid #e7eaec;
- border-bottom: 0;
- padding: 30px 20px 20px 20px;
-}
-
-.mail-box-header h2 {
- margin-top: 0px;
-}
-
-.mailbox-content .tag-list li a {
- background: #ffffff;
-}
-
-.mail-body {
- border-top: 1px solid #e7eaec;
- padding: 20px;
-}
-
-.mail-text {
- border-top: 1px solid #e7eaec;
-}
-
-.mail-text .note-toolbar {
- padding: 10px 15px;
-}
-
-.mail-body .form-group {
- margin-bottom: 5px;
-}
-
-.mail-text .note-editor .note-toolbar {
- background-color: #F9F8F8;
-}
-
-.mail-attachment {
- border-top: 1px solid #e7eaec;
- padding: 20px;
- font-size: 12px;
-}
-
-.mailbox-content {
- background: none;
- border: none;
- padding: 10px;
-}
-
-.mail-ontact {
- width: 23%;
-}
-/* PROJECTS */
-.project-people, .project-actions {
- text-align: right;
- vertical-align: middle;
-}
-
-dd.project-people {
- text-align: left;
- margin-top: 5px;
-}
-
-.project-people img {
- width: 32px;
- height: 32px;
-}
-
-.project-title a {
- font-size: 14px;
- color: #676a6c;
- font-weight: 600;
-}
-
-.project-list table tr td {
- border-top: none;
- border-bottom: 1px solid #e7eaec;
- padding: 15px 10px;
- vertical-align: middle;
-}
-
-.project-manager .tag-list li a {
- font-size: 10px;
- background-color: white;
- padding: 5px 12px;
- color: inherit;
- border-radius: 2px;
- border: 1px solid #e7eaec;
- margin-right: 5px;
- margin-top: 5px;
- display: block;
-}
-
-.project-files li a {
- font-size: 11px;
- color: #676a6c;
- margin-left: 10px;
- line-height: 22px;
-}
-/* FAQ */
-.faq-item {
- padding: 20px;
- margin-bottom: 2px;
- background: #fff;
-}
-
-.faq-question {
- font-size: 18px;
- font-weight: 600;
- color: #1ab394;
- display: block;
-}
-
-.faq-question:hover {
- color: #179d82;
-}
-
-.faq-answer {
- margin-top: 10px;
- background: #f3f3f4;
- border: 1px solid #e7eaec;
- border-radius: 3px;
- padding: 15px;
-}
-
-.faq-item .tag-item {
- background: #f3f3f4;
- padding: 2px 6px;
- font-size: 10px;
- text-transform: uppercase;
-}
-/* Chat view */
-.message-input {
- height: 90px !important;
-}
-
-.chat-avatar {
- white: 36px;
- height: 36px;
- float: left;
- margin-right: 10px;
-}
-
-.chat-user-name {
- padding: 10px;
-}
-
-.chat-user {
- padding: 8px 10px;
- border-bottom: 1px solid #e7eaec;
-}
-
-.chat-user a {
- color: inherit;
-}
-
-.chat-view {
- z-index: 20012;
-}
-
-.chat-users, .chat-statistic {
- margin-left: -30px;
-}
-
-@media ( max-width : 992px) {
- .chat-users, .chat-statistic {
- margin-left: 0px;
- }
-}
-
-.chat-view .ibox-content {
- padding: 0;
-}
-
-.chat-message {
- padding: 10px 20px;
-}
-
-.message-avatar {
- height: 48px;
- width: 48px;
- border: 1px solid #e7eaec;
- border-radius: 4px;
- margin-top: 1px;
-}
-
-.chat-discussion .chat-message:nth-child(2n+1) .message-avatar {
- float: left;
- margin-right: 10px;
-}
-
-.chat-discussion .chat-message:nth-child(2n) .message-avatar {
- float: right;
- margin-left: 10px;
-}
-
-.message {
- background-color: #fff;
- border: 1px solid #e7eaec;
- text-align: left;
- display: block;
- padding: 10px 20px;
- position: relative;
- border-radius: 4px;
-}
-
-.chat-discussion .chat-message:nth-child(2n+1) .message-date {
- float: right;
-}
-
-.chat-discussion .chat-message:nth-child(2n) .message-date {
- float: left;
-}
-
-.chat-discussion .chat-message:nth-child(2n+1) .message {
- text-align: left;
- margin-left: 55px;
-}
-
-.chat-discussion .chat-message:nth-child(2n) .message {
- text-align: right;
- margin-right: 55px;
-}
-
-.message-date {
- font-size: 10px;
- color: #888888;
-}
-
-.message-content {
- display: block;
-}
-
-.chat-discussion {
- background: #eee;
- padding: 15px;
- height: 400px;
- overflow-y: auto;
-}
-
-.chat-users {
- overflow-y: auto;
- height: 400px;
-}
-
-.chat-message-form .form-group {
- margin-bottom: 0;
-}
-/* jsTree */
-.jstree-open>.jstree-anchor>.fa-folder:before {
- content: "\f07c";
-}
-
-.jstree-default .jstree-icon.none {
- width: 0;
-}
-/* CLIENTS */
-.clients-list {
- margin-top: 20px;
-}
-
-.clients-list .tab-pane {
- position: relative;
- height: 600px;
-}
-
-.client-detail {
- position: relative;
- height: 620px;
-}
-
-.clients-list table tr td {
- height: 46px;
- vertical-align: middle;
- border: none;
-}
-
-.client-link {
- font-weight: 600;
- color: inherit;
-}
-
-.client-link:hover {
- color: inherit;
-}
-
-.client-avatar {
- width: 42px;
-}
-
-.client-avatar img {
- width: 28px;
- height: 28px;
- border-radius: 50%;
-}
-
-.contact-type {
- width: 20px;
- color: #c1c3c4;
-}
-
-.client-status {
- text-align: left;
-}
-
-.client-detail .vertical-timeline-content p {
- margin: 0;
-}
-
-.client-detail .vertical-timeline-icon.gray-bg {
- color: #a7aaab;
-}
-
-.clients-list .nav-tabs>li.active>a, .clients-list .nav-tabs>li.active>a:hover, .clients-list .nav-tabs>li.active>a:focus {
- border-bottom: 1px solid #fff;
-}
-/* BLOG ARTICLE */
-.blog h2 {
- font-weight: 700;
-}
-
-.blog h5 {
- margin: 0 0 5px 0;
-}
-
-.blog .btn {
- margin: 0 0 5px 0;
-}
-
-.article h1 {
- font-size: 48px;
- font-weight: 700;
- color: #2F4050;
-}
-
-.article p {
- font-size: 15px;
- line-height: 26px;
-}
-
-.article-title {
- text-align: center;
- margin: 60px 0 40px 0;
-}
-
-.article .ibox-content {
- padding: 40px;
-}
-/* ISSUE TRACKER */
-.issue-tracker .btn-link {
- color: #1ab394;
-}
-
-table.issue-tracker tbody tr td {
- vertical-align: middle;
- height: 50px;
-}
-
-.issue-info {
- width: 50%;
-}
-
-.issue-info a {
- font-weight: 600;
- color: #676a6c;
-}
-
-.issue-info small {
- display: block;
-}
-/* TEAMS */
-.team-members {
- margin: 10px 0;
-}
-
-.team-members img.img-circle {
- width: 42px;
- height: 42px;
- margin-bottom: 5px;
-}
-/* AGILE BOARD */
-.sortable-list {
- padding: 10px 0;
-}
-
-.agile-list {
- list-style: none;
- margin: 0;
-}
-
-.agile-list li {
- background: #FAFAFB;
- border: 1px solid #e7eaec;
- margin: 0px 0 10px 0;
- padding: 10px;
- border-radius: 2px;
-}
-
-.agile-list li:hover {
- cursor: pointer;
- background: #fff;
-}
-
-.agile-list li.warning-element {
- border-left: 3px solid #f8ac59;
-}
-
-.agile-list li.danger-element {
- border-left: 3px solid #ed5565;
-}
-
-.agile-list li.info-element {
- border-left: 3px solid #1c84c6;
-}
-
-.agile-list li.success-element {
- border-left: 3px solid #1ab394;
-}
-
-.agile-detail {
- margin-top: 5px;
- font-size: 12px;
-}
-/* DIFF */
-ins {
- background-color: #c6ffc6;
- text-decoration: none;
-}
-
-del {
- background-color: #ffc6c6;
-}
-
-#small-chat {
- position: fixed;
- bottom: 50px;
- right: 26px;
- z-index: 100;
-}
-
-#small-chat .badge {
- position: absolute;
- top: -3px;
- right: -4px;
-}
-
-.open-small-chat {
- height: 38px;
- width: 38px;
- display: block;
- background: #1ab394;
- padding: 9px 8px;
- text-align: center;
- color: #fff;
- border-radius: 50%;
-}
-
-.open-small-chat:hover {
- color: white;
- background: #1ab394;
-}
-
-.small-chat-box {
- display: none;
- position: fixed;
- bottom: 50px;
- right: 80px;
- background: #fff;
- border: 1px solid #e7eaec;
- width: 230px;
- height: 320px;
- border-radius: 4px;
-}
-
-.small-chat-box.ng-small-chat {
- display: block;
-}
-
-.body-small .small-chat-box {
- bottom: 70px;
- right: 20px;
-}
-
-.small-chat-box.active {
- display: block;
-}
-
-.small-chat-box .heading {
- background: #2f4050;
- padding: 8px 15px;
- font-weight: bold;
- color: #fff;
-}
-
-.small-chat-box .chat-date {
- opacity: 0.6;
- font-size: 10px;
- font-weight: normal;
-}
-
-.small-chat-box .content {
- padding: 15px 15px;
-}
-
-.small-chat-box .content .author-name {
- font-weight: bold;
- margin-bottom: 3px;
- font-size: 11px;
-}
-
-.small-chat-box .content>div {
- padding-bottom: 20px;
-}
-
-.small-chat-box .content .chat-message {
- padding: 5px 10px;
- border-radius: 6px;
- font-size: 11px;
- line-height: 14px;
- max-width: 80%;
- background: #f3f3f4;
- margin-bottom: 10px;
-}
-
-.small-chat-box .content .chat-message.active {
- background: #1ab394;
- color: #fff;
-}
-
-.small-chat-box .content .left {
- text-align: left;
- clear: both;
-}
-
-.small-chat-box .content .left .chat-message {
- float: left;
-}
-
-.small-chat-box .content .right {
- text-align: right;
- clear: both;
-}
-
-.small-chat-box .content .right .chat-message {
- float: right;
-}
-
-.small-chat-box .form-chat {
- padding: 10px 10px;
-}
-/*
- * Usage:
- *
- *
- *
- */
-.sk-spinner-rotating-plane.sk-spinner {
- width: 30px;
- height: 30px;
- background-color: #1ab394;
- margin: 0 auto;
- -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
- animation: sk-rotatePlane 1.2s infinite ease-in-out;
-}
-
-@-webkit-keyframes sk-rotatePlane {
- 0% {
- -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
- transform: perspective(120px) rotateX(0deg) rotateY(0deg);
- }
-
- 50% {
- -webkit-transform: perspective(120px) rotateX(-180.1deg ) rotateY(0deg);
- transform: perspective(120px) rotateX(-180.1deg ) rotateY(0deg);
- }
-
- 100% {
- -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
- transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
- }
-}
-
-@keyframes sk-rotatePlane {
- 0% {
- -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
- transform: perspective(120px) rotateX(0deg) rotateY(0deg);
- }
-
- 50% {
- -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
- transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
- }
-
- 100% {
- -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg );
- transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg );
- }
-}
-/*
- * Usage:
- *
- *
- *
- */
-.sk-spinner-double-bounce.sk-spinner {
- width: 40px;
- height: 40px;
- position: relative;
- margin: 0 auto;
-}
-
-.sk-spinner-double-bounce .sk-double-bounce1, .sk-spinner-double-bounce .sk-double-bounce2 {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- background-color: #1ab394;
- opacity: 0.6;
- position: absolute;
- top: 0;
- left: 0;
- -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
- animation: sk-doubleBounce 2s infinite ease-in-out;
-}
-
-.sk-spinner-double-bounce .sk-double-bounce2 {
- -webkit-animation-delay: -1s;
- animation-delay: -1s;
-}
-
-@-webkit-keyframes sk-doubleBounce {
- 0%, 100% {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 50% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-@keyframes sk-doubleBounce {
- 0%, 100% {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 50% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-/*
- * Usage:
- *
- *
- *
- */
-.sk-spinner-wave.sk-spinner {
- margin: 0 auto;
- width: 50px;
- height: 30px;
- text-align: center;
- font-size: 10px;
-}
-
-.sk-spinner-wave div {
- background-color: #1ab394;
- height: 100%;
- width: 6px;
- display: inline-block;
- -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
- animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
-}
-
-.sk-spinner-wave .sk-rect2 {
- -webkit-animation-delay: -1.1s;
- animation-delay: -1.1s;
-}
-
-.sk-spinner-wave .sk-rect3 {
- -webkit-animation-delay: -1s;
- animation-delay: -1s;
-}
-
-.sk-spinner-wave .sk-rect4 {
- -webkit-animation-delay: -0.9s;
- animation-delay: -0.9s;
-}
-
-.sk-spinner-wave .sk-rect5 {
- -webkit-animation-delay: -0.8s;
- animation-delay: -0.8s;
-}
-
-@-webkit-keyframes sk-waveStretchDelay {
- 0%, 40%, 100% {
- -webkit-transform: scaleY(0.4);
- transform: scaleY(0.4);
- }
-
- 20% {
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
-}
-
-@keyframes sk-waveStretchDelay {
- 0%, 40%, 100% {
- -webkit-transform: scaleY(0.4);
- transform: scaleY(0.4);
- }
-
- 20% {
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
-}
-/*
- * Usage:
- *
- *
- *
- */
-.sk-spinner-wandering-cubes.sk-spinner {
- margin: 0 auto;
- width: 32px;
- height: 32px;
- position: relative;
-}
-
-.sk-spinner-wandering-cubes .sk-cube1, .sk-spinner-wandering-cubes .sk-cube2 {
- background-color: #1ab394;
- width: 10px;
- height: 10px;
- position: absolute;
- top: 0;
- left: 0;
- -webkit-animation: sk-wanderingCubeMove 1.8s infinite ease-in-out;
- animation: sk-wanderingCubeMove 1.8s infinite ease-in-out;
-}
-
-.sk-spinner-wandering-cubes .sk-cube2 {
- -webkit-animation-delay: -0.9s;
- animation-delay: -0.9s;
-}
-
-@-webkit-keyframes sk-wanderingCubeMove {
- 25% {
- -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
- transform: translateX(42px) rotate(-90deg) scale(0.5);
- }
-
- 50% {
- /* Hack to make FF rotate in the right direction */
- -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
- transform: translateX(42px) translateY(42px) rotate(-179deg);
- }
-
-50.1% {
- -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
- transform: translateX(42px) translateY(42px) rotate(-180deg);
-}
-
-75% {
- -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0 .5 );
- transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0 .5 );
-}
-
-100% {
- -webkit-transform: rotate(-360deg);
- transform: rotate(-360deg);
-}
-}
-
-@keyframes sk-wanderingCubeMove {
- 25% {
- -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
- transform: translateX(42px) rotate(-90deg) scale(0.5);
- }
-
- 50% {
- /* Hack to make FF rotate in the right direction */
- -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
- transform: translateX(42px) translateY(42px) rotate(-179deg);
- }
-
- 50.1%{
- -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
- transform: translateX(42px) translateY(42px) rotate(-180deg);
- }
-
- 75% {
- -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0 .5 );
- transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0 .5 );
- }
-
- 100% {
- -webkit-transform: rotate(-360deg);
- transform: rotate(-360deg);
- }
-}
-/*
- * Usage:
- *
- *
- *
- */
-.sk-spinner-pulse.sk-spinner {
- width: 40px;
- height: 40px;
- margin: 0 auto;
- background-color: #1ab394;
- border-radius: 100%;
- -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
- animation: sk-pulseScaleOut 1s infinite ease-in-out;
-}
-
-@-webkit-keyframes sk-pulseScaleOut {
- 0% {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 0;
- }
-}
-
-@keyframes sk-pulseScaleOut {
- 0% {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 0;
- }
-}
-/*
- * Usage:
- *
- *
- *
- */
-.sk-spinner-chasing-dots.sk-spinner {
- margin: 0 auto;
- width: 40px;
- height: 40px;
- position: relative;
- text-align: center;
- -webkit-animation: sk-chasingDotsRotate 2s infinite linear;
- animation: sk-chasingDotsRotate 2s infinite linear;
-}
-
-.sk-spinner-chasing-dots .sk-dot1, .sk-spinner-chasing-dots .sk-dot2 {
- width: 60%;
- height: 60%;
- display: inline-block;
- position: absolute;
- top: 0;
- background-color: #1ab394;
- border-radius: 100%;
- -webkit-animation: sk-chasingDotsBounce 2s infinite ease-in-out;
- animation: sk-chasingDotsBounce 2s infinite ease-in-out;
-}
-
-.sk-spinner-chasing-dots .sk-dot2 {
- top: auto;
- bottom: 0px;
- -webkit-animation-delay: -1s;
- animation-delay: -1s;
-}
-
-@-webkit-keyframes sk-chasingDotsRotate {
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-
-@keyframes sk-chasingDotsRotate {
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-
-@-webkit-keyframes sk-chasingDotsBounce {
- 0%, 100% {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 50% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-@keyframes sk-chasingDotsBounce {
- 0%, 100% {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 50% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-/*
- * Usage:
- *
- *
- *
- */
-.sk-spinner-three-bounce.sk-spinner {
- margin: 0 auto;
- width: 70px;
- text-align: center;
-}
-
-.sk-spinner-three-bounce div {
- width: 18px;
- height: 18px;
- background-color: #1ab394;
- border-radius: 100%;
- display: inline-block;
- -webkit-animation: sk-threeBounceDelay 1.4s infinite ease-in-out;
- animation: sk-threeBounceDelay 1.4s infinite ease-in-out;
- /* Prevent first frame from flickering when animation starts */
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
-}
-
-.sk-spinner-three-bounce .sk-bounce1 {
- -webkit-animation-delay: -0.32s;
- animation-delay: -0.32s;
-}
-
-.sk-spinner-three-bounce .sk-bounce2 {
- -webkit-animation-delay: -0.16s;
- animation-delay: -0.16s;
-}
-
-@-webkit-keyframes sk-threeBounceDelay {
- 0%, 80%, 100% {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 40% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-@keyframes sk-threeBounceDelay {
- 0%, 80%, 100% {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 40% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-/*
- * Usage:
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- */
-.sk-spinner-circle.sk-spinner {
- margin: 0 auto;
- width: 22px;
- height: 22px;
- position: relative;
-}
-
-.sk-spinner-circle .sk-circle {
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- top: 0;
-}
-
-.sk-spinner-circle .sk-circle:before {
- content: '';
- display: block;
- margin: 0 auto;
- width: 20%;
- height: 20%;
- background-color: #1ab394;
- border-radius: 100%;
- -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out;
- animation: sk-circleBounceDelay 1.2s infinite ease-in-out;
- /* Prevent first frame from flickering when animation starts */
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
-}
-
-.sk-spinner-circle .sk-circle2 {
- -webkit-transform: rotate(30deg);
- -ms-transform: rotate(30deg);
- transform: rotate(30deg);
-}
-
-.sk-spinner-circle .sk-circle3 {
- -webkit-transform: rotate(60deg);
- -ms-transform: rotate(60deg);
- transform: rotate(60deg);
-}
-
-.sk-spinner-circle .sk-circle4 {
- -webkit-transform: rotate(90deg);
- -ms-transform: rotate(90deg);
- transform: rotate(90deg);
-}
-
-.sk-spinner-circle .sk-circle5 {
- -webkit-transform: rotate(120deg);
- -ms-transform: rotate(120deg);
- transform: rotate(120deg);
-}
-
-.sk-spinner-circle .sk-circle6 {
- -webkit-transform: rotate(150deg);
- -ms-transform: rotate(150deg);
- transform: rotate(150deg);
-}
-
-.sk-spinner-circle .sk-circle7 {
- -webkit-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- transform: rotate(180deg);
-}
-
-.sk-spinner-circle .sk-circle8 {
- -webkit-transform: rotate(210deg);
- -ms-transform: rotate(210deg);
- transform: rotate(210deg);
-}
-
-.sk-spinner-circle .sk-circle9 {
- -webkit-transform: rotate(240deg);
- -ms-transform: rotate(240deg);
- transform: rotate(240deg);
-}
-
-.sk-spinner-circle .sk-circle10 {
- -webkit-transform: rotate(270deg);
- -ms-transform: rotate(270deg);
- transform: rotate(270deg);
-}
-
-.sk-spinner-circle .sk-circle11 {
- -webkit-transform: rotate(300deg);
- -ms-transform: rotate(300deg);
- transform: rotate(300deg);
-}
-
-.sk-spinner-circle .sk-circle12 {
- -webkit-transform: rotate(330deg);
- -ms-transform: rotate(330deg);
- transform: rotate(330deg);
-}
-
-.sk-spinner-circle .sk-circle2:before {
- -webkit-animation-delay: -1.1s;
- animation-delay: -1.1s;
-}
-
-.sk-spinner-circle .sk-circle3:before {
- -webkit-animation-delay: -1s;
- animation-delay: -1s;
-}
-
-.sk-spinner-circle .sk-circle4:before {
- -webkit-animation-delay: -0.9s;
- animation-delay: -0.9s;
-}
-
-.sk-spinner-circle .sk-circle5:before {
- -webkit-animation-delay: -0.8s;
- animation-delay: -0.8s;
-}
-
-.sk-spinner-circle .sk-circle6:before {
- -webkit-animation-delay: -0.7s;
- animation-delay: -0.7s;
-}
-
-.sk-spinner-circle .sk-circle7:before {
- -webkit-animation-delay: -0.6s;
- animation-delay: -0.6s;
-}
-
-.sk-spinner-circle .sk-circle8:before {
- -webkit-animation-delay: -0.5s;
- animation-delay: -0.5s;
-}
-
-.sk-spinner-circle .sk-circle9:before {
- -webkit-animation-delay: -0.4s;
- animation-delay: -0.4s;
-}
-
-.sk-spinner-circle .sk-circle10:before {
- -webkit-animation-delay: -0.3s;
- animation-delay: -0.3s;
-}
-
-.sk-spinner-circle .sk-circle11:before {
- -webkit-animation-delay: -0.2s;
- animation-delay: -0.2s;
-}
-
-.sk-spinner-circle .sk-circle12:before {
- -webkit-animation-delay: -0.1s;
- animation-delay: -0.1s;
-}
-
-@-webkit-keyframes sk-circleBounceDelay {
- 0%, 80%, 100% {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 40% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-@keyframes sk-circleBounceDelay {
- 0%, 80%, 100% {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 40% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-/*
- * Usage:
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- */
-.sk-spinner-cube-grid {
- /*
- * Spinner positions
- * 1 2 3
- * 4 5 6
- * 7 8 9
- */
-}
-
-.sk-spinner-cube-grid.sk-spinner {
- width: 30px;
- height: 30px;
- margin: 0 auto;
-}
-
-.sk-spinner-cube-grid .sk-cube {
- width: 33%;
- height: 33%;
- background-color: #1ab394;
- float: left;
- -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
- animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
-}
-
-.sk-spinner-cube-grid .sk-cube:nth-child(1) {
- -webkit-animation-delay: 0.2s;
- animation-delay: 0.2s;
-}
-
-.sk-spinner-cube-grid .sk-cube:nth-child(2) {
- -webkit-animation-delay: 0.3s;
- animation-delay: 0.3s;
-}
-
-.sk-spinner-cube-grid .sk-cube:nth-child(3) {
- -webkit-animation-delay: 0.4s;
- animation-delay: 0.4s;
-}
-
-.sk-spinner-cube-grid .sk-cube:nth-child(4) {
- -webkit-animation-delay: 0.1s;
- animation-delay: 0.1s;
-}
-
-.sk-spinner-cube-grid .sk-cube:nth-child(5) {
- -webkit-animation-delay: 0.2s;
- animation-delay: 0.2s;
-}
-
-.sk-spinner-cube-grid .sk-cube:nth-child(6) {
- -webkit-animation-delay: 0.3s;
- animation-delay: 0.3s;
-}
-
-.sk-spinner-cube-grid .sk-cube:nth-child(7) {
- -webkit-animation-delay: 0s;
- animation-delay: 0s;
-}
-
-.sk-spinner-cube-grid .sk-cube:nth-child(8) {
- -webkit-animation-delay: 0.1s;
- animation-delay: 0.1s;
-}
-
-.sk-spinner-cube-grid .sk-cube:nth-child(9) {
- -webkit-animation-delay: 0.2s;
- animation-delay: 0.2s;
-}
-
-@-webkit-keyframes sk-cubeGridScaleDelay {
- 0%, 70%, 100% {
- -webkit-transform: scale3D(1, 1, 1);
- transform: scale3D(1, 1, 1);
- }
-
- 35% {
- -webkit-transform: scale3D(0, 0, 1);
- transform: scale3D(0, 0, 1);
- }
-}
-
-@keyframes sk-cubeGridScaleDelay {
- 0%, 70%, 100% {
- -webkit-transform: scale3D(1, 1, 1);
- transform: scale3D(1, 1, 1);
- }
-
- 35% {
- -webkit-transform: scale3D(0, 0, 1);
- transform: scale3D(0, 0, 1);
- }
-}
-/*
- * Usage:
- *
- *
- *
- *
- *
- */
-.sk-spinner-wordpress.sk-spinner {
- background-color: #1ab394;
- width: 30px;
- height: 30px;
- border-radius: 30px;
- position: relative;
- margin: 0 auto;
- -webkit-animation: sk-innerCircle 1s linear infinite;
- animation: sk-innerCircle 1s linear infinite;
-}
-
-.sk-spinner-wordpress .sk-inner-circle {
- display: block;
- background-color: #fff;
- width: 8px;
- height: 8px;
- position: absolute;
- border-radius: 8px;
- top: 5px;
- left: 5px;
-}
-
-@-webkit-keyframes sk-innerCircle {
- 0% {
- -webkit-transform: rotate(0);
- transform: rotate(0);
- }
-
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-
-@keyframes sk-innerCircle {
- 0% {
- -webkit-transform: rotate(0);
- transform: rotate(0);
- }
-
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-/*
- * Usage:
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- *
- */
-.sk-spinner-fading-circle.sk-spinner {
- margin: 0 auto;
- width: 22px;
- height: 22px;
- position: relative;
-}
-
-.sk-spinner-fading-circle .sk-circle {
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- top: 0;
-}
-
-.sk-spinner-fading-circle .sk-circle:before {
- content: '';
- display: block;
- margin: 0 auto;
- width: 18%;
- height: 18%;
- background-color: #1ab394;
- border-radius: 100%;
- -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out;
- animation: sk-circleFadeDelay 1.2s infinite ease-in-out;
- /* Prevent first frame from flickering when animation starts */
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
-}
-
-.sk-spinner-fading-circle .sk-circle2 {
- -webkit-transform: rotate(30deg);
- -ms-transform: rotate(30deg);
- transform: rotate(30deg);
-}
-
-.sk-spinner-fading-circle .sk-circle3 {
- -webkit-transform: rotate(60deg);
- -ms-transform: rotate(60deg);
- transform: rotate(60deg);
-}
-
-.sk-spinner-fading-circle .sk-circle4 {
- -webkit-transform: rotate(90deg);
- -ms-transform: rotate(90deg);
- transform: rotate(90deg);
-}
-
-.sk-spinner-fading-circle .sk-circle5 {
- -webkit-transform: rotate(120deg);
- -ms-transform: rotate(120deg);
- transform: rotate(120deg);
-}
-
-.sk-spinner-fading-circle .sk-circle6 {
- -webkit-transform: rotate(150deg);
- -ms-transform: rotate(150deg);
- transform: rotate(150deg);
-}
-
-.sk-spinner-fading-circle .sk-circle7 {
- -webkit-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- transform: rotate(180deg);
-}
-
-.sk-spinner-fading-circle .sk-circle8 {
- -webkit-transform: rotate(210deg);
- -ms-transform: rotate(210deg);
- transform: rotate(210deg);
-}
-
-.sk-spinner-fading-circle .sk-circle9 {
- -webkit-transform: rotate(240deg);
- -ms-transform: rotate(240deg);
- transform: rotate(240deg);
-}
-
-.sk-spinner-fading-circle .sk-circle10 {
- -webkit-transform: rotate(270deg);
- -ms-transform: rotate(270deg);
- transform: rotate(270deg);
-}
-
-.sk-spinner-fading-circle .sk-circle11 {
- -webkit-transform: rotate(300deg);
- -ms-transform: rotate(300deg);
- transform: rotate(300deg);
-}
-
-.sk-spinner-fading-circle .sk-circle12 {
- -webkit-transform: rotate(330deg);
- -ms-transform: rotate(330deg);
- transform: rotate(330deg);
-}
-
-.sk-spinner-fading-circle .sk-circle2:before {
- -webkit-animation-delay: -1.1s;
- animation-delay: -1.1s;
-}
-
-.sk-spinner-fading-circle .sk-circle3:before {
- -webkit-animation-delay: -1s;
- animation-delay: -1s;
-}
-
-.sk-spinner-fading-circle .sk-circle4:before {
- -webkit-animation-delay: -0.9s;
- animation-delay: -0.9s;
-}
-
-.sk-spinner-fading-circle .sk-circle5:before {
- -webkit-animation-delay: -0.8s;
- animation-delay: -0.8s;
-}
-
-.sk-spinner-fading-circle .sk-circle6:before {
- -webkit-animation-delay: -0.7s;
- animation-delay: -0.7s;
-}
-
-.sk-spinner-fading-circle .sk-circle7:before {
- -webkit-animation-delay: -0.6s;
- animation-delay: -0.6s;
-}
-
-.sk-spinner-fading-circle .sk-circle8:before {
- -webkit-animation-delay: -0.5s;
- animation-delay: -0.5s;
-}
-
-.sk-spinner-fading-circle .sk-circle9:before {
- -webkit-animation-delay: -0.4s;
- animation-delay: -0.4s;
-}
-
-.sk-spinner-fading-circle .sk-circle10:before {
- -webkit-animation-delay: -0.3s;
- animation-delay: -0.3s;
-}
-
-.sk-spinner-fading-circle .sk-circle11:before {
- -webkit-animation-delay: -0.2s;
- animation-delay: -0.2s;
-}
-
-.sk-spinner-fading-circle .sk-circle12:before {
- -webkit-animation-delay: -0.1s;
- animation-delay: -0.1s;
-}
-
-@-webkit-keyframes sk-circleFadeDelay {
- 0%, 39%, 100% {
- opacity: 0;
- }
-
- 40% {
- opacity: 1;
- }
-}
-
-@keyframes sk-circleFadeDelay {
- 0%,39%,100% {
- opacity: 0;
- }
-
- 40% {
- opacity: 1;
- }
-}
-
-body.rtls {
- /* Theme config */
-}
-
-body.rtls #page-wrapper {
- margin: 0 220px 0 0;
-}
-
-body.rtls .nav-second-level li a {
- padding: 7px 35px 7px 10px;
-}
-
-body.rtls .ibox-title h5 {
- float: right;
-}
-
-body.rtls .pull-right {
- float: left !important;
-}
-
-body.rtls .pull-left {
- float: right !important;
-}
-
-body.rtls .ibox-tools {
- float: left;
-}
-
-body.rtls .stat-percent {
- float: left;
-}
-
-body.rtls .navbar-right {
- float: left !important;
-}
-
-body.rtls .navbar-top-links li:last-child {
- margin-left: 40px;
- margin-right: 0;
-}
-
-body.rtls .minimalize-styl-2 {
- float: right;
- margin: 14px 20px 5px 5px;
-}
-
-body.rtls .feed-element>.pull-left {
- margin-left: 10px;
- margin-right: 0;
-}
-
-body.rtls .timeline-item .date {
- text-align: left;
-}
-
-body.rtls .timeline-item .date i {
- left: 0;
- right: auto;
-}
-
-body.rtls .timeline-item .content {
- border-right: 1px solid #e7eaec;
- border-left: none;
-}
-
-body.rtls .toast-close-button {
- float: left;
-}
-
-body.rtls #toast-container>.toast:before {
- margin: auto -1.5em auto 0.5em;
-}
-
-body.rtls #toast-container>div {
- padding: 15px 50px 15px 15px;
-}
-
-body.rtls .center-orientation .vertical-timeline-icon i {
- margin-left: 0;
- margin-right: -12px;
-}
-
-body.rtls .vertical-timeline-icon i {
- right: 50%;
- left: auto;
- margin-left: auto;
- margin-right: -12px;
-}
-
-body.rtls .file-box {
- float: right;
-}
-
-body.rtls ul.notes li {
- float: right;
-}
-
-body.rtls .chat-users, body.rtls .chat-statistic {
- margin-right: -30px;
- margin-left: auto;
-}
-
-body.rtls .dropdown-menu>li>a {
- text-align: right;
-}
-
-body.rtls .b-r {
- border-left: 1px solid #e7eaec;
- border-right: none;
-}
-
-body.rtls .dd-list .dd-list {
- padding-right: 30px;
- padding-left: 0;
-}
-
-body.rtls .dd-item>button {
- float: right;
-}
-
-body.rtls .skin-setttings {
- margin-right: 40px;
- margin-left: 0;
-}
-
-body.rtls .skin-setttings {
- direction: ltr;
-}
-
-body.rtls .footer.fixed {
- margin-right: 220px;
- margin-left: 0;
-}
-
-@media ( max-width : 992px) {
- body.rtls .chat-users, body.rtls .chat-statistic {
- margin-right: 0px;
- }
-}
-
-body.rtls.mini-navbar .footer.fixed, body.body-small.mini-navbar .footer.fixed {
- margin: 0 70px 0 0;
-}
-
-body.rtls.mini-navbar.fixed-sidebar .footer.fixed, body.body-small.mini-navbar .footer.fixed {
- margin: 0 0 0 0;
-}
-
-body.rtls.top-navigation .navbar-toggle {
- float: right;
- margin-left: 15px;
- margin-right: 15px;
-}
-
-.body-small.rtls.top-navigation .navbar-header {
- float: none;
-}
-
-body.rtls.top-navigation #page-wrapper {
- margin: 0;
-}
-
-body.rtls.mini-navbar #page-wrapper {
- margin: 0 70px 0 0;
-}
-
-body.rtls.mini-navbar.fixed-sidebar #page-wrapper {
- margin: 0 0 0 0;
-}
-
-body.rtls.body-small.fixed-sidebar.mini-navbar #page-wrapper {
- margin: 0 220px 0 0;
-}
-
-body.rtls.body-small.fixed-sidebar.mini-navbar .navbar-static-side {
- width: 220px;
-}
-
-.body-small.rtls .navbar-fixed-top {
- margin-right: 0px;
-}
-
-.body-small.rtls .navbar-header {
- float: right;
-}
-
-body.rtls .navbar-top-links li:last-child {
- margin-left: 20px;
-}
-
-body.rtls .top-navigation #page-wrapper, body.rtls.mini-navbar .top-navigation #page-wrapper, body.rtls.mini-navbar.top-navigation #page-wrapper {
- margin: 0;
-}
-
-body.rtls .top-navigation .footer.fixed, body.rtls.top-navigation .footer.fixed {
- margin: 0;
-}
-
-@media ( max-width : 768px) {
- body.rtls .navbar-top-links li:last-child {
- margin-left: 20px;
- }
-
- .body-small.rtls #page-wrapper {
- position: inherit;
- margin: 0 0 0 0px;
- min-height: 1000px;
- }
-
- .body-small.rtls .navbar-static-side {
- display: none;
- z-index: 2001;
- position: absolute;
- width: 70px;
- }
-
- .body-small.rtls.mini-navbar .navbar-static-side {
- display: block;
- }
-
- .rtls.fixed-sidebar.body-small .navbar-static-side {
- display: none;
- z-index: 2001;
- position: fixed;
- width: 220px;
- }
-
- .rtls.fixed-sidebar.body-small.mini-navbar .navbar-static-side {
- display: block;
- }
-}
-
-.rtls .ltr-support {
- direction: ltr;
-}
-/*
- *
- * This is style for skin config
- * Use only in demo theme
- *
-*/
-.skin-setttings .title {
- background: #efefef;
- text-align: center;
- text-transform: uppercase;
- font-weight: 600;
- display: block;
- padding: 10px 15px;
- font-size: 12px;
-}
-
-.setings-item {
- padding: 10px 30px;
-}
-
-.setings-item.nb {
- border: none;
-}
-
-.setings-item.skin {
- text-align: center;
-}
-
-.setings-item .switch {
- float: right;
-}
-
-.skin-name a {
- text-transform: uppercase;
-}
-
-.setings-item a {
- color: #fff;
-}
-
-.default-skin, .blue-skin, .ultra-skin, .yellow-skin {
- text-align: center;
-}
-
-.default-skin {
- font-weight: 600;
- background: #1ab394;
-}
-
-.default-skin:hover {
- background: #199d82;
-}
-
-.blue-skin {
- font-weight: 600;
- background: url("patterns/header-profile-skin-1.png") repeat scroll 0 0;
-}
-
-.blue-skin:hover {
- background: #0d8ddb;
-}
-
-.yellow-skin {
- font-weight: 600;
- background: url("patterns/header-profile-skin-3.png") repeat scroll 0 100%;
-}
-
-.yellow-skin:hover {
- background: #ce8735;
-}
-
-.content-tabs {
- border-bottom: solid 2px #2f4050;
-}
-
-.page-tabs a {
- color: #999;
-}
-
-.page-tabs a i {
- color: #ccc;
-}
-
-.page-tabs a.active {
- background: #2f4050;
- color: #a7b1c2;
-}
-
-.page-tabs a.active:hover, .page-tabs a.active i:hover {
- background: #293846;
- color: #fff;
-}
-/*
- *
- * SKIN 1 - H+ - 后台主题UI框架
- * NAME - Blue light
- *
-*/
-.skin-1 .minimalize-styl-2 {
- margin: 14px 5px 5px 30px;
-}
-
-.skin-1 .navbar-top-links li:last-child {
- margin-right: 30px;
-}
-
-.skin-1.fixed-nav .minimalize-styl-2 {
- margin: 14px 5px 5px 15px;
-}
-
-.skin-1 .spin-icon {
- background: #0e9aef !important;
-}
-
-.skin-1 .nav-header {
- background: #0e9aef;
- background: url('patterns/header-profile-skin-1.png');
-}
-
-.skin-1.mini-navbar .nav-second-level {
- background: #3e495f;
-}
-
-.skin-1 .breadcrumb {
- background: transparent;
-}
-
-.skin-1 .page-heading {
- border: none;
-}
-
-.skin-1 .nav>li.active {
- background: #3a4459;
-}
-
-.skin-1 .nav>li>a {
- color: #9ea6b9;
-}
-
-.skin-1 .nav>li.active>a {
- color: #fff;
-}
-
-.skin-1 .navbar-minimalize {
- background: #0e9aef;
- border-color: #0e9aef;
-}
-
-body.skin-1 {
- background: #3e495f;
-}
-
-.skin-1 .navbar-static-top {
- background: #ffffff;
-}
-
-.skin-1 .dashboard-header {
- background: transparent;
- border-bottom: none !important;
- border-top: none;
- padding: 20px 30px 10px 30px;
-}
-
-.fixed-nav.skin-1 .navbar-fixed-top {
- background: #fff;
-}
-
-.skin-1 .wrapper-content {
- padding: 30px 15px;
-}
-
-.skin-1 #page-wrapper {
- background: #f4f6fa;
-}
-
-.skin-1 .ibox-title, .skin-1 .ibox-content {
- border-width: 1px;
-}
-
-.skin-1 .ibox-content:last-child {
- border-style: solid solid solid solid;
-}
-
-.skin-1 .nav>li.active {
- border: none;
-}
-
-.skin-1 .nav-header {
- padding: 35px 25px 25px 25px;
-}
-
-.skin-1 .nav-header a.dropdown-toggle {
- color: #fff;
- margin-top: 10px;
-}
-
-.skin-1 .nav-header a.dropdown-toggle .text-muted {
- color: #fff;
- opacity: 0.8;
-}
-
-.skin-1 .profile-element {
- text-align: center;
-}
-
-.skin-1 .img-circle {
- border-radius: 5px;
-}
-
-.skin-1 .navbar-default .nav>li>a:hover, .skin-1 .navbar-default .nav>li>a:focus {
- background: #39aef5;
- color: #fff;
-}
-
-.skin-1 .nav.nav-tabs>li.active>a {
- color: #555;
-}
-
-.skin-1 .content-tabs {
- border-bottom: solid 2px #39aef5;
-}
-
-.skin-1 .nav.nav-tabs>li.active {
- background: transparent;
-}
-
-.skin-1 .page-tabs a.active {
- background: #39aef5;
- color: #fff;
-}
-
-.skin-1 .page-tabs a.active:hover, .skin-1 .page-tabs a.active i:hover {
- background: #0e9aef;
- color: #fff;
-}
-/*
- *
- * SKIN 3 - H+ - 后台主题UI框架
- * NAME - Yellow/purple
- *
-*/
-.skin-3 .minimalize-styl-2 {
- margin: 14px 5px 5px 30px;
-}
-
-.skin-3 .navbar-top-links li:last-child {
- margin-right: 30px;
-}
-
-.skin-3.fixed-nav .minimalize-styl-2 {
- margin: 14px 5px 5px 15px;
-}
-
-.skin-3 .spin-icon {
- background: #ecba52 !important;
-}
-
-body.boxed-layout.skin-3 #wrapper {
- background: #3e2c42;
-}
-
-.skin-3 .nav-header {
- background: #ecba52;
- background: url('patterns/header-profile-skin-3.png');
-}
-
-.skin-3.mini-navbar .nav-second-level {
- background: #3e2c42;
-}
-
-.skin-3 .breadcrumb {
- background: transparent;
-}
-
-.skin-3 .page-heading {
- border: none;
-}
-
-.skin-3 .nav>li.active {
- background: #38283c;
-}
-
-.fixed-nav.skin-3 .navbar-fixed-top {
- background: #fff;
-}
-
-.skin-3 .nav>li>a {
- color: #948b96;
-}
-
-.skin-3 .nav>li.active>a {
- color: #fff;
-}
-
-.skin-3 .navbar-minimalize {
- background: #ecba52;
- border-color: #ecba52;
-}
-
-body.skin-3 {
- background: #3e2c42;
-}
-
-.skin-3 .navbar-static-top {
- background: #ffffff;
-}
-
-.skin-3 .dashboard-header {
- background: transparent;
- border-bottom: none !important;
- border-top: none;
- padding: 20px 30px 10px 30px;
-}
-
-.skin-3 .wrapper-content {
- padding: 30px 15px;
-}
-
-.skin-3 #page-wrapper {
- background: #f4f6fa;
-}
-
-.skin-3 .ibox-title, .skin-3 .ibox-content {
- border-width: 1px;
-}
-
-.skin-3 .ibox-content:last-child {
- border-style: solid solid solid solid;
-}
-
-.skin-3 .nav>li.active {
- border: none;
-}
-
-.skin-3 .nav-header {
- padding: 35px 25px 25px 25px;
-}
-
-.skin-3 .nav-header a.dropdown-toggle {
- color: #fff;
- margin-top: 10px;
-}
-
-.skin-3 .nav-header a.dropdown-toggle .text-muted {
- color: #fff;
- opacity: 0.8;
-}
-
-.skin-3 .profile-element {
- text-align: center;
-}
-
-.skin-3 .img-circle {
- border-radius: 5px;
-}
-
-.skin-3 .navbar-default .nav>li>a:hover, .skin-3 .navbar-default .nav>li>a:focus {
- background: #38283c;
- color: #fff;
-}
-
-.skin-3 .nav.nav-tabs>li.active>a {
- color: #555;
-}
-
-.skin-3 .nav.nav-tabs>li.active {
- background: transparent;
-}
-
-.skin-3 .content-tabs {
- border-bottom: solid 2px #3e2c42;
-}
-
-.skin-3 .nav.nav-tabs>li.active {
- background: transparent;
-}
-
-.skin-3 .page-tabs a.active {
- background: #3e2c42;
- color: #fff;
-}
-
-.skin-3 .page-tabs a.active:hover, .skin-3 .page-tabs a.active i:hover {
- background: #38283c;
- color: #fff;
-}
-
-@media ( min-width : 768px) {
- .navbar-top-links .dropdown-messages, .navbar-top-links .dropdown-tasks, .navbar-top-links .dropdown-alerts {
- margin-left: auto;
- }
-}
-
-@media ( max-width : 768px) {
- body.fixed-sidebar .navbar-static-side {
- display: none;
- }
-
- body.fixed-sidebar.mini-navbar .navbar-static-side {
- width: 70px;
- }
-
- .lock-word {
- display: none;
- }
-
- .navbar-form-custom {
- display: none;
- }
-
- .navbar-header {
- display: inline;
- float: left;
- }
-
- .sidebard-panel {
- z-index: 2;
- position: relative;
- width: auto;
- min-height: 100% !important;
- }
-
- .sidebar-content .wrapper {
- padding-right: 0px;
- z-index: 1;
- }
-
- .fixed-sidebar.body-small .navbar-static-side {
- display: none;
- z-index: 2001;
- position: fixed;
- width: 220px;
- }
-
- .fixed-sidebar.body-small.mini-navbar .navbar-static-side {
- display: block;
- }
-
- .ibox-tools {
- float: none;
- text-align: right;
- display: block;
- }
-
- .content-tabs {
- display: none;
- }
-
- #content-main {
- height: calc(100% - 100px);
- }
-
- .fixed-nav #content-main {
- height: calc(100% - 38px);
- }
-}
-
-.navbar-static-side {
- background: #2f4050;
-}
-
-.nav-close {
- padding: 10px;
- display: block;
- position: absolute;
- right: 5px;
- top: 5px;
- font-size: 1.4em;
- cursor: pointer;
- z-index: 10;
- display: none;
- color: rgba(255, 255, 255, .3);
-}
-
-@media ( max-width : 350px) {
- body.fixed-sidebar.mini-navbar .navbar-static-side {
- width: 0;
- }
-
- .nav-close {
- display: block;
- }
-
- #page-wrapper {
- margin-left: 0 !important;
- }
-
- .timeline-item .date {
- text-align: left;
- width: 110px;
- position: relative;
- padding-top: 30px;
- }
-
- .timeline-item .date i {
- position: absolute;
- top: 0;
- left: 15px;
- padding: 5px;
- width: 30px;
- text-align: center;
- border: 1px solid #e7eaec;
- background: #f8f8f8;
- }
-
- .timeline-item .content {
- border-left: none;
- border-top: 1px solid #e7eaec;
- padding-top: 10px;
- min-height: 100px;
- }
-
- .nav.navbar-top-links li.dropdown {
- display: none;
- }
-
- .ibox-tools {
- float: none;
- text-align: left;
- display: inline-block;
- }
-}
-/*JQGRID*/
-.ui-jqgrid-titlebar {
- height: 40px;
- line-height: 24px;
- color: #676a6c;
- background-color: #F9F9F9;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
-}
-
-.ui-jqgrid .ui-jqgrid-title {
- float: left;
- margin-left: 5px;
- font-weight: 700;
-}
-
-.ui-jqgrid .ui-jqgrid-titlebar {
- position: relative;
- border-left: 0px solid;
- border-right: 0px solid;
- border-top: 0px solid;
-}
-/* Social feed */
-.social-feed-separated .social-feed-box {
- margin-left: 62px;
-}
-
-.social-feed-separated .social-avatar {
- float: left;
- padding: 0;
-}
-
-.social-feed-separated .social-avatar img {
- width: 52px;
- height: 52px;
- border: 1px solid #e7eaec;
-}
-
-.social-feed-separated .social-feed-box .social-avatar {
- padding: 15px 15px 0 15px;
- float: none;
-}
-
-.social-feed-box {
- /*padding: 15px;*/
- border: 1px solid #e7eaec;
- background: #fff;
- margin-bottom: 15px;
-}
-
-.article .social-feed-box {
- margin-bottom: 0;
- border-bottom: none;
-}
-
-.article .social-feed-box:last-child {
- margin-bottom: 0;
- border-bottom: 1px solid #e7eaec;
-}
-
-.article .social-feed-box p {
- font-size: 13px;
- line-height: 18px;
-}
-
-.social-action {
- margin: 15px;
-}
-
-.social-avatar {
- padding: 15px 15px 0 15px;
-}
-
-.social-comment .social-comment {
- margin-left: 45px;
-}
-
-.social-avatar img {
- height: 40px;
- width: 40px;
- margin-right: 10px;
-}
-
-.social-avatar .media-body a {
- font-size: 14px;
- display: block;
-}
-
-.social-body {
- padding: 15px;
-}
-
-.social-body img {
- margin-bottom: 10px;
-}
-
-.social-footer {
- border-top: 1px solid #e7eaec;
- padding: 10px 15px;
- background: #f9f9f9;
-}
-
-.social-footer .social-comment img {
- width: 32px;
- margin-right: 10px;
-}
-
-.social-comment:first-child {
- margin-top: 0;
-}
-
-.social-comment {
- margin-top: 15px;
-}
-
-.social-comment textarea {
- font-size: 12px;
-}
-
-.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
- /* margin-top: -4px; */
-}
-
-/* Only demo */
-@media ( max-width : 1000px) {
- .welcome-message {
- display: none;
- }
-}
-/* ECHARTS */
-.echarts {
- height: 240px;
-}
-
-.checkbox-inline, .radio-inline, .checkbox-inline+.checkbox-inline, .radio-inline+.radio-inline {
- margin: 0 15px 0 0;
- font-size: 14px;
-}
-
-.navbar-toggle {
- background-color: #fff;
-}
-
-.J_menuTab {
- -webkit-transition: all .3s ease-out 0s;
- transition: all .3s ease-out 0s;
-}
-
-::-webkit-scrollbar-track {
- background-color: #F5F5F5;
-}
-
-::-webkit-scrollbar {
- width: 6px;
- background-color: #F5F5F5;
-}
-
-::-webkit-scrollbar-thumb {
- background-color: #999;
-}
-/*GO HOME*/
-.gohome {
- position: fixed;
- top: 20px;
- right: 20px;
- z-index: 100;
-}
-
-.gohome a {
- height: 38px;
- width: 38px;
- display: block;
- background: #2f4050;
- padding: 9px 8px;
- text-align: center;
- color: #fff;
- border-radius: 50%;
- opacity: .5;
-}
-
-.gohome a:hover {
- opacity: 1;
-}
-
-@media only screen and (-webkit-min-device-pixel-ratio : 2) {
- #content-main {
- -webkit-overflow-scrolling: touch;
- }
-}
-
-.navbar-header {
- width: 60%;
-}
-
-.bs-glyphicons {
- margin: 0 -10px 20px;
- overflow: hidden
-}
-
-.bs-glyphicons-list {
- padding-left: 0;
- list-style: none
-}
-
-.bs-glyphicons li {
- float: left;
- width: 25%;
- height: 115px;
- padding: 10px;
- font-size: 10px;
- line-height: 1.4;
- text-align: center;
- background-color: #f9f9f9;
- border: 1px solid #fff
-}
-
-.bs-glyphicons .glyphicon {
- margin-top: 5px;
- margin-bottom: 10px;
- font-size: 24px
-}
-
-.bs-glyphicons .glyphicon-class {
- display: block;
- text-align: center;
- word-wrap: break-word
-}
-
-.bs-glyphicons li:hover {
- color: #fff;
- background-color: #1ab394;
-}
-
-@media ( min-width : 768px) {
- .bs-glyphicons {
- margin-right: 0;
- margin-left: 0
- }
-
- .bs-glyphicons li {
- width: 12.5%;
- font-size: 12px
- }
-}
-
-.t-bar {
- padding-bottom: 10px;
-}
-.nopadding{
- padding:0;
-}
-
-/*编辑器按钮样式冲突*/
-.note-editor .btn-default {
- color: #333333!important;
- background-color: #ffffff!important;
- border-color: #cccccc!important;
-}
-
diff --git a/api/src/main/resources/static/css/user-manage.css b/api/src/main/resources/static/css/user-manage.css
deleted file mode 100644
index 3abf6ab1790bef73c6821acd2a8b8d9f397c94f8..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/css/user-manage.css
+++ /dev/null
@@ -1,3 +0,0 @@
-#hint{
- visibility: hidden;
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/font/nth-icons.eot b/api/src/main/resources/static/font/nth-icons.eot
deleted file mode 100644
index a84a254c625626692127ff10497408a1ba8413de..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/font/nth-icons.eot and /dev/null differ
diff --git a/api/src/main/resources/static/font/nth-icons.svg b/api/src/main/resources/static/font/nth-icons.svg
deleted file mode 100644
index b20634e31b728fc5ef972efe2715959897f4b834..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/font/nth-icons.svg
+++ /dev/null
@@ -1,463 +0,0 @@
-
-
-
diff --git a/api/src/main/resources/static/font/nth-icons.ttf b/api/src/main/resources/static/font/nth-icons.ttf
deleted file mode 100644
index 7626bfa362506a3d363ab11b8b61e742dcb1e193..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/font/nth-icons.ttf and /dev/null differ
diff --git a/api/src/main/resources/static/font/nth-icons.woff2 b/api/src/main/resources/static/font/nth-icons.woff2
deleted file mode 100644
index a0195f9d5e53da29fb212b8282dfb8b632ea085c..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/font/nth-icons.woff2 and /dev/null differ
diff --git a/api/src/main/resources/static/img/Concrete_Jungle.jpg b/api/src/main/resources/static/img/Concrete_Jungle.jpg
deleted file mode 100644
index dfce8a1e9274c6acbcec87d03aebe043180fa32f..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/Concrete_Jungle.jpg and /dev/null differ
diff --git a/api/src/main/resources/static/img/bg_login.jpg b/api/src/main/resources/static/img/bg_login.jpg
deleted file mode 100644
index 019c09522e6650607683b8c74f00e26c65cf01f2..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/bg_login.jpg and /dev/null differ
diff --git a/api/src/main/resources/static/img/cross.png b/api/src/main/resources/static/img/cross.png
deleted file mode 100644
index 6aa783cee89a4da25283b9374af5d5f0844d231f..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/cross.png and /dev/null differ
diff --git a/api/src/main/resources/static/img/loading.gif b/api/src/main/resources/static/img/loading.gif
deleted file mode 100644
index 253a94d7b4bec3127c5417debba36994fba618d5..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/loading.gif and /dev/null differ
diff --git a/api/src/main/resources/static/img/my_wx_qr.png b/api/src/main/resources/static/img/my_wx_qr.png
deleted file mode 100644
index e7fc2ff32702bac82edd1530894071da240b690a..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/my_wx_qr.png and /dev/null differ
diff --git a/api/src/main/resources/static/img/pc-40x40.png b/api/src/main/resources/static/img/pc-40x40.png
deleted file mode 100644
index 0c313151719352c7be27d39a02f0a83bdd1b0c85..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/pc-40x40.png and /dev/null differ
diff --git a/api/src/main/resources/static/img/photo_s.jpg b/api/src/main/resources/static/img/photo_s.jpg
deleted file mode 100644
index 2af1461f47dce3a0e6f149930c65acd2ad300509..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/photo_s.jpg and /dev/null differ
diff --git a/api/src/main/resources/static/img/qrcode-40x40.png b/api/src/main/resources/static/img/qrcode-40x40.png
deleted file mode 100644
index aae4524a78594c7e8008887a849c65f1cb20d83d..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/qrcode-40x40.png and /dev/null differ
diff --git a/api/src/main/resources/static/img/tick.png b/api/src/main/resources/static/img/tick.png
deleted file mode 100644
index ceda05bfb4082679a596381cd87d004e3feab4da..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/tick.png and /dev/null differ
diff --git a/api/src/main/resources/static/img/user-160x160.png b/api/src/main/resources/static/img/user-160x160.png
deleted file mode 100644
index fe8e01d8ba0414d9e58354418b08b1f5393f008c..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/user-160x160.png and /dev/null differ
diff --git a/api/src/main/resources/static/img/user2-160x160.jpg b/api/src/main/resources/static/img/user2-160x160.jpg
deleted file mode 100644
index aec74cb233fcd2ba3be78fba57873ca877aa89b5..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/user2-160x160.jpg and /dev/null differ
diff --git a/api/src/main/resources/static/img/user3-128x128.jpg b/api/src/main/resources/static/img/user3-128x128.jpg
deleted file mode 100644
index caf5f9662419ff4bb7d6d067f017868b29b5fc05..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/user3-128x128.jpg and /dev/null differ
diff --git a/api/src/main/resources/static/img/user4-128x128.jpg b/api/src/main/resources/static/img/user4-128x128.jpg
deleted file mode 100644
index eb8e2bb73f4007edee164e50a7a582a4d8860c1c..0000000000000000000000000000000000000000
Binary files a/api/src/main/resources/static/img/user4-128x128.jpg and /dev/null differ
diff --git a/api/src/main/resources/static/js/app.js b/api/src/main/resources/static/js/app.js
deleted file mode 100644
index c99a23abd48b0b6bba9e455477030f023e24d9eb..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/js/app.js
+++ /dev/null
@@ -1,278 +0,0 @@
-//自定义js
-
-//公共配置
-
-
-$(document).ready(function () {
-
- // MetsiMenu
- $('#side-menu').metisMenu();
-
- // 打开右侧边栏
- $('.right-sidebar-toggle').click(function () {
- $('#right-sidebar').toggleClass('sidebar-open');
- });
-
- // 右侧边栏使用slimscroll
- $('.sidebar-container').slimScroll({
- height: '100%',
- railOpacity: 0.4,
- wheelStep: 10
- });
-
- // 打开聊天窗口
- $('.open-small-chat').click(function () {
- $(this).children().toggleClass('fa-comments').toggleClass('fa-remove');
- $('.small-chat-box').toggleClass('active');
- });
-
- // 聊天窗口使用slimscroll
- $('.small-chat-box .content').slimScroll({
- height: '234px',
- railOpacity: 0.4
- });
-
- // Small todo handler
- $('.check-link').click(function () {
- var button = $(this).find('i');
- var label = $(this).next('span');
- button.toggleClass('fa-check-square').toggleClass('fa-square-o');
- label.toggleClass('todo-completed');
- return false;
- });
-
- //固定菜单栏
- $(function () {
- $('.sidebar-collapse').slimScroll({
- height: '100%',
- railOpacity: 0.9,
- alwaysVisible: false
- });
- });
-
-
- // 菜单切换
- $('.navbar-minimalize').click(function () {
- $("body").toggleClass("mini-navbar");
- SmoothlyMenu();
- });
-
-
- // 侧边栏高度
- function fix_height() {
- var heightWithoutNavbar = $("body > #wrapper").height() - 61;
- $(".sidebard-panel").css("min-height", heightWithoutNavbar + "px");
- }
- fix_height();
-
- $(window).bind("load resize click scroll", function () {
- if (!$("body").hasClass('body-small')) {
- fix_height();
- }
- });
-
- //侧边栏滚动
- $(window).scroll(function () {
- if ($(window).scrollTop() > 0 && !$('body').hasClass('fixed-nav')) {
- $('#right-sidebar').addClass('sidebar-top');
- } else {
- $('#right-sidebar').removeClass('sidebar-top');
- }
- });
-
- $('.full-height-scroll').slimScroll({
- height: '100%'
- });
-
- $('#side-menu>li').click(function () {
- if ($('body').hasClass('mini-navbar')) {
- NavToggle();
- }
- });
- $('#side-menu>li li a').click(function () {
- if ($(window).width() < 769) {
- NavToggle();
- }
- });
-
- $('.nav-close').click(NavToggle);
-
- //ios浏览器兼容性处理
- if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
- $('#content-main').css('overflow-y', 'auto');
- }
-
-});
-
-$(window).bind("load resize", function () {
- if ($(this).width() < 769) {
- $('body').addClass('mini-navbar');
- $('.navbar-static-side').fadeIn();
- }
-});
-
-function NavToggle() {
- $('.navbar-minimalize').trigger('click');
-}
-
-function SmoothlyMenu() {
- if (!$('body').hasClass('mini-navbar')) {
- $('#side-menu').hide();
- setTimeout(
- function () {
- $('#side-menu').fadeIn(500);
- }, 100);
- } else if ($('body').hasClass('fixed-sidebar')) {
- $('#side-menu').hide();
- setTimeout(
- function () {
- $('#side-menu').fadeIn(500);
- }, 300);
- } else {
- $('#side-menu').removeAttr('style');
- }
-}
-
-
-//主题设置
-$(function () {
-
- // 顶部菜单固定
- $('#fixednavbar').click(function () {
- if ($('#fixednavbar').is(':checked')) {
- $(".navbar-static-top").removeClass('navbar-static-top').addClass('navbar-fixed-top');
- $("body").removeClass('boxed-layout');
- $("body").addClass('fixed-nav');
- $('#boxedlayout').prop('checked', false);
-
- if (localStorageSupport) {
- localStorage.setItem("boxedlayout", 'off');
- }
-
- if (localStorageSupport) {
- localStorage.setItem("fixednavbar", 'on');
- }
- } else {
- $(".navbar-fixed-top").removeClass('navbar-fixed-top').addClass('navbar-static-top');
- $("body").removeClass('fixed-nav');
-
- if (localStorageSupport) {
- localStorage.setItem("fixednavbar", 'off');
- }
- }
- });
-
-
- // 收起左侧菜单
- $('#collapsemenu').click(function () {
- if ($('#collapsemenu').is(':checked')) {
- $("body").addClass('mini-navbar');
- SmoothlyMenu();
-
- if (localStorageSupport) {
- localStorage.setItem("collapse_menu", 'on');
- }
-
- } else {
- $("body").removeClass('mini-navbar');
- SmoothlyMenu();
-
- if (localStorageSupport) {
- localStorage.setItem("collapse_menu", 'off');
- }
- }
- });
-
- // 固定宽度
- $('#boxedlayout').click(function () {
- if ($('#boxedlayout').is(':checked')) {
- $("body").addClass('boxed-layout');
- $('#fixednavbar').prop('checked', false);
- $(".navbar-fixed-top").removeClass('navbar-fixed-top').addClass('navbar-static-top');
- $("body").removeClass('fixed-nav');
- if (localStorageSupport) {
- localStorage.setItem("fixednavbar", 'off');
- }
-
-
- if (localStorageSupport) {
- localStorage.setItem("boxedlayout", 'on');
- }
- } else {
- $("body").removeClass('boxed-layout');
-
- if (localStorageSupport) {
- localStorage.setItem("boxedlayout", 'off');
- }
- }
- });
-
- // 默认主题
- $('.s-skin-0').click(function () {
- $("body").removeClass("skin-1");
- $("body").removeClass("skin-2");
- $("body").removeClass("skin-3");
- return false;
- });
-
- // 蓝色主题
- $('.s-skin-1').click(function () {
- $("body").removeClass("skin-2");
- $("body").removeClass("skin-3");
- $("body").addClass("skin-1");
- return false;
- });
-
- // 黄色主题
- $('.s-skin-3').click(function () {
- $("body").removeClass("skin-1");
- $("body").removeClass("skin-2");
- $("body").addClass("skin-3");
- return false;
- });
-
- if (localStorageSupport) {
- var collapse = localStorage.getItem("collapse_menu");
- var fixednavbar = localStorage.getItem("fixednavbar");
- var boxedlayout = localStorage.getItem("boxedlayout");
-
- if (collapse == 'on') {
- $('#collapsemenu').prop('checked', 'checked')
- }
- if (fixednavbar == 'on') {
- $('#fixednavbar').prop('checked', 'checked')
- }
- if (boxedlayout == 'on') {
- $('#boxedlayout').prop('checked', 'checked')
- }
- }
-
- if (localStorageSupport) {
-
- var collapse = localStorage.getItem("collapse_menu");
- var fixednavbar = localStorage.getItem("fixednavbar");
- var boxedlayout = localStorage.getItem("boxedlayout");
-
- var body = $('body');
-
- if (collapse == 'on') {
- if (!body.hasClass('body-small')) {
- body.addClass('mini-navbar');
- }
- }
-
- if (fixednavbar == 'on') {
- $(".navbar-static-top").removeClass('navbar-static-top').addClass('navbar-fixed-top');
- body.addClass('fixed-nav');
- }
-
- if (boxedlayout == 'on') {
- body.addClass('boxed-layout');
- }
- }
-});
-
-//判断浏览器是否支持html5本地存储
-function localStorageSupport() {
- return (('localStorage' in window) && window['localStorage'] !== null)
-}
diff --git a/api/src/main/resources/static/js/bootstrap.min.js b/api/src/main/resources/static/js/bootstrap.min.js
deleted file mode 100644
index e364a137eb19d1c80f9137e093e55621a0b539f2..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/js/bootstrap.min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under the MIT license
- */
-if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.6",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.6",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.6",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.6",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.6",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.6",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.6",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
diff --git a/api/src/main/resources/static/js/common.js b/api/src/main/resources/static/js/common.js
deleted file mode 100644
index fedc62ad74c7135486eb47183f7252f6b73b4256..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/js/common.js
+++ /dev/null
@@ -1,76 +0,0 @@
-/**
- *
- * User: simon
- * Date: 2018/06/07
- * Time: 13:01
- **/
-function setTokenInHeader() {
- var token = $("meta[name='_csrf']").attr("content");
- var header = $("meta[name='_csrf_header']").attr("content");
- $(document).ajaxSend(function (e, xhr, options) {
- xhr.setRequestHeader(header, token);
- });
-}
-
-//左侧菜单栏选中事件初始化
-$('.sidebar-menu li').each(function () {
- $(this).removeClass("active");
-});
-var pathValue = window.location.href;
-var pathName = pathValue.substring(pathValue.lastIndexOf('/') + 1);
-$('.sidebar-menu li').each(function () {
- if(pathName == '' && $(this).children('a').attr('href').indexOf('index') != -1){
- $(this).addClass("active");
- $(this).parents(".treeview").addClass("active");
- }else if(pathName != '' && $(this).children('a').attr('href') && $(this).children('a').attr('href').indexOf(pathName) != -1){
- $(this).addClass("active");
- $(this).parents(".treeview").addClass("active");
- }
-});
-
-/*var theme = $.cookie('theme');
-console.log(theme);
-if(!theme || null == theme){
- theme = 'blue';
- $.cookie('theme', theme);
-}
-changeTheme(theme);*/
-
-function changeTheme(themeName) {
- /*$('body').removeClass('skin-blue skin-blue-light skin-green skin-green-light skin-red skin-red-light skin-black skin-black-light skin-purple skin-purple-light skin-yellow skin-yellow-light');*/
- $('body').removeClass($.cookie('theme'));
- $('body').addClass(themeName);
- $.cookie('theme', themeName, {expires: 30});
-}
-
-function doRequest(options) {
- let requestData = $(options.formId).serializeArray();
- let sideMenuGroup = {};
- let i;
- for(i = 0; i < requestData.length; i++){
- //如果存在相同的属性,则该属性值是数组类型。
- if(sideMenuGroup[requestData[i].name]){
- sideMenuGroup[requestData[i].name] += ',' + requestData[i].value;
- }else{
- sideMenuGroup[requestData[i].name] = requestData[i].value;
- }
- }
- $.ajax({
- url: options.url,
- type: options.type,
- data: JSON.stringify(sideMenuGroup),
- contentType: "application/json;charset=UTF-8",
- beforeSend: function(){
- console.log('请稍候......');
- },
- complete: function(){
- console.log('close');
- },
- success:function (data) {
- console.log(data);
- if(data.code == 200){
- console.log('操作成功!');
- }
- }
- });
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/js/contabs.js b/api/src/main/resources/static/js/contabs.js
deleted file mode 100644
index 2f3112bf814bb361171f8f0038722b6a79d858d4..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/js/contabs.js
+++ /dev/null
@@ -1,310 +0,0 @@
-
-$(function () {
- //计算元素集合的总宽度
- function calSumWidth(elements) {
- var width = 0;
- $(elements).each(function () {
- width += $(this).outerWidth(true);
- });
- return width;
- }
- //滚动到指定选项卡
- function scrollToTab(element) {
- var marginLeftVal = calSumWidth($(element).prevAll()), marginRightVal = calSumWidth($(element).nextAll());
- // 可视区域非tab宽度
- var tabOuterWidth = calSumWidth($(".content-tabs").children().not(".J_menuTabs"));
- //可视区域tab宽度
- var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
- //实际滚动宽度
- var scrollVal = 0;
- if ($(".page-tabs-content").outerWidth() < visibleWidth) {
- scrollVal = 0;
- } else if (marginRightVal <= (visibleWidth - $(element).outerWidth(true) - $(element).next().outerWidth(true))) {
- if ((visibleWidth - $(element).next().outerWidth(true)) > marginRightVal) {
- scrollVal = marginLeftVal;
- var tabElement = element;
- while ((scrollVal - $(tabElement).outerWidth()) > ($(".page-tabs-content").outerWidth() - visibleWidth)) {
- scrollVal -= $(tabElement).prev().outerWidth();
- tabElement = $(tabElement).prev();
- }
- }
- } else if (marginLeftVal > (visibleWidth - $(element).outerWidth(true) - $(element).prev().outerWidth(true))) {
- scrollVal = marginLeftVal - $(element).prev().outerWidth(true);
- }
- $('.page-tabs-content').animate({
- marginLeft: 0 - scrollVal + 'px'
- }, "fast");
- }
- //查看左侧隐藏的选项卡
- function scrollTabLeft() {
- var marginLeftVal = Math.abs(parseInt($('.page-tabs-content').css('margin-left')));
- // 可视区域非tab宽度
- var tabOuterWidth = calSumWidth($(".content-tabs").children().not(".J_menuTabs"));
- //可视区域tab宽度
- var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
- //实际滚动宽度
- var scrollVal = 0;
- if ($(".page-tabs-content").width() < visibleWidth) {
- return false;
- } else {
- var tabElement = $(".J_menuTab:first");
- var offsetVal = 0;
- while ((offsetVal + $(tabElement).outerWidth(true)) <= marginLeftVal) {//找到离当前tab最近的元素
- offsetVal += $(tabElement).outerWidth(true);
- tabElement = $(tabElement).next();
- }
- offsetVal = 0;
- if (calSumWidth($(tabElement).prevAll()) > visibleWidth) {
- while ((offsetVal + $(tabElement).outerWidth(true)) < (visibleWidth) && tabElement.length > 0) {
- offsetVal += $(tabElement).outerWidth(true);
- tabElement = $(tabElement).prev();
- }
- scrollVal = calSumWidth($(tabElement).prevAll());
- }
- }
- $('.page-tabs-content').animate({
- marginLeft: 0 - scrollVal + 'px'
- }, "fast");
- }
- //查看右侧隐藏的选项卡
- function scrollTabRight() {
- var marginLeftVal = Math.abs(parseInt($('.page-tabs-content').css('margin-left')));
- // 可视区域非tab宽度
- var tabOuterWidth = calSumWidth($(".content-tabs").children().not(".J_menuTabs"));
- //可视区域tab宽度
- var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
- //实际滚动宽度
- var scrollVal = 0;
- if ($(".page-tabs-content").width() < visibleWidth) {
- return false;
- } else {
- var tabElement = $(".J_menuTab:first");
- var offsetVal = 0;
- while ((offsetVal + $(tabElement).outerWidth(true)) <= marginLeftVal) {//找到离当前tab最近的元素
- offsetVal += $(tabElement).outerWidth(true);
- tabElement = $(tabElement).next();
- }
- offsetVal = 0;
- while ((offsetVal + $(tabElement).outerWidth(true)) < (visibleWidth) && tabElement.length > 0) {
- offsetVal += $(tabElement).outerWidth(true);
- tabElement = $(tabElement).next();
- }
- scrollVal = calSumWidth($(tabElement).prevAll());
- if (scrollVal > 0) {
- $('.page-tabs-content').animate({
- marginLeft: 0 - scrollVal + 'px'
- }, "fast");
- }
- }
- }
-
- //通过遍历给菜单项加上data-index属性
- $(".J_menuItem").each(function (index) {
- if (!$(this).attr('data-index')) {
- $(this).attr('data-index', index);
- }
- });
-
- function menuItem() {
- // 获取标识数据
- var dataUrl = $(this).attr('href'),
- dataIndex = $(this).data('index'),
- menuName = $.trim($(this).text()),
- flag = true;
- if (dataUrl == undefined || $.trim(dataUrl).length == 0)return false;
-
- // 选项卡菜单已存在
- $('.J_menuTab').each(function () {
- if ($(this).data('id') == dataUrl) {
- if (!$(this).hasClass('active')) {
- $(this).addClass('active').siblings('.J_menuTab').removeClass('active');
- scrollToTab(this);
- // 显示tab对应的内容区
- $('.J_mainContent .J_iframe').each(function () {
- if ($(this).data('id') == dataUrl) {
- $(this).show().siblings('.J_iframe').hide();
- return false;
- }
- });
- }
- flag = false;
- return false;
- }
- });
-
- // 选项卡菜单不存在
- if (flag) {
- var str = '';
- $('.J_menuTab').removeClass('active');
-
- // 添加选项卡对应的iframe
- var str1 = '';
- $('.J_mainContent').find('iframe.J_iframe').hide().parents('.J_mainContent').append(str1);
-
- //显示loading提示
-// var loading = layer.load();
-//
-// $('.J_mainContent iframe:visible').load(function () {
-// //iframe加载完成后隐藏loading提示
-// layer.close(loading);
-// });
- // 添加选项卡
- $('.J_menuTabs .page-tabs-content').append(str);
- scrollToTab($('.J_menuTab.active'));
- }
- return false;
- }
-
- $('.J_menuItem').on('click', menuItem);
-
- // 关闭选项卡菜单
- function closeTab() {
- var closeTabId = $(this).parents('.J_menuTab').data('id');
- var currentWidth = $(this).parents('.J_menuTab').width();
-
- // 当前元素处于活动状态
- if ($(this).parents('.J_menuTab').hasClass('active')) {
-
- // 当前元素后面有同辈元素,使后面的一个元素处于活动状态
- if ($(this).parents('.J_menuTab').next('.J_menuTab').size()) {
-
- var activeId = $(this).parents('.J_menuTab').next('.J_menuTab:eq(0)').data('id');
- $(this).parents('.J_menuTab').next('.J_menuTab:eq(0)').addClass('active');
-
- $('.J_mainContent .J_iframe').each(function () {
- if ($(this).data('id') == activeId) {
- $(this).show().siblings('.J_iframe').hide();
- return false;
- }
- });
-
- var marginLeftVal = parseInt($('.page-tabs-content').css('margin-left'));
- if (marginLeftVal < 0) {
- $('.page-tabs-content').animate({
- marginLeft: (marginLeftVal + currentWidth) + 'px'
- }, "fast");
- }
-
- // 移除当前选项卡
- $(this).parents('.J_menuTab').remove();
-
- // 移除tab对应的内容区
- $('.J_mainContent .J_iframe').each(function () {
- if ($(this).data('id') == closeTabId) {
- $(this).remove();
- return false;
- }
- });
- }
-
- // 当前元素后面没有同辈元素,使当前元素的上一个元素处于活动状态
- if ($(this).parents('.J_menuTab').prev('.J_menuTab').size()) {
- var activeId = $(this).parents('.J_menuTab').prev('.J_menuTab:last').data('id');
- $(this).parents('.J_menuTab').prev('.J_menuTab:last').addClass('active');
- $('.J_mainContent .J_iframe').each(function () {
- if ($(this).data('id') == activeId) {
- $(this).show().siblings('.J_iframe').hide();
- return false;
- }
- });
-
- // 移除当前选项卡
- $(this).parents('.J_menuTab').remove();
-
- // 移除tab对应的内容区
- $('.J_mainContent .J_iframe').each(function () {
- if ($(this).data('id') == closeTabId) {
- $(this).remove();
- return false;
- }
- });
- }
- }
- // 当前元素不处于活动状态
- else {
- // 移除当前选项卡
- $(this).parents('.J_menuTab').remove();
-
- // 移除相应tab对应的内容区
- $('.J_mainContent .J_iframe').each(function () {
- if ($(this).data('id') == closeTabId) {
- $(this).remove();
- return false;
- }
- });
- scrollToTab($('.J_menuTab.active'));
- }
- return false;
- }
-
- $('.J_menuTabs').on('click', '.J_menuTab i', closeTab);
-
- //关闭其他选项卡
- function closeOtherTabs(){
- $('.page-tabs-content').children("[data-id]").not(":first").not(".active").each(function () {
- $('.J_iframe[data-id="' + $(this).data('id') + '"]').remove();
- $(this).remove();
- });
- $('.page-tabs-content').css("margin-left", "0");
- }
- $('.J_tabCloseOther').on('click', closeOtherTabs);
-
- //滚动到已激活的选项卡
- function showActiveTab(){
- scrollToTab($('.J_menuTab.active'));
- }
- $('.J_tabShowActive').on('click', showActiveTab);
-
-
- // 点击选项卡菜单
- function activeTab() {
- if (!$(this).hasClass('active')) {
- var currentId = $(this).data('id');
- // 显示tab对应的内容区
- $('.J_mainContent .J_iframe').each(function () {
- if ($(this).data('id') == currentId) {
- $(this).show().siblings('.J_iframe').hide();
- return false;
- }
- });
- $(this).addClass('active').siblings('.J_menuTab').removeClass('active');
- scrollToTab(this);
- }
- }
-
- $('.J_menuTabs').on('click', '.J_menuTab', activeTab);
-
- //刷新iframe
- function refreshTab() {
- var target = $('.J_iframe[data-id="' + $(this).data('id') + '"]');
- var url = target.attr('src');
-// //显示loading提示
-// var loading = layer.load();
-// target.attr('src', url).load(function () {
-// //关闭loading提示
-// layer.close(loading);
-// });
- }
-
- $('.J_menuTabs').on('dblclick', '.J_menuTab', refreshTab);
-
- // 左移按扭
- $('.J_tabLeft').on('click', scrollTabLeft);
-
- // 右移按扭
- $('.J_tabRight').on('click', scrollTabRight);
-
- // 关闭全部
- $('.J_tabCloseAll').on('click', function () {
- $('.page-tabs-content').children("[data-id]").not(":first").each(function () {
- $('.J_iframe[data-id="' + $(this).data('id') + '"]').remove();
- $(this).remove();
- });
- $('.page-tabs-content').children("[data-id]:first").each(function () {
- $('.J_iframe[data-id="' + $(this).data('id') + '"]').show();
- $(this).addClass("active");
- });
- $('.page-tabs-content').css("margin-left", "0");
- });
-
-});
diff --git a/api/src/main/resources/static/js/easyui/base_loading.js b/api/src/main/resources/static/js/easyui/base_loading.js
deleted file mode 100644
index acdc6434b94c3a9dd94b4e2c1eff4a37ffc80292..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/js/easyui/base_loading.js
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- *
- * User: simon
- * Date: 2018/10/31
- * Time: 0:00
- **/
-//获取浏览器页面可见高度和宽度
-let _PageHeight = document.documentElement.clientHeight,
- _PageWidth = document.documentElement.clientWidth;
-//计算loading框距离顶部和左部的距离(loading框的宽度为215px,高度为61px)
-let _LoadingTop = _PageHeight > 61 ? (_PageHeight - 61) / 2 : 0,
- _LoadingLeft = _PageWidth > 61 ? (_PageWidth - 61) / 2 : 0;
-//加载gif地址
-let Loadimagerul = "/img/loading.gif";
-//在页面未加载完毕之前显示的loading Html自定义内容
-let _LoadingHtml = '';
-//呈现loading效果
-document.write(_LoadingHtml);
-//监听加载状态改变
-document.onreadystatechange = completeLoading;
-
-//加载状态为complete时移除loading效果
-function completeLoading() {
- if (document.readyState == "complete") {
- let loadingMask = document.getElementById('loadingDiv');
- loadingMask.parentNode.removeChild(loadingMask);
- }
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/js/easyui/common.js b/api/src/main/resources/static/js/easyui/common.js
deleted file mode 100644
index 39f0c080aefda75b4bfbd6d1510790efc6ec6e10..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/js/easyui/common.js
+++ /dev/null
@@ -1,739 +0,0 @@
-/**
- *
- * User: simon
- * Date: 2018/10/30
- * Time: 9:54
- **/
-document.write('');
-
-function setTokenInHeader() {
- let token = $("meta[name='_csrf']").attr("content");
- let header = $("meta[name='_csrf_header']").attr("content");
- $(document).ajaxSend(function (e, xhr, options) {
- xhr.setRequestHeader(header, token);
- });
-}
-
-$(function(){
- //setTokenInHeader();
-
- //只用一种初始化方法来声明easyUI组件以避免重复的提交请求,即删除html中的class声明(class="easyui-datagrid")
- $('#tt').datagrid({
- onBeforeLoad: function (param) {
- let pageNo = param.page;
- delete param.page;
- param.pageNo = pageNo;
- let pageSize = param.rows;
- delete param.rows;
- param.pageSize = pageSize;
- let sort = param.sort;
- delete param.sort;
- let order = param.order;
- delete param.order;
- let orderBy = ((!sort) ? "" : sort) + " " + ((!order) ? "" : order);
- orderBy = orderBy.trim();
- param.orderBy = orderBy;
- },
- onLoadSuccess: function (data) {
- //重新渲染
- $(".easyui-linkbutton").linkbutton();
- $(".easyui-numberbox").numberbox();
- }
- });
-
- $('#table_tg').treegrid({
- onBeforeLoad: function (row, param) {
- let pageNo = param.page;
- delete param.page;
- param.pageNo = pageNo;
- let pageSize = param.rows;
- delete param.rows;
- param.pageSize = pageSize;
- let sort = param.sort;
- delete param.sort;
- let order = param.order;
- delete param.order;
- let orderBy = ((!sort) ? "" : sort) + " " + ((!order) ? "" : order);
- orderBy = orderBy.trim();
- param.orderBy = orderBy;
- },
- onLoadSuccess: function (row, data) {
- //重新渲染
- $(".easyui-linkbutton").linkbutton();
- $(".easyui-numberbox").numberbox();
- }
- });
-
- $('body').on('click', 'img.image-thumb',function (event) {
- $('#dlg').html('
');
- $('#dlg').dialog('open');
- });
-
-});
-
-/*function initEditor() {
- let token = $("meta[name='_csrf']").attr("content");
- $('textarea').froalaEditor({
- width: '100%',
- language: 'zh_cn',
- height: 300,
- heightMax: 500,
- heightMin: 200,
- fileUploadParam: 'file',
- fileUploadURL: '/fileUploads/uploadFile',
- fileUploadParams: {},
- fileUploadMethod: 'POST',
- fileMaxSize: 20 * 1024 * 1024,
- fileAllowedTypes: ['*'],
- imageAllowedTypes: ['jpeg', 'jpg', 'png'],
- imageDefaultWidth: 600,
- imageMaxSize: 1024 * 1024 * 3,
- imageMinWidth: 600,
- imageUploadParam: 'file',
- imageUploadRemoteUrls: false,
- imageUploadURL: '/fileUploads/uploadFile',
- requestHeaders: {
- 'X-CSRF-TOKEN':token
- }
- });
-
- $('textarea').on('froalaEditor.contentChanged', function (e, editor) {
- console.log($(this).froalaEditor('html.get', true));
- $('input[name="content"]').val($(this).froalaEditor('html.get', true));
- });
-
- $('textarea').on('froalaEditor.file.uploaded', function (e, editor, response) {
- console.log("uploaded=" + response);
- }).on('froalaEditor.file.error', function (e, editor, error, response) {
- console.log("error=" + JSON.stringify(error));
- console.log("response" + response);
- // Bad link.
- if (error.code == 1) {
- console.log("bad link");
- }
-
- // No link in upload response.
- else if (error.code == 2) {
- console.log("No link in upload response.");
- }
-
- // Error during file upload.
- else if (error.code == 3) {
- console.log("Error during file upload.");
- }
-
- // Parsing response failed.
- else if (error.code == 4) {
- console.log("Parsing response failed.");
- }
-
- // File too text-large.
- else if (error.code == 5) {
- console.log("File too text-large.");
- }
-
- // Invalid file type.
- else if (error.code == 6) {
- console.log("Invalid file type.");
- }
-
- // File can be uploaded only to same domain in IE 8 and IE 9.
- else if (error.code == 7) {
- console.log("File can be uploaded only to same domain in IE 8 and IE 9.");
- }
-
- // Response contains the original server response to the request if available.
- });
-
- $('textarea').on('froalaEditor.image.uploaded', function (e, editor, response) {
- console.log("uploaded=" + response);
- var json = jQuery.parseJSON(response);
- var img_URL = json['link'];
- editor.image.insert(img_URL, false, {'class': 'image-thumb'}, editor.image.get(), null);
- return false;
- });
-
- //$('textarea').off('froalaEditor.file.uploaded');
- $('textarea').off('froalaEditor.contentChanged');
- //$('textarea').off('froalaEditor.image.uploaded');
- $('textarea').off('froalaEditor.file.uploaded');
-}*/
-
-function getLocalTime(timestamp) {
- return new Date(parseInt(timestamp)).toLocaleString().replace(/:\d{1,2}$/, ' ');
-}
-
-Date.prototype.format = function(format) {
- let date = {
- "M+": this.getMonth() + 1,
- "d+": this.getDate(),
- "h+": this.getHours(),
- "m+": this.getMinutes(),
- "s+": this.getSeconds(),
- "q+": Math.floor((this.getMonth() + 3) / 3),
- "S+": this.getMilliseconds()
- };
- if (/(y+)/i.test(format)) {
- format = format.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));
- }
- for (let k in date) {
- if (new RegExp("(" + k + ")").test(format)) {
- format = format.replace(RegExp.$1, RegExp.$1.length == 1
- ? date[k] : ("00" + date[k]).substr(("" + date[k]).length));
- }
- }
- return format;
-};
-
-function formatCheckBox(val, row) {
- if(val==true){
- return '';
- }else if(val=false){
- return '';
- }
-}
-
-function formatDate(val, row){
- return new Date(parseInt(val)).format('yyyy-MM-dd hh:mm:ss');
-}
-
-function commonRequest(options) {
- $.ajax({
- url: options.url,
- type: options.type,
- data: JSON.stringify(options.extraData),
- contentType: "application/json;charset=UTF-8",
- beforeSend: function(){
- $.messager.progress({
- title: '提示信息',
- msg: '请稍候......'
- });
- },
- complete: function(){
- $.messager.progress('close');
- },
- success:function (data) {
- console.log(data);
- if(data.code == 200){
- $('#tt').datagrid('reload');
- $('#table_tg').treegrid('reload');
- /*$.messager.show({
- title:'提示信息',
- msg:'操作成功!',
- timeout:3000,
- showType:'slide'
- });*/
- parent.toastInfo({
- type: 'success',
- title: '提示信息',
- content: '操作成功!'
- });
- let index = parent.layer.getFrameIndex(window.name);
- parent.layer.close(index);
- }
- }
- });
-}
-
-function doRequest(options) {
- if($(options.formId).form('validate')){
- let requestData = $(options.formId).serializeArray();
- let sideMenuGroup = {};
- let i;
- for(i = 0; i < requestData.length; i++){
- //如果存在相同的属性,则该属性值是数组类型。
- if(sideMenuGroup[requestData[i].name]){
- sideMenuGroup[requestData[i].name] += ',' + requestData[i].value;
- }else{
- sideMenuGroup[requestData[i].name] = requestData[i].value;
- }
- }
-
- delete sideMenuGroup['editorValue'];
- Object.assign(sideMenuGroup, options.extraData);
-
- $.ajax({
- url: options.url,
- type: options.type,
- data: JSON.stringify(sideMenuGroup),
- contentType: "application/json;charset=UTF-8",
- beforeSend: function(){
- $.messager.progress({
- title: '提示信息',
- msg: '请稍候......'
- });
- },
- complete: function(){
- $.messager.progress('close');
- },
- success:function (data) {
- console.log(data);
- if(data.code == 200){
- //清空表单
- $(options.formId).form('clear');
-
- $('#addModal').window('close');
- $('#editModal').window('close');
- $('#tt').datagrid('reload');
- $('#table_tg').treegrid('reload');
- /*$.messager.show({
- title:'提示信息',
- msg:'操作成功!',
- timeout:3000,
- showType:'slide'
- });*/
- parent.toastInfo({
- type: 'success',
- title: '提示信息',
- content: '操作成功!'
- });
- let index = parent.layer.getFrameIndex(window.name);
- parent.layer.close(index);
- }else{
- parent.toastInfo({
- type: 'success',
- title: '提示信息',
- content: data.message
- });
- /*let index = parent.layer.getFrameIndex(window.name);
- parent.layer.close(index);*/
- }
- },
- error: function (XMLHttpRequest, textStatus, errorThrown) {
- // 状态码
- //console.log(XMLHttpRequest.status);
- // 状态
- //console.log(XMLHttpRequest.readyState);
- //console.log(XMLHttpRequest.responseText);
- // 错误信息
- //console.log(textStatus);
- let data = eval('(' + XMLHttpRequest.responseText + ')');
- parent.toastInfo({
- type: 'success',
- title: '提示信息',
- content: '操作成功!'
- });
- /*let index = parent.layer.getFrameIndex(window.name);
- parent.layer.close(index);*/
- }
- });
- }else{
- $.messager.alert('提示信息','存在校验项未通过!',"warning");
- }
-}
-
-/**
- * 清空
- * @param urlPrefix
- */
-function emptyRequest(url) {
- $.ajax({
- url: url,
- type: 'DELETE',
- beforeSend: function(){
- $.messager.progress({
- title: '提示信息',
- msg: '请稍候......'
- });
- },
- complete: function(){
- $.messager.progress('close');
- },
- success:function (data) {
- console.log(data);
- if(data.code == 200){
- $('#addModal').window('close');
- $('#editModal').window('close');
- $('#tt').datagrid('reload');
- $('#table_tg').treegrid('reload');
- $.messager.show({
- title:'提示信息',
- msg:'操作成功!',
- timeout:3000,
- showType:'slide'
- });
- }
- }
- });
-}
-
-function deleteRequest(urlPrefix){
- if(!urlPrefix.endsWith("/")){
- urlPrefix += '/';
- }
- //获取选中的所有行数据
- let rows = $('#tt').datagrid('getSelections');
- if (rows.length <= 0){
- $.messager.alert('提示信息','请至少选择一条数据!','error');
- }else{
- $.messager.confirm('提示信息', '你确认删除吗?', function(r){
- if (r){
- let ids = [];
- for(let i = 0; i < rows.length; i++){
- ids.push(rows[i].id);
- }
- $.ajax({
- url: urlPrefix + ids.join(','),
- type: 'DELETE',
- beforeSend: function(){
- $.messager.progress({
- title: '提示信息',
- msg: '请稍候......'
- });
- },
- complete: function(){
- $.messager.progress('close');
- },
- success:function (data) {
- console.log(data);
- if(data.code == 200){
- $('#addModal').window('close');
- $('#editModal').window('close');
- $('#tt').datagrid('reload');
- $('#table_tg').treegrid('reload');
- $.messager.show({
- title:'提示信息',
- msg:'操作成功!',
- timeout:3000,
- showType:'slide'
- });
- }else{
- $.messager.show({
- title:'提示信息',
- msg: data.message,
- timeout:3000,
- showType:'slide'
- });
- }
- },
- error: function (XMLHttpRequest, textStatus, errorThrown) {
- $.messager.progress('close');
- // 状态码
- //console.log(XMLHttpRequest.status);
- // 状态
- //console.log(XMLHttpRequest.readyState);
- //console.log(XMLHttpRequest.responseText);
- // 错误信息
- //console.log(textStatus);
- let data = eval('(' + XMLHttpRequest.responseText + ')');
- $.messager.show({
- title:'提示信息',
- msg:data.message,
- timeout:3000,
- showType:'slide'
- });
- }
- });
- }
- });
- }
-}
-
-function deleteRequestByUserId(urlPrefix){
- if(!urlPrefix.endsWith("/")){
- urlPrefix += '/';
- }
- //获取选中的所有行数据
- let rows = $('#tt').datagrid('getSelections');
- if (rows.length <= 0){
- $.messager.alert('提示信息','请至少选择一条数据!','error');
- }else{
- $.messager.confirm('提示信息', '你确认删除吗?', function(r){
- if (r){
- let ids = [];
- for(let i = 0; i < rows.length; i++){
- ids.push(rows[i].userId);
- }
- $.ajax({
- url: urlPrefix + ids.join(','),
- type: 'DELETE',
- beforeSend: function(){
- $.messager.progress({
- title: '提示信息',
- msg: '请稍候......'
- });
- },
- complete: function(){
- $.messager.progress('close');
- },
- success:function (data) {
- console.log(data);
- if(data.code == 200){
- $('#addModal').window('close');
- $('#editModal').window('close');
- $('#tt').treegrid('reload');
- $('#table_tg').treegrid('reload');
- $.messager.show({
- title:'提示信息',
- msg:'操作成功!',
- timeout:3000,
- showType:'slide'
- });
- }else{
- $.messager.show({
- title:'提示信息',
- msg: data.message,
- timeout:3000,
- showType:'slide'
- });
- }
- },
- error: function (XMLHttpRequest, textStatus, errorThrown) {
- // 状态码
- //console.log(XMLHttpRequest.status);
- // 状态
- //console.log(XMLHttpRequest.readyState);
- //console.log(XMLHttpRequest.responseText);
- // 错误信息
- //console.log(textStatus);
- let data = eval('(' + XMLHttpRequest.responseText + ')');
- $.messager.show({
- title:'提示信息',
- msg:data.message,
- timeout:3000,
- showType:'slide'
- });
- }
- });
- }
- });
- }
-}
-
-//自定义EasyUI校验规则
-$.extend($.fn.validatebox.defaults.rules, {
- CHS: {
- validator: function (value, param) {
- return /^[\u0391-\uFFE5]+$/.test(value);
- },
- message: '请输入汉字'
- },
- english : {// 验证英语
- validator : function(value) {
- return /^[A-Za-z]+$/i.test(value);
- },
- message : '请输入英文'
- },
- ip : {// 验证IP地址
- validator : function(value) {
- return /\d+\.\d+\.\d+\.\d+/.test(value);
- },
- message : 'IP地址格式不正确'
- },
- ZIP: {
- validator: function (value, param) {
- return /^[0-9]\d{5}$/.test(value);
- },
- message: '邮政编码不存在'
- },
- QQ: {
- validator: function (value, param) {
- //QQ号正则,5至11位
- return /^[1-9]\d{4,10}$/.test(value);
- },
- message: 'QQ号码不正确'
- },
- mobile: {
- validator: function (value, param) {
- return /^(?:13\d|15\d|18\d)-?\d{5}(\d{3}|\*{3})$/.test(value);
- },
- message: '手机号码不正确'
- },
- tel:{
- validator:function(value,param){
- return /^(\d{3}-|\d{4}-)?(\d{8}|\d{7})?(-\d{1,6})?$/.test(value);
- },
- message:'电话号码不正确'
- },
- mobileAndTel: {
- validator: function (value, param) {
- return /(^([0\+]\d{2,3})\d{3,4}\-\d{3,8}$)|(^([0\+]\d{2,3})\d{3,4}\d{3,8}$)|(^([0\+]\d{2,3}){0,1}13\d{9}$)|(^\d{3,4}\d{3,8}$)|(^\d{3,4}\-\d{3,8}$)/.test(value);
- },
- message: '请正确输入电话号码'
- },
- number: {
- validator: function (value, param) {
- return /^[0-9]+.?[0-9]*$/.test(value);
- },
- message: '请输入数字'
- },
- money:{
- validator: function (value, param) {
- return (/^(([1-9]\d*)|\d)(\.\d{1,2})?$/).test(value);
- },
- message:'请输入正确的金额'
-
- },
- mone:{
- validator: function (value, param) {
- return (/^(([1-9]\d*)|\d)(\.\d{1,2})?$/).test(value);
- },
- message:'请输入整数或小数'
-
- },
- integer:{
- validator:function(value,param){
- return /^[+]?[1-9]\d*$/.test(value);
- },
- message: '请输入最小为1的整数'
- },
- integ:{
- validator:function(value,param){
- return /^[+]?[0-9]\d*$/.test(value);
- },
- message: '请输入整数'
- },
- range:{
- validator:function(value,param){
- if(/^[1-9]\d*$/.test(value)){
- return value >= param[0] && value <= param[1]
- }else{
- return false;
- }
- },
- message:'输入的数字在{0}到{1}之间'
- },
- minLength:{
- validator:function(value,param){
- return value.length >=param[0]
- },
- message:'至少输入{0}个字'
- },
- maxLength:{
- validator:function(value,param){
- return value.length<=param[0]
- },
- message:'最多{0}个字'
- },
- //select即选择框的验证
- selectValid:{
- validator:function(value,param){
- //console.log('selectValid' + value + '-' + param[0]);
- if(value == param[0]){
- return false;
- }else{
- return true ;
- }
- },
- message:'请选择'
- },
- idCode:{
- validator:function(value,param){
- return /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/.test(value);
- },
- message: '请输入正确的身份证号'
- },
- loginName: {
- validator: function (value, param) {
- return /^[\u0391-\uFFE5\w]+$/.test(value);
- },
- message: '登录名称只允许汉字、英文字母、数字及下划线。'
- },
- equalTo: {
- validator: function (value, param) {
- return value == $(param[0]).val();
- },
- message: '两次输入的字符不一至'
- },
- englishOrNum : {// 只能输入英文和数字
- validator : function(value) {
- return /^[a-zA-Z0-9_ ]{1,}$/.test(value);
- },
- message : '请输入英文、数字、下划线或者空格'
- },
- xiaoshu:{
- validator : function(value){
- return /^(([1-9]+)|([0-9]+\.[0-9]{1,2}))$/.test(value);
- },
- message : '最多保留两位小数!'
- },
- ddPrice:{
- validator:function(value,param){
- if(/^[1-9]\d*$/.test(value)){
- return value >= param[0] && value <= param[1];
- }else{
- return false;
- }
- },
- message:'请输入1到100之间正整数'
- },
- jretailUpperLimit:{
- validator:function(value,param){
- if(/^[0-9]+([.]{1}[0-9]{1,2})?$/.test(value)){
- return parseFloat(value) > parseFloat(param[0]) && parseFloat(value) <= parseFloat(param[1]);
- }else{
- return false;
- }
- },
- message:'请输入0到100之间的最多俩位小数的数字'
- },
- rateCheck:{
- validator:function(value,param){
- if(/^[0-9]+([.]{1}[0-9]{1,2})?$/.test(value)){
- return parseFloat(value) > parseFloat(param[0]) && parseFloat(value) <= parseFloat(param[1]);
- }else{
- return false;
- }
- },
- message:'请输入0到1000之间的最多俩位小数的数字'
- },
- wx:{
- validator:function(value, param){
- //微信号正则,6至20位,以字母开头,字母,数字,减号,下划线
- return /^[a-zA-Z]([-_a-zA-Z0-9]{5,19})+$/.test(value);
- },
- message: '微信号不正确'
- },
- identityCard: {
- validator:function(value, param){
- //身份证号(18位)正则
- return /^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/.test(value);
- },
- message: '身份证号不正确'
- },
- username: {
- validator:function(value, param){
- //用户名正则,4到16位(字母,数字,下划线,减号)
- return /^[a-zA-Z0-9_-]{4,16}$/.test(value);
- },
- message: '用户名格式不正确,4到16位(字母,数字,下划线,减号)'
- },
- color: {
- validator:function(value, param) {
- //十六进制颜色正则
- return /^#?([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$/.test(value);
- },
- message: '颜色格式不正确'
- }
-});
-
-/**
- * 解决ueditor被easyui-window遮盖问题
- * @param id
- */
-function ueditorAdapter(id) {
- if(id.indexOf('#') != 0){
- id = '#' + id;
- }
-
- $(id).window({
- modal:false,
- minimizable:true,
- maximizable:true,
- resizable:true,
- closed:true,
- collapsible:false,
- onOpen:function(){
- $(".window").css("z-index","499");
- $(".window-shadow").css("z-index","498");
- },
- onMove:function(left,top){
- $(".window").css("z-index","499");
- $(".window-shadow").css("z-index","498");
- },
- onResize:function(width,height){
- $(".window").css("z-index","499");
- $(".window-shadow").css("z-index","498");
- },
- });
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/js/easyui/dropdown.js b/api/src/main/resources/static/js/easyui/dropdown.js
deleted file mode 100644
index cb6bcb8bcfd1e491e4e461ca9a3d95b87db83a6b..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/js/easyui/dropdown.js
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- *
- * User: simon
- * Date: 2018/11/04
- * Time: 21:40
- **/
-/* When the user clicks on the button,
- toggle between hiding and showing the dropdown content */
-function myFunction(obj) {
- console.log($(obj).next());
- $(obj).next().toggle("show");
- //document.getElementById("myDropdown").classList.toggle("show");
-}
-
-// Close the dropdown if the user clicks outside of it
-window.onclick = function(event) {
- if (!event.target.matches('.dropbtn')) {
-
- var dropdowns = document.getElementsByClassName("dropdown-content");
- var i;
- for (i = 0; i < dropdowns.length; i++) {
- var openDropdown = dropdowns[i];
- if (openDropdown.classList.contains('show')) {
- openDropdown.classList.remove('show');
- }
- }
- }
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/js/easyui/tabutil.js b/api/src/main/resources/static/js/easyui/tabutil.js
deleted file mode 100644
index 70f089114954ce3bd424dcb3c9651dffcb339eca..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/js/easyui/tabutil.js
+++ /dev/null
@@ -1,105 +0,0 @@
-/**
- * @author {CaoGuangHui}
- */
-$.extend($.fn.tabs.methods, {
- /**
- * 加载iframe内容
- * @param {jq Object} jq [description]
- * @param {Object} params params.which:tab的标题或者index;params.iframe:iframe的相关参数
- * @return {jq Object} [description]
- */
- loadTabIframe:function(jq,params){
- return jq.each(function(){
- var $tab = $(this).tabs('getTab',params.which);
- if($tab==null) return;
-
- var $tabBody = $tab.panel('body');
-
- //销毁已有的iframe
- var $frame=$('iframe', $tabBody);
- if($frame.length>0){
- try{//跨域会拒绝访问,这里处理掉该异常
- $frame[0].contentWindow.document.write('');
- $frame[0].contentWindow.close();
- }catch(e){
- //Do nothing
- }
- $frame.remove();
- if($.browser.msie){
- CollectGarbage();
- }
- }
- $tabBody.html('');
-
- $tabBody.css({'overflow':'hidden','position':'relative'});
- var $mask = $('').appendTo($tabBody);
- var $maskMessage = $('
' + (params.iframe.message || 'Processing, please wait ...') + '
').appendTo($tabBody);
- var $containterMask = $('
').appendTo($tabBody);
- var $containter = $('
').appendTo($tabBody);
-
- var iframe = document.createElement("iframe");
- iframe.src = params.iframe.src;
- iframe.frameBorder = params.iframe.frameBorder || 0;
- iframe.height = params.iframe.height || '100%';
- iframe.width = params.iframe.width || '100%';
- if (iframe.attachEvent){
- iframe.attachEvent("onload", function(){
- $([$mask[0],$maskMessage[0]]).fadeOut(params.iframe.delay || 'slow',function(){
- $(this).remove();
- if($(this).hasClass('mask-message')){
- $containterMask.fadeOut(params.iframe.delay || 'slow',function(){
- $(this).remove();
- });
- }
- });
- });
- } else {
- iframe.onload = function(){
- $([$mask[0],$maskMessage[0]]).fadeOut(params.iframe.delay || 'slow',function(){
- $(this).remove();
- if($(this).hasClass('mask-message')){
- $containterMask.fadeOut(params.iframe.delay || 'slow',function(){
- $(this).remove();
- });
- }
- });
- };
- }
- $containter[0].appendChild(iframe);
- });
- },
- /**
- * 增加iframe模式的标签页
- * @param {[type]} jq [description]
- * @param {[type]} params [description]
- */
- addIframeTab:function(jq,params){
- return jq.each(function(){
- if(params.tab.href){
- delete params.tab.href;
- }
- $(this).tabs('add',params.tab);
- $(this).tabs('loadTabIframe',{'which':params.tab.title,'iframe':params.iframe});
- });
- },
- /**
- * 更新tab的iframe内容
- * @param {jq Object} jq [description]
- * @param {Object} params [description]
- * @return {jq Object} [description]
- */
- updateIframeTab:function(jq,params){
- return jq.each(function(){
- params.iframe = params.iframe || {};
- if(!params.iframe.src){
- var $tab = $(this).tabs('getTab',params.which);
- if($tab==null) return;
- var $tabBody = $tab.panel('body');
- var $iframe = $tabBody.find('iframe');
- if($iframe.length===0) return;
- $.extend(params.iframe,{'src':$iframe.attr('src')});
- }
- $(this).tabs('loadTabIframe',params);
- });
- }
-});
\ No newline at end of file
diff --git a/api/src/main/resources/static/js/file_upload.js b/api/src/main/resources/static/js/file_upload.js
deleted file mode 100644
index 7d44bc7ea118dfe27f92f5f80b345ffe15d162e1..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/js/file_upload.js
+++ /dev/null
@@ -1,83 +0,0 @@
-/**
- *
- * User: simon
- * Date: 2018/06/06
- * Time: 14:45
- **/
-
-'use strict';
-//必须加这段代码,不然无法上传
-/*var token = $("meta[name='_csrf']").attr("content");
-var header = $("meta[name='_csrf_header']").attr("content");
-$(document).ajaxSend(function (e, xhr, options) {
- xhr.setRequestHeader(header, token);
-});*/
-
-function initFileUpload(id, inputName){
- let uploader = $(id);
- uploader.fileupload({
- url: "/fileUploads/upload",
- dataType: 'json',
- type: "post",
- multipart: true,
- acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i,
- maxFileSize: 1000 * 1024 * 1024,
- maxNumberOfFiles: 50,
- change: function (e, data){
- $(id + '-wrapper .preview').empty();
- $(id + '-wrapper .progress-bar').css('width', '0%');
- $(id + '-wrapper .proportion').html('');
- $(id + '-wrapper input[name="imageUrl"]').remove();
- },
- done: function (e, data) {
- let result = data.result;
- //done方法就是上传完毕的回调函数,其他回调函数可以自行查看api
- //注意data要和jquery的ajax的data参数区分,这个对象包含了整个请求信息
- //返回的数据在data.result中,这里dataType中设置的返回的数据类型为json
- if(200 == result.code) {
- // 上传成功:
- for(let i = 0; i < result.data.length; i++){
- $(id + '-wrapper .preview').append('

');
- }
- //重新渲染
- $(".easyui-linkbutton").linkbutton();
- $(".easyui-numberbox").numberbox();
- } else {
- // 上传失败:
- $(id + '-wrapper .upstatus').append("
"+result.msg+"
");
- }
- },messages: {
- maxFileSize: '文件大小超过限制',
- acceptFileTypes: '文件格式不支持'
- },progressall: function (e, data) {
- let progress = parseInt(data.loaded / data.total * 100, 10);
- $(id + '-wrapper .progress-bar').css("width", progress + "%");
- $(id + '-wrapper .proportion').html("上传总进度:"+progress+"%");
- },processfail: function (e, data) {
- let currentFile = data.files[data.index];
- if (data.files.error && currentFile.error) {
- alert(currentFile.error);
- }
- }
- });
-
- $(document).on('click', '.delete_file', function () {
- console.log("clicked");
- $(this).parent().remove();
- if (!$(id + '-wrapper .preview').html()) {
- $(id + '-wrapper .progress-bar').css('width', '0%');
- $(id + '-wrapper .proportion').html('');
- }
- //$('input[name="imageUrl"]').remove();
- });
-}
-
-function imgPreview(id, inputName, imgUrl) {
- if(id.indexOf('#') != 0){
- id = '#' + id;
- }
- $(id + '-wrapper .preview').empty();
- if(imgUrl){
- $(id + '-wrapper .preview').append('

');
- }
-}
\ No newline at end of file
diff --git a/api/src/main/resources/static/js/jquery.min.js b/api/src/main/resources/static/js/jquery.min.js
deleted file mode 100644
index cfde167f9830b5105ae02efe39f2302f7784dbb2..0000000000000000000000000000000000000000
--- a/api/src/main/resources/static/js/jquery.min.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/*! jQuery v2.1.4 | (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=a.document,m="2.1.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,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=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.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},n.extend=n.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||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)+1>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},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=s(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(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;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=s(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&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b="length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=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;++d
b;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);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(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&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.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?n.extend(a,d):d}},e={};return d.pipe=d.then,n.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&&n.isFunction(a.promise)?e:0,g=1===f?a:n.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]&&n.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;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;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};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+K.uid++}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){
-return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b)},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.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.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.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 L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthx",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!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(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,ba=/<([\w:]+)/,ca=/<|?\w+;/,da=/<(?:script|style|link)/i,ea=/checked\s*(?:[^=]|=\s*.checked.)/i,fa=/^$|\/(?:java|ecma)script/i,ga=/^true\/(.*)/,ha=/^\s*\s*$/g,ia={option:[1,""],thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};ia.optgroup=ia.option,ia.tbody=ia.tfoot=ia.colgroup=ia.caption=ia.thead,ia.th=ia.td;function ja(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function ka(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function la(a){var b=ga.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function ma(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function na(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function oa(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pa(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=oa(h),f=oa(a),d=0,e=f.length;e>d;d++)pa(f[d],g[d]);if(b)if(c)for(f=f||oa(a),g=g||oa(h),d=0,e=f.length;e>d;d++)na(f[d],g[d]);else na(a,h);return g=oa(h,"script"),g.length>0&&ma(g,!i&&oa(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(ca.test(e)){f=f||k.appendChild(b.createElement("div")),g=(ba.exec(e)||["",""])[1].toLowerCase(),h=ia[g]||ia._default,f.innerHTML=h[1]+e.replace(aa,"<$1>$2>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=oa(k.appendChild(e),"script"),i&&ma(f),c)){j=0;while(e=f[j++])fa.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=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=ja(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=ja(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?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(oa(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&ma(oa(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(oa(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!da.test(a)&&!ia[(ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(aa,"<$1>$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(oa(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,n.cleanData(oa(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,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&ea.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(oa(c,"script"),ka),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,oa(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,la),j=0;g>j;j++)h=f[j],fa.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(ha,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qa,ra={};function sa(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function ta(a){var b=l,c=ra[a];return c||(c=sa(a,b),"none"!==c&&c||(qa=(qa||n("")).appendTo(b.documentElement),b=qa[0].contentDocument,b.write(),b.close(),c=sa(a,b),qa.detach()),ra[a]=c),c}var ua=/^margin/,va=new RegExp("^("+Q+")(?!px)[a-z%]+$","i"),wa=function(b){return b.ownerDocument.defaultView.opener?b.ownerDocument.defaultView.getComputedStyle(b,null):a.getComputedStyle(b,null)};function xa(a,b,c){var d,e,f,g,h=a.style;return c=c||wa(a),c&&(g=c.getPropertyValue(b)||c[b]),c&&(""!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),va.test(g)&&ua.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0!==g?g+"":g}function ya(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d=l.documentElement,e=l.createElement("div"),f=l.createElement("div");if(f.style){f.style.backgroundClip="content-box",f.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===f.style.backgroundClip,e.style.cssText="border:0;width:0;height:0;top:0;left:-9999px;margin-top:1px;position:absolute",e.appendChild(f);function g(){f.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",f.innerHTML="",d.appendChild(e);var g=a.getComputedStyle(f,null);b="1%"!==g.top,c="4px"===g.width,d.removeChild(e)}a.getComputedStyle&&n.extend(k,{pixelPosition:function(){return g(),b},boxSizingReliable:function(){return null==c&&g(),c},reliableMarginRight:function(){var b,c=f.appendChild(l.createElement("div"));return c.style.cssText=f.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",c.style.marginRight=c.style.width="0",f.style.width="1px",d.appendChild(e),b=!parseFloat(a.getComputedStyle(c,null).marginRight),d.removeChild(e),f.removeChild(c),b}})}}(),n.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var za=/^(none|table(?!-c[ea]).+)/,Aa=new RegExp("^("+Q+")(.*)$","i"),Ba=new RegExp("^([+-])=("+Q+")","i"),Ca={position:"absolute",visibility:"hidden",display:"block"},Da={letterSpacing:"0",fontWeight:"400"},Ea=["Webkit","O","Moz","ms"];function Fa(a,b){if(b in a)return b;var c=b[0].toUpperCase()+b.slice(1),d=b,e=Ea.length;while(e--)if(b=Ea[e]+c,b in a)return b;return d}function Ga(a,b,c){var d=Aa.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Ha(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=n.css(a,c+R[f],!0,e)),d?("content"===c&&(g-=n.css(a,"padding"+R[f],!0,e)),"margin"!==c&&(g-=n.css(a,"border"+R[f]+"Width",!0,e))):(g+=n.css(a,"padding"+R[f],!0,e),"padding"!==c&&(g+=n.css(a,"border"+R[f]+"Width",!0,e)));return g}function Ia(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=wa(a),g="border-box"===n.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=xa(a,b,f),(0>e||null==e)&&(e=a.style[b]),va.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Ha(a,b,c||(g?"border":"content"),d,f)+"px"}function Ja(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=L.get(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&S(d)&&(f[g]=L.access(d,"olddisplay",ta(d.nodeName)))):(e=S(d),"none"===c&&e||L.set(d,"olddisplay",e?c:n.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=xa(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=n.camelCase(b),i=a.style;return b=n.cssProps[h]||(n.cssProps[h]=Fa(i,h)),g=n.cssHooks[b]||n.cssHooks[h],void 0===c?g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b]:(f=typeof c,"string"===f&&(e=Ba.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(n.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||n.cssNumber[h]||(c+="px"),k.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),g&&"set"in g&&void 0===(c=g.set(a,c,d))||(i[b]=c)),void 0)}},css:function(a,b,c,d){var e,f,g,h=n.camelCase(b);return b=n.cssProps[h]||(n.cssProps[h]=Fa(a.style,h)),g=n.cssHooks[b]||n.cssHooks[h],g&&"get"in g&&(e=g.get(a,!0,c)),void 0===e&&(e=xa(a,b,d)),"normal"===e&&b in Da&&(e=Da[b]),""===c||c?(f=parseFloat(e),c===!0||n.isNumeric(f)?f||0:e):e}}),n.each(["height","width"],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?za.test(n.css(a,"display"))&&0===a.offsetWidth?n.swap(a,Ca,function(){return Ia(a,b,d)}):Ia(a,b,d):void 0},set:function(a,c,d){var e=d&&wa(a);return Ga(a,c,d?Ha(a,b,d,"border-box"===n.css(a,"boxSizing",!1,e),e):0)}}}),n.cssHooks.marginRight=ya(k.reliableMarginRight,function(a,b){return b?n.swap(a,{display:"inline-block"},xa,[a,"marginRight"]):void 0}),n.each({margin:"",padding:"",border:"Width"},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+R[d]+b]=f[d]||f[d-2]||f[0];return e}},ua.test(a)||(n.cssHooks[a+b].set=Ga)}),n.fn.extend({css:function(a,b){return J(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=wa(a),e=b.length;e>g;g++)f[b[g]]=n.css(a,b[g],!1,d);return f}return void 0!==c?n.style(a,b,c):n.css(a,b)},a,b,arguments.length>1)},show:function(){return Ja(this,!0)},hide:function(){return Ja(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){S(this)?n(this).show():n(this).hide()})}});function Ka(a,b,c,d,e){return new Ka.prototype.init(a,b,c,d,e)}n.Tween=Ka,Ka.prototype={constructor:Ka,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=Ka.propHooks[this.prop];return a&&a.get?a.get(this):Ka.propHooks._default.get(this)},run:function(a){var b,c=Ka.propHooks[this.prop];return this.options.duration?this.pos=b=n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Ka.propHooks._default.set(this),this}},Ka.prototype.init.prototype=Ka.prototype,Ka.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[n.cssProps[a.prop]]||n.cssHooks[a.prop])?n.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Ka.propHooks.scrollTop=Ka.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},n.fx=Ka.prototype.init,n.fx.step={};var La,Ma,Na=/^(?:toggle|show|hide)$/,Oa=new RegExp("^(?:([+-])=|)("+Q+")([a-z%]*)$","i"),Pa=/queueHooks$/,Qa=[Va],Ra={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=Oa.exec(b),f=e&&e[3]||(n.cssNumber[a]?"":"px"),g=(n.cssNumber[a]||"px"!==f&&+d)&&Oa.exec(n.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,n.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function Sa(){return setTimeout(function(){La=void 0}),La=n.now()}function Ta(a,b){var c,d=0,e={height:a};for(b=b?1:0;4>d;d+=2-b)c=R[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function Ua(a,b,c){for(var d,e=(Ra[b]||[]).concat(Ra["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function Va(a,b,c){var d,e,f,g,h,i,j,k,l=this,m={},o=a.style,p=a.nodeType&&S(a),q=L.get(a,"fxshow");c.queue||(h=n._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,l.always(function(){l.always(function(){h.unqueued--,n.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[o.overflow,o.overflowX,o.overflowY],j=n.css(a,"display"),k="none"===j?L.get(a,"olddisplay")||ta(a.nodeName):j,"inline"===k&&"none"===n.css(a,"float")&&(o.display="inline-block")),c.overflow&&(o.overflow="hidden",l.always(function(){o.overflow=c.overflow[0],o.overflowX=c.overflow[1],o.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],Na.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(p?"hide":"show")){if("show"!==e||!q||void 0===q[d])continue;p=!0}m[d]=q&&q[d]||n.style(a,d)}else j=void 0;if(n.isEmptyObject(m))"inline"===("none"===j?ta(a.nodeName):j)&&(o.display=j);else{q?"hidden"in q&&(p=q.hidden):q=L.access(a,"fxshow",{}),f&&(q.hidden=!p),p?n(a).show():l.done(function(){n(a).hide()}),l.done(function(){var b;L.remove(a,"fxshow");for(b in m)n.style(a,b,m[b])});for(d in m)g=Ua(p?q[d]:0,d,l),d in q||(q[d]=g.start,p&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function Wa(a,b){var c,d,e,f,g;for(c in a)if(d=n.camelCase(c),e=b[d],f=a[c],n.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=n.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function Xa(a,b,c){var d,e,f=0,g=Qa.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=La||Sa(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:n.extend({},b),opts:n.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:La||Sa(),duration:c.duration,tweens:[],createTween:function(b,c){var d=n.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(Wa(k,j.opts.specialEasing);g>f;f++)if(d=Qa[f].call(j,a,k,j.opts))return d;return n.map(k,Ua,j),n.isFunction(j.opts.start)&&j.opts.start.call(a,j),n.fx.timer(n.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}n.Animation=n.extend(Xa,{tweener:function(a,b){n.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],Ra[c]=Ra[c]||[],Ra[c].unshift(b)},prefilter:function(a,b){b?Qa.unshift(a):Qa.push(a)}}),n.speed=function(a,b,c){var d=a&&"object"==typeof a?n.extend({},a):{complete:c||!c&&b||n.isFunction(a)&&a,duration:a,easing:c&&b||b&&!n.isFunction(b)&&b};return d.duration=n.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in n.fx.speeds?n.fx.speeds[d.duration]:n.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){n.isFunction(d.old)&&d.old.call(this),d.queue&&n.dequeue(this,d.queue)},d},n.fn.extend({fadeTo:function(a,b,c,d){return this.filter(S).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=n.isEmptyObject(a),f=n.speed(b,c,d),g=function(){var b=Xa(this,n.extend({},a),f);(e||L.get(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=n.timers,g=L.get(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&Pa.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&n.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=L.get(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=n.timers,g=d?d.length:0;for(c.finish=!0,n.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),n.each(["toggle","show","hide"],function(a,b){var c=n.fn[b];n.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(Ta(b,!0),a,d,e)}}),n.each({slideDown:Ta("show"),slideUp:Ta("hide"),slideToggle:Ta("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){n.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),n.timers=[],n.fx.tick=function(){var a,b=0,c=n.timers;for(La=n.now();b1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===U?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),d=n.attrHooks[b]||(n.expr.match.bool.test(b)?Za:Ya)),
-void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void n.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)&&(a[d]=!1),a.removeAttribute(c)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),Za={set:function(a,b,c){return b===!1?n.removeAttr(a,c):a.setAttribute(c,c),c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=$a[b]||n.find.attr;$a[b]=function(a,b,d){var e,f;return d||(f=$a[b],$a[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,$a[b]=f),e}});var _a=/^(?:input|select|textarea|button)$/i;n.fn.extend({prop:function(a,b){return J(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[n.propFix[a]||a]})}}),n.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!n.isXMLDoc(a),f&&(b=n.propFix[b]||b,e=n.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){return a.hasAttribute("tabindex")||_a.test(a.nodeName)||a.href?a.tabIndex:-1}}}}),k.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this});var ab=/[\t\r\n\f]/g;n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h="string"==typeof a&&a,i=0,j=this.length;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,this.className))});if(h)for(b=(a||"").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ab," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=n.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0===arguments.length||"string"==typeof a&&a,i=0,j=this.length;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,this.className))});if(h)for(b=(a||"").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ab," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?n.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(n.isFunction(a)?function(c){n(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=n(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===U||"boolean"===c)&&(this.className&&L.set(this,"__className__",this.className),this.className=this.className||a===!1?"":L.get(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(ab," ").indexOf(b)>=0)return!0;return!1}});var bb=/\r/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,n(this).val()):a,null==e?e="":"number"==typeof e?e+="":n.isArray(e)&&(e=n.map(e,function(a){return null==a?"":a+""})),b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(bb,""):null==c?"":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,"value");return null!=b?b:n.trim(n.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&n.nodeName(c.parentNode,"optgroup"))){if(b=n(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=n.makeArray(b),g=e.length;while(g--)d=e[g],(d.selected=n.inArray(d.value,f)>=0)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),n.each(["radio","checkbox"],function(){n.valHooks[this]={set:function(a,b){return n.isArray(b)?a.checked=n.inArray(n(a).val(),b)>=0:void 0}},k.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})}),n.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var cb=n.now(),db=/\?/;n.parseJSON=function(a){return JSON.parse(a+"")},n.parseXML=function(a){var b,c;if(!a||"string"!=typeof a)return null;try{c=new DOMParser,b=c.parseFromString(a,"text/xml")}catch(d){b=void 0}return(!b||b.getElementsByTagName("parsererror").length)&&n.error("Invalid XML: "+a),b};var eb=/#.*$/,fb=/([?&])_=[^&]*/,gb=/^(.*?):[ \t]*([^\r\n]*)$/gm,hb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,ib=/^(?:GET|HEAD)$/,jb=/^\/\//,kb=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,lb={},mb={},nb="*/".concat("*"),ob=a.location.href,pb=kb.exec(ob.toLowerCase())||[];function qb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(n.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function rb(a,b,c,d){var e={},f=a===mb;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function sb(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&n.extend(!0,a,d),a}function tb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function ub(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:ob,type:"GET",isLocal:hb.test(pb[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":nb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":n.parseJSON,"text xml":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?sb(sb(a,n.ajaxSettings),b):sb(n.ajaxSettings,a)},ajaxPrefilter:qb(lb),ajaxTransport:qb(mb),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=n.ajaxSetup({},b),l=k.context||k,m=k.context&&(l.nodeType||l.jquery)?n(l):n.event,o=n.Deferred(),p=n.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!f){f={};while(b=gb.exec(e))f[b[1].toLowerCase()]=b[2]}b=f[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?e:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return c&&c.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||ob)+"").replace(eb,"").replace(jb,pb[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=n.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(h=kb.exec(k.url.toLowerCase()),k.crossDomain=!(!h||h[1]===pb[1]&&h[2]===pb[2]&&(h[3]||("http:"===h[1]?"80":"443"))===(pb[3]||("http:"===pb[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=n.param(k.data,k.traditional)),rb(lb,k,b,v),2===t)return v;i=n.event&&k.global,i&&0===n.active++&&n.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!ib.test(k.type),d=k.url,k.hasContent||(k.data&&(d=k.url+=(db.test(d)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=fb.test(d)?d.replace(fb,"$1_="+cb++):d+(db.test(d)?"&":"?")+"_="+cb++)),k.ifModified&&(n.lastModified[d]&&v.setRequestHeader("If-Modified-Since",n.lastModified[d]),n.etag[d]&&v.setRequestHeader("If-None-Match",n.etag[d])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+nb+"; q=0.01":""):k.accepts["*"]);for(j in k.headers)v.setRequestHeader(j,k.headers[j]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(j in{success:1,error:1,complete:1})v[j](k[j]);if(c=rb(mb,k,b,v)){v.readyState=1,i&&m.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,c.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,f,h){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),c=void 0,e=h||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,f&&(u=tb(k,v,f)),u=ub(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(n.lastModified[d]=w),w=v.getResponseHeader("etag"),w&&(n.etag[d]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,i&&m.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),i&&(m.trigger("ajaxComplete",[v,k]),--n.active||n.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return n.get(a,b,c,"json")},getScript:function(a,b){return n.get(a,void 0,b,"script")}}),n.each(["get","post"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),n._evalUrl=function(a){return n.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},n.fn.extend({wrapAll:function(a){var b;return n.isFunction(a)?this.each(function(b){n(this).wrapAll(a.call(this,b))}):(this[0]&&(b=n(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this)},wrapInner:function(a){return this.each(n.isFunction(a)?function(b){n(this).wrapInner(a.call(this,b))}:function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,"body")||n(this).replaceWith(this.childNodes)}).end()}}),n.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var vb=/%20/g,wb=/\[\]$/,xb=/\r?\n/g,yb=/^(?:submit|button|image|reset|file)$/i,zb=/^(?:input|select|textarea|keygen)/i;function Ab(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||wb.test(a)?d(a,e):Ab(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)Ab(a+"["+e+"]",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)Ab(c,a[c],b,e);return d.join("&").replace(vb,"+")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,"elements");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(":disabled")&&zb.test(this.nodeName)&&!yb.test(a)&&(this.checked||!T.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(xb,"\r\n")}}):{name:b.name,value:c.replace(xb,"\r\n")}}).get()}}),n.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(a){}};var Bb=0,Cb={},Db={0:200,1223:204},Eb=n.ajaxSettings.xhr();a.attachEvent&&a.attachEvent("onunload",function(){for(var a in Cb)Cb[a]()}),k.cors=!!Eb&&"withCredentials"in Eb,k.ajax=Eb=!!Eb,n.ajaxTransport(function(a){var b;return k.cors||Eb&&!a.crossDomain?{send:function(c,d){var e,f=a.xhr(),g=++Bb;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)f.setRequestHeader(e,c[e]);b=function(a){return function(){b&&(delete Cb[g],b=f.onload=f.onerror=null,"abort"===a?f.abort():"error"===a?d(f.status,f.statusText):d(Db[f.status]||f.status,f.statusText,"string"==typeof f.responseText?{text:f.responseText}:void 0,f.getAllResponseHeaders()))}},f.onload=b(),f.onerror=b("error"),b=Cb[g]=b("abort");try{f.send(a.hasContent&&a.data||null)}catch(h){if(b)throw h}},abort:function(){b&&b()}}:void 0}),n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),n.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(d,e){b=n("
-
-
-
-
-
-
-
- Export DataGrid
- The PDF document is created using the pdfmake library.
-
-
-
-
- | Item ID |
- Product |
- List Price |
- Unit Cost |
- Attribute |
- Status |
-
-
-
-
-
-