mirror of https://gitee.com/karson/fastadmin.git
Compare commits
3 Commits
fad4731136
...
30c803f761
| Author | SHA1 | Date |
|---|---|---|
|
|
30c803f761 | |
|
|
e24cefeffc | |
|
|
87710c0a18 |
|
|
@ -714,6 +714,8 @@ a:focus {
|
|||
.sidebar-menu li > a > .pull-right-container {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
}
|
||||
.sidebar-collapse .sidebar-menu li > a > .pull-right-container {
|
||||
top: 50%;
|
||||
margin-top: -7px;
|
||||
}
|
||||
|
|
@ -1424,7 +1426,7 @@ select.form-control {
|
|||
.input-lg + .form-control-feedback.fa,
|
||||
.input-group-lg + .form-control-feedback.fa,
|
||||
.form-group-lg .form-control + .form-control-feedback.fa {
|
||||
line-height: 45px;
|
||||
line-height: 44px;
|
||||
}
|
||||
.input-sm + .form-control-feedback.fa,
|
||||
.input-group-sm + .form-control-feedback.fa,
|
||||
|
|
|
|||
|
|
@ -134,9 +134,13 @@ define(['jquery', 'bootstrap', 'upload', 'validator', 'validator-lang'], functio
|
|||
$(form).on("reset", function () {
|
||||
setTimeout(function () {
|
||||
$(".selectpage", form).each(function () {
|
||||
var selectpage = $(this).data("selectPageObject");
|
||||
selectpage.elem.hidden.val($(this).val());
|
||||
$(this).selectPageRefresh();
|
||||
if($(this).val()){
|
||||
var selectpage = $(this).data("selectPageObject");
|
||||
selectpage.elem.hidden.val($(this).val());
|
||||
$(this).selectPageRefresh();
|
||||
}else{
|
||||
$(this).selectPageClear();
|
||||
}
|
||||
});
|
||||
}, 1);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -164,8 +164,15 @@
|
|||
> .pull-right-container {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 50%;
|
||||
margin-top: -7px;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-collapse {
|
||||
.sidebar-menu li > a {
|
||||
> .pull-right-container {
|
||||
top: 50%;
|
||||
margin-top: -7px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue