作者 Karson

优化修复在移动端后台个人信息的显示

优化插件管理搜索
... ... @@ -98,6 +98,16 @@ html.ios-fix body {
display: flex;
}
}
@media (max-width: 991px) {
.main-header .navbar-custom-menu a.btn-danger {
color: #fff;
background-color: #e74c3c;
}
.main-header .navbar-custom-menu a.btn-primary {
color: #fff;
background-color: #2c3e50;
}
}
.common-search-table {
min-height: 20px;
padding: 15px;
... ...
... ... @@ -22,9 +22,9 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'template'], function
url: location.protocol === "https:" ? "addon/downloaded" : $.fn.bootstrapTable.defaults.extend.index_url,
columns: [
[
{field: 'id', title: 'ID'},
{field: 'name', title: __('Name')},
{field: 'title', title: __('Title')}
{field: 'id', title: 'ID', operate: false},
{field: 'name', title: __('Name'), operate: false},
{field: 'title', title: __('Title'), operate: 'LIKE'}
]
],
dataType: 'jsonp',
... ...
... ... @@ -9978,7 +9978,6 @@ define('table',['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstr
buttonlink: function (column, buttons, value, row, index, type) {
var table = column.table;
type = typeof type === 'undefined' ? 'buttons' : type;
// 操作配置
var options = table ? table.bootstrapTable('getOptions') : {};
var html = [];
var url, classname, icon, text, title, extend;
... ...
... ... @@ -110,6 +110,18 @@ html.ios-fix,html.ios-fix body {
display: flex;
}
}
@media (max-width: 991px){
.main-header .navbar-custom-menu a{
&.btn-danger {
color:#fff;
background-color: @brand-danger;
}
&.btn-primary {
color:#fff;
background-color: @brand-primary;
}
}
}
.common-search-table {
min-height: 20px;
padding: 15px;
... ...