作品列表增加搜索按钮,取消搜索框手型显示
This commit is contained in:
parent
aa0dc475aa
commit
0ff088f96d
|
@ -36,6 +36,7 @@
|
||||||
</span>
|
</span>
|
||||||
<% if @show_all%>
|
<% if @show_all%>
|
||||||
<input type="text" value="<%= @name%>" placeholder="昵称、学号、姓名搜索" class="min_search ml10 fl" onkeypress="SearchByName($(this),'<%= student_work_index_path(:homework => @homework.id)%>',event);">
|
<input type="text" value="<%= @name%>" placeholder="昵称、学号、姓名搜索" class="min_search ml10 fl" onkeypress="SearchByName($(this),'<%= student_work_index_path(:homework => @homework.id)%>',event);">
|
||||||
|
<a class="student_work_search fl" onclick="SearchByName($(this).prev(),'<%= student_work_index_path(:homework => @homework.id)%>');" href="javascript:void(0)">搜索</a>
|
||||||
<% end%>
|
<% end%>
|
||||||
<% if @is_teacher%>
|
<% if @is_teacher%>
|
||||||
<div class="fr">
|
<div class="fr">
|
||||||
|
|
|
@ -793,6 +793,10 @@ function SearchByName(obj,url,event)
|
||||||
location.href = url + "&name=" + obj.val();
|
location.href = url + "&name=" + obj.val();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
function SearchByName(obj,url)
|
||||||
|
{
|
||||||
|
location.href = url + "&name=" + obj.val();
|
||||||
|
}
|
||||||
|
|
||||||
$(function(){
|
$(function(){
|
||||||
$("#about_project label").eq(1).remove();
|
$("#about_project label").eq(1).remove();
|
||||||
|
|
|
@ -656,7 +656,6 @@ a:hover.ping_pic{border:1px solid #64bdd9;}
|
||||||
a.down_btn{ border:1px solid #CCC; color:#999; padding:0px 5px; font-size:12px; text-align:center; display:block;}
|
a.down_btn{ border:1px solid #CCC; color:#999; padding:0px 5px; font-size:12px; text-align:center; display:block;}
|
||||||
a:hover.down_btn{ background:#14ad5a; color:#fff; border:1px solid #14ad5a;}
|
a:hover.down_btn{ background:#14ad5a; color:#fff; border:1px solid #14ad5a;}
|
||||||
.fr{ float:right;}
|
.fr{ float:right;}
|
||||||
.min_search{ width:200px; height:20px; border:1px solid #d0d0d0; color:#666; background:url(../images/public_icon.png) 185px -193px no-repeat; cursor:pointer;}
|
|
||||||
.li_min_search{ float:right; margin-right:-10px;}
|
.li_min_search{ float:right; margin-right:-10px;}
|
||||||
.info_ni{ width:100px; padding:5px;position: absolute;display:none;-moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px; box-shadow:0px 0px 5px #194a81; color:#666; background:#fff; text-align:left;}
|
.info_ni{ width:100px; padding:5px;position: absolute;display:none;-moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px; box-shadow:0px 0px 5px #194a81; color:#666; background:#fff; text-align:left;}
|
||||||
/*返回顶部*/
|
/*返回顶部*/
|
||||||
|
@ -673,6 +672,7 @@ input#score{ width:40px;}
|
||||||
.filename { background: url(../images/pic_file.png) 0 -25px no-repeat;color: #3ca5c6;max-width: 150px;border: none; padding-left: 20px;margin-right: 10px;margin-bottom: 5px;}
|
.filename { background: url(../images/pic_file.png) 0 -25px no-repeat;color: #3ca5c6;max-width: 150px;border: none; padding-left: 20px;margin-right: 10px;margin-bottom: 5px;}
|
||||||
.evaluation{position: relative;}
|
.evaluation{position: relative;}
|
||||||
.evaluation_submit{position: absolute;right: 0px;bottom: 5px;}
|
.evaluation_submit{position: absolute;right: 0px;bottom: 5px;}
|
||||||
|
.student_work_search{background-color: #64bdd9;color: white !important;padding: 2px 7px;margin-left: 10px;cursor: pointer; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ table{ background:#fff;}
|
||||||
.no_line{ border-bottom:none;}
|
.no_line{ border-bottom:none;}
|
||||||
.line{border-bottom:1px dashed #d4d4d4; padding-bottom:10px; margin-bottom:10px;}
|
.line{border-bottom:1px dashed #d4d4d4; padding-bottom:10px; margin-bottom:10px;}
|
||||||
.no_border{ border:none;}
|
.no_border{ border:none;}
|
||||||
.min_search{ width:150px; height:20px; border:1px solid #d0d0d0; color:#666; background:url(../images/new_project/public_icon.png) 135px -193px no-repeat; cursor:pointer;}
|
.min_search{ width:150px; height:20px; border:1px solid #d0d0d0; color:#666; background:url(../images/new_project/public_icon.png) 135px -193px no-repeat;}
|
||||||
|
|
||||||
/* font & color */
|
/* font & color */
|
||||||
h2{ font-size:18px; color:#15bccf;}
|
h2{ font-size:18px; color:#15bccf;}
|
||||||
|
|
Loading…
Reference in New Issue