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 {
|
.sidebar-menu li > a > .pull-right-container {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 10px;
|
right: 10px;
|
||||||
|
}
|
||||||
|
.sidebar-collapse .sidebar-menu li > a > .pull-right-container {
|
||||||
top: 50%;
|
top: 50%;
|
||||||
margin-top: -7px;
|
margin-top: -7px;
|
||||||
}
|
}
|
||||||
|
|
@ -1424,7 +1426,7 @@ select.form-control {
|
||||||
.input-lg + .form-control-feedback.fa,
|
.input-lg + .form-control-feedback.fa,
|
||||||
.input-group-lg + .form-control-feedback.fa,
|
.input-group-lg + .form-control-feedback.fa,
|
||||||
.form-group-lg .form-control + .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-sm + .form-control-feedback.fa,
|
||||||
.input-group-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 () {
|
$(form).on("reset", function () {
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
$(".selectpage", form).each(function () {
|
$(".selectpage", form).each(function () {
|
||||||
var selectpage = $(this).data("selectPageObject");
|
if($(this).val()){
|
||||||
selectpage.elem.hidden.val($(this).val());
|
var selectpage = $(this).data("selectPageObject");
|
||||||
$(this).selectPageRefresh();
|
selectpage.elem.hidden.val($(this).val());
|
||||||
|
$(this).selectPageRefresh();
|
||||||
|
}else{
|
||||||
|
$(this).selectPageClear();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}, 1);
|
}, 1);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -164,8 +164,15 @@
|
||||||
> .pull-right-container {
|
> .pull-right-container {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 10px;
|
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