列表界面搜索框兼容性修改

This commit is contained in:
chiguangxu
2018-03-09 15:59:24 +08:00
parent 3a76a268ca
commit 13e13f65bd
2 changed files with 9 additions and 2 deletions

View File

@@ -21540,6 +21540,10 @@ Color library demo
margin-right: 5px;
}
.form-search .pull-left .input-group {
width:384px;
}
.filter-action-select-panle {
border: 1px solid #c2cad8;
@@ -21554,3 +21558,6 @@ Color library demo

View File

@@ -315,13 +315,13 @@ function filterActionInit() {
}
function fiterPanleShow() {
$("#filter-action").find("i").removeClass("fa-angle-double-down").addClass("fa-angle-double-up");
$("#filter-btn").find("i").removeClass("fa-angle-double-down").addClass("fa-angle-double-up");
$(".btn-search").addClass("hide");
$(".filter-action-select-panle").removeClass("hide");
}
function fiterPanleHide() {
$("#filter-action").find("i").removeClass("fa-angle-double-up").addClass("fa-angle-double-down");
$("#filter-btn").find("i").removeClass("fa-angle-double-up").addClass("fa-angle-double-down");
$(".btn-search").removeClass("hide");
$(".filter-action-select-panle").addClass("hide");
}