第一版
40
WebContent/static/easyui/css/default.css
Normal file
@@ -0,0 +1,40 @@
|
||||
*{font-size:12px; font-family:Tahoma,Verdana,微软雅黑,新宋体}
|
||||
body{background:#D2E0F2; }
|
||||
a{ color:Black; text-decoration:none;}
|
||||
a:hover{ color:Red; text-decoration:underline;}
|
||||
.textbox03 {border: #878787 1px solid;padding: 4px 3px;font:Verdana, Geneva, sans-serif,宋体;line-height: 14px; background-color: #fff; height: auto; font-size: 14px; font-weight: bold; width: 190px; }
|
||||
|
||||
.txt01{font:Verdana, Geneva, sans-serif,宋体;padding:3px 2px 2px 2px; border-width:1px; border-color:#ddd; color:#000;}
|
||||
.txt {border: #878787 1px solid;padding: 4px 3px;font:Verdana, Geneva, sans-serif,宋体;line-height: 14px; background-color: #fff; height: auto; font-size: 14px;}
|
||||
.footer{text-align:center;color:#15428B; margin:0px; padding:0px;line-height:23px; font-weight:bold;}
|
||||
|
||||
.head a{color:White;text-decoration:underline;}
|
||||
|
||||
.easyui-accordion ul{list-style-type:none;margin:0px; padding:10px;}
|
||||
.easyui-accordion ul li{ padding:0px;}
|
||||
.easyui-accordion ul li a{line-height:24px;}
|
||||
.easyui-accordion ul li div{margin:2px 0px;padding-left:10px;padding-top:2px;}
|
||||
.easyui-accordion ul li div.hover{border:1px dashed #99BBE8; background:#E0ECFF;cursor:pointer;}
|
||||
.easyui-accordion ul li div.hover a{color:#416AA3;}
|
||||
.easyui-accordion ul li div.selected{border:1px solid #99BBE8; background:#E0ECFF;cursor:default;}
|
||||
.easyui-accordion ul li div.selected a{color:#416AA3; font-weight:bold;}
|
||||
|
||||
|
||||
|
||||
.icon{ background:url(../images/tabicons.png) no-repeat;width:18px; line-height:18px; display:inline-block;}
|
||||
.icon-sys{ background-position:0px -200px;}
|
||||
.icon-set{ background-position:-380px -200px;}
|
||||
.icon-add{background-position: -20px 0px;}
|
||||
.icon-add1{background:url('icon/edit_add.png') no-repeat;}
|
||||
.icon-nav{background-position: -100px -20px; }
|
||||
.icon-users{background-position: -100px -480px;}
|
||||
.icon-role{background-position: -360px -200px;}
|
||||
.icon-set{background-position: -380px -200px;}
|
||||
.icon-log{background-position: -380px -80px;}
|
||||
.icon-delete16{background:url('icon/delete.gif') no-repeat;width:18px; line-height:18px; display:inline-block;}
|
||||
.icon-delete{ background-position:-140px -120px;}
|
||||
.icon-edit{ background-position:-380px -320px;}
|
||||
.icon-magic{ background-position:0px -500px;}
|
||||
.icon-database{ background-position:-20px -140px;}
|
||||
.icon-expand{ background:url('/images/coll2.gif') no-repeat;}
|
||||
.icon-collapse{ background:url('/images/coll3.gif') no-repeat;}
|
||||
21
WebContent/static/easyui/css/demo.css
Normal file
@@ -0,0 +1,21 @@
|
||||
*{
|
||||
font-size:12px;
|
||||
}
|
||||
body {
|
||||
font-family:verdana,helvetica,arial,sans-serif;
|
||||
padding:20px;
|
||||
font-size:12px;
|
||||
margin:0;
|
||||
}
|
||||
h2 {
|
||||
font-size:18px;
|
||||
font-weight:bold;
|
||||
margin:0;
|
||||
margin-bottom:15px;
|
||||
}
|
||||
.demo-info{
|
||||
padding:0 0 12px 0;
|
||||
}
|
||||
.demo-tip{
|
||||
display:none;
|
||||
}
|
||||
13911
WebContent/static/easyui/jquery.easyui.min.js
vendored
Normal file
2
WebContent/static/easyui/jquery.min.js
vendored
Normal file
22
WebContent/static/easyui/js/echarts.common.min.js
vendored
Normal file
175
WebContent/static/easyui/js/outlook2.js
Normal file
@@ -0,0 +1,175 @@
|
||||
|
||||
$(function(){
|
||||
InitLeftMenu();
|
||||
tabClose();
|
||||
tabCloseEven();
|
||||
|
||||
|
||||
})
|
||||
|
||||
//初始化左侧
|
||||
function InitLeftMenu() {
|
||||
$("#nav").accordion({animate:false});
|
||||
|
||||
$.each(_menus.menus, function(i, n) {
|
||||
var menulist ='';
|
||||
menulist +='<ul>';
|
||||
$.each(n.menus, function(j, o) {
|
||||
menulist += '<li><div><a ref="'+o.menuid+'" href="#" rel="' + o.url + '" ><span class="icon '+o.icon+'" > </span><span class="nav">' + o.menuname + '</span></a></div></li> ';
|
||||
})
|
||||
menulist += '</ul>';
|
||||
|
||||
$('#nav').accordion('add', {
|
||||
title: n.menuname,
|
||||
content: menulist,
|
||||
iconCls: 'icon ' + n.icon
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
$('.easyui-accordion li a').click(function(){
|
||||
var tabTitle = $(this).children('.nav').text();
|
||||
|
||||
var url = $(this).attr("rel");
|
||||
var menuid = $(this).attr("ref");
|
||||
var icon = getIcon(menuid,icon);
|
||||
|
||||
addTab(tabTitle,url,icon);
|
||||
$('.easyui-accordion li div').removeClass("selected");
|
||||
$(this).parent().addClass("selected");
|
||||
}).hover(function(){
|
||||
$(this).parent().addClass("hover");
|
||||
},function(){
|
||||
$(this).parent().removeClass("hover");
|
||||
});
|
||||
|
||||
//选中第一个
|
||||
var panels = $('#nav').accordion('panels');
|
||||
var t = panels[0].panel('options').title;
|
||||
$('#nav').accordion('select', t);
|
||||
}
|
||||
//获取左侧导航的图标
|
||||
function getIcon(menuid){
|
||||
var icon = 'icon ';
|
||||
$.each(_menus.menus, function(i, n) {
|
||||
$.each(n.menus, function(j, o) {
|
||||
if(o.menuid==menuid){
|
||||
icon += o.icon;
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
return icon;
|
||||
}
|
||||
|
||||
function addTab(subtitle,url,icon){
|
||||
if(!$('#tabs').tabs('exists',subtitle)){
|
||||
$('#tabs').tabs('add',{
|
||||
title:subtitle,
|
||||
content:createFrame(url),
|
||||
closable:true,
|
||||
icon:icon
|
||||
});
|
||||
}else{
|
||||
$('#tabs').tabs('select',subtitle);
|
||||
$('#mm-tabupdate').click();
|
||||
}
|
||||
tabClose();
|
||||
}
|
||||
|
||||
function createFrame(url)
|
||||
{
|
||||
var s = '<iframe scrolling="auto" frameborder="0" src="'+url+'" style="width:100%;height:100%;"></iframe>';
|
||||
return s;
|
||||
}
|
||||
|
||||
function tabClose()
|
||||
{
|
||||
/*双击关闭TAB选项卡*/
|
||||
$(".tabs-inner").dblclick(function(){
|
||||
var subtitle = $(this).children(".tabs-closable").text();
|
||||
$('#tabs').tabs('close',subtitle);
|
||||
})
|
||||
/*为选项卡绑定右键*/
|
||||
$(".tabs-inner").bind('contextmenu',function(e){
|
||||
$('#mm').menu('show', {
|
||||
left: e.pageX,
|
||||
top: e.pageY
|
||||
});
|
||||
|
||||
var subtitle =$(this).children(".tabs-closable").text();
|
||||
|
||||
$('#mm').data("currtab",subtitle);
|
||||
$('#tabs').tabs('select',subtitle);
|
||||
return false;
|
||||
});
|
||||
}
|
||||
//绑定右键菜单事件
|
||||
function tabCloseEven()
|
||||
{
|
||||
//刷新
|
||||
$('#mm-tabupdate').click(function(){
|
||||
var currTab = $('#tabs').tabs('getSelected');
|
||||
var url = $(currTab.panel('options').content).attr('src');
|
||||
$('#tabs').tabs('update',{
|
||||
tab:currTab,
|
||||
options:{
|
||||
content:createFrame(url)
|
||||
}
|
||||
})
|
||||
})
|
||||
//关闭当前
|
||||
$('#mm-tabclose').click(function(){
|
||||
var currtab_title = $('#mm').data("currtab");
|
||||
$('#tabs').tabs('close',currtab_title);
|
||||
})
|
||||
//全部关闭
|
||||
$('#mm-tabcloseall').click(function(){
|
||||
$('.tabs-inner span').each(function(i,n){
|
||||
var t = $(n).text();
|
||||
$('#tabs').tabs('close',t);
|
||||
});
|
||||
});
|
||||
//关闭除当前之外的TAB
|
||||
$('#mm-tabcloseother').click(function(){
|
||||
$('#mm-tabcloseright').click();
|
||||
$('#mm-tabcloseleft').click();
|
||||
});
|
||||
//关闭当前右侧的TAB
|
||||
$('#mm-tabcloseright').click(function(){
|
||||
var nextall = $('.tabs-selected').nextAll();
|
||||
if(nextall.length==0){
|
||||
//msgShow('系统提示','后边没有啦~~','error');
|
||||
alert('后边没有啦~~');
|
||||
return false;
|
||||
}
|
||||
nextall.each(function(i,n){
|
||||
var t=$('a:eq(0) span',$(n)).text();
|
||||
$('#tabs').tabs('close',t);
|
||||
});
|
||||
return false;
|
||||
});
|
||||
//关闭当前左侧的TAB
|
||||
$('#mm-tabcloseleft').click(function(){
|
||||
var prevall = $('.tabs-selected').prevAll();
|
||||
if(prevall.length==0){
|
||||
alert('到头了,前边没有啦~~');
|
||||
return false;
|
||||
}
|
||||
prevall.each(function(i,n){
|
||||
var t=$('a:eq(0) span',$(n)).text();
|
||||
$('#tabs').tabs('close',t);
|
||||
});
|
||||
return false;
|
||||
});
|
||||
|
||||
//退出
|
||||
$("#mm-exit").click(function(){
|
||||
$('#mm').menu('hide');
|
||||
})
|
||||
}
|
||||
|
||||
//弹出信息窗口 title:标题 msgString:提示信息 msgType:信息类型 [error,info,question,warning]
|
||||
function msgShow(title, msgString, msgType) {
|
||||
$.messager.alert(title, msgString, msgType);
|
||||
}
|
||||
180
WebContent/static/easyui/js/validateExtends.js
Normal file
@@ -0,0 +1,180 @@
|
||||
/**
|
||||
* 扩展easyui表单的验证
|
||||
*/
|
||||
|
||||
$.extend($.fn.validatebox.defaults.rules, {
|
||||
//验证汉字
|
||||
CHS: {
|
||||
validator: function (value) {
|
||||
return /^[\u0391-\uFFE5]+$/.test(value);
|
||||
},
|
||||
message: '只能输入汉字'
|
||||
},
|
||||
//移动手机号码验证
|
||||
mobile: {//value值为文本框中的值
|
||||
validator: function (value) {
|
||||
var reg = /^1[3|4|5|8|9]\d{9}$/;
|
||||
return reg.test(value);
|
||||
},
|
||||
message: '13/14/15/18/19开头,且11位的手机号'
|
||||
},
|
||||
//只能为数字
|
||||
number: {//value值为文本框中的值
|
||||
validator: function (value) {
|
||||
var reg = /^[0-9]*$/;
|
||||
return reg.test(value);
|
||||
},
|
||||
message: '只能为数字格式'
|
||||
},
|
||||
//验证账号不能重复
|
||||
repeat: {
|
||||
validator: function (value) {
|
||||
var flag = true;
|
||||
$.ajax({
|
||||
type: "post",
|
||||
async: false,
|
||||
url: "SystemServlet?method=AllAccount&t="+new Date().getTime(),
|
||||
success: function(data){//在验证函数里加载数据,加载过来后判断输入的值
|
||||
var account = $.parseJSON(data);
|
||||
for(var i=0;i < account.length;i++){
|
||||
if(value == account[i]){
|
||||
flag = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
return flag;
|
||||
},
|
||||
message: '用户已存在'
|
||||
},
|
||||
|
||||
//验证课程不能重复
|
||||
repeat_course: {
|
||||
validator: function (value) {
|
||||
var flag = true;
|
||||
$.ajax({
|
||||
type: "post",
|
||||
async: false,
|
||||
url: "CourseServlet?method=CourseList&t="+new Date().getTime(),
|
||||
success: function(data){//在验证函数里加载数据,加载过来后判断输入的值
|
||||
var course = $.parseJSON(data);
|
||||
for(var i=0;i < course.length;i++){
|
||||
if(value == course[i].name){
|
||||
flag = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
return flag;
|
||||
},
|
||||
message: '课程名称已存在'
|
||||
},
|
||||
|
||||
//验证年级不能重复
|
||||
repeat_grade: {
|
||||
validator: function (value) {
|
||||
var flag = true;
|
||||
$.ajax({
|
||||
type: "post",
|
||||
async: false,
|
||||
url: "GradeServlet?method=GradeList&t="+new Date().getTime(),
|
||||
success: function(data){//在验证函数里加载数据,加载过来后判断输入的值
|
||||
var grade = $.parseJSON(data);
|
||||
for(var i=0;i < grade.length;i++){
|
||||
if(value == grade[i].name){
|
||||
flag = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
return flag;
|
||||
},
|
||||
message: '年级名称已存在'
|
||||
},
|
||||
|
||||
//验证班级不能重复
|
||||
repeat_clazz: {
|
||||
validator: function (value, param) {
|
||||
var gradeid = $(param[0]).combobox("getValue");
|
||||
var flag = true;
|
||||
$.ajax({
|
||||
type: "post",
|
||||
async: false,
|
||||
data: {gradeid: gradeid},
|
||||
url: "ClazzServlet?method=ClazzList&t="+new Date().getTime(),
|
||||
success: function(data){//在验证函数里加载数据,加载过来后判断输入的值
|
||||
var clazz = $.parseJSON(data);
|
||||
for(var i=0;i < clazz.length;i++){
|
||||
if(value == clazz[i].name){
|
||||
flag = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
return flag;
|
||||
},
|
||||
message: '该年级下已存在同名班级'
|
||||
},
|
||||
|
||||
//验证两个值是否相同
|
||||
equals: {//param的值为[]中值
|
||||
validator: function (value, param) {
|
||||
if($(param[0]).val() != value){
|
||||
return false;
|
||||
} else{
|
||||
return true;
|
||||
}
|
||||
|
||||
}, message: '两次密码不同.'
|
||||
},
|
||||
|
||||
//密码规则
|
||||
password: {
|
||||
validator: function (value) {
|
||||
var reg = /^[a-zA-Z0-9]{6,16}$/;
|
||||
return reg.test(value);
|
||||
|
||||
}, message: '密码6-16位,且只能为英文、数字'
|
||||
},
|
||||
|
||||
//验证输入密码是否正确
|
||||
oldPassword: {
|
||||
validator: function (value, param) {
|
||||
if(param != value){
|
||||
return false;
|
||||
} else{
|
||||
return true;
|
||||
}
|
||||
|
||||
}, message: '密码不正确'
|
||||
},
|
||||
|
||||
//国内邮编验证
|
||||
zipcode: {
|
||||
validator: function (value) {
|
||||
var reg = /^[1-9]\d{5}$/;
|
||||
return reg.test(value);
|
||||
},
|
||||
message: '邮编必须是非0开始的6位数字.'
|
||||
},
|
||||
//用户账号验证(只能包括 _ 数字 字母)
|
||||
account: {//param的值为[]中值
|
||||
validator: function (value, param) {
|
||||
if (value.length < param[0] || value.length > param[1]) {
|
||||
$.fn.validatebox.defaults.rules.account.message = '用户名长度必须在' + param[0] + '至' + param[1] + '范围';
|
||||
return false;
|
||||
} else {
|
||||
if (!/^[\w]+$/.test(value)) {
|
||||
$.fn.validatebox.defaults.rules.account.message = '用户名只能数字、字母、下划线组成.';
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}, message: ''
|
||||
}
|
||||
})
|
||||
112
WebContent/static/easyui/themes/color.css
Normal file
@@ -0,0 +1,112 @@
|
||||
.c1,.c1:hover{
|
||||
color: #fff;
|
||||
border-color: #3c8b3c;
|
||||
background: #4cae4c;
|
||||
background: -webkit-linear-gradient(top,#4cae4c 0,#449d44 100%);
|
||||
background: -moz-linear-gradient(top,#4cae4c 0,#449d44 100%);
|
||||
background: -o-linear-gradient(top,#4cae4c 0,#449d44 100%);
|
||||
background: linear-gradient(to bottom,#4cae4c 0,#449d44 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4cae4c,endColorstr=#449d44,GradientType=0);
|
||||
}
|
||||
a.c1:hover{
|
||||
background: #449d44;
|
||||
filter: none;
|
||||
}
|
||||
.c2,.c2:hover{
|
||||
color: #fff;
|
||||
border-color: #5f5f5f;
|
||||
background: #747474;
|
||||
background: -webkit-linear-gradient(top,#747474 0,#676767 100%);
|
||||
background: -moz-linear-gradient(top,#747474 0,#676767 100%);
|
||||
background: -o-linear-gradient(top,#747474 0,#676767 100%);
|
||||
background: linear-gradient(to bottom,#747474 0,#676767 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#747474,endColorstr=#676767,GradientType=0);
|
||||
}
|
||||
a.c2:hover{
|
||||
background: #676767;
|
||||
filter: none;
|
||||
}
|
||||
.c3,.c3:hover{
|
||||
color: #333;
|
||||
border-color: #ff8080;
|
||||
background: #ffb3b3;
|
||||
background: -webkit-linear-gradient(top,#ffb3b3 0,#ff9999 100%);
|
||||
background: -moz-linear-gradient(top,#ffb3b3 0,#ff9999 100%);
|
||||
background: -o-linear-gradient(top,#ffb3b3 0,#ff9999 100%);
|
||||
background: linear-gradient(to bottom,#ffb3b3 0,#ff9999 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffb3b3,endColorstr=#ff9999,GradientType=0);
|
||||
}
|
||||
a.c3:hover{
|
||||
background: #ff9999;
|
||||
filter: none;
|
||||
}
|
||||
.c4,.c4:hover{
|
||||
color: #333;
|
||||
border-color: #52d689;
|
||||
background: #b8eecf;
|
||||
background: -webkit-linear-gradient(top,#b8eecf 0,#a4e9c1 100%);
|
||||
background: -moz-linear-gradient(top,#b8eecf 0,#a4e9c1 100%);
|
||||
background: -o-linear-gradient(top,#b8eecf 0,#a4e9c1 100%);
|
||||
background: linear-gradient(to bottom,#b8eecf 0,#a4e9c1 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b8eecf,endColorstr=#a4e9c1,GradientType=0);
|
||||
}
|
||||
a.c4:hover{
|
||||
background: #a4e9c1;
|
||||
filter: none;
|
||||
}
|
||||
.c5,.c5:hover{
|
||||
color: #fff;
|
||||
border-color: #b52b27;
|
||||
background: #d84f4b;
|
||||
background: -webkit-linear-gradient(top,#d84f4b 0,#c9302c 100%);
|
||||
background: -moz-linear-gradient(top,#d84f4b 0,#c9302c 100%);
|
||||
background: -o-linear-gradient(top,#d84f4b 0,#c9302c 100%);
|
||||
background: linear-gradient(to bottom,#d84f4b 0,#c9302c 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#d84f4b,endColorstr=#c9302c,GradientType=0);
|
||||
}
|
||||
a.c5:hover{
|
||||
background: #c9302c;
|
||||
filter: none;
|
||||
}
|
||||
.c6,.c6:hover{
|
||||
color: #fff;
|
||||
border-color: #1f637b;
|
||||
background: #2984a4;
|
||||
background: -webkit-linear-gradient(top,#2984a4 0,#24748f 100%);
|
||||
background: -moz-linear-gradient(top,#2984a4 0,#24748f 100%);
|
||||
background: -o-linear-gradient(top,#2984a4 0,#24748f 100%);
|
||||
background: linear-gradient(to bottom,#2984a4 0,#24748f 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#2984a4,endColorstr=#24748f,GradientType=0);
|
||||
}
|
||||
a.c6:hover{
|
||||
background: #24748f;
|
||||
filter: none;
|
||||
}
|
||||
.c7,.c7:hover{
|
||||
color: #333;
|
||||
border-color: #e68900;
|
||||
background: #ffab2e;
|
||||
background: -webkit-linear-gradient(top,#ffab2e 0,#ff9900 100%);
|
||||
background: -moz-linear-gradient(top,#ffab2e 0,#ff9900 100%);
|
||||
background: -o-linear-gradient(top,#ffab2e 0,#ff9900 100%);
|
||||
background: linear-gradient(to bottom,#ffab2e 0,#ff9900 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffab2e,endColorstr=#ff9900,GradientType=0);
|
||||
}
|
||||
a.c7:hover{
|
||||
background: #ff9900;
|
||||
filter: none;
|
||||
}
|
||||
.c8,.c8:hover{
|
||||
color: #fff;
|
||||
border-color: #4b72a4;
|
||||
background: #698cba;
|
||||
background: -webkit-linear-gradient(top,#698cba 0,#577eb2 100%);
|
||||
background: -moz-linear-gradient(top,#698cba 0,#577eb2 100%);
|
||||
background: -o-linear-gradient(top,#698cba 0,#577eb2 100%);
|
||||
background: linear-gradient(to bottom,#698cba 0,#577eb2 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#698cba,endColorstr=#577eb2,GradientType=0);
|
||||
}
|
||||
a.c8:hover{
|
||||
background: #577eb2;
|
||||
filter: none;
|
||||
}
|
||||
41
WebContent/static/easyui/themes/default/accordion.css
Normal file
@@ -0,0 +1,41 @@
|
||||
.accordion {
|
||||
overflow: hidden;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
.accordion .accordion-header {
|
||||
border-width: 0 0 1px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.accordion .accordion-body {
|
||||
border-width: 0 0 1px;
|
||||
}
|
||||
.accordion-noborder {
|
||||
border-width: 0;
|
||||
}
|
||||
.accordion-noborder .accordion-header {
|
||||
border-width: 0 0 1px;
|
||||
}
|
||||
.accordion-noborder .accordion-body {
|
||||
border-width: 0 0 1px;
|
||||
}
|
||||
.accordion-collapse {
|
||||
background: url('images/accordion_arrows.png') no-repeat 0 0;
|
||||
}
|
||||
.accordion-expand {
|
||||
background: url('images/accordion_arrows.png') no-repeat -16px 0;
|
||||
}
|
||||
.accordion {
|
||||
background: #ffffff;
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
.accordion .accordion-header {
|
||||
background: #E0ECFF;
|
||||
filter: none;
|
||||
}
|
||||
.accordion .accordion-header-selected {
|
||||
background: #ffe48d;
|
||||
}
|
||||
.accordion .accordion-header-selected .panel-title {
|
||||
color: #000000;
|
||||
}
|
||||
197
WebContent/static/easyui/themes/default/calendar.css
Normal file
@@ -0,0 +1,197 @@
|
||||
.calendar {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
padding: 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.calendar table {
|
||||
table-layout: fixed;
|
||||
border-collapse: separate;
|
||||
font-size: 12px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.calendar table td,
|
||||
.calendar table th {
|
||||
font-size: 12px;
|
||||
}
|
||||
.calendar-noborder {
|
||||
border: 0;
|
||||
}
|
||||
.calendar-header {
|
||||
position: relative;
|
||||
height: 22px;
|
||||
}
|
||||
.calendar-title {
|
||||
text-align: center;
|
||||
height: 22px;
|
||||
}
|
||||
.calendar-title span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
top: 2px;
|
||||
padding: 0 3px;
|
||||
height: 18px;
|
||||
line-height: 18px;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.calendar-prevmonth,
|
||||
.calendar-nextmonth,
|
||||
.calendar-prevyear,
|
||||
.calendar-nextyear {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
margin-top: -7px;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
cursor: pointer;
|
||||
font-size: 1px;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.calendar-prevmonth {
|
||||
left: 20px;
|
||||
background: url('images/calendar_arrows.png') no-repeat -18px -2px;
|
||||
}
|
||||
.calendar-nextmonth {
|
||||
right: 20px;
|
||||
background: url('images/calendar_arrows.png') no-repeat -34px -2px;
|
||||
}
|
||||
.calendar-prevyear {
|
||||
left: 3px;
|
||||
background: url('images/calendar_arrows.png') no-repeat -1px -2px;
|
||||
}
|
||||
.calendar-nextyear {
|
||||
right: 3px;
|
||||
background: url('images/calendar_arrows.png') no-repeat -49px -2px;
|
||||
}
|
||||
.calendar-body {
|
||||
position: relative;
|
||||
}
|
||||
.calendar-body th,
|
||||
.calendar-body td {
|
||||
text-align: center;
|
||||
}
|
||||
.calendar-day {
|
||||
border: 0;
|
||||
padding: 1px;
|
||||
cursor: pointer;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.calendar-other-month {
|
||||
opacity: 0.3;
|
||||
filter: alpha(opacity=30);
|
||||
}
|
||||
.calendar-disabled {
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
cursor: default;
|
||||
}
|
||||
.calendar-menu {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 180px;
|
||||
height: 150px;
|
||||
padding: 5px;
|
||||
font-size: 12px;
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
.calendar-menu-year-inner {
|
||||
text-align: center;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
.calendar-menu-year {
|
||||
width: 40px;
|
||||
text-align: center;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
margin: 0;
|
||||
padding: 2px;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
.calendar-menu-prev,
|
||||
.calendar-menu-next {
|
||||
display: inline-block;
|
||||
width: 21px;
|
||||
height: 21px;
|
||||
vertical-align: top;
|
||||
cursor: pointer;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.calendar-menu-prev {
|
||||
margin-right: 10px;
|
||||
background: url('images/calendar_arrows.png') no-repeat 2px 2px;
|
||||
}
|
||||
.calendar-menu-next {
|
||||
margin-left: 10px;
|
||||
background: url('images/calendar_arrows.png') no-repeat -45px 2px;
|
||||
}
|
||||
.calendar-menu-month {
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.calendar-body th,
|
||||
.calendar-menu-month {
|
||||
color: #4d4d4d;
|
||||
}
|
||||
.calendar-day {
|
||||
color: #000000;
|
||||
}
|
||||
.calendar-sunday {
|
||||
color: #CC2222;
|
||||
}
|
||||
.calendar-saturday {
|
||||
color: #00ee00;
|
||||
}
|
||||
.calendar-today {
|
||||
color: #0000ff;
|
||||
}
|
||||
.calendar-menu-year {
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
.calendar {
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
.calendar-header {
|
||||
background: #E0ECFF;
|
||||
}
|
||||
.calendar-body,
|
||||
.calendar-menu {
|
||||
background: #ffffff;
|
||||
}
|
||||
.calendar-body th {
|
||||
background: #F4F4F4;
|
||||
padding: 2px 0;
|
||||
}
|
||||
.calendar-hover,
|
||||
.calendar-nav-hover,
|
||||
.calendar-menu-hover {
|
||||
background-color: #eaf2ff;
|
||||
color: #000000;
|
||||
}
|
||||
.calendar-hover {
|
||||
border: 1px solid #b7d2ff;
|
||||
padding: 0;
|
||||
}
|
||||
.calendar-selected {
|
||||
background-color: #ffe48d;
|
||||
color: #000000;
|
||||
border: 1px solid #ffab3f;
|
||||
padding: 0;
|
||||
}
|
||||
60
WebContent/static/easyui/themes/default/combo.css
Normal file
@@ -0,0 +1,60 @@
|
||||
.combo {
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
overflow: hidden;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.combo .combo-text {
|
||||
font-size: 12px;
|
||||
border: 0px;
|
||||
margin: 0;
|
||||
padding: 0px 2px;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
.combo-arrow {
|
||||
width: 18px;
|
||||
height: 20px;
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
cursor: pointer;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
.combo-arrow-hover {
|
||||
opacity: 1.0;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
.combo-panel {
|
||||
overflow: auto;
|
||||
}
|
||||
.combo-arrow {
|
||||
background: url('images/combo_arrow.png') no-repeat center center;
|
||||
}
|
||||
.combo-panel {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.combo {
|
||||
border-color: #95B8E7;
|
||||
background-color: #fff;
|
||||
}
|
||||
.combo-arrow {
|
||||
background-color: #E0ECFF;
|
||||
}
|
||||
.combo-arrow-hover {
|
||||
background-color: #eaf2ff;
|
||||
}
|
||||
.combo-arrow:hover {
|
||||
background-color: #eaf2ff;
|
||||
}
|
||||
.combo .textbox-icon-disabled:hover {
|
||||
cursor: default;
|
||||
}
|
||||
.textbox-invalid {
|
||||
border-color: #ffa8a8;
|
||||
background-color: #fff3f3;
|
||||
}
|
||||
24
WebContent/static/easyui/themes/default/combobox.css
Normal file
@@ -0,0 +1,24 @@
|
||||
.combobox-item,
|
||||
.combobox-group {
|
||||
font-size: 12px;
|
||||
padding: 3px;
|
||||
padding-right: 0px;
|
||||
}
|
||||
.combobox-item-disabled {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
.combobox-gitem {
|
||||
padding-left: 10px;
|
||||
}
|
||||
.combobox-group {
|
||||
font-weight: bold;
|
||||
}
|
||||
.combobox-item-hover {
|
||||
background-color: #eaf2ff;
|
||||
color: #000000;
|
||||
}
|
||||
.combobox-item-selected {
|
||||
background-color: #ffe48d;
|
||||
color: #000000;
|
||||
}
|
||||
267
WebContent/static/easyui/themes/default/datagrid.css
Normal file
@@ -0,0 +1,267 @@
|
||||
.datagrid .panel-body {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
.datagrid-view {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.datagrid-view1,
|
||||
.datagrid-view2 {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
top: 0;
|
||||
}
|
||||
.datagrid-view1 {
|
||||
left: 0;
|
||||
}
|
||||
.datagrid-view2 {
|
||||
right: 0;
|
||||
}
|
||||
.datagrid-mask {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0.3;
|
||||
filter: alpha(opacity=30);
|
||||
display: none;
|
||||
}
|
||||
.datagrid-mask-msg {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
margin-top: -20px;
|
||||
padding: 10px 5px 10px 30px;
|
||||
width: auto;
|
||||
height: 16px;
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
display: none;
|
||||
}
|
||||
.datagrid-sort-icon {
|
||||
padding: 0;
|
||||
}
|
||||
.datagrid-toolbar {
|
||||
height: auto;
|
||||
padding: 1px 2px;
|
||||
border-width: 0 0 1px 0;
|
||||
border-style: solid;
|
||||
}
|
||||
.datagrid-btn-separator {
|
||||
float: left;
|
||||
height: 24px;
|
||||
border-left: 1px solid #ccc;
|
||||
border-right: 1px solid #fff;
|
||||
margin: 2px 1px;
|
||||
}
|
||||
.datagrid .datagrid-pager {
|
||||
display: block;
|
||||
margin: 0;
|
||||
border-width: 1px 0 0 0;
|
||||
border-style: solid;
|
||||
}
|
||||
.datagrid .datagrid-pager-top {
|
||||
border-width: 0 0 1px 0;
|
||||
}
|
||||
.datagrid-header {
|
||||
overflow: hidden;
|
||||
cursor: default;
|
||||
border-width: 0 0 1px 0;
|
||||
border-style: solid;
|
||||
}
|
||||
.datagrid-header-inner {
|
||||
float: left;
|
||||
width: 10000px;
|
||||
}
|
||||
.datagrid-header-row,
|
||||
.datagrid-row {
|
||||
height: 25px;
|
||||
}
|
||||
.datagrid-header td,
|
||||
.datagrid-body td,
|
||||
.datagrid-footer td {
|
||||
border-width: 0 1px 1px 0;
|
||||
border-style: dotted;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.datagrid-cell,
|
||||
.datagrid-cell-group,
|
||||
.datagrid-header-rownumber,
|
||||
.datagrid-cell-rownumber {
|
||||
margin: 0;
|
||||
padding: 0 4px;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
overflow: hidden;
|
||||
height: 18px;
|
||||
line-height: 18px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.datagrid-header .datagrid-cell {
|
||||
height: auto;
|
||||
}
|
||||
.datagrid-header .datagrid-cell span {
|
||||
font-size: 12px;
|
||||
}
|
||||
.datagrid-cell-group {
|
||||
text-align: center;
|
||||
}
|
||||
.datagrid-header-rownumber,
|
||||
.datagrid-cell-rownumber {
|
||||
width: 25px;
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.datagrid-body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: auto;
|
||||
zoom: 1;
|
||||
}
|
||||
.datagrid-view1 .datagrid-body-inner {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.datagrid-view1 .datagrid-body {
|
||||
overflow: hidden;
|
||||
}
|
||||
.datagrid-footer {
|
||||
overflow: hidden;
|
||||
}
|
||||
.datagrid-footer-inner {
|
||||
border-width: 1px 0 0 0;
|
||||
border-style: solid;
|
||||
width: 10000px;
|
||||
float: left;
|
||||
}
|
||||
.datagrid-row-editing .datagrid-cell {
|
||||
height: auto;
|
||||
}
|
||||
.datagrid-header-check,
|
||||
.datagrid-cell-check {
|
||||
padding: 0;
|
||||
width: 27px;
|
||||
height: 18px;
|
||||
font-size: 1px;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
.datagrid-header-check input,
|
||||
.datagrid-cell-check input {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 15px;
|
||||
height: 18px;
|
||||
}
|
||||
.datagrid-resize-proxy {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 10000px;
|
||||
top: 0;
|
||||
cursor: e-resize;
|
||||
display: none;
|
||||
}
|
||||
.datagrid-body .datagrid-editable {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.datagrid-body .datagrid-editable table {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.datagrid-body .datagrid-editable td {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.datagrid-view .datagrid-editable-input {
|
||||
margin: 0;
|
||||
padding: 2px 4px;
|
||||
border: 1px solid #95B8E7;
|
||||
font-size: 12px;
|
||||
outline-style: none;
|
||||
-moz-border-radius: 0 0 0 0;
|
||||
-webkit-border-radius: 0 0 0 0;
|
||||
border-radius: 0 0 0 0;
|
||||
}
|
||||
.datagrid-sort-desc .datagrid-sort-icon {
|
||||
padding: 0 13px 0 0;
|
||||
background: url('images/datagrid_icons.png') no-repeat -16px center;
|
||||
}
|
||||
.datagrid-sort-asc .datagrid-sort-icon {
|
||||
padding: 0 13px 0 0;
|
||||
background: url('images/datagrid_icons.png') no-repeat 0px center;
|
||||
}
|
||||
.datagrid-row-collapse {
|
||||
background: url('images/datagrid_icons.png') no-repeat -48px center;
|
||||
}
|
||||
.datagrid-row-expand {
|
||||
background: url('images/datagrid_icons.png') no-repeat -32px center;
|
||||
}
|
||||
.datagrid-mask-msg {
|
||||
background: #ffffff url('images/loading.gif') no-repeat scroll 5px center;
|
||||
}
|
||||
.datagrid-header,
|
||||
.datagrid-td-rownumber {
|
||||
background-color: #efefef;
|
||||
background: -webkit-linear-gradient(top,#F9F9F9 0,#efefef 100%);
|
||||
background: -moz-linear-gradient(top,#F9F9F9 0,#efefef 100%);
|
||||
background: -o-linear-gradient(top,#F9F9F9 0,#efefef 100%);
|
||||
background: linear-gradient(to bottom,#F9F9F9 0,#efefef 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F9F9F9,endColorstr=#efefef,GradientType=0);
|
||||
}
|
||||
.datagrid-cell-rownumber {
|
||||
color: #000000;
|
||||
}
|
||||
.datagrid-resize-proxy {
|
||||
background: #aac5e7;
|
||||
}
|
||||
.datagrid-mask {
|
||||
background: #ccc;
|
||||
}
|
||||
.datagrid-mask-msg {
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
.datagrid-toolbar,
|
||||
.datagrid-pager {
|
||||
background: #F4F4F4;
|
||||
}
|
||||
.datagrid-header,
|
||||
.datagrid-toolbar,
|
||||
.datagrid-pager,
|
||||
.datagrid-footer-inner {
|
||||
border-color: #dddddd;
|
||||
}
|
||||
.datagrid-header td,
|
||||
.datagrid-body td,
|
||||
.datagrid-footer td {
|
||||
border-color: #ccc;
|
||||
}
|
||||
.datagrid-htable,
|
||||
.datagrid-btable,
|
||||
.datagrid-ftable {
|
||||
color: #000000;
|
||||
border-collapse: separate;
|
||||
}
|
||||
.datagrid-row-alt {
|
||||
background: #fafafa;
|
||||
}
|
||||
.datagrid-row-over,
|
||||
.datagrid-header td.datagrid-header-over {
|
||||
background: #eaf2ff;
|
||||
color: #000000;
|
||||
cursor: default;
|
||||
}
|
||||
.datagrid-row-selected {
|
||||
background: #ffe48d;
|
||||
color: #000000;
|
||||
}
|
||||
.datagrid-row-editing .textbox,
|
||||
.datagrid-row-editing .textbox-text {
|
||||
-moz-border-radius: 0 0 0 0;
|
||||
-webkit-border-radius: 0 0 0 0;
|
||||
border-radius: 0 0 0 0;
|
||||
}
|
||||
95
WebContent/static/easyui/themes/default/datalist.css
Normal file
@@ -0,0 +1,95 @@
|
||||
.datalist .datagrid-header {
|
||||
border-width: 0;
|
||||
}
|
||||
.datalist .datagrid-group,
|
||||
.m-list .m-list-group {
|
||||
height: 25px;
|
||||
line-height: 25px;
|
||||
font-weight: bold;
|
||||
overflow: hidden;
|
||||
background-color: #efefef;
|
||||
border-style: solid;
|
||||
border-width: 0 0 1px 0;
|
||||
border-color: #ccc;
|
||||
}
|
||||
.datalist .datagrid-group-expander {
|
||||
display: none;
|
||||
}
|
||||
.datalist .datagrid-group-title {
|
||||
padding: 0 4px;
|
||||
}
|
||||
.datalist .datagrid-btable {
|
||||
width: 100%;
|
||||
table-layout: fixed;
|
||||
}
|
||||
.datalist .datagrid-row td {
|
||||
border-style: solid;
|
||||
border-left-color: transparent;
|
||||
border-right-color: transparent;
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
.datalist-lines .datagrid-row td {
|
||||
border-bottom-width: 1px;
|
||||
}
|
||||
.datalist .datagrid-cell,
|
||||
.m-list li {
|
||||
width: auto;
|
||||
height: auto;
|
||||
padding: 2px 4px;
|
||||
line-height: 18px;
|
||||
position: relative;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
}
|
||||
.datalist-link,
|
||||
.m-list li>a {
|
||||
display: block;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
overflow: hidden;
|
||||
margin: -2px -4px;
|
||||
padding: 2px 4px;
|
||||
padding-right: 16px;
|
||||
line-height: 18px;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
}
|
||||
.datalist-link::after,
|
||||
.m-list li>a::after {
|
||||
position: absolute;
|
||||
display: block;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
content: '';
|
||||
right: 6px;
|
||||
top: 50%;
|
||||
margin-top: -4px;
|
||||
border-style: solid;
|
||||
border-width: 1px 1px 0 0;
|
||||
-ms-transform: rotate(45deg);
|
||||
-moz-transform: rotate(45deg);
|
||||
-webkit-transform: rotate(45deg);
|
||||
-o-transform: rotate(45deg);
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
.m-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
.m-list li {
|
||||
border-style: solid;
|
||||
border-width: 0 0 1px 0;
|
||||
border-color: #ccc;
|
||||
}
|
||||
.m-list li>a:hover {
|
||||
background: #eaf2ff;
|
||||
color: #000000;
|
||||
}
|
||||
.m-list .m-list-group {
|
||||
padding: 0 4px;
|
||||
}
|
||||
36
WebContent/static/easyui/themes/default/datebox.css
Normal file
@@ -0,0 +1,36 @@
|
||||
.datebox-calendar-inner {
|
||||
height: 180px;
|
||||
}
|
||||
.datebox-button {
|
||||
height: 18px;
|
||||
padding: 2px 5px;
|
||||
text-align: center;
|
||||
}
|
||||
.datebox-button a {
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
.datebox-button a:hover {
|
||||
opacity: 1.0;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
.datebox-current,
|
||||
.datebox-close {
|
||||
float: left;
|
||||
}
|
||||
.datebox-close {
|
||||
float: right;
|
||||
}
|
||||
.datebox .combo-arrow {
|
||||
background-image: url('images/datebox_arrow.png');
|
||||
background-position: center center;
|
||||
}
|
||||
.datebox-button {
|
||||
background-color: #F4F4F4;
|
||||
}
|
||||
.datebox-button a {
|
||||
color: #444;
|
||||
}
|
||||
32
WebContent/static/easyui/themes/default/dialog.css
Normal file
@@ -0,0 +1,32 @@
|
||||
.dialog-content {
|
||||
overflow: auto;
|
||||
}
|
||||
.dialog-toolbar {
|
||||
padding: 2px 5px;
|
||||
}
|
||||
.dialog-tool-separator {
|
||||
float: left;
|
||||
height: 24px;
|
||||
border-left: 1px solid #ccc;
|
||||
border-right: 1px solid #fff;
|
||||
margin: 2px 1px;
|
||||
}
|
||||
.dialog-button {
|
||||
padding: 5px;
|
||||
text-align: right;
|
||||
}
|
||||
.dialog-button .l-btn {
|
||||
margin-left: 5px;
|
||||
}
|
||||
.dialog-toolbar,
|
||||
.dialog-button {
|
||||
background: #F4F4F4;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
.dialog-toolbar {
|
||||
border-color: #95B8E7 #95B8E7 #dddddd #95B8E7;
|
||||
}
|
||||
.dialog-button {
|
||||
border-color: #dddddd #95B8E7 #95B8E7 #95B8E7;
|
||||
}
|
||||
2734
WebContent/static/easyui/themes/default/easyui.css
Normal file
19
WebContent/static/easyui/themes/default/filebox.css
Normal file
@@ -0,0 +1,19 @@
|
||||
.filebox .textbox-value {
|
||||
vertical-align: top;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -5000px;
|
||||
}
|
||||
.filebox-label {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
cursor: pointer;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 10;
|
||||
}
|
||||
.l-btn-disabled .filebox-label {
|
||||
cursor: default;
|
||||
}
|
||||
|
After Width: | Height: | Size: 184 B |
BIN
WebContent/static/easyui/themes/default/images/blank.gif
Normal file
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 173 B |
BIN
WebContent/static/easyui/themes/default/images/combo_arrow.png
Normal file
|
After Width: | Height: | Size: 117 B |
|
After Width: | Height: | Size: 220 B |
BIN
WebContent/static/easyui/themes/default/images/datebox_arrow.png
Normal file
|
After Width: | Height: | Size: 626 B |
BIN
WebContent/static/easyui/themes/default/images/layout_arrows.png
Normal file
|
After Width: | Height: | Size: 319 B |
BIN
WebContent/static/easyui/themes/default/images/linkbutton_bg.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
WebContent/static/easyui/themes/default/images/loading.gif
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
WebContent/static/easyui/themes/default/images/menu_arrows.png
Normal file
|
After Width: | Height: | Size: 160 B |
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 628 B |
BIN
WebContent/static/easyui/themes/default/images/panel_tools.png
Normal file
|
After Width: | Height: | Size: 852 B |
|
After Width: | Height: | Size: 813 B |
BIN
WebContent/static/easyui/themes/default/images/slider_handle.png
Normal file
|
After Width: | Height: | Size: 863 B |
|
After Width: | Height: | Size: 115 B |
BIN
WebContent/static/easyui/themes/default/images/tabs_icons.png
Normal file
|
After Width: | Height: | Size: 150 B |
BIN
WebContent/static/easyui/themes/default/images/tree_icons.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 921 B |
91
WebContent/static/easyui/themes/default/layout.css
Normal file
@@ -0,0 +1,91 @@
|
||||
.layout {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
z-index: 0;
|
||||
}
|
||||
.layout-panel {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
}
|
||||
.layout-panel-east,
|
||||
.layout-panel-west {
|
||||
z-index: 2;
|
||||
}
|
||||
.layout-panel-north,
|
||||
.layout-panel-south {
|
||||
z-index: 3;
|
||||
}
|
||||
.layout-expand {
|
||||
position: absolute;
|
||||
padding: 0px;
|
||||
font-size: 1px;
|
||||
cursor: pointer;
|
||||
z-index: 1;
|
||||
}
|
||||
.layout-expand .panel-header,
|
||||
.layout-expand .panel-body {
|
||||
background: transparent;
|
||||
filter: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
.layout-expand .panel-header {
|
||||
border-bottom-width: 0px;
|
||||
}
|
||||
.layout-split-proxy-h,
|
||||
.layout-split-proxy-v {
|
||||
position: absolute;
|
||||
font-size: 1px;
|
||||
display: none;
|
||||
z-index: 5;
|
||||
}
|
||||
.layout-split-proxy-h {
|
||||
width: 5px;
|
||||
cursor: e-resize;
|
||||
}
|
||||
.layout-split-proxy-v {
|
||||
height: 5px;
|
||||
cursor: n-resize;
|
||||
}
|
||||
.layout-mask {
|
||||
position: absolute;
|
||||
background: #fafafa;
|
||||
filter: alpha(opacity=10);
|
||||
opacity: 0.10;
|
||||
z-index: 4;
|
||||
}
|
||||
.layout-button-up {
|
||||
background: url('images/layout_arrows.png') no-repeat -16px -16px;
|
||||
}
|
||||
.layout-button-down {
|
||||
background: url('images/layout_arrows.png') no-repeat -16px 0;
|
||||
}
|
||||
.layout-button-left {
|
||||
background: url('images/layout_arrows.png') no-repeat 0 0;
|
||||
}
|
||||
.layout-button-right {
|
||||
background: url('images/layout_arrows.png') no-repeat 0 -16px;
|
||||
}
|
||||
.layout-split-proxy-h,
|
||||
.layout-split-proxy-v {
|
||||
background-color: #aac5e7;
|
||||
}
|
||||
.layout-split-north {
|
||||
border-bottom: 5px solid #E6EEF8;
|
||||
}
|
||||
.layout-split-south {
|
||||
border-top: 5px solid #E6EEF8;
|
||||
}
|
||||
.layout-split-east {
|
||||
border-left: 5px solid #E6EEF8;
|
||||
}
|
||||
.layout-split-west {
|
||||
border-right: 5px solid #E6EEF8;
|
||||
}
|
||||
.layout-expand {
|
||||
background-color: #E0ECFF;
|
||||
}
|
||||
.layout-expand-over {
|
||||
background-color: #E0ECFF;
|
||||
}
|
||||
203
WebContent/static/easyui/themes/default/linkbutton.css
Normal file
@@ -0,0 +1,203 @@
|
||||
.l-btn {
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
line-height: normal;
|
||||
}
|
||||
.l-btn-plain {
|
||||
border-width: 0;
|
||||
padding: 1px;
|
||||
}
|
||||
.l-btn-left {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
vertical-align: top;
|
||||
}
|
||||
.l-btn-text {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
width: auto;
|
||||
line-height: 24px;
|
||||
font-size: 12px;
|
||||
padding: 0;
|
||||
margin: 0 4px;
|
||||
}
|
||||
.l-btn-icon {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
margin-top: -8px;
|
||||
font-size: 1px;
|
||||
}
|
||||
.l-btn span span .l-btn-empty {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
width: 16px;
|
||||
height: 24px;
|
||||
font-size: 1px;
|
||||
vertical-align: top;
|
||||
}
|
||||
.l-btn span .l-btn-icon-left {
|
||||
padding: 0 0 0 20px;
|
||||
background-position: left center;
|
||||
}
|
||||
.l-btn span .l-btn-icon-right {
|
||||
padding: 0 20px 0 0;
|
||||
background-position: right center;
|
||||
}
|
||||
.l-btn-icon-left .l-btn-text {
|
||||
margin: 0 4px 0 24px;
|
||||
}
|
||||
.l-btn-icon-left .l-btn-icon {
|
||||
left: 4px;
|
||||
}
|
||||
.l-btn-icon-right .l-btn-text {
|
||||
margin: 0 24px 0 4px;
|
||||
}
|
||||
.l-btn-icon-right .l-btn-icon {
|
||||
right: 4px;
|
||||
}
|
||||
.l-btn-icon-top .l-btn-text {
|
||||
margin: 20px 4px 0 4px;
|
||||
}
|
||||
.l-btn-icon-top .l-btn-icon {
|
||||
top: 4px;
|
||||
left: 50%;
|
||||
margin: 0 0 0 -8px;
|
||||
}
|
||||
.l-btn-icon-bottom .l-btn-text {
|
||||
margin: 0 4px 20px 4px;
|
||||
}
|
||||
.l-btn-icon-bottom .l-btn-icon {
|
||||
top: auto;
|
||||
bottom: 4px;
|
||||
left: 50%;
|
||||
margin: 0 0 0 -8px;
|
||||
}
|
||||
.l-btn-left .l-btn-empty {
|
||||
margin: 0 4px;
|
||||
width: 16px;
|
||||
}
|
||||
.l-btn-plain:hover {
|
||||
padding: 0;
|
||||
}
|
||||
.l-btn-focus {
|
||||
outline: #0000FF dotted thin;
|
||||
}
|
||||
.l-btn-large .l-btn-text {
|
||||
line-height: 40px;
|
||||
}
|
||||
.l-btn-large .l-btn-icon {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
margin-top: -16px;
|
||||
}
|
||||
.l-btn-large .l-btn-icon-left .l-btn-text {
|
||||
margin-left: 40px;
|
||||
}
|
||||
.l-btn-large .l-btn-icon-right .l-btn-text {
|
||||
margin-right: 40px;
|
||||
}
|
||||
.l-btn-large .l-btn-icon-top .l-btn-text {
|
||||
margin-top: 36px;
|
||||
line-height: 24px;
|
||||
min-width: 32px;
|
||||
}
|
||||
.l-btn-large .l-btn-icon-top .l-btn-icon {
|
||||
margin: 0 0 0 -16px;
|
||||
}
|
||||
.l-btn-large .l-btn-icon-bottom .l-btn-text {
|
||||
margin-bottom: 36px;
|
||||
line-height: 24px;
|
||||
min-width: 32px;
|
||||
}
|
||||
.l-btn-large .l-btn-icon-bottom .l-btn-icon {
|
||||
margin: 0 0 0 -16px;
|
||||
}
|
||||
.l-btn-large .l-btn-left .l-btn-empty {
|
||||
margin: 0 4px;
|
||||
width: 32px;
|
||||
}
|
||||
.l-btn {
|
||||
color: #444;
|
||||
background: #fafafa;
|
||||
background-repeat: repeat-x;
|
||||
border: 1px solid #bbb;
|
||||
background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%);
|
||||
background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%);
|
||||
background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%);
|
||||
background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0);
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.l-btn:hover {
|
||||
background: #eaf2ff;
|
||||
color: #000000;
|
||||
border: 1px solid #b7d2ff;
|
||||
filter: none;
|
||||
}
|
||||
.l-btn-plain {
|
||||
background: transparent;
|
||||
border-width: 0;
|
||||
filter: none;
|
||||
}
|
||||
.l-btn-outline {
|
||||
border-width: 1px;
|
||||
border-color: #b7d2ff;
|
||||
padding: 0;
|
||||
}
|
||||
.l-btn-plain:hover {
|
||||
background: #eaf2ff;
|
||||
color: #000000;
|
||||
border: 1px solid #b7d2ff;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.l-btn-disabled,
|
||||
.l-btn-disabled:hover {
|
||||
opacity: 0.5;
|
||||
cursor: default;
|
||||
background: #fafafa;
|
||||
color: #444;
|
||||
background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%);
|
||||
background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%);
|
||||
background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%);
|
||||
background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0);
|
||||
}
|
||||
.l-btn-disabled .l-btn-text,
|
||||
.l-btn-disabled .l-btn-icon {
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
.l-btn-plain-disabled,
|
||||
.l-btn-plain-disabled:hover {
|
||||
background: transparent;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
.l-btn-selected,
|
||||
.l-btn-selected:hover {
|
||||
background: #ddd;
|
||||
filter: none;
|
||||
}
|
||||
.l-btn-plain-selected,
|
||||
.l-btn-plain-selected:hover {
|
||||
background: #ddd;
|
||||
}
|
||||
119
WebContent/static/easyui/themes/default/menu.css
Normal file
@@ -0,0 +1,119 @@
|
||||
.menu {
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
padding: 2px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
overflow: hidden;
|
||||
}
|
||||
.menu-inline {
|
||||
position: relative;
|
||||
}
|
||||
.menu-item {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
.menu-text {
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
float: left;
|
||||
padding-left: 28px;
|
||||
}
|
||||
.menu-icon {
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
left: 2px;
|
||||
top: 50%;
|
||||
margin-top: -8px;
|
||||
}
|
||||
.menu-rightarrow {
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
margin-top: -8px;
|
||||
}
|
||||
.menu-line {
|
||||
position: absolute;
|
||||
left: 26px;
|
||||
top: 0;
|
||||
height: 2000px;
|
||||
font-size: 1px;
|
||||
}
|
||||
.menu-sep {
|
||||
margin: 3px 0px 3px 25px;
|
||||
font-size: 1px;
|
||||
}
|
||||
.menu-noline .menu-line {
|
||||
display: none;
|
||||
}
|
||||
.menu-noline .menu-sep {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
.menu-active {
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.menu-item-disabled {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
cursor: default;
|
||||
}
|
||||
.menu-text,
|
||||
.menu-text span {
|
||||
font-size: 12px;
|
||||
}
|
||||
.menu-shadow {
|
||||
position: absolute;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
background: #ccc;
|
||||
-moz-box-shadow: 2px 2px 3px #cccccc;
|
||||
-webkit-box-shadow: 2px 2px 3px #cccccc;
|
||||
box-shadow: 2px 2px 3px #cccccc;
|
||||
filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
|
||||
}
|
||||
.menu-rightarrow {
|
||||
background: url('images/menu_arrows.png') no-repeat -32px center;
|
||||
}
|
||||
.menu-line {
|
||||
border-left: 1px solid #ccc;
|
||||
border-right: 1px solid #fff;
|
||||
}
|
||||
.menu-sep {
|
||||
border-top: 1px solid #ccc;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
.menu {
|
||||
background-color: #fafafa;
|
||||
border-color: #ddd;
|
||||
color: #444;
|
||||
}
|
||||
.menu-content {
|
||||
background: #ffffff;
|
||||
}
|
||||
.menu-item {
|
||||
border-color: transparent;
|
||||
_border-color: #fafafa;
|
||||
}
|
||||
.menu-active {
|
||||
border-color: #b7d2ff;
|
||||
color: #000000;
|
||||
background: #eaf2ff;
|
||||
}
|
||||
.menu-active-disabled {
|
||||
border-color: transparent;
|
||||
background: transparent;
|
||||
color: #444;
|
||||
}
|
||||
94
WebContent/static/easyui/themes/default/menubutton.css
Normal file
@@ -0,0 +1,94 @@
|
||||
.m-btn-downarrow,
|
||||
.s-btn-downarrow {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
font-size: 1px;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
margin-top: -8px;
|
||||
}
|
||||
.m-btn-active,
|
||||
.s-btn-active {
|
||||
background: #eaf2ff;
|
||||
color: #000000;
|
||||
border: 1px solid #b7d2ff;
|
||||
filter: none;
|
||||
}
|
||||
.m-btn-plain-active,
|
||||
.s-btn-plain-active {
|
||||
background: transparent;
|
||||
padding: 0;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.m-btn .l-btn-left .l-btn-text {
|
||||
margin-right: 20px;
|
||||
}
|
||||
.m-btn .l-btn-icon-right .l-btn-text {
|
||||
margin-right: 40px;
|
||||
}
|
||||
.m-btn .l-btn-icon-right .l-btn-icon {
|
||||
right: 20px;
|
||||
}
|
||||
.m-btn .l-btn-icon-top .l-btn-text {
|
||||
margin-right: 4px;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.m-btn .l-btn-icon-bottom .l-btn-text {
|
||||
margin-right: 4px;
|
||||
margin-bottom: 34px;
|
||||
}
|
||||
.m-btn .l-btn-icon-bottom .l-btn-icon {
|
||||
top: auto;
|
||||
bottom: 20px;
|
||||
}
|
||||
.m-btn .l-btn-icon-top .m-btn-downarrow,
|
||||
.m-btn .l-btn-icon-bottom .m-btn-downarrow {
|
||||
top: auto;
|
||||
bottom: 0px;
|
||||
left: 50%;
|
||||
margin-left: -8px;
|
||||
}
|
||||
.m-btn-line {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
font-size: 1px;
|
||||
display: none;
|
||||
}
|
||||
.m-btn .l-btn-left .m-btn-line {
|
||||
right: 0;
|
||||
width: 16px;
|
||||
height: 500px;
|
||||
border-style: solid;
|
||||
border-color: #aac5e7;
|
||||
border-width: 0 0 0 1px;
|
||||
}
|
||||
.m-btn .l-btn-icon-top .m-btn-line,
|
||||
.m-btn .l-btn-icon-bottom .m-btn-line {
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 500px;
|
||||
height: 16px;
|
||||
border-width: 1px 0 0 0;
|
||||
}
|
||||
.m-btn-large .l-btn-icon-right .l-btn-text {
|
||||
margin-right: 56px;
|
||||
}
|
||||
.m-btn-large .l-btn-icon-bottom .l-btn-text {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
.m-btn-downarrow,
|
||||
.s-btn-downarrow {
|
||||
background: url('images/menu_arrows.png') no-repeat 0 center;
|
||||
}
|
||||
.m-btn-plain-active,
|
||||
.s-btn-plain-active {
|
||||
border-color: #b7d2ff;
|
||||
background-color: #eaf2ff;
|
||||
color: #000000;
|
||||
}
|
||||
40
WebContent/static/easyui/themes/default/messager.css
Normal file
@@ -0,0 +1,40 @@
|
||||
.messager-body {
|
||||
padding: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.messager-button {
|
||||
text-align: center;
|
||||
padding-top: 10px;
|
||||
}
|
||||
.messager-button .l-btn {
|
||||
width: 70px;
|
||||
}
|
||||
.messager-icon {
|
||||
float: left;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin: 0 10px 10px 0;
|
||||
}
|
||||
.messager-error {
|
||||
background: url('images/messager_icons.png') no-repeat scroll -64px 0;
|
||||
}
|
||||
.messager-info {
|
||||
background: url('images/messager_icons.png') no-repeat scroll 0 0;
|
||||
}
|
||||
.messager-question {
|
||||
background: url('images/messager_icons.png') no-repeat scroll -32px 0;
|
||||
}
|
||||
.messager-warning {
|
||||
background: url('images/messager_icons.png') no-repeat scroll -96px 0;
|
||||
}
|
||||
.messager-progress {
|
||||
padding: 10px;
|
||||
}
|
||||
.messager-p-msg {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.messager-body .messager-input {
|
||||
width: 100%;
|
||||
padding: 1px 0;
|
||||
border: 1px solid #95B8E7;
|
||||
}
|
||||
9
WebContent/static/easyui/themes/default/numberbox.css
Normal file
@@ -0,0 +1,9 @@
|
||||
.numberbox {
|
||||
border: 1px solid #95B8E7;
|
||||
margin: 0;
|
||||
padding: 0 2px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.textbox {
|
||||
padding: 0;
|
||||
}
|
||||
71
WebContent/static/easyui/themes/default/pagination.css
Normal file
@@ -0,0 +1,71 @@
|
||||
.pagination {
|
||||
zoom: 1;
|
||||
}
|
||||
.pagination table {
|
||||
float: left;
|
||||
height: 30px;
|
||||
}
|
||||
.pagination td {
|
||||
border: 0;
|
||||
}
|
||||
.pagination-btn-separator {
|
||||
float: left;
|
||||
height: 24px;
|
||||
border-left: 1px solid #ccc;
|
||||
border-right: 1px solid #fff;
|
||||
margin: 3px 1px;
|
||||
}
|
||||
.pagination .pagination-num {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
margin: 0 2px;
|
||||
padding: 2px;
|
||||
width: 2em;
|
||||
height: auto;
|
||||
}
|
||||
.pagination-page-list {
|
||||
margin: 0px 6px;
|
||||
padding: 1px 2px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
.pagination-info {
|
||||
float: right;
|
||||
margin: 0 6px 0 0;
|
||||
padding: 0;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.pagination span {
|
||||
font-size: 12px;
|
||||
}
|
||||
.pagination-link .l-btn-text {
|
||||
width: 24px;
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
}
|
||||
.pagination-first {
|
||||
background: url('images/pagination_icons.png') no-repeat 0 center;
|
||||
}
|
||||
.pagination-prev {
|
||||
background: url('images/pagination_icons.png') no-repeat -16px center;
|
||||
}
|
||||
.pagination-next {
|
||||
background: url('images/pagination_icons.png') no-repeat -32px center;
|
||||
}
|
||||
.pagination-last {
|
||||
background: url('images/pagination_icons.png') no-repeat -48px center;
|
||||
}
|
||||
.pagination-load {
|
||||
background: url('images/pagination_icons.png') no-repeat -64px center;
|
||||
}
|
||||
.pagination-loading {
|
||||
background: url('images/loading.gif') no-repeat center center;
|
||||
}
|
||||
.pagination-page-list,
|
||||
.pagination .pagination-num {
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
142
WebContent/static/easyui/themes/default/panel.css
Normal file
@@ -0,0 +1,142 @@
|
||||
.panel {
|
||||
overflow: hidden;
|
||||
text-align: left;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
-moz-border-radius: 0 0 0 0;
|
||||
-webkit-border-radius: 0 0 0 0;
|
||||
border-radius: 0 0 0 0;
|
||||
}
|
||||
.panel-header,
|
||||
.panel-body {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
.panel-header {
|
||||
padding: 5px;
|
||||
position: relative;
|
||||
}
|
||||
.panel-title {
|
||||
background: url('images/blank.gif') no-repeat;
|
||||
}
|
||||
.panel-header-noborder {
|
||||
border-width: 0 0 1px 0;
|
||||
}
|
||||
.panel-body {
|
||||
overflow: auto;
|
||||
border-top-width: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.panel-body-noheader {
|
||||
border-top-width: 1px;
|
||||
}
|
||||
.panel-body-noborder {
|
||||
border-width: 0px;
|
||||
}
|
||||
.panel-body-nobottom {
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
.panel-with-icon {
|
||||
padding-left: 18px;
|
||||
}
|
||||
.panel-icon,
|
||||
.panel-tool {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
margin-top: -8px;
|
||||
height: 16px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.panel-icon {
|
||||
left: 5px;
|
||||
width: 16px;
|
||||
}
|
||||
.panel-tool {
|
||||
right: 5px;
|
||||
width: auto;
|
||||
}
|
||||
.panel-tool a {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
margin: 0 0 0 2px;
|
||||
vertical-align: top;
|
||||
}
|
||||
.panel-tool a:hover {
|
||||
opacity: 1;
|
||||
filter: alpha(opacity=100);
|
||||
background-color: #eaf2ff;
|
||||
-moz-border-radius: 3px 3px 3px 3px;
|
||||
-webkit-border-radius: 3px 3px 3px 3px;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
}
|
||||
.panel-loading {
|
||||
padding: 11px 0px 10px 30px;
|
||||
}
|
||||
.panel-noscroll {
|
||||
overflow: hidden;
|
||||
}
|
||||
.panel-fit,
|
||||
.panel-fit body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.panel-loading {
|
||||
background: url('images/loading.gif') no-repeat 10px 10px;
|
||||
}
|
||||
.panel-tool-close {
|
||||
background: url('images/panel_tools.png') no-repeat -16px 0px;
|
||||
}
|
||||
.panel-tool-min {
|
||||
background: url('images/panel_tools.png') no-repeat 0px 0px;
|
||||
}
|
||||
.panel-tool-max {
|
||||
background: url('images/panel_tools.png') no-repeat 0px -16px;
|
||||
}
|
||||
.panel-tool-restore {
|
||||
background: url('images/panel_tools.png') no-repeat -16px -16px;
|
||||
}
|
||||
.panel-tool-collapse {
|
||||
background: url('images/panel_tools.png') no-repeat -32px 0;
|
||||
}
|
||||
.panel-tool-expand {
|
||||
background: url('images/panel_tools.png') no-repeat -32px -16px;
|
||||
}
|
||||
.panel-header,
|
||||
.panel-body {
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
.panel-header {
|
||||
background-color: #E0ECFF;
|
||||
background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
|
||||
background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
|
||||
background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
|
||||
background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0);
|
||||
}
|
||||
.panel-body {
|
||||
background-color: #ffffff;
|
||||
color: #000000;
|
||||
font-size: 12px;
|
||||
}
|
||||
.panel-title {
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
color: #0E2D5F;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
}
|
||||
.panel-footer {
|
||||
border: 1px solid #95B8E7;
|
||||
overflow: hidden;
|
||||
background: #F4F4F4;
|
||||
}
|
||||
.panel-footer-noborder {
|
||||
border-width: 1px 0 0 0;
|
||||
}
|
||||
32
WebContent/static/easyui/themes/default/progressbar.css
Normal file
@@ -0,0 +1,32 @@
|
||||
.progressbar {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
.progressbar-text {
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
}
|
||||
.progressbar-value {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
width: 0;
|
||||
-moz-border-radius: 5px 0 0 5px;
|
||||
-webkit-border-radius: 5px 0 0 5px;
|
||||
border-radius: 5px 0 0 5px;
|
||||
}
|
||||
.progressbar {
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
.progressbar-text {
|
||||
color: #000000;
|
||||
font-size: 12px;
|
||||
}
|
||||
.progressbar-value .progressbar-text {
|
||||
background-color: #ffe48d;
|
||||
color: #000000;
|
||||
}
|
||||
28
WebContent/static/easyui/themes/default/propertygrid.css
Normal file
@@ -0,0 +1,28 @@
|
||||
.propertygrid .datagrid-view1 .datagrid-body td {
|
||||
padding-bottom: 1px;
|
||||
border-width: 0 1px 0 0;
|
||||
}
|
||||
.propertygrid .datagrid-group {
|
||||
height: 21px;
|
||||
overflow: hidden;
|
||||
border-width: 0 0 1px 0;
|
||||
border-style: solid;
|
||||
}
|
||||
.propertygrid .datagrid-group span {
|
||||
font-weight: bold;
|
||||
}
|
||||
.propertygrid .datagrid-view1 .datagrid-body td {
|
||||
border-color: #dddddd;
|
||||
}
|
||||
.propertygrid .datagrid-view1 .datagrid-group {
|
||||
border-color: #E0ECFF;
|
||||
}
|
||||
.propertygrid .datagrid-view2 .datagrid-group {
|
||||
border-color: #dddddd;
|
||||
}
|
||||
.propertygrid .datagrid-group,
|
||||
.propertygrid .datagrid-view1 .datagrid-body,
|
||||
.propertygrid .datagrid-view1 .datagrid-row-over,
|
||||
.propertygrid .datagrid-view1 .datagrid-row-selected {
|
||||
background: #E0ECFF;
|
||||
}
|
||||
90
WebContent/static/easyui/themes/default/searchbox.css
Normal file
@@ -0,0 +1,90 @@
|
||||
.searchbox {
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
overflow: hidden;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.searchbox .searchbox-text {
|
||||
font-size: 12px;
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0 2px;
|
||||
vertical-align: top;
|
||||
}
|
||||
.searchbox .searchbox-prompt {
|
||||
font-size: 12px;
|
||||
color: #ccc;
|
||||
}
|
||||
.searchbox-button {
|
||||
width: 18px;
|
||||
height: 20px;
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
cursor: pointer;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
.searchbox-button-hover {
|
||||
opacity: 1.0;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
.searchbox .l-btn-plain {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
vertical-align: top;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
-moz-border-radius: 0 0 0 0;
|
||||
-webkit-border-radius: 0 0 0 0;
|
||||
border-radius: 0 0 0 0;
|
||||
}
|
||||
.searchbox .l-btn-plain:hover {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
opacity: 1.0;
|
||||
filter: alpha(opacity=100);
|
||||
-moz-border-radius: 0 0 0 0;
|
||||
-webkit-border-radius: 0 0 0 0;
|
||||
border-radius: 0 0 0 0;
|
||||
}
|
||||
.searchbox a.m-btn-plain-active {
|
||||
-moz-border-radius: 0 0 0 0;
|
||||
-webkit-border-radius: 0 0 0 0;
|
||||
border-radius: 0 0 0 0;
|
||||
}
|
||||
.searchbox .m-btn-active {
|
||||
border-width: 0 1px 0 0;
|
||||
-moz-border-radius: 0 0 0 0;
|
||||
-webkit-border-radius: 0 0 0 0;
|
||||
border-radius: 0 0 0 0;
|
||||
}
|
||||
.searchbox .textbox-button-right {
|
||||
border-width: 0 0 0 1px;
|
||||
}
|
||||
.searchbox .textbox-button-left {
|
||||
border-width: 0 1px 0 0;
|
||||
}
|
||||
.searchbox-button {
|
||||
background: url('images/searchbox_button.png') no-repeat center center;
|
||||
}
|
||||
.searchbox {
|
||||
border-color: #95B8E7;
|
||||
background-color: #fff;
|
||||
}
|
||||
.searchbox .l-btn-plain {
|
||||
background: #E0ECFF;
|
||||
}
|
||||
.searchbox .l-btn-plain-disabled,
|
||||
.searchbox .l-btn-plain-disabled:hover {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
.textbox-invalid {
|
||||
border-color: #ffa8a8;
|
||||
background-color: #fff3f3;
|
||||
}
|
||||
101
WebContent/static/easyui/themes/default/slider.css
Normal file
@@ -0,0 +1,101 @@
|
||||
.slider-disabled {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
.slider-h {
|
||||
height: 22px;
|
||||
}
|
||||
.slider-v {
|
||||
width: 22px;
|
||||
}
|
||||
.slider-inner {
|
||||
position: relative;
|
||||
height: 6px;
|
||||
top: 7px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.slider-handle {
|
||||
position: absolute;
|
||||
display: block;
|
||||
outline: none;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
top: 50%;
|
||||
margin-top: -10px;
|
||||
margin-left: -10px;
|
||||
}
|
||||
.slider-tip {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
line-height: 12px;
|
||||
font-size: 12px;
|
||||
white-space: nowrap;
|
||||
top: -22px;
|
||||
}
|
||||
.slider-rule {
|
||||
position: relative;
|
||||
top: 15px;
|
||||
}
|
||||
.slider-rule span {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
font-size: 0;
|
||||
height: 5px;
|
||||
border-width: 0 0 0 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
.slider-rulelabel {
|
||||
position: relative;
|
||||
top: 20px;
|
||||
}
|
||||
.slider-rulelabel span {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
}
|
||||
.slider-v .slider-inner {
|
||||
width: 6px;
|
||||
left: 7px;
|
||||
top: 0;
|
||||
float: left;
|
||||
}
|
||||
.slider-v .slider-handle {
|
||||
left: 50%;
|
||||
margin-top: -10px;
|
||||
}
|
||||
.slider-v .slider-tip {
|
||||
left: -10px;
|
||||
margin-top: -6px;
|
||||
}
|
||||
.slider-v .slider-rule {
|
||||
float: left;
|
||||
top: 0;
|
||||
left: 16px;
|
||||
}
|
||||
.slider-v .slider-rule span {
|
||||
width: 5px;
|
||||
height: 'auto';
|
||||
border-left: 0;
|
||||
border-width: 1px 0 0 0;
|
||||
border-style: solid;
|
||||
}
|
||||
.slider-v .slider-rulelabel {
|
||||
float: left;
|
||||
top: 0;
|
||||
left: 23px;
|
||||
}
|
||||
.slider-handle {
|
||||
background: url('images/slider_handle.png') no-repeat;
|
||||
}
|
||||
.slider-inner {
|
||||
border-color: #95B8E7;
|
||||
background: #E0ECFF;
|
||||
}
|
||||
.slider-rule span {
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
.slider-rulelabel span {
|
||||
color: #000000;
|
||||
}
|
||||
72
WebContent/static/easyui/themes/default/spinner.css
Normal file
@@ -0,0 +1,72 @@
|
||||
.spinner {
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
overflow: hidden;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.spinner .spinner-text {
|
||||
font-size: 12px;
|
||||
border: 0px;
|
||||
margin: 0;
|
||||
padding: 0 2px;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
.spinner-arrow {
|
||||
background-color: #E0ECFF;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
vertical-align: top;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
opacity: 1.0;
|
||||
filter: alpha(opacity=100);
|
||||
width: 18px;
|
||||
}
|
||||
.spinner-arrow-up,
|
||||
.spinner-arrow-down {
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
display: block;
|
||||
font-size: 1px;
|
||||
width: 18px;
|
||||
height: 10px;
|
||||
width: 100%;
|
||||
height: 50%;
|
||||
color: #444;
|
||||
outline-style: none;
|
||||
}
|
||||
.spinner-arrow-hover {
|
||||
background-color: #eaf2ff;
|
||||
opacity: 1.0;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
.spinner-arrow-up:hover,
|
||||
.spinner-arrow-down:hover {
|
||||
opacity: 1.0;
|
||||
filter: alpha(opacity=100);
|
||||
background-color: #eaf2ff;
|
||||
}
|
||||
.textbox-icon-disabled .spinner-arrow-up:hover,
|
||||
.textbox-icon-disabled .spinner-arrow-down:hover {
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
background-color: #E0ECFF;
|
||||
cursor: default;
|
||||
}
|
||||
.spinner .textbox-icon-disabled {
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
.spinner-arrow-up {
|
||||
background: url('images/spinner_arrows.png') no-repeat 1px center;
|
||||
}
|
||||
.spinner-arrow-down {
|
||||
background: url('images/spinner_arrows.png') no-repeat -15px center;
|
||||
}
|
||||
.spinner {
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
12
WebContent/static/easyui/themes/default/splitbutton.css
Normal file
@@ -0,0 +1,12 @@
|
||||
.s-btn:hover .m-btn-line,
|
||||
.s-btn-active .m-btn-line,
|
||||
.s-btn-plain-active .m-btn-line {
|
||||
display: inline-block;
|
||||
}
|
||||
.l-btn:hover .s-btn-downarrow,
|
||||
.s-btn-active .s-btn-downarrow,
|
||||
.s-btn-plain-active .s-btn-downarrow {
|
||||
border-style: solid;
|
||||
border-color: #aac5e7;
|
||||
border-width: 0 0 0 1px;
|
||||
}
|
||||
413
WebContent/static/easyui/themes/default/tabs.css
Normal file
@@ -0,0 +1,413 @@
|
||||
.tabs-container {
|
||||
overflow: hidden;
|
||||
}
|
||||
.tabs-header {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-bottom-width: 0;
|
||||
position: relative;
|
||||
padding: 0;
|
||||
padding-top: 2px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.tabs-scroller-left,
|
||||
.tabs-scroller-right {
|
||||
position: absolute;
|
||||
top: auto;
|
||||
bottom: 0;
|
||||
width: 18px;
|
||||
font-size: 1px;
|
||||
display: none;
|
||||
cursor: pointer;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
.tabs-scroller-left {
|
||||
left: 0;
|
||||
}
|
||||
.tabs-scroller-right {
|
||||
right: 0;
|
||||
}
|
||||
.tabs-tool {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
padding: 1px;
|
||||
overflow: hidden;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
.tabs-header-plain .tabs-tool {
|
||||
padding: 0 1px;
|
||||
}
|
||||
.tabs-wrap {
|
||||
position: relative;
|
||||
left: 0;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.tabs-scrolling {
|
||||
margin-left: 18px;
|
||||
margin-right: 18px;
|
||||
}
|
||||
.tabs-disabled {
|
||||
opacity: 0.3;
|
||||
filter: alpha(opacity=30);
|
||||
}
|
||||
.tabs {
|
||||
list-style-type: none;
|
||||
height: 26px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
padding-left: 4px;
|
||||
width: 50000px;
|
||||
border-style: solid;
|
||||
border-width: 0 0 1px 0;
|
||||
}
|
||||
.tabs li {
|
||||
float: left;
|
||||
display: inline-block;
|
||||
margin: 0 4px -1px 0;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
border: 0;
|
||||
}
|
||||
.tabs li a.tabs-inner {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
margin: 0;
|
||||
padding: 0 10px;
|
||||
height: 25px;
|
||||
line-height: 25px;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
.tabs li.tabs-selected a.tabs-inner {
|
||||
font-weight: bold;
|
||||
outline: none;
|
||||
}
|
||||
.tabs li.tabs-selected a:hover.tabs-inner {
|
||||
cursor: default;
|
||||
pointer: default;
|
||||
}
|
||||
.tabs li a.tabs-close,
|
||||
.tabs-p-tool {
|
||||
position: absolute;
|
||||
font-size: 1px;
|
||||
display: block;
|
||||
height: 12px;
|
||||
padding: 0;
|
||||
top: 50%;
|
||||
margin-top: -6px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.tabs li a.tabs-close {
|
||||
width: 12px;
|
||||
right: 5px;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
.tabs-p-tool {
|
||||
right: 16px;
|
||||
}
|
||||
.tabs-p-tool a {
|
||||
display: inline-block;
|
||||
font-size: 1px;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
margin: 0;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
.tabs li a:hover.tabs-close,
|
||||
.tabs-p-tool a:hover {
|
||||
opacity: 1;
|
||||
filter: alpha(opacity=100);
|
||||
cursor: hand;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tabs-with-icon {
|
||||
padding-left: 18px;
|
||||
}
|
||||
.tabs-icon {
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
left: 10px;
|
||||
top: 50%;
|
||||
margin-top: -8px;
|
||||
}
|
||||
.tabs-title {
|
||||
font-size: 12px;
|
||||
}
|
||||
.tabs-closable {
|
||||
padding-right: 8px;
|
||||
}
|
||||
.tabs-panels {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-top-width: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.tabs-header-bottom {
|
||||
border-width: 0 1px 1px 1px;
|
||||
padding: 0 0 2px 0;
|
||||
}
|
||||
.tabs-header-bottom .tabs {
|
||||
border-width: 1px 0 0 0;
|
||||
}
|
||||
.tabs-header-bottom .tabs li {
|
||||
margin: -1px 4px 0 0;
|
||||
}
|
||||
.tabs-header-bottom .tabs li a.tabs-inner {
|
||||
-moz-border-radius: 0 0 5px 5px;
|
||||
-webkit-border-radius: 0 0 5px 5px;
|
||||
border-radius: 0 0 5px 5px;
|
||||
}
|
||||
.tabs-header-bottom .tabs-tool {
|
||||
top: 0;
|
||||
}
|
||||
.tabs-header-bottom .tabs-scroller-left,
|
||||
.tabs-header-bottom .tabs-scroller-right {
|
||||
top: 0;
|
||||
bottom: auto;
|
||||
}
|
||||
.tabs-panels-top {
|
||||
border-width: 1px 1px 0 1px;
|
||||
}
|
||||
.tabs-header-left {
|
||||
float: left;
|
||||
border-width: 1px 0 1px 1px;
|
||||
padding: 0;
|
||||
}
|
||||
.tabs-header-right {
|
||||
float: right;
|
||||
border-width: 1px 1px 1px 0;
|
||||
padding: 0;
|
||||
}
|
||||
.tabs-header-left .tabs-wrap,
|
||||
.tabs-header-right .tabs-wrap {
|
||||
height: 100%;
|
||||
}
|
||||
.tabs-header-left .tabs {
|
||||
height: 100%;
|
||||
padding: 4px 0 0 2px;
|
||||
border-width: 0 1px 0 0;
|
||||
}
|
||||
.tabs-header-right .tabs {
|
||||
height: 100%;
|
||||
padding: 4px 2px 0 0;
|
||||
border-width: 0 0 0 1px;
|
||||
}
|
||||
.tabs-header-left .tabs li,
|
||||
.tabs-header-right .tabs li {
|
||||
display: block;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
.tabs-header-left .tabs li {
|
||||
left: auto;
|
||||
right: 0;
|
||||
margin: 0 -1px 4px 0;
|
||||
float: right;
|
||||
}
|
||||
.tabs-header-right .tabs li {
|
||||
left: 0;
|
||||
right: auto;
|
||||
margin: 0 0 4px -1px;
|
||||
float: left;
|
||||
}
|
||||
.tabs-justified li a.tabs-inner {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
.tabs-header-left .tabs li a.tabs-inner {
|
||||
display: block;
|
||||
text-align: left;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
-moz-border-radius: 5px 0 0 5px;
|
||||
-webkit-border-radius: 5px 0 0 5px;
|
||||
border-radius: 5px 0 0 5px;
|
||||
}
|
||||
.tabs-header-right .tabs li a.tabs-inner {
|
||||
display: block;
|
||||
text-align: left;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
-moz-border-radius: 0 5px 5px 0;
|
||||
-webkit-border-radius: 0 5px 5px 0;
|
||||
border-radius: 0 5px 5px 0;
|
||||
}
|
||||
.tabs-panels-right {
|
||||
float: right;
|
||||
border-width: 1px 1px 1px 0;
|
||||
}
|
||||
.tabs-panels-left {
|
||||
float: left;
|
||||
border-width: 1px 0 1px 1px;
|
||||
}
|
||||
.tabs-header-noborder,
|
||||
.tabs-panels-noborder {
|
||||
border: 0px;
|
||||
}
|
||||
.tabs-header-plain {
|
||||
border: 0px;
|
||||
background: transparent;
|
||||
}
|
||||
.tabs-pill {
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
.tabs-header-bottom .tabs-pill {
|
||||
padding-top: 3px;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.tabs-header-left .tabs-pill {
|
||||
padding-right: 3px;
|
||||
}
|
||||
.tabs-header-right .tabs-pill {
|
||||
padding-left: 3px;
|
||||
}
|
||||
.tabs-header .tabs-pill li a.tabs-inner {
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.tabs-header-narrow,
|
||||
.tabs-header-narrow .tabs-narrow {
|
||||
padding: 0;
|
||||
}
|
||||
.tabs-narrow li,
|
||||
.tabs-header-bottom .tabs-narrow li {
|
||||
margin-left: 0;
|
||||
margin-right: -1px;
|
||||
}
|
||||
.tabs-narrow li.tabs-last,
|
||||
.tabs-header-bottom .tabs-narrow li.tabs-last {
|
||||
margin-right: 0;
|
||||
}
|
||||
.tabs-header-left .tabs-narrow,
|
||||
.tabs-header-right .tabs-narrow {
|
||||
padding-top: 0;
|
||||
}
|
||||
.tabs-header-left .tabs-narrow li {
|
||||
margin-bottom: -1px;
|
||||
margin-right: -1px;
|
||||
}
|
||||
.tabs-header-left .tabs-narrow li.tabs-last,
|
||||
.tabs-header-right .tabs-narrow li.tabs-last {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.tabs-header-right .tabs-narrow li {
|
||||
margin-bottom: -1px;
|
||||
margin-left: -1px;
|
||||
}
|
||||
.tabs-scroller-left {
|
||||
background: #E0ECFF url('images/tabs_icons.png') no-repeat 1px center;
|
||||
}
|
||||
.tabs-scroller-right {
|
||||
background: #E0ECFF url('images/tabs_icons.png') no-repeat -15px center;
|
||||
}
|
||||
.tabs li a.tabs-close {
|
||||
background: url('images/tabs_icons.png') no-repeat -34px center;
|
||||
}
|
||||
.tabs li a.tabs-inner:hover {
|
||||
background: #eaf2ff;
|
||||
color: #000000;
|
||||
filter: none;
|
||||
}
|
||||
.tabs li.tabs-selected a.tabs-inner {
|
||||
background-color: #ffffff;
|
||||
color: #0E2D5F;
|
||||
background: -webkit-linear-gradient(top,#EFF5FF 0,#ffffff 100%);
|
||||
background: -moz-linear-gradient(top,#EFF5FF 0,#ffffff 100%);
|
||||
background: -o-linear-gradient(top,#EFF5FF 0,#ffffff 100%);
|
||||
background: linear-gradient(to bottom,#EFF5FF 0,#ffffff 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#ffffff,GradientType=0);
|
||||
}
|
||||
.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner {
|
||||
background: -webkit-linear-gradient(top,#ffffff 0,#EFF5FF 100%);
|
||||
background: -moz-linear-gradient(top,#ffffff 0,#EFF5FF 100%);
|
||||
background: -o-linear-gradient(top,#ffffff 0,#EFF5FF 100%);
|
||||
background: linear-gradient(to bottom,#ffffff 0,#EFF5FF 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#EFF5FF,GradientType=0);
|
||||
}
|
||||
.tabs-header-left .tabs li.tabs-selected a.tabs-inner {
|
||||
background: -webkit-linear-gradient(left,#EFF5FF 0,#ffffff 100%);
|
||||
background: -moz-linear-gradient(left,#EFF5FF 0,#ffffff 100%);
|
||||
background: -o-linear-gradient(left,#EFF5FF 0,#ffffff 100%);
|
||||
background: linear-gradient(to right,#EFF5FF 0,#ffffff 100%);
|
||||
background-repeat: repeat-y;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#ffffff,GradientType=1);
|
||||
}
|
||||
.tabs-header-right .tabs li.tabs-selected a.tabs-inner {
|
||||
background: -webkit-linear-gradient(left,#ffffff 0,#EFF5FF 100%);
|
||||
background: -moz-linear-gradient(left,#ffffff 0,#EFF5FF 100%);
|
||||
background: -o-linear-gradient(left,#ffffff 0,#EFF5FF 100%);
|
||||
background: linear-gradient(to right,#ffffff 0,#EFF5FF 100%);
|
||||
background-repeat: repeat-y;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#EFF5FF,GradientType=1);
|
||||
}
|
||||
.tabs li a.tabs-inner {
|
||||
color: #0E2D5F;
|
||||
background-color: #E0ECFF;
|
||||
background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
|
||||
background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
|
||||
background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
|
||||
background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0);
|
||||
}
|
||||
.tabs-header,
|
||||
.tabs-tool {
|
||||
background-color: #E0ECFF;
|
||||
}
|
||||
.tabs-header-plain {
|
||||
background: transparent;
|
||||
}
|
||||
.tabs-header,
|
||||
.tabs-scroller-left,
|
||||
.tabs-scroller-right,
|
||||
.tabs-tool,
|
||||
.tabs,
|
||||
.tabs-panels,
|
||||
.tabs li a.tabs-inner,
|
||||
.tabs li.tabs-selected a.tabs-inner,
|
||||
.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner,
|
||||
.tabs-header-left .tabs li.tabs-selected a.tabs-inner,
|
||||
.tabs-header-right .tabs li.tabs-selected a.tabs-inner {
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
.tabs-p-tool a:hover,
|
||||
.tabs li a:hover.tabs-close,
|
||||
.tabs-scroller-over {
|
||||
background-color: #eaf2ff;
|
||||
}
|
||||
.tabs li.tabs-selected a.tabs-inner {
|
||||
border-bottom: 1px solid #ffffff;
|
||||
}
|
||||
.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner {
|
||||
border-top: 1px solid #ffffff;
|
||||
}
|
||||
.tabs-header-left .tabs li.tabs-selected a.tabs-inner {
|
||||
border-right: 1px solid #ffffff;
|
||||
}
|
||||
.tabs-header-right .tabs li.tabs-selected a.tabs-inner {
|
||||
border-left: 1px solid #ffffff;
|
||||
}
|
||||
.tabs-header .tabs-pill li.tabs-selected a.tabs-inner {
|
||||
background: #ffe48d;
|
||||
color: #000000;
|
||||
filter: none;
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
87
WebContent/static/easyui/themes/default/textbox.css
Normal file
@@ -0,0 +1,87 @@
|
||||
.textbox {
|
||||
position: relative;
|
||||
border: 1px solid #95B8E7;
|
||||
background-color: #fff;
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.textbox .textbox-text {
|
||||
font-size: 12px;
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 4px;
|
||||
white-space: normal;
|
||||
vertical-align: top;
|
||||
outline-style: none;
|
||||
resize: none;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.textbox .textbox-prompt {
|
||||
font-size: 12px;
|
||||
color: #aaa;
|
||||
}
|
||||
.textbox .textbox-button,
|
||||
.textbox .textbox-button:hover {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
padding: 0;
|
||||
vertical-align: top;
|
||||
-moz-border-radius: 0 0 0 0;
|
||||
-webkit-border-radius: 0 0 0 0;
|
||||
border-radius: 0 0 0 0;
|
||||
}
|
||||
.textbox-button-right,
|
||||
.textbox-button-right:hover {
|
||||
border-width: 0 0 0 1px;
|
||||
}
|
||||
.textbox-button-left,
|
||||
.textbox-button-left:hover {
|
||||
border-width: 0 1px 0 0;
|
||||
}
|
||||
.textbox-addon {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
}
|
||||
.textbox-icon {
|
||||
display: inline-block;
|
||||
width: 18px;
|
||||
height: 20px;
|
||||
overflow: hidden;
|
||||
vertical-align: top;
|
||||
background-position: center center;
|
||||
cursor: pointer;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
text-decoration: none;
|
||||
outline-style: none;
|
||||
}
|
||||
.textbox-icon-disabled,
|
||||
.textbox-icon-readonly {
|
||||
cursor: default;
|
||||
}
|
||||
.textbox-icon:hover {
|
||||
opacity: 1.0;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
.textbox-icon-disabled:hover {
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
.textbox-focused {
|
||||
-moz-box-shadow: 0 0 3px 0 #95B8E7;
|
||||
-webkit-box-shadow: 0 0 3px 0 #95B8E7;
|
||||
box-shadow: 0 0 3px 0 #95B8E7;
|
||||
}
|
||||
.textbox-invalid {
|
||||
border-color: #ffa8a8;
|
||||
background-color: #fff3f3;
|
||||
}
|
||||
100
WebContent/static/easyui/themes/default/tooltip.css
Normal file
@@ -0,0 +1,100 @@
|
||||
.tooltip {
|
||||
position: absolute;
|
||||
display: none;
|
||||
z-index: 9900000;
|
||||
outline: none;
|
||||
opacity: 1;
|
||||
filter: alpha(opacity=100);
|
||||
padding: 5px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-radius: 5px;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.tooltip-content {
|
||||
font-size: 12px;
|
||||
}
|
||||
.tooltip-arrow-outer,
|
||||
.tooltip-arrow {
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 0;
|
||||
line-height: 0;
|
||||
font-size: 0;
|
||||
border-style: solid;
|
||||
border-width: 6px;
|
||||
border-color: transparent;
|
||||
_border-color: tomato;
|
||||
_filter: chroma(color=tomato);
|
||||
}
|
||||
.tooltip-right .tooltip-arrow-outer {
|
||||
left: 0;
|
||||
top: 50%;
|
||||
margin: -6px 0 0 -13px;
|
||||
}
|
||||
.tooltip-right .tooltip-arrow {
|
||||
left: 0;
|
||||
top: 50%;
|
||||
margin: -6px 0 0 -12px;
|
||||
}
|
||||
.tooltip-left .tooltip-arrow-outer {
|
||||
right: 0;
|
||||
top: 50%;
|
||||
margin: -6px -13px 0 0;
|
||||
}
|
||||
.tooltip-left .tooltip-arrow {
|
||||
right: 0;
|
||||
top: 50%;
|
||||
margin: -6px -12px 0 0;
|
||||
}
|
||||
.tooltip-top .tooltip-arrow-outer {
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
margin: 0 0 -13px -6px;
|
||||
}
|
||||
.tooltip-top .tooltip-arrow {
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
margin: 0 0 -12px -6px;
|
||||
}
|
||||
.tooltip-bottom .tooltip-arrow-outer {
|
||||
top: 0;
|
||||
left: 50%;
|
||||
margin: -13px 0 0 -6px;
|
||||
}
|
||||
.tooltip-bottom .tooltip-arrow {
|
||||
top: 0;
|
||||
left: 50%;
|
||||
margin: -12px 0 0 -6px;
|
||||
}
|
||||
.tooltip {
|
||||
background-color: #ffffff;
|
||||
border-color: #95B8E7;
|
||||
color: #000000;
|
||||
}
|
||||
.tooltip-right .tooltip-arrow-outer {
|
||||
border-right-color: #95B8E7;
|
||||
}
|
||||
.tooltip-right .tooltip-arrow {
|
||||
border-right-color: #ffffff;
|
||||
}
|
||||
.tooltip-left .tooltip-arrow-outer {
|
||||
border-left-color: #95B8E7;
|
||||
}
|
||||
.tooltip-left .tooltip-arrow {
|
||||
border-left-color: #ffffff;
|
||||
}
|
||||
.tooltip-top .tooltip-arrow-outer {
|
||||
border-top-color: #95B8E7;
|
||||
}
|
||||
.tooltip-top .tooltip-arrow {
|
||||
border-top-color: #ffffff;
|
||||
}
|
||||
.tooltip-bottom .tooltip-arrow-outer {
|
||||
border-bottom-color: #95B8E7;
|
||||
}
|
||||
.tooltip-bottom .tooltip-arrow {
|
||||
border-bottom-color: #ffffff;
|
||||
}
|
||||
160
WebContent/static/easyui/themes/default/tree.css
Normal file
@@ -0,0 +1,160 @@
|
||||
.tree {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.tree li {
|
||||
white-space: nowrap;
|
||||
}
|
||||
.tree li ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.tree-node {
|
||||
height: 18px;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tree-hit {
|
||||
cursor: pointer;
|
||||
}
|
||||
.tree-expanded,
|
||||
.tree-collapsed,
|
||||
.tree-folder,
|
||||
.tree-file,
|
||||
.tree-checkbox,
|
||||
.tree-indent {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 18px;
|
||||
vertical-align: top;
|
||||
overflow: hidden;
|
||||
}
|
||||
.tree-expanded {
|
||||
background: url('images/tree_icons.png') no-repeat -18px 0px;
|
||||
}
|
||||
.tree-expanded-hover {
|
||||
background: url('images/tree_icons.png') no-repeat -50px 0px;
|
||||
}
|
||||
.tree-collapsed {
|
||||
background: url('images/tree_icons.png') no-repeat 0px 0px;
|
||||
}
|
||||
.tree-collapsed-hover {
|
||||
background: url('images/tree_icons.png') no-repeat -32px 0px;
|
||||
}
|
||||
.tree-lines .tree-expanded,
|
||||
.tree-lines .tree-root-first .tree-expanded {
|
||||
background: url('images/tree_icons.png') no-repeat -144px 0;
|
||||
}
|
||||
.tree-lines .tree-collapsed,
|
||||
.tree-lines .tree-root-first .tree-collapsed {
|
||||
background: url('images/tree_icons.png') no-repeat -128px 0;
|
||||
}
|
||||
.tree-lines .tree-node-last .tree-expanded,
|
||||
.tree-lines .tree-root-one .tree-expanded {
|
||||
background: url('images/tree_icons.png') no-repeat -80px 0;
|
||||
}
|
||||
.tree-lines .tree-node-last .tree-collapsed,
|
||||
.tree-lines .tree-root-one .tree-collapsed {
|
||||
background: url('images/tree_icons.png') no-repeat -64px 0;
|
||||
}
|
||||
.tree-line {
|
||||
background: url('images/tree_icons.png') no-repeat -176px 0;
|
||||
}
|
||||
.tree-join {
|
||||
background: url('images/tree_icons.png') no-repeat -192px 0;
|
||||
}
|
||||
.tree-joinbottom {
|
||||
background: url('images/tree_icons.png') no-repeat -160px 0;
|
||||
}
|
||||
.tree-folder {
|
||||
background: url('images/tree_icons.png') no-repeat -208px 0;
|
||||
}
|
||||
.tree-folder-open {
|
||||
background: url('images/tree_icons.png') no-repeat -224px 0;
|
||||
}
|
||||
.tree-file {
|
||||
background: url('images/tree_icons.png') no-repeat -240px 0;
|
||||
}
|
||||
.tree-loading {
|
||||
background: url('images/loading.gif') no-repeat center center;
|
||||
}
|
||||
.tree-checkbox0 {
|
||||
background: url('images/tree_icons.png') no-repeat -208px -18px;
|
||||
}
|
||||
.tree-checkbox1 {
|
||||
background: url('images/tree_icons.png') no-repeat -224px -18px;
|
||||
}
|
||||
.tree-checkbox2 {
|
||||
background: url('images/tree_icons.png') no-repeat -240px -18px;
|
||||
}
|
||||
.tree-title {
|
||||
font-size: 12px;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
vertical-align: top;
|
||||
white-space: nowrap;
|
||||
padding: 0 2px;
|
||||
height: 18px;
|
||||
line-height: 18px;
|
||||
}
|
||||
.tree-node-proxy {
|
||||
font-size: 12px;
|
||||
line-height: 20px;
|
||||
padding: 0 2px 0 20px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
z-index: 9900000;
|
||||
}
|
||||
.tree-dnd-icon {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 18px;
|
||||
left: 2px;
|
||||
top: 50%;
|
||||
margin-top: -9px;
|
||||
}
|
||||
.tree-dnd-yes {
|
||||
background: url('images/tree_icons.png') no-repeat -256px 0;
|
||||
}
|
||||
.tree-dnd-no {
|
||||
background: url('images/tree_icons.png') no-repeat -256px -18px;
|
||||
}
|
||||
.tree-node-top {
|
||||
border-top: 1px dotted red;
|
||||
}
|
||||
.tree-node-bottom {
|
||||
border-bottom: 1px dotted red;
|
||||
}
|
||||
.tree-node-append .tree-title {
|
||||
border: 1px dotted red;
|
||||
}
|
||||
.tree-editor {
|
||||
border: 1px solid #ccc;
|
||||
font-size: 12px;
|
||||
height: 14px !important;
|
||||
height: 18px;
|
||||
line-height: 14px;
|
||||
padding: 1px 2px;
|
||||
width: 80px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
}
|
||||
.tree-node-proxy {
|
||||
background-color: #ffffff;
|
||||
color: #000000;
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
.tree-node-hover {
|
||||
background: #eaf2ff;
|
||||
color: #000000;
|
||||
}
|
||||
.tree-node-selected {
|
||||
background: #ffe48d;
|
||||
color: #000000;
|
||||
}
|
||||
.tree-node-hidden {
|
||||
display: none;
|
||||
}
|
||||
5
WebContent/static/easyui/themes/default/validatebox.css
Normal file
@@ -0,0 +1,5 @@
|
||||
.validatebox-invalid {
|
||||
border-color: #ffa8a8;
|
||||
background-color: #fff3f3;
|
||||
color: #000;
|
||||
}
|
||||
94
WebContent/static/easyui/themes/default/window.css
Normal file
@@ -0,0 +1,94 @@
|
||||
.window {
|
||||
overflow: hidden;
|
||||
padding: 5px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
.window .window-header {
|
||||
background: transparent;
|
||||
padding: 0px 0px 6px 0px;
|
||||
}
|
||||
.window .window-body {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-top-width: 0px;
|
||||
}
|
||||
.window .window-body-noheader {
|
||||
border-top-width: 1px;
|
||||
}
|
||||
.window .panel-body-nobottom {
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
.window .window-header .panel-icon,
|
||||
.window .window-header .panel-tool {
|
||||
top: 50%;
|
||||
margin-top: -11px;
|
||||
}
|
||||
.window .window-header .panel-icon {
|
||||
left: 1px;
|
||||
}
|
||||
.window .window-header .panel-tool {
|
||||
right: 1px;
|
||||
}
|
||||
.window .window-header .panel-with-icon {
|
||||
padding-left: 18px;
|
||||
}
|
||||
.window-proxy {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
}
|
||||
.window-proxy-mask {
|
||||
position: absolute;
|
||||
filter: alpha(opacity=5);
|
||||
opacity: 0.05;
|
||||
}
|
||||
.window-mask {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
filter: alpha(opacity=40);
|
||||
opacity: 0.40;
|
||||
font-size: 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.window,
|
||||
.window-shadow {
|
||||
position: absolute;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
.window-shadow {
|
||||
background: #ccc;
|
||||
-moz-box-shadow: 2px 2px 3px #cccccc;
|
||||
-webkit-box-shadow: 2px 2px 3px #cccccc;
|
||||
box-shadow: 2px 2px 3px #cccccc;
|
||||
filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
|
||||
}
|
||||
.window,
|
||||
.window .window-body {
|
||||
border-color: #95B8E7;
|
||||
}
|
||||
.window {
|
||||
background-color: #E0ECFF;
|
||||
background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%);
|
||||
background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%);
|
||||
background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%);
|
||||
background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 20%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0);
|
||||
}
|
||||
.window-proxy {
|
||||
border: 1px dashed #95B8E7;
|
||||
}
|
||||
.window-proxy-mask,
|
||||
.window-mask {
|
||||
background: #ccc;
|
||||
}
|
||||
.window .panel-footer {
|
||||
border: 1px solid #95B8E7;
|
||||
position: relative;
|
||||
top: -1px;
|
||||
}
|
||||
166
WebContent/static/easyui/themes/icon.css
Normal file
@@ -0,0 +1,166 @@
|
||||
.icon-blank{
|
||||
background:url('icons/blank.gif') no-repeat center center;
|
||||
}
|
||||
.icon-add{
|
||||
background:url('icons/edit_add.png') no-repeat center center;
|
||||
}
|
||||
.icon-edit{
|
||||
background:url('icons/pencil.png') no-repeat center center;
|
||||
}
|
||||
.icon-clear{
|
||||
background:url('icons/clear.png') no-repeat center center;
|
||||
}
|
||||
.icon-remove{
|
||||
background:url('icons/edit_remove.png') no-repeat center center;
|
||||
}
|
||||
.icon-save{
|
||||
background:url('icons/filesave.png') no-repeat center center;
|
||||
}
|
||||
.icon-cut{
|
||||
background:url('icons/cut.png') no-repeat center center;
|
||||
}
|
||||
.icon-ok{
|
||||
background:url('icons/ok.png') no-repeat center center;
|
||||
}
|
||||
.icon-no{
|
||||
background:url('icons/no.png') no-repeat center center;
|
||||
}
|
||||
.icon-cancel{
|
||||
background:url('icons/cancel.png') no-repeat center center;
|
||||
}
|
||||
.icon-reload{
|
||||
background:url('icons/reload.png') no-repeat center center;
|
||||
}
|
||||
.icon-search{
|
||||
background:url('icons/search.png') no-repeat center center;
|
||||
}
|
||||
.icon-print{
|
||||
background:url('icons/print.png') no-repeat center center;
|
||||
}
|
||||
.icon-help{
|
||||
background:url('icons/help.png') no-repeat center center;
|
||||
}
|
||||
.icon-undo{
|
||||
background:url('icons/undo.png') no-repeat center center;
|
||||
}
|
||||
.icon-redo{
|
||||
background:url('icons/redo.png') no-repeat center center;
|
||||
}
|
||||
.icon-back{
|
||||
background:url('icons/back.png') no-repeat center center;
|
||||
}
|
||||
.icon-sum{
|
||||
background:url('icons/sum.png') no-repeat center center;
|
||||
}
|
||||
.icon-tip{
|
||||
background:url('icons/tip.png') no-repeat center center;
|
||||
}
|
||||
.icon-filter{
|
||||
background:url('icons/filter.png') no-repeat center center;
|
||||
}
|
||||
.icon-man{
|
||||
background:url('icons/man.png') no-repeat center center;
|
||||
}
|
||||
.icon-lock{
|
||||
background:url('icons/lock.png') no-repeat center center;
|
||||
}
|
||||
.icon-more{
|
||||
background:url('icons/more.png') no-repeat center center;
|
||||
}
|
||||
.icon-mini-add{
|
||||
background:url('icons/mini_add.png') no-repeat center center;
|
||||
}
|
||||
.icon-mini-edit{
|
||||
background:url('icons/mini_edit.png') no-repeat center center;
|
||||
}
|
||||
.icon-mini-refresh{
|
||||
background:url('icons/mini_refresh.png') no-repeat center center;
|
||||
}
|
||||
.icon-large-picture{
|
||||
background:url('icons/large_picture.png') no-repeat center center;
|
||||
}
|
||||
.icon-large-clipart{
|
||||
background:url('icons/large_clipart.png') no-repeat center center;
|
||||
}
|
||||
.icon-large-shapes{
|
||||
background:url('icons/large_shapes.png') no-repeat center center;
|
||||
}
|
||||
.icon-large-smartart{
|
||||
background:url('icons/large_smartart.png') no-repeat center center;
|
||||
}
|
||||
.icon-large-chart{
|
||||
background:url('icons/large_chart.png') no-repeat center center;
|
||||
}
|
||||
.icon-some-delete{
|
||||
background:url('icons/basket_remove.png') no-repeat center center;
|
||||
}
|
||||
.icon-book-open{
|
||||
background:url('icons/book_open_mark.png') no-repeat center center;
|
||||
}
|
||||
.icon-number{
|
||||
background:url('icons/text_list_numbers.png') no-repeat center center;
|
||||
}
|
||||
.icon-set{
|
||||
background:url('icons/set.png') no-repeat center center;
|
||||
}
|
||||
.icon-chart_bar{
|
||||
background:url('icons/chart_bar.png') no-repeat center center;
|
||||
}
|
||||
.icon-user_add{
|
||||
background:url('icons/user_add.png') no-repeat center center;
|
||||
}
|
||||
.icon-user-student{
|
||||
background:url('icons/user_gray.png') no-repeat center center;
|
||||
}
|
||||
.icon-user-teacher{
|
||||
background:url('icons/user_red.png') no-repeat center center;
|
||||
}
|
||||
.icon-house{
|
||||
background:url('icons/house.png') no-repeat center center;
|
||||
}
|
||||
.icon-world{
|
||||
background:url('icons/world.png') no-repeat center center;
|
||||
}
|
||||
.icon-exam{
|
||||
background:url('icons/text_list_bullets.png') no-repeat center center;
|
||||
}
|
||||
.icon-password{
|
||||
background:url('icons/2012080412263.png') no-repeat center center;
|
||||
}
|
||||
.icon-logout{
|
||||
background:url('icons/door_out.png') no-repeat center center;
|
||||
}
|
||||
.icon-note{
|
||||
background:url('icons/note.png') no-repeat center center;
|
||||
}
|
||||
.icon-pencil-add{
|
||||
background:url('icons/pencil_add.png') no-repeat center center;
|
||||
}
|
||||
.icon-find{
|
||||
background:url('icons/find.png') no-repeat center center;
|
||||
}
|
||||
.icon-book-add{
|
||||
background:url('icons/book_add.png') no-repeat center center;
|
||||
}
|
||||
.icon-book-reset{
|
||||
background:url('icons/book_previous.png') no-repeat center center;
|
||||
}
|
||||
.icon-world-add{
|
||||
background:url('icons/world_add.png') no-repeat center center;
|
||||
}
|
||||
.icon-world-reset{
|
||||
background:url('icons/world_night.png') no-repeat center center;
|
||||
}
|
||||
.icon-zoom-in{
|
||||
background:url('icons/zoom_in.png') no-repeat center center;
|
||||
}
|
||||
.icon-vcard-edit{
|
||||
background:url('icons/vcard_edit.png') no-repeat center center;
|
||||
}
|
||||
.icon-folder-up{
|
||||
background:url('icons/folder_up.png') no-repeat center center;
|
||||
}
|
||||
.icon-password{
|
||||
background:url('icons/asterisk_orange.png') no-repeat center center;
|
||||
}
|
||||
|
||||
BIN
WebContent/static/easyui/themes/icons/2012080412263.png
Normal file
|
After Width: | Height: | Size: 837 B |
BIN
WebContent/static/easyui/themes/icons/asterisk_orange.png
Normal file
|
After Width: | Height: | Size: 760 B |
BIN
WebContent/static/easyui/themes/icons/back.png
Normal file
|
After Width: | Height: | Size: 912 B |
BIN
WebContent/static/easyui/themes/icons/basket_remove.png
Normal file
|
After Width: | Height: | Size: 738 B |
BIN
WebContent/static/easyui/themes/icons/blank.gif
Normal file
|
After Width: | Height: | Size: 43 B |
BIN
WebContent/static/easyui/themes/icons/book_add.png
Normal file
|
After Width: | Height: | Size: 714 B |
BIN
WebContent/static/easyui/themes/icons/book_open_mark.png
Normal file
|
After Width: | Height: | Size: 658 B |
BIN
WebContent/static/easyui/themes/icons/book_previous.png
Normal file
|
After Width: | Height: | Size: 680 B |
BIN
WebContent/static/easyui/themes/icons/cancel.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
WebContent/static/easyui/themes/icons/chart_bar.png
Normal file
|
After Width: | Height: | Size: 441 B |
BIN
WebContent/static/easyui/themes/icons/clear.png
Normal file
|
After Width: | Height: | Size: 779 B |
BIN
WebContent/static/easyui/themes/icons/cut.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
WebContent/static/easyui/themes/icons/door_out.png
Normal file
|
After Width: | Height: | Size: 688 B |
BIN
WebContent/static/easyui/themes/icons/edit_add.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
WebContent/static/easyui/themes/icons/edit_remove.png
Normal file
|
After Width: | Height: | Size: 625 B |
BIN
WebContent/static/easyui/themes/icons/filesave.png
Normal file
|
After Width: | Height: | Size: 898 B |
BIN
WebContent/static/easyui/themes/icons/filter.png
Normal file
|
After Width: | Height: | Size: 305 B |
BIN
WebContent/static/easyui/themes/icons/find.png
Normal file
|
After Width: | Height: | Size: 659 B |
BIN
WebContent/static/easyui/themes/icons/folder_up.png
Normal file
|
After Width: | Height: | Size: 653 B |
BIN
WebContent/static/easyui/themes/icons/help.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
WebContent/static/easyui/themes/icons/house.png
Normal file
|
After Width: | Height: | Size: 806 B |
BIN
WebContent/static/easyui/themes/icons/large_chart.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
WebContent/static/easyui/themes/icons/large_clipart.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
WebContent/static/easyui/themes/icons/large_picture.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
WebContent/static/easyui/themes/icons/large_shapes.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
WebContent/static/easyui/themes/icons/large_smartart.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
WebContent/static/easyui/themes/icons/lock.png
Normal file
|
After Width: | Height: | Size: 311 B |
BIN
WebContent/static/easyui/themes/icons/man.png
Normal file
|
After Width: | Height: | Size: 244 B |
BIN
WebContent/static/easyui/themes/icons/mini_add.png
Normal file
|
After Width: | Height: | Size: 244 B |
BIN
WebContent/static/easyui/themes/icons/mini_edit.png
Normal file
|
After Width: | Height: | Size: 161 B |
BIN
WebContent/static/easyui/themes/icons/mini_refresh.png
Normal file
|
After Width: | Height: | Size: 160 B |
BIN
WebContent/static/easyui/themes/icons/more.png
Normal file
|
After Width: | Height: | Size: 110 B |
BIN
WebContent/static/easyui/themes/icons/no.png
Normal file
|
After Width: | Height: | Size: 922 B |
BIN
WebContent/static/easyui/themes/icons/note.png
Normal file
|
After Width: | Height: | Size: 500 B |
BIN
WebContent/static/easyui/themes/icons/ok.png
Normal file
|
After Width: | Height: | Size: 883 B |
BIN
WebContent/static/easyui/themes/icons/pencil.png
Normal file
|
After Width: | Height: | Size: 713 B |
BIN
WebContent/static/easyui/themes/icons/pencil_add.png
Normal file
|
After Width: | Height: | Size: 589 B |
BIN
WebContent/static/easyui/themes/icons/print.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
WebContent/static/easyui/themes/icons/redo.png
Normal file
|
After Width: | Height: | Size: 708 B |
BIN
WebContent/static/easyui/themes/icons/reload.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
WebContent/static/easyui/themes/icons/search.png
Normal file
|
After Width: | Height: | Size: 813 B |
BIN
WebContent/static/easyui/themes/icons/set.png
Normal file
|
After Width: | Height: | Size: 706 B |