用户列表选择样式优化

This commit is contained in:
thinkgem
2023-08-01 11:26:33 +08:00
parent 33d0693bb1
commit 727454d2a7
6 changed files with 6 additions and 6 deletions

View File

@@ -169,7 +169,7 @@ a, a:hover, a:active, a:focus, .form-unit, th[aria-selected=true] .ui-jqgrid-sor
/* 页签添加内边距 */ /* 页签添加内边距 */
.content-wrapper, .tabpanel_content, .tabpanel_content .html_content, body {background-color:#f0f2f5;} .content-wrapper, .tabpanel_content, .tabpanel_content .html_content, body {background-color:#f0f2f5;}
.box-main, .nav-main, .ui-layout-pane, iframe {border-radius:5px;} .box-main, .nav-main, .ui-layout-pane, iframe {border-radius:5px;}
.tabpanel_content .html_content {padding:14px 14px 13px 15px;} .tabpanel_content .html_content {padding:13px 14px 13px 15px;}
.tabpanel_tab_content {border-bottom:0;} .tabpanel_tab_content {border-bottom:0;}
.ui-layout-resizer {background:none;} .ui-layout-resizer {background:none;}
.content {padding:0!important} .content {padding:0!important}

View File

@@ -169,7 +169,7 @@ a, a:hover, a:active, a:focus, .form-unit, th[aria-selected=true] .ui-jqgrid-sor
/* 页签添加内边距 */ /* 页签添加内边距 */
.content-wrapper, .tabpanel_content, .tabpanel_content .html_content, body {background-color:#f0f2f5;} .content-wrapper, .tabpanel_content, .tabpanel_content .html_content, body {background-color:#f0f2f5;}
.box-main, .nav-main, .ui-layout-pane, iframe {border-radius:5px;} .box-main, .nav-main, .ui-layout-pane, iframe {border-radius:5px;}
.tabpanel_content .html_content {padding:14px 14px 13px 15px;} .tabpanel_content .html_content {padding:13px 14px 13px 15px;}
.tabpanel_tab_content {border-bottom:0;} .tabpanel_tab_content {border-bottom:0;}
.ui-layout-resizer {background:none;} .ui-layout-resizer {background:none;}
.content {padding:0!important} .content {padding:0!important}

View File

@@ -167,7 +167,7 @@ a, a:hover, a:active, a:focus, .form-unit, th[aria-selected=true] .ui-jqgrid-sor
/* 页签添加内边距 */ /* 页签添加内边距 */
.content-wrapper, .tabpanel_content, .tabpanel_content .html_content, body {background-color:#000;} .content-wrapper, .tabpanel_content, .tabpanel_content .html_content, body {background-color:#000;}
.box-main, .nav-main, .ui-layout-pane, iframe {border-radius:5px;} .box-main, .nav-main, .ui-layout-pane, iframe {border-radius:5px;}
.tabpanel_content .html_content {padding:14px 14px 13px 15px;} .tabpanel_content .html_content {padding:13px 14px 13px 15px;}
.tabpanel_tab_content {border-bottom:0;} .tabpanel_tab_content {border-bottom:0;}
.ui-layout-resizer {background:none;} .ui-layout-resizer {background:none;}
.content {padding:0!important} .content {padding:0!important}

View File

@@ -13,7 +13,7 @@ var skinName = cookie('skinName', false, defaultSkinName);
print('<'+'!DOC'+'TYPE html'+'><'+'html class="'+skinName+'"><'+'head'+'>'); print('<'+'!DOC'+'TYPE html'+'><'+'html class="'+skinName+'"><'+'head'+'>');
include('/include/head.html', {title: text(title!)}){} include('/include/head.html', {title: text(title!)}){}
include('/themes/'+themeName+'/include/header.html', {libs: libs!, skinName: skinName!}){} %> include('/themes/'+themeName+'/include/header.html', {libs: libs!, skinName: skinName!}){} %>
</head><body class="hold-transition ${bodyClass!}"> </head><body class="hold-transition ${bodyClass!} ${parameter.__layer! == 'true' ? 'layer' : ''}">
<% if (!@ListUtils.inString('layout', libs!)){ %> <% if (!@ListUtils.inString('layout', libs!)){ %>
<div class="wrapper">${layoutContent}</div> <div class="wrapper">${layoutContent}</div>
<% }else{ %>${layoutContent}<% } %> <% }else{ %>${layoutContent}<% } %>

View File

@@ -195,7 +195,7 @@ selectNum = 0, dataGrid = $('#dataGrid').dataGrid({
], ],
// autoGridWidthFix: 100, // autoGridWidthFix: 100,
autoGridHeight: function(){ autoGridHeight: function(){
var height = $(window).height() - $('#searchForm').height() - $('#dataGridPage').height() - 70; var height = $(window).height() - $('#searchForm').height() - $('#dataGridPage').height() - 78;
$('.tags-input').height($('.ui-jqgrid').height() - 10); $('.tags-input').height($('.ui-jqgrid').height() - 10);
return height; return height;
}, },

View File

@@ -81,7 +81,7 @@ selectNum = 0, dataGrid = $('#dataGrid').dataGrid({
}} }}
], ],
autoGridHeight: function(){ autoGridHeight: function(){
var height = $(window).height() - $('#searchForm').height() - $('#dataGridPage').height() - 74; var height = $(window).height() - $('#searchForm').height() - $('#dataGridPage').height() - 78;
$('.tags-input').height($('.ui-jqgrid').height() - 10); $('.tags-input').height($('.ui-jqgrid').height() - 10);
return height; return height;
}, },