resize优化动画

This commit is contained in:
thinkgem
2018-01-13 14:13:01 +08:00
parent 332b5be61f
commit 951287f062
16 changed files with 6371 additions and 6371 deletions

View File

@@ -1,249 +1,249 @@
/* /*
* Default Layout Theme * Default Layout Theme
* *
* Created for jquery.layout * Created for jquery.layout
* *
* Copyright (c) 2010 * Copyright (c) 2010
* Fabrizio Balliano (http://www.fabrizioballiano.net) * Fabrizio Balliano (http://www.fabrizioballiano.net)
* Kevin Dalman (http://allpro.net) * Kevin Dalman (http://allpro.net)
* *
* Dual licensed under the GPL (http://www.gnu.org/licenses/gpl.html) * Dual licensed under the GPL (http://www.gnu.org/licenses/gpl.html)
* and MIT (http://www.opensource.org/licenses/mit-license.php) licenses. * and MIT (http://www.opensource.org/licenses/mit-license.php) licenses.
* *
* Last Updated: 2010-02-10 * Last Updated: 2010-02-10
* NOTE: For best code readability, view this with a fixed-space font and tabs equal to 4-chars * NOTE: For best code readability, view this with a fixed-space font and tabs equal to 4-chars
*/ */
.ui-draggable-handle{-ms-touch-action:none;touch-action:none} .ui-draggable-handle{-ms-touch-action:none;touch-action:none}
/* /*
* DEFAULT FONT * DEFAULT FONT
* Just to make demo-pages look better - not actually relevant to Layout! * Just to make demo-pages look better - not actually relevant to Layout!
*/ */
/* body { */ /* body { */
/* font-family: Geneva, Arial, Helvetica, sans-serif; */ /* font-family: Geneva, Arial, Helvetica, sans-serif; */
/* font-size: 100%; */ /* font-size: 100%; */
/* *font-size: 80%; */ /* *font-size: 80%; */
/* } */ /* } */
/* /*
* PANES & CONTENT-DIVs * PANES & CONTENT-DIVs
*/ */
.ui-layout-pane { /* all 'panes' */ .ui-layout-pane { /* all 'panes' */
/* background: #FFF; */ /* background: #FFF; */
/* border: 1px solid #eee; */ /* border: 1px solid #eee; */
/* padding: 10px; */ /* padding: 10px; */
overflow: auto; overflow: auto;
/* DO NOT add scrolling (or padding) to 'panes' that have a content-div, /* DO NOT add scrolling (or padding) to 'panes' that have a content-div,
otherwise you may get double-scrollbars - on the pane AND on the content-div otherwise you may get double-scrollbars - on the pane AND on the content-div
- use ui-layout-wrapper class if pane has a content-div - use ui-layout-wrapper class if pane has a content-div
- use ui-layout-container if pane has an inner-layout - use ui-layout-container if pane has an inner-layout
*/ */
} }
/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */ /* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */
.ui-layout-content { .ui-layout-content {
padding: 10px; padding: 10px;
position: relative; /* contain floated or positioned elements */ position: relative; /* contain floated or positioned elements */
overflow: auto; /* add scrolling to content-div */ overflow: auto; /* add scrolling to content-div */
width: 100%; width: 100%;
border: 0; border: 0;
} }
/* /*
* UTILITY CLASSES * UTILITY CLASSES
* Must come AFTER pane-class above so will override * Must come AFTER pane-class above so will override
* These classes are NOT auto-generated and are NOT used by Layout * These classes are NOT auto-generated and are NOT used by Layout
*/ */
.layout-child-container, .layout-child-container,
.layout-content-container { .layout-content-container {
padding: 0; padding: 0;
overflow: hidden; overflow: hidden;
} }
.layout-child-container { .layout-child-container {
border: 0; /* remove border because inner-layout-panes probably have borders */ border: 0; /* remove border because inner-layout-panes probably have borders */
} }
.layout-scroll { .layout-scroll {
overflow: auto; overflow: auto;
} }
.layout-hide { .layout-hide {
display: none; display: none;
} }
/* /*
* RESIZER-BARS * RESIZER-BARS
*/ */
.ui-layout-resizer { /* all 'resizer-bars' */ .ui-layout-resizer { /* all 'resizer-bars' */
background: #fafafa; background: #fafafa;
border: 1px solid #eee; border: 1px solid #eee;
border-width: 0; border-width: 0;
} }
.ui-layout-resizer-drag { /* REAL resizer while resize in progress */ .ui-layout-resizer-drag { /* REAL resizer while resize in progress */
} }
.ui-layout-resizer-hover { /* affects both open and closed states */ .ui-layout-resizer-hover { /* affects both open and closed states */
} }
/* NOTE: It looks best when 'hover' and 'dragging' are set to the same color, /* NOTE: It looks best when 'hover' and 'dragging' are set to the same color,
otherwise color shifts while dragging when bar can't keep up with mouse */ otherwise color shifts while dragging when bar can't keep up with mouse */
.ui-layout-resizer-open-hover , /* hover-color to 'resize' */ .ui-layout-resizer-open-hover , /* hover-color to 'resize' */
.ui-layout-resizer-dragging { /* resizer beging 'dragging' */ .ui-layout-resizer-dragging { /* resizer beging 'dragging' */
background: #fafafa; background: #fafafa;
} }
.ui-layout-resizer-dragging { /* CLONED resizer being dragged */ .ui-layout-resizer-dragging { /* CLONED resizer being dragged */
border: 1px solid #eee; border: 1px solid #eee;
} }
.ui-layout-resizer-north-dragging, .ui-layout-resizer-north-dragging,
.ui-layout-resizer-south-dragging { .ui-layout-resizer-south-dragging {
border-width: 1px 0; border-width: 1px 0;
} }
.ui-layout-resizer-west-dragging, .ui-layout-resizer-west-dragging,
.ui-layout-resizer-east-dragging { .ui-layout-resizer-east-dragging {
border-width: 0 1px; border-width: 0 1px;
} }
/* NOTE: Add a 'dragging-limit' color to provide visual feedback when resizer hits min/max size limits */ /* NOTE: Add a 'dragging-limit' color to provide visual feedback when resizer hits min/max size limits */
.ui-layout-resizer-dragging-limit { /* CLONED resizer at min or max size-limit */ .ui-layout-resizer-dragging-limit { /* CLONED resizer at min or max size-limit */
background: #E1A4A4; /* red */ background: #E1A4A4; /* red */
} }
.ui-layout-resizer-closed-hover { /* hover-color to 'slide open' */ .ui-layout-resizer-closed-hover { /* hover-color to 'slide open' */
background: #EBD5AA; background: #EBD5AA;
} }
.ui-layout-resizer-sliding { /* resizer when pane is 'slid open' */ .ui-layout-resizer-sliding { /* resizer when pane is 'slid open' */
/* opacity: .10; show only a slight shadow */ /* opacity: .10; show only a slight shadow */
/* filter: alpha(opacity=10); */ /* filter: alpha(opacity=10); */
} }
.ui-layout-resizer-sliding-hover { /* sliding resizer - hover */ .ui-layout-resizer-sliding-hover { /* sliding resizer - hover */
/* opacity: 1.00; on-hover, show the resizer-bar normally */ /* opacity: 1.00; on-hover, show the resizer-bar normally */
/* filter: alpha(opacity=100); */ /* filter: alpha(opacity=100); */
} }
/* sliding resizer - add 'outside-border' to resizer on-hover /* sliding resizer - add 'outside-border' to resizer on-hover
* this sample illustrates how to target specific panes and states */ * this sample illustrates how to target specific panes and states */
.ui-layout-resizer-north-sliding-hover { border-bottom-width: 1px; } .ui-layout-resizer-north-sliding-hover { border-bottom-width: 1px; }
.ui-layout-resizer-south-sliding-hover { border-top-width: 1px; } .ui-layout-resizer-south-sliding-hover { border-top-width: 1px; }
.ui-layout-resizer-west-sliding-hover { border-right-width: 1px; } .ui-layout-resizer-west-sliding-hover { border-right-width: 1px; }
.ui-layout-resizer-east-sliding-hover { border-left-width: 1px; } .ui-layout-resizer-east-sliding-hover { border-left-width: 1px; }
/* /*
* TOGGLER-BUTTONS * TOGGLER-BUTTONS
*/ */
.ui-layout-toggler { .ui-layout-toggler {
border: 1px solid #eee; /* match pane-border */ border: 1px solid #eee; /* match pane-border */
background-color: #eee; background-color: #eee;
} }
.ui-layout-resizer-hover .ui-layout-toggler { .ui-layout-resizer-hover .ui-layout-toggler {
opacity: 1.00; opacity: 1.00;
filter: alpha(opacity=100); filter: alpha(opacity=100);
} }
.ui-layout-toggler-hover , /* need when NOT resizable */ .ui-layout-toggler-hover , /* need when NOT resizable */
.ui-layout-resizer-hover .ui-layout-toggler-hover { /* need specificity when IS resizable */ .ui-layout-resizer-hover .ui-layout-toggler-hover { /* need specificity when IS resizable */
background-color: #FC6; background-color: #FC6;
opacity: 1.00; opacity: 1.00;
filter: alpha(opacity=100); filter: alpha(opacity=100);
} }
.ui-layout-toggler-north , .ui-layout-toggler-north ,
.ui-layout-toggler-south { .ui-layout-toggler-south {
border-width: 0 1px; /* left/right borders */ border-width: 0 1px; /* left/right borders */
} }
.ui-layout-toggler-west , .ui-layout-toggler-west ,
.ui-layout-toggler-east { .ui-layout-toggler-east {
border-width: 1px 0; /* top/bottom borders */ border-width: 1px 0; /* top/bottom borders */
} }
/* hide the toggler-button when the pane is 'slid open' */ /* hide the toggler-button when the pane is 'slid open' */
.ui-layout-resizer-sliding .ui-layout-toggler { .ui-layout-resizer-sliding .ui-layout-toggler {
display: none; display: none;
} }
/* /*
* style the text we put INSIDE the togglers * style the text we put INSIDE the togglers
*/ */
.ui-layout-toggler .ui-content { .ui-layout-toggler .ui-content {
color: #666; color: #666;
font-size: 12px; font-size: 12px;
font-weight: bold; font-weight: bold;
line-height: 8px; line-height: 8px;
width: 100%; width: 100%;
padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */ padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */
} }
.ui-layout-toggler .ui-content .fa{ .ui-layout-toggler .ui-content .fa{
line-height: 8px; line-height: 8px;
} }
.ui-layout-toggler-north-closed .fa:before, .ui-layout-toggler-north-closed .fa:before,
.ui-layout-toggler-south-open .fa:before { .ui-layout-toggler-south-open .fa:before {
content: "\f0d7";/* 下 */ content: "\f0d7";/* 下 */
} }
.ui-layout-toggler-south-closed .fa:before, .ui-layout-toggler-south-closed .fa:before,
.ui-layout-toggler-north-open .fa:before { .ui-layout-toggler-north-open .fa:before {
content: "\f0d8";/* 上 */ content: "\f0d8";/* 上 */
} }
.ui-layout-toggler-west-closed .fa:before, .ui-layout-toggler-west-closed .fa:before,
.ui-layout-toggler-east-open .fa:before { .ui-layout-toggler-east-open .fa:before {
content: "\f0da";/* 右 */ content: "\f0da";/* 右 */
} }
.ui-layout-toggler-east-closed .fa:before, .ui-layout-toggler-east-closed .fa:before,
.ui-layout-toggler-west-open .fa:before { .ui-layout-toggler-west-open .fa:before {
content: "\f0d9";/* 左 */ content: "\f0d9";/* 左 */
} }
/* /*
* PANE-MASKS * PANE-MASKS
* these styles are hard-coded on mask elems, but are also * these styles are hard-coded on mask elems, but are also
* included here as !important to ensure will overrides any generic styles * included here as !important to ensure will overrides any generic styles
*/ */
.ui-layout-mask { .ui-layout-mask {
border: none !important; border: none !important;
padding: 0 !important; padding: 0 !important;
margin: 0 !important; margin: 0 !important;
overflow: hidden !important; overflow: hidden !important;
position: absolute !important; position: absolute !important;
opacity: 0 !important; opacity: 0 !important;
filter: Alpha(Opacity="0") !important; filter: Alpha(Opacity="0") !important;
} }
.ui-layout-mask-inside-pane { /* masks always inside pane EXCEPT when pane is an iframe */ .ui-layout-mask-inside-pane { /* masks always inside pane EXCEPT when pane is an iframe */
top: 0 !important; top: 0 !important;
left: 0 !important; left: 0 !important;
width: 100% !important; width: 100% !important;
height: 100% !important; height: 100% !important;
} }
div.ui-layout-mask {} /* standard mask for iframes */ div.ui-layout-mask {} /* standard mask for iframes */
iframe.ui-layout-mask {} /* extra mask for objects/applets */ iframe.ui-layout-mask {} /* extra mask for objects/applets */
/* /*
* Default printing styles * Default printing styles
*/ */
@media print { @media print {
/* /*
* Unless you want to print the layout as it appears onscreen, * Unless you want to print the layout as it appears onscreen,
* these html/body styles are needed to allow the content to 'flow' * these html/body styles are needed to allow the content to 'flow'
*/ */
html { html {
height: auto !important; height: auto !important;
overflow: visible !important; overflow: visible !important;
} }
body.ui-layout-container { body.ui-layout-container {
position: static !important; position: static !important;
top: auto !important; top: auto !important;
bottom: auto !important; bottom: auto !important;
left: auto !important; left: auto !important;
right: auto !important; right: auto !important;
/* only IE6 has container width & height set by Layout */ /* only IE6 has container width & height set by Layout */
_width: auto !important; _width: auto !important;
_height: auto !important; _height: auto !important;
} }
.ui-layout-resizer, .ui-layout-toggler { .ui-layout-resizer, .ui-layout-toggler {
display: none !important; display: none !important;
} }
/* /*
* Default pane print styles disables positioning, borders and backgrounds. * Default pane print styles disables positioning, borders and backgrounds.
* You can modify these styles however it suit your needs. * You can modify these styles however it suit your needs.
*/ */
.ui-layout-pane { .ui-layout-pane {
border: none !important; border: none !important;
background: transparent !important; background: transparent !important;
position: relative !important; position: relative !important;
top: auto !important; top: auto !important;
bottom: auto !important; bottom: auto !important;
left: auto !important; left: auto !important;
right: auto !important; right: auto !important;
width: auto !important; width: auto !important;
height: auto !important; height: auto !important;
overflow: visible !important; overflow: visible !important;
} }
} }

View File

@@ -1,7 +1,7 @@
/** /**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved. * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/ */
package com.jeesite.config.common; package com.jeesite.modules.config;
import java.util.Map; import java.util.Map;

View File

@@ -132,13 +132,13 @@ page:
# 用户相关参数 # 用户相关参数
user: user:
# 指定超级管理员编号(实施人员,开发团队使用的用户 # 指定超级管理员编号(发团队使用的账号
superAdminCode: thinkgem superAdminCode: system
# 超级管理员获取菜单的最小权重默认20>=40二级管理员>=60系统管理员>=80超级管理员 # 超级管理员获取菜单的最小权重默认20>=40二级管理员>=60系统管理员>=80超级管理员
superAdminGetMenuMinWeight: 40 superAdminGetMenuMinWeight: 40
# 系统管理员角色编号(客户方使用的角色,客户方管理员 # 系统管理员角色编号(客户方管理员使用的角色)
corpAdminRoleCode: corpAdmin corpAdminRoleCode: corpAdmin
# 用户类型配置信息employee员工member会员btype往来单位persion个人expert专家... # 用户类型配置信息employee员工member会员btype往来单位persion个人expert专家...

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<faceted-project> <faceted-project>
<fixed facet="jst.java"/> <fixed facet="jst.java"/>
<fixed facet="jst.web"/> <fixed facet="jst.web"/>
<installed facet="jst.web" version="3.0"/> <installed facet="jst.java" version="1.7"/>
<installed facet="jst.java" version="1.7"/> <installed facet="jst.web" version="3.1"/>
</faceted-project> </faceted-project>

View File

@@ -19,7 +19,7 @@
<properties> <properties>
<start-class>com.jeesite.config.Application</start-class> <start-class>com.jeesite.modules.config.Application</start-class>
<eclipse-plugin-download-sources>false</eclipse-plugin-download-sources> <eclipse-plugin-download-sources>false</eclipse-plugin-download-sources>
<eclipse-plugin-download-javadocs>false</eclipse-plugin-download-javadocs> <eclipse-plugin-download-javadocs>false</eclipse-plugin-download-javadocs>

View File

@@ -1,7 +1,7 @@
/** /**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved. * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/ */
package com.jeesite.config; package com.jeesite.modules.config;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
@@ -17,7 +17,7 @@ import com.jeesite.common.io.PropertiesUtils;
* @version 2018-1-8 * @version 2018-1-8
*/ */
@Profile("default") @Profile("default")
@SpringBootApplication(scanBasePackages={"com.jeesite.config"}) @SpringBootApplication(scanBasePackages={"com.jeesite.modules"})
public class Application extends SpringBootServletInitializer { public class Application extends SpringBootServletInitializer {
public static void main(String[] args) { public static void main(String[] args) {

View File

@@ -1,7 +1,7 @@
/** /**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved. * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/ */
package com.jeesite.config.task; package com.jeesite.modules.config.task;
/** /**
* 消息发送服务如果需要支持定时任务则要在作业管理里添加该任务msgLocalSendTask.execute(); * 消息发送服务如果需要支持定时任务则要在作业管理里添加该任务msgLocalSendTask.execute();

View File

@@ -1,7 +1,7 @@
/** /**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved. * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/ */
package com.jeesite.config.web; package com.jeesite.modules.config.web;
import org.springframework.boot.web.servlet.FilterRegistrationBean; import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.boot.web.servlet.ServletRegistrationBean; import org.springframework.boot.web.servlet.ServletRegistrationBean;

View File

@@ -1,7 +1,7 @@
/** /**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved. * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/ */
package com.jeesite.config.web; package com.jeesite.modules.config.web;
import javax.servlet.Filter; import javax.servlet.Filter;

View File

@@ -1,7 +1,7 @@
/** /**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved. * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/ */
package com.jeesite.config.web; package com.jeesite.modules.config.web;
import org.springframework.boot.web.servlet.ServletListenerRegistrationBean; import org.springframework.boot.web.servlet.ServletListenerRegistrationBean;
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Bean;

View File

@@ -1,7 +1,7 @@
/** /**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved. * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/ */
package com.jeesite.config.web; package com.jeesite.modules.config.web;
import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Configuration;

View File

@@ -1,7 +1,7 @@
/** /**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved. * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/ */
package com.jeesite.config.web.interceptor; package com.jeesite.modules.config.web.interceptor;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Configuration;

View File

@@ -1,7 +1,7 @@
/** /**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved. * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/ */
package com.jeesite.config.web.interceptor; package com.jeesite.modules.config.web.interceptor;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Configuration;

View File

@@ -7,7 +7,7 @@ import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest; import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.annotation.Commit; import org.springframework.test.annotation.Commit;
import com.jeesite.config.Application; import com.jeesite.modules.config.Application;
/** /**
* 初始化核心表数据 * 初始化核心表数据
@@ -21,17 +21,17 @@ public class InitCoreData extends com.jeesite.modules.db.InitCoreData {
@Test @Test
public void initCoreData() throws Exception{ public void initCoreData() throws Exception{
initLog(); initLog();
// initConfig(); initConfig();
// initModule(); initModule();
// initDict(); initDict();
// initRole(); initRole();
// initMenu(); initMenu();
// initUser(); initUser();
// initArea(); // initArea();
// initOffice(); initOffice();
// initCompany(); initCompany();
// initPost(); initPost();
// initEmpUser(); initEmpUser();
} }
} }