修改BUG:移动设备端表格内按钮禁止隐藏描述文字 closed #ITC1I
#Issue https://gitee.com/LongbowEnterprise/BootstrapAdmin/issues/ITC1I
This commit is contained in:
parent
d16ef028d2
commit
ec325ab44d
|
@ -570,6 +570,14 @@ li[data-category="1"] .dd3-content .menuType {
|
|||
padding: 4px 6px;
|
||||
}
|
||||
|
||||
.bootstrap-table .btn span:last-child {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.bootstrap-table .fa-info {
|
||||
width: 9px;
|
||||
}
|
||||
|
||||
pre {
|
||||
padding: 5px;
|
||||
margin: 5px;
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
{ title: "注册时间", field: "RegisterTime" },
|
||||
{
|
||||
title: "操作", field: "Id", formatter: function (value, row, index, field) {
|
||||
return $.format('<button class="btn btn-success" data-toggle="tooltip" data-id="{0}" data-result="ApproveUser" title="同意授权"><i class="fa fa-check"></i></button> <button class="btn btn-danger" data-toggle="tooltip" data-id="{0}" data-result="RejectUser" title="拒绝授权"><i class="fa fa-remove"></i></button>', value);
|
||||
return $.format('<button class="btn btn-success" data-toggle="tooltip" data-id="{0}" data-result="ApproveUser" title="同意授权"><i class="fa fa-check"></i><span>同意</span></button><button class="btn btn-danger" data-toggle="tooltip" data-id="{0}" data-result="RejectUser" title="拒绝授权"><i class="fa fa-remove"></i><span>拒绝</span></button>', value);
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue